Yaml format policy Update in Configuration Reference
For Newton, the content of the page needs to be updated to reflect the change from .JSON to YAML format. A note also needs to be added that specifies environments with .JSON format policy files will still work through a backport. Change-Id: I11c5f2b8e5964e37ae9fb04e2bd2260cd6a5b6d2 Co-Authored-By: Kevin_Zheng <zhengzhenyu@huawei.com> Closes-Bug: #1575926
This commit is contained in:
parent
a659a33a86
commit
d14dc6a7ea
@ -42,6 +42,7 @@ Appendix
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
policy-yaml-file.rst
|
||||
policy-json-file.rst
|
||||
|
||||
Search in this guide
|
||||
|
@ -77,10 +77,10 @@ options in these files:
|
||||
Resides in the ``/etc/zaqar`` directory. If there is a file ``zaqar.conf``
|
||||
in ``~/.zaqar`` directory, it is used instead of the one in ``/etc/zaqar``
|
||||
directory.
|
||||
* ``policy.json``. Contains RBAC policy for all actions. Only applies to API
|
||||
* ``policy.yaml``. Contains RBAC policy for all actions. Only applies to API
|
||||
v2. Resides in the ``/etc/zaqar`` directory. If there is a file
|
||||
``policy.json`` in ``~/.zaqar`` directory, it is used instead of the one in
|
||||
``/etc/zaqar`` directory. See :doc:`../policy-json-file`.
|
||||
``policy.yaml`` in ``~/.zaqar`` directory, it is used instead of the one in
|
||||
``/etc/zaqar`` directory. See :doc:`../policy-yaml-file`.
|
||||
|
||||
.. note::
|
||||
|
||||
|
@ -21,7 +21,7 @@ Permission control options in each API version:
|
||||
|
||||
* RBAC policy options: ``policy_default_rule``, ``policy_dirs``,
|
||||
``policy_file`` which controls the permissions to access each type of
|
||||
functionality for different types of users. See :doc:`../policy-json-file`.
|
||||
functionality for different types of users. See :doc:`../policy-yaml-file`.
|
||||
* ``secret_key`` option which defines a secret key to use for signing
|
||||
special URLs. These are called pre-signed URLs and give temporary
|
||||
permissions to outsiders of the system.
|
||||
|
244
doc/config-reference/source/policy-yaml-file.rst
Normal file
244
doc/config-reference/source/policy-yaml-file.rst
Normal file
@ -0,0 +1,244 @@
|
||||
====================
|
||||
The policy.yaml file
|
||||
====================
|
||||
|
||||
Each OpenStack service, Identity, Compute, Networking, and so on, has its
|
||||
own role-based access policies. They determine which user can access
|
||||
which objects in which way, and are defined in the service's
|
||||
``policy.yaml`` file.
|
||||
|
||||
Whenever an API call to an OpenStack service is made, the service's
|
||||
policy engine uses the appropriate policy definitions to determine if
|
||||
the call can be accepted. Any changes to ``policy.yaml`` are effective
|
||||
immediately, which allows new policies to be implemented while the
|
||||
service is running.
|
||||
|
||||
A ``policy.yaml`` file is a text file in YAML (YAML Ain't Markup Language)
|
||||
format. Each policy is defined by a one-line statement in the
|
||||
form ``"<target>" : "<rule>"``.
|
||||
|
||||
The policy target, also named "action", represents an API call like
|
||||
"start an instance" or "attach a volume".
|
||||
|
||||
Action names are usually qualified. For example, the Compute service features
|
||||
API calls to list instances, volumes, and networks. In
|
||||
``/etc/nova/policy.yaml``, these APIs are represented by
|
||||
``compute:get_all``, ``volume:get_all``, and ``network:get_all``,
|
||||
respectively.
|
||||
|
||||
The mapping between API calls and actions is not generally documented.
|
||||
|
||||
The policy rule determines under which circumstances the API call is
|
||||
permitted. Usually this involves the user who makes the call (hereafter
|
||||
named the "API user") and often the object on which the API call
|
||||
operates. A typical rule checks if the API user is the object's owner.
|
||||
|
||||
.. warning::
|
||||
|
||||
**Modifying the policy**
|
||||
|
||||
While recipes for editing ``policy.yaml`` files are found on blogs,
|
||||
modifying the policy can have unexpected side effects and is not
|
||||
encouraged.
|
||||
|
||||
Examples
|
||||
~~~~~~~~
|
||||
|
||||
A simple rule might look like this:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
"compute:get_all" : ""
|
||||
|
||||
The target is ``"compute:get_all"``, the "list all instances" API of the
|
||||
Compute service. The rule is an empty string meaning "always". This
|
||||
policy allows anybody to list instances.
|
||||
|
||||
You can also decline permission to use an API:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
"compute:shelve": "!"
|
||||
|
||||
The exclamation mark stands for "never" or "nobody", which effectively
|
||||
disables the Compute API "shelve an instance".
|
||||
|
||||
Many APIs can only be called by administrators. This can be expressed by
|
||||
the rule ``"role:admin"``. The following policy ensures that only
|
||||
administrators can create new users in the Identity database:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
"identity:create_user" : "role:admin"
|
||||
|
||||
You can limit APIs to any role. For example, the Orchestration service
|
||||
defines a role named ``heat_stack_user``. Whoever has this role is not
|
||||
allowed to create stacks:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
"stacks:create": "not role:heat_stack_user"
|
||||
|
||||
This rule makes use of the boolean operator ``not``. More complex rules
|
||||
can be built using operators ``and``, ``or``, and parentheses.
|
||||
|
||||
You can define aliases for rules:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
"deny_stack_user": "not role:heat_stack_user"
|
||||
|
||||
The policy engine understands that ``"deny_stack_user"`` is not an API
|
||||
and consequently interprets it as an alias. The stack creation policy
|
||||
above can then be written as:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
"stacks:create": "rule:deny_stack_user"
|
||||
|
||||
This is taken verbatim from ``/etc/heat/policy.yaml``.
|
||||
|
||||
Rules can compare API attributes to object attributes. For example:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
"os_compute_api:servers:start" : "project_id:%(project_id)s"
|
||||
|
||||
states that only the owner of an instance can start it up. The
|
||||
``project_id`` string before the colon is an API attribute, namely the project
|
||||
ID of the API user. It is compared with the project ID of the object (in
|
||||
this case, an instance). More precisely, it is compared with the
|
||||
``project_id`` field of that object in the database. If the two values are
|
||||
equal, permission is granted.
|
||||
|
||||
An administrator always has permission to call APIs. This is how
|
||||
``/etc/keystone/policy.yaml`` makes this policy explicit:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
"admin_required": "role:admin or is_admin:1"
|
||||
"owner" : "user_id:%(user_id)s"
|
||||
"admin_or_owner": "rule:admin_required or rule:owner"
|
||||
"identity:change_password": "rule:admin_or_owner"
|
||||
|
||||
The first line defines an alias for "user is an admin user". The
|
||||
``is_admin`` flag is only used when setting up the Identity service for
|
||||
the first time. It indicates that the user has admin privileges granted
|
||||
by the service token (``--os-token`` parameter of the ``keystone``
|
||||
command line client).
|
||||
|
||||
The second line creates an alias for "user owns the object" by comparing
|
||||
the API's user ID with the object's user ID.
|
||||
|
||||
Line 3 defines a third alias ``admin_or_owner``, combining the two first
|
||||
aliases with the Boolean operator ``or``.
|
||||
|
||||
Line 4 sets up the policy that a password can only be modified by its
|
||||
owner or an admin user.
|
||||
|
||||
As a final example, let's examine a more complex rule:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
"identity:ec2_delete_credential": "rule:admin_required or
|
||||
(rule:owner and user_id:%(target.credential.user_id)s)"
|
||||
|
||||
|
||||
This rule determines who can use the Identity API "delete EC2
|
||||
credential". Here, boolean operators and parentheses combine three
|
||||
simpler rules. ``admin_required`` and ``owner`` are the same aliases as
|
||||
in the previous example. ``user_id:%(target.credential.user_id)s``
|
||||
compares the API user with the user ID of the credential object
|
||||
associated with the target.
|
||||
|
||||
Syntax
|
||||
~~~~~~
|
||||
|
||||
A ``policy.yaml`` file consists of policies and aliases of the form
|
||||
``target:rule`` or ``alias:definition``, separated by commas and
|
||||
enclosed in curly braces:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
"alias 1" : "definition 1"
|
||||
"alias 2" : "definition 2"
|
||||
....
|
||||
"target 1" : "rule 1"
|
||||
"target 2" : "rule 2"
|
||||
....
|
||||
|
||||
Targets are APIs and are written ``"service:API"`` or simply ``"API"``.
|
||||
For example, ``"compute:create"`` or ``"add_image"``.
|
||||
|
||||
Rules determine whether the API call is allowed.
|
||||
|
||||
Rules can be:
|
||||
|
||||
- Always true. The action is always permitted. This can be written as
|
||||
``""`` (empty string), ``[]``, or ``"@"``.
|
||||
|
||||
- Always false. The action is never permitted. Written as ``"!"``.
|
||||
|
||||
- A special check
|
||||
|
||||
- A comparison of two values
|
||||
|
||||
- Boolean expressions based on simpler rules
|
||||
|
||||
Special checks are:
|
||||
|
||||
- ``<role>:<role name>``, a test whether the API credentials contain
|
||||
this role.
|
||||
|
||||
- ``<rule>:<rule name>``, the definition of an alias.
|
||||
|
||||
- ``http:<target URL>``, which delegates the check to a remote server.
|
||||
The API is authorized when the server returns True.
|
||||
|
||||
Developers can define additional special checks.
|
||||
|
||||
Two values are compared in the following way:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
"value1 : value2"
|
||||
|
||||
Possible values are:
|
||||
|
||||
- Constants: Strings, numbers, ``true``, ``false``
|
||||
|
||||
- API attributes
|
||||
|
||||
- Target object attributes
|
||||
|
||||
- The flag ``is_admin``
|
||||
|
||||
API attributes can be ``project_id``, ``user_id`` or ``domain_id``.
|
||||
|
||||
Target object attributes are fields from the object description in the
|
||||
database. For example in the case of the ``"compute:start"`` API, the
|
||||
object is the instance to be started. The policy for starting instances
|
||||
could use the ``%(project_id)s`` attribute, that is the project that
|
||||
owns the instance. The trailing ``s`` indicates this is a string.
|
||||
|
||||
``is_admin`` indicates that administrative privileges are granted via
|
||||
the admin token mechanism (the ``--os-token`` option of the ``keystone``
|
||||
command). The admin token allows initialisation of the Identity database
|
||||
before the admin role exists.
|
||||
|
||||
The alias construct exists for convenience. An alias is short name for a
|
||||
complex or hard to understand rule. It is defined in the same way as a
|
||||
policy:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
alias name : alias definition
|
||||
|
||||
Once an alias is defined, use the ``rule`` keyword to use it in a policy
|
||||
rule.
|
||||
|
||||
Older json format policy
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
While the old json format policy file is still supported, we recommend using
|
||||
the newer YAML format file, more intuitive syntax.
|
@ -63337,7 +63337,7 @@
|
||||
</url>
|
||||
<url>
|
||||
<priority>1.0</priority>
|
||||
<loc>http://docs.openstack.org/newton/config-reference/policy-json-file.html</loc>
|
||||
<loc>http://docs.openstack.org/newton/config-reference/policy-yaml-file.html</loc>
|
||||
<lastmod>2017-01-12T12:48:26+0000</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
Loading…
x
Reference in New Issue
Block a user