20884f
% container-signature(5) Container signature format
20884f
% Miloslav Trmač
20884f
% March 2017
20884f
20884f
# Container signature format
20884f
20884f
This document describes the format of container signatures,
20884f
as implemented by the `github.com/containers/image/signature` package.
20884f
20884f
Most users should be able to consume these signatures by using the `github.com/containers/image/signature` package
20884f
(preferably through the higher-level `signature.PolicyContext` interface)
20884f
without having to care about the details of the format described below.
20884f
This documentation exists primarily for maintainers of the package
20884f
and to allow independent reimplementations.
20884f
20884f
## High-level overview
20884f
20884f
The signature provides an end-to-end authenticated claim that a container image
20884f
has been approved by a specific party (e.g. the creator of the image as their work,
20884f
an automated build system as a result of an automated build,
20884f
a company IT department approving the image for production) under a specified _identity_
20884f
(e.g. an OS base image / specific application, with a specific version).
20884f
20884f
A container signature consists of a cryptographic signature which identifies
20884f
and authenticates who signed the image, and carries as a signed payload a JSON document.
20884f
The JSON document identifies the image being signed, claims a specific identity of the
20884f
image and if applicable, contains other information about the image.
20884f
20884f
The signatures do not modify the container image (the layers, configuration, manifest, …);
20884f
e.g. their presence does not change the manifest digest used to identify the image in
20884f
docker/distribution servers; rather, the signatures are associated with an immutable image.
20884f
An image can have any number of signatures so signature distribution systems SHOULD support
20884f
associating more than one signature with an image.
20884f
20884f
## The cryptographic signature
20884f
20884f
As distributed, the container signature is a blob which contains a cryptographic signature
20884f
in an industry-standard format, carrying a signed JSON payload (i.e. the blob contains both the
20884f
JSON document and a signature of the JSON document; it is not a “detached signature” with
20884f
independent blobs containing the JSON document and a cryptographic signature).
20884f
20884f
Currently the only defined cryptographic signature format is an OpenPGP signature (RFC 4880),
20884f
but others may be added in the future.  (The blob does not contain metadata identifying the
20884f
cryptographic signature format. It is expected that most formats are sufficiently self-describing
20884f
that this is not necessary and the configured expected public key provides another indication
20884f
of the expected cryptographic signature format. Such metadata may be added in the future for
20884f
newly added cryptographic signature formats, if necessary.)
20884f
20884f
Consumers of container signatures SHOULD verify the cryptographic signature
20884f
against one or more trusted public keys
20884f
(e.g. defined in a [policy.json signature verification policy file](containers-policy.json.5.md))
20884f
before parsing or processing the JSON payload in _any_ way,
20884f
in particular they SHOULD stop processing the container signature
20884f
if the cryptographic signature verification fails, without even starting to process the JSON payload.
20884f
20884f
(Consumers MAY extract identification of the signing key and other metadata from the cryptographic signature,
20884f
and the JSON payload, without verifying the signature, if the purpose is to allow managing the signature blobs,
20884f
e.g. to list the authors and image identities of signatures associated with a single container image;
20884f
if so, they SHOULD design the output of such processing to minimize the risk of users considering the output trusted
20884f
or in any way usable for making policy decisions about the image.)
20884f
20884f
### OpenPGP signature verification
20884f
20884f
When verifying a cryptographic signature in the OpenPGP format,
20884f
the consumer MUST verify at least the following aspects of the signature
20884f
(like the `github.com/containers/image/signature` package does):
20884f
20884f
- The blob MUST be a “Signed Message” as defined RFC 4880 section 11.3.
20884f
  (e.g. it MUST NOT be an unsigned “Literal Message”, or any other non-signature format).
20884f
- The signature MUST have been made by an expected key trusted for the purpose (and the specific container image).
20884f
- The signature MUST be correctly formed and pass the cryptographic validation.
20884f
- The signature MUST correctly authenticate the included JSON payload
20884f
  (in particular, the parsing of the JSON payload MUST NOT start before the complete payload has been cryptographically authenticated).
20884f
- The signature MUST NOT be expired.
20884f
20884f
The consumer SHOULD have tests for its verification code which verify that signatures failing any of the above are rejected.
20884f
20884f
## JSON processing and forward compatibility
20884f
20884f
The payload of the cryptographic signature is a JSON document (RFC 7159).
20884f
Consumers SHOULD parse it very strictly,
20884f
refusing any signature which violates the expected format (e.g. missing members, incorrect member types)
20884f
or can be interpreted ambiguously (e.g. a duplicated member in a JSON object).
20884f
20884f
Any violations of the JSON format or of other requirements in this document MAY be accepted if the JSON document can be recognized
20884f
to have been created by a known-incorrect implementation (see [`optional.creator`](#optionalcreator) below)
20884f
and if the semantics of the invalid document, as created by such an implementation, is clear.
20884f
20884f
The top-level value of the JSON document MUST be a JSON object with exactly two members, `critical` and `optional`,
20884f
each a JSON object.
20884f
20884f
The `critical` object MUST contain a `type` member identifying the document as a container signature
20884f
(as defined [below](#criticaltype))
20884f
and signature consumers MUST reject signatures which do not have this member or in which this member does not have the expected value.
20884f
20884f
To ensure forward compatibility (allowing older signature consumers to correctly
20884f
accept or reject signatures created at a later date, with possible extensions to this format),
20884f
consumers MUST reject the signature if the `critical` object, or _any_ of its subobjects,
20884f
contain _any_ member or data value which is unrecognized, unsupported, invalid, or in any other way unexpected.
20884f
At a minimum, this includes unrecognized members in a JSON object, or incorrect types of expected members.
20884f
20884f
For the same reason, consumers SHOULD accept any members with unrecognized names in the `optional` object,
20884f
and MAY accept signatures where the object member is recognized but unsupported, or the value of the member is unsupported.
20884f
Consumers still SHOULD reject signatures where a member of an `optional` object is supported but the value is recognized as invalid.
20884f
20884f
## JSON data format
20884f
20884f
An example of the full format follows, with detailed description below.
20884f
To reiterate, consumers of the signature SHOULD perform successful cryptographic verification,
20884f
and MUST reject unexpected data in the `critical` object, or in the top-level object, as described above.
20884f
20884f
```json
20884f
{
20884f
    "critical": {
20884f
        "type": "atomic container signature",
20884f
        "image": {
20884f
            "docker-manifest-digest": "sha256:817a12c32a39bbe394944ba49de563e085f1d3c5266eb8e9723256bc4448680e"
20884f
        },
20884f
        "identity": {
20884f
            "docker-reference": "docker.io/library/busybox:latest"
20884f
        }
20884f
    },
20884f
    "optional": {
20884f
        "creator": "some software package v1.0.1-35",
20884f
        "timestamp": 1483228800,
20884f
    }
20884f
}
20884f
```
20884f
20884f
### `critical`
20884f
20884f
This MUST be a JSON object which contains data critical to correctly evaluating the validity of a signature.
20884f
20884f
Consumers MUST reject any signature where the `critical` object contains any unrecognized, unsupported, invalid or in any other way unexpected member or data.
20884f
20884f
### `critical.type`
20884f
20884f
This MUST be a string with a string value exactly equal to `atomic container signature` (three words, including the spaces).
20884f
20884f
Signature consumers MUST reject signatures which do not have this member or this member does not have exactly the expected value.
20884f
20884f
(The consumers MAY support signatures with a different value of the `type` member, if any is defined in the future;
20884f
if so, the rest of the JSON document is interpreted according to rules defining that value of `critical.type`,
20884f
not by this document.)
20884f
20884f
### `critical.image`
20884f
20884f
This MUST be a JSON object which identifies the container image this signature applies to.
20884f
20884f
Consumers MUST reject any signature where the `critical.image` object contains any unrecognized, unsupported, invalid or in any other way unexpected member or data.
20884f
20884f
(Currently only the `docker-manifest-digest` way of identifying a container image is defined;
20884f
alternatives to this may be defined in the future,
20884f
but existing consumers are required to reject signatures which use formats they do not support.)
20884f
20884f
### `critical.image.docker-manifest-digest`
20884f
20884f
This MUST be a JSON string, in the `github.com/opencontainers/go-digest.Digest` string format.
20884f
20884f
The value of this member MUST match the manifest of the signed container image, as implemented in the docker/distribution manifest addressing system.
20884f
20884f
The consumer of the signature SHOULD verify the manifest digest against a fully verified signature before processing the contents of the image manifest in any other way
20884f
(e.g. parsing the manifest further or downloading layers of the image).
20884f
20884f
Implementation notes:
20884f
* A single container image manifest may have several valid manifest digest values, using different algorithms.
20884f
* For “signed” [docker/distribution schema 1](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-1.md) manifests,
20884f
the manifest digest applies to the payload of the JSON web signature, not to the raw manifest blob.
20884f
20884f
### `critical.identity`
20884f
20884f
This MUST be a JSON object which identifies the claimed identity of the image (usually the purpose of the image, or the application, along with a version information),
20884f
as asserted by the author of the signature.
20884f
20884f
Consumers MUST reject any signature where the `critical.identity` object contains any unrecognized, unsupported, invalid or in any other way unexpected member or data.
20884f
20884f
(Currently only the `docker-reference` way of claiming an image identity/purpose is defined;
20884f
alternatives to this may be defined in the future,
20884f
but existing consumers are required to reject signatures which use formats they do not support.)
20884f
20884f
### `critical.identity.docker-reference`
20884f
20884f
This MUST be a JSON string, in the `github.com/docker/distribution/reference` string format,
20884f
and using the same normalization semantics (where e.g. `busybox:latest` is equivalent to `docker.io/library/busybox:latest`).
20884f
If the normalization semantics allows multiple string representations of the claimed identity with equivalent meaning,
20884f
the `critical.identity.docker-reference` member SHOULD use the fully explicit form (including the full host name and namespaces).
20884f
20884f
The value of this member MUST match the image identity/purpose expected by the consumer of the image signature and the image
20884f
(again, accounting for the `docker/distribution/reference` normalization semantics).
20884f
20884f
In the most common case, this means that the `critical.identity.docker-reference` value must be equal to the docker/distribution reference used to refer to or download the image.
20884f
However, depending on the specific application, users or system administrators may accept less specific matches
20884f
(e.g. ignoring the tag value in the signature when pulling the `:latest` tag or when referencing an image by digest),
20884f
or they may require `critical.identity.docker-reference` values with a completely different namespace to the reference used to refer to/download the image
20884f
(e.g. requiring a `critical.identity.docker-reference` value which identifies the image as coming from a supplier when fetching it from a company-internal mirror of approved images).
20884f
The software performing this verification SHOULD allow the users to define such a policy using the [policy.json signature verification policy file format](containers-policy.json.5.md).
20884f
20884f
The `critical.identity.docker-reference` value SHOULD contain either a tag or digest;
20884f
in most cases, it SHOULD use a tag rather than a digest.  (See also the default [`matchRepoDigestOrExact` matching semantics in `policy.json`](containers-policy.json.5.md#signedby).)
20884f
20884f
### `optional`
20884f
20884f
This MUST be a JSON object.
20884f
20884f
Consumers SHOULD accept any members with unrecognized names in the `optional` object,
20884f
and MAY accept a signature where the object member is recognized but unsupported, or the value of the member is valid but unsupported.
20884f
Consumers still SHOULD reject any signature where a member of an `optional` object is supported but the value is recognized as invalid.
20884f
20884f
### `optional.creator`
20884f
20884f
If present, this MUST be a JSON string, identifying the name and version of the software which has created the signature.
20884f
20884f
The contents of this string is not defined in detail; however each implementation creating container signatures:
20884f
20884f
- SHOULD define the contents to unambiguously define the software in practice (e.g. it SHOULD contain the name of the software, not only the version number)
20884f
- SHOULD use a build and versioning process which ensures that the contents of this string (e.g. an included version number)
20884f
  changes whenever the format or semantics of the generated signature changes in any way;
20884f
  it SHOULD not be possible for two implementations which use a different format or semantics to have the same `optional.creator` value
20884f
- SHOULD use a format which is reasonably easy to parse in software (perhaps using a regexp),
20884f
  and which makes it easy enough to recognize a range of versions of a specific implementation
20884f
  (e.g. the version of the implementation SHOULD NOT be only a git hash, because they don’t have an easily defined ordering;
20884f
  the string should contain a version number, or at least a date of the commit).
20884f
20884f
Consumers of container signatures MAY recognize specific values or sets of values of `optional.creator`
20884f
(perhaps augmented with `optional.timestamp`),
20884f
and MAY change their processing of the signature based on these values
20884f
(usually to accommodate violations of this specification in past versions of the signing software which cannot be fixed retroactively),
20884f
as long as the semantics of the invalid document, as created by such an implementation, is clear.
20884f
20884f
If consumers of signatures do change their behavior based on the `optional.creator` value,
20884f
they SHOULD take care that the way they process the signatures is not inconsistent with
20884f
strictly validating signature consumers.
20884f
(I.e. it is acceptable for a consumer to accept a signature based on a specific `optional.creator` value
20884f
if other implementations would completely reject the signature,
20884f
but it would be very undesirable for the two kinds of implementations to accept the signature in different
20884f
and inconsistent situations.)
20884f
20884f
### `optional.timestamp`
20884f
20884f
If present, this MUST be a JSON number, which is representable as a 64-bit integer, and identifies the time when the signature was created
20884f
as the number of seconds since the UNIX epoch (Jan 1 1970 00:00 UTC).