waffle.shiro.negotiate.NegotiateAuthenticationRealm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of waffle-shiro Show documentation
Show all versions of waffle-shiro Show documentation
Shiro integration for WAFFLE
The newest version!
/*
* MIT License
*
* Copyright (c) 2010-2024 The Waffle Project Contributors: https://github.com/Waffle/waffle/graphs/contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package waffle.shiro.negotiate;
import java.security.Principal;
import javax.security.auth.Subject;
import org.apache.shiro.authc.AuthenticationException;
import org.apache.shiro.authc.AuthenticationInfo;
import org.apache.shiro.authc.AuthenticationToken;
import org.apache.shiro.realm.AuthenticatingRealm;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import waffle.servlet.WindowsPrincipal;
import waffle.windows.auth.IWindowsAuthProvider;
import waffle.windows.auth.IWindowsIdentity;
import waffle.windows.auth.IWindowsSecurityContext;
import waffle.windows.auth.impl.WindowsAuthProviderImpl;
/**
* The Class NegotiateAuthenticationRealm. Derived from
* net.skorgenes.security.jsecurity.negotiate.NegotiateAuthenticationFilter.
*/
public class NegotiateAuthenticationRealm extends AuthenticatingRealm {
/**
* This class's private logger.
*/
private static final Logger LOGGER = LoggerFactory.getLogger(NegotiateAuthenticationRealm.class);
/** The windows auth provider. */
private final IWindowsAuthProvider windowsAuthProvider;
/**
* Instantiates a new negotiate authentication realm.
*/
public NegotiateAuthenticationRealm() {
this.windowsAuthProvider = new WindowsAuthProviderImpl();
}
@Override
public boolean supports(final AuthenticationToken token) {
return token instanceof NegotiateToken;
}
@Override
protected AuthenticationInfo doGetAuthenticationInfo(final AuthenticationToken t) {
final NegotiateToken token = (NegotiateToken) t;
final byte[] inToken = token.getIn();
if (token.isNtlmPost()) {
// type 2 NTLM authentication message received
this.windowsAuthProvider.resetSecurityToken(token.getConnectionId());
}
final IWindowsSecurityContext securityContext;
try {
securityContext = this.windowsAuthProvider.acceptSecurityToken(token.getConnectionId(), inToken,
token.getSecurityPackage());
} catch (final Exception e) {
NegotiateAuthenticationRealm.LOGGER.warn("error logging in user");
throw new AuthenticationException(e);
}
final byte[] continueTokenBytes = securityContext.getToken();
token.setOut(continueTokenBytes);
if (continueTokenBytes != null) {
NegotiateAuthenticationRealm.LOGGER.debug("continue token bytes: {}",
Integer.valueOf(continueTokenBytes.length));
} else {
NegotiateAuthenticationRealm.LOGGER.debug("no continue token bytes");
}
if (securityContext.isContinue() || token.isNtlmPost()) {
throw new AuthenticationInProgressException();
}
final IWindowsIdentity windowsIdentity = securityContext.getIdentity();
securityContext.dispose();
NegotiateAuthenticationRealm.LOGGER.debug("logged in user: {} ({})", windowsIdentity.getFqn(),
windowsIdentity.getSidString());
final Principal principal = new WindowsPrincipal(windowsIdentity);
token.setPrincipal(principal);
final Subject subject = new Subject();
subject.getPrincipals().add(principal);
token.setSubject(subject);
return token.createInfo();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy