Security

  • Base permission - basic permission, e.g. READ, CREATE, UPDATE, DELETE
  • Group permission - group permission could contain base permissions. Group is related to some domain object, e.g. IDENTITY, ROLE
  • Authority - Group + base permission, e.g. IDENTITY_READ, ROLE_CREATE. Authority is granted to identity by authentication.

API access requires the user to be authenticated, excluding a few public endpoints. We can divide the sign in into two parts:

  • authentication - the user proves his identity
  • authorization - the user has access to given resource

Authentication is realized through a request filterchain. The filters must always follow specified behaviour:

  • if credentials are OK, continue to authorization
  • if credentials do not match, pass request to another filter in chain

In reality there is only one authentication servlet filter - AuthenticationFilter. Others filters are Spring beans implementing IdmAuthenticationFilter interface. An exception in filters is the ExtendExpirationFilter, which is another servlet filter handling the extension of expiration date of JWT tokens. This filter also controls possible exceptions in authentication flow.

There are 2 endpoints for successful user login:

  • /authentication - POST, public - internal authentication against IdM, returns JWT token
  • /authentication/remote-auth - GET, secured - authentication against external service, returns JWT token and expects the user to be successfully authenticated by one of filters

Filter do not check authorization or user's permissions, just validate the request data, transform these and pass them to Authentication Managers. There are following filters in IdM core (the core module):

  • BasicIdMAuthenticationFilter
    • HTTP Basic authentication, login and password are base64 encoded in HTTP header "Authorization" prefixed by "Basic ", according to RFC 2617
    • internal API transforms the login and password and passes them to Authorization Manager
  • JwtIdMAuthenticationFilter
    • valides IdM JWT token (read as "jot")
    • in the "authorities" property there is a list of application permission the user has
    • tokens without expiration are taken as valid
    • HMAC256
  • external authentication server
    • CzechIdM is ready to authenticate users based on external resource
    • external filters are based on the same principles mentioned above
    • primary purpose is to issue the internal IdM JWT token to user using the remote-auth endpoint
    • filter behaves quite permissively - if user accesses other endpoints then those for authentication, the filter signs the user in for each request and completes the request (if the user is authorized)

User authorization is checked on the API endpoint layer and enforced by Spring Security. The permissions are a part of IdM JWT:

  • currentUsername - effective user's login
  • originalUsername - logged user's login
  • currentIdentityId - effective user's ID
  • originalIdentityId - logged user's ID
  • authorities - list of application permissions
  • exp - token expiration date
  • iat - issued at date

All IdM JWT tokens are signed using HMAC256 algorithm. The symmetric encryption key is configuration property of CzechIdM, stored as "idm.sec.security.jwt.secret.token". Default expiration time is 10 minutes.

Backend of CzechIdM supports immediate detection of user's authorization change. Each modification type is implemented as application event processor, for further details please check the source code and tests :) The information about last authority change is kept in IdmAuthorityChange entity. Types of modifications:

  • addition / removal of role, which carries application permissions
  • disabling the user
  • role's permissions change - revokes tokens of all users which have the role assigned

By default both frontend (FE) and backend (BE) automatically extend the expiration of IdM JWT. In case of successful GET request on API, the token expiration is extended on BE and passed in HTTP response (watch out for CORS, has to be explicitly allowed, since the HTTP header is called "CIDMST"). FE (RestApiService.js) automatically disassembles the response looking for auth. token. If token is present, it is set as new token which shall be used for new API requests (done in App.js).

Developer tip: do not trust the console, especially while working with promises:

static printHeadersOK(response) {
  console.log(response.headers.get('CIDMST')); prints header value
}

static printHeadersWRONG(response) {
  console.log(response.headers); // prints '{}', object looks empty
}

SSO support on FE is realized by issuing the internal IdM JWT without the need to type in user's credentials. This is done by sending a "prerequest" onto secured /authentication/remote-auth endpoint, accessible only to authenticated users. The authentication itself must be done in one of auth filters.

We expect either HTTP header or Cookie to be the bearer of the remote authentication data. When the user accesses IdM, FE first tries to sign him in using the remote-auth. The remote-auth attempt is done only on first access to CzechIdM, token expiration, authority change or user login.