debian-mirror-gitlab/doc/administration/auth/ldap/index.md

862 lines
30 KiB
Markdown
Raw Normal View History

2020-06-23 00:09:42 +05:30
---
type: reference
stage: Manage
group: Access
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2020-06-23 00:09:42 +05:30
---
2021-06-08 01:23:25 +05:30
# General LDAP setup **(FREE SELF)**
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
GitLab integrates with [LDAP](https://en.wikipedia.org/wiki/Lightweight_Directory_Access_Protocol)
to support user authentication.
2020-06-23 00:09:42 +05:30
This integration works with most LDAP-compliant directory servers, including:
- Microsoft Active Directory
2021-01-03 14:25:43 +05:30
- [Microsoft Active Directory Trusts](https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc771568(v=ws.10)) are not supported.
2020-06-23 00:09:42 +05:30
- Apple Open Directory
- Open LDAP
- 389 Server
2021-01-29 00:20:46 +05:30
Users added through LDAP take a [licensed seat](../../../subscriptions/self_managed/index.md#billable-users).
2020-11-24 15:15:51 +05:30
2020-06-23 00:09:42 +05:30
GitLab Enterprise Editions (EE) include enhanced integration,
2021-09-04 01:27:46 +05:30
including group membership syncing and multiple LDAP server support.
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
## Security
2020-06-23 00:09:42 +05:30
GitLab assumes that LDAP users:
- Are not able to change their LDAP `mail`, `email`, or `userPrincipalName` attributes.
2021-09-04 01:27:46 +05:30
An LDAP user allowed to change their email on the LDAP server can potentially
2020-11-24 15:15:51 +05:30
[take over any account](#enabling-ldap-sign-in-for-existing-gitlab-users)
2020-06-23 00:09:42 +05:30
on your GitLab server.
2021-09-04 01:27:46 +05:30
- Have unique email addresses. If not, it's possible for LDAP users with the same
2020-06-23 00:09:42 +05:30
email address to share the same GitLab account.
We recommend against using LDAP integration if your LDAP users are
2021-09-04 01:27:46 +05:30
allowed to change their `mail`, `email` or `userPrincipalName` attributes on
the LDAP server, or share email addresses.
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
### User deletion
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
Users deleted from the LDAP server are immediately blocked from signing in
to GitLab. However, there's an LDAP check cache time of one hour (which is
[configurable](#adjusting-ldap-user-sync-schedule) for GitLab Premium users).
This means users already signed-in or who are using Git over SSH can access
GitLab for up to one hour. Manually block the user in the GitLab Admin Area
to immediately block all access.
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
## Git password authentication
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
LDAP-enabled users can authenticate with Git using their GitLab username or
email and LDAP password, even if password authentication for Git is disabled
2020-06-23 00:09:42 +05:30
in the application settings.
2021-06-08 01:23:25 +05:30
## Enabling LDAP sign-in for existing GitLab users
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
When a user signs in to GitLab with LDAP for the first time and their LDAP
email address is the primary email address of an existing GitLab user, the
LDAP DN is associated with the existing user. If the LDAP email attribute
isn't found in the GitLab user database, a new user is created.
2020-06-23 00:09:42 +05:30
In other words, if an existing GitLab user wants to enable LDAP sign-in for
themselves, they should check that their GitLab email address matches their
2021-09-04 01:27:46 +05:30
LDAP email address, and then sign into GitLab by using their LDAP credentials.
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
## Google Secure LDAP
2020-06-23 00:09:42 +05:30
> Introduced in GitLab 11.9.
[Google Cloud Identity](https://cloud.google.com/identity/) provides a Secure
LDAP service that can be configured with GitLab for authentication and group sync.
See [Google Secure LDAP](google_secure_ldap.md) for detailed configuration instructions.
2021-06-08 01:23:25 +05:30
## Configuration
2020-06-23 00:09:42 +05:30
To enable LDAP integration you need to add your LDAP server settings in
`/etc/gitlab/gitlab.rb` or `/home/git/gitlab/config/gitlab.yml` for Omnibus
GitLab and installations from source respectively.
There is a Rake task to check LDAP configuration. After configuring LDAP
using the documentation below, see [LDAP check Rake task](../../raketasks/check.md#ldap-check)
for information on the LDAP check Rake task.
2021-02-22 17:27:13 +05:30
NOTE:
2020-06-23 00:09:42 +05:30
The `encryption` value `simple_tls` corresponds to 'Simple TLS' in the LDAP
library. `start_tls` corresponds to StartTLS, not to be confused with regular TLS.
2021-02-22 17:27:13 +05:30
Normally, if you specify `simple_tls` it is on port 636, while `start_tls` (StartTLS)
2021-09-04 01:27:46 +05:30
would be on port 389. `plain` also operates on port 389. Removed values: `tls` was replaced
with `start_tls` and `ssl` was replaced with `simple_tls`.
2020-06-23 00:09:42 +05:30
2021-01-29 00:20:46 +05:30
LDAP users must have a set email address, regardless of whether or not it's used
to sign in.
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
### Example Configurations
2020-06-23 00:09:42 +05:30
**Omnibus Configuration**
```ruby
gitlab_rails['ldap_enabled'] = true
gitlab_rails['prevent_ldap_sign_in'] = false
gitlab_rails['ldap_servers'] = {
'main' => {
'label' => 'LDAP',
'host' => 'ldap.mydomain.com',
'port' => 389,
'uid' => 'sAMAccountName',
'encryption' => 'simple_tls',
'verify_certificates' => true,
'bind_dn' => '_the_full_dn_of_the_user_you_will_bind_with',
'password' => '_the_password_of_the_bind_user',
'verify_certificates' => true,
'tls_options' => {
'ca_file' => '',
'ssl_version' => '',
'ciphers' => '',
'cert' => '',
'key' => ''
},
'timeout' => 10,
'active_directory' => true,
'allow_username_or_email_login' => false,
'block_auto_created_users' => false,
'base' => 'dc=example,dc=com',
'user_filter' => '',
'attributes' => {
'username' => ['uid', 'userid', 'sAMAccountName'],
'email' => ['mail', 'email', 'userPrincipalName'],
'name' => 'cn',
'first_name' => 'givenName',
'last_name' => 'sn'
},
'lowercase_usernames' => false,
# EE Only
'group_base' => '',
'admin_group' => '',
'external_groups' => [],
'sync_ssh_keys' => false
}
}
```
**Source Configuration**
```yaml
production:
# snip...
ldap:
enabled: false
prevent_ldap_sign_in: false
servers:
main:
label: 'LDAP'
...
```
2021-06-08 01:23:25 +05:30
### Basic Configuration Settings
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
| Setting | Description | Required | Examples |
|--------------------|-------------|----------|----------|
| `label` | A human-friendly name for your LDAP server. It is displayed on your sign-in page. | **{check-circle}** Yes | `'Paris'` or `'Acme, Ltd.'` |
| `host` | IP address or domain name of your LDAP server. | **{check-circle}** Yes | `'ldap.mydomain.com'` |
| `port` | The port to connect with on your LDAP server. Always an integer, not a string. | **{check-circle}** Yes | `389` or `636` (for SSL) |
| `uid` | LDAP attribute for username. Should be the attribute, not the value that maps to the `uid`. | **{check-circle}** Yes | `'sAMAccountName'` or `'uid'` or `'userPrincipalName'` |
| `bind_dn` | The full DN of the user you bind with. | **{dotted-circle}** No | `'america\momo'` or `'CN=Gitlab,OU=Users,DC=domain,DC=com'` |
| `password` | The password of the bind user. | **{dotted-circle}** No | `'your_great_password'` |
| `encryption` | Encryption method. The `method` key is deprecated in favor of `encryption`. | **{check-circle}** Yes | `'start_tls'` or `'simple_tls'` or `'plain'` |
| `verify_certificates` | Enables SSL certificate verification if encryption method is `start_tls` or `simple_tls`. Defaults to true. | **{dotted-circle}** No | boolean |
| `timeout` | Set a timeout, in seconds, for LDAP queries. This helps avoid blocking a request if the LDAP server becomes unresponsive. A value of `0` means there is no timeout. (default: `10`) | **{dotted-circle}** No | `10` or `30` |
| `active_directory` | This setting specifies if LDAP server is Active Directory LDAP server. For non-AD servers it skips the AD specific queries. If your LDAP server is not AD, set this to false. | **{dotted-circle}** No | boolean |
| `allow_username_or_email_login` | If enabled, GitLab ignores everything after the first `@` in the LDAP username submitted by the user on sign-in. If you are using `uid: 'userPrincipalName'` on ActiveDirectory you need to disable this setting, because the userPrincipalName contains an `@`. | **{dotted-circle}** No | boolean |
| `block_auto_created_users` | To maintain tight control over the number of billable users on your GitLab installation, enable this setting to keep new users blocked until they have been cleared by an administrator (default: false). | **{dotted-circle}** No | boolean |
| `base` | Base where we can search for users. | **{check-circle}** Yes | `'ou=people,dc=gitlab,dc=example'` or `'DC=mydomain,DC=com'` |
| `user_filter` | Filter LDAP users. Format: [RFC 4515](https://tools.ietf.org/search/rfc4515) Note: GitLab does not support `omniauth-ldap`'s custom filter syntax. | **{dotted-circle}** No | For examples, read [Examples of user filters](#examples-of-user-filters). |
| `lowercase_usernames` | If enabled, GitLab converts the name to lower case. | **{dotted-circle}** No | boolean |
2021-09-30 23:02:18 +05:30
| `retry_empty_result_with_codes` | An array of LDAP query response code that will attempt to retrying the operation if the result/content is empty. | **{dotted-circle}** No | `[80]` |
2020-06-23 00:09:42 +05:30
2021-04-17 20:07:23 +05:30
#### Examples of user filters
Some examples of the `user_filter` field syntax:
- `'(employeeType=developer)'`
- `'(&(objectclass=user)(|(samaccountname=momo)(samaccountname=toto)))'`
2021-06-08 01:23:25 +05:30
### SSL Configuration Settings
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
| Setting | Description | Required | Examples |
|---------------|-------------|----------|----------|
| `ca_file` | Specifies the path to a file containing a PEM-format CA certificate, for example, if you need to use an internal CA. | **{dotted-circle}** No | `'/etc/ca.pem'` |
| `ssl_version` | Specifies the SSL version for OpenSSL to use, if the OpenSSL default is not appropriate. | **{dotted-circle}** No | `'TLSv1_1'` |
| `ciphers` | Specific SSL ciphers to use in communication with LDAP servers. | **{dotted-circle}** No | `'ALL:!EXPORT:!LOW:!aNULL:!eNULL:!SSLv2'` |
| `cert` | Client certificate. | **{dotted-circle}** No | `'-----BEGIN CERTIFICATE----- <REDACTED> -----END CERTIFICATE -----'` |
| `key` | Client private key. | **{dotted-circle}** No | `'-----BEGIN PRIVATE KEY----- <REDACTED> -----END PRIVATE KEY -----'` |
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
### Attribute Configuration Settings
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
LDAP attributes that GitLab uses to create an account for the LDAP user. The specified
attribute can either be the attribute name as a string (for example, `'mail'`), or an
array of attribute names to try in order (for example, `['mail', 'email']`). Note that
the user's LDAP sign-in is the attribute specified as `uid` above.
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
| Setting | Description | Required | Examples |
|--------------|-------------|----------|----------|
| `username` | The username is used in paths for the user's own projects (like `gitlab.example.com/username/project`) and when mentioning them in issues, merge request and comments (like `@username`). If the attribute specified for `username` contains an email address, the GitLab username is part of the email address before the `@`. | **{dotted-circle}** No | `['uid', 'userid', 'sAMAccountName']` |
| `email` | LDAP attribute for user email. | **{dotted-circle}** No | `['mail', 'email', 'userPrincipalName']` |
| `name` | LDAP attribute for user display name. If `name` is blank, the full name is taken from the `first_name` and `last_name`. | **{dotted-circle}** No | Attributes `'cn'`, or `'displayName'` commonly carry full names. Alternatively, you can force the use of `first_name` and `last_name` by specifying an absent attribute such as `'somethingNonExistent'`. |
| `first_name` | LDAP attribute for user first name. Used when the attribute configured for `name` does not exist. | **{dotted-circle}** No | `'givenName'` |
| `last_name` | LDAP attribute for user last name. Used when the attribute configured for `name` does not exist. | **{dotted-circle}** No | `'sn'` |
2020-06-23 00:09:42 +05:30
2021-03-11 19:13:27 +05:30
### LDAP Sync Configuration Settings **(PREMIUM SELF)**
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
| Setting | Description | Required | Examples |
|-------------------|-------------|----------|----------|
| `group_base` | Base used to search for groups. | **{dotted-circle}** No | `'ou=groups,dc=gitlab,dc=example'` |
| `admin_group` | The CN of a group containing GitLab administrators. Note: Not `cn=administrators` or the full DN. | **{dotted-circle}** No | `'administrators'` |
| `external_groups` | An array of CNs of groups containing users that should be considered external. Note: Not `cn=interns` or the full DN. | **{dotted-circle}** No | `['interns', 'contractors']` |
| `sync_ssh_keys` | The LDAP attribute containing a user's public SSH key. | **{dotted-circle}** No | `'sshPublicKey'` or false if not set |
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
### Set up LDAP user filter
2020-06-23 00:09:42 +05:30
If you want to limit all GitLab access to a subset of the LDAP users on your
LDAP server, the first step should be to narrow the configured `base`. However,
2021-09-04 01:27:46 +05:30
it's sometimes necessary to further filter users. In this case, you can set
up an LDAP user filter. The filter must comply with
2020-06-23 00:09:42 +05:30
[RFC 4515](https://tools.ietf.org/search/rfc4515).
**Omnibus configuration**
```ruby
gitlab_rails['ldap_servers'] = {
'main' => {
# snip...
'user_filter' => '(employeeType=developer)'
}
}
```
**Source configuration**
```yaml
production:
ldap:
servers:
main:
# snip...
user_filter: '(employeeType=developer)'
```
If you want to limit access to the nested members of an Active Directory
2021-09-04 01:27:46 +05:30
group, use the following syntax:
2020-06-23 00:09:42 +05:30
```plaintext
(memberOf:1.2.840.113556.1.4.1941:=CN=My Group,DC=Example,DC=com)
```
For more information about this "LDAP_MATCHING_RULE_IN_CHAIN" filter, see the following
[Microsoft Search Filter Syntax](https://docs.microsoft.com/en-us/windows/win32/adsi/search-filter-syntax) document.
2021-09-04 01:27:46 +05:30
Support for nested members in the user filter shouldn't be confused with
2021-03-11 19:13:27 +05:30
[group sync nested groups support](#supported-ldap-group-typesattributes). **(PREMIUM SELF)**
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
GitLab does not support the custom filter syntax used by OmniAuth LDAP.
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
#### Escaping special characters
2020-06-23 00:09:42 +05:30
The `user_filter` DN can contain special characters. For example:
- A comma:
```plaintext
OU=GitLab, Inc,DC=gitlab,DC=com
```
- Open and close brackets:
```plaintext
OU=Gitlab (Inc),DC=gitlab,DC=com
```
These characters must be escaped as documented in
[RFC 4515](https://tools.ietf.org/search/rfc4515).
- Escape commas with `\2C`. For example:
```plaintext
OU=GitLab\2C Inc,DC=gitlab,DC=com
```
- Escape open and close brackets with `\28` and `\29`, respectively. For example:
```plaintext
OU=Gitlab \28Inc\29,DC=gitlab,DC=com
```
2021-06-08 01:23:25 +05:30
### Enabling LDAP username lowercase
2020-06-23 00:09:42 +05:30
Some LDAP servers, depending on their configurations, can return uppercase usernames.
This can lead to several confusing issues such as creating links or namespaces with uppercase names.
GitLab can automatically lowercase usernames provided by the LDAP server by enabling
the configuration option `lowercase_usernames`. By default, this configuration option is `false`.
**Omnibus configuration**
1. Edit `/etc/gitlab/gitlab.rb`:
```ruby
gitlab_rails['ldap_servers'] = {
'main' => {
# snip...
'lowercase_usernames' => true
}
}
```
1. [Reconfigure GitLab](../../restart_gitlab.md#omnibus-gitlab-reconfigure) for the changes to take effect.
**Source configuration**
1. Edit `config/gitlab.yaml`:
```yaml
production:
ldap:
servers:
main:
# snip...
lowercase_usernames: true
```
1. [Restart GitLab](../../restart_gitlab.md#installations-from-source) for the changes to take effect.
2021-06-08 01:23:25 +05:30
### Disable LDAP web sign in
2020-06-23 00:09:42 +05:30
It can be useful to prevent using LDAP credentials through the web UI when
an alternative such as SAML is preferred. This allows LDAP to be used for group
sync, while also allowing your SAML identity provider to handle additional
checks like custom 2FA.
2021-09-04 01:27:46 +05:30
When LDAP web sign in is disabled, users don't see an **LDAP** tab on the sign-in page.
2020-11-24 15:15:51 +05:30
This does not disable [using LDAP credentials for Git access](#git-password-authentication).
2020-06-23 00:09:42 +05:30
**Omnibus configuration**
1. Edit `/etc/gitlab/gitlab.rb`:
```ruby
gitlab_rails['prevent_ldap_sign_in'] = true
```
1. [Reconfigure GitLab](../../restart_gitlab.md#omnibus-gitlab-reconfigure) for the changes to take effect.
**Source configuration**
1. Edit `config/gitlab.yaml`:
```yaml
production:
ldap:
prevent_ldap_sign_in: true
```
1. [Restart GitLab](../../restart_gitlab.md#installations-from-source) for the changes to take effect.
2021-06-08 01:23:25 +05:30
### Using encrypted credentials
2021-02-22 17:27:13 +05:30
Instead of having the LDAP integration credentials stored in plaintext in the configuration files, you can optionally
use an encrypted file for the LDAP credentials. To use this feature, you first need to enable
[GitLab encrypted configuration](../../encrypted_configuration.md).
2021-09-04 01:27:46 +05:30
The encrypted configuration for LDAP exists in an encrypted YAML file. By default the file is created at
2021-02-22 17:27:13 +05:30
`shared/encrypted_configuration/ldap.yaml.enc`. This location is configurable in the GitLab configuration.
The unencrypted contents of the file should be a subset of the secret settings from your `servers` block in the LDAP
configuration.
The supported configuration items for the encrypted file are:
- `bind_dn`
- `password`
The encrypted contents can be configured with the [LDAP secret edit Rake command](../../raketasks/ldap.md#edit-secret).
**Omnibus configuration**
If initially your LDAP configuration looked like:
1. In `/etc/gitlab/gitlab.rb`:
```ruby
gitlab_rails['ldap_servers'] = {
'main' => {
# snip...
'bind_dn' => 'admin',
'password' => '123'
}
}
```
1. Edit the encrypted secret:
```shell
sudo gitlab-rake gitlab:ldap:secret:edit EDITOR=vim
```
1. The unencrypted contents of the LDAP secret should be entered like:
```yaml
main:
bind_dn: admin
password: '123'
```
1. Edit `/etc/gitlab/gitlab.rb` and remove the settings for `user_bn` and `password`.
1. [Reconfigure GitLab](../../restart_gitlab.md#omnibus-gitlab-reconfigure) for the changes to take effect.
**Source configuration**
If initially your LDAP configuration looked like:
1. In `config/gitlab.yaml`:
```yaml
production:
ldap:
servers:
main:
# snip...
bind_dn: admin
password: '123'
```
1. Edit the encrypted secret:
```shell
bundle exec rake gitlab:ldap:secret:edit EDITOR=vim RAILS_ENVIRONMENT=production
```
1. The unencrypted contents of the LDAP secret should be entered like:
```yaml
main:
bind_dn: admin
password: '123'
```
1. Edit `config/gitlab.yaml` and remove the settings for `user_bn` and `password`.
1. [Restart GitLab](../../restart_gitlab.md#installations-from-source) for the changes to take effect.
2021-06-08 01:23:25 +05:30
## Encryption
2020-06-23 00:09:42 +05:30
### TLS Server Authentication
There are two encryption methods, `simple_tls` and `start_tls`.
For either encryption method, if setting `verify_certificates: false`, TLS
encryption is established with the LDAP server before any LDAP-protocol data is
exchanged but no validation of the LDAP server's SSL certificate is performed.
### Limitations
#### TLS Client Authentication
Not implemented by `Net::LDAP`.
You should disable anonymous LDAP authentication and enable simple or SASL
authentication. The TLS client authentication setting in your LDAP server cannot
be mandatory and clients cannot be authenticated with the TLS protocol.
2021-03-11 19:13:27 +05:30
## Multiple LDAP servers **(PREMIUM SELF)**
2020-06-23 00:09:42 +05:30
2021-04-17 20:07:23 +05:30
With GitLab, you can configure multiple LDAP servers that your GitLab instance
connects to.
2020-06-23 00:09:42 +05:30
To add another LDAP server:
2020-11-24 15:15:51 +05:30
1. Duplicate the settings under [the main configuration](#configuration).
2020-06-23 00:09:42 +05:30
1. Edit them to match the additional LDAP server.
Be sure to choose a different provider ID made of letters a-z and numbers 0-9.
2021-02-22 17:27:13 +05:30
This ID is stored in the database so that GitLab can remember which LDAP
2020-06-23 00:09:42 +05:30
server a user belongs to.
2020-07-28 23:09:34 +05:30
![Multiple LDAP Servers Sign in](img/multi_login.gif)
2020-06-23 00:09:42 +05:30
Based on the example illustrated on the image above,
our `gitlab.rb` configuration would look like:
```ruby
gitlab_rails['ldap_enabled'] = true
gitlab_rails['ldap_servers'] = {
'main' => {
'label' => 'GitLab AD',
'host' => 'ad.example.org',
'port' => 636,
...
},
'secondary' => {
'label' => 'GitLab Secondary AD',
'host' => 'ad-secondary.example.net',
'port' => 636,
...
},
'tertiary' => {
'label' => 'GitLab Tertiary AD',
'host' => 'ad-tertiary.example.net',
'port' => 636,
...
}
2020-07-28 23:09:34 +05:30
2020-06-23 00:09:42 +05:30
}
```
2021-09-04 01:27:46 +05:30
If you configure multiple LDAP servers, use a unique naming convention for the
`label` section of each entry. That label is used as the display name of the tab
shown on the sign-in page.
2020-06-23 00:09:42 +05:30
2021-03-11 19:13:27 +05:30
## User sync **(PREMIUM SELF)**
2020-06-23 00:09:42 +05:30
Once per day, GitLab runs a worker to check and update GitLab
users against LDAP.
The process executes the following access checks:
- Ensure the user is still present in LDAP.
- If the LDAP server is Active Directory, ensure the user is active (not
2021-02-22 17:27:13 +05:30
blocked/disabled state). This is checked only if
2020-06-23 00:09:42 +05:30
`active_directory: true` is set in the LDAP configuration.
In Active Directory, a user is marked as disabled/blocked if the user
account control attribute (`userAccountControl:1.2.840.113556.1.4.803`)
2021-01-03 14:25:43 +05:30
has bit 2 set.
2021-03-11 19:13:27 +05:30
<!-- vale gitlab.Spelling = NO -->
For more information, see [Bitmask Searches in LDAP](https://ctovswild.com/2009/09/03/bitmask-searches-in-ldap/).
<!-- vale gitlab.Spelling = YES -->
2020-06-23 00:09:42 +05:30
2021-01-29 00:20:46 +05:30
The user is set to an `ldap_blocked` state in GitLab if the previous conditions
2021-09-04 01:27:46 +05:30
fail. This means the user cannot sign in or push or pull code.
2020-06-23 00:09:42 +05:30
2021-01-29 00:20:46 +05:30
The process also updates the following user information:
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
- Email address
- SSH public keys (if `sync_ssh_keys` is set)
- Kerberos identity (if Kerberos is enabled)
2020-06-23 00:09:42 +05:30
2021-01-03 14:25:43 +05:30
The LDAP sync process:
- Updates existing users.
- Creates new users on first sign in.
2020-06-23 00:09:42 +05:30
2021-03-11 19:13:27 +05:30
### Adjusting LDAP user sync schedule **(PREMIUM SELF)**
2020-06-23 00:09:42 +05:30
2021-01-03 14:25:43 +05:30
By default, GitLab runs a worker once per day at 01:30 a.m. server time to
2020-06-23 00:09:42 +05:30
check and update GitLab users against LDAP.
You can manually configure LDAP user sync times by setting the
2021-01-03 14:25:43 +05:30
following configuration values, in cron format. If needed, you can
2021-01-29 00:20:46 +05:30
use a [crontab generator](http://www.crontabgenerator.com).
2021-01-03 14:25:43 +05:30
The example below shows how to set LDAP user
2020-06-23 00:09:42 +05:30
sync to run once every 12 hours at the top of the hour.
**Omnibus installations**
1. Edit `/etc/gitlab/gitlab.rb`:
```ruby
gitlab_rails['ldap_sync_worker_cron'] = "0 */12 * * *"
```
1. [Reconfigure GitLab](../../restart_gitlab.md#omnibus-gitlab-reconfigure) for the changes to take effect.
**Source installations**
1. Edit `config/gitlab.yaml`:
```yaml
cron_jobs:
ldap_sync_worker_cron:
"0 */12 * * *"
```
1. [Restart GitLab](../../restart_gitlab.md#installations-from-source) for the changes to take effect.
2021-03-11 19:13:27 +05:30
## Group Sync **(PREMIUM SELF)**
2020-06-23 00:09:42 +05:30
If your LDAP supports the `memberof` property, when the user signs in for the
2021-02-22 17:27:13 +05:30
first time GitLab triggers a sync for groups the user should be a member of.
2020-06-23 00:09:42 +05:30
That way they don't need to wait for the hourly sync to be granted
access to their groups and projects.
2021-02-22 17:27:13 +05:30
A group sync process runs every hour on the hour, and `group_base` must be set
2020-06-23 00:09:42 +05:30
in LDAP configuration for LDAP synchronizations based on group CN to work. This allows
GitLab group membership to be automatically updated based on LDAP group members.
The `group_base` configuration should be a base LDAP 'container', such as an
'organization' or 'organizational unit', that contains LDAP groups that should
be available to GitLab. For example, `group_base` could be
2021-02-22 17:27:13 +05:30
`ou=groups,dc=example,dc=com`. In the configuration file it looks like the
2020-06-23 00:09:42 +05:30
following.
**Omnibus configuration**
1. Edit `/etc/gitlab/gitlab.rb`:
```ruby
gitlab_rails['ldap_servers'] = {
'main' => {
# snip...
'group_base' => 'ou=groups,dc=example,dc=com',
}
}
```
1. [Apply your changes to GitLab](../../restart_gitlab.md#omnibus-gitlab-reconfigure).
**Source configuration**
1. Edit `/home/git/gitlab/config/gitlab.yml`:
```yaml
production:
ldap:
servers:
main:
# snip...
group_base: ou=groups,dc=example,dc=com
```
1. [Restart GitLab](../../restart_gitlab.md#installations-from-source) for the changes to take effect.
2021-02-22 17:27:13 +05:30
To take advantage of group sync, group owners or maintainers need to [create one
2020-11-24 15:15:51 +05:30
or more LDAP group links](#adding-group-links).
2020-06-23 00:09:42 +05:30
2021-03-11 19:13:27 +05:30
### Adding group links **(PREMIUM SELF)**
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
For information on adding group links by using CNs and filters, refer to the
[GitLab groups documentation](../../../user/group/index.md#manage-group-memberships-via-ldap).
2020-06-23 00:09:42 +05:30
2021-03-11 19:13:27 +05:30
### Administrator sync **(PREMIUM SELF)**
2020-06-23 00:09:42 +05:30
As an extension of group sync, you can automatically manage your global GitLab
administrators. Specify a group CN for `admin_group` and all members of the
2021-09-04 01:27:46 +05:30
LDAP group are given administrator privileges. The configuration looks
2020-06-23 00:09:42 +05:30
like the following.
2021-02-22 17:27:13 +05:30
NOTE:
Administrators are not synced unless `group_base` is also
2021-03-11 19:13:27 +05:30
specified alongside `admin_group`. Also, only specify the CN of the `admin_group`,
as opposed to the full DN.
2021-09-04 01:27:46 +05:30
Additionally, note that if an LDAP user has an `admin` role, but is not a member of the `admin_group`
group, GitLab revokes their `admin` role when syncing.
2020-06-23 00:09:42 +05:30
**Omnibus configuration**
1. Edit `/etc/gitlab/gitlab.rb`:
```ruby
gitlab_rails['ldap_servers'] = {
'main' => {
# snip...
'group_base' => 'ou=groups,dc=example,dc=com',
'admin_group' => 'my_admin_group',
}
}
```
1. [Apply your changes to GitLab](../../restart_gitlab.md#omnibus-gitlab-reconfigure).
**Source configuration**
1. Edit `/home/git/gitlab/config/gitlab.yml`:
```yaml
production:
ldap:
servers:
main:
# snip...
group_base: ou=groups,dc=example,dc=com
admin_group: my_admin_group
```
1. [Restart GitLab](../../restart_gitlab.md#installations-from-source) for the changes to take effect.
2021-03-11 19:13:27 +05:30
### Global group memberships lock **(PREMIUM SELF)**
2020-06-23 00:09:42 +05:30
2020-10-24 23:57:45 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/1793) in GitLab 12.0.
2020-06-23 00:09:42 +05:30
"Lock memberships to LDAP synchronization" setting allows instance administrators
to lock down user abilities to invite new members to a group.
When enabled, the following applies:
- Only administrator can manage memberships of any group including access levels.
- Users are not allowed to share project with other groups or invite members to
a project created in a group.
2020-07-28 23:09:34 +05:30
To enable it you need to:
2020-11-24 15:15:51 +05:30
1. [Enable LDAP](#configuration)
2021-09-04 01:27:46 +05:30
1. On the top bar, select **Menu >** **{admin}** **Admin**.
1. On the left sidebar, select **Settings > General**.
1. Expand the **Visibility and access controls** section.
1. Ensure the **Lock memberships to LDAP synchronization** checkbox is selected.
2020-07-28 23:09:34 +05:30
2021-03-11 19:13:27 +05:30
### Adjusting LDAP group sync schedule **(PREMIUM SELF)**
2020-06-23 00:09:42 +05:30
By default, GitLab runs a group sync process every hour, on the hour.
2021-01-03 14:25:43 +05:30
The values shown are in cron format. If needed, you can use a
[Crontab Generator](http://www.crontabgenerator.com).
2020-06-23 00:09:42 +05:30
2021-02-22 17:27:13 +05:30
WARNING:
2021-01-03 14:25:43 +05:30
Do not start the sync process too frequently as this
2020-06-23 00:09:42 +05:30
could lead to multiple syncs running concurrently. This is primarily a concern
2021-09-04 01:27:46 +05:30
for installations with a large number of LDAP users. Review the
2020-06-23 00:09:42 +05:30
[LDAP group sync benchmark metrics](#benchmarks) to see how
your installation compares before proceeding.
You can manually configure LDAP group sync times by setting the
following configuration values. The example below shows how to set group
2021-09-04 01:27:46 +05:30
sync to run once every two hours at the top of the hour.
2020-06-23 00:09:42 +05:30
**Omnibus installations**
1. Edit `/etc/gitlab/gitlab.rb`:
```ruby
gitlab_rails['ldap_group_sync_worker_cron'] = "0 */2 * * * *"
```
1. [Reconfigure GitLab](../../restart_gitlab.md#omnibus-gitlab-reconfigure) for the changes to take effect.
**Source installations**
1. Edit `config/gitlab.yaml`:
```yaml
cron_jobs:
ldap_group_sync_worker_cron:
"*/30 * * * *"
```
1. [Restart GitLab](../../restart_gitlab.md#installations-from-source) for the changes to take effect.
2021-03-11 19:13:27 +05:30
### External groups **(PREMIUM SELF)**
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
Using the `external_groups` setting allows you to mark all users belonging
2020-11-24 15:15:51 +05:30
to these groups as [external users](../../../user/permissions.md#external-users).
2020-06-23 00:09:42 +05:30
Group membership is checked periodically through the `LdapGroupSync` background
task.
**Omnibus configuration**
1. Edit `/etc/gitlab/gitlab.rb`:
```ruby
gitlab_rails['ldap_servers'] = {
'main' => {
# snip...
'external_groups' => ['interns', 'contractors'],
}
}
```
1. [Apply your changes to GitLab](../../restart_gitlab.md#omnibus-gitlab-reconfigure).
**Source configuration**
1. Edit `config/gitlab.yaml`:
```yaml
production:
ldap:
servers:
main:
# snip...
external_groups: ['interns', 'contractors']
```
1. [Restart GitLab](../../restart_gitlab.md#installations-from-source) for the changes to take effect.
### Group sync technical details
2021-09-04 01:27:46 +05:30
This section outlines what LDAP queries are executed and what behavior you
can expect from group sync.
2020-06-23 00:09:42 +05:30
2021-02-22 17:27:13 +05:30
Group member access are downgraded from a higher level if their LDAP group
2021-09-04 01:27:46 +05:30
membership changes. For example, if a user the Owner role in a group and the
next group sync reveals they should only have the Developer role, their
2021-02-22 17:27:13 +05:30
access is adjusted accordingly. The only exception is if the user is the
2021-09-04 01:27:46 +05:30
last owner in a group. Groups need at least one owner to fulfill
2020-06-23 00:09:42 +05:30
administrative duties.
#### Supported LDAP group types/attributes
GitLab supports LDAP groups that use member attributes:
- `member`
- `submember`
- `uniquemember`
- `memberof`
2021-09-04 01:27:46 +05:30
- `memberuid`
This means group sync supports (at least) LDAP groups with the following object
classes:
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
- `groupOfNames`
- `posixGroup`
- `groupOfUniqueNames`
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
Other object classes should work if members are defined as one of the
mentioned attributes.
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
Active Directory supports nested groups. Group sync recursively resolves
membership if `active_directory: true` is set in the configuration file.
2020-06-23 00:09:42 +05:30
2021-01-03 14:25:43 +05:30
##### Nested group memberships
2020-06-23 00:09:42 +05:30
Nested group memberships are resolved only if the nested group
2021-02-22 17:27:13 +05:30
is found in the configured `group_base`. For example, if GitLab sees a
2020-06-23 00:09:42 +05:30
nested group with DN `cn=nested_group,ou=special_groups,dc=example,dc=com` but
the configured `group_base` is `ou=groups,dc=example,dc=com`, `cn=nested_group`
is ignored.
#### Queries
- Each LDAP group is queried a maximum of one time with base `group_base` and
filter `(cn=<cn_from_group_link>)`.
2021-02-22 17:27:13 +05:30
- If the LDAP group has the `memberuid` attribute, GitLab executes another
2020-06-23 00:09:42 +05:30
LDAP query per member to obtain each user's full DN. These queries are
executed with base `base`, scope 'base object', and a filter depending on
whether `user_filter` is set. Filter may be `(uid=<uid_from_group>)` or a
joining of `user_filter`.
#### Benchmarks
Group sync was written to be as performant as possible. Data is cached, database
queries are optimized, and LDAP queries are minimized. The last benchmark run
revealed the following metrics:
2021-09-04 01:27:46 +05:30
For 20,000 LDAP users, 11,000 LDAP groups, and 1,000 GitLab groups with 10
2020-06-23 00:09:42 +05:30
LDAP group links each:
- Initial sync (no existing members assigned in GitLab) took 1.8 hours
- Subsequent syncs (checking membership, no writes) took 15 minutes
These metrics are meant to provide a baseline and performance may vary based on
2021-02-22 17:27:13 +05:30
any number of factors. This was an extreme benchmark and most instances don't
have near this many users or groups. Disk speed, database performance,
network and LDAP server response time affects these metrics.
2020-06-23 00:09:42 +05:30
## Troubleshooting
2021-09-04 01:27:46 +05:30
See our [administrator guide to troubleshooting LDAP](ldap-troubleshooting.md).