Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# Authors: # Andrew Wnuk <awnuk@redhat.com> # Jason Gerard DeRose <jderose@redhat.com> # John Dennis <jdennis@redhat.com> # # Copyright (C) 2009 Red Hat # see file 'COPYING' for use and warranty information # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>.
# In this case, abort loading this plugin module... raise SkipPluginModule(reason='env.enable_ra is not True')
IPA certificate operations
Implements a set of commands for managing server SSL certificates.
Certificate requests exist in the form of a Certificate Signing Request (CSR) in PEM format.
If using the selfsign back end then the subject in the CSR needs to match the subject configured in the server. The dogtag CA uses just the CN value of the CSR and forces the rest of the subject.
A certificate is stored with a service principal and a service principal needs a host.
In order to request a certificate:
* The host must exist * The service must exist (or you use the --add option to automatically add it)
EXAMPLES:
Request a new certificate and add the principal: ipa cert-request --add --principal=HTTP/lion.example.com example.csr
Retrieve an existing certificate: ipa cert-show 1032
Revoke a certificate (see RFC 5280 for reason details): ipa cert-revoke --revocation-reason=6 1032
Remove a certificate from revocation hold status: ipa cert-remove-hold 1032
Check the status of a signing request: ipa cert-status 10
IPA currently immediately issues (or declines) all certificate requests so the status of a request is not normally useful. This is for future use or the case where a CA does not immediately issue a certificate.
The following revocation reasons are supported:
* 0 - unspecified * 1 - keyCompromise * 2 - cACompromise * 3 - affiliationChanged * 4 - superseded * 5 - cessationOfOperation * 6 - certificateHold * 8 - removeFromCRL * 9 - privilegeWithdrawn * 10 - aACompromise
Note that reason code 7 is not used. See RFC 5280 for more details:
http://www.ietf.org/rfc/rfc5280.txt
""")
""" Return the value of CN in the subject of the request or None """ except NSPRError, nsprerr: raise errors.CertificateOperationError(error=_('Failure decoding Certificate Signing Request:'))
""" Return the first value of the subject alt name, if any """ try: request = pkcs10.load_certificate_request(csr) for extension in request.extensions: if extension.oid_tag == nss.SEC_OID_X509_SUBJECT_ALT_NAME: return nss.x509_alt_name(extension.value)[0] return None except NSPRError, nsprerr: raise errors.CertificateOperationError(error=_('Failure decoding Certificate Signing Request'))
""" Ensure the CSR is base64-encoded and can be decoded by our PKCS#10 parser. """ # If we are passed in a pointer to a valid file on the client side # escape and let the load_files() handle things return except TypeError, e: raise errors.Base64DecodeError(reason=str(e)) except NSPRError: raise errors.CertificateOperationError(error=_('Failure decoding Certificate Signing Request')) except Exception, e: raise errors.CertificateOperationError(error=_('Failure decoding Certificate Signing Request: %s') % str(e))
""" Strip any leading and trailing cruft around the BEGIN/END block """ s = csr.find('-----BEGIN CERTIFICATE REQUEST-----') e = csr.find('-----END CERTIFICATE REQUEST-----') if e != -1: end_len = 33
# We're normalizing here, not validating
""" Convert a SN given in decimal or hexadecimal. Returns the number or None if conversion fails. """ # plain decimal or hexa with radix prefix except ValueError: try: # hexa without prefix num = int(num, 16) except ValueError: num = None
return u"Decimal or hexadecimal number is required for serial number"
# It's been already validated
""" Given a principal with or without a realm return the host portion. """ validate_principal(None, principal) realm = principal.find('@') slash = principal.find('/') if realm == -1: realm = len(principal) hostname = principal[slash+1:realm]
return hostname
File('csr', validate_csr, label=_('CSR'), cli_name='csr_file', normalizer=normalize_csr, ), )
Str('principal', label=_('Principal'), doc=_('Service principal for this certificate (e.g. HTTP/test.example.com)'), ), Str('request_type', default=u'pkcs10', autofill=True, ), Flag('add', doc=_("automatically add the principal if it doesn't exist"), default=False, autofill=True ), )
Str('certificate', label=_('Certificate'), ), Str('subject', label=_('Subject'), ), Str('issuer', label=_('Issuer'), ), Str('valid_not_before', label=_('Not Before'), ), Str('valid_not_after', label=_('Not After'), ), Str('md5_fingerprint', label=_('Fingerprint (MD5)'), ), Str('sha1_fingerprint', label=_('Fingerprint (SHA1)'), ), Str('serial_number', label=_('Serial number'), ), Str('serial_number_hex', label=_('Serial number (hex)'), ), )
Output('result', type=dict, doc=_('Dictionary mapping variable name to value'), ), )
""" Access control is partially handled by the ACI titled 'Hosts can modify service userCertificate'. This is for the case where a machine binds using a host/ prinicpal. It can only do the request if the target hostname is in the managedBy attribute which is managed using the add/del member commands.
Binding with a user principal one needs to be in the request_certs taskgroup (directly or indirectly via role membership). """
# Can this user request certs?
# FIXME: add support for subject alt name
# Ensure that the hostname in the CSR matches the principal raise errors.ACIError( info=_("hostname in subject of request '%(subject_host)s' " "does not match principal hostname '%(hostname)s'") % dict( subject_host=subject_host, hostname=hostname))
# See if the service exists and punt if it doesn't and we aren't # going to add it else: hostname = get_host_from_principal(principal) service = api.Command['host_show'](hostname, all=True, raw=True)['result'] dn = service['dn'] "this request doesn't exist.")) except errors.ACIError: raise errors.ACIError(info=_('You need to be a member of ' 'the serviceadmin role to add services'))
# We got this far so the service entry exists, can we write it? raise errors.ACIError(info=_("Insufficient 'write' privilege " "to the 'userCertificate' attribute of entry '%s'.") % dn)
# Validate the subject alt name, if any for name in subjectaltname: try: hostentry = api.Command['host_show'](name, all=True, raw=True)['result'] hostdn = hostentry['dn'] except errors.NotFound: # We don't want to issue any certificates referencing # machines we don't know about. Nothing is stored in this # host record related to this certificate. raise errors.NotFound(reason=_('no host record for ' 'subject alt name %s in certificate request') % name) authprincipal = getattr(context, 'principal') if authprincipal.startswith("host/"): if not hostdn in service.get('managedby', []): raise errors.ACIError(info=_( "Insufficient privilege to create a certificate " "with subject alt name '%s'.") % name)
# revoke the certificate and remove it from the service # entry before proceeding. First we retrieve the certificate to # see if it is already revoked, if not then we revoke it. except errors.NotImplementedError: # some CA's might not implement revoke pass except errors.NotImplementedError: # some CA's might not implement get pass else: hostname = get_host_from_principal(principal) api.Command['host_mod'](hostname, usercertificate=None)
# Request the certificate
# Success? Then add it to the service entry. else: hostname = get_host_from_principal(principal) skw = {"usercertificate": str(result.get('certificate'))} api.Command['host_mod'](hostname, **skw)
result=result )
Str('request_id', label=_('Request id'), flags=['no_create', 'no_update', 'no_search'], ), ) Str('cert_request_status', label=_('Request status'), ), )
self.check_access() return dict( result=self.Backend.ra.check_request_status(request_id) )
validate_serial_number, label=_('Serial number'), doc=_('Serial number in decimal or if prefixed with 0x in hexadecimal'), normalizer=normalize_serial_number, )
Str('certificate', label=_('Certificate'), ), Str('subject', label=_('Subject'), ), Str('issuer', label=_('Issuer'), ), Str('valid_not_before', label=_('Not Before'), ), Str('valid_not_after', label=_('Not After'), ), Str('md5_fingerprint', label=_('Fingerprint (MD5)'), ), Str('sha1_fingerprint', label=_('Fingerprint (SHA1)'), ), Str('revocation_reason', label=_('Revocation reason'), ), Str('serial_number_hex', label=_('Serial number (hex)'), ), )
Str('out?', label=_('Output filename'), doc=_('File to store the certificate in.'), exclude='webui', ), )
except errors.ACIError, acierr: self.debug("Not granted by ACI to retrieve certificate, looking at principal") bind_principal = getattr(context, 'principal') if not bind_principal.startswith('host/'): raise acierr hostname = get_host_from_principal(bind_principal)
# If we have a hostname we want to verify that the subject # of the certificate matches it, otherwise raise an error if hostname != cert.subject.common_name: #pylint: disable=E1101 raise acierr
if 'out' in options: util.check_writable_file(options['out']) result = super(cert_show, self).forward(*keys, **options) if 'certificate' in result['result']: x509.write_certificate(result['result']['certificate'], options['out']) return result else: raise errors.NoCertificateError(entry=keys[-1]) else: return super(cert_show, self).forward(*keys, **options)
Flag('revoked', label=_('Revoked'), ), )
# FIXME: The default is 0. Is this really an Int param? Int('revocation_reason', label=_('Reason'), doc=_('Reason for revoking the certificate (0-10)'), minvalue=0, maxvalue=10, default=0, autofill=True ), )
except errors.ACIError, acierr: self.debug("Not granted by ACI to revoke certificate, looking at principal") try: # Let cert_show() handle verifying that the subject of the # cert we're dealing with matches the hostname in the principal result = api.Command['cert_show'](unicode(serial_number))['result'] except errors.NotImplementedError: pass raise errors.CertificateOperationError(error=_('7 is not a valid revocation reason')) result=self.Backend.ra.revoke_certificate(serial_number, **kw) )
Flag('unrevoked', label=_('Unrevoked'), ), Str('error_string', label=_('Error'), ), )
self.check_access() return dict( result=self.Backend.ra.take_certificate_off_hold(serial_number) )
|