0000-12-31 18:09:24 -05:50
#! /usr/bin/python -E
# Authors: Karl MacMillan <kmacmillan@mentalrootkit.com>
2010-12-06 15:16:49 -06:00
# Simo Sorce <ssorce@redhat.com>
# Rob Crittenden <rcritten@redhat.com>
0000-12-31 18:09:24 -05:50
#
2010-12-06 15:16:49 -06:00
# Copyright (C) 2007-2010 Red Hat
0000-12-31 18:09:24 -05:50
# 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.
0000-12-31 18:09:24 -05:50
#
# 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/>.
0000-12-31 18:09:24 -05:50
#
# requires the following packages:
# fedora-ds-base
# openldap-clients
# nss-tools
0000-12-31 18:09:24 -05:50
import sys
2007-10-02 15:56:51 -05:00
import os
2007-10-15 12:27:05 -05:00
import errno
2011-01-28 14:45:19 -06:00
import grp
2007-10-03 16:37:13 -05:00
import subprocess
2007-10-02 15:56:51 -05:00
import signal
import shutil
import glob
2011-11-03 05:08:26 -05:00
import pickle
2009-08-27 13:12:55 -05:00
import random
2011-01-26 09:53:02 -06:00
import tempfile
2011-08-17 03:19:37 -05:00
import nss.error
2012-05-25 07:13:01 -05:00
from optparse import OptionGroup, OptionValueError, SUPPRESS_HELP
0000-12-31 18:09:24 -05:50
2009-02-02 12:50:53 -06:00
from ipaserver.install import dsinstance
from ipaserver.install import krbinstance
from ipaserver.install import bindinstance
from ipaserver.install import httpinstance
from ipaserver.install import ntpinstance
2009-04-13 12:39:15 -05:00
from ipaserver.install import certs
2010-02-24 10:38:09 -06:00
from ipaserver.install import cainstance
2012-02-06 12:15:06 -06:00
from ipaserver.install import memcacheinstance
2012-06-08 01:31:37 -05:00
from ipaserver.install import sysupgrade
0000-12-31 18:09:24 -05:50
2012-05-31 07:34:09 -05:00
from ipaserver.install import service, installutils
2009-02-05 14:03:08 -06:00
from ipapython import version
2012-10-23 15:31:37 -05:00
from ipapython import certmonger
2009-02-02 12:50:53 -06:00
from ipaserver.install.installutils import *
2010-03-24 09:51:31 -05:00
from ipaserver.plugins.ldap2 import ldap2
0000-12-31 18:09:24 -05:50
2009-02-05 14:03:08 -06:00
from ipapython import sysrestore
from ipapython.ipautil import *
2012-04-18 10:22:35 -05:00
from ipapython import ipautil
2012-08-23 11:38:45 -05:00
from ipapython import dogtag
2010-03-24 09:51:31 -05:00
from ipalib import api, errors, util
2010-10-29 13:24:31 -05:00
from ipapython.config import IPAOptionParser
2011-08-17 03:19:37 -05:00
from ipalib.x509 import load_certificate_from_file, load_certificate_chain_from_file
2012-05-11 14:56:43 -05:00
from ipalib.util import validate_domain_name
2011-09-12 16:11:54 -05:00
from ipapython import services as ipaservices
2011-11-15 13:39:31 -06:00
from ipapython.ipa_log_manager import *
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
from ipapython.dn import DN
0000-12-31 18:09:24 -05:50
2012-12-07 09:44:32 -06:00
import ipaclient.ntpconf
2008-07-11 10:34:29 -05:00
pw_name = None
2010-04-27 16:51:13 -05:00
uninstalling = False
2011-11-29 02:10:31 -06:00
installation_cleanup = True
2008-07-11 10:34:29 -05:00
2012-08-15 20:33:15 -05:00
VALID_SUBJECT_ATTRS = ['st', 'o', 'ou', 'dnqualifier', 'c',
2011-07-07 10:55:20 -05:00
'serialnumber', 'l', 'title', 'sn', 'givenname',
'initials', 'generationqualifier', 'dc', 'mail',
'uid', 'postaladdress', 'postalcode', 'postofficebox',
'houseidentifier', 'e', 'street', 'pseudonym',
'incorporationlocality', 'incorporationstate',
'incorporationcountry', 'businesscategory']
def subject_callback(option, opt_str, value, parser):
"""
Make sure the certificate subject base is a valid DN
"""
v = unicode(value, 'utf-8')
2011-09-26 01:27:01 -05:00
if any(ord(c) < 0x20 for c in v):
raise OptionValueError("Subject base must not contain control characters")
if '&' in v:
raise OptionValueError("Subject base must not contain an ampersand (\"&\")")
2011-07-07 10:55:20 -05:00
try:
dn = DN(v)
2011-07-28 13:32:26 -05:00
for rdn in dn:
if rdn.attr.lower() not in VALID_SUBJECT_ATTRS:
2012-08-15 20:33:15 -05:00
raise OptionValueError('%s=%s has invalid attribute: "%s"' % (opt_str, value, rdn.attr))
2011-07-07 10:55:20 -05:00
except ValueError, e:
2012-08-15 20:33:15 -05:00
raise OptionValueError('%s=%s has invalid subject base format: %s' % (opt_str, value, e))
parser.values.subject = dn
2011-07-07 10:55:20 -05:00
2011-09-26 01:27:01 -05:00
def validate_dm_password(password):
if len(password) < 8:
raise ValueError("Password must be at least 8 characters long")
if any(ord(c) < 0x20 for c in password):
raise ValueError("Password must not contain control characters")
2012-05-11 08:08:59 -05:00
if any(ord(c) >= 0x7F for c in password):
raise ValueError("Password must only contain ASCII characters")
# Disallow characters that pkisilent doesn't process properly:
bad_characters = ' &\\<'
if any(c in bad_characters for c in password):
raise ValueError('Password must not contain these characters: %s' %
', '.join('"%s"' % c for c in bad_characters))
2011-09-26 01:27:01 -05:00
0000-12-31 18:09:24 -05:50
def parse_options():
2010-12-06 15:16:49 -06:00
# Guaranteed to give a random 200k range below the 2G mark (uint32_t limit)
namespace = random.randint(1, 10000) * 200000
2010-10-29 13:24:31 -05:00
parser = IPAOptionParser(version=version.VERSION)
2011-09-05 04:04:17 -05:00
basic_group = OptionGroup(parser, "basic options")
basic_group.add_option("-r", "--realm", dest="realm_name",
0000-12-31 18:09:24 -05:50
help="realm name")
2011-09-05 04:04:17 -05:00
basic_group.add_option("-n", "--domain", dest="domain_name",
2008-02-15 19:47:29 -06:00
help="domain name")
2011-09-05 04:04:17 -05:00
basic_group.add_option("-p", "--ds-password", dest="dm_password",
2010-10-29 13:24:31 -05:00
sensitive=True, help="admin password")
2011-09-05 04:04:17 -05:00
basic_group.add_option("-P", "--master-password",
2010-10-29 13:24:31 -05:00
dest="master_password", sensitive=True,
2008-02-25 16:18:18 -06:00
help="kerberos master password (normally autogenerated)")
2011-09-05 04:04:17 -05:00
basic_group.add_option("-a", "--admin-password",
2010-10-29 13:24:31 -05:00
sensitive=True, dest="admin_password",
2007-08-31 17:40:01 -05:00
help="admin user kerberos password")
2011-09-05 04:04:17 -05:00
basic_group.add_option("--hostname", dest="host_name", help="fully qualified name of server")
basic_group.add_option("--ip-address", dest="ip_address",
type="ip", ip_local=True,
help="Master Server IP Address")
basic_group.add_option("-N", "--no-ntp", dest="conf_ntp", action="store_false",
help="do not configure ntp", default=True)
basic_group.add_option("--idstart", dest="idstart", default=namespace, type=int,
help="The starting value for the IDs range (default random)")
basic_group.add_option("--idmax", dest="idmax", default=0, type=int,
help="The max value value for the IDs range (default: idstart+199999)")
basic_group.add_option("--no_hbac_allow", dest="hbac_allow", default=False,
action="store_true",
help="Don't install allow_all HBAC rule")
basic_group.add_option("--no-ui-redirect", dest="ui_redirect", action="store_false",
default=True, help="Do not automatically redirect to the Web UI")
2011-12-07 02:49:09 -06:00
basic_group.add_option("--ssh-trust-dns", dest="trust_sshfp", default=False, action="store_true",
help="configure OpenSSH client to trust DNS SSHFP records")
2012-09-12 08:19:26 -05:00
basic_group.add_option("--no-ssh", dest="conf_ssh", default=True, action="store_false",
help="do not configure OpenSSH client")
2011-12-07 02:49:09 -06:00
basic_group.add_option("--no-sshd", dest="conf_sshd", default=True, action="store_false",
help="do not configure OpenSSH server")
2011-09-05 04:04:17 -05:00
basic_group.add_option("-d", "--debug", dest="debug", action="store_true",
2007-09-20 14:10:21 -05:00
default=False, help="print debugging information")
2011-09-05 04:04:17 -05:00
basic_group.add_option("-U", "--unattended", dest="unattended", action="store_true",
default=False, help="unattended (un)installation never prompts the user")
parser.add_option_group(basic_group)
cert_group = OptionGroup(parser, "certificate system options")
cert_group.add_option("", "--external-ca", dest="external_ca", action="store_true",
2009-09-10 15:15:14 -05:00
default=False, help="Generate a CSR to be signed by an external CA")
2011-09-05 04:04:17 -05:00
cert_group.add_option("", "--external_cert_file", dest="external_cert_file",
2009-09-10 15:15:14 -05:00
help="File containing PKCS#10 certificate")
2011-09-05 04:04:17 -05:00
cert_group.add_option("", "--external_ca_file", dest="external_ca_file",
2009-09-10 15:15:14 -05:00
help="File containing PKCS#10 of the external CA chain")
2011-09-05 04:04:17 -05:00
cert_group.add_option("--no-pkinit", dest="setup_pkinit", action="store_false",
default=True, help="disables pkinit setup steps")
cert_group.add_option("--dirsrv_pkcs12", dest="dirsrv_pkcs12",
help="PKCS#12 file containing the Directory Server SSL certificate")
cert_group.add_option("--http_pkcs12", dest="http_pkcs12",
help="PKCS#12 file containing the Apache Server SSL certificate")
cert_group.add_option("--pkinit_pkcs12", dest="pkinit_pkcs12",
help="PKCS#12 file containing the Kerberos KDC SSL certificate")
cert_group.add_option("--dirsrv_pin", dest="dirsrv_pin", sensitive=True,
help="The password of the Directory Server PKCS#12 file")
cert_group.add_option("--http_pin", dest="http_pin", sensitive=True,
help="The password of the Apache Server PKCS#12 file")
cert_group.add_option("--pkinit_pin", dest="pkinit_pin",
help="The password of the Kerberos KDC PKCS#12 file")
cert_group.add_option("--subject", action="callback", callback=subject_callback,
type="string",
help="The certificate subject base (default O=<realm-name>)")
2011-10-03 05:30:34 -05:00
cert_group.add_option("", "--selfsign", dest="selfsign", action="store_true",
default=False, help="Configure a self-signed CA instance rather than a dogtag CA. " \
"WARNING: Certificate management capabilities will be limited")
2011-09-05 04:04:17 -05:00
parser.add_option_group(cert_group)
dns_group = OptionGroup(parser, "DNS options")
dns_group.add_option("--setup-dns", dest="setup_dns", action="store_true",
2009-06-25 07:42:08 -05:00
default=False, help="configure bind with our zone")
2011-09-05 04:04:17 -05:00
dns_group.add_option("--forwarder", dest="forwarders", action="append",
2011-06-16 03:47:11 -05:00
type="ip", help="Add a DNS forwarder")
2011-09-05 04:04:17 -05:00
dns_group.add_option("--no-forwarders", dest="no_forwarders", action="store_true",
2009-09-01 16:28:52 -05:00
default=False, help="Do not add any DNS forwarders, use root servers instead")
2011-09-05 04:04:17 -05:00
dns_group.add_option("--reverse-zone", dest="reverse_zone", help="The reverse DNS zone to use")
dns_group.add_option("--no-reverse", dest="no_reverse", action="store_true",
2011-01-04 07:55:47 -06:00
default=False, help="Do not create reverse DNS zone")
2011-10-24 11:35:48 -05:00
dns_group.add_option("--zonemgr", action="callback", callback=bindinstance.zonemgr_callback,
2011-04-22 16:18:57 -05:00
type="string",
2012-02-20 06:40:13 -06:00
help="DNS zone manager e-mail address. Defaults to hostmaster@DOMAIN")
2012-05-25 07:13:01 -05:00
# this option name has been deprecated, persistent search has been enabled by default
2011-09-05 04:04:17 -05:00
dns_group.add_option("--zone-notif", dest="zone_notif",
2012-05-25 07:13:01 -05:00
action="store_true", default=False, help=SUPPRESS_HELP)
dns_group.add_option("--no-persistent-search", dest="persistent_search",
default=True, action="store_false",
help="Do not enable persistent search feature in the name server")
2011-09-05 04:04:17 -05:00
dns_group.add_option("--zone-refresh", dest="zone_refresh",
2012-05-25 07:13:01 -05:00
default=0, type="int",
help="When set to non-zero the name server will use DNS zone "
"detection based on polling instead of a persistent search")
2011-09-05 04:04:17 -05:00
dns_group.add_option("--no-host-dns", dest="no_host_dns", action="store_true",
2008-09-16 21:18:11 -05:00
default=False,
help="Do not use DNS for hostname lookup during installation")
2011-12-07 02:40:51 -06:00
dns_group.add_option("--no-dns-sshfp", dest="create_sshfp", default=True, action="store_false",
2012-06-28 09:46:48 -05:00
help="Do not automatically create DNS SSHFP records")
dns_group.add_option("--no-serial-autoincrement", dest="serial_autoincrement",
default=True, action="store_false",
help="Do not enable SOA serial autoincrement")
2011-09-05 04:04:17 -05:00
parser.add_option_group(dns_group)
uninstall_group = OptionGroup(parser, "uninstall options")
uninstall_group.add_option("", "--uninstall", dest="uninstall", action="store_true",
default=False, help="uninstall an existing installation. The uninstall can " \
"be run with --unattended option")
parser.add_option_group(uninstall_group)
0000-12-31 18:09:24 -05:50
options, args = parser.parse_args()
2010-10-29 13:24:31 -05:00
safe_options = parser.get_safe_opts(options)
0000-12-31 18:09:24 -05:50
2011-09-26 01:27:01 -05:00
if options.dm_password is not None:
try:
validate_dm_password(options.dm_password)
except ValueError, e:
parser.error("DS admin password: " + str(e))
2011-08-15 02:02:39 -05:00
if options.admin_password is not None and len(options.admin_password) < 8:
parser.error("Admin user password must be at least 8 characters long")
2012-05-11 14:56:43 -05:00
if options.domain_name is not None:
try:
validate_domain_name(options.domain_name)
except ValueError, e:
parser.error("invalid domain: " + unicode(e))
2009-09-01 16:28:52 -05:00
if not options.setup_dns:
if options.forwarders:
parser.error("You cannot specify a --forwarder option without the --setup-dns option")
if options.no_forwarders:
parser.error("You cannot specify a --no-forwarders option without the --setup-dns option")
2011-07-11 03:14:53 -05:00
if options.reverse_zone:
parser.error("You cannot specify a --reverse-zone option without the --setup-dns option")
2011-01-04 07:55:47 -06:00
if options.no_reverse:
parser.error("You cannot specify a --no-reverse option without the --setup-dns option")
2009-09-01 16:28:52 -05:00
elif options.forwarders and options.no_forwarders:
parser.error("You cannot specify a --forwarder option together with --no-forwarders")
2011-07-11 03:14:53 -05:00
elif options.reverse_zone and options.no_reverse:
parser.error("You cannot specify a --reverse-zone option together with --no-reverse")
2009-09-01 16:28:52 -05:00
2008-01-11 05:57:36 -06:00
if options.uninstall:
2011-01-28 14:45:19 -06:00
if (options.realm_name or
2010-04-15 04:08:48 -05:00
options.admin_password or options.master_password):
2011-01-28 14:45:19 -06:00
parser.error("In uninstall mode, -a, -r and -P options are not allowed")
2008-01-11 05:57:36 -06:00
elif options.unattended:
2011-01-24 13:58:11 -06:00
if (not options.realm_name or
2008-02-25 16:18:18 -06:00
not options.dm_password or not options.admin_password):
2011-01-24 13:58:11 -06:00
parser.error("In unattended mode you need to provide at least -r, -p and -a options")
2009-09-01 16:28:52 -05:00
if options.setup_dns:
if not options.forwarders and not options.no_forwarders:
parser.error("You must specify at least one --forwarder option or --no-forwarders option")
0000-12-31 18:09:24 -05:50
2008-07-11 10:34:29 -05:00
# If any of the PKCS#12 options are selected, all are required. Create a
# list of the options and count it to enforce that all are required without
# having a huge set of it blocks.
pkcs12 = [options.dirsrv_pkcs12, options.http_pkcs12, options.dirsrv_pin, options.http_pin]
cnt = pkcs12.count(None)
if cnt > 0 and cnt < 4:
2009-11-23 01:42:30 -06:00
parser.error("All PKCS#12 options are required if any are used.")
2008-07-11 10:34:29 -05:00
2010-02-24 10:38:09 -06:00
if (options.external_cert_file or options.external_ca_file) and options.selfsign:
parser.error("--selfsign cannot be used with the external CA options.")
2009-09-10 15:15:14 -05:00
2011-07-26 06:21:36 -05:00
if options.external_ca:
if options.external_cert_file:
parser.error("You cannot specify --external_cert_file together with --external-ca")
if options.external_ca_file:
parser.error("You cannot specify --external_ca_file together with --external-ca")
2009-09-10 15:15:14 -05:00
if ((options.external_cert_file and not options.external_ca_file) or
(not options.external_cert_file and options.external_ca_file)):
2011-07-26 06:21:36 -05:00
parser.error("if either external CA option is used, both are required.")
2009-09-10 15:15:14 -05:00
2010-04-01 16:20:38 -05:00
if (options.external_ca_file and not os.path.isabs(options.external_ca_file)):
parser.error("--external-ca-file must use an absolute path")
if (options.external_cert_file and not os.path.isabs(options.external_cert_file)):
parser.error("--external-cert-file must use an absolute path")
2010-11-11 17:15:28 -06:00
if options.idmax == 0:
2010-12-06 15:16:49 -06:00
options.idmax = int(options.idstart) + 200000 - 1
2010-11-11 17:15:28 -06:00
if options.idmax < options.idstart:
2011-04-07 10:26:15 -05:00
parser.error("idmax (%u) cannot be smaller than idstart (%u)" %
2010-11-11 17:15:28 -06:00
(options.idmax, options.idstart))
2010-11-19 10:22:10 -06:00
#Automatically disable pkinit w/ dogtag until that is supported
if not options.pkinit_pkcs12 and not options.selfsign:
options.setup_pkinit = False
2011-08-31 07:42:57 -05:00
if options.zone_refresh < 0:
parser.error("negative numbers not allowed for --zone-refresh")
2012-05-25 07:13:01 -05:00
elif options.zone_refresh > 0:
options.persistent_search = False # mutually exclusive features
2011-08-31 07:42:57 -05:00
2012-06-28 09:46:48 -05:00
if options.serial_autoincrement and not options.persistent_search:
parser.error('persistent search feature is required for '
'DNS SOA serial autoincrement')
2012-05-25 07:13:01 -05:00
if options.zone_notif:
print >>sys.stderr, "WARNING: --zone-notif option is deprecated and has no effect"
2011-08-31 07:42:57 -05:00
2010-10-29 13:24:31 -05:00
return safe_options, options
0000-12-31 18:09:24 -05:50
2007-10-02 15:56:51 -05:00
def signal_handler(signum, frame):
global ds
print "\nCleaning up..."
if ds:
print "Removing configuration for %s instance" % ds.serverid
ds.stop()
if ds.serverid:
2009-02-02 12:50:53 -06:00
dsinstance.erase_ds_instance_data (ds.serverid)
2007-10-02 15:56:51 -05:00
sys.exit(1)
2009-11-18 13:28:33 -06:00
ANSWER_CACHE = "/root/.ipa_cache"
2011-01-26 09:53:02 -06:00
def read_cache(dm_password):
2009-11-18 13:28:33 -06:00
"""
2011-11-03 05:08:26 -05:00
Returns a dict of cached answers or empty dict if no cache file exists.
2009-11-18 13:28:33 -06:00
"""
if not ipautil.file_exists(ANSWER_CACHE):
return {}
2011-01-26 09:53:02 -06:00
top_dir = tempfile.mkdtemp("ipa")
2011-11-03 05:08:26 -05:00
fname = "%s/cache" % top_dir
2011-01-26 09:53:02 -06:00
try:
2011-11-03 05:08:26 -05:00
decrypt_file(ANSWER_CACHE, fname, dm_password, top_dir)
2011-01-26 09:53:02 -06:00
except Exception, e:
shutil.rmtree(top_dir)
2011-11-03 05:08:26 -05:00
raise Exception("Decryption of answer cache in %s failed, please check your password." % ANSWER_CACHE)
2011-01-26 09:53:02 -06:00
2009-11-18 13:28:33 -06:00
try:
2011-11-03 05:08:26 -05:00
with open(fname, 'rb') as f:
try:
optdict = pickle.load(f)
except Exception, e:
raise Exception("Parse error in %s: %s" % (ANSWER_CACHE, str(e)))
2009-11-18 13:28:33 -06:00
except IOError, e:
2011-11-03 05:08:26 -05:00
raise Exception("Read error in %s: %s" % (ANSWER_CACHE, str(e)))
2011-01-26 09:53:02 -06:00
finally:
shutil.rmtree(top_dir)
2009-11-18 13:28:33 -06:00
# These are the only ones that may be overridden
2011-11-03 05:08:26 -05:00
for opt in ('external_ca_file', 'external_cert_file'):
try:
del optdict[opt]
except KeyError:
pass
2009-11-18 13:28:33 -06:00
return optdict
def write_cache(options):
"""
Takes a dict as input and writes a cached file of answers
"""
2011-01-26 09:53:02 -06:00
top_dir = tempfile.mkdtemp("ipa")
2011-11-03 05:08:26 -05:00
fname = "%s/cache" % top_dir
2009-11-18 13:28:33 -06:00
try:
2011-11-03 05:08:26 -05:00
with open(fname, 'wb') as f:
pickle.dump(options, f)
ipautil.encrypt_file(fname, ANSWER_CACHE, options['dm_password'], top_dir)
2009-11-18 13:28:33 -06:00
except IOError, e:
2011-11-03 05:08:26 -05:00
raise Exception("Unable to cache command-line options %s" % str(e))
2011-01-26 09:53:02 -06:00
finally:
shutil.rmtree(top_dir)
2009-11-18 13:28:33 -06:00
2008-09-16 21:18:11 -05:00
def read_host_name(host_default,no_host_dns=False):
0000-12-31 18:09:24 -05:50
host_name = ""
print "Enter the fully qualified domain name of the computer"
print "on which you're setting up server software. Using the form"
print "<hostname>.<domainname>"
print "Example: master.example.com."
print ""
print ""
if host_default == "":
host_default = "master.example.com"
2011-10-06 04:26:03 -05:00
host_name = user_input("Server host name", host_default, allow_empty = False)
print ""
verify_fqdn(host_name,no_host_dns)
0000-12-31 18:09:24 -05:50
return host_name
2008-02-25 16:16:18 -06:00
def read_domain_name(domain_name, unattended):
2012-05-22 05:19:53 -05:00
print "The domain name has been determined based on the host name."
2008-02-15 19:47:29 -06:00
print ""
2008-02-25 16:16:18 -06:00
if not unattended:
2008-07-21 05:25:37 -05:00
domain_name = user_input("Please confirm the domain name", domain_name)
2008-02-25 16:16:18 -06:00
print ""
2008-02-15 19:47:29 -06:00
return domain_name
2008-02-25 16:16:18 -06:00
def read_realm_name(domain_name, unattended):
0000-12-31 18:09:24 -05:50
print "The kerberos protocol requires a Realm name to be defined."
print "This is typically the domain name converted to uppercase."
print ""
2009-05-12 08:20:24 -05:00
2008-02-25 16:16:18 -06:00
if unattended:
2008-07-21 05:25:37 -05:00
return domain_name.upper()
realm_name = user_input("Please provide a realm name", domain_name.upper())
2011-04-07 09:53:52 -05:00
upper_dom = realm_name.upper() #pylint: disable=E1103
2008-07-21 05:25:37 -05:00
if upper_dom != realm_name:
print "An upper-case realm name is required."
if not user_input("Do you want to use " + upper_dom + " as realm name?", True):
2008-02-25 16:16:18 -06:00
print ""
2008-07-21 05:25:37 -05:00
print "An upper-case realm name is required. Unable to continue."
sys.exit(1)
else:
realm_name = upper_dom
print ""
0000-12-31 18:09:24 -05:50
return realm_name
2008-07-21 05:25:37 -05:00
0000-12-31 18:09:24 -05:50
def read_dm_password():
print "Certain directory server operations require an administrative user."
print "This user is referred to as the Directory Manager and has full access"
2008-01-29 10:33:44 -06:00
print "to the Directory for system management tasks and will be added to the"
2008-01-25 16:08:36 -06:00
print "instance of directory server created for IPA."
0000-12-31 18:09:24 -05:50
print "The password must be at least 8 characters long."
0000-12-31 18:09:24 -05:50
print ""
#TODO: provide the option of generating a random password
2011-09-26 01:27:01 -05:00
dm_password = read_password("Directory Manager", validator=validate_dm_password)
0000-12-31 18:09:24 -05:50
return dm_password
def read_admin_password():
print "The IPA server requires an administrative user, named 'admin'."
print "This user is a regular system account used for IPA server administration."
print ""
#TODO: provide the option of generating a random password
admin_password = read_password("IPA admin")
return admin_password
2008-05-30 14:31:13 -05:00
def check_dirsrv(unattended):
2009-02-02 12:50:53 -06:00
(ds_unsecure, ds_secure) = dsinstance.check_ports()
2008-01-22 02:03:06 -06:00
if not ds_unsecure or not ds_secure:
print "IPA requires ports 389 and 636 for the Directory Server."
print "These are currently in use:"
if not ds_unsecure:
print "\t389"
if not ds_secure:
print "\t636"
sys.exit(1)
2010-10-06 09:16:54 -05:00
def uninstall():
2010-04-15 04:08:48 -05:00
2011-08-29 10:16:52 -05:00
rv = 0
2010-11-08 10:05:37 -06:00
print "Shutting down all IPA services"
try:
(stdout, stderr, rc) = run(["/usr/sbin/ipactl", "stop"], raiseonerr=False)
except Exception, e:
pass
2012-08-23 11:38:45 -05:00
# Need to get dogtag info before /etc/ipa/default.conf is removed
dogtag_constants = dogtag.configured_constants()
2010-11-08 10:05:37 -06:00
print "Removing IPA client configuration"
2008-03-31 16:35:45 -05:00
try:
2010-08-31 16:21:25 -05:00
(stdout, stderr, rc) = run(["/usr/sbin/ipa-client-install", "--on-master", "--unattended", "--uninstall"], raiseonerr=False)
2010-09-23 11:07:29 -05:00
if rc not in [0,2]:
2011-11-15 13:39:31 -06:00
root_logger.debug("ipa-client-install returned %d" % rc)
2010-08-31 16:21:25 -05:00
raise RuntimeError(stdout)
2008-03-31 16:35:45 -05:00
except Exception, e:
2011-08-29 10:16:52 -05:00
rv = 1
2008-03-31 16:35:45 -05:00
print "Uninstall of client side components failed!"
print "ipa-client-install returned: " + str(e)
2009-02-02 12:50:53 -06:00
ntpinstance.NTPInstance(fstore).uninstall()
2012-11-12 08:49:46 -06:00
if not dogtag_constants.SHARED_DB:
2012-09-19 22:35:42 -05:00
cads_instance = cainstance.CADSInstance(
dogtag_constants=dogtag_constants)
if cads_instance.is_configured():
cads_instance.uninstall()
2012-11-12 08:49:46 -06:00
cainstance.stop_tracking_certificates(dogtag_constants)
2012-08-23 11:38:45 -05:00
ca_instance = cainstance.CAInstance(
api.env.realm, certs.NSS_DIR, dogtag_constants=dogtag_constants)
if ca_instance.is_configured():
ca_instance.uninstall()
2009-02-02 12:50:53 -06:00
bindinstance.BindInstance(fstore).uninstall()
httpinstance.HTTPInstance(fstore).uninstall()
krbinstance.KrbInstance(fstore).uninstall()
2011-03-01 07:17:03 -06:00
dsinstance.DsInstance(fstore=fstore).uninstall()
2012-02-15 15:55:59 -06:00
memcacheinstance.MemcacheInstance().uninstall()
2012-12-05 03:50:05 -06:00
ipaservices.restore_network_configuration(fstore, sstore)
2008-03-27 18:01:38 -05:00
fstore.restore_all_files()
2009-11-18 13:28:33 -06:00
try:
os.remove(ANSWER_CACHE)
except Exception:
pass
2011-09-09 16:07:09 -05:00
2010-01-28 13:22:50 -06:00
# ipa-client-install removes /etc/ipa/default.conf
2011-01-28 14:45:19 -06:00
2011-02-07 12:31:51 -06:00
sstore._load()
2012-12-07 09:44:32 -06:00
ipaclient.ntpconf.restore_forced_ntpd(sstore)
2011-01-28 14:45:19 -06:00
group_exists = sstore.restore_state("install", "group_exists")
2011-09-12 16:11:54 -05:00
ipaservices.knownservices.ipa.disable()
2011-03-07 15:29:08 -06:00
2012-12-05 03:50:05 -06:00
ipautil.restore_hostname(sstore)
2011-10-13 05:16:15 -05:00
2012-06-08 01:31:37 -05:00
# remove upgrade state file
sysupgrade.remove_upgrade_file()
2011-08-29 10:16:52 -05:00
if fstore.has_files():
2011-11-15 13:39:31 -06:00
root_logger.error('Some files have not been restored, see /var/lib/ipa/sysrestore/sysrestore.index')
2011-08-29 10:16:52 -05:00
has_state = False
for module in IPA_MODULES: # from installutils
if sstore.has_state(module):
2011-11-15 13:39:31 -06:00
root_logger.error('Some installation state for %s has not been restored, see /var/lib/ipa/sysrestore/sysrestore.state' % module)
2011-08-29 10:16:52 -05:00
has_state = True
rv = 1
if has_state:
2012-10-23 15:31:37 -05:00
root_logger.error('Some installation state has not been restored.\nThis may cause re-installation to fail.\nIt should be safe to remove /var/lib/ipa/sysrestore.state but it may\nmean your system hasn\'t be restored to its pre-installation state.')
# Note that this name will be wrong after the first uninstall.
dirname = dsinstance.config_dirname(dsinstance.realm_to_serverid(api.env.realm))
2012-11-12 08:49:46 -06:00
dirs = [dirname, dogtag_constants.ALIAS_DIR, certs.NSS_DIR]
2012-10-23 15:31:37 -05:00
ids = certmonger.check_state(dirs)
if ids:
root_logger.error('Some certificates may still be tracked by certmonger.\nThis will cause re-installation to fail.\nStart the certmonger service and list the certificates being tracked\n # getcert list\nThese may be untracked by executing\n # getcert stop-tracking -i <request_id>\nfor each id in: %s' % ', '.join(ids))
2011-08-29 10:16:52 -05:00
return rv
2008-01-11 05:57:36 -06:00
2009-11-02 15:16:27 -06:00
2011-02-15 13:11:27 -06:00
def set_subject_in_config(realm_name, dm_password, suffix, subject_base):
ldapuri = 'ldapi://%%2fvar%%2frun%%2fslapd-%s.socket' % (
dsinstance.realm_to_serverid(realm_name)
)
2010-01-20 10:26:20 -06:00
try:
2010-03-24 09:51:31 -05:00
conn = ldap2(shared_instance=False, ldap_uri=ldapuri, base_dn=suffix)
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
conn.connect(bind_dn=DN(('cn', 'directory manager')), bind_pw=dm_password)
2010-03-24 09:51:31 -05:00
except errors.ExecutionError, e:
2011-11-15 13:39:31 -06:00
root_logger.critical("Could not connect to the Directory Server on %s" % realm_name)
2010-01-20 10:26:20 -06:00
raise e
2010-03-24 09:51:31 -05:00
(dn, entry_attrs) = conn.get_ipa_config()
if 'ipacertificatesubjectbase' not in entry_attrs:
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
mod = {'ipacertificatesubjectbase': str(subject_base)}
2010-03-24 09:51:31 -05:00
conn.update_entry(dn, mod)
conn.disconnect()
2009-11-02 15:16:27 -06:00
0000-12-31 18:09:24 -05:50
def main():
2007-10-02 15:56:51 -05:00
global ds
2008-07-11 10:34:29 -05:00
global pw_name
2010-04-27 16:51:13 -05:00
global uninstalling
2011-11-29 02:10:31 -06:00
global installation_cleanup
2007-10-02 15:56:51 -05:00
ds = None
0000-12-31 18:09:24 -05:50
2010-10-29 13:24:31 -05:00
safe_options, options = parse_options()
0000-12-31 18:09:24 -05:50
2007-10-02 15:56:51 -05:00
if os.getegid() != 0:
2010-11-08 16:13:48 -06:00
sys.exit("Must be root to set up server")
2008-02-20 09:16:19 -06:00
2012-05-31 06:59:33 -05:00
ipaservices.check_selinux_status()
2007-10-02 15:56:51 -05:00
signal.signal(signal.SIGTERM, signal_handler)
signal.signal(signal.SIGINT, signal_handler)
2008-03-24 11:22:34 -05:00
if options.uninstall:
2010-04-27 16:51:13 -05:00
uninstalling = True
2011-11-15 13:39:31 -06:00
standard_logging_setup("/var/log/ipaserver-uninstall.log", debug=options.debug)
2011-11-29 02:10:31 -06:00
installation_cleanup = False
2008-03-24 11:22:34 -05:00
else:
2011-11-15 13:39:31 -06:00
standard_logging_setup("/var/log/ipaserver-install.log", debug=options.debug)
2008-03-24 11:22:34 -05:00
print "\nThe log file for this installation can be found in /var/log/ipaserver-install.log"
2011-08-29 10:16:52 -05:00
if not options.external_ca and not options.external_cert_file and is_ipa_configured():
2011-11-29 02:10:31 -06:00
installation_cleanup = False
2012-09-10 06:11:40 -05:00
sys.exit("IPA server is already configured on this system.\n" +
"If you want to reinstall the IPA server, please uninstall " +
"it first using 'ipa-server-install --uninstall'.")
0000-12-31 18:09:24 -05:50
2011-02-24 06:02:27 -06:00
client_fstore = sysrestore.FileStore('/var/lib/ipa-client/sysrestore')
if client_fstore.has_files():
2011-11-29 02:10:31 -06:00
installation_cleanup = False
2012-09-10 06:11:40 -05:00
sys.exit("IPA client is already configured on this system.\n" +
"Please uninstall it before configuring the IPA server, " +
"using 'ipa-client-install --uninstall'")
2011-02-24 06:02:27 -06:00
2011-11-15 13:39:31 -06:00
root_logger.debug('%s was invoked with options: %s' % (sys.argv[0], safe_options))
root_logger.debug("missing options might be asked for interactively later\n")
2010-10-29 13:24:31 -05:00
2008-03-27 18:01:38 -05:00
global fstore
fstore = sysrestore.FileStore('/var/lib/ipa/sysrestore')
2011-01-28 14:45:19 -06:00
global sstore
sstore = sysrestore.StateFile('/var/lib/ipa/sysrestore')
2008-03-27 18:01:38 -05:00
2009-12-03 09:32:56 -06:00
# Configuration for ipalib, we will bootstrap and finalize later, after
# we are sure we have the configuration file ready.
2009-11-02 15:16:27 -06:00
cfg = dict(
2010-03-17 09:01:24 -05:00
context='installer',
2009-11-02 15:16:27 -06:00
in_server=True,
2009-11-19 09:33:50 -06:00
debug=options.debug
2009-11-02 15:16:27 -06:00
)
2009-09-28 22:34:15 -05:00
2008-01-11 05:57:36 -06:00
if options.uninstall:
2010-04-15 04:08:48 -05:00
# We will need at least api.env, finalize api now. This system is
# already installed, so the configuration file is there.
api.bootstrap(**cfg)
api.finalize()
2008-03-31 16:35:45 -05:00
if not options.unattended:
print "\nThis is a NON REVERSIBLE operation and will delete all data and configuration!\n"
2008-08-06 10:27:04 -05:00
if not user_input("Are you sure you want to continue with the uninstall procedure?", False):
2008-03-31 16:35:45 -05:00
print ""
print "Aborting uninstall operation."
sys.exit(1)
2010-10-06 09:16:54 -05:00
return uninstall()
2008-01-11 05:57:36 -06:00
2011-07-26 06:21:36 -05:00
if options.external_ca:
2012-09-19 22:35:42 -05:00
if cainstance.is_step_one_done():
2011-07-26 06:21:36 -05:00
print "CA is already installed.\nRun the installer with --external_cert_file and --external_ca_file."
sys.exit(1)
elif options.external_cert_file:
2012-09-19 22:35:42 -05:00
if not cainstance.is_step_one_done():
2011-07-26 06:21:36 -05:00
# This can happen if someone passes external_ca_file without
# already having done the first stage of the CA install.
print "CA is not installed yet. To install with an external CA is a two-stage process.\nFirst run the installer with --external-ca."
sys.exit(1)
2009-11-18 13:28:33 -06:00
# This will override any settings passed in on the cmdline
2011-01-26 09:53:02 -06:00
if ipautil.file_exists(ANSWER_CACHE):
2012-08-17 02:51:36 -05:00
if options.dm_password is not None:
dm_password = options.dm_password
else:
dm_password = read_password("Directory Manager", confirm=False)
2011-10-06 01:22:08 -05:00
if dm_password is None:
sys.exit("\nDirectory Manager password required")
2011-11-03 05:08:26 -05:00
try:
options._update_loose(read_cache(dm_password))
except Exception, e:
sys.exit("Cannot process the cache file: %s" % str(e))
2009-11-18 13:28:33 -06:00
2011-08-17 03:19:37 -05:00
if options.external_cert_file:
try:
extcert = load_certificate_from_file(options.external_cert_file)
except IOError, e:
print "Can't load the PKCS#10 certificate: %s." % str(e)
sys.exit(1)
except nss.error.NSPRError:
print "'%s' is not a valid PEM-encoded certificate." % options.external_cert_file
sys.exit(1)
2012-08-15 20:33:15 -05:00
certsubject = DN(str(extcert.subject))
wantsubject = DN(('CN','Certificate Authority'), options.subject)
if certsubject != wantsubject:
2011-08-17 03:19:37 -05:00
print "Subject of the PKCS#10 certificate is not correct (got %s, expected %s)." % (certsubject, wantsubject)
sys.exit(1)
try:
extchain = load_certificate_chain_from_file(options.external_ca_file)
except IOError, e:
print "Can't load the external CA chain: %s." % str(e)
sys.exit(1)
except nss.error.NSPRError:
print "'%s' is not a valid PEM-encoded certificate chain." % options.external_ca_file
sys.exit(1)
2012-08-15 20:33:15 -05:00
certdict = dict((DN(str(cert.subject)), cert) for cert in extchain)
certissuer = DN(str(extcert.issuer))
if certissuer not in certdict:
2011-08-17 03:19:37 -05:00
print "The PKCS#10 certificate is not signed by the external CA (unknown issuer %s)." % certissuer
sys.exit(1)
cert = extcert
while cert.issuer != cert.subject:
2012-08-15 20:33:15 -05:00
certissuer = DN(str(cert.issuer))
if certissuer not in certdict:
2011-08-17 03:19:37 -05:00
print "The external CA chain is incomplete (%s is missing from the chain)." % certissuer
sys.exit(1)
2012-08-15 20:33:15 -05:00
cert = certdict[certissuer]
2011-08-17 03:19:37 -05:00
2013-02-25 10:15:23 -06:00
# Figure out what external CA step we're in. See cainstance.py for more
# info on the 3 states.
if options.external_cert_file:
external = 2
elif options.external_ca:
external = 1
else:
external = 0
0000-12-31 18:09:24 -05:50
print "=============================================================================="
2010-02-03 13:56:17 -06:00
print "This program will set up the FreeIPA Server."
0000-12-31 18:09:24 -05:50
print ""
2008-01-25 16:08:36 -06:00
print "This includes:"
2011-10-03 05:30:34 -05:00
if options.selfsign:
print " * Configure NSS to handle a self-signed CA"
print " WARNING: certificate management capabilities will be limited"
else:
print " * Configure a stand-alone CA (dogtag) for certificate management"
2008-06-06 14:25:36 -05:00
if options.conf_ntp:
print " * Configure the Network Time Daemon (ntpd)"
2008-01-25 16:08:36 -06:00
print " * Create and configure an instance of Directory Server"
2008-03-04 13:47:47 -06:00
print " * Create and configure a Kerberos Key Distribution Center (KDC)"
2008-01-25 16:08:36 -06:00
print " * Configure Apache (httpd)"
2009-06-25 07:42:08 -05:00
if options.setup_dns:
2008-06-06 14:25:36 -05:00
print " * Configure DNS (bind)"
2010-10-29 15:23:21 -05:00
if options.setup_pkinit:
print " * Configure the KDC to enable PKINIT"
2008-06-06 14:25:36 -05:00
if not options.conf_ntp:
print ""
print "Excluded by options:"
print " * Configure the Network Time Daemon (ntpd)"
2008-01-25 16:08:36 -06:00
print ""
0000-12-31 18:09:24 -05:50
print "To accept the default shown in brackets, press the Enter key."
print ""
2013-02-25 10:15:23 -06:00
if external != 2:
# Make sure the 389-ds ports are available
check_dirsrv(options.unattended)
0000-12-31 18:09:24 -05:50
2012-12-07 09:44:32 -06:00
if options.conf_ntp:
try:
ipaclient.ntpconf.check_timedate_services()
except ipaclient.ntpconf.NTPConflictingService, e:
print "WARNING: conflicting time&date synchronization service '%s'" \
" will be disabled" % e.conflicting_service
print "in favor of ntpd"
print ""
except ipaclient.ntpconf.NTPConfigurationError:
pass
2007-08-20 17:40:32 -05:00
realm_name = ""
host_name = ""
2007-09-20 14:10:21 -05:00
domain_name = ""
ip_address = ""
2007-08-20 17:40:32 -05:00
master_password = ""
2007-08-31 17:40:01 -05:00
dm_password = ""
admin_password = ""
2011-07-11 03:14:53 -05:00
reverse_zone = None
2007-08-20 17:40:32 -05:00
2007-09-20 14:10:21 -05:00
# check bind packages are installed
2009-06-25 07:42:08 -05:00
if options.setup_dns:
2009-11-13 09:57:51 -06:00
if not bindinstance.check_inst(options.unattended):
2010-11-08 16:13:48 -06:00
sys.exit("Aborting installation")
2007-09-20 14:10:21 -05:00
2011-03-03 15:03:44 -06:00
# Don't require an external DNS to say who we are if we are
# setting up a local DNS server.
options.no_host_dns = True
0000-12-31 18:09:24 -05:50
# check the hostname is correctly configured, it must be as the kldap
2010-12-01 10:22:56 -06:00
# utilities just use the hostname as returned by getaddrinfo to set
0000-12-31 18:09:24 -05:50
# up some of the standard entries
0000-12-31 18:09:24 -05:50
host_default = ""
0000-12-31 18:09:24 -05:50
if options.host_name:
0000-12-31 18:09:24 -05:50
host_default = options.host_name
0000-12-31 18:09:24 -05:50
else:
0000-12-31 18:09:24 -05:50
host_default = get_fqdn()
2008-02-20 09:16:19 -06:00
2011-06-24 09:56:25 -05:00
try:
2012-11-13 11:01:35 -06:00
if options.unattended or options.host_name:
2008-09-16 21:18:11 -05:00
verify_fqdn(host_default,options.no_host_dns)
2011-06-24 09:56:25 -05:00
host_name = host_default
else:
host_name = read_host_name(host_default,options.no_host_dns)
2011-10-06 04:26:03 -05:00
except BadHostError, e:
2011-06-24 09:56:25 -05:00
sys.exit(str(e) + "\n")
2008-02-15 19:47:29 -06:00
2008-05-20 09:17:20 -05:00
host_name = host_name.lower()
2011-11-15 13:39:31 -06:00
root_logger.debug("will use host_name: %s\n" % host_name)
2008-05-20 09:17:20 -05:00
2011-10-13 05:16:15 -05:00
system_hostname = get_fqdn()
if host_name != system_hostname:
print >>sys.stderr
print >>sys.stderr, "Warning: hostname %s does not match system hostname %s." \
% (host_name, system_hostname)
print >>sys.stderr, "System hostname will be updated during the installation process"
print >>sys.stderr, "to prevent service failures."
print >>sys.stderr
2008-02-15 19:47:29 -06:00
if not options.domain_name:
2008-02-25 16:16:18 -06:00
domain_name = read_domain_name(host_name[host_name.find(".")+1:], options.unattended)
2011-11-15 13:39:31 -06:00
root_logger.debug("read domain_name: %s\n" % domain_name)
2012-05-11 14:56:43 -05:00
try:
validate_domain_name(domain_name)
except ValueError, e:
sys.exit("Invalid domain name: %s" % unicode(e))
2008-02-15 19:47:29 -06:00
else:
2008-02-25 16:16:18 -06:00
domain_name = options.domain_name
2007-09-20 14:10:21 -05:00
2008-05-20 09:17:20 -05:00
domain_name = domain_name.lower()
2012-01-04 13:04:21 -06:00
ip = get_server_ip_address(host_name, fstore, options.unattended, options)
2011-05-27 13:17:22 -05:00
ip_address = str(ip)
2011-07-11 03:14:53 -05:00
if options.reverse_zone and not bindinstance.verify_reverse_zone(options.reverse_zone, ip):
sys.exit(1)
2007-09-20 14:10:21 -05:00
2007-08-20 17:40:32 -05:00
if not options.realm_name:
2008-02-25 16:16:18 -06:00
realm_name = read_realm_name(domain_name, options.unattended)
2011-11-15 13:39:31 -06:00
root_logger.debug("read realm_name: %s\n" % realm_name)
2007-08-20 17:40:32 -05:00
else:
2008-06-03 10:28:27 -05:00
realm_name = options.realm_name.upper()
2007-08-20 17:40:32 -05:00
2010-11-01 12:51:14 -05:00
if not options.subject:
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
options.subject = DN(('O', realm_name))
2010-11-01 12:51:14 -05:00
2007-08-31 17:40:01 -05:00
if not options.dm_password:
0000-12-31 18:09:24 -05:50
dm_password = read_dm_password()
2011-10-06 01:22:08 -05:00
if dm_password is None:
sys.exit("\nDirectory Manager password required")
2007-08-20 17:40:32 -05:00
else:
2007-08-31 17:40:01 -05:00
dm_password = options.dm_password
2007-08-20 17:40:32 -05:00
if not options.master_password:
0000-12-31 18:09:24 -05:50
master_password = ipa_generate_password()
2007-08-20 17:40:32 -05:00
else:
master_password = options.master_password
0000-12-31 18:09:24 -05:50
2007-08-31 17:40:01 -05:00
if not options.admin_password:
0000-12-31 18:09:24 -05:50
admin_password = read_admin_password()
2011-10-06 01:22:08 -05:00
if admin_password is None:
sys.exit("\nIPA admin password required")
2007-08-31 17:40:01 -05:00
else:
admin_password = options.admin_password
2009-09-01 16:28:52 -05:00
if options.setup_dns:
if options.no_forwarders:
dns_forwarders = ()
elif options.forwarders:
dns_forwarders = options.forwarders
else:
dns_forwarders = read_dns_forwarders()
2011-07-26 07:53:19 -05:00
if options.reverse_zone:
reverse_zone = bindinstance.normalize_zone(options.reverse_zone)
elif not options.no_reverse:
2012-10-19 08:34:49 -05:00
if options.unattended:
reverse_zone = util.get_reverse_zone_default(ip)
elif bindinstance.create_reverse():
2012-10-16 10:11:26 -05:00
reverse_zone = util.get_reverse_zone_default(ip)
2011-07-26 07:53:19 -05:00
reverse_zone = bindinstance.read_reverse_zone(reverse_zone, ip)
if reverse_zone is not None:
print "Using reverse zone %s" % reverse_zone
2009-09-08 02:03:55 -05:00
else:
dns_forwarders = ()
2011-11-15 13:39:31 -06:00
root_logger.debug("will use dns_forwarders: %s\n" % str(dns_forwarders))
2009-09-01 16:28:52 -05:00
2011-12-07 06:58:35 -06:00
print
print "The IPA Master Server will be configured with:"
print "Hostname: %s" % host_name
print "IP address: %s" % ip_address
print "Domain name: %s" % domain_name
print "Realm name: %s" % realm_name
print
if options.setup_dns:
print "BIND DNS server will be configured to serve IPA domain with:"
print "Forwarders: %s" % ("No forwarders" if not dns_forwarders \
else ", ".join([str(ip) for ip in dns_forwarders]))
print "Reverse zone: %s" % ("No reverse zone" if options.no_reverse \
2012-10-16 10:11:26 -05:00
or reverse_zone is None else reverse_zone)
2011-12-07 06:58:35 -06:00
print
if not options.unattended and not user_input("Continue to configure the system with these values?", False):
sys.exit("Installation aborted")
2011-11-29 02:10:31 -06:00
# Installation has started. No IPA sysrestore items are restored in case of
# failure to enable root cause investigation
installation_cleanup = False
2009-12-03 09:32:56 -06:00
# Create the management framework config file and finalize api
2011-08-30 09:32:40 -05:00
target_fname = '/etc/ipa/default.conf'
fd = open(target_fname, "w")
fd.write("[global]\n")
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
fd.write("host=%s\n" % host_name)
fd.write("basedn=%s\n" % ipautil.realm_to_suffix(realm_name))
fd.write("realm=%s\n" % realm_name)
fd.write("domain=%s\n" % domain_name)
2011-09-30 03:09:55 -05:00
fd.write("xmlrpc_uri=https://%s/ipa/xml\n" % format_netloc(host_name))
2011-08-30 09:32:40 -05:00
fd.write("ldap_uri=ldapi://%%2fvar%%2frun%%2fslapd-%s.socket\n" % dsinstance.realm_to_serverid(realm_name))
fd.write("enable_ra=True\n")
if not options.selfsign:
fd.write("ra_plugin=dogtag\n")
2012-08-23 11:38:45 -05:00
fd.write("dogtag_version=%s\n" %
dogtag.install_constants.DOGTAG_VERSION)
2011-08-30 09:32:40 -05:00
fd.write("mode=production\n")
fd.close()
# Must be readable for everyone
os.chmod(target_fname, 0644)
2009-12-03 09:32:56 -06:00
api.bootstrap(**cfg)
api.finalize()
2007-09-20 14:10:21 -05:00
if not options.unattended:
print ""
print "The following operations may take some minutes to complete."
print "Please wait until the prompt is returned."
2009-09-10 15:15:14 -05:00
print ""
2008-02-20 10:03:46 -06:00
2011-10-13 05:16:15 -05:00
if host_name != system_hostname:
2011-11-15 13:39:31 -06:00
root_logger.debug("Chosen hostname (%s) differs from system hostname (%s) - change it" \
2011-10-13 05:16:15 -05:00
% (host_name, system_hostname))
# configure /etc/sysconfig/network to contain the custom hostname
ipaservices.backup_and_replace_hostname(fstore, sstore, host_name)
2011-01-28 14:45:19 -06:00
# Create DS group if it doesn't exist yet
try:
grp.getgrnam(dsinstance.DS_GROUP)
2011-11-15 13:39:31 -06:00
root_logger.debug("ds group %s exists" % dsinstance.DS_GROUP)
2011-01-28 14:45:19 -06:00
except KeyError:
args = ["/usr/sbin/groupadd", "-r", dsinstance.DS_GROUP]
try:
ipautil.run(args)
2011-11-15 13:39:31 -06:00
root_logger.debug("done adding DS group")
2011-01-28 14:45:19 -06:00
except ipautil.CalledProcessError, e:
2011-11-15 13:39:31 -06:00
root_logger.critical("failed to add DS group: %s" % e)
2011-01-28 14:45:19 -06:00
2012-09-19 22:35:42 -05:00
if options.dirsrv_pin:
[pw_fd, pw_name] = tempfile.mkstemp()
os.write(pw_fd, options.dirsrv_pin)
os.close(pw_fd)
pkcs12_info = (options.dirsrv_pkcs12, pw_name)
2013-02-25 10:15:23 -06:00
if external != 2:
# Configure ntpd
if options.conf_ntp:
ipaclient.ntpconf.force_ntpd(sstore)
ntp = ntpinstance.NTPInstance(fstore)
if not ntp.is_configured():
ntp.create_instance()
# Create a directory server instance
ds = dsinstance.DsInstance(fstore=fstore)
if options.dirsrv_pkcs12:
try:
ds.create_instance(realm_name, host_name, domain_name,
dm_password, pkcs12_info,
subject_base=options.subject,
hbac_allow=not options.hbac_allow)
finally:
os.remove(pw_name)
else:
2012-09-19 22:35:42 -05:00
ds.create_instance(realm_name, host_name, domain_name,
2013-02-25 10:15:23 -06:00
dm_password, self_signed_ca=options.selfsign,
idstart=options.idstart, idmax=options.idmax,
subject_base=options.subject,
hbac_allow=not options.hbac_allow)
2012-09-19 22:35:42 -05:00
else:
2013-02-25 10:15:23 -06:00
ds = dsinstance.DsInstance(fstore=fstore)
ds.init_info(
realm_name, host_name, domain_name, dm_password,
options.selfsign, options.subject, 1101, 1100, None)
2012-09-19 22:35:42 -05:00
2010-12-08 15:35:12 -06:00
if options.selfsign:
ca = certs.CertDB(realm_name, host_name=host_name,
subject_base=options.subject)
ca.create_self_signed()
else:
2009-04-13 12:39:15 -05:00
# Clean up any previous self-signed CA that may exist
try:
os.remove(certs.CA_SERIALNO)
except:
pass
2012-09-19 22:35:42 -05:00
if not dogtag.install_constants.SHARED_DB:
cs = cainstance.CADSInstance(
host_name, realm_name, domain_name, dm_password)
if not cs.is_configured():
cs.create_instance(realm_name, host_name, domain_name,
dm_password, subject_base=options.subject)
2012-08-23 11:38:45 -05:00
ca = cainstance.CAInstance(realm_name, certs.NSS_DIR,
dogtag_constants=dogtag.install_constants)
2009-09-10 15:15:14 -05:00
if external == 0:
2012-11-19 09:32:28 -06:00
ca.configure_instance(host_name, domain_name, dm_password,
dm_password, subject_base=options.subject)
2009-09-10 15:15:14 -05:00
elif external == 1:
2011-06-10 14:28:46 -05:00
# stage 1 of external CA installation
2010-04-01 16:20:38 -05:00
options.realm_name = realm_name
options.domain_name = domain_name
options.master_password = master_password
2011-01-26 09:53:02 -06:00
options.dm_password = dm_password
options.admin_password = admin_password
2011-07-26 06:21:36 -05:00
options.host_name = host_name
2010-04-01 16:20:38 -05:00
options.unattended = True
2011-07-26 06:21:36 -05:00
options.forwarders = dns_forwarders
options.reverse_zone = reverse_zone
2011-11-03 05:08:26 -05:00
write_cache(vars(options))
2012-11-19 09:32:28 -06:00
ca.configure_instance(host_name, domain_name, dm_password,
dm_password, csr_file="/root/ipa.csr",
2011-01-28 14:45:19 -06:00
subject_base=options.subject)
2009-09-10 15:15:14 -05:00
else:
2011-06-10 14:28:46 -05:00
# stage 2 of external CA installation
2012-11-19 09:32:28 -06:00
ca.configure_instance(host_name, domain_name, dm_password,
dm_password,
2011-01-28 14:45:19 -06:00
cert_file=options.external_cert_file,
cert_chain_file=options.external_ca_file,
subject_base=options.subject)
2009-09-10 15:15:14 -05:00
2010-12-10 13:53:06 -06:00
# Now put the CA cert where other instances exepct it
ca.publish_ca_cert("/etc/ipa/ca.crt")
2012-09-19 22:35:42 -05:00
# we now need to enable ssl on the ds
ds.enable_ssl()
ds.restart()
0000-12-31 18:09:24 -05:50
2011-03-09 23:06:15 -06:00
# We need to ldap_enable the CA now that DS is up and running
2010-12-10 13:53:06 -06:00
if not options.selfsign:
ca.ldap_enable('CA', host_name, dm_password,
2012-04-18 10:22:35 -05:00
ipautil.realm_to_suffix(realm_name))
2012-09-19 22:35:42 -05:00
if not dogtag.install_constants.SHARED_DB:
# Turn on SSL in the dogtag LDAP instance. This will get restarted
# later, we don't need SSL now.
cs.create_certdb()
cs.enable_ssl()
# Add the IPA service for storing the PKI-IPA server certificate.
cs.add_simple_service(cs.principal)
cs.add_cert_to_service()
else:
ca.enable_client_auth_to_db()
ca.restart()
2011-03-09 23:06:15 -06:00
2013-01-24 10:11:03 -06:00
# Upload the CA cert to the directory
ds.upload_ca_cert()
2010-12-10 13:53:06 -06:00
# Create a kerberos instance
2010-10-29 15:23:21 -05:00
if options.pkinit_pin:
[pw_fd, pw_name] = tempfile.mkstemp()
os.write(pw_fd, options.dirsrv_pin)
os.close(pw_fd)
2009-02-02 12:50:53 -06:00
krb = krbinstance.KrbInstance(fstore)
2010-10-29 15:23:21 -05:00
if options.pkinit_pkcs12:
pkcs12_info = (options.pkinit_pkcs12, pw_name)
2011-01-28 14:45:19 -06:00
krb.create_instance(realm_name, host_name, domain_name,
2010-10-29 15:23:21 -05:00
dm_password, master_password,
setup_pkinit=options.setup_pkinit,
pkcs12_info=pkcs12_info,
subject_base=options.subject)
else:
2011-01-28 14:45:19 -06:00
krb.create_instance(realm_name, host_name, domain_name,
2010-10-29 15:23:21 -05:00
dm_password, master_password,
setup_pkinit=options.setup_pkinit,
self_signed_ca=options.selfsign,
subject_base=options.subject)
if options.pkinit_pin:
os.remove(pw_name)
0000-12-31 18:09:24 -05:50
2009-12-07 22:17:00 -06:00
# The DS instance is created before the keytab, add the SSL cert we
# generated
ds.add_cert_to_service()
2007-10-15 14:42:12 -05:00
# Create a HTTP instance
2008-07-11 10:34:29 -05:00
if options.http_pin:
[pw_fd, pw_name] = tempfile.mkstemp()
os.write(pw_fd, options.http_pin)
os.close(pw_fd)
2012-02-06 12:15:06 -06:00
memcache = memcacheinstance.MemcacheInstance()
2012-04-18 10:22:35 -05:00
memcache.create_instance('MEMCACHE', host_name, dm_password, ipautil.realm_to_suffix(realm_name))
2012-02-06 12:15:06 -06:00
2009-02-02 12:50:53 -06:00
http = httpinstance.HTTPInstance(fstore)
2008-07-11 10:34:29 -05:00
if options.http_pkcs12:
pkcs12_info = (options.http_pkcs12, pw_name)
2011-08-16 12:34:04 -05:00
http.create_instance(realm_name, host_name, domain_name, dm_password, autoconfig=False, pkcs12_info=pkcs12_info, subject_base=options.subject, auto_redirect=options.ui_redirect)
2008-07-11 10:34:29 -05:00
os.remove(pw_name)
else:
2011-08-16 12:34:04 -05:00
http.create_instance(realm_name, host_name, domain_name, dm_password, autoconfig=True, self_signed_ca=options.selfsign, subject_base=options.subject, auto_redirect=options.ui_redirect)
2011-09-12 16:11:54 -05:00
ipaservices.restore_context("/var/cache/ipa/sessions")
0000-12-31 18:09:24 -05:50
2012-04-18 10:22:35 -05:00
set_subject_in_config(realm_name, dm_password, ipautil.realm_to_suffix(realm_name), options.subject)
2010-01-20 10:26:20 -06:00
2008-09-15 17:15:12 -05:00
# Apply any LDAP updates. Needs to be done after the configuration file
# is created
service.print_msg("Applying LDAP updates")
ds.apply_updates()
2007-09-20 14:10:21 -05:00
# Restart ds and krb after configurations have been changed
2011-02-02 09:24:30 -06:00
service.print_msg("Restarting the directory server")
2007-06-28 18:09:54 -05:00
ds.restart()
2008-02-20 09:16:19 -06:00
2011-02-02 09:24:30 -06:00
service.print_msg("Restarting the KDC")
2007-09-20 14:10:21 -05:00
krb.restart()
2007-06-28 18:09:54 -05:00
2009-09-02 05:24:17 -05:00
# Create a BIND instance
bind = bindinstance.BindInstance(fstore, dm_password)
2011-08-31 07:42:57 -05:00
bind.setup(host_name, ip_address, realm_name, domain_name, dns_forwarders,
options.conf_ntp, reverse_zone, zonemgr=options.zonemgr,
zone_refresh=options.zone_refresh,
2012-06-28 09:46:48 -05:00
persistent_search=options.persistent_search,
2012-11-19 09:32:28 -06:00
serial_autoincrement=options.serial_autoincrement,
ca_configured=not options.selfsign)
2009-09-02 05:24:17 -05:00
if options.setup_dns:
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
api.Backend.ldap2.connect(bind_dn=DN(('cn', 'Directory Manager')), bind_pw=dm_password)
2009-09-02 09:22:50 -05:00
2009-09-02 05:24:17 -05:00
bind.create_instance()
2012-03-15 07:51:59 -05:00
print ""
bind.check_global_configuration()
print ""
2009-09-02 05:24:17 -05:00
else:
bind.create_sample_bind_zone()
2012-03-06 06:26:45 -06:00
# Restart httpd to pick up the new IPA configuration
service.print_msg("Restarting the web server")
http.restart()
2007-08-31 17:40:01 -05:00
# Set the admin user kerberos password
ds.change_admin_password(admin_password)
2008-02-20 09:16:19 -06:00
# Call client install script
try:
2011-12-07 02:40:51 -06:00
args = ["/usr/sbin/ipa-client-install", "--on-master", "--unattended", "--domain", domain_name, "--server", host_name, "--realm", realm_name, "--hostname", host_name]
if not options.create_sshfp:
args.append("--no-dns-sshfp")
2011-12-07 02:49:09 -06:00
if options.trust_sshfp:
args.append("--ssh-trust-dns")
2012-09-12 08:19:26 -05:00
if not options.conf_ssh:
args.append("--no-ssh")
2011-12-07 02:49:09 -06:00
if not options.conf_sshd:
args.append("--no-sshd")
2011-12-07 02:40:51 -06:00
run(args)
2008-02-20 09:16:19 -06:00
except Exception, e:
2010-11-08 16:13:48 -06:00
sys.exit("Configuration of client side components failed!\nipa-client-install returned: " + str(e))
2008-02-20 09:16:19 -06:00
2010-12-04 14:42:14 -06:00
#Everything installed properly, activate ipa service.
2011-09-12 16:11:54 -05:00
ipaservices.knownservices.ipa.enable()
2010-12-04 14:42:14 -06:00
0000-12-31 18:09:24 -05:50
print "=============================================================================="
print "Setup complete"
print ""
print "Next steps:"
2008-06-06 14:25:36 -05:00
print "\t1. You must make sure these network ports are open:"
0000-12-31 18:09:24 -05:50
print "\t\tTCP Ports:"
2008-01-25 16:08:36 -06:00
print "\t\t * 80, 443: HTTP/HTTPS"
0000-12-31 18:09:24 -05:50
print "\t\t * 389, 636: LDAP/LDAPS"
0000-12-31 18:09:24 -05:50
print "\t\t * 88, 464: kerberos"
2009-06-25 07:42:08 -05:00
if options.setup_dns:
2008-06-06 14:25:36 -05:00
print "\t\t * 53: bind"
0000-12-31 18:09:24 -05:50
print "\t\tUDP Ports:"
0000-12-31 18:09:24 -05:50
print "\t\t * 88, 464: kerberos"
2009-06-25 07:42:08 -05:00
if options.setup_dns:
2008-06-06 14:25:36 -05:00
print "\t\t * 53: bind"
if options.conf_ntp:
print "\t\t * 123: ntp"
0000-12-31 18:09:24 -05:50
print ""
2008-02-05 11:23:53 -06:00
print "\t2. You can now obtain a kerberos ticket using the command: 'kinit admin'"
2010-02-03 13:47:51 -06:00
print "\t This ticket will allow you to use the IPA tools (e.g., ipa user-add)"
0000-12-31 18:09:24 -05:50
print "\t and the web user interface."
2011-09-12 16:11:54 -05:00
if not ipaservices.knownservices.ntpd.is_running():
0000-12-31 18:09:24 -05:50
print "\t3. Kerberos requires time synchronization between clients"
print "\t and servers for correct operation. You should consider enabling ntpd."
2008-02-05 11:23:53 -06:00
print ""
2010-03-10 10:55:48 -06:00
if options.http_pkcs12:
2008-07-11 10:34:29 -05:00
print "In order for Firefox autoconfiguration to work you will need to"
print "use a SSL signing certificate. See the IPA documentation for more details."
2010-03-10 10:55:48 -06:00
print "You also need to install a PEM copy of the CA certificate into"
2008-07-11 10:34:29 -05:00
print "/usr/share/ipa/html/ca.crt"
2010-03-10 10:55:48 -06:00
else:
if options.selfsign:
print "Be sure to back up the CA certificate stored in /etc/httpd/alias/cacert.p12"
print "The password for this file is in /etc/httpd/alias/pwdfile.txt"
else:
print "Be sure to back up the CA certificate stored in /root/cacert.p12"
print "This file is required to create replicas. The password for this"
print "file is the Directory Manager password"
0000-12-31 18:09:24 -05:50
2011-01-26 09:53:02 -06:00
if ipautil.file_exists(ANSWER_CACHE):
os.remove(ANSWER_CACHE)
0000-12-31 18:09:24 -05:50
return 0
2012-05-31 07:34:09 -05:00
if __name__ == '__main__':
success = False
2008-07-11 10:34:29 -05:00
try:
2012-05-31 07:34:09 -05:00
# FIXME: Common option parsing, logging setup, etc should be factored
# out from all install scripts
safe_options, options = parse_options()
if options.uninstall:
log_file_name = "/var/log/ipaserver-uninstall.log"
2010-04-27 16:51:13 -05:00
else:
2012-05-31 07:34:09 -05:00
log_file_name = "/var/log/ipaserver-install.log"
2011-11-29 02:10:31 -06:00
2012-05-31 07:34:09 -05:00
installutils.run_script(main, log_file_name=log_file_name,
operation_name='ipa-server-install')
success = True
finally:
if pw_name and ipautil.file_exists(pw_name):
os.remove(pw_name)
if not success and installation_cleanup:
# Do a cautious clean up as we don't know what failed and what is
# the state of the environment
try:
fstore.restore_file('/etc/hosts')
except:
pass