azapi | November 2024 | |
Gazitt, et al. | Standards Track | [Page] |
The Authorization API enables Policy Decision Points (PDPs) and Policy Enforcement Points (PEPs) to communicate authorization requests and decisions to each other without requiring knowledge of each other's inner workings. The Authorization API is served by the PDP and is called by the PEP. The Authorization API includes an Evaluation endpoint, which provides specific access decisions. Other endpoints may be added in the future for other scenarios, including searching for subjects or resources.¶
Computational services often implement access control within their components by separating Policy Decision Points (PDPs) from Policy Enforcement Points (PEPs). PDPs and PEPs are defined in XACML ([XACML]) and NIST's ABAC SP 800-162 ([ABAC]). Communication between PDPs and PEPs follows similar patterns across different software and services that require or provide authorization information. The Authorization API described in this document enables different providers to offer PDP and PEP capabilities without having to bind themselves to one particular implementation of a PDP or PEP.¶
The Authorization API is a transport-agnostic API published by the PDP, to which the PEP acts as a client. Possible bindings of this specification, such as HTTPS or gRPC, are described in Transport (Section 7).¶
Authorization for the Authorization API itself is out of scope for this document, since authorization for APIs is well-documented elsewhere. For example, the Authorization API's HTTPS binding MAY support authorization using an Authorization
header, using a basic
or bearer
token. Support for OAuth 2.0 ([RFC6749]) is RECOMMENDED.¶
The core feature of the Authorization API is the Access Evaluation API, which enables a PEP to find out if a specific request can be permitted to access a specific resource. The following are non-normative examples:¶
This document describes the API version 1. Any updates to this API through subsequent revisions of this document or other documents MAY augment this API, but MUST NOT modify the API described here. Augmentation MAY include additional API methods or additional parameters to existing API methods, additional authorization mechanisms, or additional optional headers in API requests. All API methods for version 1 MUST be immediately preceded by the relative URL path /v1/
.¶
The information model for requests and responses include the following entities: Subject, Action, Resource, Context, and Decision. These are all defined below.¶
A Subject is the user or robotic principal about whom the Authorization API is being invoked. The Subject may be requesting access at the time the Authorization API is invoked.¶
A Subject is a JSON ([RFC8259]) object that contains two REQUIRED keys, type
and id
, which have a value typed string
, and an OPTIONAL key, properties
, with a value of a JSON object.¶
type
:REQUIRED. A string
value that specifies the type of the Subject.¶
id
:REQUIRED. A string
value containing the unique identifier of the Subject, scoped to the type
.¶
properties
:OPTIONAL. A JSON object containing any number of key-value pairs, which can be used to express additional properties of a Subject.¶
The following is a non-normative example of a Subject:¶
Many authorization systems are stateless, and expect the client (PEP) to pass in any properties or attributes that are expected to be used in the evaluation of the authorization policy. To satisfy this requirement, Subjects MAY include zero or more additional attributes as key-value pairs, under the properties
object.¶
An attribute can be single-valued or multi-valued. It can be a primitive type (string, boolean, number) or a complex type such as a JSON object or JSON array.¶
The following is a non-normative example of a Subject which adds a string-valued department
property:¶
To increase interoperability, a few common properties are specified below:¶
The IP Address of the Subject, identified by an ip_address
field, whose value is a textual representation of an IP Address, as defined in Textual Conventions for Internet Network Addresses
[RFC4001].¶
The following is a non-normative example of a subject which adds the ip_address
property:¶
A Resource is the target of an access request. It is a JSON ([RFC8259]) object that is constructed similar to a Subject entity. It has the follow keys:¶
type
:REQUIRED. A string
value that specifies the type of the Resource.¶
id
:REQUIRED. A string
value containing the unique identifier of the Resource, scoped to the type
.¶
properties
:OPTIONAL. A JSON object containing any number of key-value pairs, which can be used to express additional properties of a Resource.¶
The following is a non-normative example of a Resource with a type
and a simple id
:¶
The following is a non-normative example of a Resource containing a library_record
property, that is itself a JSON object:¶
An Action is the type of access that the requester intends to perform.¶
Action is a JSON ([RFC8259]) object that contains a REQUIRED name
key with a string
value, and an OPTIONAL properties
key with a JSON object value.¶
name
:REQUIRED. The name of the Action.¶
properties
:OPTIONAL. A JSON object containing any number of key-value pairs, which can be used to express additional properties of an Action.¶
The following is a non-normative example of an action:¶
Since many services follow a Create-Read-Update-Delete convention, a set of common Actions are defined. That said, an Action may be specific to the application being accessed or shared across applications but not listed in the common Actions below.¶
The following common Actions are defined:¶
can_access
: A generic Action that could mean any type of access. This is useful if the policy or application is not interested in different decisions for different types of Actions.¶
can_create
: The Action to create a new entity, which MAY be defined by the resource
field in the request.¶
can_read
: The Action to read the content. Based on the Resource being accessed, this could mean a list functionality or reading an individual Resource's contents.¶
can_update
: The Action to update the content of an existing Resource. This represents a partial update or an entire replacement of an entity that MAY be identified by the Resource in the request.¶
can_delete
: The Action to delete a Resource. The specific entity MAY be identified by the Resource in the request.¶
PDP Policies MAY incorporate common Action names to provide different decisions based on the Action.¶
The Access Evaluation API defines the message exchange pattern between a client (PEP) and an authorization service (PDP) for executing a single access evaluation.¶
The Access Evaluation request is a 4-tuple constructed of the four previously defined entities:¶
The simplest form of a response is simply a boolean representing a Decision, indicated by a "decision"
field.¶
decision
:REQUIRED. A boolean value that specifies whether the Decision is to allow or deny the operation.¶
In this specification, assuming the evaluation was successful, there are only 2 possible responses:¶
true
: The access request is permitted to go forward.¶
false
: The access request is denied and MUST NOT be permitted to go forward.¶
The response object MUST contain this boolean-valued Decision key.¶
The following is a non-normative example of a simple Decision:¶
In addition to a "decision"
, a response may contain a "context"
field which can be any JSON object. This context can convey additional information that can be used by the PEP as part of the decision evaluation process. Examples include:¶
An implementation MAY follow a structured approach to "context"
, in which it presents the reasons that an authorization request failed.¶
A list of identifiers representing the items (policies, graph nodes, tuples) that were used in the decision-making process.¶
A list of reasons as to why access is permitted or denied.¶
Reasons MAY be provided by the PDP.¶
A Reason Field is a JSON object that has keys and values of type string
. The following are non-normative examples of Reason Field objects:¶
A Reason Object specifies a particular reason. It is a JSON object that has the following fields:¶
id
:REQUIRED. A string value that specifies the reason within the scope of a particular response.¶
reason_admin
:OPTIONAL. The reason, which MUST NOT be shared with the user, but useful for administrative purposes that indicates why the access was denied. The value of this field is a Reason Field object (Section 6.2.3.1.1).¶
reason_user
:OPTIONAL. The reason, which MAY be shared with the user that indicates why the access was denied. The value of this field is a Reason Field object (Section 6.2.3.1.1).¶
The following is a non-normative example of a Reason Object:¶
This specification defines an HTTPS binding which MUST be implemented by a compliant PDP.¶
Additional transport bindings (e.g. gRPC) MAY be defined in the future in the form of profiles, and MAY be implemented by a PDP.¶
The Access Evaluation Request is an HTTPS request with content-type
of application/json
. Its body is a JSON object that contains the Access Evaluation Request, as defined in Section 6.1.¶
The following is a non-normative example of the HTTPS binding of the Access Evaluation Request:¶
The success response to an Access Evaluation Request is an Access Evaluation Response. It is an HTTPS response with a status
code of 200
, and content-type
of application/json
. Its body is a JSON object that contains the Access Evaluation Response, as defined in Section 6.2.¶
Following is a non-normative example of an HTTPS Access Evaluation Response:¶
The following error responses are common to all methods of the Authorization API. The error response is indicated by an HTTPS status code (Section 15 of [RFC9110]) that indicates error.¶
The following errors are indicated by the status codes defined below:¶
Code | Description | HTTPS Body Content |
---|---|---|
400 | Bad Request | An error message string |
401 | Unauthorized | An error message string |
403 | Forbidden | An error message string |
500 | Internal error | An error message string |
Note: HTTPS errors are returned by the PDP to indicate an error condition relating to the request or its processing, and are unrelated to the outcome of an authorization decision, which is always returned with a 200
status code and a response payload.¶
To make this concrete:
* a 401
HTTPS status code indicates that the caller (policy enforcement point) did not properly authenticate to the PDP - for example, by omitting a required Authorization
header, or using an invalid access token.
* the PDP indicates to the caller that the authorization request is denied by sending a response with a 200
HTTPS status code, along with a payload of { "decision": false }
.¶
All requests to the API MAY have request identifiers to uniquely identify them. The API client (PEP) is responsible for generating the request identifier. If present, the request identifier SHALL be provided using the HTTPS Header X-Request-ID
. The value of this header is an arbitrary string. The following non-normative example describes this header:¶
A PDP responding to an Authorization API request that contains an X-Request-ID
header MUST include a request identifier in the response. The request identifier is specified in the HTTPS Response header: X-Request-ID
. If the PEP specified a request identifier in the request, the PDP MUST include the same identifier in the response to that request.¶
The following is a non-normative example of an HTTPS Response with this header:¶
This specification does not introduce any new identifiers that would require registration with IANA.¶
In the ABAC architecture, the PEP-PDP connection is the most sensitive one and needs to be secured to guarantee:¶
As a result, the connection between the PEP and the PDP MUST be secured using the most adequate means given the choice of transport (e.g. TLS for HTTP REST).¶
Additionally, the PDP SHOULD authenticate the calling PEP. There are several ways authentication can be established. These ways are out of scope of this specification. They MAY include:¶
The choice and strength of either mechanism is not in scope.¶
Authenticating the PEP allows the PDP to avoid common attacks (such as DoS - see below) and/or reveal its internal policies. A malicious actor could craft a large number of requests to try and understand what policies the PDP is configured with. Requesting a client (PEP) be authenticated mitigates that risk.¶
In ABAC, there is occasionally conversations around the trust between PEP and PDP: how can the PDP trust the PEP to send the right values in? This is a misplaced concern. The PDP must trust the PEP as ultimately, the PEP is the one responsible for enforcing the decision the PDP produces.¶
The PDP SHOULD apply reasonable protections to avoid common attacks tied to request payload size, the number of requests, invalid JSON, nested JSON attacks, or memory consumption. Rate limiting is one such way to address such issues.¶
The user or robotic principal about whom the Authorization API call is being made.¶
The target of the request; the resource about which the Authorization API is being made.¶
The operation the Subject has attempted on the Resource in an Authorization API call.¶
The environmental or contextual attributes for this request.¶
The value of the evaluation decision made by the PDP: true
for "allow", false
for "deny".¶
Policy Decision Point. The component or system that provides authorization decisions over the network interface defined here as the Authorization API.¶
Policy Enforcement Point. The component or system that requests decisions from the PDP and enforces access to specific requests based on the decisions obtained from the PDP.¶
This template uses extracts from templates written by Pekka Savola, Elwyn Davies and Henrik Levkowetz.¶
Copyright (c) 2024 The OpenID Foundation.¶
The OpenID Foundation (OIDF) grants to any Contributor, developer, implementer, or other interested party a non-exclusive, royalty free, worldwide copyright license to reproduce, prepare derivative works from, distribute, perform and display, this Implementers Draft or Final Specification solely for the purposes of (i) developing specifications, and (ii) implementing Implementers Drafts and Final Specifications based on such documents, provided that attribution be made to the OIDF as the source of the material, but that such attribution does not indicate an endorsement by the OIDF.¶
The technology described in this specification was made available from contributions from various sources, including members of the OpenID Foundation and others. Although the OpenID Foundation has taken steps to help ensure that the technology is available for distribution, it takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this specification or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any independent effort to identify any such rights. The OpenID Foundation and the contributors to this specification make no (and hereby expressly disclaim any) warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to this specification, and the entire risk as to implementing this specification is assumed by the implementer. The OpenID Intellectual Property Rights policy requires contributors to offer a patent promise not to assert certain patent claims against other contributors and against implementers. The OpenID Foundation invites any interested party to bring to its attention any copyrights, patents, patent applications, or other proprietary rights that may cover technology that may be required to practice this specification.¶
[[ To be removed from the final specification ]]¶