Skip to content

SOLR-17789: Fix Internode Authorization not working for external roles #3397

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: branch_9x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions solr/core/src/java/org/apache/solr/servlet/HttpSolrCall.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import java.io.OutputStream;
import java.lang.invoke.MethodHandles;
import java.nio.charset.StandardCharsets;
import java.security.Principal;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
Expand Down Expand Up @@ -74,6 +75,7 @@
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.client.methods.HttpRequestBase;
import org.apache.http.client.protocol.HttpClientContext;
import org.apache.http.entity.InputStreamEntity;
import org.apache.solr.api.ApiBag;
import org.apache.solr.api.V2HttpCall;
Expand Down Expand Up @@ -774,10 +776,23 @@ private void remoteQuery(String coreUrl, HttpServletResponse resp) throws IOExce
method.removeHeaders(CONTENT_LENGTH_HEADER);
}

// Make sure the user principal is forwarded when its exist
HttpClientContext httpClientRequestContext =
HttpClientUtil.createNewHttpClientRequestContext();
Principal userPrincipal = req.getUserPrincipal();
if (userPrincipal != null) {
// Normally the context contains a static userToken to enable reuse resources. However, if a
// personal Principal object exists, we use that instead, also as a means to transfer
// authentication information to Auth plugins that wish to intercept the request later
if (log.isDebugEnabled()) {
log.debug("Forwarding principal {}", userPrincipal);
}
httpClientRequestContext.setUserToken(userPrincipal);
}

// Execute the method.
final HttpResponse response =
solrDispatchFilter
.getHttpClient()
.execute(method, HttpClientUtil.createNewHttpClientRequestContext());
solrDispatchFilter.getHttpClient().execute(method, httpClientRequestContext);
int httpStatus = response.getStatusLine().getStatusCode();
httpEntity = response.getEntity();

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"authentication": {
"class": "solr.JWTAuthPlugin",
"blockUnknown": true,
"jwk": {
"kty": "RSA",
"e": "AQAB",
"use": "sig",
"kid": "test",
"alg": "RS256",
"n": "jeyrvOaZrmKWjyNXt0myAc_pJ1hNt3aRupExJEx1ewPaL9J9HFgSCjMrYxCB1ETO1NDyZ3nSgjZis-jHHDqBxBjRdq_t1E2rkGFaYbxAyKt220Pwgme_SFTB9MXVrFQGkKyjmQeVmOmV6zM3KK8uMdKQJ4aoKmwBcF5Zg7EZdDcKOFgpgva1Jq-FlEsaJ2xrYDYo3KnGcOHIt9_0NQeLsqZbeWYLxYni7uROFncXYV5FhSJCeR4A_rrbwlaCydGxE0ToC_9HNYibUHlkJjqyUhAgORCbNS8JLCJH8NUi5sDdIawK9GTSyvsJXZ-QHqo4cMUuxWV5AJtaRGghuMUfqQ"
},
"realm": "my-solr-jwt",
"adminUiScope": "solr:admin",
"authorizationEndpoint": "http://acmepaymentscorp/oauth/auz/authorize",
"tokenEndpoint": "http://acmepaymentscorp/oauth/oauth20/token",
"authorizationFlow": "code_pkce",
"clientId": "solr-cluster",
"rolesClaim": "roles"
},
"authorization": {
"class": "solr.ExternalRoleRuleBasedAuthorizationPlugin",
"permissions": [
{ "name": "private-jwt-collection", "collection": "jwtColl", "role": "group-one", "path":"/*"}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
import org.apache.solr.common.util.Pair;
import org.apache.solr.common.util.TimeSource;
import org.apache.solr.common.util.Utils;
import org.apache.solr.embedded.JettySolrRunner;
import org.apache.solr.util.CryptoKeys;
import org.apache.solr.util.RTimer;
import org.apache.solr.util.TimeOut;
Expand Down Expand Up @@ -290,6 +291,54 @@ public void testMetrics() throws Exception {
HttpClientUtil.close(cl);
}

/**
* Test if JWTPrincipal is passed correctly on internode communication. Setup a cluster with more
* nodes using jwtAuth for both authentication and authorization. Add a collection with restricted
* access and with less replicas and shards then the number of nodes. Test if we can query the
* collection on every node.
*/
@Test
public void testInternodeAuthorization() throws Exception {
// Start cluster with security.json that contains permissions for a collection with restricted
// access
cluster = configureClusterStaticKeys("jwt_plugin_jwk_security_with_authorization.json", 3);
// Get a random url to use for general requests to the cluster
String randomBaseUrl = cluster.getRandomJetty(random()).getBaseUrl().toString();

// Add the collection to the cluster
String COLLECTION = "jwtColl";
createCollection(cluster, COLLECTION);

// Now update three documents
Pair<String, Integer> result =
post(
randomBaseUrl + "/" + COLLECTION + "/update?commit=true",
"[{\"id\" : \"1\"}, {\"id\": \"2\"}, {\"id\": \"3\"}]",
jwtStaticTestToken);
assertEquals(Integer.valueOf(200), result.second());

// Run query on every node.
// This will force the nodes to transfer the query to another node when they do not have the
// collection themselves.
for (JettySolrRunner node : cluster.getJettySolrRunners()) {
// Get the base url for this node
String nodeBaseUrl = node.getBaseUrl().toString();

// Do a query, using JWTAuth for inter-node
result = get(nodeBaseUrl + "/" + COLLECTION + "/query?q=*:*", jwtStaticTestToken);
assertEquals(Integer.valueOf(200), result.second());
}

// Delete
assertEquals(
200,
get(
randomBaseUrl + "/admin/collections?action=DELETE&name=" + COLLECTION,
jwtStaticTestToken)
.second()
.intValue());
}

static String getBearerAuthHeader(JsonWebSignature jws) throws JoseException {
return "Bearer " + jws.getCompactSerialization();
}
Expand Down Expand Up @@ -334,8 +383,13 @@ private MiniSolrCloudCluster configureClusterMockOauth(
*/
private MiniSolrCloudCluster configureClusterStaticKeys(String securityJsonFilename)
throws Exception {
return configureClusterStaticKeys(securityJsonFilename, 2);
}

private MiniSolrCloudCluster configureClusterStaticKeys(
String securityJsonFilename, int numberOfNodes) throws Exception {
MiniSolrCloudCluster myCluster =
configureCluster(2) // nodes
configureCluster(numberOfNodes)
.withSecurityJson(JWT_TEST_PATH().resolve("security").resolve(securityJsonFilename))
.addConfig(
"conf1",
Expand Down
Loading