Overview

Example Usage

The presentation of the client certificate should be done using TLS so the client can prove it not only has the certificate but also the key for that certificate. This TLS connection terminates at the reverse proxy, e.g. Nginx or Apache, and the client certificate is then forwarded to the pulpcore-content app for Authorization checking. The forwarded certificate is expected to be delivered to pulpcore-content as a urlencoded version of the client certificate stored in the X-CLIENT-CERT HTTP header. Here’s a diagram of the call flow:

client <– TLS –> Nginx <– X-CLIENT-CERT header –> pulpcore-content

Note

The X-CLIENT-CERT header needs to be urlencoded because newline characters present in valid client certificates are not allowed in headers.

Authorization

Any client presenting an X.509 or RHSM based certificate at request time will be authorized if and only if the client cert is unexpired and signed by stored Certificate Authority Certificate stored on the Certguard when it was created.

This allows for a use case where multiple Certificate Authority Certificates can be used to allow some Pulp Distributions to be give access to some clients but not others depending on which CA Cert signed the client certificate. While that is useful, it can become unwieldy to have to also manage many CA Certificates. To resolve this an optional, additional authorization mechanism is available where paths to Pulp Distributions are contained in the certificate itself.

RHSM Certificate Path Based Authorization

Warning

At this time only the RHSM Cert Guard provides path based authorization.

RHSM Certificates allow for the embedding of Distribution.base_path within them. If they are present in a client certificate, in addition to the authorization requirements from above, the client is granted access if and only if the requested path is a subpath of a path contained in the client certificate.

For example if the RHSM Certificate contains Authorized URL:

Authorized Content URLs:
    /some/path/foo

Pulp would serve content from any protected Distribution with the following Distribution.base_path values:

some
some/path
some/path/foo

Pulp would not serve content from a protected Distribution with the following Distribution.base_path values:

another/path
some/path/bar

Note

The pulpcore-content app typically serves Distribution.base_path at a url starting with /pulp/content/. When performing path checking only the Distribution.base_path portion of the URL is checked.

Distribution.base_bath uses partial paths so it does not start with slash or end with one. The Authorized URLs on the other hand do start with a slash. The RHSM path authorization check code in pulp-certguard prepends a slash in front of the Distribution.base_path. This allows a Distribution.base_path of some/path to become /some/path which would match in RHSM against a certificate with either /some or /some/path.

RHSM vs X.509 Cert Guards

pulp_certguard has two types of Cert Guards, the X509CertGuard and the RHSMCertGuard. Both are X.509 certificates, but the X509CertGuard can be made using common openssl tools, while RHSM Certificates can only be made using python-rhsm.