salt/doc/topics/eauth/index.rst

266 lines
8.3 KiB
ReStructuredText
Raw Normal View History

.. _acl-eauth:
2012-11-16 18:12:07 +00:00
2012-10-10 01:02:59 +00:00
==============================
External Authentication System
==============================
2015-07-06 16:48:04 +00:00
Salt's External Authentication System (eAuth) allows for Salt to pass through
2014-02-19 23:40:06 +00:00
command authorization to any external authentication system, such as PAM or LDAP.
2012-10-10 01:02:59 +00:00
.. note::
eAuth using the PAM external auth system requires salt-master to be run as
root as this system needs root access to check authentication.
2014-08-25 17:32:15 +00:00
Access Control System
---------------------
2012-10-10 01:02:59 +00:00
The external authentication system allows for specific users to be granted
access to execute specific functions on specific minions. Access is configured
2014-02-19 23:40:06 +00:00
in the master configuration file and uses the :ref:`access control system
2013-11-15 22:18:19 +00:00
<acl>`:
2012-10-10 01:02:59 +00:00
.. code-block:: yaml
external_auth:
pam:
thatch:
- 'web*':
- test.*
- network.*
2013-02-18 22:19:57 +00:00
steve:
- .*
2012-10-10 01:02:59 +00:00
2014-02-19 23:40:06 +00:00
The above configuration allows the user ``thatch`` to execute functions
in the test and network modules on the minions that match the web* target.
User ``steve`` is given unrestricted access to minion commands.
2012-10-10 01:02:59 +00:00
.. note:: The PAM module does not allow authenticating as ``root``.
To allow access to :ref:`wheel modules <all-salt.wheel>` or :ref:`runner
modules <all-salt.runners>` the following ``@`` syntax must be used:
.. code-block:: yaml
external_auth:
pam:
thatch:
- '@wheel' # to allow access to all wheel modules
- '@runner' # to allow access to all runner modules
- '@jobs' # to allow access to the jobs runner and/or wheel module
.. note::
The runner/wheel markup is different, since there are no minions to scope the
acl to.
.. note::
2014-09-02 22:19:59 +00:00
Globs will not match wheel or runners! They must be explicitly
allowed with @wheel or @runner.
2014-02-19 23:40:06 +00:00
The external authentication system can then be used from the command-line by
any user on the same system as the master with the ``-a`` option:
2012-10-10 01:02:59 +00:00
.. code-block:: bash
$ salt -a pam web\* test.ping
2013-01-09 01:27:30 +00:00
The system will ask the user for the credentials required by the
2012-10-10 01:02:59 +00:00
authentication system and then publish the command.
2014-03-21 19:32:57 +00:00
To apply permissions to a group of users in an external authentication system,
append a ``%`` to the ID:
.. code-block:: yaml
external_auth:
pam:
admins%:
2014-05-05 16:56:13 +00:00
- '*':
2014-03-21 19:32:57 +00:00
- 'pkg.*'
.. warning::
All users that have external authentication privileges are allowed to run
:mod:`saltutil.findjob <salt.modules.saltutil.find_job>`. Be aware
that this could inadvertently expose some data such as minion IDs.
2014-12-04 19:08:25 +00:00
.. _salt-token-generation:
2012-10-10 01:02:59 +00:00
Tokens
------
2014-02-19 23:40:06 +00:00
With external authentication alone, the authentication credentials will be
2012-10-10 01:02:59 +00:00
required with every call to Salt. This can be alleviated with Salt tokens.
2014-02-19 23:40:06 +00:00
Tokens are short term authorizations and can be easily created by just
2013-02-18 22:19:57 +00:00
adding a ``-T`` option when authenticating:
2012-10-10 01:02:59 +00:00
.. code-block:: bash
$ salt -T -a pam web\* test.ping
2014-02-19 23:40:06 +00:00
Now a token will be created that has a expiration of 12 hours (by default).
This token is stored in a file named ``salt_token`` in the active user's home
2014-02-19 23:40:06 +00:00
directory.
Once the token is created, it is sent with all subsequent communications.
User authentication does not need to be entered again until the token expires.
Token expiration time can be set in the Salt master config file.
2014-03-21 19:32:57 +00:00
LDAP and Active Directory
2015-08-08 04:51:56 +00:00
=========================
2014-03-21 19:32:57 +00:00
.. note::
LDAP usage requires that you have installed python-ldap.
2014-03-21 19:32:57 +00:00
Salt supports both user and group authentication for LDAP (and Active Directory
accessed via its LDAP interface)
2014-03-21 19:32:57 +00:00
2015-08-08 04:51:56 +00:00
OpenLDAP and similar systems
----------------------------
2014-03-21 19:32:57 +00:00
LDAP configuration happens in the Salt master configuration file.
Server configuration values and their defaults:
2014-03-21 19:32:57 +00:00
.. code-block:: yaml
# Server to auth against
2014-03-21 19:32:57 +00:00
auth.ldap.server: localhost
# Port to connect via
2014-03-21 19:32:57 +00:00
auth.ldap.port: 389
# Use TLS when connecting
2014-03-21 19:32:57 +00:00
auth.ldap.tls: False
# LDAP scope level, almost always 2
2014-03-21 19:32:57 +00:00
auth.ldap.scope: 2
# Server specified in URI format
auth.ldap.uri: '' # Overrides .ldap.server, .ldap.port, .ldap.tls above
# Verify server's TLS certificate
auth.ldap.no_verify: False
# Bind to LDAP anonymously to determine group membership
# Active Directory does not allow anonymous binds without special configuration
auth.ldap.anonymous: False
# FOR TESTING ONLY, this is a VERY insecure setting.
# If this is True, the LDAP bind password will be ignored and
# access will be determined by group membership alone with
# the group memberships being retrieved via anonymous bind
auth.ldap.auth_by_group_membership_only: False
# Require authenticating user to be part of this Organizational Unit
# This can be blank if your LDAP schema does not use this kind of OU
auth.ldap.groupou: 'Groups'
# Object Class for groups. An LDAP search will be done to find all groups of this
# class to which the authenticating user belongs.
auth.ldap.groupclass: 'posixGroup'
# Unique ID attribute name for the user
auth.ldap.accountattributename: 'memberUid'
# These are only for Active Directory
auth.ldap.activedirectory: False
auth.ldap.persontype: 'person'
2014-03-21 19:32:57 +00:00
2015-08-08 04:51:56 +00:00
There are two phases to LDAP authentication. First, Salt authenticates to search for a users's Distinguished Name
and group membership. The user it authenticates as in this phase is often a special LDAP system user with
read-only access to the LDAP directory. After Salt searches the directory to determine the actual user's DN
and groups, it re-authenticates as the user running the Salt commands.
If you are already aware of the structure of your DNs and permissions in your LDAP store are set such that
users can look up their own group memberships, then the first and second users can be the same. To tell Salt this is
the case, omit the ``auth.ldap.bindpw`` parameter. You can template the binddn like this:
2014-03-21 19:32:57 +00:00
.. code-block:: yaml
2014-03-24 16:12:56 +00:00
2014-03-21 19:32:57 +00:00
auth.ldap.basedn: dc=saltstack,dc=com
2015-08-08 04:51:56 +00:00
auth.ldap.binddn: uid={{ username }},cn=users,cn=accounts,dc=saltstack,dc=com
2014-03-21 19:32:57 +00:00
2015-08-08 04:51:56 +00:00
Salt will use the password entered on the salt command line in place of the bindpw.
2014-03-21 19:32:57 +00:00
2015-08-08 04:51:56 +00:00
To use two separate users, specify the LDAP lookup user in the binddn directive, and include a bindpw like so
2014-03-21 19:32:57 +00:00
.. code-block:: yaml
2014-03-24 16:12:56 +00:00
2015-08-08 04:51:56 +00:00
auth.ldap.binddn: uid=ldaplookup,cn=sysaccounts,cn=etc,dc=saltstack,dc=com
2014-03-21 19:32:57 +00:00
auth.ldap.bindpw: mypassword
2015-08-08 04:51:56 +00:00
As mentioned before, Salt uses a filter to find the DN associated with a user. Salt
substitutes the ``{{ username }}`` value for the username when querying LDAP
2014-03-21 19:32:57 +00:00
.. code-block:: yaml
2014-03-24 16:12:56 +00:00
2014-03-21 19:32:57 +00:00
auth.ldap.filter: uid={{ username }}
For OpenLDAP, to determine group membership, one can specify an OU that contains
group data. This is prepended to the basedn to create a search path. Then
the results are filtered against ``auth.ldap.groupclass``, default
``posixGroup``, and the account's 'name' attribute, ``memberUid`` by default.
2014-03-21 19:32:57 +00:00
.. code-block:: yaml
2014-03-24 16:12:56 +00:00
2014-03-21 19:32:57 +00:00
auth.ldap.groupou: Groups
2015-08-08 04:51:56 +00:00
Active Directory
----------------
Active Directory handles group membership differently, and does not utilize the
``groupou`` configuration variable. AD needs the following options in
the master config:
.. code-block:: yaml
auth.ldap.activedirectory: True
auth.ldap.filter: sAMAccountName={{username}}
auth.ldap.accountattributename: sAMAccountName
auth.ldap.groupclass: group
auth.ldap.persontype: person
To determine group membership in AD, the username and password that is entered
when LDAP is requested as the eAuth mechanism on the command line is used to
2015-07-06 16:48:04 +00:00
bind to AD's LDAP interface. If this fails, then it doesn't matter what groups
the user belongs to, he or she is denied access. Next, the distinguishedName
of the user is looked up with the following LDAP search:
.. code-block:: text
(&(<value of auth.ldap.accountattributename>={{username}})
(objectClass=<value of auth.ldap.persontype>)
)
This should return a distinguishedName that we can use to filter for group
2015-08-08 04:51:56 +00:00
membership. Then the following LDAP query is executed:
.. code-block:: text
(&(member=<distinguishedName from search above>)
(objectClass=<value of auth.ldap.groupclass>)
)
2014-03-21 19:32:57 +00:00
.. code-block:: yaml
external_auth:
ldap:
test_ldap_user:
- '*':
- test.ping
2014-03-21 19:32:57 +00:00
To configure an LDAP group, append a ``%`` to the ID:
.. code-block:: yaml
external_auth:
2015-06-05 17:21:26 +00:00
ldap:
test_ldap_group%:
- '*':
- test.echo