use of org.wildfly.security.authz.AuthorizationFailureException in project wildfly by wildfly.
the class RunAsPrincipalInterceptor method processInvocation.
public Object processInvocation(final InterceptorContext context) throws Exception {
final Component component = context.getPrivateData(Component.class);
if (component instanceof EJBComponent == false) {
throw EjbLogger.ROOT_LOGGER.unexpectedComponent(component, EJBComponent.class);
}
final EJBComponent ejbComponent = (EJBComponent) component;
// Set the incomingRunAsIdentity before switching users
final SecurityDomain securityDomain = context.getPrivateData(SecurityDomain.class);
Assert.checkNotNullParam("securityDomain", securityDomain);
final SecurityIdentity currentIdentity = securityDomain.getCurrentSecurityIdentity();
final SecurityIdentity oldIncomingRunAsIdentity = ejbComponent.getIncomingRunAsIdentity();
SecurityIdentity newIdentity;
try {
// run as a user with the given name or if the caller has sufficient permission
if (runAsPrincipal.equals(ANONYMOUS_PRINCIPAL)) {
try {
newIdentity = currentIdentity.createRunAsAnonymous();
} catch (AuthorizationFailureException ex) {
newIdentity = currentIdentity.createRunAsAnonymous(false);
}
} else {
try {
newIdentity = currentIdentity.createRunAsIdentity(runAsPrincipal);
} catch (AuthorizationFailureException ex) {
newIdentity = currentIdentity.createRunAsIdentity(runAsPrincipal, false);
}
}
ejbComponent.setIncomingRunAsIdentity(currentIdentity);
return newIdentity.runAs(context);
} catch (PrivilegedActionException e) {
Throwable cause = e.getCause();
if (cause != null) {
if (cause instanceof Exception) {
throw (Exception) cause;
} else {
throw new RuntimeException(e);
}
} else {
throw e;
}
} finally {
ejbComponent.setIncomingRunAsIdentity(oldIncomingRunAsIdentity);
}
}
Aggregations