2014-03-18 10:23:30 -05:00
|
|
|
# Authors: Ade Lee <alee@redhat.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014 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/>.
|
|
|
|
#
|
|
|
|
|
2017-05-23 11:35:57 -05:00
|
|
|
import logging
|
2014-03-18 10:23:30 -05:00
|
|
|
import os
|
|
|
|
import pwd
|
|
|
|
import shutil
|
|
|
|
import tempfile
|
2017-07-03 10:10:34 -05:00
|
|
|
import base64
|
2014-03-18 10:23:30 -05:00
|
|
|
|
2017-01-09 12:28:57 -06:00
|
|
|
import six
|
2016-08-24 06:37:30 -05:00
|
|
|
# pylint: disable=import-error
|
2017-05-25 07:18:11 -05:00
|
|
|
from six.moves.configparser import RawConfigParser
|
2016-08-24 06:37:30 -05:00
|
|
|
# pylint: enable=import-error
|
2015-09-14 07:03:58 -05:00
|
|
|
|
2014-03-18 10:23:30 -05:00
|
|
|
from ipalib import api
|
2015-08-26 23:44:29 -05:00
|
|
|
from ipalib import x509
|
2014-03-18 10:23:30 -05:00
|
|
|
from ipaplatform.paths import paths
|
|
|
|
from ipapython import ipautil
|
|
|
|
from ipapython.dn import DN
|
|
|
|
from ipaserver.install import cainstance
|
2015-08-26 23:44:29 -05:00
|
|
|
from ipaserver.install import installutils
|
2015-06-10 05:35:43 -05:00
|
|
|
from ipaserver.install import ldapupdate
|
2017-01-02 10:00:00 -06:00
|
|
|
from ipaserver.install.dogtaginstance import DogtagInstance
|
2015-08-26 23:44:29 -05:00
|
|
|
from ipaserver.plugins import ldap2
|
2017-05-23 11:35:57 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
2014-03-18 10:23:30 -05:00
|
|
|
|
|
|
|
# When IPA is installed with DNS support, this CNAME should hold all IPA
|
|
|
|
# replicas with KRA configured
|
|
|
|
IPA_KRA_RECORD = "ipa-kra"
|
|
|
|
|
2015-08-25 14:42:25 -05:00
|
|
|
ADMIN_GROUPS = [
|
|
|
|
'Enterprise CA Administrators',
|
|
|
|
'Enterprise KRA Administrators',
|
|
|
|
'Security Domain Administrators'
|
|
|
|
]
|
2014-03-18 10:23:30 -05:00
|
|
|
|
2015-11-19 07:33:49 -06:00
|
|
|
|
2014-03-18 10:23:30 -05:00
|
|
|
class KRAInstance(DogtagInstance):
|
|
|
|
"""
|
|
|
|
We assume that the CA has already been installed, and we use the
|
|
|
|
same tomcat instance to host both the CA and KRA.
|
|
|
|
The mod_nss database will contain the RA agent cert that will be used
|
|
|
|
to do authenticated requests against dogtag. The RA agent cert will
|
|
|
|
be the same for both the CA and KRA.
|
|
|
|
"""
|
|
|
|
|
2017-04-24 01:40:11 -05:00
|
|
|
tracking_reqs = ('auditSigningCert cert-pki-kra',
|
|
|
|
'transportCert cert-pki-kra',
|
|
|
|
'storageCert cert-pki-kra')
|
2014-10-07 09:46:15 -05:00
|
|
|
|
2015-11-09 11:28:47 -06:00
|
|
|
def __init__(self, realm):
|
2014-03-18 10:23:30 -05:00
|
|
|
super(KRAInstance, self).__init__(
|
|
|
|
realm=realm,
|
|
|
|
subsystem="KRA",
|
|
|
|
service_desc="KRA server",
|
2017-11-08 12:21:22 -06:00
|
|
|
config=paths.KRA_CS_CFG_PATH,
|
2014-03-18 10:23:30 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
self.basedn = DN(('o', 'kra'), ('o', 'ipaca'))
|
|
|
|
|
2015-08-25 12:38:05 -05:00
|
|
|
def configure_instance(self, realm_name, host_name, dm_password,
|
2015-11-09 11:28:47 -06:00
|
|
|
admin_password, pkcs12_info=None, master_host=None,
|
2016-11-16 04:49:36 -06:00
|
|
|
subject_base=None, subject=None,
|
2017-01-04 01:41:26 -06:00
|
|
|
promote=False):
|
2014-03-18 10:23:30 -05:00
|
|
|
"""Create a KRA instance.
|
|
|
|
|
|
|
|
To create a clone, pass in pkcs12_info.
|
|
|
|
"""
|
|
|
|
self.fqdn = host_name
|
|
|
|
self.dm_password = dm_password
|
2016-10-26 02:44:49 -05:00
|
|
|
self.admin_groups = ADMIN_GROUPS
|
2014-03-18 10:23:30 -05:00
|
|
|
self.admin_password = admin_password
|
|
|
|
self.pkcs12_info = pkcs12_info
|
2016-10-26 02:44:49 -05:00
|
|
|
if self.pkcs12_info is not None or promote:
|
2014-03-18 10:23:30 -05:00
|
|
|
self.clone = True
|
|
|
|
self.master_host = master_host
|
2016-11-16 04:39:23 -06:00
|
|
|
|
|
|
|
self.subject_base = \
|
|
|
|
subject_base or installutils.default_subject_base(realm_name)
|
2016-11-16 04:49:36 -06:00
|
|
|
self.subject = \
|
|
|
|
subject or installutils.default_ca_subject_dn(self.subject_base)
|
2016-11-16 04:39:23 -06:00
|
|
|
|
2015-06-10 05:35:43 -05:00
|
|
|
self.realm = realm_name
|
|
|
|
self.suffix = ipautil.realm_to_suffix(realm_name)
|
2014-03-18 10:23:30 -05:00
|
|
|
|
2017-01-04 01:41:26 -06:00
|
|
|
# Confirm that a KRA does not already exist
|
|
|
|
if self.is_installed():
|
|
|
|
raise RuntimeError(
|
|
|
|
"KRA already installed.")
|
|
|
|
# Confirm that a Dogtag 10 CA instance already exists
|
|
|
|
ca = cainstance.CAInstance(self.realm)
|
|
|
|
if not ca.is_installed():
|
|
|
|
raise RuntimeError(
|
|
|
|
"KRA configuration failed. "
|
|
|
|
"A Dogtag CA must be installed first")
|
|
|
|
|
|
|
|
if promote:
|
|
|
|
self.step("creating installation admin user", self.setup_admin)
|
|
|
|
self.step("configuring KRA instance", self.__spawn_instance)
|
|
|
|
if not self.clone:
|
|
|
|
self.step("create KRA agent",
|
|
|
|
self.__create_kra_agent)
|
|
|
|
if promote:
|
|
|
|
self.step("destroying installation admin user",
|
|
|
|
self.teardown_admin)
|
2017-09-27 16:45:38 -05:00
|
|
|
self.step("enabling ephemeral requests", self.enable_ephemeral)
|
2017-01-04 01:41:26 -06:00
|
|
|
self.step("restarting KRA", self.restart_instance)
|
|
|
|
self.step("configure certmonger for renewals",
|
|
|
|
self.configure_certmonger_renewal)
|
|
|
|
self.step("configure certificate renewals", self.configure_renewal)
|
|
|
|
self.step("configure HTTP to proxy connections",
|
|
|
|
self.http_proxy)
|
|
|
|
if not self.clone:
|
|
|
|
self.step("add vault container", self.__add_vault_container)
|
|
|
|
self.step("apply LDAP updates", self.__apply_updates)
|
|
|
|
|
|
|
|
self.step("enabling KRA instance", self.__enable_instance)
|
2016-10-26 02:44:49 -05:00
|
|
|
|
2017-02-14 09:55:11 -06:00
|
|
|
try:
|
2017-03-01 10:35:56 -06:00
|
|
|
self.start_creation(runtime=120)
|
2017-02-14 09:55:11 -06:00
|
|
|
finally:
|
|
|
|
self.clean_pkispawn_files()
|
2014-03-18 10:23:30 -05:00
|
|
|
|
|
|
|
def __spawn_instance(self):
|
|
|
|
"""
|
|
|
|
Create and configure a new KRA instance using pkispawn.
|
|
|
|
Creates a configuration file with IPA-specific
|
|
|
|
parameters and passes it to the base class to call pkispawn
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Create an empty and secured file
|
|
|
|
(cfg_fd, cfg_file) = tempfile.mkstemp()
|
|
|
|
os.close(cfg_fd)
|
2016-11-03 11:43:33 -05:00
|
|
|
pent = pwd.getpwnam(self.service_user)
|
2014-03-18 10:23:30 -05:00
|
|
|
os.chown(cfg_file, pent.pw_uid, pent.pw_gid)
|
2017-02-14 09:55:11 -06:00
|
|
|
self.tmp_agent_db = tempfile.mkdtemp(
|
|
|
|
prefix="tmp-", dir=paths.VAR_LIB_IPA)
|
2017-03-27 05:36:09 -05:00
|
|
|
tmp_agent_pwd = ipautil.ipa_generate_password()
|
2014-03-18 10:23:30 -05:00
|
|
|
|
2017-11-14 18:59:32 -06:00
|
|
|
# Create a temporary file for the admin PKCS #12 file
|
|
|
|
(admin_p12_fd, admin_p12_file) = tempfile.mkstemp()
|
|
|
|
os.close(admin_p12_fd)
|
|
|
|
|
2014-03-18 10:23:30 -05:00
|
|
|
# Create KRA configuration
|
2017-05-25 07:18:11 -05:00
|
|
|
config = RawConfigParser()
|
2014-03-18 10:23:30 -05:00
|
|
|
config.optionxform = str
|
|
|
|
config.add_section("KRA")
|
|
|
|
|
|
|
|
# Security Domain Authentication
|
|
|
|
config.set("KRA", "pki_security_domain_https_port", "443")
|
|
|
|
config.set("KRA", "pki_security_domain_password", self.admin_password)
|
2015-08-25 14:42:25 -05:00
|
|
|
config.set("KRA", "pki_security_domain_user", self.admin_user)
|
2014-03-18 10:23:30 -05:00
|
|
|
|
|
|
|
# issuing ca
|
|
|
|
config.set("KRA", "pki_issuing_ca_uri", "https://%s" %
|
|
|
|
ipautil.format_netloc(self.fqdn, 443))
|
|
|
|
|
|
|
|
# Server
|
|
|
|
config.set("KRA", "pki_enable_proxy", "True")
|
|
|
|
config.set("KRA", "pki_restart_configured_instance", "False")
|
|
|
|
config.set("KRA", "pki_backup_keys", "True")
|
|
|
|
config.set("KRA", "pki_backup_password", self.admin_password)
|
|
|
|
|
|
|
|
# Client security database
|
2017-02-14 09:55:11 -06:00
|
|
|
config.set("KRA", "pki_client_database_dir", self.tmp_agent_db)
|
2017-03-27 05:36:09 -05:00
|
|
|
config.set("KRA", "pki_client_database_password", tmp_agent_pwd)
|
2017-02-14 09:55:11 -06:00
|
|
|
config.set("KRA", "pki_client_database_purge", "True")
|
2014-03-18 10:23:30 -05:00
|
|
|
config.set("KRA", "pki_client_pkcs12_password", self.admin_password)
|
|
|
|
|
|
|
|
# Administrator
|
2015-08-25 14:42:25 -05:00
|
|
|
config.set("KRA", "pki_admin_name", self.admin_user)
|
|
|
|
config.set("KRA", "pki_admin_uid", self.admin_user)
|
2014-03-18 10:23:30 -05:00
|
|
|
config.set("KRA", "pki_admin_email", "root@localhost")
|
|
|
|
config.set("KRA", "pki_admin_password", self.admin_password)
|
|
|
|
config.set("KRA", "pki_admin_nickname", "ipa-ca-agent")
|
|
|
|
config.set("KRA", "pki_admin_subject_dn",
|
|
|
|
str(DN(('cn', 'ipa-ca-agent'), self.subject_base)))
|
2017-11-14 18:59:32 -06:00
|
|
|
config.set("KRA", "pki_import_admin_cert", "False")
|
|
|
|
config.set("KRA", "pki_client_admin_cert_p12", admin_p12_file)
|
2014-03-18 10:23:30 -05:00
|
|
|
|
|
|
|
# Directory server
|
2015-11-09 11:28:47 -06:00
|
|
|
config.set("KRA", "pki_ds_ldap_port", "389")
|
2014-03-18 10:23:30 -05:00
|
|
|
config.set("KRA", "pki_ds_password", self.dm_password)
|
2017-01-09 12:28:57 -06:00
|
|
|
config.set("KRA", "pki_ds_base_dn", six.text_type(self.basedn))
|
2014-03-18 10:23:30 -05:00
|
|
|
config.set("KRA", "pki_ds_database", "ipaca")
|
|
|
|
config.set("KRA", "pki_ds_create_new_db", "False")
|
|
|
|
|
2016-02-25 02:09:35 -06:00
|
|
|
self._use_ldaps_during_spawn(config)
|
|
|
|
|
2014-03-18 10:23:30 -05:00
|
|
|
# Certificate subject DNs
|
|
|
|
config.set("KRA", "pki_subsystem_subject_dn",
|
|
|
|
str(DN(('cn', 'CA Subsystem'), self.subject_base)))
|
2018-03-21 04:09:32 -05:00
|
|
|
config.set("KRA", "pki_sslserver_subject_dn",
|
2014-03-18 10:23:30 -05:00
|
|
|
str(DN(('cn', self.fqdn), self.subject_base)))
|
|
|
|
config.set("KRA", "pki_audit_signing_subject_dn",
|
|
|
|
str(DN(('cn', 'KRA Audit'), self.subject_base)))
|
|
|
|
config.set(
|
|
|
|
"KRA", "pki_transport_subject_dn",
|
|
|
|
str(DN(('cn', 'KRA Transport Certificate'), self.subject_base)))
|
|
|
|
config.set(
|
|
|
|
"KRA", "pki_storage_subject_dn",
|
|
|
|
str(DN(('cn', 'KRA Storage Certificate'), self.subject_base)))
|
|
|
|
|
|
|
|
# Certificate nicknames
|
|
|
|
# Note that both the server certs and subsystem certs reuse
|
|
|
|
# the ca certs.
|
|
|
|
config.set("KRA", "pki_subsystem_nickname",
|
|
|
|
"subsystemCert cert-pki-ca")
|
2018-03-21 04:09:32 -05:00
|
|
|
config.set("KRA", "pki_sslserver_nickname",
|
2014-03-18 10:23:30 -05:00
|
|
|
"Server-Cert cert-pki-ca")
|
|
|
|
config.set("KRA", "pki_audit_signing_nickname",
|
|
|
|
"auditSigningCert cert-pki-kra")
|
|
|
|
config.set("KRA", "pki_transport_nickname",
|
|
|
|
"transportCert cert-pki-kra")
|
|
|
|
config.set("KRA", "pki_storage_nickname",
|
|
|
|
"storageCert cert-pki-kra")
|
|
|
|
|
|
|
|
# Shared db settings
|
|
|
|
# Needed because CA and KRA share the same database
|
|
|
|
# We will use the dbuser created for the CA
|
|
|
|
config.set("KRA", "pki_share_db", "True")
|
|
|
|
config.set(
|
|
|
|
"KRA", "pki_share_dbuser_dn",
|
|
|
|
str(DN(('uid', 'pkidbuser'), ('ou', 'people'), ('o', 'ipaca'))))
|
|
|
|
|
2017-04-03 07:08:46 -05:00
|
|
|
if not (os.path.isdir(paths.PKI_TOMCAT_ALIAS_DIR) and
|
|
|
|
os.path.isfile(paths.PKI_TOMCAT_PASSWORD_CONF)):
|
|
|
|
# generate pin which we know can be used for FIPS NSS database
|
|
|
|
pki_pin = ipautil.ipa_generate_password()
|
|
|
|
config.set("KRA", "pki_pin", pki_pin)
|
|
|
|
else:
|
|
|
|
pki_pin = None
|
2017-03-28 06:54:16 -05:00
|
|
|
|
2014-03-18 10:23:30 -05:00
|
|
|
_p12_tmpfile_handle, p12_tmpfile_name = tempfile.mkstemp(dir=paths.TMP)
|
2015-11-23 06:43:53 -06:00
|
|
|
|
2014-03-18 10:23:30 -05:00
|
|
|
if self.clone:
|
|
|
|
krafile = self.pkcs12_info[0]
|
|
|
|
shutil.copy(krafile, p12_tmpfile_name)
|
2016-11-03 11:43:33 -05:00
|
|
|
pent = pwd.getpwnam(self.service_user)
|
2014-03-18 10:23:30 -05:00
|
|
|
os.chown(p12_tmpfile_name, pent.pw_uid, pent.pw_gid)
|
|
|
|
|
|
|
|
# Security domain registration
|
2017-05-11 07:53:09 -05:00
|
|
|
config.set("KRA", "pki_security_domain_hostname", self.fqdn)
|
2014-03-18 10:23:30 -05:00
|
|
|
config.set("KRA", "pki_security_domain_https_port", "443")
|
2015-08-25 14:42:25 -05:00
|
|
|
config.set("KRA", "pki_security_domain_user", self.admin_user)
|
2014-03-18 10:23:30 -05:00
|
|
|
config.set("KRA", "pki_security_domain_password",
|
|
|
|
self.admin_password)
|
|
|
|
|
|
|
|
# Clone
|
|
|
|
config.set("KRA", "pki_clone", "True")
|
|
|
|
config.set("KRA", "pki_clone_pkcs12_path", p12_tmpfile_name)
|
|
|
|
config.set("KRA", "pki_clone_pkcs12_password", self.dm_password)
|
|
|
|
config.set("KRA", "pki_clone_setup_replication", "False")
|
|
|
|
config.set(
|
|
|
|
"KRA", "pki_clone_uri",
|
|
|
|
"https://%s" % ipautil.format_netloc(self.master_host, 443))
|
2015-11-23 06:43:53 -06:00
|
|
|
else:
|
|
|
|
# the admin cert file is needed for the first instance of KRA
|
2017-07-03 10:10:34 -05:00
|
|
|
cert = self.get_admin_cert()
|
2017-01-24 09:55:07 -06:00
|
|
|
# First make sure that the directory exists
|
|
|
|
parentdir = os.path.dirname(paths.ADMIN_CERT_PATH)
|
|
|
|
if not os.path.exists(parentdir):
|
|
|
|
os.makedirs(parentdir)
|
2017-07-27 04:54:44 -05:00
|
|
|
with open(paths.ADMIN_CERT_PATH, "wb") as admin_path:
|
2017-07-03 10:10:34 -05:00
|
|
|
admin_path.write(
|
|
|
|
base64.b64encode(cert.public_bytes(x509.Encoding.DER))
|
|
|
|
)
|
2014-03-18 10:23:30 -05:00
|
|
|
|
|
|
|
# Generate configuration file
|
2017-01-10 06:33:41 -06:00
|
|
|
with open(cfg_file, "w") as f:
|
2014-03-18 10:23:30 -05:00
|
|
|
config.write(f)
|
|
|
|
|
|
|
|
try:
|
2016-11-10 07:24:26 -06:00
|
|
|
DogtagInstance.spawn_instance(
|
|
|
|
self, cfg_file,
|
2017-03-27 05:36:09 -05:00
|
|
|
nolog_list=(self.dm_password,
|
|
|
|
self.admin_password,
|
|
|
|
pki_pin,
|
|
|
|
tmp_agent_pwd)
|
2016-11-10 07:24:26 -06:00
|
|
|
)
|
2014-03-18 10:23:30 -05:00
|
|
|
finally:
|
|
|
|
os.remove(p12_tmpfile_name)
|
|
|
|
os.remove(cfg_file)
|
2017-11-14 18:59:32 -06:00
|
|
|
os.remove(admin_p12_file)
|
2014-03-18 10:23:30 -05:00
|
|
|
|
|
|
|
shutil.move(paths.KRA_BACKUP_KEYS_P12, paths.KRACERT_P12)
|
2017-05-23 11:35:57 -05:00
|
|
|
logger.debug("completed creating KRA instance")
|
2014-03-18 10:23:30 -05:00
|
|
|
|
2015-08-26 23:44:29 -05:00
|
|
|
def __create_kra_agent(self):
|
2014-03-18 10:23:30 -05:00
|
|
|
"""
|
2015-08-26 23:44:29 -05:00
|
|
|
Create KRA agent, assign a certificate, and add the user to
|
|
|
|
the appropriate groups for accessing KRA services.
|
2014-03-18 10:23:30 -05:00
|
|
|
"""
|
|
|
|
|
2017-01-13 02:08:42 -06:00
|
|
|
# get RA agent certificate
|
|
|
|
cert = x509.load_certificate_from_file(paths.RA_AGENT_PEM)
|
2015-08-26 23:44:29 -05:00
|
|
|
|
|
|
|
# connect to KRA database
|
2017-02-23 03:52:51 -06:00
|
|
|
conn = ldap2.ldap2(api)
|
2015-08-26 23:44:29 -05:00
|
|
|
conn.connect(autobind=True)
|
|
|
|
|
2017-01-13 02:08:42 -06:00
|
|
|
# create ipakra user with RA agent certificate
|
2015-08-26 23:44:29 -05:00
|
|
|
user_dn = DN(('uid', "ipakra"), ('ou', 'people'), self.basedn)
|
|
|
|
entry = conn.make_entry(
|
|
|
|
user_dn,
|
|
|
|
objectClass=['top', 'person', 'organizationalPerson',
|
|
|
|
'inetOrgPerson', 'cmsuser'],
|
|
|
|
uid=["ipakra"],
|
|
|
|
sn=["IPA KRA User"],
|
|
|
|
cn=["IPA KRA User"],
|
|
|
|
usertype=["undefined"],
|
2017-08-23 08:23:43 -05:00
|
|
|
userCertificate=[cert],
|
2015-08-26 23:44:29 -05:00
|
|
|
description=['2;%s;%s;%s' % (
|
2017-02-15 11:10:09 -06:00
|
|
|
cert.serial_number,
|
2016-11-16 04:49:36 -06:00
|
|
|
DN(self.subject),
|
2015-08-26 23:44:29 -05:00
|
|
|
DN(('CN', 'IPA RA'), self.subject_base))])
|
|
|
|
conn.add_entry(entry)
|
|
|
|
|
|
|
|
# add ipakra user to Data Recovery Manager Agents group
|
|
|
|
group_dn = DN(('cn', 'Data Recovery Manager Agents'), ('ou', 'groups'),
|
|
|
|
self.basedn)
|
|
|
|
conn.add_entry_to_group(user_dn, group_dn, 'uniqueMember')
|
|
|
|
|
|
|
|
conn.disconnect()
|
2014-10-01 13:59:46 -05:00
|
|
|
|
2015-06-10 05:35:43 -05:00
|
|
|
def __add_vault_container(self):
|
2016-11-11 08:45:17 -06:00
|
|
|
self._ldap_mod(
|
|
|
|
'vault.ldif', {'SUFFIX': self.suffix}, raise_on_err=True)
|
2015-09-14 00:56:44 -05:00
|
|
|
|
|
|
|
def __apply_updates(self):
|
2015-06-10 05:35:43 -05:00
|
|
|
sub_dict = {
|
|
|
|
'SUFFIX': self.suffix,
|
|
|
|
}
|
|
|
|
|
|
|
|
ld = ldapupdate.LDAPUpdate(dm_password=self.dm_password,
|
|
|
|
sub_dict=sub_dict)
|
2015-09-14 00:56:44 -05:00
|
|
|
ld.update([os.path.join(paths.UPDATES_DIR, '40-vault.update')])
|
2015-06-10 05:35:43 -05:00
|
|
|
|
2017-11-08 12:21:22 -06:00
|
|
|
def enable_ephemeral(self):
|
|
|
|
"""
|
|
|
|
Enable ephemeral KRA requests to reduce the number of LDAP
|
|
|
|
write operations.
|
|
|
|
"""
|
|
|
|
with installutils.stopped_service('pki-tomcatd', 'pki-tomcat'):
|
|
|
|
installutils.set_directive(
|
|
|
|
self.config,
|
|
|
|
'kra.ephemeralRequests',
|
|
|
|
'true', quotes=False, separator='=')
|
|
|
|
|
|
|
|
# A restart is required
|
|
|
|
|
|
|
|
def update_cert_config(self, nickname, cert):
|
2014-03-18 10:23:30 -05:00
|
|
|
"""
|
|
|
|
When renewing a KRA subsystem certificate the configuration file
|
|
|
|
needs to get the new certificate as well.
|
|
|
|
|
|
|
|
nickname is one of the known nicknames.
|
|
|
|
cert is a DER-encoded certificate.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# The cert directive to update per nickname
|
|
|
|
directives = {
|
|
|
|
'auditSigningCert cert-pki-kra': 'kra.audit_signing.cert',
|
|
|
|
'storageCert cert-pki-kra': 'kra.storage.cert',
|
|
|
|
'transportCert cert-pki-kra': 'kra.transport.cert',
|
|
|
|
'subsystemCert cert-pki-kra': 'kra.subsystem.cert',
|
|
|
|
'Server-Cert cert-pki-ca': 'kra.sslserver.cert'}
|
|
|
|
|
2016-06-16 22:33:26 -05:00
|
|
|
if nickname in directives:
|
2017-11-08 12:21:22 -06:00
|
|
|
super(KRAInstance, self).update_cert_cs_cfg(
|
|
|
|
directives[nickname], cert)
|
2014-03-18 10:23:30 -05:00
|
|
|
|
2015-08-25 14:42:25 -05:00
|
|
|
def __enable_instance(self):
|
|
|
|
self.ldap_enable('KRA', self.fqdn, None, self.suffix)
|