summaryrefslogtreecommitdiffstats
path: root/ipa-client/ipa-install/ipa-client-install
blob: f32cc2d6e5044d63dee1c1aee79ae8811921c18c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#! /usr/bin/python -E
# Authors: Simo Sorce <ssorce@redhat.com>
#          Karl MacMillan <kmacmillan@mentalrootkit.com>
#
# Copyright (C) 2007  Red Hat
# see file 'COPYING' for use and warranty information
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#

VERSION = "%prog .1"

import sys
sys.path.append("/usr/share/ipa")

import krbV
import socket
import logging
from optparse import OptionParser
import ipaclient.ipadiscovery
import ipaclient.ipachangeconf
from ipa.ipautil import run

def parse_options():
    parser = OptionParser(version=VERSION)
    parser.add_option("--domain", dest="domain", help="domain name")
    parser.add_option("--server", dest="server", help="IPA server")
    parser.add_option("--realm", dest="realm_name", help="realm name")
    parser.add_option("-f", "--force", dest="force", action="store_true",
                      default=False, help="force setting of ldap/kerberos conf")
    parser.add_option("-d", "--debug", dest="debug", action="store_true",
                      default=False, help="print debugging information")
    parser.add_option("-U", "--unattended", dest="unattended",
                      help="unattended installation never prompts the user")

    options, args = parser.parse_args()

    return options

def logging_setup(options):
    # Always log everything (i.e., DEBUG) to the log
    # file.
    logging.basicConfig(level=logging.DEBUG,
                        format='%(asctime)s %(levelname)s %(message)s',
                        filename='ipaclient-install.log',
                        filemode='w')

    console = logging.StreamHandler()
    # If the debug option is set, also log debug messages to the console
    if options.debug:
        console.setLevel(logging.DEBUG)
    else:
        # Otherwise, log critical and error messages
        console.setLevel(logging.ERROR)
    formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
    console.setFormatter(formatter)
    logging.getLogger('').addHandler(console)

def main():
    options = parse_options()
    logging_setup(options)
    dnsok = True

    # Create the discovery instance
    ds = ipaclient.ipadiscovery.IPADiscovery()

    ret = ds.search()
    if ret == -10:
        print "Can't get the fully qualified name of this host"
        print "Please check that the client is properly configured"
        return ret
    if ret == -1:
        logging.debug("Domain not found")
        if options.domain:
            dom = options.domain
        elif options.unattended:
            return ret
        else:
            print "Failed to determine your DNS domain (DNS misconfigured?)"
            dom = raw_input("Please provide your domain name (ex: example.com): ")
        ret = ds.search(domain=dom)
    if ret == -2:
        dnsok = False
        logging.debug("IPA Server not found")
        if options.server:
            srv = options.server
        elif options.unattended:
            return ret
        else:
            print "Failed to find the IPA Server (DNS misconfigured?)"
            srv = raw_input("Please provide your server name (ex: ipa.example.com): ")
        ret = ds.search(domain=dom, server=srv)
    if ret != 0:
        print "Failed to verify that "+srv+" is an IPA Server, aborting!"
        return ret

    if dnsok:
        print "Discovery was successful!"
    elif not options.unattended:
        print "\nThe failure to use DNS to find your IPA server indicates that your resolv.conf file is not properly configured\n."
        print "Autodiscovery of servers for failover cannot work with this configuration.\n"
        print "If you proceed with the installation, services will be configured to always access the discovered server for all operation and will not fail over to other servers in case of failure\n"
        yesno = raw_input("Do you want to proceed and configure the system with fixed values with no DNS discovery? [y/N] ")
        if yesno.lower() != "y":
            return ret
        print "\n"

    print "Realm: "+ds.getRealmName()
    print "DNS Domain: "+ds.getDomainName()
    print "IPA Server: "+ds.getServerName()
    print "BaseDN: "+ds.getBaseDN()

    # Configure ldap.conf
    ldapconf = ipaclient.ipachangeconf.IPAChangeConf("IPA Installer")
    opts = [{'name':'host', 'action':'comment'},
            {'name':'port', 'action':'comment'},
            {'name':'binddn', 'action':'comment'},
            {'name':'bindpw', 'action':'comment'},
            {'name':'rootbinddn', 'action':'comment'},
            {'name':'nss_base_passwd', 'value':ds.getBaseDN()+'?sub', 'action':'set'},
            {'name':'nss_base_group', 'value':ds.getBaseDN()+'?sub', 'action':'set'},
            {'name':'base', 'value':ds.getBaseDN(), 'action':'set'},
            {'name':'ldap_version', 'value':'3', 'action':'set'}]
    if dnsok and not options.force:
        opts.insert(0, {'name':'uri', 'action':'comment'})
    else:
        opts.append({'name':'uri', 'value':'ldap://'+ds.getServerName(), 'action':'set'})
    ldapconf.setOptionAssignment(" ")
    ldapconf.changeConf("/etc/ldap.conf", opts)

    #Check if kerberos is already configured properly
    krbctx = krbV.default_context()
    # If we find our domain assume we are properly configured
    #(ex. we are configuring the client side of a Master)
    if not krbctx.default_realm == ds.getRealmName() or options.force:

        #Configure krb5.conf
        krbconf = ipaclient.ipachangeconf.IPAChangeConf("IPA Installer")
        krbconf.setOptionAssignment(" = ")
        krbconf.setSectionNameDelimiters(("[","]"))

        #[libdefaults]
        opts = [{'name':'default_realm', 'value':ds.getRealmName(), 'action':'set'},
                {'name':'ticket_lifetime', 'value':'24h', 'action':'set'},
                {'name':'forwardable', 'value':'yes', 'action':'set'}]
        if dnsok and not options.force:
            opts.insert(1, {'name':'dns_lookup_realm', 'value':'true', 'action':'set'})
            opts.insert(2, {'name':'dns_lookup_kdc', 'value':'true', 'action':'set'})
        else:
            opts.insert(1, {'name':'dns_lookup_realm', 'value':'false', 'action':'set'})
            opts.insert(2, {'name':'dns_lookup_kdc', 'value':'false', 'action':'set'})
        krbconf.changeConf("/etc/krb5.conf", opts, "libdefaults");

	#the following are necessary only if DNS discovery does not work
        if not dnsok or options.force:
            #[realms]
            opts = [{'name':ds.getRealmName(), 'value':'{', 'action':'set'},
                    {'name':'kdc', 'value':ds.getServerName()+':88', 'action':'set'},
                    {'name':'admin_server', 'value':ds.getServerName()+':749', 'action':'set'},
                    # adding '\n}' is a dirty hack because we still don't have subsections support
                    {'name':'default_domain', 'value':ds.getDomainName()+'\n}', 'action':'set'}]
            krbconf.changeConf("/etc/krb5.conf", opts, "realms");

            #[domain_realm]
            opts = [{'name':'.'+ds.getDomainName(), 'value':ds.getRealmName(), 'action':'set'},
                    {'name':ds.getDomainName(), 'value':ds.getRealmName(), 'action':'set'}]
            krbconf.changeConf("/etc/krb5.conf", opts, "domain_realm");

    #Modify nsswitch to add nss_ldap
    run(["/usr/sbin/authconfig", "--enableldap", "--update"])

    #Modify pam to add pam_krb5
    run(["/usr/sbin/authconfig", "--enablekrb5", "--update"])

    return 0

main()