org.apache.hive.service.auth.KerberosSaslHelper Maven / Gradle / Ivy
The newest version!
/*
* 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.hive.service.auth;
import java.io.IOException;
import java.util.Map;
import javax.security.sasl.SaslException;
import org.apache.hadoop.hive.metastore.security.HadoopThriftAuthBridge;
import org.apache.hadoop.hive.metastore.security.HadoopThriftAuthBridge.Server;
import org.apache.hadoop.security.SecurityUtil;
import org.apache.hive.service.rpc.thrift.TCLIService;
import org.apache.hive.service.rpc.thrift.TCLIService.Iface;
import org.apache.thrift.TProcessor;
import org.apache.thrift.TProcessorFactory;
import org.apache.thrift.transport.TSaslClientTransport;
import org.apache.thrift.transport.TTransport;
import org.apache.thrift.transport.TTransportException;
public final class KerberosSaslHelper {
public static TProcessorFactory getKerberosProcessorFactory(Server saslServer,
TCLIService.Iface service) {
return new CLIServiceProcessorFactory(saslServer, service);
}
public static TTransport getKerberosTransport(String principal, String host,
TTransport underlyingTransport, Map saslProps, boolean assumeSubject)
throws SaslException {
try {
String[] names = principal.split("[/@]");
if (names.length != 3) {
throw new IllegalArgumentException("Kerberos principal should have 3 parts: " + principal);
}
if (assumeSubject) {
return createSubjectAssumedTransport(principal, host, underlyingTransport, saslProps);
} else {
HadoopThriftAuthBridge.Client authBridge =
HadoopThriftAuthBridge.getBridge().createClientWithConf("kerberos");
return authBridge.createClientTransport(principal, host, "KERBEROS", null,
underlyingTransport, saslProps);
}
} catch (IOException e) {
throw new SaslException("Failed to open client transport", e);
}
}
/**
* Helper to wrap the {@code underlyingTransport} into an assumed kerberos principal.
* The function is used for kerberos based authentication, where {@code kerberosAuthType}
* is set to {@code fromSubject}. If also performs a substitution of {@code _HOST} to the
* local host name, if required.
*
* @param principal The kerberos principal to assume
* @param host Host, used to replace the {@code _HOST} with
* @param underlyingTransport The I/O transport to wrap
* @param saslProps SASL property map
* @return The wrapped transport
* @throws IOException
*/
public static TTransport createSubjectAssumedTransport(String principal, String host,
TTransport underlyingTransport, Map saslProps) throws IOException {
String resolvedPrincipal = SecurityUtil.getServerPrincipal(principal, host);
String[] names = resolvedPrincipal.split("[/@]");
try {
TTransport saslTransport =
new TSaslClientTransport("GSSAPI", null, names[0], names[1], saslProps, null,
underlyingTransport);
return new TSubjectAssumingTransport(saslTransport);
} catch (SaslException | TTransportException se) {
throw new IOException("Could not instantiate transport", se);
}
}
public static TTransport getTokenTransport(String tokenStr, String host,
TTransport underlyingTransport, Map saslProps) throws SaslException {
HadoopThriftAuthBridge.Client authBridge =
HadoopThriftAuthBridge.getBridge().createClientWithConf("kerberos");
try {
return authBridge.createClientTransport(null, host, "DIGEST", tokenStr, underlyingTransport,
saslProps);
} catch (IOException e) {
throw new SaslException("Failed to open client transport", e);
}
}
private KerberosSaslHelper() {
throw new UnsupportedOperationException("Can't initialize class");
}
private static class CLIServiceProcessorFactory extends TProcessorFactory {
private final TCLIService.Iface service;
private final Server saslServer;
public CLIServiceProcessorFactory(Server saslServer, TCLIService.Iface service) {
super(null);
this.service = service;
this.saslServer = saslServer;
}
@Override
public TProcessor getProcessor(TTransport trans) {
TProcessor sqlProcessor = new TCLIService.Processor(service);
return saslServer.wrapNonAssumingProcessor(sqlProcessor);
}
}
}