The jax-rs-pac4j
project is an easy and powerful security library for JAX-RS web applications which supports authentication and authorization, but also application logout and advanced features like session fixation and CSRF protection.
It's based on Java 8, servlet 3 (when present), JAX-RS 2 and on the pac4j security engine. It's available under the Apache 2 license.
- A client represents an authentication mechanism. It performs the login process and returns a user profile. An indirect client is for UI authentication while a direct client is for web services authentication:
â–¸ OAuth - SAML - CAS - OpenID Connect - HTTP - OpenID - Google App Engine - LDAP - SQL - JWT - MongoDB - Stormpath - IP address
- An authorizer is meant to check authorizations on the authenticated user profile(s) or on the current web context:
â–¸ Roles / permissions - Anonymous / remember-me / (fully) authenticated - Profile type, attribute - CORS - CSRF - Security headers - IP address, HTTP method
- Filters protect resources and map some of them to login processes.
- The
SecurityFilter
protects a resource by checking that the user is authenticated and that the authorizations are valid, according to the clients and authorizers configuration. If the user is not authenticated, it performs authentication for direct clients or starts the login process for indirect clients - The
CallbackFilter
finishes the login process for an indirect client - The
ApplicationLogoutFilter
logs out the user from the application.
These filters can be directly registered by hand, or instead, the following features can be used.
- Generic JAX-RS Providers and Features activate the use of some of the filters on the JAX-RS implementation based on various conditions
- The
JaxRsContextFactoryProvider
enables generic JAX-RS based pac4j functioning, without session handling (i.e., it will only work with direct clients) - The
Pac4JSecurityFeature
enables annotation-based activation of the filters at the resource method level - The
Pac4JSecurityFilterFeature
activates a global filter that will be applied to every resources.
- Container/Implementation-specific Providers and Features extend the basic functionality provided by the generic ones
- The
Pac4JValueFactoryProvider
enables injection of the security profile in resource method - The
ServletJaxRsContextFactoryProvider
provides session handling (and thus indirect clients support) by replacing the genericJaxRsContextFactoryProvider
(for Servlet-based JAX-RS implementations, e.g., Jersey on Netty or Grizzly Servlet, Resteasy on Undertow). - The
GrizzlyJaxRsContextFactoryProvider
provides session handling (and thus indirect clients support) by replacing the genericJaxRsContextFactoryProvider
(for Grizzly2 without Servlet support).
Just follow these easy steps to secure your JAX-RS web application. See also dropwizard-pac4j for even easier configuration when using dropwizard!
You need to add a dependency on:
- jax-rs-pac4j
- for Jersey (>=2.26) : the
jersey-pac4j
library (groupId: org.pac4j, version: 3.0.0) - for Jersey (<2.26) : the
jersey225-pac4j
library (groupId: org.pac4j, version: 3.0.0) - for Resteasy : the
resteasy-pac4j
library (groupId: org.pac4j, version: 3.0.0) andresteasy-cdi
for CDI support
- for Jersey (>=2.26) : the
- the appropriate
pac4j
submodules (groupId: org.pac4j, version: 3.0.0):pac4j-oauth
for OAuth support (Facebook, Twitter...),pac4j-cas
for CAS support,pac4j-ldap
for LDAP authentication, etc.
All released artifacts are available in the Maven central repository.
The configuration (org.pac4j.core.config.Config
) contains all the clients and authorizers required by the application to handle security.
GoogleOidcClient oidcClient = new GoogleOidcClient();
oidcClient.setClientID("id");
oidcClient.setSecret("secret");
oidcClient.addCustomParam("prompt", "consent");
SAML2ClientConfiguration cfg = new SAML2ClientConfiguration("resource:samlKeystore.jks",
"pac4j-demo-passwd", "pac4j-demo-passwd", "resource:testshib-providers.xml");
cfg.setMaximumAuthenticationLifetime(3600);
cfg.setServiceProviderEntityId("urn:mace:saml:pac4j.org");
cfg.setServiceProviderMetadataPath("sp-metadata.xml");
SAML2Client saml2Client = new SAML2Client(cfg);
FacebookClient facebookClient = new FacebookClient("fbId", "fbSecret");
TwitterClient twitterClient = new TwitterClient("twId", "twSecret");
FormClient formClient = new FormClient("http://localhost:8080/loginForm.jsp",
new SimpleTestUsernamePasswordAuthenticator());
IndirectBasicAuthClient basicAuthClient = new IndirectBasicAuthClient(
new SimpleTestUsernamePasswordAuthenticator());
CasClient casClient = new CasClient("http://mycasserver/login");
ParameterClient parameterClient = new ParameterClient("token", new JwtAuthenticator("salt"));
Config config = new Config("/callback", oidcClient, saml2Client, facebookClient,
twitterClient, formClient, basicAuthClient, casClient, parameterClient);
config.getClients().setUrlResolver(new JaxRsUrlResolver());
config.getClients().setAjaxRequestResolver(new JaxRsAjaxRequestResolver());
config.addAuthorizer("admin", new RequireAnyRoleAuthorizer("ROLE_ADMIN"));
config.addAuthorizer("custom", new CustomAuthorizer());
}
-
RECOMMENDED the
JaxRsUrlResolver
as the default callback url resolver, it will ensure that in practice, the callback url passed to external authentication system corresponds to the real URL of the callback endpoint -
RECOMMENDED the
JaxRsAjaxRequestResolver
as the default callback url resolver, it will ensure that the endpoints won't redirect to the login page but answer 401 in case of authentication error -
a specific
SessionStore
using thesetSessionStore(sessionStore)
method (by default, withJaxRsContextFactoryProvider
, session handling is not supported; withServletJaxRsContextFactoryProvider
, it uses theServletJaxRsSessionStore
which relies on the underlying Servlet Container HTTP session; and withGrizzlyJaxRsContextFactoryProvider
, it uses theGrizzlySessionStore
which relies on the underlying HTTP session managed by Grizzly). -
specific matchers via the
addMatcher(name, Matcher)
method.
The configuration is then passed to the various Providers and Features presented previously.
For a bare JAX-RS implementation without session management and annotation-support (here with Jersey, to be adapted):
resourceConfig
.register(new JaxRsContextFactoryProvider(config))
.register(new Pac4JSecurityFeature(config));
For a Jersey-based and Servlet-based (e.g., Jetty or Grizzly Servlet) environment with session management, annotation support and method parameters injection:
resourceConfig
.register(ServletJaxRsContextFactoryProvider.class)
.register(new Pac4JSecurityFeature(config))
.register(new Pac4JValueFactoryProvider.Binder());
For a Jersey-based and Grizzly-based environment without Servlet but session management and annotation support and method parameters injection:
resourceConfig
.register(new GrizzlyJaxRsContextFactoryProvider(config))
.register(new Pac4JSecurityFeature(config))
.register(new Pac4JValueFactoryProvider.Binder());
For a Resteasy-based and Servlet-based (e.g., Undertow) environment with session management and annotation support:
public class MyApp extends Application {
...
@Override
public Set<Object> getSingletons() {
Config config = getConfig();
Set<Object> singletons = new HashSet<>();
singletons.add(new Pac4JSecurityFeature(config));
return singletons;
}
@Override
public Set<Class<?>> getClasses() {
Set<Class<?>> classes = new HashSet<>();
classes.add(ServletJaxRsContextFactoryProvider.class);
classes.add(Pac4JProfileInjectorFactory.class);
return classes;
}
}
For RestEasy, you need to include resteasy-cdi
support to your project to ensure that dependencies are injected at runtime. Refer to the tests in resteasy-pac4j
module.
Note that a default value for the clients
parameter of the @Pac4JSecurity
annotation can be passed to the constructor of Pac4JSecurityFeature
.
When autoscanning is enabled, dropping the jax-rs-pac4j jar in the classpath won't have any effect. The developper always need to make some choices on which provider must be used depending on its environment.
A good practice in this context would be to define a JAX-RS @Provider
to setup it like so:
@Provider
public class Pac4JFeature implements Feature {
@Override
public boolean configure(FeatureContext context) {
context
.register(new JaxRsConfigProvider(config))
.register(new Pac4JSecurityFeature())
.register(new Pac4JValueFactoryProvider.Binder()) // only with Jersey
.register(new Pac4JProfileInjectorFactory()) // only with Resteasy
.register(new ServletJaxRsContextFactoryProvider());
return true;
}
}
The content of this file would vary depending on your environment as explained in the previous section.
You can protect (authentication + authorizations) the urls of your JAX-RS application by using the SecurityFilter
and defining the appropriate mapping. It has the following behaviour:
-
If the HTTP request matches the
matchers
configuration (or nomatchers
are defined), the security is applied. Otherwise, the user is automatically granted access. -
First, if the user is not authenticated (no profile) and if some clients have been defined in the
clients
parameter, a login is tried for the direct clients. -
Then, if the user has a profile, authorizations are checked according to the
authorizers
configuration. If the authorizations are valid, the user is granted access. Otherwise, a 403 error page is displayed. -
Finally, if the user is still not authenticated (no profile), he is redirected to the appropriate identity provider if the first defined client is an indirect one in the
clients
configuration. Otherwise, a 401 error page is displayed.
In order to bind the filter to an URL, it must be bound to a JAX-RS Resource method using the @Pac4JSecurity
annotation.
For example:
@GET
@Produces(MediaType.APPLICATION_JSON)
@Pac4JSecurity(authorizers = "isAuthenticated")
public UserData getUserData(@Pac4JProfile CommonProfile profile) {
LOG.debug("Returning infos for {}", profile.getId());
return new UserData(profile.getId(), profile.getDisplayName());
}
It is also possible to put @Pac4JSecurity
directly on a class resource: the
security filter will thus apply to every method of the resource and can be
overridden with a method-level @Pac4JSecurity
annotation (always takes
precedence) or disabled by exploiting the ignore
property of the annotation:
@Path("/class")
@Pac4JSecurity(clients = "DirectFormClient", authorizers = "isAuthenticated")
public class TestClassLevelResource {
@GET
@Path("no")
@Pac4JSecurity(ignore = true)
public String get() {
return "ok";
}
@POST
@Path("direct")
public String direct() {
return "ok";
}
}
Another option is to register the filter into Jersey as a global filter like so:
resourceConfig.register(
new Pac4JSecurityFilterFeature(pac4jConfig, null, "isAuthenticated", null, "excludeUserSession", null));
null
values are used to denote defaults, see next section.
clients
(optional): the list of client names (separated by commas) used for authentication:
- in all cases, this filter requires the user to be authenticated. Thus, if the
clients
is blank or not defined, the user must have been previously authenticated - if the
client_name
request parameter is provided, only this client (if it exists in theclients
) is selected.
authorizers
(optional): the list of authorizer names (separated by commas) used to check authorizations:
- if the
authorizers
is blank or not defined, no authorization is checked - the following authorizers are available by default (without defining them in the configuration):
isFullyAuthenticated
to check if the user is authenticated but not remembered,isRemembered
for a remembered user,isAnonymous
to ensure the user is not authenticated,isAuthenticated
to ensure the user is authenticated (not necessary by default unless you use theAnonymousClient
)hsts
to use theStrictTransportSecurityHeader
authorizer,nosniff
forXContentTypeOptionsHeader
,noframe
forXFrameOptionsHeader
,xssprotection
forXSSProtectionHeader
,nocache
forCacheControlHeader
orsecurityHeaders
for the five previous authorizerscsrfToken
to use theCsrfTokenGeneratorAuthorizer
with theDefaultCsrfTokenGenerator
(it generates a CSRF token and saves it as thepac4jCsrfToken
request attribute and in thepac4jCsrfToken
cookie),csrfCheck
to check that this previous token has been sent as thepac4jCsrfToken
header or parameter in a POST request andcsrf
to use both previous authorizers.
-
matchers
(optional): the list of matcher names (separated by commas) that the request must satisfy to check authentication / authorizations -
multiProfile
(optional): it indicates whether multiple authentications (and thus multiple profiles) must be kept at the same time (false
by default). -
skipResponse
(optional): by default pac4j populates an answer (in case of unauthenticated or unauthorized access, but also to add headers to the normal jax-rs response via the authorizers), if this is set totrue
then the handling of the response will be skipped and jax-rs will be free to process the request.
For indirect clients (like Facebook), the user is redirected to an external identity provider for login and then back to the application.
Thus, a callback endpoint is required in the application. It is managed by the CallbackFilter
which has the following behaviour:
-
the credentials are extracted from the current request to fetch the user profile (from the identity provider) which is then saved in the web session
-
finally, the user is redirected back to the originally requested url (or to the
defaultUrl
).
In order to bind the filter to an URL, it must be bound to a JAX-RS Resource method using the @Pac4JCallback
annotation.
For example:
@GET
@Pac4JCallback(skipResponse = true)
public UserData loginCB(@Pac4JProfile Optional<CommonProfile> profile) {
if (profile.isPresent()) {
return new UserData(profile.getId(), profile.getDisplayName());
} else {
throw new WebApplicationException(401);
}
}
-
defaultUrl
(optional): it's the default url after login if no url was originally requested (/
by default) -
multiProfile
(optional): it indicates whether multiple authentications (and thus multiple profiles) must be kept at the same time (false
by default) -
renewSession
(optional): it indicates whether the web session must be renewed after login, to avoid session hijacking (true
by default). -
defaultClient
(optional): it defines the default client to use to finish the login process if none is provided on the URL (not defined by default) -
skipResponse
(optional): by default pac4j builds an answer (to redirect to the originally requested url), if this is set totrue
then the response will be skipped. Coupled with theCommonProfile
parameter injection (see below), it can be useful to implement the desired answer (for example 401) in the resource method.
When using Jersey or Resteasy as the JAX-RS runtime, it is possible to directly inject a pac4j profile or profile manager using method parameters injection. When using another JAX-RS runtime, see below for workarounds.
You can get the profile of the authenticated user using the annotation @Pac4JProfile
like so:
@GET
@Produces(MediaType.APPLICATION_JSON)
@Pac4JSecurity(authorizers = "isAuthenticated")
public UserData getUserData(@Pac4JProfile CommonProfile profile) {
// profile can't be null
LOG.debug("Returning infos for {}", profile.getId());
return new UserData(profile.getId(), profile.getDisplayName());
}
It is also possible to inject a optional CommonProfile
like so:
@GET
@Produces(MediaType.APPLICATION_JSON)
public UserData getUserData(@Pac4JProfile Optional<CommonProfile> profile) {
if (profile.isPresent()) {
LOG.debug("Returning infos for {}", profile.getId());
return new UserData(profile.getId(), profile.getDisplayName());
} else {
throw new WebApplicationExcpotion(401);
}
}
You can also get the profile manager (which gives access to more advanced information about the profile) using the annotation @Pac4JProfileManager
like so:
@GET
@Produces(MediaType.APPLICATION_JSON)
public UserData getUserData(@Pac4JProfileManager ProfileManager<CommonProfile> profileM) {
final CommonProfile profile = profileM.get(true).get();
LOG.debug("Returning infos for {}", profile.getId());
return new UserData(profile.getId(), profile.getDisplayName());
}
You can test if the user is authenticated using profileManager.isAuthenticated()
.
You can get all the profiles of the authenticated user (if ever multiple ones are kept) using profileManager.getAll(true)
.
The retrieved profile is at least a CommonProfile
, from which you can retrieve the most common attributes that all profiles share. But you can also cast the user profile to the appropriate profile according to the provider used for authentication. For example, after a Facebook authentication:
FacebookProfile facebookProfile = (FacebookProfile) commonProfile;
or even:
@GET
@Produces(MediaType.APPLICATION_JSON)
public UserData getUserData(@Pac4JProfile FacebookProfile profile) {
LOG.debug("Returning infos for {}", profile.getId());
return new UserData(profile.getId(), profile.getDisplayName());
}
Other solutions involves:
- retrieving the
SecurityContext
and casting it toPac4JSecurityContext
to access the profiles. - retrieving the
SecurityContext
and casting it toPac4JSecurityContext
to access theJaxRsContext
. - retrieving the
JaxRsContext
in order to instantiate aJaxRsProfileManager
.
To retrieve the Pac4JSecurityContext
or the JaxRsContext
, see JerseyResource.java or RestEasyResource.java for examples.
Worst case scenario, when using a JAX-RS runtime running on top of a Servlet container, it is always possible to simply exploit the HttpServletRequest
as explained there:
@GET
public void get(@Context HttpServletRequest request) {
ProfileManager manager = new ProfileManager(new J2EContext(request, null));
Optional<CommonProfile> profile = manager.get(true);
}
You can log out the current authenticated user using the ApplicationLogoutFilter
. It has the following behaviour:
-
after logout, the user is redirected to the url defined by the
url
request parameter if it matches thelogoutUrlPattern
-
or the user is redirected to the
defaultUrl
if it is defined -
otherwise, a blank page is displayed.
In order to bind the filter to an URL, it must be bound to a JAX-RS Resource method using the @Pac4JLogout
annotation.
For example:
@DELETE
@Path("/session")
@Pac4JLogout(skipResponse = true)
public void logout() {
// do nothing
}
-
defaultUrl
(optional): the default logout url if nourl
request parameter is provided or if theurl
does not match thelogoutUrlPattern
(not defined by default) -
logoutUrlPattern
(optional): the logout url pattern that theurl
parameter must match (only relative urls are allowed by default). -
skipResponse
(optional): by default pac4j builds an answer (to redirect to the logout url), if this is set totrue
then the response will be skipped. In the case of RESTful APIs, it can make sense to not use redirection.
See the release notes. Learn more by browsing the jax-rs-pac4j Javadoc and the pac4j Javadoc.
If you have any question, please use the following mailing lists:
The version 3.0.0-SNAPSHOT is under development.
Maven artifacts are built via Travis and available in the Sonatype snapshots repository. This repository must be added in the Maven settings.xml
or pom.xml
files:
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>