Story #4664
closedAs a user, I can use a RHSMCertGuard
100%
Description
NOTE¶
Pulp is blocked on merging any work creating this certguard until python-rhsm is installable on Travis' Debian environment.
Problem¶
Katello uses Pulp with RHSM based certificates. Pulp3 needs to protect content and validate a client's access when they present this type of a certificate.
What is a RHSM Certificate?¶
It's an X.509 certificates that use encoding and compression techniques to compress the data in a format RHSM understands. There are two formats:
- V1 which uses repo paths in plaintext inside the extended X.509 attributes. The
- V3 which encodes and compresses the pathing data into the X.509 cert. This version was developed as a workaround to not being able to specify enough urls in the V1 cert before hitting the maximums of X.509 data extension limits. The V3 format was called a OID Certificate in Pulp2.
Solution¶
A new certguard will be added to the pulp-certguard project called RHSMCertGuard.
What versions will it support V1, V3, both?¶
Both V1 and V3 will be supported. The user can use either and does not have to indicate which they are using. python-RHSM will "do the right thing".
What crypto libraries will handle this RHSMCertGuard?¶
The python-rhsm library that would be an optional dependency of pulp-certguard is in charge of the crypto entirely. Pulp will present the cert data and ask python-RHSM if its valid for a given path being requested. This is similar to how it worked in Pulp2: https://github.com/pulp/pulp/blob/e5a22e13ae46fe86dccedc5bf214537c2b90ad0d/oid_validation/pulp/oid_validation/oid_validation.py#L20
Where will python-rhsm come from?¶
It has C components so bcourt from the Candlepin team indicated they are only able to have this dependency delivered via system packagers. So not PyPI installs of python-rhsm as a dependency won't work.
It is available for Fedora, CentOS, and RHEL already via their package managers already. It is not available via Debian's package manager.
How will this be tested?¶
We'll add additional functional tests for this certguard type next to the existing functional tests Test planning will happen over on issue 4363
How will this work with CI?¶
We'll CI it the same as we CI the existing pulp-certguard plugin using funcitonal tests and via Travis running them with each merge, nightly, and at release time.
Pulp is blocked on merging any work creating this certguard until python-rhsm is installable on Travis' Debian environment.
Related issues
Problem: Plugins cannot modify the pulp-content containers easily because there are 2 of them.
Solution: Use only 1 pulp-content pod.
We can make their # configurable if there is a need in the future.
Fixes: #6422 Plugins cannot modify the CI pulp-content containers easily because there are 2 of them https://pulp.plan.io/issues/6422
re: #4664 As a user, I can use a RHSMCertGuard https://pulp.plan.io/issues/4664