2010-03-24 08:50:50 +03:00
#!/usr/bin/env python
2008-02-21 03:22:20 +03:00
#
# Unix SMB/CIFS implementation.
# provision a Samba4 server
# Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007-2008
# Copyright (C) Andrew Bartlett <abartlet@samba.org> 2008
#
# Based on the original in EJS:
# Copyright (C) Andrew Tridgell 2005
2011-09-13 03:27:50 +04:00
#
2008-02-21 03:22:20 +03: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.
2011-09-13 03:27:50 +04:00
#
2008-02-21 03:22:20 +03:00
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
2011-09-13 03:27:50 +04:00
#
2008-02-21 03:22:20 +03:00
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
2010-06-13 17:05:50 +04:00
import logging
2008-02-21 03:22:20 +03:00
import optparse
2008-12-11 20:51:28 +03:00
import sys
2010-01-08 17:00:54 +03:00
import tempfile
2008-02-21 03:22:20 +03:00
2008-05-11 07:45:49 +04:00
# Find right directory when running from source tree
sys.path.insert(0, "bin/python")
2008-05-11 07:29:20 +04:00
2008-02-21 03:22:20 +03:00
import samba
2010-01-08 17:00:54 +03:00
import samba.ntacls
2011-10-14 13:22:20 +04:00
import os
2008-07-15 09:15:12 +04:00
from samba.credentials import DONT_USE_KERBEROS
2008-05-22 01:59:34 +04:00
from samba.auth import system_session
2008-02-21 03:22:20 +03:00
import samba.getopt as options
2011-09-13 03:27:50 +04:00
from samba.provision import (
provision,
FILL_FULL,
FILL_NT4SYNC,
FILL_DRS,
ProvisioningError,
)
2010-04-04 02:14:23 +04:00
from samba.dsdb import (
2011-09-13 03:27:50 +04:00
DS_DOMAIN_FUNCTION_2000,
DS_DOMAIN_FUNCTION_2003,
DS_DOMAIN_FUNCTION_2008,
DS_DOMAIN_FUNCTION_2008_R2,
)
2008-02-21 03:22:20 +03:00
2008-04-14 21:09:57 +04:00
# how do we make this case insensitive??
2008-02-21 03:22:20 +03:00
parser = optparse.OptionParser("provision [options]")
sambaopts = options.SambaOptions(parser)
parser.add_option_group(sambaopts)
parser.add_option_group(options.VersionOptions(parser))
credopts = options.CredentialsOptions(parser)
parser.add_option_group(credopts)
2009-02-11 18:58:00 +03:00
parser.add_option("--interactive", help="Ask for names", action="store_true")
2008-02-21 03:22:20 +03:00
parser.add_option("--domain", type="string", metavar="DOMAIN",
2011-09-13 03:27:50 +04:00
help="set domain")
parser.add_option("--domain-guid", type="string", metavar="GUID",
help="set domainguid (otherwise random)")
parser.add_option("--domain-sid", type="string", metavar="SID",
help="set domainsid (otherwise random)")
parser.add_option("--ntds-guid", type="string", metavar="GUID",
help="set NTDS object GUID (otherwise random)")
parser.add_option("--invocationid", type="string", metavar="GUID",
help="set invocationid (otherwise random)")
parser.add_option("--host-name", type="string", metavar="HOSTNAME",
help="set hostname")
parser.add_option("--host-ip", type="string", metavar="IPADDRESS",
help="set IPv4 ipaddress")
parser.add_option("--host-ip6", type="string", metavar="IP6ADDRESS",
help="set IPv6 ipaddress")
parser.add_option("--adminpass", type="string", metavar="PASSWORD",
help="choose admin password (otherwise random)")
parser.add_option("--krbtgtpass", type="string", metavar="PASSWORD",
help="choose krbtgt password (otherwise random)")
parser.add_option("--machinepass", type="string", metavar="PASSWORD",
help="choose machine password (otherwise random)")
2011-09-05 10:09:59 +04:00
parser.add_option("--dns-backend", type="choice", metavar="NAMESERVER-BACKEND",
2011-10-15 14:27:55 +04:00
choices=["SAMBA_INTERNAL", "BIND9_FLATFILE", "BIND9_DLZ", "NONE"],
help="The DNS server backend. SAMBA_INTERNAL is the builtin name server, " \
2011-11-25 08:43:53 +04:00
"BIND9_FLATFILE uses bind9 text database to store zone information, " \
"BIND9_DLZ uses samba4 AD to store zone information (default), " \
2012-04-16 01:35:07 +04:00
"NONE skips the DNS setup entirely (not recommended)",
default="BIND9_DLZ")
2011-09-13 03:27:50 +04:00
parser.add_option("--dnspass", type="string", metavar="PASSWORD",
help="choose dns password (otherwise random)")
parser.add_option("--ldapadminpass", type="string", metavar="PASSWORD",
help="choose password to set between Samba and it's LDAP backend (otherwise random)")
parser.add_option("--root", type="string", metavar="USERNAME",
help="choose 'root' unix username")
parser.add_option("--nobody", type="string", metavar="USERNAME",
help="choose 'nobody' user")
parser.add_option("--wheel", type="string", metavar="GROUPNAME",
help="choose 'wheel' privileged group")
parser.add_option("--users", type="string", metavar="GROUPNAME",
help="choose 'users' group")
2008-02-21 03:22:20 +03:00
parser.add_option("--quiet", help="Be quiet", action="store_true")
parser.add_option("--blank", action="store_true",
2011-09-13 03:27:50 +04:00
help="do not add users or groups, just the structure")
parser.add_option("--ldap-backend-type", type="choice", metavar="LDAP-BACKEND-TYPE",
2011-11-04 02:07:17 +04:00
help="Test initialisation support for unsupported LDAP backend type (fedora-ds or openldap) DO NOT USE",
2011-09-13 03:27:50 +04:00
choices=["fedora-ds", "openldap"])
2008-02-21 03:22:20 +03:00
parser.add_option("--server-role", type="choice", metavar="ROLE",
2011-09-13 03:27:50 +04:00
choices=["domain controller", "dc", "member server", "member", "standalone"],
2012-04-16 01:36:54 +04:00
help="The server role (domain controller | dc | member server | member | standalone). Default is dc.",
default="domain controller")
2009-09-22 18:59:29 +04:00
parser.add_option("--function-level", type="choice", metavar="FOR-FUN-LEVEL",
2011-09-13 03:27:50 +04:00
choices=["2000", "2003", "2008", "2008_R2"],
2012-04-16 01:35:41 +04:00
help="The domain and forest function level (2000 | 2003 | 2008 | 2008_R2 - always native). Default is (Windows) 2003 Native.",
default="2003")
2010-06-25 16:01:21 +04:00
parser.add_option("--next-rid", type="int", metavar="NEXTRID", default=1000,
2011-09-13 03:27:50 +04:00
help="The initial nextRid value (only needed for upgrades). Default is 1000.")
parser.add_option("--partitions-only",
help="Configure Samba's partitions, but do not modify them (ie, join a BDC)", action="store_true")
parser.add_option("--targetdir", type="string", metavar="DIR",
help="Set target directory")
2009-08-13 11:01:27 +04:00
parser.add_option("--ol-mmr-urls", type="string", metavar="LDAPSERVER",
2010-03-17 22:11:11 +03:00
help="List of LDAP-URLS [ ldap://<FQHN>:<PORT>/ (where <PORT> has to be different than 389!) ] separated with comma (\",\") for use with OpenLDAP-MMR (Multi-Master-Replication), e.g.: \"ldap://s4dc1:9000,ldap://s4dc2:9000\"")
2011-09-13 03:27:50 +04:00
parser.add_option("--slapd-path", type="string", metavar="SLAPD-PATH",
help="Path to slapd for LDAP backend [e.g.:'/usr/local/libexec/slapd']. Required for Setup with LDAP-Backend. OpenLDAP Version >= 2.4.17 should be used.")
parser.add_option("--use-xattrs", type="choice", choices=["yes", "no", "auto"], help="Define if we should use the native fs capabilities or a tdb file for storing attributes likes ntacl, auto tries to make an inteligent guess based on the user rights and system capabilities", default="auto")
2012-05-02 04:44:45 +04:00
parser.add_option("--use-s3fs", action="store_true", help="Use s3fs for the fileserver (default = no)")
2008-02-21 03:22:20 +03:00
opts = parser.parse_args()[0]
2010-06-13 17:05:50 +04:00
logger = logging.getLogger("provision")
logger.addHandler(logging.StreamHandler(sys.stdout))
if opts.quiet:
2011-09-13 03:27:50 +04:00
logger.setLevel(logging.WARNING)
2010-06-13 17:05:50 +04:00
else:
2011-09-13 03:27:50 +04:00
logger.setLevel(logging.INFO)
2008-02-21 03:22:20 +03:00
2008-12-11 20:51:28 +03:00
if len(sys.argv) == 1:
2011-09-13 03:27:50 +04:00
opts.interactive = True
2008-12-11 20:51:28 +03:00
if opts.interactive:
2011-09-13 03:27:50 +04:00
from getpass import getpass
import socket
2009-01-14 12:31:58 +03:00
2011-09-13 03:27:50 +04:00
def ask(prompt, default=None):
if default is not None:
print "%s [%s]: " % (prompt, default),
else:
print "%s: " % (prompt,),
return sys.stdin.readline().rstrip("\n") or default
try:
default = socket.getfqdn().split(".", 1)[1].upper()
except IndexError:
default = None
opts.realm = ask("Realm", default)
if opts.realm in (None, ""):
print >>sys.stderr, "No realm set!"
sys.exit(1)
2009-01-14 12:31:58 +03:00
2011-09-13 03:27:50 +04:00
try:
default = opts.realm.split(".")[0]
except IndexError:
default = None
opts.domain = ask("Domain", default)
if opts.domain is None:
print >> sys.stderr, "No domain set!"
sys.exit(1)
opts.server_role = ask("Server Role (dc, member, standalone)", "dc")
2012-03-20 14:10:44 +04:00
while True:
2012-03-08 18:27:05 +04:00
adminpass = getpass("Administrator password: ")
if not adminpass:
2011-09-13 03:27:50 +04:00
print >>sys.stderr, "Invalid administrator password."
else:
2012-03-08 18:27:05 +04:00
adminpassverify = getpass("Retype password: ")
if not adminpass == adminpassverify:
print >>sys.stderr, "Sorry, passwords do not match."
else:
opts.adminpass = adminpass
break
2009-11-28 19:03:57 +03:00
else:
2011-09-13 03:27:50 +04:00
if opts.realm in (None, ""):
opts.realm = sambaopts._lp.get('realm')
if opts.realm is None or opts.domain is None:
if opts.realm is None:
print >>sys.stderr, "No realm set!"
if opts.domain is None:
print >> sys.stderr, "No domain set!"
parser.print_usage()
sys.exit(1)
2009-11-28 19:03:57 +03:00
if not opts.adminpass:
2011-09-13 03:27:50 +04:00
logger.info("Administrator password will be set randomly!")
2008-12-11 20:51:28 +03:00
2008-03-28 13:57:15 +03:00
lp = sambaopts.get_loadparm()
2008-12-21 18:39:17 +03:00
smbconf = lp.configfile
2008-02-21 03:22:20 +03:00
2012-04-16 01:35:41 +04:00
if opts.function_level == "2000":
2011-09-13 03:27:50 +04:00
dom_for_fun_level = DS_DOMAIN_FUNCTION_2000
2009-09-22 18:59:29 +04:00
elif opts.function_level == "2003":
2011-09-13 03:27:50 +04:00
dom_for_fun_level = DS_DOMAIN_FUNCTION_2003
2009-09-22 18:59:29 +04:00
elif opts.function_level == "2008":
2011-09-13 03:27:50 +04:00
dom_for_fun_level = DS_DOMAIN_FUNCTION_2008
2009-09-22 18:59:29 +04:00
elif opts.function_level == "2008_R2":
2011-09-13 03:27:50 +04:00
dom_for_fun_level = DS_DOMAIN_FUNCTION_2008_R2
2009-09-22 18:59:29 +04:00
2008-03-28 13:57:15 +03:00
creds = credopts.get_credentials(lp)
2008-02-21 03:22:20 +03:00
2008-07-15 09:15:12 +04:00
creds.set_kerberos_state(DONT_USE_KERBEROS)
2008-02-21 03:22:20 +03:00
samdb_fill = FILL_FULL
if opts.blank:
samdb_fill = FILL_NT4SYNC
elif opts.partitions_only:
samdb_fill = FILL_DRS
2012-02-07 04:09:41 +04:00
if opts.targetdir is not None:
if not os.path.isdir(opts.targetdir):
os.mkdir(opts.targetdir)
2010-01-08 17:00:54 +03:00
eadb = True
2012-04-19 16:31:29 +04:00
2010-01-08 17:00:54 +03:00
if opts.use_xattrs == "yes":
2011-09-13 03:27:50 +04:00
eadb = False
2010-11-17 13:50:06 +03:00
elif opts.use_xattrs == "auto" and not lp.get("posix:eadb"):
2011-10-14 13:22:20 +04:00
if opts.targetdir:
2012-02-03 05:48:26 +04:00
file = tempfile.NamedTemporaryFile(dir=os.path.abspath(opts.targetdir))
2011-10-14 13:22:20 +04:00
else:
2012-02-03 05:48:26 +04:00
file = tempfile.NamedTemporaryFile(dir=os.path.abspath(os.path.dirname(lp.get("private dir"))))
2011-09-13 03:27:50 +04:00
try:
2012-02-07 04:09:41 +04:00
try:
samba.ntacls.setntacl(lp, file.name,
2012-04-19 16:31:29 +04:00
"O:S-1-5-32G:S-1-5-32", "S-1-5-32", "native")
2012-02-07 04:09:41 +04:00
eadb = False
except Exception:
2012-04-19 16:31:29 +04:00
logger.info("You are not root or your system do not support xattr, using tdb backend for attributes. ")
2012-02-07 04:09:41 +04:00
finally:
file.close()
2009-11-22 20:50:30 +03:00
2012-04-19 16:31:29 +04:00
if eadb:
logger.info("not using extended attributes to store ACLs and other metadata. If you intend to use this provision in production, rerun the script as root on a system supporting xattrs.")
2008-12-21 09:34:27 +03:00
session = system_session()
2010-03-14 12:31:29 +03:00
try:
2012-02-26 18:44:40 +04:00
result = provision(logger,
2011-09-13 03:27:50 +04:00
session, creds, smbconf=smbconf, targetdir=opts.targetdir,
samdb_fill=samdb_fill, realm=opts.realm, domain=opts.domain,
domainguid=opts.domain_guid, domainsid=opts.domain_sid,
hostname=opts.host_name,
hostip=opts.host_ip, hostip6=opts.host_ip6,
ntdsguid=opts.ntds_guid,
invocationid=opts.invocationid, adminpass=opts.adminpass,
krbtgtpass=opts.krbtgtpass, machinepass=opts.machinepass,
2012-04-16 01:36:54 +04:00
dns_backend=opts.dns_backend,
2011-09-13 03:27:50 +04:00
dnspass=opts.dnspass, root=opts.root, nobody=opts.nobody,
wheel=opts.wheel, users=opts.users,
2012-04-16 01:36:54 +04:00
serverrole=opts.server_role, dom_for_fun_level=dom_for_fun_level,
2011-09-13 03:27:50 +04:00
backend_type=opts.ldap_backend_type,
ldapadminpass=opts.ldapadminpass, ol_mmr_urls=opts.ol_mmr_urls,
2011-11-04 02:07:17 +04:00
slapd_path=opts.slapd_path,
2012-04-09 13:09:22 +04:00
useeadb=eadb, next_rid=opts.next_rid, lp=lp, use_ntvfs=(not opts.use_s3fs))
2010-03-14 12:31:29 +03:00
except ProvisioningError, e:
2011-09-13 03:27:50 +04:00
print str(e)
sys.exit(1)
2012-02-26 18:44:40 +04:00
result.report_logger(logger)