20884f
% CONTAINERS-POLICY.JSON(5) policy.json Man Page
20884f
% Miloslav Trmač
20884f
% September 2016
20884f
20884f
# NAME
20884f
containers-policy.json - syntax for the signature verification policy file
20884f
20884f
## DESCRIPTION
20884f
20884f
Signature verification policy files are used to specify policy, e.g. trusted keys,
20884f
applicable when deciding whether to accept an image, or individual signatures of that image, as valid.
20884f
20884f
By default, the policy is read from `$HOME/.config/containers/policy.json`, if it exists, otherwise from `/etc/containers/policy.json`;  applications performing verification may allow using a different policy instead.
20884f
20884f
## FORMAT
20884f
20884f
The signature verification policy file, usually called `policy.json`,
20884f
uses a JSON format.  Unlike some other JSON files, its parsing is fairly strict:
20884f
unrecognized, duplicated or otherwise invalid fields cause the entire file,
20884f
and usually the entire operation, to be rejected.
20884f
20884f
The purpose of the policy file is to define a set of *policy requirements* for a container image,
20884f
usually depending on its location (where it is being pulled from) or otherwise defined identity.
20884f
20884f
Policy requirements can be defined for:
20884f
20884f
- An individual *scope* in a *transport*.
20884f
  The *transport* values are the same as the transport prefixes when pushing/pulling images (e.g. `docker:`, `atomic:`),
20884f
  and *scope* values are defined by each transport; see below for more details.
20884f
20884f
  Usually, a scope can be defined to match a single image, and various prefixes of
20884f
  such a most specific scope define namespaces of matching images.
20884f
- A default policy for a single transport, expressed using an empty string as a scope
20884f
- A global default policy.
20884f
20884f
If multiple policy requirements match a given image, only the requirements from the most specific match apply,
20884f
the more general policy requirements definitions are ignored.
20884f
20884f
This is expressed in JSON using the top-level syntax
20884f
```js
20884f
{
20884f
    "default": [/* policy requirements: global default */]
20884f
    "transports": {
20884f
        transport_name: {
20884f
            "": [/* policy requirements: default for transport $transport_name */],
20884f
            scope_1: [/* policy requirements: default for $scope_1 in $transport_name */],
20884f
            scope_2: [/*…*/]
20884f
            /*…*/
20884f
        },
20884f
        transport_name_2: {/*…*/}
20884f
        /*…*/
20884f
    }
20884f
}
20884f
```
20884f
20884f
The global `default` set of policy requirements is mandatory; all of the other fields
20884f
(`transports` itself, any specific transport, the transport-specific default, etc.) are optional.
20884f
20884f
20884f
## Supported transports and their scopes
20884f
20884f
### `atomic:`
20884f
20884f
The `atomic:` transport refers to images in an Atomic Registry.
20884f
20884f
Supported scopes use the form _hostname_[`:`_port_][`/`_namespace_[`/`_imagestream_ [`:`_tag_]]],
20884f
i.e. either specifying a complete name of a tagged image, or prefix denoting
20884f
a host/namespace/image stream or a wildcarded expression for matching all
20884f
subdomains. For wildcarded subdomain matching, `*.example.com` is a valid case, but `example*.*.com` is not.
20884f
20884f
*Note:* The _hostname_ and _port_ refer to the Docker registry host and port (the one used
20884f
e.g. for `docker pull`), _not_ to the OpenShift API host and port.
20884f
20884f
### `dir:`
20884f
20884f
The `dir:` transport refers to images stored in local directories.
20884f
20884f
Supported scopes are paths of directories (either containing a single image or
20884f
subdirectories possibly containing images).
20884f
20884f
*Note:* The paths must be absolute and contain no symlinks. Paths violating these requirements may be silently ignored.
20884f
20884f
The top-level scope `"/"` is forbidden; use the transport default scope `""`,
20884f
for consistency with other transports.
20884f
20884f
### `docker:`
20884f
20884f
The `docker:` transport refers to images in a registry implementing the "Docker Registry HTTP API V2".
20884f
20884f
Scopes matching individual images are named Docker references *in the fully expanded form*, either
20884f
using a tag or digest. For example, `docker.io/library/busybox:latest` (*not* `busybox:latest`).
20884f
20884f
More general scopes are prefixes of individual-image scopes, and specify a repository (by omitting the tag or digest),
20884f
a repository namespace, or a registry host (by only specifying the host name)
20884f
or a wildcarded expression for matching all subdomains. For wildcarded subdomain
20884f
matching, `*.example.com` is a valid case, but `example*.*.com` is not.
20884f
20884f
### `oci:`
20884f
20884f
The `oci:` transport refers to images in directories compliant with "Open Container Image Layout Specification".
20884f
20884f
Supported scopes use the form _directory_`:`_tag_, and _directory_ referring to
20884f
a directory containing one or more tags, or any of the parent directories.
20884f
20884f
*Note:* See `dir:` above for semantics and restrictions on the directory paths, they apply to `oci:` equivalently.
20884f
20884f
### `tarball:`
20884f
20884f
The `tarball:` transport refers to tarred up container root filesystems.
20884f
20884f
Scopes are ignored.
20884f
20884f
## Policy Requirements
20884f
20884f
Using the mechanisms above, a set of policy requirements is looked up.  The policy requirements
20884f
are represented as a JSON array of individual requirement objects.  For an image to be accepted,
20884f
*all* of the requirements must be satisfied simulatenously.
20884f
20884f
The policy requirements can also be used to decide whether an individual signature is accepted (= is signed by a recognized key of a known author);
20884f
in that case some requirements may apply only to some signatures, but each signature must be accepted by *at least one* requirement object.
20884f
20884f
The following requirement objects are supported:
20884f
20884f
### `insecureAcceptAnything`
20884f
20884f
A simple requirement with the following syntax
20884f
20884f
```json
20884f
{"type":"insecureAcceptAnything"}
20884f
```
20884f
20884f
This requirement accepts any image (but note that other requirements in the array still apply).
20884f
20884f
When deciding to accept an individual signature, this requirement does not have any effect; it does *not* cause the signature to be accepted, though.
20884f
20884f
This is useful primarily for policy scopes where no signature verification is required;
20884f
because the array of policy requirements must not be empty, this requirement is used
20884f
to represent the lack of requirements explicitly.
20884f
20884f
### `reject`
20884f
20884f
A simple requirement with the following syntax:
20884f
20884f
```json
20884f
{"type":"reject"}
20884f
```
20884f
20884f
This requirement rejects every image, and every signature.
20884f
20884f
### `signedBy`
20884f
20884f
This requirement requires an image to be signed with an expected identity, or accepts a signature if it is using an expected identity and key.
20884f
20884f
```js
20884f
{
20884f
    "type":    "signedBy",
20884f
    "keyType": "GPGKeys", /* The only currently supported value */
20884f
    "keyPath": "/path/to/local/keyring/file",
20884f
    "keyData": "base64-encoded-keyring-data",
20884f
    "signedIdentity": identity_requirement
20884f
}
20884f
```
20884f
20884f
20884f
Exactly one of `keyPath` and `keyData` must be present, containing a GPG keyring of one or more public keys.  Only signatures made by these keys are accepted.
20884f
20884f
The `signedIdentity` field, a JSON object, specifies what image identity the signature claims about the image.
20884f
One of the following alternatives are supported:
20884f
20884f
- The identity in the signature must exactly match the image identity.  Note that with this, referencing an image by digest (with a signature claiming a _repository_`:`_tag_ identity) will fail.
20884f
20884f
  ```json
20884f
  {"type":"matchExact"}
20884f
  ```
20884f
- If the image identity carries a tag, the identity in the signature must exactly match;
20884f
  if the image identity uses a digest reference, the identity in the signature must be in the same repository as the image identity (using any tag).
20884f
20884f
  (Note that with images identified using digest references, the digest from the reference is validated even before signature verification starts.)
20884f
20884f
  ```json
20884f
  {"type":"matchRepoDigestOrExact"}
20884f
  ```
20884f
- The identity in the signature must be in the same repository as the image identity.  This is useful e.g. to pull an image using the `:latest` tag when the image is signed with a tag specifying an exact image version.
20884f
20884f
  ```json
20884f
  {"type":"matchRepository"}
20884f
  ```
20884f
- The identity in the signature must exactly match a specified identity.
20884f
  This is useful e.g. when locally mirroring images signed using their public identity.
20884f
20884f
  ```js
20884f
  {
20884f
      "type": "exactReference",
20884f
      "dockerReference": docker_reference_value
20884f
  }
20884f
  ```
20884f
- The identity in the signature must be in the same repository as a specified identity.
20884f
  This combines the properties of `matchRepository` and `exactReference`.
20884f
20884f
  ```js
20884f
  {
20884f
      "type": "exactRepository",
20884f
      "dockerRepository": docker_repository_value
20884f
  }
20884f
  ```
20884f
- Prefix remapping:
20884f
20884f
  If the image identity matches the specified prefix, that prefix is replaced by the specified “signed prefix”
20884f
  (otherwise it is used as unchanged and no remapping takes place);
20884f
  matching then follows the `matchRepoDigestOrExact` semantics documented above
20884f
  (i.e. if the image identity carries a tag, the identity in the signature must exactly match,
20884f
  if it uses a digest reference, the repository must match).
20884f
20884f
  The `prefix` and `signedPrefix` values can be either host[:port] values
20884f
  (matching exactly the same host[:port], string),
20884f
  repository namespaces, or repositories (i.e. they must not contain tags/digests),
20884f
  and match as prefixes *of the fully expanded form*.
20884f
  For example, `docker.io/library/busybox` (*not* `busybox`) to specify that single repository,
20884f
  or `docker.io/library` (not an empty string) to specify the parent namespace of `docker.io/library/busybox`==`busybox`).
20884f
20884f
  The `prefix` value is usually the same as the scope containing the parent `signedBy` requirement.
20884f
20884f
  ```js
20884f
  {
20884f
      "type": "remapIdentity",
20884f
      "prefix": prefix,
20884f
      "signedPrefix": prefix,
20884f
  }
20884f
  ```
20884f
20884f
If the `signedIdentity` field is missing, it is treated as `matchRepoDigestOrExact`.
20884f
20884f
*Note*: `matchExact`, `matchRepoDigestOrExact` and `matchRepository` can be only used if a Docker-like image identity is
20884f
provided by the transport.  In particular, the `dir:` and `oci:` transports can be only
20884f
used with `exactReference` or `exactRepository`.
20884f
20884f
20884f
20884f
## Examples
20884f
20884f
It is *strongly* recommended to set the `default` policy to `reject`, and then
20884f
selectively allow individual transports and scopes as desired.
20884f
20884f
### A reasonably locked-down system
20884f
20884f
(Note that the `/*`…`*/` comments are not valid in JSON, and must not be used in real policies.)
20884f
20884f
```js
20884f
{
20884f
    "default": [{"type": "reject"}], /* Reject anything not explicitly allowed */
20884f
    "transports": {
20884f
        "docker": {
20884f
            /* Allow installing images from a specific repository namespace, without cryptographic verification.
20884f
               This namespace includes images like openshift/hello-openshift and openshift/origin. */
20884f
            "docker.io/openshift": [{"type": "insecureAcceptAnything"}],
20884f
            /* Similarly, allow installing the “official” busybox images.  Note how the fully expanded
20884f
               form, with the explicit /library/, must be used. */
20884f
            "docker.io/library/busybox": [{"type": "insecureAcceptAnything"}]
20884f
            /* Allow installing images from all subdomains */
20884f
            "*.temporary-project.example.com": [{"type": "insecureAcceptAnything"}]
20884f
            /* Other docker: images use the global default policy and are rejected */
20884f
        },
20884f
        "dir": {
20884f
            "": [{"type": "insecureAcceptAnything"}] /* Allow any images originating in local directories */
20884f
        },
20884f
        "atomic": {
20884f
            /* The common case: using a known key for a repository or set of repositories */
20884f
            "hostname:5000/myns/official": [
20884f
                {
20884f
                    "type": "signedBy",
20884f
                    "keyType": "GPGKeys",
20884f
                    "keyPath": "/path/to/official-pubkey.gpg"
20884f
                }
20884f
            ],
20884f
            /* A more complex example, for a repository which contains a mirror of a third-party product,
20884f
               which must be signed-off by local IT */
20884f
            "hostname:5000/vendor/product": [
20884f
                { /* Require the image to be signed by the original vendor, using the vendor's repository location. */
20884f
                    "type": "signedBy",
20884f
                    "keyType": "GPGKeys",
20884f
                    "keyPath": "/path/to/vendor-pubkey.gpg",
20884f
                    "signedIdentity": {
20884f
                        "type": "exactRepository",
20884f
                        "dockerRepository": "vendor-hostname/product/repository"
20884f
                    }
20884f
                },
20884f
                { /* Require the image to _also_ be signed by a local reviewer. */
20884f
                    "type": "signedBy",
20884f
                    "keyType": "GPGKeys",
20884f
                    "keyPath": "/path/to/reviewer-pubkey.gpg"
20884f
                }
20884f
            ],
20884f
            /* A way to mirror many repositories from a single vendor */
20884f
            "private-mirror:5000/vendor-mirror": [
20884f
                { /* Require the image to be signed by the original vendor, using the vendor's repository location.
20884f
                     For example, private-mirror:5000/vendor-mirror/productA/image1:latest needs to be signed as
20884f
                     vendor.example/productA/image1:latest . */
20884f
                    "type": "signedBy",
20884f
                    "keyType": "GPGKeys",
20884f
                    "keyPath": "/path/to/vendor-pubkey.gpg",
20884f
                    "signedIdentity": {
20884f
                        "type": "remapIdentity",
20884f
                        "prefix": "private-mirror:5000/vendor-mirror",
20884f
                        "signedPrefix": "vendor.example.com",
20884f
                    }
20884f
                }
20884f
            ]
20884f
        }
20884f
    }
20884f
}
20884f
```
20884f
20884f
### Completely disable security, allow all images, do not trust any signatures
20884f
20884f
```json
20884f
{
20884f
    "default": [{"type": "insecureAcceptAnything"}]
20884f
}
20884f
```
20884f
## SEE ALSO
20884f
  atomic(1)
20884f
20884f
## HISTORY
20884f
August 2018, Rename to containers-policy.json(5) by Valentin Rothberg <vrothberg@suse.com>
20884f
20884f
September 2016, Originally compiled by Miloslav Trmač <mitr@redhat.com>