Skip to content

Commit

Permalink
[CALCITE-6135] BEARER authentication support
Browse files Browse the repository at this point in the history
  • Loading branch information
Aarchy authored and Aron Meszaros committed Nov 27, 2023
1 parent 01a7a9e commit c84cd60
Show file tree
Hide file tree
Showing 20 changed files with 1,362 additions and 2 deletions.
1 change: 1 addition & 0 deletions bom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ dependencies {
apiv("org.ow2.asm:asm-tree", "asm")
apiv("org.ow2.asm:asm-util", "asm")
apiv("org.slf4j:slf4j-api", "slf4j")
apiv("commons-io:commons-io")
// The log4j2 binding should be a runtime dependency but given that
// some modules shade this dependency we need to keep it as api
apiv("org.apache.logging.log4j:log4j-slf4j-impl", "log4j2")
Expand Down
1 change: 1 addition & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ dependencies {
testImplementation("org.mockito:mockito-core")
testImplementation("org.mockito:mockito-inline")
testImplementation("org.hamcrest:hamcrest-core")
testImplementation("commons-io:commons-io")
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,10 @@ public enum BuiltInConnectionProperty implements ConnectionProperty {
* HTTP Connection Timeout in milliseconds.
*/
HTTP_CONNECTION_TIMEOUT("http_connection_timeout",
Type.NUMBER, Timeout.ofMinutes(3).toMilliseconds(), false);
Type.NUMBER, Timeout.ofMinutes(3).toMilliseconds(), false),

/** File containing bearer tokens. */
TOKEN_FILE("tokenfile", Type.STRING, "", false);

private final String camelName;
private final Type type;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ public interface ConnectionConfig {
long getLBConnectionFailoverSleepTime();
/** @see BuiltInConnectionProperty#HTTP_CONNECTION_TIMEOUT **/
long getHttpConnectionTimeout();
/** @see BuiltInConnectionProperty#TOKEN_FILE */
String tokenFile();
}

// End ConnectionConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,10 @@ public long getHttpConnectionTimeout() {
return BuiltInConnectionProperty.HTTP_CONNECTION_TIMEOUT.wrap(properties).getLong();
}

public String tokenFile() {
return BuiltInConnectionProperty.TOKEN_FILE.wrap(properties).getString();
}

/** Converts a {@link Properties} object containing (name, value)
* pairs into a map whose keys are
* {@link org.apache.calcite.avatica.InternalProperty} objects.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public enum AuthenticationType {
BASIC,
DIGEST,
SPNEGO,
BEARER,
CUSTOM;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@
import java.net.URISyntaxException;
import java.net.URL;
import java.security.Principal;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.concurrent.TimeUnit;

Expand All @@ -68,7 +71,7 @@
* sent and received across the wire.
*/
public class AvaticaCommonsHttpClientImpl implements AvaticaHttpClient, HttpClientPoolConfigurable,
UsernamePasswordAuthenticateable, GSSAuthenticateable {
UsernamePasswordAuthenticateable, GSSAuthenticateable, BearerAuthenticateable {
private static final Logger LOG = LoggerFactory.getLogger(AvaticaCommonsHttpClientImpl.class);

// SPNEGO specific settings
Expand All @@ -91,6 +94,10 @@ public class AvaticaCommonsHttpClientImpl implements AvaticaHttpClient, HttpClie
protected CredentialsProvider credentialsProvider = null;
protected Lookup<AuthSchemeFactory> authRegistry = null;
protected Object userToken;
private static final List<String> AVATICA_SCHEME_PRIORITY =
Collections.unmodifiableList(Arrays.asList(StandardAuthScheme.BASIC,
StandardAuthScheme.DIGEST, StandardAuthScheme.SPNEGO, StandardAuthScheme.NTLM,
StandardAuthScheme.KERBEROS, "Bearer"));

public AvaticaCommonsHttpClientImpl(URL url) {
this.uri = toURI(Objects.requireNonNull(url));
Expand All @@ -104,6 +111,7 @@ protected void initializeClient(PoolingHttpClientConnectionManager pool,
RequestConfig.Builder requestConfigBuilder = RequestConfig.custom();
RequestConfig requestConfig = requestConfigBuilder
.setConnectTimeout(config.getHttpConnectionTimeout(), TimeUnit.MILLISECONDS)
.setTargetPreferredAuthSchemes(AVATICA_SCHEME_PRIORITY)
.build();
HttpClientBuilder httpClientBuilder = HttpClients.custom().setConnectionManager(pool)
.setDefaultRequestConfig(requestConfig);
Expand Down Expand Up @@ -206,6 +214,17 @@ CloseableHttpResponse execute(HttpPost post, HttpClientContext context)
}
}

@Override public void setTokenProvider(String username, BearerTokenProvider tokenProvider) {
this.credentialsProvider = new BasicCredentialsProvider();
((BasicCredentialsProvider) this.credentialsProvider)
.setCredentials(anyAuthScope, new BearerCredentials(username, tokenProvider));

this.authRegistry = RegistryBuilder.<AuthSchemeFactory>create()
.register("Bearer",
new BearerSchemeFactory())
.build();
}

/**
* A credentials implementation which returns null.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,24 @@ public static AvaticaHttpClientFactoryImpl getInstance() {
LOG.debug("{} is not capable of kerberos authentication.", authType);
}

if (client instanceof BearerAuthenticateable) {
if (AuthenticationType.BEARER == authType) {
FileBearerTokenProvider tokenProvider = new FileBearerTokenProvider();
try {
tokenProvider.init(config);
String username = config.avaticaUser();
if (null == username) {
username = System.getProperty("user.name");
}
((BearerAuthenticateable) client).setTokenProvider(username, tokenProvider);
} catch (java.io.IOException e) {
LOG.debug("Failed to initialize bearer authentication");
}
}
} else {
LOG.debug("{} is not capable of bearer authentication.", authType);
}

if (null != kerberosUtil) {
client = new DoAsAvaticaHttpClient(client, kerberosUtil);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.calcite.avatica.remote;

public interface BearerAuthenticateable {

void setTokenProvider(String username, BearerTokenProvider tokenProvider);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.calcite.avatica.remote;

import org.apache.hc.client5.http.auth.Credentials;
import org.apache.hc.core5.annotation.Contract;
import org.apache.hc.core5.annotation.ThreadingBehavior;
import org.apache.hc.core5.util.Args;

import java.io.Serializable;
import java.security.Principal;

@Contract(threading = ThreadingBehavior.IMMUTABLE)
public class BearerCredentials implements Credentials, Serializable {

private final BearerTokenProvider tokenProvider;

private final String userName;

public BearerCredentials(final String userName, final BearerTokenProvider tokenProvider) {
Args.notNull(userName, "userName");
Args.notNull(tokenProvider, "tokenProvider");
this.tokenProvider = tokenProvider;
this.userName = userName;
}

public String getToken() {
return tokenProvider.obtain(userName);
}

@Override
public Principal getUserPrincipal() {
return null;
}

@Override
public char[] getPassword() {
return null;
}
}
142 changes: 142 additions & 0 deletions core/src/main/java/org/apache/calcite/avatica/remote/BearerScheme.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.calcite.avatica.remote;

import org.apache.hc.client5.http.auth.AuthChallenge;
import org.apache.hc.client5.http.auth.AuthScheme;
import org.apache.hc.client5.http.auth.AuthScope;
import org.apache.hc.client5.http.auth.AuthenticationException;
import org.apache.hc.client5.http.auth.Credentials;
import org.apache.hc.client5.http.auth.CredentialsProvider;
import org.apache.hc.client5.http.auth.MalformedChallengeException;
import org.apache.hc.core5.http.HttpHost;
import org.apache.hc.core5.http.HttpRequest;
import org.apache.hc.core5.http.NameValuePair;
import org.apache.hc.core5.http.protocol.HttpContext;
import org.apache.hc.core5.util.Args;
import org.apache.hc.core5.util.Asserts;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.Serializable;
import java.security.Principal;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;

public class BearerScheme implements AuthScheme, Serializable {
private static final Logger LOG = LoggerFactory.getLogger(BearerScheme.class);
private String token;

private final Map<String, String> paramMap;
private boolean complete;

public BearerScheme() {
super();
this.paramMap = new HashMap<>();
this.complete = false;
}

@Override
public String getName() {
return "Bearer";
}

@Override
public boolean isConnectionBased() {
return false;
}

@Override
public String getRealm() {
return this.paramMap.get("realm");
}

@Override
public void processChallenge(
final AuthChallenge authChallenge,
final HttpContext context) throws MalformedChallengeException {
this.paramMap.clear();
final List<NameValuePair> params = authChallenge.getParams();
if (params != null) {
for (final NameValuePair param: params) {
this.paramMap.put(param.getName().toLowerCase(Locale.ROOT), param.getValue());
}
if (LOG.isDebugEnabled()) {
final String error = paramMap.get("error");
if (error != null) {
final StringBuilder buf = new StringBuilder();
buf.append(error);
final String desc = paramMap.get("error_description");
final String uri = paramMap.get("error_uri");
if (desc != null || uri != null) {
buf.append(" (");
buf.append(desc).append("; ").append(uri);
buf.append(")");
}
LOG.debug(buf.toString());
}
}
}
this.complete = true;
}

@Override
public boolean isChallengeComplete() {
return this.complete;
}

@Override
public boolean isResponseReady(
final HttpHost host,
final CredentialsProvider credentialsProvider,
final HttpContext context) throws AuthenticationException {
Args.notNull(host, "Auth host");
Args.notNull(credentialsProvider, "CredentialsProvider");

final Credentials credentials = credentialsProvider.getCredentials(
new AuthScope(host, null, getName()), context);

if (!(credentials instanceof BearerCredentials)) {
return false;
}

this.token = ((BearerCredentials) credentials).getToken();
return null != this.token;
}

@Override
public Principal getPrincipal() {
return null;
}

@Override
public String generateAuthResponse(
final HttpHost host,
final HttpRequest request,
final HttpContext context) throws AuthenticationException {
Asserts.notNull(this.token, "Bearer token");
return "Bearer " + this.token;
}

@Override
public String toString() {
return getName() + this.paramMap;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.calcite.avatica.remote;

import org.apache.hc.client5.http.auth.AuthScheme;
import org.apache.hc.client5.http.auth.AuthSchemeFactory;
import org.apache.hc.core5.annotation.Contract;
import org.apache.hc.core5.annotation.ThreadingBehavior;
import org.apache.hc.core5.http.protocol.HttpContext;

@Contract(threading = ThreadingBehavior.STATELESS)
public class BearerSchemeFactory implements AuthSchemeFactory {
public static final BearerSchemeFactory INSTANCE = new BearerSchemeFactory();

@Override
public AuthScheme create(final HttpContext context) {
return new BearerScheme();
}

}
Loading

0 comments on commit c84cd60

Please sign in to comment.