summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFraser Tweedale <ftweedal@redhat.com>2015-08-13 01:42:06 -0400
committerJan Cholasta <jcholast@redhat.com>2015-08-19 12:31:03 +0200
commit02969d09d868907c6d2d5b2aee3089f2f5540dda (patch)
tree21e03bb9f66db8a212465bba1fbf633da2397953
parent556e97bf23657cb11d93c7d8a37b5ed4840fdb7a (diff)
downloadfreeipa-02969d09d868907c6d2d5b2aee3089f2f5540dda.tar.gz
freeipa-02969d09d868907c6d2d5b2aee3089f2f5540dda.tar.xz
freeipa-02969d09d868907c6d2d5b2aee3089f2f5540dda.zip
cert-request: remove allowed extensions check
cert-request currently permits a limited number of request extensions; uncommon and esoteric extensions are prohibited and this limits the usefulness of custom profiles. The Dogtag profile has total control over what goes into the final certificate and has the option to reject request based on the request extensions present or their values, so there is little reason to restrict what extensions can be used in FreeIPA. Remove the check. Fixes: https://fedorahosted.org/freeipa/ticket/5205 Reviewed-By: Jan Cholasta <jcholast@redhat.com>
-rw-r--r--ipalib/plugins/cert.py22
1 files changed, 3 insertions, 19 deletions
diff --git a/ipalib/plugins/cert.py b/ipalib/plugins/cert.py
index 399d90b11..1fd5fb67f 100644
--- a/ipalib/plugins/cert.py
+++ b/ipalib/plugins/cert.py
@@ -306,15 +306,6 @@ class cert_request(VirtualCommand):
),
)
- _allowed_extensions = {
- '2.5.29.14': None, # Subject Key Identifier
- '2.5.29.15': None, # Key Usage
- '2.5.29.17': 'request certificate with subjectaltname',
- '2.5.29.19': None, # Basic Constraints
- '2.5.29.37': None, # Extended Key Usage
- '1.2.840.10070.8.1': None, # IECUserRoles (DNP3 / IEC 62351-8)
- }
-
def execute(self, csr, **kw):
ca_enabled_check()
@@ -376,12 +367,10 @@ class cert_request(VirtualCommand):
raise errors.CertificateOperationError(
error=_("Failure decoding Certificate Signing Request: %s") % e)
- # host principals may bypass allowed ext check
+ # self-service and host principals may bypass SAN permission check
if bind_principal != principal and bind_principal_type != HOST:
- for ext in extensions:
- operation = self._allowed_extensions.get(ext)
- if operation:
- self.check_access(operation)
+ if '2.5.29.17' in extensions:
+ self.check_access('request certificate with subjectaltname')
dn = None
principal_obj = None
@@ -433,11 +422,6 @@ class cert_request(VirtualCommand):
"any of user's email addresses")
)
- for ext in extensions:
- if ext not in self._allowed_extensions:
- raise errors.ValidationError(
- name='csr', error=_("extension %s is forbidden") % ext)
-
# We got this far so the principal entry exists, can we write it?
if not ldap.can_write(dn, "usercertificate"):
raise errors.ACIError(info=_("Insufficient 'write' privilege "