mirror of https://github.com/apache/druid.git
103 lines
5.1 KiB
Markdown
103 lines
5.1 KiB
Markdown
|
---
|
||
|
layout: doc_page
|
||
|
---
|
||
|
|
||
|
# Authentication and Authorization
|
||
|
|
||
|
|Property|Type|Description|Default|Required|
|
||
|
|--------|-----------|--------|--------|--------|
|
||
|
|`druid.auth.authenticationChain`|JSON List of Strings|List of Authenticator type names|["allowAll"]|no|
|
||
|
|`druid.auth.escalatedAuthenticator`|String|Type of the Authenticator that should be used for internal Druid communications. This Authenticator must be present in `druid.auth.authenticationChain`.|"allowAll"|no|
|
||
|
|`druid.auth.authorizers`|JSON List of Strings|List of Authorizer type names |["allowAll"]|no|
|
||
|
|
||
|
## Enabling Authentication/Authorization
|
||
|
|
||
|
## Authentication Chain
|
||
|
Authentication decisions are handled by a chain of Authenticator instances. A request will be checked by Authenticators in the sequence defined by the `druid.auth.authenticationChain`.
|
||
|
|
||
|
Authenticator implementions are provided by extensions.
|
||
|
|
||
|
For example, the following authentication chain definition enables the Kerberos and HTTP Basic authenticators, from the `druid-kerberos` and `druid-basic-security` core extensions, respectively:
|
||
|
|
||
|
```
|
||
|
druid.auth.authenticationChain=["kerberos", "basic"]
|
||
|
```
|
||
|
|
||
|
A request will pass through all Authenticators in the chain, until one of the Authenticators successfully authenticates the request or sends an HTTP error response. Authenticators later in the chain will be skipped after the first successful authentication or if the request is terminated with an error response.
|
||
|
|
||
|
If no Authenticator in the chain successfully authenticated a request or sent an HTTP error response, an HTTP error response will be sent at the end of the chain.
|
||
|
|
||
|
Druid includes a built-in Authenticator, used for the default unsecured configuration.
|
||
|
|
||
|
### AllowAll Authenticator
|
||
|
|
||
|
This built-in Authenticator authenticates all requests, and always directs them to an Authorizer named "allowAll". It is not intended to be used for anything other than the default unsecured configuration.
|
||
|
|
||
|
## Internal Authenticator
|
||
|
The `druid.auth.escalatedAuthenticator` property determines what authentication scheme should be used for internal Druid cluster communications (such as when a broker node communicates with historical nodes for query processing).
|
||
|
|
||
|
The Authenticator chosen for this property must also be present in `druid.auth.authenticationChain`.
|
||
|
|
||
|
## Authorizers
|
||
|
Authorization decisions are handled by an Authorizer. The `druid.auth.authorizers` property determines what Authorizer implementations will be active.
|
||
|
|
||
|
There are two built-in Authorizers, "default" and "noop". Other implementations are provided by extensions.
|
||
|
|
||
|
For example, the following authorizers definition enables the "basic" implementation from `druid-basic-security`:
|
||
|
|
||
|
```
|
||
|
druid.auth.authorizers=["basic"]
|
||
|
```
|
||
|
|
||
|
|
||
|
Only a single Authorizer will authorize any given request.
|
||
|
|
||
|
Druid includes one built in authorizer:
|
||
|
|
||
|
### AllowAll Authorizer
|
||
|
The Authorizer with type name "allowAll" accepts all requests.
|
||
|
|
||
|
## Default Unsecured Configuration
|
||
|
|
||
|
When `druid.auth.authenticationChain` is left empty or unspecified, Druid will create an authentication chain with a single AllowAll Authenticator named "allowAll".
|
||
|
|
||
|
When `druid.auth.authorizers` is left empty or unspecified, Druid will create a single AllowAll Authorizer named "allowAll".
|
||
|
|
||
|
The default value of `druid.auth.escalatedAuthenticator` is "allowAll" to match the default unsecured Authenticator/Authorizer configurations.
|
||
|
|
||
|
## Authenticator to Authorizer Routing
|
||
|
|
||
|
When an Authenticator successfully authenticates a request, it must attach a AuthenticationResult to the request, containing an information about the identity of the requester, as well as the name of the Authorizer that should authorize the authenticated request.
|
||
|
|
||
|
An Authenticator implementation should provide some means through configuration to allow users to select what Authorizer(s) the Authenticator should route requests to.
|
||
|
|
||
|
## Internal System User
|
||
|
|
||
|
Internal requests between Druid nodes (non-user initiated communications) need to have authentication credentials attached.
|
||
|
|
||
|
These requests should be run as an "internal system user", an identity that represents the Druid cluster itself, with full access permissions.
|
||
|
|
||
|
The details of how the internal system user is defined is left to Authorizer and Authenticator implementations.
|
||
|
|
||
|
### Authorizer Internal System User Handling
|
||
|
|
||
|
Authorizers implementations must recognize and authorize an identity for the "internal system user", with full access permissions.
|
||
|
|
||
|
### Authenticator Internal System User Handling
|
||
|
|
||
|
Authenticators must implement three methods related to the internal system user:
|
||
|
|
||
|
```java
|
||
|
public HttpClient createEscalatedClient(HttpClient baseClient);
|
||
|
|
||
|
public org.eclipse.jetty.client.HttpClient createEscalatedJettyClient(org.eclipse.jetty.client.HttpClient baseClient);
|
||
|
|
||
|
public AuthenticationResult createEscalatedAuthenticationResult();
|
||
|
```
|
||
|
|
||
|
`createEscalatedClient` returns an wrapped HttpClient that attaches the credentials of the "internal system user" to requests.
|
||
|
|
||
|
`createEscalatedJettyClient` is similar to `createEscalatedClient`, except that it operates on a Jetty HttpClient.
|
||
|
|
||
|
`createEscalatedAuthenticationResult` returns an AuthenticationResult containing the identity of the "internal system user".
|