mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 17:01:14 -06:00
49b36583a5
External CA signing is a 2-step process. You first have to run the IPA installer which will generate a CSR. You pass this CSR to your external CA and get back a cert. You then pass this cert and the CA cert and re-run the installer. The CSR is always written to /root/ipa.csr. A run would look like: # ipa-server-install --ca --external-ca -p password -a password -r EXAMPLE.COM -u dirsrv -n example.com --hostname=ipa.example.com -U [ sign cert request ] # ipa-server-install --ca --external-ca -p password -a password --external_cert_file=/tmp/rob.crt --external_ca_file=/tmp/cacert.crt -U -p password -a password -r EXAMPLE.COM -u dirsrv -n example.com --hostname=ipa.example.com This also abstracts out the RA backend plugin so the self-signed CA we create can be used in a running server. This means that the cert plugin can request certs (and nothing else). This should let us do online replica creation. To handle the self-signed CA the simple ca_serialno file now contains additional data so we don't have overlapping serial numbers in replicas. This isn't used yet. Currently the cert plugin will not work on self-signed replicas. One very important change for self-signed CAs is that the CA is no longer held in the DS database. It is now in the Apache database. Lots of general fixes were also made in ipaserver.install.certs including: - better handling when multiple CA certificates are in a single file - A temporary directory for request certs is not always created when the class is instantiated (you have to call setup_cert_request())
249 lines
7.6 KiB
Python
249 lines
7.6 KiB
Python
# Authors:
|
|
# Andrew Wnuk <awnuk@redhat.com>
|
|
# Jason Gerard DeRose <jderose@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; version 2 only
|
|
#
|
|
# 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, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
"""
|
|
Command plugins for IPA-RA certificate operations.
|
|
"""
|
|
|
|
from ipalib import api, SkipPluginModule
|
|
if api.env.enable_ra is not True:
|
|
# In this case, abort loading this plugin module...
|
|
raise SkipPluginModule(reason='env.enable_ra is not True')
|
|
from ipalib import Command, Str, Int, Bytes, Flag
|
|
from ipalib import errors
|
|
from ipalib.plugins.virtual import *
|
|
import base64
|
|
from OpenSSL import crypto
|
|
|
|
def get_serial(certificate):
|
|
"""
|
|
Given a certificate, return the serial number in that cert
|
|
|
|
In theory there should be only one cert per object so even if we get
|
|
passed in a list/tuple only return the first one.
|
|
"""
|
|
if type(certificate) in (list, tuple):
|
|
certificate = certificate[0]
|
|
try:
|
|
x509 = crypto.load_certificate(crypto.FILETYPE_ASN1, certificate)
|
|
serial = str(x509.get_serial_number())
|
|
except crypto.Error:
|
|
raise errors.GenericError(format='Unable to decode certificate in entry')
|
|
|
|
return serial
|
|
|
|
def validate_csr(ugettext, csr):
|
|
"""
|
|
For now just verify that it is properly base64-encoded.
|
|
"""
|
|
try:
|
|
base64.b64decode(csr)
|
|
except Exception, e:
|
|
raise errors.Base64DecodeError(reason=str(e))
|
|
|
|
|
|
class cert_request(VirtualCommand):
|
|
"""
|
|
Submit a certificate singing request.
|
|
"""
|
|
|
|
takes_args = (Str('csr', validate_csr),)
|
|
operation="request certificate"
|
|
|
|
takes_options = (
|
|
Str('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
|
|
),
|
|
)
|
|
|
|
def execute(self, csr, **kw):
|
|
super(cert_request, self).execute()
|
|
skw = {"all": True}
|
|
principal = kw.get('principal')
|
|
add = kw.get('add')
|
|
del kw['principal']
|
|
del kw['add']
|
|
service = None
|
|
|
|
# See if the service exists and punt if it doesn't and we aren't
|
|
# going to add it
|
|
try:
|
|
(dn, service) = api.Command['service_show'](principal, **skw)
|
|
if 'usercertificate' in service:
|
|
# FIXME, what to do here? Do we revoke the old cert?
|
|
raise errors.GenericError(format='entry already has a certificate, serial number %s' % get_serial(service['usercertificate']))
|
|
|
|
except errors.NotFound, e:
|
|
if not add:
|
|
raise errors.NotFound(reason="The service principal for this request doesn't exist.")
|
|
|
|
# Request the certificate
|
|
result = self.Backend.ra.request_certificate(csr, **kw)
|
|
|
|
# Success? Then add it to the service entry. We know that it
|
|
# either exists or we should add it.
|
|
if result.get('status') == '0':
|
|
if service is None:
|
|
service = api.Command['service_add'](principal, **{})
|
|
skw = {"usercertificate": str(result.get('certificate'))}
|
|
api.Command['service_mod'](principal, **skw)
|
|
|
|
return result
|
|
|
|
def output_for_cli(self, textui, result, *args, **kw):
|
|
if isinstance(result, dict) and len(result) > 0:
|
|
textui.print_entry(result, 0)
|
|
else:
|
|
textui.print_plain('Failed to submit a certificate request.')
|
|
|
|
def run(self, *args, **options):
|
|
"""
|
|
Dispatch to forward() and execute() to do work locally and on the
|
|
server.
|
|
"""
|
|
if self.env.in_server:
|
|
return self.execute(*args, **options)
|
|
|
|
# Client-side code
|
|
csr = args[0]
|
|
if csr[:7] == "file://":
|
|
file = csr[7:]
|
|
try:
|
|
f = open(file, "r")
|
|
csr = f.readlines()
|
|
f.close()
|
|
except IOError, err:
|
|
raise errors.ValidationError(name='csr', error=err[1])
|
|
csr = "".join(csr)
|
|
# We just want the CSR bits, make sure there is nothing else
|
|
s = csr.find("-----BEGIN NEW CERTIFICATE REQUEST-----")
|
|
e = csr.find("-----END NEW CERTIFICATE REQUEST-----")
|
|
if s >= 0:
|
|
csr = csr[s+40:e]
|
|
csr = csr.decode('UTF-8')
|
|
return self.forward(csr, **options)
|
|
|
|
api.register(cert_request)
|
|
|
|
|
|
class cert_status(VirtualCommand):
|
|
"""
|
|
Check status of a certificate signing request.
|
|
"""
|
|
|
|
takes_args = ('request_id')
|
|
operation = "certificate status"
|
|
|
|
|
|
def execute(self, request_id, **kw):
|
|
super(cert_status, self).execute()
|
|
return self.Backend.ra.check_request_status(request_id)
|
|
|
|
def output_for_cli(self, textui, result, *args, **kw):
|
|
if isinstance(result, dict) and len(result) > 0:
|
|
textui.print_entry(result, 0)
|
|
else:
|
|
textui.print_plain('Failed to retrieve a request status.')
|
|
|
|
api.register(cert_status)
|
|
|
|
|
|
class cert_get(VirtualCommand):
|
|
"""
|
|
Retrieve an existing certificate.
|
|
"""
|
|
|
|
takes_args = ('serial_number')
|
|
operation="retrieve certificate"
|
|
|
|
def execute(self, serial_number):
|
|
super(cert_get, self).execute()
|
|
return self.Backend.ra.get_certificate(serial_number)
|
|
|
|
def output_for_cli(self, textui, result, *args, **kw):
|
|
if isinstance(result, dict) and len(result) > 0:
|
|
textui.print_entry(result, 0)
|
|
else:
|
|
textui.print_plain('Failed to obtain a certificate.')
|
|
|
|
api.register(cert_get)
|
|
|
|
|
|
class cert_revoke(VirtualCommand):
|
|
"""
|
|
Revoke a certificate.
|
|
"""
|
|
|
|
takes_args = ('serial_number')
|
|
operation = "revoke certificate"
|
|
|
|
# FIXME: The default is 0. Is this really an Int param?
|
|
takes_options = (
|
|
Int('revocation_reason?',
|
|
doc='Reason for revoking the certificate (0-10)',
|
|
minvalue=0,
|
|
maxvalue=10,
|
|
default=0,
|
|
),
|
|
)
|
|
|
|
|
|
def execute(self, serial_number, **kw):
|
|
super(cert_revoke, self).execute()
|
|
return self.Backend.ra.revoke_certificate(serial_number, **kw)
|
|
|
|
def output_for_cli(self, textui, result, *args, **kw):
|
|
if isinstance(result, dict) and len(result) > 0:
|
|
textui.print_entry(result, 0)
|
|
else:
|
|
textui.print_plain('Failed to revoke a certificate.')
|
|
|
|
api.register(cert_revoke)
|
|
|
|
|
|
class cert_remove_hold(VirtualCommand):
|
|
"""
|
|
Take a revoked certificate off hold.
|
|
"""
|
|
|
|
takes_args = ('serial_number')
|
|
operation = "certificate remove hold"
|
|
|
|
def execute(self, serial_number, **kw):
|
|
super(cert_remove_hold, self).execute()
|
|
return self.Backend.ra.take_certificate_off_hold(serial_number)
|
|
|
|
def output_for_cli(self, textui, result, *args, **kw):
|
|
if isinstance(result, dict) and len(result) > 0:
|
|
textui.print_entry(result, 0)
|
|
else:
|
|
textui.print_plain('Failed to take a revoked certificate off hold.')
|
|
|
|
api.register(cert_remove_hold)
|