Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Documentation] Documentation guidance for Service Accounts + OnBehalfOf Authentication #3290

Closed
6 tasks done
Tracked by #3354 ...
RyanL1997 opened this issue Sep 1, 2023 · 9 comments
Closed
6 tasks done
Tracked by #3354 ...
Assignees
Labels
documentation For code documentation/ javadocs/ comments / readme etc.. triaged Issues labeled as 'Triaged' have been reviewed and are deemed actionable. v2.12.0 Items targeting 2.12.0

Comments

@RyanL1997
Copy link
Collaborator

RyanL1997 commented Sep 1, 2023

Description

This is issue is targeting on providing the guidance for the feature of Service Accounts and On Behalf Of Authentication. General design details from internal threat model document can be transferred to here as the guidance for documentation work on our doc website. So, let's using the comment section of this issue to capture all these informations with all the latest design changes.

Exit Criteria

Having the following portions of guidance:

On Behalf Of Authentication:

  • Introduction / General design of OBO (including the general designs, and some naming conventions)
  • Setup and Configuration for generic usage of OBO (including the security config, endpoint setup, and required permissions)
  • Extension related usage of OBO (including the risks)

Service Account

  • Introduction Service Account - what are they for?
  • When should you use a service account vs another method?
  • What is unique about service accounts, You can deactivate them, why and how?

References

  1. Original meta issue of OBO: [META] On-Behalf-Of Authentication #2573
  2. Original meta issue of Service Accounts: [META] Service Accounts #2944
@RyanL1997 RyanL1997 added documentation For code documentation/ javadocs/ comments / readme etc.. untriaged Require the attention of the repository maintainers and may need to be prioritized v2.11.0 Issues targeting the 2.11 release labels Sep 1, 2023
@stephen-crawford
Copy link
Collaborator

Hi @RyanL1997 thanks for filing this issue. I can definitely help you with the Service Accounts and anything else you may need related to this.

@stephen-crawford
Copy link
Collaborator

[Triage] This is an item for service accounts and on behalf of tokens.

@stephen-crawford stephen-crawford added triaged Issues labeled as 'Triaged' have been reviewed and are deemed actionable. and removed untriaged Require the attention of the repository maintainers and may need to be prioritized labels Sep 11, 2023
@RyanL1997
Copy link
Collaborator Author

RyanL1997 commented Sep 27, 2023

On-Behalf-Of Authentication

1.0 Usage

On-behalf-of tokens are a special form of JSON Web Token used for managing authentication requests between a user's client and an extension. These tokens operate "just-in-time," meaning that a token is issued just before it is required for authentication. A token will have a configurable window of validity (with a maximum duration of five minutes) after which it expires and cannot be used.

On-behalf-of tokens will allow an extension to interact with the OpenSearch cluster using the same privileges as the initiating user (the reason the tokens are “on-behalf-of”). However, since these tokens do not have any restrictions in place, they also provide services the ability to operate as if they are the original user until token expiration. This implies that this feature can be used more broadly and is not limited to extension related use cases.

2.0 Configuration

In the security config file, the on-behalf-of configuration is located under the dynamic config section. It contains the signing key for the token signature and the encryption key for the token payload (role information) decryption:

config:
  dynamic:
    on_behalf_of:
      enabled: #'true'/non-specified will be consider as 'enabled'
      signing_key: #encoded signing key here
      encryption_key: #encoded encryption key here
...

The encoding algorithm is HMAC SHA512 by default for the signing of the JWT. Both the signing key and encryption key are Base64 encoded and stored on the file system of the OpenSearch node. The keys should be the same on all hosts, otherwise it encryption and decryption operations may fail. Deployment of these keys is managed by the cluster operator.

3.0 Token Structure

The payload of an on-behalf-of token must include all standard configurations of a JWT (JSON Web Token), along with encrypted and decrypted roles. Depending on the setting of the "Plugin Backward Compatibility Mode," backend roles should also be incorporated into role claims. It is important to note that the absence of any of these claims will result in a malformed token, failing to meet the required standard for authentication.

The on-behalf-of token contains the following claims:

  • Issuer (iss): OpenSearch Cluster Identifier
    • It is essential that the issuer is validated as a part of security control measures. This strategy is forward-thinking, particularly in the context of potential multi-tenant scenarios like OpenSearch Serverless, where differing cryptographic keys could be associated with each issuer. By checking the value of issuer, each on-behalf-of token is restricted to its associated issuer.
  • Issue-at (iat): Current time of issuing this token
    • Used as the reference of the expiration.
  • Not-before (nbf): The earliest point at which the token can be used.
    • Given that the on-behalf-of token is designed for just-in-time usage, its nbf should align with the iat (issued-at) time, indicating the moment when the token was created.
  • Expiry (exp): Expiration time
    • Each on-behalf-of token incorporates an expiration mechanism, which is verified upon its receipt. Once a token is issued, it cannot be revoked. Instead, the only token is only invalidated upon its expiration. Furthermore, the generation of on-behalf-of tokens by extensions is subject to dynamic settings. This functionality safeguards the system by preventing the issuance of future tokens under certain conditions.
    • The default configuration establishes an expiration time of 300 seconds for on-beahalf-of tokens. Recognizing that different scenarios may necessitate different token durations, we have incorporated the capability for users to personalize this expiration time. At present, the maximum duration that can be assigned to a token is 600 seconds.
    • In reference to the current design of the on-behalf-of (obo) token, it's accurate to say that token revocation isn't a current concern, given its intended just-in-time use and brief lifespan. However, if future adjustments necessitate an extended lifespan for this token, token revocation will be added. This strategy will be adopted to improve and solidify the security measures associated with on-behalf-of token use.
  • Subject (sub): User Identifier
    • Name of the user with which this on-behalf-of token is associated.
  • Audience (aud): Extension’s unique identifier
    • For the extension use case, the aud field is a reference to the specific extension that represents the target service.
    • For the REST API use case, the the API parameter “service” will let user to specify the target service(s) using this token, and the default value is set to “self-issued“
  • Roles: Security Privilege Evaluation
    • Role Security Mode [source code], this configuration determines the encryption of the roles claim.
      • Role Security Mode On (default value) - Roles claim will be encrypted.
        • Encrypted mapped roles (er)
      • Role Security Mode Off - Roles claims will be in plain-text, and both mapped roles and backend roles will be included in the claim [related discussion]
        • Decrypted mapped roles in plain text (dr)
        • Decrypted backend roles (br)

The OpenSearch security plugin will be responsible for handling encryption and decryption processes. This approach ensures the protection of user information, even when traversing the trust boundary between OpenSearch and any third party services.

3.0 API Endpoint

There will be an new API endpoint POST /_plugins/_security/api/generateonbehalfoftoken on the security plugin that will allow users to create a short-lived self-issued on-behalf-of token to perform certain actions on behalf of a user.

To access this API endpoint, the request body should contain three API parameters:

  • description: This allows the use to articulate the purpose for requesting this token, providing clarity and transparency.
  • service (optional): This parameter is directed to the audience claim of the on-behalf-of token. It offers users the opportunity to designate the target service for which they intend to use the token. Although this is an optional parameter, if not specified, the default value is set to "self-issued".
  • durationSeconds (optional): This parameter allows users to customize the token's expiration time according to its anticipated usage. However, the maximum duration is capped at 600 seconds to maintain security. If not specified, the default duration is set to 300 seconds.
  • Here is an example of requesting an on-behalf-of token with lifespan of 3 mins as user '“admin” for testing purpose:
curl -XPOST https://localhost:9200/_plugins/_security/api/generateonbehalfoftoken -u 'admin:admin' -H 'Content-Type: application/json' --data
'{ 
   "description":"Testing",
   "service":"Testing Service",
   "durationSeconds":"180"
}'

4.0 Additional Authorization Restriction (related discussion)

While the conversation about the usage of on-behalf-of (OBO) tokens continues, it is critical to manage certain edge cases. Even though an OBO token can act as a valid Bearer authorization header for any API access, there needs to be certain limitations. For instance, it should be forbidden to use an OBO token to access the API endpoint to issue another OBO token. Similarly, using an OBO token to access the reset password API in order to modify a user's authentication information should be disallowed. These preventive measures are necessary to uphold the integrity and security of the system.

@RyanL1997
Copy link
Collaborator Author

RyanL1997 commented Sep 27, 2023

Service Accounts

1.0 Introduction of Service Accounts

Service Accounts are a new authC/authZ path where extensions can execute requests without assuming the role(s) of the active user. Service Accounts are a special type of principal associated with each extension and have a set of permissions. The permissions assigned to a Service Account grant the associated extension the authorization to execute any of the mapped operations without needing to assume the roles of the active user or stash the user’s role(s) in the ephemeral user context. Currently, Service Account only permit operations on system indices associated with the mapped extension.

2.0 Service Account Background

Before the introduction of Service Accounts, it was not possible for an extension to execute a request without assuming the roles of the active user. Instead, when a request is processed, an ephemeral “Plugin User” was created. The Plugin User then assumed all the permissions of the currently authenticated operator (human user). The result was a Plugin User which acted on the extension’s behalf but had all of the privileges of the operator. In this way, the previous model can be said to have had extensions “impersonate” the operator. This impersonation approach lead to two main issues:

  • Impersonation compromises referential integrity, meaning it is difficult for auditors to identify which requests were executed by an extension or by an operator. A system with referential integrity maintains a transactional record in its audit log. The record provides a clear history of actions taken by various subjects at specific times. When extensions impersonate users for both requests they make on behalf of the operator, and requests they execute on their own, the audit log lacks referential integrity.
  • Impersonation also makes it impossible to restrict an extension’s permissions beyond those of the user it impersonates. When an extension assumes the roles of the active subject, it copies all of the roles. This includes even those permissions which are uneccessary for executing its intended actions. This practice not only deviates from the principal of least-privileges, but also increases the threat surface area. With each additional permission granted to the Plugin User, the potential impact a misconfigured or malicious extension may have grows.

3.0 Service Account Benefit

Service Accounts address the issues listed in 2.0 by defining a separate state which autonomously executing extensions run in. Service Accounts maintain referential integrity by introducing a distinct state which extensions run in when executing requests on their own behalf. Audit logging can then record when an extension executes on its own—it will make authC/authZ calls against the Service Account—or whether it is executing an action on behalf of the operator and therefore making use of the OnBehalfOf tokens.

Similarly, Service Accounts address threat exposure concerns by separating the roles an extension assumes from those of the operator or a generic hard coded user (such as those in the internal_users.yml file). Service Accounts will not assume the roles of the operator, but instead have their own privileges listed in the Service Account. The roles associated with a Service Account can therefore, be as a restrictive as possible in alignment with the principle of least-privileges. In order to avoid providing extensions overly-permissive service accounts, extension authors should have a strong understanding of what types of operations their extensions hopes to execute.

4.0 API Endpoint

As suggested by the name, the boolean flag service denotes whether a given internal user account is Service Account. If an account is not a Service Account, then any attempts to generate an associated auth token for the account will fail. Similarly, the enabled field dictates when a Service Account can be used by an extensions to perform operations. If a Service Account is not enabled attempts to fetch its auth token will be blocked and it will be unable to execute requests on its own behalf using a previously issued auth token.

  • Here is an example of create a service account with ALL PERMISSIONS for your service/extension:
curl -XPUT "[https://localhost:9200/_plugins/_security/api/internalusers/admin-extension https://localhost:9200/_plugins/_security/api/internalusers/hello-world" -H 'Content-Type: application/json' -d' 
{
 "opendistro_security_roles": ["all_access"],
 "backend_roles": [],
 "attributes": {
  "enabled": "true",
  "service": "true"
 }
}' -u "admin:admin" --insecure

@RyanL1997
Copy link
Collaborator Author

RyanL1997 commented Sep 27, 2023

Handling on-behalf-of & Service Account Requests

While both on-behalf-of token handling and Service Accounts can be viewed as independent features, the most significant benefits are realized when coupled. Specifically, OpenSearch exposes a client which is used to connect to the OpenSearch cluster and provides Plugins the ability to execute requests. With the introduction of on-behalf-of tokens and Service Accounts the client is now able to be used to handle requests which will make use of both of these new features. Now, when the client executes a request which requires an extension to use an on-behalf-of token, the first step of handling the request is the forwarding of the request to the Security Plugin. In the Security Plugin, the request is authenticated and authorized against the active user. If the active user is permitted, the request returns to OpenSearch’s core code base where a request to create an on-behalf-of for the target extension using the active user’s identity is created. This request to generate the on-behalf-of token is then handled by the IdentityPlugin implementation. In the standard scenario this is the Security Plugin, so the request is returned to the Security Plugin’s implementation of the TokenManager interface which generates a new on-behalf-of token for the request. After generating the token, the Security Plugin forwards the request with the on-behalf-of token to the extension. At that point, the extension is then able to call OpenSearch’s REST methods with the token. The permissions associated with the token will then be evaluated for the authorization of the request. If the token conveys the permissions required for the operation, the action will be performed and the response will be sent back to the extension. After processing OpenSearch’s response, the extension will forward its own handling of the response to the client. If instead, the on-behalf-of token does not entail the permissions required for execution of the target action, the a forbidden response is returned to the extension.

Extensions acting on their own behalf also make use of the client exposed by OpenSearch. When an extension is first initialized in OpenSearch, the IdentityPlugin is triggered to create a new Service Account for it and provide the associated Service Account token. In the default configuration, the Security Plugin is the IdentityPlugin and handles these processes. After OpenSearch receives the Service Account token, it forwards that token to the associated extension. After the extension has received its token, requests by the client to make use of the Service Account associated with the extension are operable. In these scenarios, the extension receives the requests from the client, and then forwards the request along with the Service Account token to OpenSearch. OpenSearch further transfers the packages to the Security Plugin where the token is parsed and the request is treated as a traditional request using Basic Authentication in the InternalAuthenticationBackend.

In both on-behalf-of and Service Account token request flows, the IdentityPlugin's TokenManager interface is used by the IdentityPlugin to handle the distribution and processing of the tokens. This interface is implemented by the Security Plugin as an IdentityPlugin and contains logic for issuing a token which is either an on-behalf-of or Service Account token.

@peternied peternied changed the title [Documentation] Documentation guidance for Service Accounts + On Behalf Of Authentication [Documentation] Documentation guidance for Service Accounts + OnBehalfOf Authentication Sep 29, 2023
@stephen-crawford
Copy link
Collaborator

@RyanL1997 went through the OBO write up and made some style changes otherwise everything looks good. I will do similar with the Service Account write up.

@stephen-crawford
Copy link
Collaborator

stephen-crawford commented Oct 2, 2023

@DarshitChanpura DarshitChanpura removed the v2.11.0 Issues targeting the 2.11 release label Oct 3, 2023
@DarshitChanpura
Copy link
Member

Removing 2.11 label as this is being tracked for 2.12 now.

@RyanL1997
Copy link
Collaborator Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation For code documentation/ javadocs/ comments / readme etc.. triaged Issues labeled as 'Triaged' have been reviewed and are deemed actionable. v2.12.0 Items targeting 2.12.0
Projects
None yet
Development

No branches or pull requests

4 participants