alluxio.security.authentication.plain.SaslServerHandlerPlain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alluxio-core-common Show documentation
Show all versions of alluxio-core-common Show documentation
Common utilities shared in Alluxio core modules
/*
* The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
* (the "License"). You may not use this work except in compliance with the License, which is
* available at www.apache.org/licenses/LICENSE-2.0
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied, as more fully set forth in the License.
*
* See the NOTICE file distributed with this work for information regarding copyright ownership.
*/
package alluxio.security.authentication.plain;
import alluxio.conf.AlluxioConfiguration;
import alluxio.conf.PropertyKey;
import alluxio.security.authentication.AbstractSaslServerHandler;
import alluxio.security.authentication.AuthType;
import alluxio.security.authentication.AuthenticatedUserInfo;
import alluxio.security.authentication.AuthenticationProvider;
import alluxio.security.authentication.ImpersonationAuthenticator;
import alluxio.security.authentication.SaslServerHandler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.security.Security;
import java.util.HashMap;
import javax.security.sasl.Sasl;
import javax.security.sasl.SaslException;
/**
* {@link SaslServerHandler} implementation for Plain/Custom schemes.
*/
public class SaslServerHandlerPlain extends AbstractSaslServerHandler {
private static final Logger LOG = LoggerFactory.getLogger(SaslServerHandlerPlain.class);
static {
Security.addProvider(new PlainSaslServerProvider());
}
/**
* Creates {@link SaslServerHandler} for Plain/Custom.
*
* @param serverName server name
* @param conf Alluxio configuration
* @param authenticator the impersonation authenticator
* @throws SaslException
*/
public SaslServerHandlerPlain(String serverName, AlluxioConfiguration conf,
ImpersonationAuthenticator authenticator) throws SaslException {
AuthType authType =
conf.getEnum(PropertyKey.SECURITY_AUTHENTICATION_TYPE, AuthType.class);
AuthenticationProvider provider = AuthenticationProvider.Factory.create(authType, conf);
mSaslServer = Sasl.createSaslServer(PlainSaslServerProvider.MECHANISM, null, serverName,
new HashMap(), new PlainSaslServerCallbackHandler(provider, authenticator));
}
@Override
public void setAuthenticatedUserInfo(AuthenticatedUserInfo userinfo) {
// Plain authentication only needs authorized user name which is available in completed
// SaslServer instance.
}
@Override
public AuthenticatedUserInfo getAuthenticatedUserInfo() {
return new AuthenticatedUserInfo(mSaslServer.getAuthorizationID());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy