All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.trino.server.security.KerberosAuthenticator Maven / Gradle / Ivy
/*
* Licensed 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 io.trino.server.security;
import com.google.inject.Inject;
import com.sun.security.auth.module.Krb5LoginModule;
import io.airlift.log.Logger;
import io.trino.spi.security.Identity;
import jakarta.annotation.PreDestroy;
import jakarta.ws.rs.container.ContainerRequestContext;
import org.ietf.jgss.GSSContext;
import org.ietf.jgss.GSSCredential;
import org.ietf.jgss.GSSException;
import org.ietf.jgss.GSSManager;
import org.ietf.jgss.GSSName;
import org.ietf.jgss.Oid;
import javax.security.auth.Subject;
import javax.security.auth.kerberos.KerberosPrincipal;
import javax.security.auth.login.AppConfigurationEntry;
import javax.security.auth.login.Configuration;
import javax.security.auth.login.LoginContext;
import javax.security.auth.login.LoginException;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.security.Principal;
import java.security.PrivilegedAction;
import java.util.Base64;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import java.util.Optional;
import static com.google.common.net.HttpHeaders.AUTHORIZATION;
import static io.trino.plugin.base.util.SystemProperties.setJavaSecurityKrb5Conf;
import static io.trino.server.security.UserMapping.createUserMapping;
import static javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag.REQUIRED;
import static org.ietf.jgss.GSSCredential.ACCEPT_ONLY;
import static org.ietf.jgss.GSSCredential.INDEFINITE_LIFETIME;
public class KerberosAuthenticator
implements Authenticator
{
private static final Logger LOG = Logger.get(KerberosAuthenticator.class);
private static final String NEGOTIATE_SCHEME = "Negotiate";
private final GSSManager gssManager = GSSManager.getInstance();
private final LoginContext loginContext;
private final GSSCredential serverCredential;
private final UserMapping userMapping;
@Inject
public KerberosAuthenticator(KerberosConfig config)
{
this.userMapping = createUserMapping(config.getUserMappingPattern(), config.getUserMappingFile());
setJavaSecurityKrb5Conf(config.getKerberosConfig().getAbsolutePath());
try {
String hostname = Optional.ofNullable(config.getPrincipalHostname())
.orElseGet(() -> getLocalHost().getCanonicalHostName())
.toLowerCase(Locale.US);
String servicePrincipal = config.getNameType().makeServicePrincipal(config.getServiceName(), hostname);
loginContext = new LoginContext("", null, null, new Configuration()
{
@Override
public AppConfigurationEntry[] getAppConfigurationEntry(String name)
{
Map options = new HashMap<>();
options.put("refreshKrb5Config", "true");
options.put("doNotPrompt", "true");
if (LOG.isDebugEnabled()) {
options.put("debug", "true");
}
if (config.getKeytab() != null) {
options.put("keyTab", config.getKeytab().getAbsolutePath());
}
options.put("isInitiator", "false");
options.put("useKeyTab", "true");
options.put("principal", servicePrincipal);
options.put("storeKey", "true");
return new AppConfigurationEntry[] {new AppConfigurationEntry(Krb5LoginModule.class.getName(), REQUIRED, options)};
}
});
loginContext.login();
GSSName gssName = config.getNameType().getGSSName(gssManager, config.getServiceName(), hostname);
serverCredential = doAs(loginContext.getSubject(), () -> gssManager.createCredential(
gssName,
INDEFINITE_LIFETIME,
new Oid[] {
new Oid("1.2.840.113554.1.2.2"), // kerberos 5
new Oid("1.3.6.1.5.5.2") // spnego
},
ACCEPT_ONLY));
}
catch (LoginException e) {
throw new RuntimeException(e);
}
}
@PreDestroy
public void shutdown()
{
try {
loginContext.logout();
}
catch (LoginException e) {
throw new RuntimeException(e);
}
}
@Override
public Identity authenticate(ContainerRequestContext request)
throws AuthenticationException
{
String header = request.getHeaders().getFirst(AUTHORIZATION);
String requestSpnegoToken = null;
Principal principal = null;
if (header != null) {
String[] parts = header.split("\\s+");
if (parts.length == 2 && parts[0].equals(NEGOTIATE_SCHEME)) {
try {
requestSpnegoToken = parts[1];
principal = authenticate(parts[1]).orElse(null);
}
catch (RuntimeException e) {
throw new RuntimeException("Invalid Token", e);
}
}
}
if (principal == null) {
if (requestSpnegoToken != null) {
throw new AuthenticationException("Invalid Token", NEGOTIATE_SCHEME);
}
throw new AuthenticationException(null, NEGOTIATE_SCHEME);
}
try {
String authenticatedUser = userMapping.mapUser(principal.toString());
return Identity.forUser(authenticatedUser)
.withPrincipal(principal)
.build();
}
catch (UserMappingException e) {
throw new AuthenticationException(e.getMessage(), NEGOTIATE_SCHEME);
}
}
private Optional authenticate(String token)
{
GSSContext context = doAs(loginContext.getSubject(), () -> gssManager.createContext(serverCredential));
try {
byte[] inputToken = Base64.getDecoder().decode(token);
context.acceptSecContext(inputToken, 0, inputToken.length);
// We can't hold on to the GSS context because HTTP is stateless, so fail
// if it can't be set up in a single challenge-response cycle
if (context.isEstablished()) {
return Optional.of(new KerberosPrincipal(context.getSrcName().toString()));
}
LOG.debug("Failed to establish GSS context for token %s", token);
}
catch (GSSException e) {
// ignore and fail the authentication
LOG.debug(e, "Authentication failed for token %s", token);
}
finally {
try {
context.dispose();
}
catch (GSSException e) {
// ignore
}
}
return Optional.empty();
}
private interface GssSupplier
{
T get()
throws GSSException;
}
private static T doAs(Subject subject, GssSupplier action)
{
return Subject.doAs(subject, (PrivilegedAction) () -> {
try {
return action.get();
}
catch (GSSException e) {
throw new RuntimeException(e);
}
});
}
private static InetAddress getLocalHost()
{
try {
return InetAddress.getLocalHost();
}
catch (UnknownHostException e) {
throw new RuntimeException(e);
}
}
}