mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-11 08:41:55 -06:00
cert-request: accept CSRs with extraneous data
The cert-request command used to accept CSRs that had extra data surrounding the PEM data, e.g. commentary about the contents of the CSR. Recent commits that switch to using python-cryptography for cert and CSR handling broke this. Our acceptance tests use such CSRs, hence the tests are now failing. To avoid the issue, freshly encode the python-cryptography CertificateSigningRequest object as PEM. This avoids re-using the user-supplied data, in case it has extraneous data. Fixes: https://fedorahosted.org/freeipa/ticket/6472 Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
This commit is contained in:
parent
f183f70e01
commit
e1df2e0792
@ -26,7 +26,7 @@ import cryptography.x509
|
|||||||
|
|
||||||
def strip_header(csr):
|
def strip_header(csr):
|
||||||
"""
|
"""
|
||||||
Remove the header and footer from a CSR.
|
Remove the header and footer (and surrounding material) from a CSR.
|
||||||
"""
|
"""
|
||||||
headerlen = 40
|
headerlen = 40
|
||||||
s = csr.find("-----BEGIN NEW CERTIFICATE REQUEST-----")
|
s = csr.find("-----BEGIN NEW CERTIFICATE REQUEST-----")
|
||||||
|
@ -26,7 +26,7 @@ from operator import attrgetter
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
import cryptography.x509
|
import cryptography.x509
|
||||||
from cryptography.hazmat.primitives import hashes
|
from cryptography.hazmat.primitives import hashes, serialization
|
||||||
import six
|
import six
|
||||||
|
|
||||||
from ipalib import Command, Str, Int, Flag
|
from ipalib import Command, Str, Int, Flag
|
||||||
@ -750,8 +750,11 @@ class cert_request(Create, BaseCertMethod, VirtualCommand):
|
|||||||
|
|
||||||
# Request the certificate
|
# Request the certificate
|
||||||
try:
|
try:
|
||||||
|
# re-serialise to PEM, in case the user-supplied data has
|
||||||
|
# extraneous material that will cause Dogtag to freak out
|
||||||
|
csr_pem = csr_obj.public_bytes(serialization.Encoding.PEM)
|
||||||
result = self.Backend.ra.request_certificate(
|
result = self.Backend.ra.request_certificate(
|
||||||
csr, profile_id, ca_id, request_type=request_type)
|
csr_pem, profile_id, ca_id, request_type=request_type)
|
||||||
except errors.HTTPRequestError as e:
|
except errors.HTTPRequestError as e:
|
||||||
if e.status == 409: # pylint: disable=no-member
|
if e.status == 409: # pylint: disable=no-member
|
||||||
raise errors.CertificateOperationError(
|
raise errors.CertificateOperationError(
|
||||||
|
Loading…
Reference in New Issue
Block a user