Internet-Draft | Grant Negotiation and Authorization Prot | December 2021 |
Richer, et al. | Expires 24 June 2022 | [Page] |
GNAP defines a mechanism for delegating authorization to a piece of software, and conveying that delegation to the software. This extension defines methods for resource servers (RS) to communicate with authorization servers (AS) in an interoperable fashion.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 24 June 2022.¶
Copyright (c) 2021 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
The core GNAP protocol does not define any one specific mechanism for the resource server (RS) to communicate with the authorization server (AS), allowing the connection between these components to be solved orthogonally to the core protocol's concerns. For example, the RS and AS roles could be fulfilled by the same piece of software with common storage, obviating the need for any connecting protocol. However, it is often desirable to have the RS and AS communicate at runtime for a variety of purposes, including allowing the RS to validate and understand the rights and privileges associated with a grant of access represented by an access token issued by the AS, or negotiating the capabilities of either party. These types of connections are particularly useful for connecting an AS and RS from different vendors, allowing interoperable distributed deployments of GNAP-protected systems.¶
This specification defines several means for an RS and AS to communicate these aspects with each other, including structured access tokens and RS-facing APIs. This specification also discusses methods for an RS to derive a downstream token for calling another chained RS.¶
The means of the authorization server issuing the access token to the client instance and the means of the client instance presenting the access token to the resource server are the subject of the GNAP core protocol specification [I-D.ietf-gnap-core-protocol].¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
This document contains non-normative examples of partial and complete HTTP messages, JSON structures, URLs, query components, keys, and other elements. Some examples use a single trailing backslash \
to indicate line wrapping for long values, as per [RFC8792]. The \
character and leading spaces on wrapped lines are not part of the value.¶
Terminology specific to GNAP is defined in the terminology section of the core specification [I-D.ietf-gnap-core-protocol], and provides definitions for the protocol roles: Authorization Server (AS), Client, Resource Server (RS), Resource Owner (RO), End-user; as well as the protocol elements: Attribute, Access Token, Grant, Privilege, Protected Resource, Right, Subject, Subject Information. The same definitions are used in this document.¶
When the AS issues an access token for use at an RS, the RS needs to have some means of understanding what the access token is for in order to determine how to respond to the request. The core GNAP protocol makes neither assumptions nor demands on the format or contents of the access token, and in fact, the token format and contents are opaque to the client instance. However, such token formats can be the topic of agreements between the AS and RS.¶
Self-contained structured token formats allow for the conveyance of information between the AS and RS without requiring the RS to call the AS at runtime as described in Section 3.3. Structured tokens can also be used in combination with introspection, allowing the token itself to carry one class of information and the introspection response to carry another.¶
Some token formats, such as Macaroons and Biscuits, allow for the RS to derive sub-tokens without having to call the AS as described in Section 4.¶
The supported token formats can be communicated dynamically at runtime between the AS and RS in several places.¶
In all places where the token format is listed explicitly, it MUST be one of the registered values in the GNAP Token Formats Registry Section 6.1.¶
To facilitate runtime and dynamic connections, the AS can offer an RS-Facing API consisting of one or more of the following optional pieces.¶
A GNAP AS offering RS-facing services can publish its features on
a well-known discovery document using the URL .well-known/gnap-as-rs
appended
to the grant request endpoint URL.¶
The discovery response is a JSON document [RFC8259] consisting of a single JSON object with the following fields:¶
OPTIONAL. The URL of the endpoint offering introspection. The location MUST be a URL [RFC3986] with a scheme component that MUST be https, a host component, and optionally, port, path and query components and no fragment components. Section 3.3¶
A list of token formats supported by this AS. The values in this list MUST be registered in the GNAP Token Format Registry. Section 6.1¶
The URL of the endpoint offering resource registration. The location MUST be a URL [RFC3986] with a scheme component that MUST be https, a host component, and optionally, port, path and query components and no fragment components. Section 3.4¶
REQUIRED. The location of the AS's grant request endpoint, used by the RS to derive downstream access tokens. The location MUST be a URL [RFC3986] with a scheme component that MUST be https, a host component, and optionally, port, path and query components and no fragment components. This URL MUST be the same URL used by client instances in support of GNAP requests. Section 4¶
OPTIONAL. A list of the AS's supported key
proofing mechanisms. The values of this list correspond to possible
values of the proof
field of the key section of the request.¶
Unless otherwise specified, the RS MUST protect its calls to the AS using any of the signature methods defined by GNAP. This signing method MUST cover all of the appropriate portions of the HTTP request message, including any body elements, tokens, or headers required for functionality.¶
The RS MAY present its keys by reference or by value in
a similar fashion to a client instance calling the AS in the core protocol
of GNAP, described in [I-D.ietf-gnap-core-protocol]. In the protocols defined here,
this takes the form of the resource server identifying itself using a key
field or
by passing an instance identifier directly.¶
"resource_server": { "key": { "proof": "httpsig", "jwk": { "kty": "EC", "crv": "secp256k1", "kid": "2021-07-06T20:22:03Z", "x": "-J9OJIZj4nmopZbQN7T8xv3sbeS5-f_vBNSy_EHnBZc", "y": "sjrS51pLtu3P4LUTVvyAIxRfDV_be2RYpI5_f-Yjivw" } } }¶
or by reference:¶
"resource_server": "7C7C4AZ9KHRS6X63AJAO"¶
The AS MAY require an RS to pre-register its keys or could allow calls from arbitrary keys in a trust-on-first-use model.¶
The AS issues access tokens representing a set of delegated access rights to be used at one or more RSs. The AS can offer an introspection service to allow an RS to validate that a given access token:¶
When the RS receives an access token, it can call the introspection endpoint at the AS to get token information. [[ See issue #115 ]]¶
+--------+ +------+ +------+ | Client |--(1)->| RS | | AS | |Instance| | |--(2)->| | | | | | | | | | | |<-(3)--| | | | | | +------+ | |<-(4)--| | +--------+ +------+¶
The RS signs the request with its own key and sends the access token as the body of the request.¶
REQUIRED. The access token value presented to the RS by the client instance.¶
RECOMMENDED. The proofing method used by the client instance to bind the token to the RS request.¶
REQUIRED. The identification used to authenticate the resource server making this call, either by value or by reference as described in Section 3.2.¶
OPTIONAL. The minimum access rights required to fulfill the request. This MUST be in the format described in the Resource Access Rights section of [I-D.ietf-gnap-core-protocol].¶
POST /introspect HTTP/1.1 Host: server.example.com Content-Type: application/json Signature-Input: sig1=... Signature: sig1=... Digest: sha256=... { "access_token": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0", "proof": "httpsig", "resource_server": "7C7C4AZ9KHRS6X63AJAO" }¶
The AS MUST validate the access token value and determine if the token is active. An active access token is defined as a token that¶
The AS responds with a data structure describing the token's current state and any information the RS would need to validate the token's presentation, such as its intended proofing mechanism and key material.¶
REQUIRED. If true
, the access token presented is active,
as defined above. If any of the criteria for an active token
are not true, or if the AS is unable to make a
determination (such as the token is not found), the value is
set to false
and other fields are omitted.¶
If the access token is active, additional fields from the single access token response structure defined in [I-D.ietf-gnap-core-protocol] are included. In particular, these include the following:¶
REQUIRED. The access rights associated with this access token. This MUST be in the format described in the Resource Access Rights section of [I-D.ietf-gnap-core-protocol]. This array MAY be filtered or otherwise limited for consumption by the identified RS, including being an empty array.¶
REQUIRED if the token is bound. The key bound to the access token, to allow the RS to validate the signature of the request from the client instance. If the access token is a bearer token, this MUST NOT be included.¶
OPTIONAL. The set of flags associated with the access token.¶
The response MAY include any additional fields defined in an access
token response and MUST NOT include the access token value
itself.¶
HTTP/1.1 200 OK Content-Type: application/json Cache-Control: no-store { "active": true, "access": [ "dolphin-metadata", "some other thing" ], "key": { "proof": "httpsig", "jwk": { "kty": "RSA", "e": "AQAB", "kid": "xyz-1", "alg": "RS256", "n": "kOB5rR4Jv0GMeL...." } } }¶
If the RS needs to, it can post a set of resources as described in the Resource Access Rights section of [I-D.ietf-gnap-core-protocol] to the AS's resource registration endpoint along with information about what the RS will need to validate the request.¶
REQUIRED. The list of access rights associated with the request in the format described in the "Resource Access Rights" section of [I-D.ietf-gnap-core-protocol].¶
REQUIRED. The identification used to authenticate the resource server making this call, either by value or by reference as described in Section 3.2.¶
OPTIONAL. The token format required to access the identified resource. If the field is omitted, the token format is at the discretion of the AS. If the AS does not support the requested token format, the AS MUST return an error to the RS.¶
OPTIONAL. If present and set to true
, the RS expects to make a token introspection request as
described in Section 3.3. If absent or set to false
, the RS does not anticipate needing
to make an introspection request for tokens relating to this resource set.¶
The RS MUST identify itself with its own key and sign the request.¶
POST /resource HTTP/1.1 Host: server.example.com Content-Type: application/json Signature-Input: sig1=... Signature: sig1=... Digest: ... { "access": [ { "actions": [ "read", "write", "dolphin" ], "locations": [ "https://server.example.net/", "https://resource.local/other" ], "datatypes": [ "metadata", "images" ] }, "dolphin-metadata" ], "resource_server": "7C7C4AZ9KHRS6X63AJAO" }¶
The AS responds with a reference appropriate to represent the resources list that the RS presented in its request as well as any additional information the RS might need in future requests.¶
REQUIRED. A single string representing the list of resources registered in the request. The RS MAY make this handle available to a client instance as part of a discovery response as described in [I-D.ietf-gnap-core-protocol] or as documentation to client software developers.¶
OPTIONAL. An instance identifier that the RS can use to refer to itself in future calls to the AS, in lieu of sending its key by value.¶
OPTIONAL. The introspection endpoint of this AS, used to allow the RS to perform token introspection. Section 3.3¶
HTTP/1.1 200 OK Content-Type: application/json Cache-Control: no-store { "resource_reference": "FWWIKYBQ6U56NL1" }¶
Some architectures require an RS to act as a client instance and use a derived access token for a secondary RS. Since the RS is not the same entity that made the initial grant request, the RS is not capable of referencing or modifying the existing grant. As such, the RS needs to request or generate a new token access token for its use at the secondary RS. This internal secondary token is issued in the context of the incoming access token.¶
While it is possible to use a token format (Section 2) that allows for the RS to generate its own secondary token, the AS can allow the RS to request this secondary access token using the same process used by the original client instance to request the primary access token. Since the RS is acting as its own client instance from the perspective of GNAP, this process uses the same grant endpoint, request structure, and response structure as a client instance's request.¶
+--------+ +-------+ +------+ +-------+ | Client |--(1)->| RS1 | | AS | | RS2 | |Instance| | |--(2)->| | | | | | | |<-(3)--| | | | | | | | +------+ | | | | | | | | | | | |-----------(4)------->| | | | | |<----------(5)--------| | | |<-(6)--| | | | +--------+ +-------+ +-------+¶
If the RS needs to derive a token from one presented to it, it can request one from the AS by making a token request as described in [I-D.ietf-gnap-core-protocol] and presenting the existing access token's value in the "existing_access_token" field.¶
Since the RS is acting as a client instance,
the RS MUST identify itself with its own key in the client
field and sign the
request just as any client instance would, as described in Section 3.2.¶
POST /tx HTTP/1.1 Host: server.example.com Content-Type: application/json Detached-JWS: ejy0... { "access_token": { "access": [ { "actions": [ "read", "write", "dolphin" ], "locations": [ "https://server.example.net/", "https://resource.local/other" ], "datatypes": [ "metadata", "images" ] }, "dolphin-metadata" ] }, "client": "7C7C4AZ9KHRS6X63AJAO", "existing_access_token": "OS9M2PMHKUR64TB8N6BW7OZB8CDFONP219RP1LT0" }¶
The AS responds with a token for the downstream RS2 as described in [I-D.ietf-gnap-core-protocol]. The downstream RS2 could repeat this process as necessary for calling further RS's.¶
(TODO: the ACK section should probably be split between the documents)¶
[[ TBD: There are a lot of items in the document that are expandable through the use of value registries. ]]¶
This specification establishes the GNAP Token Format Registry to define token formats.¶
The table below contains the initial contents of the GNAP Token Format Registry.¶
Name | Status | Description | Reference |
---|---|---|---|
jwt-signed
|
Active | JSON Web Token, signed with JWS | [RFC7519] |
jwt-encrypted
|
Active | JSON Web Token, encrypted with JWE | [RFC7519] |
macaroon
|
Active | Macaroon | |
biscuit
|
Active | Biscuit | |
zcap
|
Active | ZCAP |
[[ TBD: There are a lot of security considerations to add. ]]¶
All requests have to be over TLS or equivalent as per [BCP195]. Many handles act as shared secrets, though they can be combined with a requirement to provide proof of a key as well.¶
[[ TBD: There are a lot of privacy considerations to add. ]]¶
When introspection is used, the AS is made aware of a particular token being used at a particular AS, and the AS would not otherwise have insight into this.¶
When the client instance receives information about the protecting AS from an RS, this can be used to derive information about the resources being protected without releasing the resources themselves.¶