Task #8435
closedTask #7960: FIPS and support for ALLOWED_CONTENT_CHECKSUMS
Remove checksum filtering in Remote.get_downloader and add checksum type enforcement to downloaders itself
100%
Description
Current behavior¶
-
The downloaders don't have any capability to only use those checksums that are in
ALLOWED_CONTENT_CHECKSUMS
. This usage happens here. -
The
Remote.get_downloader
will filter out the checksums on an Artifact to only those that are allowed. That happens here. -
The
DeclarativeArtifact.download
also filters checksums. That occurs here.
The First Issue¶
(1) is an issue because the downloaders can be used directly and as-is they won't respect the ALLOWED_CONTENT_CHECKSUMS
feature.
Solution to the first Issue¶
The downloader code should be adjusted to only use those checksums in ALLOWED_CONTENT_CHECKSUMS
. If any checksums are specified (trusted or not), at least one trusted hasher must be available or an exception should be raised. If no checksums are requested the downloader should be allowed to proceed because some content does not have checksums, e.g. the very first metadata file fetched, or ruby content.
The second problem¶
By (2)(3) filtering out checksums, it could misrepresent the set of checksums to the downloader as being an empty set when really checksums exist but no trusted checksums exist.
Solution to the second problem¶
Remove the filtering done in Remove.get_downloader
and DeclarativeArtiface.download
. Instead have it pass all original checksums unmodified to the downloader.
Updated by bmbouter over 3 years ago
- Subject changed from Remove checksum filtering that happens prior to checksums being passed to downloaders to Remove checksum filtering in Remote.get_downloader and add checksum type enforcement to downloaders itself
Updated by daviddavis over 3 years ago
- Tracker changed from Issue to Task
- % Done set to 0
- Severity deleted (
2. Medium) - Triaged deleted (
No) - Groomed changed from No to Yes
- Sprint Candidate changed from No to Yes
- Sprint set to Sprint 93
Updated by ipanova@redhat.com over 3 years ago
- Status changed from NEW to ASSIGNED
- Assignee set to ipanova@redhat.com
Updated by pulpbot over 3 years ago
- Status changed from ASSIGNED to POST
Added by ipanova@redhat.com over 3 years ago
Updated by ipanova@redhat.com over 3 years ago
- Status changed from POST to MODIFIED
- % Done changed from 0 to 100
Applied in changeset pulpcore|0ab6e8c108f31a3691d0b07d50fa258a46174994.
Updated by pulpbot over 3 years ago
- Status changed from MODIFIED to CLOSED - CURRENTRELEASE
Added checksum type enforcement to the BaseDownloader.
closes #8435