From cae3e592305143941aac005628ccef5e1a1d58c6 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Oct 27 2017 16:52:37 +0000 Subject: Include the CA basic constraint in CSRs when renewing a CA The CSR generated by `ipa-cacert-manage renew --external-ca` did not include the CA basic constraint: X509v3 Basic Constraints: critical CA:TRUE Add a flag to certmonger::resubmit_request to specify that a CA is being requested. Note that this also sets pathlen to -1 which means an unlimited pathlen. Leave it up to the issuing CA to set this. https://pagure.io/freeipa/issue/7088 Reviewed-By: Florence Blanc-Renaud Reviewed-By: Florence Blanc-Renaud --- diff --git a/ipalib/install/certmonger.py b/ipalib/install/certmonger.py index c286996..d2b782d 100644 --- a/ipalib/install/certmonger.py +++ b/ipalib/install/certmonger.py @@ -519,16 +519,25 @@ def modify(request_id, ca=None, profile=None): request.obj_if.modify(update) -def resubmit_request(request_id, ca=None, profile=None): +def resubmit_request(request_id, ca=None, profile=None, is_ca=False): + """ + :param request_id: the certmonger numeric request ID + :param ca: the nickname for the certmonger CA, e.g. IPA or SelfSign + :param profile: the dogtag template profile to use, e.g. SubCA + :param is_ca: boolean that if True adds the CA basic constraint + """ request = _get_request({'nickname': request_id}) if request: - if ca or profile: + if ca or profile or is_ca: update = {} if ca is not None: cm = _certmonger() update['CA'] = cm.obj_if.find_ca_by_nickname(ca) if profile is not None: update['template-profile'] = profile + if is_ca: + update['template-is-ca'] = True + update['template-ca-path-length'] = -1 # no path length request.obj_if.modify(update) request.obj_if.resubmit() diff --git a/ipaserver/install/ipa_cacert_manage.py b/ipaserver/install/ipa_cacert_manage.py index fcbf091..9607620 100644 --- a/ipaserver/install/ipa_cacert_manage.py +++ b/ipaserver/install/ipa_cacert_manage.py @@ -310,7 +310,8 @@ class CACertManage(admintool.AdminTool): timeout = api.env.startup_timeout + 60 self.log.debug("resubmitting certmonger request '%s'", self.request_id) - certmonger.resubmit_request(self.request_id, ca=ca, profile=profile) + certmonger.resubmit_request(self.request_id, ca=ca, profile=profile, + is_ca=True) try: state = certmonger.wait_for_request(self.request_id, timeout) except RuntimeError: