2007-10-15 14:42:12 -05:00
|
|
|
# Authors: Rob Crittenden <rcritten@redhat.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2007 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
2010-12-09 06:59:11 -06:00
|
|
|
# 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.
|
2007-10-15 14:42:12 -05:00
|
|
|
#
|
|
|
|
# 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
|
2010-12-09 06:59:11 -06:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2007-10-15 14:42:12 -05:00
|
|
|
#
|
|
|
|
|
2015-08-12 06:44:11 -05:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2007-12-13 03:31:28 -06:00
|
|
|
import os
|
|
|
|
import os.path
|
2007-10-15 14:42:12 -05:00
|
|
|
import pwd
|
2013-10-25 03:22:08 -05:00
|
|
|
import re
|
2015-01-08 03:06:46 -06:00
|
|
|
import dbus
|
|
|
|
import shlex
|
|
|
|
import pipes
|
2015-11-25 10:17:18 -06:00
|
|
|
import locale
|
|
|
|
|
|
|
|
import six
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2016-12-22 17:55:33 -06:00
|
|
|
from ipalib.constants import IPAAPI_USER
|
2016-11-23 08:04:40 -06:00
|
|
|
from ipalib.install import certmonger
|
2015-07-31 03:15:01 -05:00
|
|
|
from ipaserver.install import service
|
|
|
|
from ipaserver.install import certs
|
|
|
|
from ipaserver.install import installutils
|
2016-10-25 01:49:10 -05:00
|
|
|
from ipapython import dogtag
|
2009-02-05 14:03:08 -06:00
|
|
|
from ipapython import ipautil
|
2015-06-23 10:01:00 -05:00
|
|
|
from ipapython.dn import DN
|
2014-08-14 10:14:07 -05:00
|
|
|
from ipapython.ipa_log_manager import root_logger
|
|
|
|
import ipapython.errors
|
2013-10-25 03:22:08 -05:00
|
|
|
from ipaserver.install import sysupgrade
|
2013-01-21 05:05:07 -06:00
|
|
|
from ipalib import api
|
2015-06-23 10:01:00 -05:00
|
|
|
from ipalib import errors
|
2016-12-02 05:48:35 -06:00
|
|
|
from ipalib.constants import ANON_USER
|
2015-10-06 08:02:37 -05:00
|
|
|
from ipaplatform.constants import constants
|
2014-05-29 03:51:08 -05:00
|
|
|
from ipaplatform.tasks import tasks
|
2014-05-29 07:47:17 -05:00
|
|
|
from ipaplatform.paths import paths
|
2015-01-20 03:38:43 -06:00
|
|
|
from ipaplatform import services
|
2014-08-14 10:14:07 -05:00
|
|
|
|
|
|
|
SELINUX_BOOLEAN_SETTINGS = dict(
|
|
|
|
httpd_can_network_connect='on',
|
|
|
|
httpd_manage_ipa='on',
|
2015-07-14 06:11:36 -05:00
|
|
|
httpd_run_ipa='on',
|
2014-08-14 10:14:07 -05:00
|
|
|
)
|
2007-10-15 14:42:12 -05:00
|
|
|
|
2015-10-06 08:02:37 -05:00
|
|
|
HTTPD_USER = constants.HTTPD_USER
|
2016-03-18 05:22:33 -05:00
|
|
|
KDCPROXY_USER = constants.KDCPROXY_USER
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2016-01-21 09:09:10 -06:00
|
|
|
# See contrib/nsscipersuite/nssciphersuite.py
|
|
|
|
NSS_CIPHER_SUITE = [
|
|
|
|
'+aes_128_sha_256', '+aes_256_sha_256',
|
|
|
|
'+ecdhe_ecdsa_aes_128_gcm_sha_256', '+ecdhe_ecdsa_aes_128_sha',
|
|
|
|
'+ecdhe_ecdsa_aes_256_gcm_sha_384', '+ecdhe_ecdsa_aes_256_sha',
|
|
|
|
'+ecdhe_rsa_aes_128_gcm_sha_256', '+ecdhe_rsa_aes_128_sha',
|
|
|
|
'+ecdhe_rsa_aes_256_gcm_sha_384', '+ecdhe_rsa_aes_256_sha',
|
|
|
|
'+rsa_aes_128_gcm_sha_256', '+rsa_aes_128_sha',
|
|
|
|
'+rsa_aes_256_gcm_sha_384', '+rsa_aes_256_sha'
|
|
|
|
]
|
|
|
|
NSS_CIPHER_REVISION = '20160129'
|
|
|
|
|
|
|
|
|
2013-10-25 03:22:08 -05:00
|
|
|
def httpd_443_configured():
|
|
|
|
"""
|
|
|
|
We now allow mod_ssl to be installed so don't automatically disable it.
|
|
|
|
However it can't share the same listen port as mod_nss, so check for that.
|
|
|
|
|
|
|
|
Returns True if something other than mod_nss is listening on 443.
|
|
|
|
False otherwise.
|
|
|
|
"""
|
|
|
|
try:
|
2015-11-25 10:17:18 -06:00
|
|
|
result = ipautil.run([paths.HTTPD, '-t', '-D', 'DUMP_VHOSTS'],
|
|
|
|
capture_output=True)
|
2015-07-30 09:49:29 -05:00
|
|
|
except ipautil.CalledProcessError as e:
|
2013-10-25 03:22:08 -05:00
|
|
|
service.print_msg("WARNING: cannot check if port 443 is already configured")
|
|
|
|
service.print_msg("httpd returned error when checking: %s" % e)
|
|
|
|
return False
|
|
|
|
|
|
|
|
port_line_re = re.compile(r'(?P<address>\S+):(?P<port>\d+)')
|
2015-11-25 10:17:18 -06:00
|
|
|
stdout = result.raw_output
|
|
|
|
if six.PY3:
|
|
|
|
stdout = stdout.decode(locale.getpreferredencoding(), errors='replace')
|
2013-10-25 03:22:08 -05:00
|
|
|
for line in stdout.splitlines():
|
|
|
|
m = port_line_re.match(line)
|
|
|
|
if m and int(m.group('port')) == 443:
|
|
|
|
service.print_msg("Apache is already configured with a listener on port 443:")
|
|
|
|
service.print_msg(line)
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
2015-09-21 03:09:50 -05:00
|
|
|
|
|
|
|
def create_kdcproxy_user():
|
|
|
|
"""Create KDC proxy user/group if it doesn't exist yet."""
|
|
|
|
tasks.create_system_user(
|
|
|
|
name=KDCPROXY_USER,
|
|
|
|
group=KDCPROXY_USER,
|
2015-09-23 03:35:06 -05:00
|
|
|
homedir=paths.VAR_LIB_KDCPROXY,
|
2015-09-21 03:09:50 -05:00
|
|
|
shell=paths.NOLOGIN,
|
2015-09-23 03:35:06 -05:00
|
|
|
comment="IPA KDC Proxy User",
|
|
|
|
create_homedir=True,
|
2015-09-21 03:09:50 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2008-01-22 05:58:06 -06:00
|
|
|
class WebGuiInstance(service.SimpleServiceInstance):
|
|
|
|
def __init__(self):
|
|
|
|
service.SimpleServiceInstance.__init__(self, "ipa_webgui")
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
class HTTPInstance(service.Service):
|
2016-11-04 08:58:42 -05:00
|
|
|
def __init__(self, fstore=None, cert_nickname='Server-Cert',
|
|
|
|
api=api):
|
2016-11-03 10:38:06 -05:00
|
|
|
super(HTTPInstance, self).__init__(
|
|
|
|
"httpd",
|
|
|
|
service_desc="the web interface",
|
2016-11-03 11:43:33 -05:00
|
|
|
fstore=fstore,
|
2016-11-04 08:58:42 -05:00
|
|
|
api=api,
|
2016-11-03 11:54:14 -05:00
|
|
|
service_prefix=u'HTTP',
|
|
|
|
service_user=HTTPD_USER,
|
2016-11-29 10:10:22 -06:00
|
|
|
keytab=paths.HTTP_KEYTAB)
|
2007-10-15 14:42:12 -05:00
|
|
|
|
2013-03-15 04:09:58 -05:00
|
|
|
self.cert_nickname = cert_nickname
|
2014-10-13 07:30:15 -05:00
|
|
|
self.ca_is_configured = True
|
2016-11-29 10:10:22 -06:00
|
|
|
self.keytab_user = constants.GSSPROXY_USER
|
2013-03-15 04:09:58 -05:00
|
|
|
|
Use DN objects instead of strings
* Convert every string specifying a DN into a DN object
* Every place a dn was manipulated in some fashion it was replaced by
the use of DN operators
* Add new DNParam parameter type for parameters which are DN's
* DN objects are used 100% of the time throughout the entire data
pipeline whenever something is logically a dn.
* Many classes now enforce DN usage for their attributes which are
dn's. This is implmented via ipautil.dn_attribute_property(). The
only permitted types for a class attribute specified to be a DN are
either None or a DN object.
* Require that every place a dn is used it must be a DN object.
This translates into lot of::
assert isinstance(dn, DN)
sprinkled through out the code. Maintaining these asserts is
valuable to preserve DN type enforcement. The asserts can be
disabled in production.
The goal of 100% DN usage 100% of the time has been realized, these
asserts are meant to preserve that.
The asserts also proved valuable in detecting functions which did
not obey their function signatures, such as the baseldap pre and
post callbacks.
* Moved ipalib.dn to ipapython.dn because DN class is shared with all
components, not just the server which uses ipalib.
* All API's now accept DN's natively, no need to convert to str (or
unicode).
* Removed ipalib.encoder and encode/decode decorators. Type conversion
is now explicitly performed in each IPASimpleLDAPObject method which
emulates a ldap.SimpleLDAPObject method.
* Entity & Entry classes now utilize DN's
* Removed __getattr__ in Entity & Entity clases. There were two
problems with it. It presented synthetic Python object attributes
based on the current LDAP data it contained. There is no way to
validate synthetic attributes using code checkers, you can't search
the code to find LDAP attribute accesses (because synthetic
attriutes look like Python attributes instead of LDAP data) and
error handling is circumscribed. Secondly __getattr__ was hiding
Python internal methods which broke class semantics.
* Replace use of methods inherited from ldap.SimpleLDAPObject via
IPAdmin class with IPAdmin methods. Directly using inherited methods
was causing us to bypass IPA logic. Mostly this meant replacing the
use of search_s() with getEntry() or getList(). Similarly direct
access of the LDAP data in classes using IPAdmin were replaced with
calls to getValue() or getValues().
* Objects returned by ldap2.find_entries() are now compatible with
either the python-ldap access methodology or the Entity/Entry access
methodology.
* All ldap operations now funnel through the common
IPASimpleLDAPObject giving us a single location where we interface
to python-ldap and perform conversions.
* The above 4 modifications means we've greatly reduced the
proliferation of multiple inconsistent ways to perform LDAP
operations. We are well on the way to having a single API in IPA for
doing LDAP (a long range goal).
* All certificate subject bases are now DN's
* DN objects were enhanced thusly:
- find, rfind, index, rindex, replace and insert methods were added
- AVA, RDN and DN classes were refactored in immutable and mutable
variants, the mutable variants are EditableAVA, EditableRDN and
EditableDN. By default we use the immutable variants preserving
important semantics. To edit a DN cast it to an EditableDN and
cast it back to DN when done editing. These issues are fully
described in other documentation.
- first_key_match was removed
- DN equalty comparison permits comparison to a basestring
* Fixed ldapupdate to work with DN's. This work included:
- Enhance test_updates.py to do more checking after applying
update. Add test for update_from_dict(). Convert code to use
unittest classes.
- Consolidated duplicate code.
- Moved code which should have been in the class into the class.
- Fix the handling of the 'deleteentry' update action. It's no longer
necessary to supply fake attributes to make it work. Detect case
where subsequent update applies a change to entry previously marked
for deletetion. General clean-up and simplification of the
'deleteentry' logic.
- Rewrote a couple of functions to be clearer and more Pythonic.
- Added documentation on the data structure being used.
- Simplfy the use of update_from_dict()
* Removed all usage of get_schema() which was being called prior to
accessing the .schema attribute of an object. If a class is using
internal lazy loading as an optimization it's not right to require
users of the interface to be aware of internal
optimization's. schema is now a property and when the schema
property is accessed it calls a private internal method to perform
the lazy loading.
* Added SchemaCache class to cache the schema's from individual
servers. This was done because of the observation we talk to
different LDAP servers, each of which may have it's own
schema. Previously we globally cached the schema from the first
server we connected to and returned that schema in all contexts. The
cache includes controls to invalidate it thus forcing a schema
refresh.
* Schema caching is now senstive to the run time context. During
install and upgrade the schema can change leading to errors due to
out-of-date cached schema. The schema cache is refreshed in these
contexts.
* We are aware of the LDAP syntax of all LDAP attributes. Every
attribute returned from an LDAP operation is passed through a
central table look-up based on it's LDAP syntax. The table key is
the LDAP syntax it's value is a Python callable that returns a
Python object matching the LDAP syntax. There are a handful of LDAP
attributes whose syntax is historically incorrect
(e.g. DistguishedNames that are defined as DirectoryStrings). The
table driven conversion mechanism is augmented with a table of
hard coded exceptions.
Currently only the following conversions occur via the table:
- dn's are converted to DN objects
- binary objects are converted to Python str objects (IPA
convention).
- everything else is converted to unicode using UTF-8 decoding (IPA
convention).
However, now that the table driven conversion mechanism is in place
it would be trivial to do things such as converting attributes
which have LDAP integer syntax into a Python integer, etc.
* Expected values in the unit tests which are a DN no longer need to
use lambda expressions to promote the returned value to a DN for
equality comparison. The return value is automatically promoted to
a DN. The lambda expressions have been removed making the code much
simpler and easier to read.
* Add class level logging to a number of classes which did not support
logging, less need for use of root_logger.
* Remove ipaserver/conn.py, it was unused.
* Consolidated duplicate code wherever it was found.
* Fixed many places that used string concatenation to form a new
string rather than string formatting operators. This is necessary
because string formatting converts it's arguments to a string prior
to building the result string. You can't concatenate a string and a
non-string.
* Simplify logic in rename_managed plugin. Use DN operators to edit
dn's.
* The live version of ipa-ldap-updater did not generate a log file.
The offline version did, now both do.
https://fedorahosted.org/freeipa/ticket/1670
https://fedorahosted.org/freeipa/ticket/1671
https://fedorahosted.org/freeipa/ticket/1672
https://fedorahosted.org/freeipa/ticket/1673
https://fedorahosted.org/freeipa/ticket/1674
https://fedorahosted.org/freeipa/ticket/1392
https://fedorahosted.org/freeipa/ticket/2872
2012-05-13 06:36:35 -05:00
|
|
|
subject_base = ipautil.dn_attribute_property('_subject_base')
|
|
|
|
|
2016-10-06 10:35:04 -05:00
|
|
|
def create_instance(self, realm, fqdn, domain_name, pkcs12_info=None,
|
2014-10-13 07:30:15 -05:00
|
|
|
subject_base=None, auto_redirect=True, ca_file=None,
|
2015-06-11 14:45:38 -05:00
|
|
|
ca_is_configured=None, promote=False):
|
0000-12-31 18:09:24 -05:50
|
|
|
self.fqdn = fqdn
|
|
|
|
self.realm = realm
|
2008-02-15 19:47:29 -06:00
|
|
|
self.domain = domain_name
|
2012-04-18 10:22:35 -05:00
|
|
|
self.suffix = ipautil.realm_to_suffix(self.realm)
|
2008-02-05 11:23:53 -06:00
|
|
|
self.pkcs12_info = pkcs12_info
|
2009-12-07 22:17:00 -06:00
|
|
|
self.dercert = None
|
2010-01-20 10:26:20 -06:00
|
|
|
self.subject_base = subject_base
|
2012-08-23 11:38:45 -05:00
|
|
|
self.sub_dict = dict(
|
|
|
|
REALM=realm,
|
|
|
|
FQDN=fqdn,
|
|
|
|
DOMAIN=self.domain,
|
|
|
|
AUTOREDIR='' if auto_redirect else '#',
|
2015-11-09 11:28:47 -06:00
|
|
|
CRL_PUBLISH_PATH=paths.PKI_CA_PUBLISH_DIR,
|
2012-08-23 11:38:45 -05:00
|
|
|
)
|
2013-03-26 09:31:07 -05:00
|
|
|
self.ca_file = ca_file
|
2014-10-13 07:30:15 -05:00
|
|
|
if ca_is_configured is not None:
|
|
|
|
self.ca_is_configured = ca_is_configured
|
2015-06-11 14:45:38 -05:00
|
|
|
self.promote = promote
|
2008-03-27 18:01:38 -05:00
|
|
|
|
2011-02-02 09:24:30 -06:00
|
|
|
self.step("setting mod_nss port to 443", self.__set_mod_nss_port)
|
2016-01-21 09:09:10 -06:00
|
|
|
self.step("setting mod_nss cipher suite",
|
|
|
|
self.set_mod_nss_cipher_suite)
|
2014-11-25 02:12:53 -06:00
|
|
|
self.step("setting mod_nss protocol list to TLSv1.0 - TLSv1.2",
|
|
|
|
self.set_mod_nss_protocol)
|
2011-02-02 09:24:30 -06:00
|
|
|
self.step("setting mod_nss password file", self.__set_mod_nss_passwordfile)
|
2011-10-06 19:37:57 -05:00
|
|
|
self.step("enabling mod_nss renegotiate", self.enable_mod_nss_renegotiate)
|
2011-02-02 09:24:30 -06:00
|
|
|
self.step("adding URL rewriting rules", self.__add_include)
|
2007-12-13 03:31:28 -06:00
|
|
|
self.step("configuring httpd", self.__configure_http)
|
2017-02-17 07:31:55 -06:00
|
|
|
self.step("setting up httpd keytab", self.request_service_keytab)
|
2016-12-02 05:48:35 -06:00
|
|
|
self.step("retrieving anonymous keytab", self.request_anon_keytab)
|
2016-11-29 10:10:22 -06:00
|
|
|
self.step("configuring Gssproxy", self.configure_gssproxy)
|
2016-11-10 06:14:34 -06:00
|
|
|
self.step("setting up ssl", self.__setup_ssl)
|
2015-01-08 03:06:46 -06:00
|
|
|
if self.ca_is_configured:
|
|
|
|
self.step("configure certmonger for renewals",
|
|
|
|
self.configure_certmonger_renewal_guard)
|
2014-06-12 03:24:24 -05:00
|
|
|
self.step("importing CA certificates from LDAP", self.__import_ca_certs)
|
2016-11-29 10:10:22 -06:00
|
|
|
self.step("clean up any existing httpd ccaches",
|
|
|
|
self.remove_httpd_ccaches)
|
2012-04-03 03:47:40 -05:00
|
|
|
self.step("configuring SELinux for httpd", self.configure_selinux_for_httpd)
|
2015-06-23 10:01:00 -05:00
|
|
|
if not self.is_kdcproxy_configured():
|
2015-09-21 03:09:50 -05:00
|
|
|
self.step("create KDC proxy user", create_kdcproxy_user)
|
2015-06-23 10:01:00 -05:00
|
|
|
self.step("create KDC proxy config", self.create_kdcproxy_conf)
|
|
|
|
self.step("enable KDC proxy", self.enable_kdcproxy)
|
2008-01-14 11:43:26 -06:00
|
|
|
self.step("restarting httpd", self.__start)
|
|
|
|
self.step("configuring httpd to start on boot", self.__enable)
|
2015-12-09 01:18:21 -06:00
|
|
|
self.step("enabling oddjobd", self.enable_and_start_oddjobd)
|
2007-12-13 03:31:28 -06:00
|
|
|
|
2017-03-01 10:35:56 -06:00
|
|
|
self.start_creation()
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2008-01-14 11:43:26 -06:00
|
|
|
def __start(self):
|
|
|
|
self.backup_state("running", self.is_running())
|
|
|
|
self.restart()
|
|
|
|
|
|
|
|
def __enable(self):
|
2015-01-27 04:04:03 -06:00
|
|
|
self.backup_state("enabled", self.is_enabled())
|
2010-12-04 14:42:14 -06:00
|
|
|
# We do not let the system start IPA components on its own,
|
|
|
|
# Instead we reply on the IPA init script to start only enabled
|
|
|
|
# components as found in our LDAP configuration tree
|
2016-10-06 10:35:04 -05:00
|
|
|
self.ldap_enable('HTTP', self.fqdn, None, self.suffix)
|
2008-01-14 11:43:26 -06:00
|
|
|
|
2012-04-03 03:47:40 -05:00
|
|
|
def configure_selinux_for_httpd(self):
|
2007-10-15 14:42:12 -05:00
|
|
|
try:
|
2014-08-14 10:14:07 -05:00
|
|
|
tasks.set_selinux_booleans(SELINUX_BOOLEAN_SETTINGS,
|
|
|
|
self.backup_state)
|
|
|
|
except ipapython.errors.SetseboolError as e:
|
|
|
|
self.print_msg(e.format_service_warning('web interface'))
|
2008-03-27 18:01:38 -05:00
|
|
|
|
2016-11-29 10:10:22 -06:00
|
|
|
def remove_httpd_ccaches(self):
|
|
|
|
# Clean up existing ccaches
|
2014-01-16 07:12:29 -06:00
|
|
|
# Make sure that empty env is passed to avoid passing KRB5CCNAME from
|
|
|
|
# current env
|
2016-11-29 10:10:22 -06:00
|
|
|
installutils.remove_file(paths.HTTP_CCACHE)
|
|
|
|
for f in os.listdir(paths.IPA_CCACHES):
|
|
|
|
os.remove(os.path.join(paths.IPA_CCACHES, f))
|
2013-05-07 09:33:55 -05:00
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
def __configure_http(self):
|
2016-03-16 03:04:42 -05:00
|
|
|
self.update_httpd_service_ipa_conf()
|
|
|
|
|
2014-05-29 07:47:17 -05:00
|
|
|
target_fname = paths.HTTPD_IPA_CONF
|
2016-11-22 09:06:45 -06:00
|
|
|
http_txt = ipautil.template_file(
|
|
|
|
os.path.join(paths.USR_SHARE_IPA_DIR, "ipa.conf"), self.sub_dict)
|
2014-05-29 07:47:17 -05:00
|
|
|
self.fstore.backup_file(paths.HTTPD_IPA_CONF)
|
2011-08-30 09:32:40 -05:00
|
|
|
http_fd = open(target_fname, "w")
|
0000-12-31 18:09:24 -05:50
|
|
|
http_fd.write(http_txt)
|
2008-02-21 15:25:09 -06:00
|
|
|
http_fd.close()
|
2015-07-15 09:38:06 -05:00
|
|
|
os.chmod(target_fname, 0o644)
|
2007-10-15 14:42:12 -05:00
|
|
|
|
2014-05-29 07:47:17 -05:00
|
|
|
target_fname = paths.HTTPD_IPA_REWRITE_CONF
|
2016-11-22 09:06:45 -06:00
|
|
|
http_txt = ipautil.template_file(
|
|
|
|
os.path.join(paths.USR_SHARE_IPA_DIR, "ipa-rewrite.conf"),
|
|
|
|
self.sub_dict)
|
2014-05-29 07:47:17 -05:00
|
|
|
self.fstore.backup_file(paths.HTTPD_IPA_REWRITE_CONF)
|
2011-08-30 09:32:40 -05:00
|
|
|
http_fd = open(target_fname, "w")
|
2008-02-21 15:25:09 -06:00
|
|
|
http_fd.write(http_txt)
|
|
|
|
http_fd.close()
|
2015-07-15 09:38:06 -05:00
|
|
|
os.chmod(target_fname, 0o644)
|
2007-10-15 14:42:12 -05:00
|
|
|
|
2016-11-29 10:10:22 -06:00
|
|
|
def configure_gssproxy(self):
|
|
|
|
tasks.configure_http_gssproxy_conf()
|
|
|
|
services.knownservices.gssproxy.restart()
|
|
|
|
|
2013-11-26 02:53:34 -06:00
|
|
|
def change_mod_nss_port_from_http(self):
|
2013-10-25 03:22:08 -05:00
|
|
|
# mod_ssl enforces SSLEngine on for vhost on 443 even though
|
|
|
|
# the listener is mod_nss. This then crashes the httpd as mod_nss
|
|
|
|
# listened port obviously does not match mod_ssl requirements.
|
|
|
|
#
|
2013-11-26 02:53:34 -06:00
|
|
|
# The workaround for this was to change port to http. It is no longer
|
|
|
|
# necessary, as mod_nss now ships with default configuration which
|
|
|
|
# sets SSLEngine off when mod_ssl is installed.
|
2013-10-25 03:22:08 -05:00
|
|
|
#
|
2013-11-26 02:53:34 -06:00
|
|
|
# Remove the workaround.
|
|
|
|
if sysupgrade.get_upgrade_state('nss.conf', 'listen_port_updated'):
|
2014-05-29 07:47:17 -05:00
|
|
|
installutils.set_directive(paths.HTTPD_NSS_CONF, 'Listen', '443', quotes=False)
|
2013-11-26 02:53:34 -06:00
|
|
|
sysupgrade.set_upgrade_state('nss.conf', 'listen_port_updated', False)
|
2007-10-15 14:42:12 -05:00
|
|
|
|
|
|
|
def __set_mod_nss_port(self):
|
2014-05-29 07:47:17 -05:00
|
|
|
self.fstore.backup_file(paths.HTTPD_NSS_CONF)
|
|
|
|
if installutils.update_file(paths.HTTPD_NSS_CONF, '8443', '443') != 0:
|
2015-08-12 06:44:11 -05:00
|
|
|
print("Updating port in %s failed." % paths.HTTPD_NSS_CONF)
|
2008-02-21 15:25:09 -06:00
|
|
|
|
2008-07-11 10:34:29 -05:00
|
|
|
def __set_mod_nss_nickname(self, nickname):
|
2016-12-16 06:42:05 -06:00
|
|
|
quoted_nickname = installutils.quote_directive_value(
|
|
|
|
nickname, quote_char="'")
|
2016-09-23 08:56:46 -05:00
|
|
|
installutils.set_directive(
|
2016-12-16 06:42:05 -06:00
|
|
|
paths.HTTPD_NSS_CONF, 'NSSNickname', quoted_nickname, quotes=False)
|
2008-07-11 10:34:29 -05:00
|
|
|
|
2014-11-25 02:12:53 -06:00
|
|
|
def set_mod_nss_protocol(self):
|
|
|
|
installutils.set_directive(paths.HTTPD_NSS_CONF, 'NSSProtocol', 'TLSv1.0,TLSv1.1,TLSv1.2', False)
|
2014-10-21 07:59:04 -05:00
|
|
|
|
2011-10-06 19:37:57 -05:00
|
|
|
def enable_mod_nss_renegotiate(self):
|
2014-05-29 07:47:17 -05:00
|
|
|
installutils.set_directive(paths.HTTPD_NSS_CONF, 'NSSRenegotiation', 'on', False)
|
|
|
|
installutils.set_directive(paths.HTTPD_NSS_CONF, 'NSSRequireSafeNegotiation', 'on', False)
|
2011-08-17 14:36:18 -05:00
|
|
|
|
2016-01-21 09:09:10 -06:00
|
|
|
def set_mod_nss_cipher_suite(self):
|
|
|
|
ciphers = ','.join(NSS_CIPHER_SUITE)
|
|
|
|
installutils.set_directive(paths.HTTPD_NSS_CONF, 'NSSCipherSuite', ciphers, False)
|
|
|
|
|
2009-04-13 12:39:15 -05:00
|
|
|
def __set_mod_nss_passwordfile(self):
|
2015-10-05 09:37:49 -05:00
|
|
|
installutils.set_directive(paths.HTTPD_NSS_CONF, 'NSSPassPhraseDialog', 'file:' + paths.HTTPD_PASSWORD_CONF)
|
2009-04-13 12:39:15 -05:00
|
|
|
|
2008-02-21 15:25:09 -06:00
|
|
|
def __add_include(self):
|
|
|
|
"""This should run after __set_mod_nss_port so is already backed up"""
|
2015-10-06 08:43:09 -05:00
|
|
|
if installutils.update_file(paths.HTTPD_NSS_CONF, '</VirtualHost>', 'Include {path}\n</VirtualHost>'.format(path=paths.HTTPD_IPA_REWRITE_CONF)) != 0:
|
2015-08-12 06:44:11 -05:00
|
|
|
print("Adding Include conf.d/ipa-rewrite to %s failed." % paths.HTTPD_NSS_CONF)
|
0000-12-31 18:09:24 -05:50
|
|
|
|
2015-01-08 03:06:46 -06:00
|
|
|
def configure_certmonger_renewal_guard(self):
|
2015-01-20 03:38:43 -06:00
|
|
|
certmonger = services.knownservices.certmonger
|
|
|
|
certmonger_stopped = not certmonger.is_running()
|
|
|
|
|
|
|
|
if certmonger_stopped:
|
|
|
|
certmonger.start()
|
|
|
|
try:
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
obj = bus.get_object('org.fedorahosted.certmonger',
|
|
|
|
'/org/fedorahosted/certmonger')
|
|
|
|
iface = dbus.Interface(obj, 'org.fedorahosted.certmonger')
|
|
|
|
path = iface.find_ca_by_nickname('IPA')
|
|
|
|
if path:
|
|
|
|
ca_obj = bus.get_object('org.fedorahosted.certmonger', path)
|
|
|
|
ca_iface = dbus.Interface(ca_obj,
|
|
|
|
'org.freedesktop.DBus.Properties')
|
|
|
|
helper = ca_iface.Get('org.fedorahosted.certmonger.ca',
|
|
|
|
'external-helper')
|
|
|
|
if helper:
|
|
|
|
args = shlex.split(helper)
|
|
|
|
if args[0] != paths.IPA_SERVER_GUARD:
|
|
|
|
self.backup_state('certmonger_ipa_helper', helper)
|
|
|
|
args = [paths.IPA_SERVER_GUARD] + args
|
|
|
|
helper = ' '.join(pipes.quote(a) for a in args)
|
|
|
|
ca_iface.Set('org.fedorahosted.certmonger.ca',
|
|
|
|
'external-helper', helper)
|
|
|
|
finally:
|
|
|
|
if certmonger_stopped:
|
|
|
|
certmonger.stop()
|
2015-01-08 03:06:46 -06:00
|
|
|
|
2016-12-02 05:48:35 -06:00
|
|
|
def request_anon_keytab(self):
|
|
|
|
parent = os.path.dirname(paths.ANON_KEYTAB)
|
|
|
|
if not os.path.exists(parent):
|
|
|
|
os.makedirs(parent, 0o755)
|
2017-02-17 07:33:40 -06:00
|
|
|
|
|
|
|
self.clean_previous_keytab(keytab=paths.ANON_KEYTAB)
|
2016-12-02 05:48:35 -06:00
|
|
|
self.run_getkeytab(self.api.env.ldap_uri, paths.ANON_KEYTAB, ANON_USER)
|
|
|
|
|
2016-08-16 08:03:19 -05:00
|
|
|
pent = pwd.getpwnam(IPAAPI_USER)
|
2016-12-02 05:48:35 -06:00
|
|
|
os.chmod(parent, 0o700)
|
|
|
|
os.chown(parent, pent.pw_uid, pent.pw_gid)
|
2017-02-17 07:33:40 -06:00
|
|
|
|
|
|
|
self.set_keytab_owner(keytab=paths.ANON_KEYTAB, owner=IPAAPI_USER)
|
2016-12-02 05:48:35 -06:00
|
|
|
|
2016-12-13 09:32:32 -06:00
|
|
|
def create_password_conf(self):
|
|
|
|
"""
|
|
|
|
This is the format of mod_nss pin files.
|
|
|
|
"""
|
|
|
|
pwd_conf = paths.HTTPD_PASSWORD_CONF
|
|
|
|
ipautil.backup_file(pwd_conf)
|
2017-01-09 01:45:33 -06:00
|
|
|
|
|
|
|
passwd_fname = os.path.join(paths.HTTPD_ALIAS_DIR, 'pwdfile.txt')
|
|
|
|
with open(passwd_fname, 'r') as pwdfile:
|
|
|
|
password = pwdfile.read()
|
|
|
|
|
|
|
|
with open(pwd_conf, "w") as f:
|
|
|
|
f.write("internal:")
|
|
|
|
f.write(password)
|
|
|
|
f.write("\nNSS FIPS 140-2 Certificate DB:")
|
|
|
|
f.write(password)
|
|
|
|
# make sure other processes can access the file contents ASAP
|
|
|
|
f.flush()
|
2016-12-13 09:32:32 -06:00
|
|
|
pent = pwd.getpwnam(constants.HTTPD_USER)
|
|
|
|
os.chown(pwd_conf, pent.pw_uid, pent.pw_gid)
|
|
|
|
os.chmod(pwd_conf, 0o400)
|
|
|
|
|
0000-12-31 18:09:24 -05:50
|
|
|
def __setup_ssl(self):
|
2016-12-13 09:32:32 -06:00
|
|
|
db = certs.CertDB(self.realm, nssdir=paths.HTTPD_ALIAS_DIR,
|
2016-12-22 17:55:33 -06:00
|
|
|
subject_base=self.subject_base, user="root",
|
|
|
|
group=constants.HTTPD_GROUP,
|
|
|
|
truncate=(not self.promote))
|
2008-02-05 11:23:53 -06:00
|
|
|
if self.pkcs12_info:
|
2014-10-13 07:30:15 -05:00
|
|
|
if self.ca_is_configured:
|
2014-06-09 09:04:09 -05:00
|
|
|
trust_flags = 'CT,C,C'
|
|
|
|
else:
|
|
|
|
trust_flags = None
|
2016-10-25 08:55:35 -05:00
|
|
|
db.init_from_pkcs12(self.pkcs12_info[0], self.pkcs12_info[1],
|
|
|
|
ca_file=self.ca_file,
|
|
|
|
trust_flags=trust_flags)
|
2009-04-13 12:39:15 -05:00
|
|
|
server_certs = db.find_server_certs()
|
2008-07-11 10:34:29 -05:00
|
|
|
if len(server_certs) == 0:
|
2009-08-11 16:08:09 -05:00
|
|
|
raise RuntimeError("Could not find a suitable server cert in import in %s" % self.pkcs12_info[0])
|
2008-07-11 10:34:29 -05:00
|
|
|
|
2016-12-13 09:32:32 -06:00
|
|
|
self.create_password_conf()
|
2013-03-14 07:58:27 -05:00
|
|
|
|
2008-07-11 10:34:29 -05:00
|
|
|
# We only handle one server cert
|
|
|
|
nickname = server_certs[0][0]
|
2016-10-26 07:28:21 -05:00
|
|
|
if nickname == 'ipaCert':
|
|
|
|
nickname = server_certs[1][0]
|
2011-06-08 09:54:41 -05:00
|
|
|
self.dercert = db.get_cert_from_db(nickname, pem=False)
|
2013-03-14 07:58:27 -05:00
|
|
|
|
2014-10-13 07:30:15 -05:00
|
|
|
if self.ca_is_configured:
|
2013-03-14 07:58:27 -05:00
|
|
|
db.track_server_cert(nickname, self.principal, db.passwd_fname, 'restart_httpd')
|
2008-07-11 10:34:29 -05:00
|
|
|
|
|
|
|
self.__set_mod_nss_nickname(nickname)
|
2015-06-11 14:45:38 -05:00
|
|
|
self.add_cert_to_service()
|
2010-12-08 15:35:12 -06:00
|
|
|
|
2016-10-31 10:51:49 -05:00
|
|
|
else:
|
|
|
|
if not self.promote:
|
2016-12-13 09:32:32 -06:00
|
|
|
self.create_password_conf()
|
2016-10-25 01:49:10 -05:00
|
|
|
ca_args = [
|
2017-01-13 02:08:42 -06:00
|
|
|
paths.CERTMONGER_DOGTAG_SUBMIT,
|
2016-10-25 01:49:10 -05:00
|
|
|
'--ee-url', 'https://%s:8443/ca/ee/ca' % self.fqdn,
|
2017-01-13 02:08:42 -06:00
|
|
|
'--certfile', paths.RA_AGENT_PEM,
|
|
|
|
'--keyfile', paths.RA_AGENT_KEY,
|
|
|
|
'--cafile', paths.IPA_CA_CRT,
|
2016-10-25 01:49:10 -05:00
|
|
|
'--agent-submit'
|
2017-01-13 02:08:42 -06:00
|
|
|
]
|
2016-10-25 01:49:10 -05:00
|
|
|
helper = " ".join(ca_args)
|
|
|
|
prev_helper = certmonger.modify_ca_helper('IPA', helper)
|
|
|
|
|
|
|
|
try:
|
|
|
|
certmonger.request_and_wait_for_cert(
|
2016-07-26 10:19:01 -05:00
|
|
|
certpath=db.secdir,
|
2016-10-25 01:49:10 -05:00
|
|
|
nickname=self.cert_nickname,
|
|
|
|
principal=self.principal,
|
|
|
|
passwd_fname=db.passwd_fname,
|
|
|
|
subject=str(DN(('CN', self.fqdn), self.subject_base)),
|
|
|
|
ca='IPA',
|
|
|
|
profile=dogtag.DEFAULT_PROFILE,
|
|
|
|
dns=[self.fqdn],
|
|
|
|
post_command='restart_httpd')
|
|
|
|
self.dercert = db.get_cert_from_db(
|
|
|
|
self.cert_nickname, pem=False)
|
|
|
|
finally:
|
|
|
|
certmonger.modify_ca_helper('IPA', prev_helper)
|
|
|
|
|
2016-10-31 10:51:49 -05:00
|
|
|
self.add_cert_to_service()
|
|
|
|
|
2016-12-13 09:32:32 -06:00
|
|
|
# Verify we have a valid server cert
|
2016-10-31 10:51:49 -05:00
|
|
|
server_certs = db.find_server_certs()
|
|
|
|
if not server_certs:
|
|
|
|
raise RuntimeError("Could not find a suitable server cert.")
|
|
|
|
|
2014-06-12 03:24:24 -05:00
|
|
|
def __import_ca_certs(self):
|
2016-12-13 09:32:32 -06:00
|
|
|
db = certs.CertDB(self.realm, nssdir=paths.HTTPD_ALIAS_DIR,
|
|
|
|
subject_base=self.subject_base)
|
|
|
|
self.import_ca_certs(db, self.ca_is_configured)
|
2009-04-13 12:39:15 -05:00
|
|
|
|
2015-06-23 10:01:00 -05:00
|
|
|
def is_kdcproxy_configured(self):
|
|
|
|
"""Check if KDC proxy has already been configured in the past"""
|
|
|
|
return os.path.isfile(paths.HTTPD_IPA_KDCPROXY_CONF)
|
|
|
|
|
|
|
|
def enable_kdcproxy(self):
|
|
|
|
"""Add ipaConfigString=kdcProxyEnabled to cn=KDC"""
|
|
|
|
entry_name = DN(('cn', 'KDC'), ('cn', self.fqdn), ('cn', 'masters'),
|
|
|
|
('cn', 'ipa'), ('cn', 'etc'), self.suffix)
|
|
|
|
attr_name = 'kdcProxyEnabled'
|
|
|
|
|
|
|
|
try:
|
2016-11-09 05:53:14 -06:00
|
|
|
entry = api.Backend.ldap2.get_entry(
|
|
|
|
entry_name, ['ipaConfigString'])
|
2015-06-23 10:01:00 -05:00
|
|
|
except errors.NotFound:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
if any(attr_name.lower() == val.lower()
|
|
|
|
for val in entry.get('ipaConfigString', [])):
|
|
|
|
root_logger.debug("service KDCPROXY already enabled")
|
|
|
|
return
|
|
|
|
|
|
|
|
entry.setdefault('ipaConfigString', []).append(attr_name)
|
|
|
|
try:
|
2016-11-09 05:53:14 -06:00
|
|
|
api.Backend.ldap2.update_entry(entry)
|
2015-06-23 10:01:00 -05:00
|
|
|
except errors.EmptyModlist:
|
|
|
|
root_logger.debug("service KDCPROXY already enabled")
|
|
|
|
return
|
|
|
|
except:
|
|
|
|
root_logger.debug("failed to enable service KDCPROXY")
|
|
|
|
raise
|
|
|
|
|
|
|
|
root_logger.debug("service KDCPROXY enabled")
|
|
|
|
return
|
|
|
|
|
2016-11-09 05:53:14 -06:00
|
|
|
entry = api.Backend.ldap2.make_entry(
|
2015-06-23 10:01:00 -05:00
|
|
|
entry_name,
|
|
|
|
objectclass=["nsContainer", "ipaConfigObject"],
|
|
|
|
cn=['KDC'],
|
|
|
|
ipaconfigstring=[attr_name]
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
2016-11-09 05:53:14 -06:00
|
|
|
api.Backend.ldap2.add_entry(entry)
|
2015-06-23 10:01:00 -05:00
|
|
|
except errors.DuplicateEntry:
|
|
|
|
root_logger.debug("failed to add service KDCPROXY entry")
|
|
|
|
raise
|
|
|
|
|
|
|
|
def create_kdcproxy_conf(self):
|
|
|
|
"""Create ipa-kdc-proxy.conf in /etc/ipa/kdcproxy"""
|
|
|
|
target_fname = paths.HTTPD_IPA_KDCPROXY_CONF
|
|
|
|
sub_dict = dict(KDCPROXY_CONFIG=paths.KDCPROXY_CONFIG)
|
|
|
|
http_txt = ipautil.template_file(
|
2016-11-22 09:06:45 -06:00
|
|
|
os.path.join(paths.USR_SHARE_IPA_DIR,
|
|
|
|
"ipa-kdc-proxy.conf.template"),
|
|
|
|
sub_dict)
|
2015-06-23 10:01:00 -05:00
|
|
|
self.fstore.backup_file(target_fname)
|
|
|
|
with open(target_fname, 'w') as f:
|
|
|
|
f.write(http_txt)
|
2015-07-15 09:38:06 -05:00
|
|
|
os.chmod(target_fname, 0o644)
|
2015-06-23 10:01:00 -05:00
|
|
|
|
2015-12-09 01:18:21 -06:00
|
|
|
def enable_and_start_oddjobd(self):
|
2016-11-18 08:42:23 -06:00
|
|
|
oddjobd = services.service('oddjobd', api)
|
2015-12-09 01:18:21 -06:00
|
|
|
self.sstore.backup_state('oddjobd', 'running', oddjobd.is_running())
|
|
|
|
self.sstore.backup_state('oddjobd', 'enabled', oddjobd.is_enabled())
|
|
|
|
|
|
|
|
try:
|
|
|
|
oddjobd.enable()
|
|
|
|
oddjobd.start()
|
|
|
|
except Exception as e:
|
|
|
|
root_logger.critical("Unable to start oddjobd: {0}".format(str(e)))
|
|
|
|
|
2016-03-16 03:04:42 -05:00
|
|
|
def update_httpd_service_ipa_conf(self):
|
|
|
|
tasks.configure_httpd_service_ipa_conf()
|
|
|
|
|
2008-01-11 05:57:36 -06:00
|
|
|
def uninstall(self):
|
2010-05-03 14:21:51 -05:00
|
|
|
if self.is_configured():
|
|
|
|
self.print_msg("Unconfiguring web server")
|
|
|
|
|
2008-01-11 05:57:36 -06:00
|
|
|
running = self.restore_state("running")
|
|
|
|
enabled = self.restore_state("enabled")
|
|
|
|
|
2015-12-09 01:18:21 -06:00
|
|
|
# Restore oddjobd to its original state
|
2016-11-18 08:42:23 -06:00
|
|
|
oddjobd = services.service('oddjobd', api)
|
2015-12-09 01:18:21 -06:00
|
|
|
|
|
|
|
if not self.sstore.restore_state('oddjobd', 'running'):
|
|
|
|
try:
|
|
|
|
oddjobd.stop()
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
|
|
|
|
if not self.sstore.restore_state('oddjobd', 'enabled'):
|
|
|
|
try:
|
|
|
|
oddjobd.disable()
|
|
|
|
except Exception:
|
|
|
|
pass
|
2008-01-11 05:57:36 -06:00
|
|
|
|
2013-03-26 12:06:50 -05:00
|
|
|
self.stop_tracking_certificates()
|
2015-01-08 03:06:46 -06:00
|
|
|
|
|
|
|
helper = self.restore_state('certmonger_ipa_helper')
|
|
|
|
if helper:
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
obj = bus.get_object('org.fedorahosted.certmonger',
|
|
|
|
'/org/fedorahosted/certmonger')
|
|
|
|
iface = dbus.Interface(obj, 'org.fedorahosted.certmonger')
|
|
|
|
path = iface.find_ca_by_nickname('IPA')
|
|
|
|
if path:
|
|
|
|
ca_obj = bus.get_object('org.fedorahosted.certmonger', path)
|
|
|
|
ca_iface = dbus.Interface(ca_obj,
|
|
|
|
'org.freedesktop.DBus.Properties')
|
|
|
|
ca_iface.Set('org.fedorahosted.certmonger.ca',
|
|
|
|
'external-helper', helper)
|
|
|
|
|
2014-05-29 07:47:17 -05:00
|
|
|
for f in [paths.HTTPD_IPA_CONF, paths.HTTPD_SSL_CONF, paths.HTTPD_NSS_CONF]:
|
2008-03-27 18:01:38 -05:00
|
|
|
try:
|
|
|
|
self.fstore.restore_file(f)
|
2015-07-30 09:49:29 -05:00
|
|
|
except ValueError as error:
|
2011-11-15 13:39:31 -06:00
|
|
|
root_logger.debug(error)
|
2008-01-11 05:57:36 -06:00
|
|
|
|
2016-11-03 11:54:14 -05:00
|
|
|
installutils.remove_keytab(self.keytab)
|
2016-11-29 10:10:22 -06:00
|
|
|
installutils.remove_file(paths.HTTP_CCACHE)
|
2015-05-15 08:45:34 -05:00
|
|
|
|
2011-09-09 16:07:09 -05:00
|
|
|
# Remove the configuration files we create
|
2014-05-29 07:47:17 -05:00
|
|
|
installutils.remove_file(paths.HTTPD_IPA_REWRITE_CONF)
|
|
|
|
installutils.remove_file(paths.HTTPD_IPA_CONF)
|
|
|
|
installutils.remove_file(paths.HTTPD_IPA_PKI_PROXY_CONF)
|
2015-06-23 10:01:00 -05:00
|
|
|
installutils.remove_file(paths.HTTPD_IPA_KDCPROXY_CONF_SYMLINK)
|
2015-06-29 03:45:15 -05:00
|
|
|
installutils.remove_file(paths.HTTPD_IPA_KDCPROXY_CONF)
|
2016-03-16 03:04:42 -05:00
|
|
|
tasks.remove_httpd_service_ipa_conf()
|
2011-09-09 16:07:09 -05:00
|
|
|
|
2014-08-14 10:14:07 -05:00
|
|
|
# Restore SELinux boolean states
|
|
|
|
boolean_states = {name: self.restore_state(name)
|
|
|
|
for name in SELINUX_BOOLEAN_SETTINGS}
|
|
|
|
try:
|
|
|
|
tasks.set_selinux_booleans(boolean_states)
|
|
|
|
except ipapython.errors.SetseboolError as e:
|
|
|
|
self.print_msg('WARNING: ' + str(e))
|
2008-01-11 05:57:36 -06:00
|
|
|
|
2015-01-27 04:04:03 -06:00
|
|
|
if running:
|
|
|
|
self.restart()
|
|
|
|
|
|
|
|
# disabled by default, by ldap_enable()
|
|
|
|
if enabled:
|
|
|
|
self.enable()
|
2013-03-26 12:06:50 -05:00
|
|
|
|
|
|
|
def stop_tracking_certificates(self):
|
2016-12-13 09:32:32 -06:00
|
|
|
db = certs.CertDB(api.env.realm, nssdir=paths.HTTPD_ALIAS_DIR)
|
2013-03-26 12:06:50 -05:00
|
|
|
db.untrack_server_cert(self.cert_nickname)
|
2016-02-17 08:18:17 -06:00
|
|
|
|
|
|
|
def start_tracking_certificates(self):
|
2016-12-13 09:32:32 -06:00
|
|
|
db = certs.CertDB(self.realm, nssdir=paths.HTTPD_ALIAS_DIR)
|
2016-02-17 08:18:17 -06:00
|
|
|
db.track_server_cert(self.cert_nickname, self.principal,
|
|
|
|
db.passwd_fname, 'restart_httpd')
|