![JAR search and dependency download from the Maven repository](/logo.png)
org.glassfish.soteria.mechanisms.jaspic.Jaspic Maven / Gradle / Ivy
Show all versions of jakarta.security.enterprise Show documentation
/*
* Copyright (c) 2015, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.soteria.mechanisms.jaspic;
import static java.lang.Boolean.TRUE;
import static org.glassfish.soteria.Utils.isEmpty;
import java.io.IOException;
import java.security.AccessController;
import java.security.Principal;
import java.security.PrivilegedAction;
import java.util.List;
import java.util.Set;
import jakarta.security.enterprise.AuthenticationStatus;
import javax.security.auth.Subject;
import javax.security.auth.callback.Callback;
import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.callback.UnsupportedCallbackException;
import jakarta.security.auth.message.AuthStatus;
import jakarta.security.auth.message.MessageInfo;
import jakarta.security.auth.message.callback.CallerPrincipalCallback;
import jakarta.security.auth.message.callback.GroupPrincipalCallback;
import jakarta.security.auth.message.config.AuthConfigFactory;
import jakarta.security.auth.message.module.ServerAuthModule;
import jakarta.security.enterprise.authentication.mechanism.http.AuthenticationParameters;
import jakarta.servlet.ServletContext;
import jakarta.servlet.ServletException;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
/**
* A set of utility methods for using the JASPIC API
*
* @author Arjan Tijms
*
*/
public final class Jaspic {
public static final String IS_AUTHENTICATION = "org.glassfish.soteria.security.message.request.authentication";
public static final String IS_AUTHENTICATION_FROM_FILTER = "org.glassfish.soteria.security.message.request.authenticationFromFilter";
public static final String IS_SECURE_RESPONSE = "org.glassfish.soteria.security.message.request.secureResponse";
public static final String IS_REFRESH = "org.glassfish.soteria.security.message.request.isRefresh";
public static final String DID_AUTHENTICATION = "org.glassfish.soteria.security.message.request.didAuthentication";
public static final String AUTH_PARAMS = "org.glassfish.soteria.security.message.request.authParams";
public static final String LOGGEDIN_USERNAME = "org.glassfish.soteria.security.message.loggedin.username";
public static final String LOGGEDIN_ROLES = "org.glassfish.soteria.security.message.loggedin.roles";
public static final String LAST_AUTH_STATUS = "org.glassfish.soteria.security.message.authStatus";
public static final String CONTEXT_REGISTRATION_ID = "org.glassfish.soteria.security.message.registrationId";
// Key in the MessageInfo Map that when present AND set to true indicated a protected resource is being accessed.
// When the resource is not protected, GlassFish omits the key altogether. WebSphere does insert the key and sets
// it to false.
private static final String IS_MANDATORY = "jakarta.security.auth.message.MessagePolicy.isMandatory";
private static final String REGISTER_SESSION = "jakarta.servlet.http.registerSession";
private Jaspic() {}
public static boolean authenticate(HttpServletRequest request, HttpServletResponse response, AuthenticationParameters authParameters) {
try {
// JASPIC 1.1 does not have any way to distinguish between a
// SAM called at start of a request or following request#authenticate.
// See https://java.net/jira/browse/JASPIC_SPEC-5
// We now add this as a request attribute instead, but should better
// be the MessageInfo map
request.setAttribute(IS_AUTHENTICATION, true);
if (authParameters != null) {
request.setAttribute(AUTH_PARAMS, authParameters);
}
return request.authenticate(response);
} catch (ServletException | IOException e) {
throw new IllegalArgumentException(e);
} finally {
request.removeAttribute(IS_AUTHENTICATION);
if (authParameters != null) {
request.removeAttribute(AUTH_PARAMS);
}
}
}
public static AuthenticationParameters getAuthParameters(HttpServletRequest request) {
AuthenticationParameters authParameters = (AuthenticationParameters) request.getAttribute(AUTH_PARAMS);
if (authParameters == null) {
authParameters = new AuthenticationParameters();
}
return authParameters;
}
public static void logout(HttpServletRequest request, HttpServletResponse response) {
try {
request.logout();
// Need to invalidate the session to really logout - request.logout only logs the user out for the *current request*
// This is nearly always unwanted. Although the SAM's cleanSubject method can clear any session data too if needed,
// invalidating the session is pretty much the safest way.
request.getSession().invalidate();
} catch (ServletException e) {
throw new IllegalArgumentException(e);
}
}
public static void cleanSubject(Subject subject) {
if (subject != null) {
AccessController.doPrivileged(new PrivilegedAction() {
public Void run() {
subject.getPrincipals().clear();
return null;
}
});
}
}
public static boolean isRegisterSession(MessageInfo messageInfo) {
return Boolean.valueOf((String)messageInfo.getMap().get(REGISTER_SESSION));
}
public static boolean isProtectedResource(MessageInfo messageInfo) {
return Boolean.valueOf((String) messageInfo.getMap().get(IS_MANDATORY));
}
@SuppressWarnings("unchecked")
public static void setRegisterSession(MessageInfo messageInfo, String username, Set roles) {
messageInfo.getMap().put("jakarta.servlet.http.registerSession", TRUE.toString());
HttpServletRequest request = (HttpServletRequest) messageInfo.getRequestMessage();
request.setAttribute(LOGGEDIN_USERNAME, username);
// TODO: check for existing roles and add
request.setAttribute(LOGGEDIN_ROLES, roles);
}
public static boolean isAuthenticationRequest(HttpServletRequest request) {
return TRUE.equals(request.getAttribute(IS_AUTHENTICATION));
}
public static void notifyContainerAboutLogin(Subject clientSubject, CallbackHandler handler, Principal callerPrincipal, Set groups) {
handleCallbacks(clientSubject, handler, new CallerPrincipalCallback(clientSubject, callerPrincipal), groups);
}
public static void notifyContainerAboutLogin(Subject clientSubject, CallbackHandler handler, String callerPrincipalName, Set groups) {
handleCallbacks(clientSubject, handler, new CallerPrincipalCallback(clientSubject, callerPrincipalName), groups);
}
private static void handleCallbacks(Subject clientSubject, CallbackHandler handler, CallerPrincipalCallback callerPrincipalCallback, Set groups) {
if (clientSubject == null) {
throw new IllegalArgumentException("Null clientSubject!");
}
if (handler == null) {
throw new IllegalArgumentException("Null callback handler!");
}
try {
if (groups == null || isEmpty(groups) ||
(callerPrincipalCallback.getPrincipal() == null && callerPrincipalCallback.getName() == null)) {
// don't handle groups if null/empty or if caller is null
handler.handle(new Callback[] {
callerPrincipalCallback });
} else {
handler.handle(new Callback[] {
callerPrincipalCallback,
new GroupPrincipalCallback(clientSubject, groups.toArray(new String[groups.size()])) });
}
} catch (IOException | UnsupportedCallbackException e) {
// Should not happen
throw new IllegalStateException(e);
}
}
public static void setLastAuthenticationStatus(HttpServletRequest request, AuthenticationStatus status) {
request.setAttribute(LAST_AUTH_STATUS, status);
}
public static AuthenticationStatus getLastAuthenticationStatus(HttpServletRequest request) {
return (AuthenticationStatus) request.getAttribute(LAST_AUTH_STATUS);
}
public static AuthStatus fromAuthenticationStatus(AuthenticationStatus authenticationStatus) {
switch (authenticationStatus) {
case NOT_DONE: case SUCCESS:
return AuthStatus.SUCCESS;
case SEND_FAILURE:
return AuthStatus.SEND_FAILURE;
case SEND_CONTINUE:
return AuthStatus.SEND_CONTINUE;
default:
throw new IllegalStateException("Unhandled status:" + authenticationStatus.name());
}
}
/**
* Should be called when the callback handler is used with the intention that an actual
* user is going to be authenticated (as opposed to using the handler for the "do nothing" protocol
* which uses the unauthenticated identity).
*
* @param request The involved HTTP servlet request.
*
*/
public static void setDidAuthentication(HttpServletRequest request) {
request.setAttribute(DID_AUTHENTICATION, TRUE);
}
/**
* Gets the app context ID from the servlet context.
*
*
* The app context ID is the ID that JASPIC associates with the given application.
* In this case that given application is the web application corresponding to the
* ServletContext.
*
* @param context the servlet context for which to obtain the JASPIC app context ID
* @return the app context ID for the web application corresponding to the given context
*/
public static String getAppContextID(ServletContext context) {
return context.getVirtualServerName() + " " + context.getContextPath();
}
/**
* Registers a server auth module as the one and only module for the application corresponding to
* the given servlet context.
*
*
* This will override any other modules that have already been registered, either via proprietary
* means or using the standard API.
*
* @param serverAuthModule the server auth module to be registered
* @param servletContext the context of the app for which the module is registered
* @return A String identifier assigned by an underlying factory corresponding to an underlying factory-factory-factory registration
*/
public static String registerServerAuthModule(ServerAuthModule serverAuthModule, ServletContext servletContext) {
// Register the factory-factory-factory for the SAM
String registrationId = AccessController.doPrivileged(new PrivilegedAction() {
public String run() {
return AuthConfigFactory.getFactory().registerConfigProvider(
new DefaultAuthConfigProvider(serverAuthModule),
"HttpServlet",
getAppContextID(servletContext),
"Default single SAM authentication config provider");
}
});
// Remember the registration ID returned by the factory, so we can unregister the JASPIC module when the web module
// is undeployed. JASPIC being the low level API that it is won't do this automatically.
servletContext.setAttribute(CONTEXT_REGISTRATION_ID, registrationId);
return registrationId;
}
/**
* Deregisters the server auth module (and encompassing wrappers/factories) that was previously registered via a call
* to registerServerAuthModule.
*
* @param servletContext the context of the app for which the module is deregistered
*/
public static void deregisterServerAuthModule(ServletContext servletContext) {
String registrationId = (String) servletContext.getAttribute(CONTEXT_REGISTRATION_ID);
if (!isEmpty(registrationId)) {
AccessController.doPrivileged(new PrivilegedAction() {
public Boolean run() {
return AuthConfigFactory.getFactory().removeRegistration(registrationId);
}
});
}
}
}