description |
---|
This article explains how access control performs in Aidbox |
When an HTTP request reaches Aidbox, it goes through several steps. The request can be rejected at any step due to checks being performed on the current step.
Set of HTTP request steps:
- Authentication
- Resolving route
- Authorization
- Request processing
HTTP request processing pipeline
Authentication (AuthN) is the process of verifying the identity of a user or program. The goal is to ensure that the requestor is who they claim to be.
If Aidbox is unable to authenticate the requestor, it may reject the request with an 400 error response.
Aidbox evaluates the request and determines which handler to select. If no handler is found, it returns "404 Not found" response.
Authorization (AuthZ or access control) is the granting or denying access to a requestor. Access control is based on the internal representation of the request. Besides other internal request contains:
- requestor identity
- the handler
Aidbox applies access policies to determine if the request is allowed to invoke the selected handler. If at least one AccessPolicy
allows the operation, handler processes the request. Otherwise, the server returns "401 Unauthorized" response.
Processing the request is useful work done by the handler. When process done, Aidbox returns the output to the requestor.
When:
- Requestor authenticated, and
- Route is resolved, and
- Desired operation is authorized
Aidbox processes the request and returns the result to the requestor.
From an authentication point of view, there are two groups of operations:
- AuthN to open a new session
- Useful work request authentication
There are several flows to initiate a session:
- User login with password flow
- User login with external identity provider
- Client login with Resource Owner Grant
During those login flows Aidbox authenticate user and client (program) requesting the session open. Session itself is needed to authentication useful
request.
Useful requests are performed by clients or programs. Clients add authorization details to each request they send to Aidbox. Clients auth flows supported by Aidbox:
- Basic auth
- Bearer JWT
- Bearer opaque tokens
- Cookie ASID
RFC 7617 defines the "Basic" HTTP authentication method. User ID and password pairs are encodes using base64 and then transmits them as credentials.
Opaque token is a randomly generated string thus there is no meaningful information in the token.
How Aidbox processes opaque token to authenticate the requestor:
- Aidbox sends request to the all auth servers it knows
- Each request asks if the token is issued by an auth server
- If the issuer is found, it returns the details related to the token
- Aidbox enriches the request with the requester details
JSON Web Token (JWT) is a signed container for claims and other details. JWT payload could be checked on fly: JWT expiration, claims and signature.
How Aidbox processes JWT token to authenticate the requestor:
- Aidbox unpacks the JWT
- Aidbox checks JWT expiration
- Aidbox checks JWT signature
- Aidbox requests the token issuer
- Aidbox enriches the request with the requester details
When user logs in (with Aidbox credentials or external identity provider), Aidbox creates a session and sets the session cookie to the browser. Since that time all the requests done by user browser are signed with the session cookie.
When Aidbox receives a request containing session cookie, Aidbox tries to fetch session related the cookie. If session is found, Aidbox authenticate request with the details storing in the session.
AuthN method | External request | Local session access |
---|---|---|
Basic auth | No session access but credentials are stored locally | |
Opaque token | Yes | |
External JWT | Yes | |
JWT issued by Aidbox | Yes | |
Cookie authentication | Yes |
Authorization decides if a request can be processed by the desired handler. By the start of authorization the original HTTP request is augmented with the user or client identity and the desired handler (see the request object structure).
Aidbox applies AccessPolicy
resources the request one after the other. It does it until any policy grants the permission.
If a policy allowed the request, other policies may be skipped
Access policies work as OR
logic gate. In the example below the third policy is skipped due to the second one granted the request in.
Request rejected if no access policy allowed it
If there is no policy allowing the request, Aidbox rejects the request with the 401 (Unauthorized) response.
The route is public anyone can access it. To make root public, create an AccessPolicy
allowing access to it without any restrictions.
{% hint style="info" %} Starting with Aidbox release 2410, secret fields in Client and Session records are hashed in the database. {% endhint %}
Aidbox uses the SHA256 hashing algorithm for fields such as:
Client.secret
Session.authorization_code
Session.access_token
Session.refresh_token
Upon first start after upgrading to 2410, Aidbox automatically hashes existing records in the database through a migration process. However, original values remain accessible in the resource's history tables:
GET /Client/<id>/_history
GET /Session/<id>/_history
{% hint style="warning" %}
It is strongly recommended to delete the history tables for the Client
and Session
resources to prevent access to the original un-hashed secret values.\
To delete the history, execute the following SQL commands in the DB console:
truncate client_history;
truncate session_history;
{% endhint %}