param: Remove winbindd privileged socket directory option
[Samba.git] / selftest / target / Samba4.pm
blobdacdab40ac8bc5931f51511566820e088599abf3
1 #!/usr/bin/perl
2 # Bootstrap Samba and run a number of tests against it.
3 # Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
4 # Published under the GNU GPL, v3 or later.
6 package Samba4;
8 use strict;
9 use Cwd qw(abs_path);
10 use FindBin qw($RealBin);
11 use POSIX;
12 use SocketWrapper;
13 use target::Samba;
14 use target::Samba3;
16 sub new($$$$$) {
17 my ($classname, $bindir, $ldap, $srcdir, $server_maxtime) = @_;
19 my $self = {
20 vars => {},
21 ldap => $ldap,
22 bindir => $bindir,
23 srcdir => $srcdir,
24 server_maxtime => $server_maxtime,
25 target3 => new Samba3($bindir, $srcdir, $server_maxtime)
27 bless $self;
28 return $self;
31 sub scriptdir_path($$) {
32 my ($self, $path) = @_;
33 return "$self->{srcdir}/source4/scripting/$path";
36 sub openldap_start($$$) {
39 sub slapd_start($$)
41 my $count = 0;
42 my ($self, $env_vars, $STDIN_READER) = @_;
43 my $ldbsearch = Samba::bindir_path($self, "ldbsearch");
45 my $uri = $env_vars->{LDAP_URI};
47 if (system("$ldbsearch -H $uri -s base -b \"\" supportedLDAPVersion > /dev/null") == 0) {
48 print "A SLAPD is still listening to $uri before we started the LDAP backend. Aborting!";
49 return 1;
51 # running slapd in the background means it stays in the same process group, so it can be
52 # killed by timelimit
53 my $pid = fork();
54 if ($pid == 0) {
55 open STDOUT, ">$env_vars->{LDAPDIR}/logs";
56 open STDERR, '>&STDOUT';
57 close($env_vars->{STDIN_PIPE});
58 open STDIN, ">&", $STDIN_READER or die "can't dup STDIN_READER to STDIN: $!";
60 if ($self->{ldap} eq "fedora-ds") {
61 exec("$ENV{FEDORA_DS_ROOT}/sbin/ns-slapd", "-D", $env_vars->{FEDORA_DS_DIR}, "-d0", "-i", $env_vars->{FEDORA_DS_PIDFILE});
62 } elsif ($self->{ldap} eq "openldap") {
63 exec($ENV{OPENLDAP_SLAPD}, "-dnone", "-F", $env_vars->{SLAPD_CONF_D}, "-h", $uri);
65 die("Unable to start slapd: $!");
67 $env_vars->{SLAPD_PID} = $pid;
68 sleep(1);
69 while (system("$ldbsearch -H $uri -s base -b \"\" supportedLDAPVersion > /dev/null") != 0) {
70 $count++;
71 if ($count > 40) {
72 $self->slapd_stop($env_vars);
73 return 0;
75 sleep(1);
77 return 1;
80 sub slapd_stop($$)
82 my ($self, $envvars) = @_;
83 kill 9, $envvars->{SLAPD_PID};
84 return 1;
87 sub check_or_start($$$)
89 my ($self, $env_vars, $process_model) = @_;
90 my $STDIN_READER;
92 my $env_ok = $self->check_env($env_vars);
93 if ($env_ok) {
94 return $env_vars->{SAMBA_PID};
95 } elsif (defined($env_vars->{SAMBA_PID})) {
96 warn("SAMBA PID $env_vars->{SAMBA_PID} is not running (died)");
97 return undef;
100 # use a pipe for stdin in the child processes. This allows
101 # those processes to monitor the pipe for EOF to ensure they
102 # exit when the test script exits
103 pipe($STDIN_READER, $env_vars->{STDIN_PIPE});
105 # Start slapd before samba, but with the fifo on stdin
106 if (defined($self->{ldap})) {
107 unless($self->slapd_start($env_vars, $STDIN_READER)) {
108 warn("couldn't start slapd (main run)");
109 return undef;
113 print "STARTING SAMBA...\n";
114 my $pid = fork();
115 if ($pid == 0) {
116 # we want out from samba to go to the log file, but also
117 # to the users terminal when running 'make test' on the command
118 # line. This puts it on stderr on the terminal
119 open STDOUT, "| tee $env_vars->{SAMBA_TEST_LOG} 1>&2";
120 open STDERR, '>&STDOUT';
122 SocketWrapper::set_default_iface($env_vars->{SOCKET_WRAPPER_DEFAULT_IFACE});
124 $ENV{KRB5_CONFIG} = $env_vars->{KRB5_CONFIG};
125 $ENV{KRB5CCNAME} = "$env_vars->{KRB5_CCACHE}.samba";
126 $ENV{SELFTEST_WINBINDD_SOCKET_DIR} = $env_vars->{SELFTEST_WINBINDD_SOCKET_DIR};
127 $ENV{NMBD_SOCKET_DIR} = $env_vars->{NMBD_SOCKET_DIR};
129 $ENV{NSS_WRAPPER_PASSWD} = $env_vars->{NSS_WRAPPER_PASSWD};
130 $ENV{NSS_WRAPPER_GROUP} = $env_vars->{NSS_WRAPPER_GROUP};
131 $ENV{NSS_WRAPPER_HOSTS} = $env_vars->{NSS_WRAPPER_HOSTS};
132 $ENV{NSS_WRAPPER_HOSTNAME} = $env_vars->{NSS_WRAPPER_HOSTNAME};
133 $ENV{NSS_WRAPPER_MODULE_SO_PATH} = $env_vars->{NSS_WRAPPER_MODULE_SO_PATH};
134 $ENV{NSS_WRAPPER_MODULE_FN_PREFIX} = $env_vars->{NSS_WRAPPER_MODULE_FN_PREFIX};
136 if (defined($env_vars->{RESOLV_WRAPPER_CONF})) {
137 $ENV{RESOLV_WRAPPER_CONF} = $env_vars->{RESOLV_WRAPPER_CONF};
138 } else {
139 $ENV{RESOLV_WRAPPER_HOSTS} = $env_vars->{RESOLV_WRAPPER_HOSTS};
142 $ENV{UID_WRAPPER} = "1";
143 $ENV{UID_WRAPPER_ROOT} = "1";
145 $ENV{MAKE_TEST_BINARY} = Samba::bindir_path($self, "samba");
146 my @preargs = ();
147 my @optargs = ();
148 if (defined($ENV{SAMBA_OPTIONS})) {
149 @optargs = split(/ /, $ENV{SAMBA_OPTIONS});
151 if(defined($ENV{SAMBA_VALGRIND})) {
152 @preargs = split(/ /,$ENV{SAMBA_VALGRIND});
155 close($env_vars->{STDIN_PIPE});
156 open STDIN, ">&", $STDIN_READER or die "can't dup STDIN_READER to STDIN: $!";
158 exec(@preargs, Samba::bindir_path($self, "samba"), "-M", $process_model, "-i", "--maximum-runtime=$self->{server_maxtime}", $env_vars->{CONFIGURATION}, @optargs) or die("Unable to start samba: $!");
160 $env_vars->{SAMBA_PID} = $pid;
161 print "DONE ($pid)\n";
163 close($STDIN_READER);
165 if ($self->wait_for_start($env_vars) != 0) {
166 warn("Samba $pid failed to start up");
167 return undef;
170 return $pid;
173 sub wait_for_start($$)
175 my ($self, $testenv_vars) = @_;
176 my $count = 0;
177 my $ret = 0;
179 if (not $self->check_env($testenv_vars)) {
180 warn("unable to confirm Samba $testenv_vars->{SAMBA_PID} is running");
181 return -1;
184 # This will return quickly when things are up, but be slow if we
185 # need to wait for (eg) SSL init
186 my $nmblookup = Samba::bindir_path($self, "nmblookup4");
188 do {
189 $ret = system("$nmblookup $testenv_vars->{CONFIGURATION} $testenv_vars->{SERVER}");
190 if ($ret != 0) {
191 sleep(1);
192 } else {
193 system("$nmblookup $testenv_vars->{CONFIGURATION} -U $testenv_vars->{SERVER_IP} $testenv_vars->{SERVER}");
194 system("$nmblookup $testenv_vars->{CONFIGURATION} $testenv_vars->{NETBIOSNAME}");
195 system("$nmblookup $testenv_vars->{CONFIGURATION} -U $testenv_vars->{SERVER_IP} $testenv_vars->{NETBIOSNAME}");
196 system("$nmblookup $testenv_vars->{CONFIGURATION} $testenv_vars->{NETBIOSNAME}");
197 system("$nmblookup $testenv_vars->{CONFIGURATION} -U $testenv_vars->{SERVER_IP} $testenv_vars->{NETBIOSNAME}");
198 system("$nmblookup $testenv_vars->{CONFIGURATION} $testenv_vars->{SERVER}");
199 system("$nmblookup $testenv_vars->{CONFIGURATION} -U $testenv_vars->{SERVER_IP} $testenv_vars->{SERVER}");
200 system("$nmblookup $testenv_vars->{CONFIGURATION} $testenv_vars->{NETBIOSNAME}");
201 system("$nmblookup $testenv_vars->{CONFIGURATION} -U $testenv_vars->{SERVER_IP} $testenv_vars->{NETBIOSNAME}");
202 system("$nmblookup $testenv_vars->{CONFIGURATION} $testenv_vars->{NETBIOSNAME}");
203 system("$nmblookup $testenv_vars->{CONFIGURATION} -U $testenv_vars->{SERVER_IP} $testenv_vars->{NETBIOSNAME}");
205 $count++;
206 } while ($ret != 0 && $count < 20);
207 if ($count == 10) {
208 warn("nbt not reachable after 20 retries\n");
209 teardown_env($self, $testenv_vars);
210 return 0;
213 # Ensure we have the first RID Set before we start tests. This makes the tests more reliable.
214 if ($testenv_vars->{SERVER_ROLE} eq "domain controller" and not ($testenv_vars->{NETBIOSNAME} eq "RODC")) {
215 # Add hosts file for name lookups
216 $ENV{NSS_WRAPPER_HOSTS} = $testenv_vars->{NSS_WRAPPER_HOSTS};
217 if (defined($testenv_vars->{RESOLV_WRAPPER_CONF})) {
218 $ENV{RESOLV_WRAPPER_CONF} = $testenv_vars->{RESOLV_WRAPPER_CONF};
219 } else {
220 $ENV{RESOLV_WRAPPER_HOSTS} = $testenv_vars->{RESOLV_WRAPPER_HOSTS};
223 print "waiting for working LDAP and a RID Set to be allocated\n";
224 my $ldbsearch = Samba::bindir_path($self, "ldbsearch");
225 my $count = 0;
226 my $base_dn = "DC=".join(",DC=", split(/\./, $testenv_vars->{REALM}));
227 my $rid_set_dn = "cn=RID Set,cn=$testenv_vars->{NETBIOSNAME},ou=domain controllers,$base_dn";
228 my $max_wait = 60;
229 my $cmd = "$ldbsearch $testenv_vars->{CONFIGURATION} -H ldap://$testenv_vars->{SERVER} -U$testenv_vars->{USERNAME}%$testenv_vars->{PASSWORD} -s base -b \"$rid_set_dn\" rIDAllocationPool";
230 while (system("$cmd >/dev/null") != 0) {
231 $count++;
232 if ($count > $max_wait) {
233 warn("Timed out ($max_wait sec) waiting for working LDAP and a RID Set to be allocated by $testenv_vars->{NETBIOSNAME} PID $testenv_vars->{SAMBA_PID}");
234 $ret = -1;
235 last;
237 sleep(1);
240 print $self->getlog_env($testenv_vars);
242 return $ret
245 sub write_ldb_file($$$)
247 my ($self, $file, $ldif) = @_;
249 my $ldbadd = Samba::bindir_path($self, "ldbadd");
250 open(LDIF, "|$ldbadd -H $file >/dev/null");
251 print LDIF $ldif;
252 return(close(LDIF));
255 sub add_wins_config($$)
257 my ($self, $privatedir) = @_;
259 return $self->write_ldb_file("$privatedir/wins_config.ldb", "
260 dn: name=TORTURE_11,CN=PARTNERS
261 objectClass: wreplPartner
262 name: TORTURE_11
263 address: 127.0.0.11
264 pullInterval: 0
265 pushChangeCount: 0
266 type: 0x3
270 sub mk_fedora_ds($$)
272 my ($self, $ctx) = @_;
274 #Make the subdirectory be as fedora DS would expect
275 my $fedora_ds_dir = "$ctx->{ldapdir}/slapd-$ctx->{ldap_instance}";
277 my $pidfile = "$fedora_ds_dir/logs/slapd-$ctx->{ldap_instance}.pid";
279 return ($fedora_ds_dir, $pidfile);
282 sub mk_openldap($$)
284 my ($self, $ctx) = @_;
286 my $slapd_conf_d = "$ctx->{ldapdir}/slapd.d";
287 my $pidfile = "$ctx->{ldapdir}/slapd.pid";
289 return ($slapd_conf_d, $pidfile);
292 sub setup_namespaces($$:$$)
294 my ($self, $localenv, $upn_array, $spn_array) = @_;
296 @{$upn_array} = [] unless defined($upn_array);
297 my $upn_args = "";
298 foreach my $upn (@{$upn_array}) {
299 $upn_args .= " --add-upn-suffix=$upn";
302 @{$spn_array} = [] unless defined($spn_array);
303 my $spn_args = "";
304 foreach my $spn (@{$spn_array}) {
305 $spn_args .= " --add-spn-suffix=$spn";
308 my $samba_tool = Samba::bindir_path($self, "samba-tool");
310 my $cmd_env = "";
311 $cmd_env .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$localenv->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
312 if (defined($localenv->{RESOLV_WRAPPER_CONF})) {
313 $cmd_env .= "RESOLV_WRAPPER_CONF=\"$localenv->{RESOLV_WRAPPER_CONF}\" ";
314 } else {
315 $cmd_env .= "RESOLV_WRAPPER_HOSTS=\"$localenv->{RESOLV_WRAPPER_HOSTS}\" ";
317 $cmd_env .= " KRB5_CONFIG=\"$localenv->{KRB5_CONFIG}\" ";
318 $cmd_env .= "KRB5CCNAME=\"$localenv->{KRB5_CCACHE}\" ";
320 my $cmd_config = " $localenv->{CONFIGURATION}";
322 my $namespaces = $cmd_env;
323 $namespaces .= " $samba_tool domain trust namespaces $upn_args $spn_args";
324 $namespaces .= $cmd_config;
325 unless (system($namespaces) == 0) {
326 warn("Failed to add namespaces \n$namespaces");
327 return;
330 return;
333 sub setup_trust($$$$$)
335 my ($self, $localenv, $remoteenv, $type, $extra_args) = @_;
337 $localenv->{TRUST_SERVER} = $remoteenv->{SERVER};
338 $localenv->{TRUST_SERVER_IP} = $remoteenv->{SERVER_IP};
339 $localenv->{TRUST_SERVER_IPV6} = $remoteenv->{SERVER_IPV6};
340 $localenv->{TRUST_NETBIOSNAME} = $remoteenv->{NETBIOSNAME};
341 $localenv->{TRUST_USERNAME} = $remoteenv->{USERNAME};
342 $localenv->{TRUST_PASSWORD} = $remoteenv->{PASSWORD};
343 $localenv->{TRUST_DOMAIN} = $remoteenv->{DOMAIN};
344 $localenv->{TRUST_REALM} = $remoteenv->{REALM};
346 my $samba_tool = Samba::bindir_path($self, "samba-tool");
347 # setup the trust
348 my $cmd_env = "";
349 $cmd_env .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$localenv->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
350 if (defined($localenv->{RESOLV_WRAPPER_CONF})) {
351 $cmd_env .= "RESOLV_WRAPPER_CONF=\"$localenv->{RESOLV_WRAPPER_CONF}\" ";
352 } else {
353 $cmd_env .= "RESOLV_WRAPPER_HOSTS=\"$localenv->{RESOLV_WRAPPER_HOSTS}\" ";
355 $cmd_env .= " KRB5_CONFIG=\"$localenv->{KRB5_CONFIG}\" ";
356 $cmd_env .= "KRB5CCNAME=\"$localenv->{KRB5_CCACHE}\" ";
358 my $cmd_config = " $localenv->{CONFIGURATION}";
359 my $cmd_creds = $cmd_config;
360 $cmd_creds .= " -U$localenv->{TRUST_DOMAIN}\\\\$localenv->{TRUST_USERNAME}\%$localenv->{TRUST_PASSWORD}";
362 my $create = $cmd_env;
363 $create .= " $samba_tool domain trust create --type=${type} $localenv->{TRUST_REALM}";
364 $create .= " $extra_args";
365 $create .= $cmd_creds;
366 unless (system($create) == 0) {
367 warn("Failed to create trust \n$create");
368 return undef;
371 return $localenv
374 sub provision_raw_prepare($$$$$$$$$$$)
376 my ($self, $prefix, $server_role, $hostname,
377 $domain, $realm, $functional_level,
378 $password, $kdc_ipv4, $kdc_ipv6) = @_;
379 my $ctx;
380 my $netbiosname = uc($hostname);
382 unless(-d $prefix or mkdir($prefix, 0777)) {
383 warn("Unable to create $prefix");
384 return undef;
386 my $prefix_abs = abs_path($prefix);
388 die ("prefix=''") if $prefix_abs eq "";
389 die ("prefix='/'") if $prefix_abs eq "/";
391 unless (system("rm -rf $prefix_abs/*") == 0) {
392 warn("Unable to clean up");
396 my $swiface = Samba::get_interface($hostname);
398 $ctx->{prefix} = $prefix;
399 $ctx->{prefix_abs} = $prefix_abs;
401 $ctx->{server_role} = $server_role;
402 $ctx->{hostname} = $hostname;
403 $ctx->{netbiosname} = $netbiosname;
404 $ctx->{swiface} = $swiface;
405 $ctx->{password} = $password;
406 $ctx->{kdc_ipv4} = $kdc_ipv4;
407 $ctx->{kdc_ipv6} = $kdc_ipv6;
408 $ctx->{krb5_ccname} = "$prefix_abs/krb5cc_%{uid}";
409 if ($functional_level eq "2000") {
410 $ctx->{supported_enctypes} = "arcfour-hmac-md5 des-cbc-md5 des-cbc-crc"
414 # Set smbd log level here.
416 $ctx->{server_loglevel} =$ENV{SERVER_LOG_LEVEL} || 1;
417 $ctx->{username} = "Administrator";
418 $ctx->{domain} = $domain;
419 $ctx->{realm} = uc($realm);
420 $ctx->{dnsname} = lc($realm);
422 $ctx->{functional_level} = $functional_level;
424 my $unix_name = ($ENV{USER} or $ENV{LOGNAME} or `whoami`);
425 chomp $unix_name;
426 $ctx->{unix_name} = $unix_name;
427 $ctx->{unix_uid} = $>;
428 my @mygid = split(" ", $();
429 $ctx->{unix_gid} = $mygid[0];
430 $ctx->{unix_gids_str} = $);
431 @{$ctx->{unix_gids}} = split(" ", $ctx->{unix_gids_str});
433 $ctx->{etcdir} = "$prefix_abs/etc";
434 $ctx->{piddir} = "$prefix_abs/pid";
435 $ctx->{smb_conf} = "$ctx->{etcdir}/smb.conf";
436 $ctx->{krb5_conf} = "$ctx->{etcdir}/krb5.conf";
437 $ctx->{krb5_ccache} = "$prefix_abs/krb5_ccache";
438 $ctx->{privatedir} = "$prefix_abs/private";
439 $ctx->{ncalrpcdir} = "$prefix_abs/ncalrpc";
440 $ctx->{lockdir} = "$prefix_abs/lockdir";
441 $ctx->{logdir} = "$prefix_abs/logs";
442 $ctx->{statedir} = "$prefix_abs/statedir";
443 $ctx->{cachedir} = "$prefix_abs/cachedir";
444 $ctx->{winbindd_socket_dir} = "$prefix_abs/winbindd_socket";
445 $ctx->{ntp_signd_socket_dir} = "$prefix_abs/ntp_signd_socket";
446 $ctx->{nsswrap_passwd} = "$ctx->{etcdir}/passwd";
447 $ctx->{nsswrap_group} = "$ctx->{etcdir}/group";
448 $ctx->{nsswrap_hosts} = "$ENV{SELFTEST_PREFIX}/hosts";
449 $ctx->{nsswrap_hostname} = "$ctx->{hostname}.$ctx->{dnsname}";
450 if ($ENV{SAMBA_DNS_FAKING}) {
451 $ctx->{dns_host_file} = "$ENV{SELFTEST_PREFIX}/dns_host_file";
452 $ctx->{samba_dnsupdate} = "$ENV{SRCDIR_ABS}/source4/scripting/bin/samba_dnsupdate -s $ctx->{smb_conf} --all-interfaces --use-file=$ctx->{dns_host_file}";
453 } else {
454 $ctx->{samba_dnsupdate} = "$ENV{SRCDIR_ABS}/source4/scripting/bin/samba_dnsupdate -s $ctx->{smb_conf} --all-interfaces";
455 $ctx->{use_resolv_wrapper} = 1;
457 $ctx->{resolv_conf} = "$ctx->{etcdir}/resolv.conf";
459 $ctx->{tlsdir} = "$ctx->{privatedir}/tls";
461 $ctx->{ipv4} = "127.0.0.$swiface";
462 $ctx->{ipv6} = sprintf("fd00:0000:0000:0000:0000:0000:5357:5f%02x", $swiface);
463 $ctx->{interfaces} = "$ctx->{ipv4}/8 $ctx->{ipv6}/64";
465 push(@{$ctx->{directories}}, $ctx->{privatedir});
466 push(@{$ctx->{directories}}, $ctx->{etcdir});
467 push(@{$ctx->{directories}}, $ctx->{piddir});
468 push(@{$ctx->{directories}}, $ctx->{lockdir});
469 push(@{$ctx->{directories}}, $ctx->{logdir});
470 push(@{$ctx->{directories}}, $ctx->{statedir});
471 push(@{$ctx->{directories}}, $ctx->{cachedir});
473 $ctx->{smb_conf_extra_options} = "";
475 my @provision_options = ();
476 push (@provision_options, "KRB5_CONFIG=\"$ctx->{krb5_conf}\"");
477 push (@provision_options, "KRB5_CCACHE=\"$ctx->{krb5_ccache}\"");
478 push (@provision_options, "NSS_WRAPPER_PASSWD=\"$ctx->{nsswrap_passwd}\"");
479 push (@provision_options, "NSS_WRAPPER_GROUP=\"$ctx->{nsswrap_group}\"");
480 push (@provision_options, "NSS_WRAPPER_HOSTS=\"$ctx->{nsswrap_hosts}\"");
481 push (@provision_options, "NSS_WRAPPER_HOSTNAME=\"$ctx->{nsswrap_hostname}\"");
482 if (defined($ctx->{use_resolv_wrapper})) {
483 push (@provision_options, "RESOLV_WRAPPER_CONF=\"$ctx->{resolv_conf}\"");
484 } else {
485 push (@provision_options, "RESOLV_WRAPPER_HOSTS=\"$ctx->{dns_host_file}\"");
487 if (defined($ENV{GDB_PROVISION})) {
488 push (@provision_options, "gdb --args");
489 if (!defined($ENV{PYTHON})) {
490 push (@provision_options, "env");
491 push (@provision_options, "python");
494 if (defined($ENV{VALGRIND_PROVISION})) {
495 push (@provision_options, "valgrind");
496 if (!defined($ENV{PYTHON})) {
497 push (@provision_options, "env");
498 push (@provision_options, "python");
501 if (defined($ENV{PYTHON})) {
502 push (@provision_options, $ENV{PYTHON});
504 push (@provision_options, Samba::bindir_path($self, "samba-tool"));
505 push (@provision_options, "domain");
506 push (@provision_options, "provision");
507 push (@provision_options, "--configfile=$ctx->{smb_conf}");
508 push (@provision_options, "--host-name=$ctx->{hostname}");
509 push (@provision_options, "--host-ip=$ctx->{ipv4}");
510 push (@provision_options, "--quiet");
511 push (@provision_options, "--domain=$ctx->{domain}");
512 push (@provision_options, "--realm=$ctx->{realm}");
513 push (@provision_options, "--adminpass=$ctx->{password}");
514 push (@provision_options, "--krbtgtpass=krbtgt$ctx->{password}");
515 push (@provision_options, "--machinepass=machine$ctx->{password}");
516 push (@provision_options, "--root=$ctx->{unix_name}");
517 push (@provision_options, "--server-role=\"$ctx->{server_role}\"");
518 push (@provision_options, "--function-level=\"$ctx->{functional_level}\"");
520 @{$ctx->{provision_options}} = @provision_options;
522 return $ctx;
526 # Step1 creates the basic configuration
528 sub provision_raw_step1($$)
530 my ($self, $ctx) = @_;
532 mkdir($_, 0777) foreach (@{$ctx->{directories}});
535 ## lockdir and piddir must be 0755
537 chmod 0755, $ctx->{lockdir};
538 chmod 0755, $ctx->{piddir};
540 unless (open(CONFFILE, ">$ctx->{smb_conf}")) {
541 warn("can't open $ctx->{smb_conf}$?");
542 return undef;
545 Samba::prepare_keyblobs($ctx);
546 my $crlfile = "$ctx->{tlsdir}/crl.pem";
547 $crlfile = "" unless -e ${crlfile};
549 print CONFFILE "
550 [global]
551 netbios name = $ctx->{netbiosname}
552 posix:eadb = $ctx->{statedir}/eadb.tdb
553 workgroup = $ctx->{domain}
554 realm = $ctx->{realm}
555 private dir = $ctx->{privatedir}
556 pid directory = $ctx->{piddir}
557 ncalrpc dir = $ctx->{ncalrpcdir}
558 lock dir = $ctx->{lockdir}
559 state directory = $ctx->{statedir}
560 cache directory = $ctx->{cachedir}
561 winbindd socket directory = $ctx->{winbindd_socket_dir}
562 ntp signd socket directory = $ctx->{ntp_signd_socket_dir}
563 winbind separator = /
564 interfaces = $ctx->{interfaces}
565 tls dh params file = $ctx->{tlsdir}/dhparms.pem
566 tls crlfile = ${crlfile}
567 tls verify peer = no_check
568 panic action = $RealBin/gdb_backtrace \%d
569 wins support = yes
570 server role = $ctx->{server_role}
571 server services = +echo +smb -s3fs
572 dcerpc endpoint servers = +winreg +srvsvc
573 notify:inotify = false
574 ldb:nosync = true
575 ldap server require strong auth = yes
576 #We don't want to pass our self-tests if the PAC code is wrong
577 gensec:require_pac = true
578 log file = $ctx->{logdir}/log.\%m
579 log level = $ctx->{server_loglevel}
580 lanman auth = Yes
581 ntlm auth = Yes
582 rndc command = true
583 dns update command = $ctx->{samba_dnsupdate}
584 spn update command = $ENV{SRCDIR_ABS}/source4/scripting/bin/samba_spnupdate -s $ctx->{smb_conf}
585 dreplsrv:periodic_startup_interval = 0
586 dsdb:schema update allowed = yes
588 vfs objects = dfs_samba4 acl_xattr fake_acls xattr_tdb streams_depot
590 idmap_ldb:use rfc2307=yes
591 winbind enum users = yes
592 winbind enum groups = yes
594 rpc server port:netlogon = 1026
598 print CONFFILE "
600 # Begin extra options
601 $ctx->{smb_conf_extra_options}
602 # End extra options
604 close(CONFFILE);
606 #Default the KDC IP to the server's IP
607 if (not defined($ctx->{kdc_ipv4})) {
608 $ctx->{kdc_ipv4} = $ctx->{ipv4};
610 if (not defined($ctx->{kdc_ipv6})) {
611 $ctx->{kdc_ipv6} = $ctx->{ipv6};
614 Samba::mk_krb5_conf($ctx);
616 open(PWD, ">$ctx->{nsswrap_passwd}");
617 if ($ctx->{unix_uid} != 0) {
618 print PWD "root:x:0:0:root gecos:$ctx->{prefix_abs}:/bin/false\n";
620 print PWD "$ctx->{unix_name}:x:$ctx->{unix_uid}:65531:$ctx->{unix_name} gecos:$ctx->{prefix_abs}:/bin/false\n";
621 print PWD "nobody:x:65534:65533:nobody gecos:$ctx->{prefix_abs}:/bin/false
622 pdbtest:x:65533:65533:pdbtest gecos:$ctx->{prefix_abs}:/bin/false
623 pdbtest2:x:65532:65533:pdbtest gecos:$ctx->{prefix_abs}:/bin/false
624 pdbtest3:x:65531:65533:pdbtest gecos:$ctx->{prefix_abs}:/bin/false
625 pdbtest4:x:65530:65533:pdbtest gecos:$ctx->{prefix_abs}:/bin/false
627 close(PWD);
628 my $uid_rfc2307test = 65533;
630 open(GRP, ">$ctx->{nsswrap_group}");
631 if ($ctx->{unix_gid} != 0) {
632 print GRP "root:x:0:\n";
634 print GRP "$ctx->{unix_name}:x:$ctx->{unix_gid}:\n";
635 print GRP "wheel:x:10:
636 users:x:65531:
637 nobody:x:65533:
638 nogroup:x:65534:nobody
640 close(GRP);
641 my $gid_rfc2307test = 65532;
643 my $hostname = lc($ctx->{hostname});
644 open(HOSTS, ">>$ctx->{nsswrap_hosts}");
645 if ($hostname eq "localdc") {
646 print HOSTS "$ctx->{ipv4} ${hostname}.$ctx->{dnsname} $ctx->{dnsname} ${hostname}\n";
647 print HOSTS "$ctx->{ipv6} ${hostname}.$ctx->{dnsname} $ctx->{dnsname} ${hostname}\n";
648 } else {
649 print HOSTS "$ctx->{ipv4} ${hostname}.$ctx->{dnsname} ${hostname}\n";
650 print HOSTS "$ctx->{ipv6} ${hostname}.$ctx->{dnsname} ${hostname}\n";
652 close(HOSTS);
654 if (defined($ctx->{resolv_conf})) {
655 open(RESOLV_CONF, ">$ctx->{resolv_conf}");
656 print RESOLV_CONF "nameserver $ctx->{kdc_ipv4}\n";
657 print RESOLV_CONF "nameserver $ctx->{kdc_ipv6}\n";
658 close(RESOLV_CONF);
661 my $configuration = "--configfile=$ctx->{smb_conf}";
663 #Ensure the config file is valid before we start
664 my $testparm = Samba::bindir_path($self, "samba-tool") . " testparm";
665 if (system("$testparm $configuration -v --suppress-prompt >/dev/null 2>&1") != 0) {
666 system("$testparm -v --suppress-prompt $configuration >&2");
667 warn("Failed to create a valid smb.conf configuration $testparm!");
668 return undef;
670 unless (system("($testparm $configuration -v --suppress-prompt --parameter-name=\"netbios name\" --section-name=global 2> /dev/null | grep -i \"^$ctx->{netbiosname}\" ) >/dev/null 2>&1") == 0) {
671 warn("Failed to create a valid smb.conf configuration! $testparm $configuration -v --suppress-prompt --parameter-name=\"netbios name\" --section-name=global");
672 return undef;
675 my $ret = {
676 KRB5_CONFIG => $ctx->{krb5_conf},
677 KRB5_CCACHE => $ctx->{krb5_ccache},
678 PIDDIR => $ctx->{piddir},
679 SERVER => $ctx->{hostname},
680 SERVER_IP => $ctx->{ipv4},
681 SERVER_IPV6 => $ctx->{ipv6},
682 NETBIOSNAME => $ctx->{netbiosname},
683 DOMAIN => $ctx->{domain},
684 USERNAME => $ctx->{username},
685 REALM => $ctx->{realm},
686 PASSWORD => $ctx->{password},
687 LDAPDIR => $ctx->{ldapdir},
688 LDAP_INSTANCE => $ctx->{ldap_instance},
689 SELFTEST_WINBINDD_SOCKET_DIR => $ctx->{winbindd_socket_dir},
690 NCALRPCDIR => $ctx->{ncalrpcdir},
691 LOCKDIR => $ctx->{lockdir},
692 STATEDIR => $ctx->{statedir},
693 CACHEDIR => $ctx->{cachedir},
694 PRIVATEDIR => $ctx->{privatedir},
695 SERVERCONFFILE => $ctx->{smb_conf},
696 CONFIGURATION => $configuration,
697 SOCKET_WRAPPER_DEFAULT_IFACE => $ctx->{swiface},
698 NSS_WRAPPER_PASSWD => $ctx->{nsswrap_passwd},
699 NSS_WRAPPER_GROUP => $ctx->{nsswrap_group},
700 NSS_WRAPPER_HOSTS => $ctx->{nsswrap_hosts},
701 NSS_WRAPPER_HOSTNAME => $ctx->{nsswrap_hostname},
702 SAMBA_TEST_FIFO => "$ctx->{prefix}/samba_test.fifo",
703 SAMBA_TEST_LOG => "$ctx->{prefix}/samba_test.log",
704 SAMBA_TEST_LOG_POS => 0,
705 NSS_WRAPPER_MODULE_SO_PATH => Samba::nss_wrapper_winbind_so_path($self),
706 NSS_WRAPPER_MODULE_FN_PREFIX => "winbind",
707 LOCAL_PATH => $ctx->{share},
708 UID_RFC2307TEST => $uid_rfc2307test,
709 GID_RFC2307TEST => $gid_rfc2307test,
710 SERVER_ROLE => $ctx->{server_role},
711 RESOLV_CONF => $ctx->{resolv_conf}
714 if (defined($ctx->{use_resolv_wrapper})) {
715 $ret->{RESOLV_WRAPPER_CONF} = $ctx->{resolv_conf};
716 } else {
717 $ret->{RESOLV_WRAPPER_HOSTS} = $ctx->{dns_host_file};
720 return $ret;
724 # Step2 runs the provision script
726 sub provision_raw_step2($$$)
728 my ($self, $ctx, $ret) = @_;
730 my $provision_cmd = join(" ", @{$ctx->{provision_options}});
731 unless (system($provision_cmd) == 0) {
732 warn("Unable to provision: \n$provision_cmd\n");
733 return undef;
736 my $testallowed_account = "testallowed";
737 my $samba_tool_cmd = "";
738 $samba_tool_cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
739 $samba_tool_cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
740 $samba_tool_cmd .= Samba::bindir_path($self, "samba-tool")
741 . " user create --configfile=$ctx->{smb_conf} $testallowed_account $ctx->{password}";
742 unless (system($samba_tool_cmd) == 0) {
743 warn("Unable to add testallowed user: \n$samba_tool_cmd\n");
744 return undef;
747 my $ldbmodify = "";
748 $ldbmodify .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
749 $ldbmodify .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
750 $ldbmodify .= Samba::bindir_path($self, "ldbmodify");
751 my $base_dn = "DC=".join(",DC=", split(/\./, $ctx->{realm}));
753 if ($ctx->{server_role} ne "domain controller") {
754 $base_dn = "DC=$ctx->{netbiosname}";
757 my $user_dn = "cn=$testallowed_account,cn=users,$base_dn";
758 $testallowed_account = "testallowed account";
759 open(LDIF, "|$ldbmodify -H $ctx->{privatedir}/sam.ldb");
760 print LDIF "dn: $user_dn
761 changetype: modify
762 replace: samAccountName
763 samAccountName: $testallowed_account
766 close(LDIF);
768 open(LDIF, "|$ldbmodify -H $ctx->{privatedir}/sam.ldb");
769 print LDIF "dn: $user_dn
770 changetype: modify
771 replace: userPrincipalName
772 userPrincipalName: testallowed upn\@$ctx->{realm}
773 replace: servicePrincipalName
774 servicePrincipalName: host/testallowed
777 close(LDIF);
779 $samba_tool_cmd = "";
780 $samba_tool_cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
781 $samba_tool_cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
782 $samba_tool_cmd .= Samba::bindir_path($self, "samba-tool")
783 . " user create --configfile=$ctx->{smb_conf} testdenied $ctx->{password}";
784 unless (system($samba_tool_cmd) == 0) {
785 warn("Unable to add testdenied user: \n$samba_tool_cmd\n");
786 return undef;
789 my $user_dn = "cn=testdenied,cn=users,$base_dn";
790 open(LDIF, "|$ldbmodify -H $ctx->{privatedir}/sam.ldb");
791 print LDIF "dn: $user_dn
792 changetype: modify
793 replace: userPrincipalName
794 userPrincipalName: testdenied_upn\@$ctx->{realm}.upn
797 close(LDIF);
799 $samba_tool_cmd = "";
800 $samba_tool_cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
801 $samba_tool_cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
802 $samba_tool_cmd .= Samba::bindir_path($self, "samba-tool")
803 . " group addmembers --configfile=$ctx->{smb_conf} 'Allowed RODC Password Replication Group' '$testallowed_account'";
804 unless (system($samba_tool_cmd) == 0) {
805 warn("Unable to add '$testallowed_account' user to 'Allowed RODC Password Replication Group': \n$samba_tool_cmd\n");
806 return undef;
809 # Create to users alice and bob!
810 my $user_account_array = ["alice", "bob"];
812 foreach my $user_account (@{$user_account_array}) {
813 my $samba_tool_cmd = "";
815 $samba_tool_cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
816 $samba_tool_cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
817 $samba_tool_cmd .= Samba::bindir_path($self, "samba-tool")
818 . " user create --configfile=$ctx->{smb_conf} $user_account Secret007";
819 unless (system($samba_tool_cmd) == 0) {
820 warn("Unable to create user: $user_account\n$samba_tool_cmd\n");
821 return undef;
825 return $ret;
828 sub provision($$$$$$$$$$)
830 my ($self, $prefix, $server_role, $hostname,
831 $domain, $realm, $functional_level,
832 $password, $kdc_ipv4, $kdc_ipv6, $extra_smbconf_options, $extra_smbconf_shares,
833 $extra_provision_options) = @_;
835 my $ctx = $self->provision_raw_prepare($prefix, $server_role,
836 $hostname,
837 $domain, $realm, $functional_level,
838 $password, $kdc_ipv4, $kdc_ipv6);
840 if (defined($extra_provision_options)) {
841 push (@{$ctx->{provision_options}}, @{$extra_provision_options});
842 } else {
843 push (@{$ctx->{provision_options}}, "--use-ntvfs");
846 $ctx->{share} = "$ctx->{prefix_abs}/share";
847 push(@{$ctx->{directories}}, "$ctx->{share}");
848 push(@{$ctx->{directories}}, "$ctx->{share}/test1");
849 push(@{$ctx->{directories}}, "$ctx->{share}/test2");
851 # precreate directories for printer drivers
852 push(@{$ctx->{directories}}, "$ctx->{share}/W32X86");
853 push(@{$ctx->{directories}}, "$ctx->{share}/x64");
854 push(@{$ctx->{directories}}, "$ctx->{share}/WIN40");
856 my $msdfs = "no";
857 $msdfs = "yes" if ($server_role eq "domain controller");
858 $ctx->{smb_conf_extra_options} = "
860 max xmit = 32K
861 server max protocol = SMB2
862 host msdfs = $msdfs
863 lanman auth = yes
865 # fruit:copyfile is a global option
866 fruit:copyfile = yes
868 $extra_smbconf_options
870 [tmp]
871 path = $ctx->{share}
872 read only = no
873 posix:sharedelay = 100000
874 posix:oplocktimeout = 3
875 posix:writetimeupdatedelay = 500000
877 [xcopy_share]
878 path = $ctx->{share}
879 read only = no
880 posix:sharedelay = 100000
881 posix:oplocktimeout = 3
882 posix:writetimeupdatedelay = 500000
883 create mask = 777
884 force create mode = 777
886 [posix_share]
887 path = $ctx->{share}
888 read only = no
889 create mask = 0777
890 force create mode = 0
891 directory mask = 0777
892 force directory mode = 0
894 [test1]
895 path = $ctx->{share}/test1
896 read only = no
897 posix:sharedelay = 100000
898 posix:oplocktimeout = 3
899 posix:writetimeupdatedelay = 500000
901 [test2]
902 path = $ctx->{share}/test2
903 read only = no
904 posix:sharedelay = 100000
905 posix:oplocktimeout = 3
906 posix:writetimeupdatedelay = 500000
908 [cifs]
909 path = $ctx->{share}/_ignore_cifs_
910 read only = no
911 ntvfs handler = cifs
912 cifs:server = $ctx->{netbiosname}
913 cifs:share = tmp
914 cifs:use-s4u2proxy = yes
915 # There is no username specified here, instead the client is expected
916 # to log in with kerberos, and the serverwill use delegated credentials.
917 # Or the server tries s4u2self/s4u2proxy to impersonate the client
919 [simple]
920 path = $ctx->{share}
921 read only = no
922 ntvfs handler = simple
924 [sysvol]
925 path = $ctx->{statedir}/sysvol
926 read only = no
928 [netlogon]
929 path = $ctx->{statedir}/sysvol/$ctx->{dnsname}/scripts
930 read only = no
932 [cifsposix]
933 copy = simple
934 ntvfs handler = cifsposix
936 [vfs_fruit]
937 path = $ctx->{share}
938 vfs objects = catia fruit streams_xattr acl_xattr
939 ea support = yes
940 fruit:resource = file
941 fruit:metadata = netatalk
942 fruit:locking = netatalk
943 fruit:encoding = native
945 $extra_smbconf_shares
948 if (defined($self->{ldap})) {
949 $ctx->{ldapdir} = "$ctx->{privatedir}/ldap";
950 push(@{$ctx->{directories}}, "$ctx->{ldapdir}");
952 my $ldap_uri= "$ctx->{ldapdir}/ldapi";
953 $ldap_uri =~ s|/|%2F|g;
954 $ldap_uri = "ldapi://$ldap_uri";
955 $ctx->{ldap_uri} = $ldap_uri;
957 $ctx->{ldap_instance} = lc($ctx->{netbiosname});
960 my $ret = $self->provision_raw_step1($ctx);
961 unless (defined $ret) {
962 return undef;
965 if (defined($self->{ldap})) {
966 $ret->{LDAP_URI} = $ctx->{ldap_uri};
967 push (@{$ctx->{provision_options}}, "--ldap-backend-type=" . $self->{ldap});
968 push (@{$ctx->{provision_options}}, "--ldap-backend-nosync");
969 if ($self->{ldap} eq "openldap") {
970 push (@{$ctx->{provision_options}}, "--slapd-path=" . $ENV{OPENLDAP_SLAPD});
971 ($ret->{SLAPD_CONF_D}, $ret->{OPENLDAP_PIDFILE}) = $self->mk_openldap($ctx) or die("Unable to create openldap directories");
973 } elsif ($self->{ldap} eq "fedora-ds") {
974 push (@{$ctx->{provision_options}}, "--slapd-path=" . "$ENV{FEDORA_DS_ROOT}/sbin/ns-slapd");
975 push (@{$ctx->{provision_options}}, "--setup-ds-path=" . "$ENV{FEDORA_DS_ROOT}/sbin/setup-ds.pl");
976 ($ret->{FEDORA_DS_DIR}, $ret->{FEDORA_DS_PIDFILE}) = $self->mk_fedora_ds($ctx) or die("Unable to create fedora ds directories");
981 return $self->provision_raw_step2($ctx, $ret);
984 sub provision_s4member($$$$$)
986 my ($self, $prefix, $dcvars, $hostname, $more_conf) = @_;
987 print "PROVISIONING MEMBER...\n";
988 my $extra_smb_conf = "
989 passdb backend = samba_dsdb
990 winbindd:use external pipes = true
992 # the source4 smb server doesn't allow signing by default
993 server signing = enabled
995 rpc_server:default = external
996 rpc_server:svcctl = embedded
997 rpc_server:srvsvc = embedded
998 rpc_server:eventlog = embedded
999 rpc_server:ntsvcs = embedded
1000 rpc_server:winreg = embedded
1001 rpc_server:spoolss = embedded
1002 rpc_daemon:spoolssd = embedded
1003 rpc_server:tcpip = no
1005 if ($more_conf) {
1006 $extra_smb_conf = $extra_smb_conf . $more_conf . "\n";
1008 my $ret = $self->provision($prefix,
1009 "member server",
1010 $hostname,
1011 "SAMBADOMAIN",
1012 "samba.example.com",
1013 "2008",
1014 "locMEMpass3",
1015 $dcvars->{SERVER_IP},
1016 $dcvars->{SERVER_IPV6},
1017 $extra_smb_conf, "", undef);
1018 unless ($ret) {
1019 return undef;
1022 my $samba_tool = Samba::bindir_path($self, "samba-tool");
1023 my $cmd = "";
1024 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
1025 if (defined($ret->{RESOLV_WRAPPER_CONF})) {
1026 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
1027 } else {
1028 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
1030 $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
1031 $cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
1032 $cmd .= "$samba_tool domain join $ret->{CONFIGURATION} $dcvars->{REALM} member";
1033 $cmd .= " -U$dcvars->{DC_USERNAME}\%$dcvars->{DC_PASSWORD}";
1034 $cmd .= " --machinepass=machine$ret->{PASSWORD}";
1036 unless (system($cmd) == 0) {
1037 warn("Join failed\n$cmd");
1038 return undef;
1041 $ret->{MEMBER_SERVER} = $ret->{SERVER};
1042 $ret->{MEMBER_SERVER_IP} = $ret->{SERVER_IP};
1043 $ret->{MEMBER_SERVER_IPV6} = $ret->{SERVER_IPV6};
1044 $ret->{MEMBER_NETBIOSNAME} = $ret->{NETBIOSNAME};
1045 $ret->{MEMBER_USERNAME} = $ret->{USERNAME};
1046 $ret->{MEMBER_PASSWORD} = $ret->{PASSWORD};
1048 $ret->{DC_SERVER} = $dcvars->{DC_SERVER};
1049 $ret->{DC_SERVER_IP} = $dcvars->{DC_SERVER_IP};
1050 $ret->{DC_SERVER_IPV6} = $dcvars->{DC_SERVER_IPV6};
1051 $ret->{DC_NETBIOSNAME} = $dcvars->{DC_NETBIOSNAME};
1052 $ret->{DC_USERNAME} = $dcvars->{DC_USERNAME};
1053 $ret->{DC_PASSWORD} = $dcvars->{DC_PASSWORD};
1055 return $ret;
1058 sub provision_rpc_proxy($$$)
1060 my ($self, $prefix, $dcvars) = @_;
1061 print "PROVISIONING RPC PROXY...\n";
1063 my $extra_smbconf_options = "
1064 passdb backend = samba_dsdb
1066 # rpc_proxy
1067 dcerpc_remote:binding = ncacn_ip_tcp:$dcvars->{SERVER}
1068 dcerpc endpoint servers = epmapper, remote
1069 dcerpc_remote:interfaces = rpcecho
1071 [cifs_to_dc]
1072 path = /tmp/_ignore_cifs_to_dc_/_none_
1073 read only = no
1074 ntvfs handler = cifs
1075 cifs:server = $dcvars->{SERVER}
1076 cifs:share = cifs
1077 cifs:use-s4u2proxy = yes
1078 # There is no username specified here, instead the client is expected
1079 # to log in with kerberos, and the serverwill use delegated credentials.
1080 # Or the server tries s4u2self/s4u2proxy to impersonate the client
1084 my $ret = $self->provision($prefix,
1085 "member server",
1086 "localrpcproxy",
1087 "SAMBADOMAIN",
1088 "samba.example.com",
1089 "2008",
1090 "locRPCproxypass4",
1091 $dcvars->{SERVER_IP},
1092 $dcvars->{SERVER_IPV6},
1093 $extra_smbconf_options, "", undef);
1094 unless ($ret) {
1095 return undef;
1098 my $samba_tool = Samba::bindir_path($self, "samba-tool");
1100 # The joind runs in the context of the rpc_proxy/member for now
1101 my $cmd = "";
1102 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
1103 if (defined($ret->{RESOLV_WRAPPER_CONF})) {
1104 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
1105 } else {
1106 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
1108 $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
1109 $cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
1110 $cmd .= "$samba_tool domain join $ret->{CONFIGURATION} $dcvars->{REALM} member";
1111 $cmd .= " -U$dcvars->{DC_USERNAME}\%$dcvars->{DC_PASSWORD}";
1112 $cmd .= " --machinepass=machine$ret->{PASSWORD}";
1114 unless (system($cmd) == 0) {
1115 warn("Join failed\n$cmd");
1116 return undef;
1119 # Setting up delegation runs in the context of the DC for now
1120 $cmd = "";
1121 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$dcvars->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
1122 $cmd .= "KRB5_CONFIG=\"$dcvars->{KRB5_CONFIG}\" ";
1123 $cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
1124 $cmd .= "$samba_tool delegation for-any-protocol '$ret->{NETBIOSNAME}\$' on";
1125 $cmd .= " $dcvars->{CONFIGURATION}";
1126 print $cmd;
1128 unless (system($cmd) == 0) {
1129 warn("Delegation failed\n$cmd");
1130 return undef;
1133 # Setting up delegation runs in the context of the DC for now
1134 $cmd = "";
1135 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$dcvars->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
1136 $cmd .= "KRB5_CONFIG=\"$dcvars->{KRB5_CONFIG}\" ";
1137 $cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
1138 $cmd .= "$samba_tool delegation add-service '$ret->{NETBIOSNAME}\$' cifs/$dcvars->{SERVER}";
1139 $cmd .= " $dcvars->{CONFIGURATION}";
1141 unless (system($cmd) == 0) {
1142 warn("Delegation failed\n$cmd");
1143 return undef;
1146 $ret->{RPC_PROXY_SERVER} = $ret->{SERVER};
1147 $ret->{RPC_PROXY_SERVER_IP} = $ret->{SERVER_IP};
1148 $ret->{RPC_PROXY_SERVER_IPV6} = $ret->{SERVER_IPV6};
1149 $ret->{RPC_PROXY_NETBIOSNAME} = $ret->{NETBIOSNAME};
1150 $ret->{RPC_PROXY_USERNAME} = $ret->{USERNAME};
1151 $ret->{RPC_PROXY_PASSWORD} = $ret->{PASSWORD};
1153 $ret->{DC_SERVER} = $dcvars->{DC_SERVER};
1154 $ret->{DC_SERVER_IP} = $dcvars->{DC_SERVER_IP};
1155 $ret->{DC_SERVER_IPV6} = $dcvars->{DC_SERVER_IPV6};
1156 $ret->{DC_NETBIOSNAME} = $dcvars->{DC_NETBIOSNAME};
1157 $ret->{DC_USERNAME} = $dcvars->{DC_USERNAME};
1158 $ret->{DC_PASSWORD} = $dcvars->{DC_PASSWORD};
1160 return $ret;
1163 sub provision_promoted_dc($$$)
1165 my ($self, $prefix, $dcvars) = @_;
1166 print "PROVISIONING PROMOTED DC...\n";
1168 # We do this so that we don't run the provision. That's the job of 'samba-tool domain dcpromo'.
1169 my $ctx = $self->provision_raw_prepare($prefix, "domain controller",
1170 "promotedvdc",
1171 "SAMBADOMAIN",
1172 "samba.example.com",
1173 "2008",
1174 $dcvars->{PASSWORD},
1175 $dcvars->{SERVER_IP},
1176 $dcvars->{SERVER_IPV6});
1178 push (@{$ctx->{provision_options}}, "--use-ntvfs");
1180 $ctx->{smb_conf_extra_options} = "
1181 max xmit = 32K
1182 server max protocol = SMB2
1184 [sysvol]
1185 path = $ctx->{statedir}/sysvol
1186 read only = yes
1188 [netlogon]
1189 path = $ctx->{statedir}/sysvol/$ctx->{dnsname}/scripts
1190 read only = no
1194 my $ret = $self->provision_raw_step1($ctx);
1195 unless ($ret) {
1196 return undef;
1199 my $samba_tool = Samba::bindir_path($self, "samba-tool");
1200 my $cmd = "";
1201 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
1202 if (defined($ret->{RESOLV_WRAPPER_CONF})) {
1203 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
1204 } else {
1205 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
1207 $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
1208 $cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
1209 $cmd .= "$samba_tool domain join $ret->{CONFIGURATION} $dcvars->{REALM} MEMBER --realm=$dcvars->{REALM}";
1210 $cmd .= " -U$dcvars->{DC_USERNAME}\%$dcvars->{DC_PASSWORD}";
1211 $cmd .= " --machinepass=machine$ret->{PASSWORD}";
1213 unless (system($cmd) == 0) {
1214 warn("Join failed\n$cmd");
1215 return undef;
1218 my $samba_tool = Samba::bindir_path($self, "samba-tool");
1219 my $cmd = "";
1220 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
1221 $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
1222 $cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
1223 $cmd .= "$samba_tool domain dcpromo $ret->{CONFIGURATION} $dcvars->{REALM} DC --realm=$dcvars->{REALM}";
1224 $cmd .= " -U$dcvars->{DC_USERNAME}\%$dcvars->{DC_PASSWORD}";
1225 $cmd .= " --machinepass=machine$ret->{PASSWORD} --use-ntvfs --dns-backend=BIND9_DLZ";
1227 unless (system($cmd) == 0) {
1228 warn("Join failed\n$cmd");
1229 return undef;
1232 $ret->{PROMOTED_DC_SERVER} = $ret->{SERVER};
1233 $ret->{PROMOTED_DC_SERVER_IP} = $ret->{SERVER_IP};
1234 $ret->{PROMOTED_DC_SERVER_IPV6} = $ret->{SERVER_IPV6};
1235 $ret->{PROMOTED_DC_NETBIOSNAME} = $ret->{NETBIOSNAME};
1237 $ret->{DC_SERVER} = $dcvars->{DC_SERVER};
1238 $ret->{DC_SERVER_IP} = $dcvars->{DC_SERVER_IP};
1239 $ret->{DC_SERVER_IPV6} = $dcvars->{DC_SERVER_IPV6};
1240 $ret->{DC_NETBIOSNAME} = $dcvars->{DC_NETBIOSNAME};
1241 $ret->{DC_USERNAME} = $dcvars->{DC_USERNAME};
1242 $ret->{DC_PASSWORD} = $dcvars->{DC_PASSWORD};
1244 return $ret;
1247 sub provision_vampire_dc($$$)
1249 my ($self, $prefix, $dcvars) = @_;
1250 print "PROVISIONING VAMPIRE DC...\n";
1252 # We do this so that we don't run the provision. That's the job of 'net vampire'.
1253 my $ctx = $self->provision_raw_prepare($prefix, "domain controller",
1254 "localvampiredc",
1255 "SAMBADOMAIN",
1256 "samba.example.com",
1257 "2008",
1258 $dcvars->{PASSWORD},
1259 $dcvars->{SERVER_IP},
1260 $dcvars->{SERVER_IPV6});
1262 push (@{$ctx->{provision_options}}, "--use-ntvfs");
1264 $ctx->{smb_conf_extra_options} = "
1265 max xmit = 32K
1266 server max protocol = SMB2
1268 [sysvol]
1269 path = $ctx->{statedir}/sysvol
1270 read only = yes
1272 [netlogon]
1273 path = $ctx->{statedir}/sysvol/$ctx->{dnsname}/scripts
1274 read only = no
1278 my $ret = $self->provision_raw_step1($ctx);
1279 unless ($ret) {
1280 return undef;
1283 my $samba_tool = Samba::bindir_path($self, "samba-tool");
1284 my $cmd = "";
1285 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
1286 if (defined($ret->{RESOLV_WRAPPER_CONF})) {
1287 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
1288 } else {
1289 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
1291 $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
1292 $cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
1293 $cmd .= "$samba_tool domain join $ret->{CONFIGURATION} $dcvars->{REALM} DC --realm=$dcvars->{REALM}";
1294 $cmd .= " -U$dcvars->{DC_USERNAME}\%$dcvars->{DC_PASSWORD} --domain-critical-only";
1295 $cmd .= " --machinepass=machine$ret->{PASSWORD} --use-ntvfs";
1297 unless (system($cmd) == 0) {
1298 warn("Join failed\n$cmd");
1299 return undef;
1302 $ret->{VAMPIRE_DC_SERVER} = $ret->{SERVER};
1303 $ret->{VAMPIRE_DC_SERVER_IP} = $ret->{SERVER_IP};
1304 $ret->{VAMPIRE_DC_SERVER_IPV6} = $ret->{SERVER_IPV6};
1305 $ret->{VAMPIRE_DC_NETBIOSNAME} = $ret->{NETBIOSNAME};
1307 $ret->{DC_SERVER} = $dcvars->{DC_SERVER};
1308 $ret->{DC_SERVER_IP} = $dcvars->{DC_SERVER_IP};
1309 $ret->{DC_SERVER_IPV6} = $dcvars->{DC_SERVER_IPV6};
1310 $ret->{DC_NETBIOSNAME} = $dcvars->{DC_NETBIOSNAME};
1311 $ret->{DC_USERNAME} = $dcvars->{DC_USERNAME};
1312 $ret->{DC_PASSWORD} = $dcvars->{DC_PASSWORD};
1313 $ret->{DC_REALM} = $dcvars->{DC_REALM};
1315 return $ret;
1318 sub provision_subdom_dc($$$)
1320 my ($self, $prefix, $dcvars) = @_;
1321 print "PROVISIONING SUBDOMAIN DC...\n";
1323 # We do this so that we don't run the provision. That's the job of 'net vampire'.
1324 my $ctx = $self->provision_raw_prepare($prefix, "domain controller",
1325 "localsubdc",
1326 "SAMBASUBDOM",
1327 "sub.samba.example.com",
1328 "2008",
1329 $dcvars->{PASSWORD},
1330 undef);
1332 push (@{$ctx->{provision_options}}, "--use-ntvfs");
1334 $ctx->{smb_conf_extra_options} = "
1335 max xmit = 32K
1336 server max protocol = SMB2
1338 [sysvol]
1339 path = $ctx->{statedir}/sysvol
1340 read only = yes
1342 [netlogon]
1343 path = $ctx->{statedir}/sysvol/$ctx->{dnsname}/scripts
1344 read only = no
1348 my $ret = $self->provision_raw_step1($ctx);
1349 unless ($ret) {
1350 return undef;
1353 Samba::mk_krb5_conf($ctx);
1355 my $samba_tool = Samba::bindir_path($self, "samba-tool");
1356 my $cmd = "";
1357 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
1358 if (defined($ret->{RESOLV_WRAPPER_CONF})) {
1359 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
1360 } else {
1361 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
1363 $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
1364 $cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
1365 $cmd .= "$samba_tool domain join $ret->{CONFIGURATION} $ctx->{dnsname} subdomain ";
1366 $cmd .= "--parent-domain=$dcvars->{REALM} -U$dcvars->{DC_USERNAME}\@$dcvars->{REALM}\%$dcvars->{DC_PASSWORD}";
1367 $cmd .= " --machinepass=machine$ret->{PASSWORD} --use-ntvfs";
1368 $cmd .= " --adminpass=$ret->{PASSWORD}";
1370 unless (system($cmd) == 0) {
1371 warn("Join failed\n$cmd");
1372 return undef;
1375 $ret->{SUBDOM_DC_SERVER} = $ret->{SERVER};
1376 $ret->{SUBDOM_DC_SERVER_IP} = $ret->{SERVER_IP};
1377 $ret->{SUBDOM_DC_SERVER_IPV6} = $ret->{SERVER_IPV6};
1378 $ret->{SUBDOM_DC_NETBIOSNAME} = $ret->{NETBIOSNAME};
1380 $ret->{DC_SERVER} = $dcvars->{DC_SERVER};
1381 $ret->{DC_SERVER_IP} = $dcvars->{DC_SERVER_IP};
1382 $ret->{DC_SERVER_IPV6} = $dcvars->{DC_SERVER_IPV6};
1383 $ret->{DC_NETBIOSNAME} = $dcvars->{DC_NETBIOSNAME};
1384 $ret->{DC_USERNAME} = $dcvars->{DC_USERNAME};
1385 $ret->{DC_PASSWORD} = $dcvars->{DC_PASSWORD};
1387 return $ret;
1390 sub provision_ad_dc_ntvfs($$)
1392 my ($self, $prefix) = @_;
1394 # We keep the old 'winbind' name here in server services to
1395 # ensure upgrades which used that name still work with the now
1396 # alias.
1398 print "PROVISIONING AD DC (NTVFS)...\n";
1399 my $extra_conf_options = "netbios aliases = localDC1-a
1400 server services = +winbind -winbindd
1401 ldap server require strong auth = allow_sasl_over_tls
1402 allow nt4 crypto = yes
1403 lsa over netlogon = yes
1404 rpc server port = 1027
1406 my $ret = $self->provision($prefix,
1407 "domain controller",
1408 "localdc",
1409 "SAMBADOMAIN",
1410 "samba.example.com",
1411 "2008",
1412 "locDCpass1",
1413 undef,
1414 undef,
1415 $extra_conf_options,
1417 undef);
1418 unless ($ret) {
1419 return undef;
1422 unless($self->add_wins_config("$prefix/private")) {
1423 warn("Unable to add wins configuration");
1424 return undef;
1426 $ret->{NETBIOSALIAS} = "localdc1-a";
1427 $ret->{DC_SERVER} = $ret->{SERVER};
1428 $ret->{DC_SERVER_IP} = $ret->{SERVER_IP};
1429 $ret->{DC_SERVER_IPV6} = $ret->{SERVER_IPV6};
1430 $ret->{DC_NETBIOSNAME} = $ret->{NETBIOSNAME};
1431 $ret->{DC_USERNAME} = $ret->{USERNAME};
1432 $ret->{DC_PASSWORD} = $ret->{PASSWORD};
1433 $ret->{DC_REALM} = $ret->{REALM};
1435 return $ret;
1438 sub provision_fl2000dc($$)
1440 my ($self, $prefix) = @_;
1442 print "PROVISIONING DC WITH FOREST LEVEL 2000...\n";
1443 my $extra_conf_options = "
1444 spnego:simulate_w2k=yes
1445 ntlmssp_server:force_old_spnego=yes
1447 my $ret = $self->provision($prefix,
1448 "domain controller",
1449 "dc5",
1450 "SAMBA2000",
1451 "samba2000.example.com",
1452 "2000",
1453 "locDCpass5",
1454 undef,
1455 undef,
1456 $extra_conf_options,
1458 undef);
1459 unless ($ret) {
1460 return undef;
1463 unless($self->add_wins_config("$prefix/private")) {
1464 warn("Unable to add wins configuration");
1465 return undef;
1467 $ret->{DC_SERVER} = $ret->{SERVER};
1468 $ret->{DC_SERVER_IP} = $ret->{SERVER_IP};
1469 $ret->{DC_SERVER_IPV6} = $ret->{SERVER_IPV6};
1470 $ret->{DC_NETBIOSNAME} = $ret->{NETBIOSNAME};
1471 $ret->{DC_USERNAME} = $ret->{USERNAME};
1472 $ret->{DC_PASSWORD} = $ret->{PASSWORD};
1473 $ret->{DC_REALM} = $ret->{REALM};
1475 return $ret;
1478 sub provision_fl2003dc($$$)
1480 my ($self, $prefix, $dcvars) = @_;
1481 my $swiface1 = Samba::get_interface("fakednsforwarder1");
1482 my $swiface2 = Samba::get_interface("fakednsforwarder2");
1484 print "PROVISIONING DC WITH FOREST LEVEL 2003...\n";
1485 my $extra_conf_options = "allow dns updates = nonsecure and secure
1486 dns forwarder = 127.0.0.$swiface1 127.0.0.$swiface2";
1487 my $ret = $self->provision($prefix,
1488 "domain controller",
1489 "dc6",
1490 "SAMBA2003",
1491 "samba2003.example.com",
1492 "2003",
1493 "locDCpass6",
1494 undef,
1495 undef,
1496 $extra_conf_options,
1498 undef);
1499 unless (defined $ret) {
1500 return undef;
1503 $ret->{DC_SERVER} = $ret->{SERVER};
1504 $ret->{DC_SERVER_IP} = $ret->{SERVER_IP};
1505 $ret->{DC_SERVER_IPV6} = $ret->{SERVER_IPV6};
1506 $ret->{DC_NETBIOSNAME} = $ret->{NETBIOSNAME};
1507 $ret->{DC_USERNAME} = $ret->{USERNAME};
1508 $ret->{DC_PASSWORD} = $ret->{PASSWORD};
1509 $ret->{DNS_FORWARDER1} = "127.0.0.$swiface1";
1510 $ret->{DNS_FORWARDER2} = "127.0.0.$swiface2";
1512 my @samba_tool_options;
1513 push (@samba_tool_options, Samba::bindir_path($self, "samba-tool"));
1514 push (@samba_tool_options, "domain");
1515 push (@samba_tool_options, "passwordsettings");
1516 push (@samba_tool_options, "set");
1517 push (@samba_tool_options, "--configfile=$ret->{SERVERCONFFILE}");
1518 push (@samba_tool_options, "--min-pwd-age=0");
1519 push (@samba_tool_options, "--history-length=1");
1521 my $samba_tool_cmd = join(" ", @samba_tool_options);
1523 unless (system($samba_tool_cmd) == 0) {
1524 warn("Unable to set min password age to 0: \n$samba_tool_cmd\n");
1525 return undef;
1528 unless($self->add_wins_config("$prefix/private")) {
1529 warn("Unable to add wins configuration");
1530 return undef;
1533 return $ret;
1536 sub provision_fl2008r2dc($$$)
1538 my ($self, $prefix, $dcvars) = @_;
1540 print "PROVISIONING DC WITH FOREST LEVEL 2008r2...\n";
1541 my $extra_conf_options = "ldap server require strong auth = no";
1542 my $ret = $self->provision($prefix,
1543 "domain controller",
1544 "dc7",
1545 "SAMBA2008R2",
1546 "samba2008R2.example.com",
1547 "2008_R2",
1548 "locDCpass7",
1549 undef,
1550 undef,
1551 $extra_conf_options,
1553 undef);
1554 unless (defined $ret) {
1555 return undef;
1558 unless ($self->add_wins_config("$prefix/private")) {
1559 warn("Unable to add wins configuration");
1560 return undef;
1562 $ret->{DC_SERVER} = $ret->{SERVER};
1563 $ret->{DC_SERVER_IP} = $ret->{SERVER_IP};
1564 $ret->{DC_SERVER_IPV6} = $ret->{SERVER_IPV6};
1565 $ret->{DC_NETBIOSNAME} = $ret->{NETBIOSNAME};
1566 $ret->{DC_USERNAME} = $ret->{USERNAME};
1567 $ret->{DC_PASSWORD} = $ret->{PASSWORD};
1568 $ret->{DC_REALM} = $ret->{REALM};
1570 return $ret;
1574 sub provision_rodc($$$)
1576 my ($self, $prefix, $dcvars) = @_;
1577 print "PROVISIONING RODC...\n";
1579 # We do this so that we don't run the provision. That's the job of 'net join RODC'.
1580 my $ctx = $self->provision_raw_prepare($prefix, "domain controller",
1581 "rodc",
1582 "SAMBADOMAIN",
1583 "samba.example.com",
1584 "2008",
1585 $dcvars->{PASSWORD},
1586 $dcvars->{SERVER_IP},
1587 $dcvars->{SERVER_IPV6});
1588 unless ($ctx) {
1589 return undef;
1592 push (@{$ctx->{provision_options}}, "--use-ntvfs");
1594 $ctx->{share} = "$ctx->{prefix_abs}/share";
1595 push(@{$ctx->{directories}}, "$ctx->{share}");
1597 $ctx->{smb_conf_extra_options} = "
1598 max xmit = 32K
1599 server max protocol = SMB2
1601 [sysvol]
1602 path = $ctx->{statedir}/sysvol
1603 read only = yes
1605 [netlogon]
1606 path = $ctx->{statedir}/sysvol/$ctx->{dnsname}/scripts
1607 read only = yes
1609 [tmp]
1610 path = $ctx->{share}
1611 read only = no
1612 posix:sharedelay = 10000
1613 posix:oplocktimeout = 3
1614 posix:writetimeupdatedelay = 50000
1618 my $ret = $self->provision_raw_step1($ctx);
1619 unless ($ret) {
1620 return undef;
1623 my $samba_tool = Samba::bindir_path($self, "samba-tool");
1624 my $cmd = "";
1625 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
1626 if (defined($ret->{RESOLV_WRAPPER_CONF})) {
1627 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
1628 } else {
1629 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
1631 $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
1632 $cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
1633 $cmd .= "$samba_tool domain join $ret->{CONFIGURATION} $dcvars->{REALM} RODC";
1634 $cmd .= " -U$dcvars->{DC_USERNAME}\%$dcvars->{DC_PASSWORD}";
1635 $cmd .= " --server=$dcvars->{DC_SERVER} --use-ntvfs";
1637 unless (system($cmd) == 0) {
1638 warn("RODC join failed\n$cmd");
1639 return undef;
1642 # This ensures deterministic behaviour for tests that want to have the 'testallowed account'
1643 # user password verified on the RODC
1644 my $testallowed_account = "testallowed account";
1645 $cmd = "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
1646 $cmd .= "KRB5CCNAME=\"$ret->{KRB5_CCACHE}\" ";
1647 $cmd .= "$samba_tool rodc preload '$testallowed_account' $ret->{CONFIGURATION}";
1648 $cmd .= " --server=$dcvars->{DC_SERVER}";
1650 unless (system($cmd) == 0) {
1651 warn("RODC join failed\n$cmd");
1652 return undef;
1655 # we overwrite the kdc after the RODC join
1656 # so that use the RODC as kdc and test
1657 # the proxy code
1658 $ctx->{kdc_ipv4} = $ret->{SERVER_IP};
1659 $ctx->{kdc_ipv6} = $ret->{SERVER_IPV6};
1660 Samba::mk_krb5_conf($ctx);
1662 $ret->{RODC_DC_SERVER} = $ret->{SERVER};
1663 $ret->{RODC_DC_SERVER_IP} = $ret->{SERVER_IP};
1664 $ret->{RODC_DC_SERVER_IPV6} = $ret->{SERVER_IPV6};
1665 $ret->{RODC_DC_NETBIOSNAME} = $ret->{NETBIOSNAME};
1667 $ret->{DC_SERVER} = $dcvars->{DC_SERVER};
1668 $ret->{DC_SERVER_IP} = $dcvars->{DC_SERVER_IP};
1669 $ret->{DC_SERVER_IPV6} = $dcvars->{DC_SERVER_IPV6};
1670 $ret->{DC_NETBIOSNAME} = $dcvars->{DC_NETBIOSNAME};
1671 $ret->{DC_USERNAME} = $dcvars->{DC_USERNAME};
1672 $ret->{DC_PASSWORD} = $dcvars->{DC_PASSWORD};
1674 return $ret;
1677 sub read_config_h($)
1679 my ($name) = @_;
1680 my %ret = {};
1681 open(LF, "<$name") or die("unable to read $name: $!");
1682 while (<LF>) {
1683 chomp;
1684 next if not (/^#define /);
1685 if (/^#define (.*?)[ \t]+(.*?)$/) {
1686 $ret{$1} = $2;
1687 next;
1689 if (/^#define (.*?)[ \t]+$/) {
1690 $ret{$1} = 1;;
1691 next;
1694 close(LF);
1695 return \%ret;
1698 sub provision_ad_dc($$)
1700 my ($self, $prefix) = @_;
1702 my $prefix_abs = abs_path($prefix);
1704 my $bindir_abs = abs_path($self->{bindir});
1705 my $lockdir="$prefix_abs/lockdir";
1706 my $conffile="$prefix_abs/etc/smb.conf";
1708 my $require_mutexes = "dbwrap_tdb_require_mutexes:* = yes";
1709 $require_mutexes = "" if ($ENV{SELFTEST_DONT_REQUIRE_TDB_MUTEX_SUPPORT} eq "1");
1711 my $config_h = {};
1713 if (defined($ENV{CONFIG_H})) {
1714 $config_h = read_config_h($ENV{CONFIG_H});
1717 my $password_hash_gpg_key_ids = "password hash gpg key ids = 4952E40301FAB41A";
1718 $password_hash_gpg_key_ids = "" unless defined($config_h->{HAVE_GPGME});
1720 my $extra_smbconf_options = "
1721 server services = -smb +s3fs
1722 xattr_tdb:file = $prefix_abs/statedir/xattr.tdb
1724 dbwrap_tdb_mutexes:* = yes
1725 ${require_mutexes}
1727 ${password_hash_gpg_key_ids}
1729 kernel oplocks = no
1730 kernel change notify = no
1731 smb2 leases = no
1733 logging = file
1734 printing = bsd
1735 printcap name = /dev/null
1737 max protocol = SMB3
1738 read only = no
1740 smbd:sharedelay = 100000
1741 smbd:writetimeupdatedelay = 500000
1742 create mask = 755
1743 dos filemode = yes
1745 dcerpc endpoint servers = -winreg -srvsvc
1747 printcap name = /dev/null
1749 addprinter command = $ENV{SRCDIR_ABS}/source3/script/tests/printing/modprinter.pl -a -s $conffile --
1750 deleteprinter command = $ENV{SRCDIR_ABS}/source3/script/tests/printing/modprinter.pl -d -s $conffile --
1752 printing = vlp
1753 print command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb print %p %s
1754 lpq command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lpq %p
1755 lp rm command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lprm %p %j
1756 lp pause command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lppause %p %j
1757 lp resume command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lpresume %p %j
1758 queue pause command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb queuepause %p
1759 queue resume command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb queueresume %p
1760 lpq cache time = 0
1761 print notify backchannel = yes
1764 my $extra_smbconf_shares = "
1766 [tmpenc]
1767 copy = tmp
1768 smb encrypt = required
1770 [tmpcase]
1771 copy = tmp
1772 case sensitive = yes
1774 [tmpguest]
1775 copy = tmp
1776 guest ok = yes
1778 [hideunread]
1779 copy = tmp
1780 hide unreadable = yes
1782 [durable]
1783 copy = tmp
1784 kernel share modes = no
1785 kernel oplocks = no
1786 posix locking = no
1788 [print\$]
1789 copy = tmp
1791 [print1]
1792 copy = tmp
1793 printable = yes
1795 [print2]
1796 copy = print1
1797 [print3]
1798 copy = print1
1799 [lp]
1800 copy = print1
1803 print "PROVISIONING AD DC...\n";
1804 my $ret = $self->provision($prefix,
1805 "domain controller",
1806 "addc",
1807 "ADDOMAIN",
1808 "addom.samba.example.com",
1809 "2008",
1810 "locDCpass1",
1811 undef,
1812 undef,
1813 $extra_smbconf_options,
1814 $extra_smbconf_shares,
1815 undef);
1816 unless (defined $ret) {
1817 return undef;
1820 unless($self->add_wins_config("$prefix/private")) {
1821 warn("Unable to add wins configuration");
1822 return undef;
1825 $ret->{DC_SERVER} = $ret->{SERVER};
1826 $ret->{DC_SERVER_IP} = $ret->{SERVER_IP};
1827 $ret->{DC_SERVER_IPV6} = $ret->{SERVER_IPV6};
1828 $ret->{DC_NETBIOSNAME} = $ret->{NETBIOSNAME};
1829 $ret->{DC_USERNAME} = $ret->{USERNAME};
1830 $ret->{DC_PASSWORD} = $ret->{PASSWORD};
1832 return $ret;
1835 sub provision_chgdcpass($$)
1837 my ($self, $prefix) = @_;
1839 print "PROVISIONING CHGDCPASS...\n";
1840 my $extra_provision_options = undef;
1841 # This environment disallows the use of this password
1842 # (and also removes the default AD complexity checks)
1843 my $unacceptable_password = "widk3Dsle32jxdBdskldsk55klASKQ";
1844 push (@{$extra_provision_options}, "--dns-backend=BIND9_DLZ");
1845 my $ret = $self->provision($prefix,
1846 "domain controller",
1847 "chgdcpass",
1848 "CHDCDOMAIN",
1849 "chgdcpassword.samba.example.com",
1850 "2008",
1851 "chgDCpass1",
1852 undef,
1853 undef,
1854 "check password script = sed -e '/$unacceptable_password/{;q1}; /$unacceptable_password/!{q0}'\n",
1856 $extra_provision_options);
1857 unless (defined $ret) {
1858 return undef;
1861 unless($self->add_wins_config("$prefix/private")) {
1862 warn("Unable to add wins configuration");
1863 return undef;
1866 # Remove secrets.tdb from this environment to test that we
1867 # still start up on systems without the new matching
1868 # secrets.tdb records.
1869 unless (unlink("$ret->{PRIVATEDIR}/secrets.tdb") || unlink("$ret->{PRIVATEDIR}/secrets.ntdb")) {
1870 warn("Unable to remove $ret->{PRIVATEDIR}/secrets.tdb added during provision");
1871 return undef;
1874 $ret->{DC_SERVER} = $ret->{SERVER};
1875 $ret->{DC_SERVER_IP} = $ret->{SERVER_IP};
1876 $ret->{DC_SERVER_IPV6} = $ret->{SERVER_IPV6};
1877 $ret->{DC_NETBIOSNAME} = $ret->{NETBIOSNAME};
1878 $ret->{DC_USERNAME} = $ret->{USERNAME};
1879 $ret->{DC_PASSWORD} = $ret->{PASSWORD};
1880 $ret->{UNACCEPTABLE_PASSWORD} = $unacceptable_password;
1882 return $ret;
1885 sub teardown_env_terminate($$)
1887 my ($self, $envvars) = @_;
1888 my $pid;
1890 # This should cause samba to terminate gracefully
1891 close($envvars->{STDIN_PIPE});
1893 $pid = $envvars->{SAMBA_PID};
1894 my $count = 0;
1895 my $childpid;
1897 # This should give it time to write out the gcov data
1898 until ($count > 15) {
1899 if (Samba::cleanup_child($pid, "samba") != 0) {
1900 return;
1902 sleep(1);
1903 $count++;
1906 # After 15 Seconds, work out why this thing is still alive
1907 warn "server process $pid took more than $count seconds to exit, showing backtrace:\n";
1908 system("$self->{srcdir}/selftest/gdb_backtrace $pid");
1910 until ($count > 30) {
1911 if (Samba::cleanup_child($pid, "samba") != 0) {
1912 return;
1914 sleep(1);
1915 $count++;
1918 if (kill(0, $pid)) {
1919 warn "server process $pid took more than $count seconds to exit, sending SIGTERM\n";
1920 kill "TERM", $pid;
1923 until ($count > 40) {
1924 if (Samba::cleanup_child($pid, "samba") != 0) {
1925 return;
1927 sleep(1);
1928 $count++;
1930 # If it is still around, kill it
1931 if (kill(0, $pid)) {
1932 warn "server process $pid took more than $count seconds to exit, killing\n with SIGKILL\n";
1933 kill 9, $pid;
1935 return;
1938 sub teardown_env($$)
1940 my ($self, $envvars) = @_;
1941 teardown_env_terminate($self, $envvars);
1943 $self->slapd_stop($envvars) if ($self->{ldap});
1945 print $self->getlog_env($envvars);
1947 return;
1950 sub getlog_env($$)
1952 my ($self, $envvars) = @_;
1953 my $title = "SAMBA LOG of: $envvars->{NETBIOSNAME} pid $envvars->{SAMBA_PID}\n";
1954 my $out = $title;
1956 open(LOG, "<$envvars->{SAMBA_TEST_LOG}");
1958 seek(LOG, $envvars->{SAMBA_TEST_LOG_POS}, SEEK_SET);
1959 while (<LOG>) {
1960 $out .= $_;
1962 $envvars->{SAMBA_TEST_LOG_POS} = tell(LOG);
1963 close(LOG);
1965 return "" if $out eq $title;
1967 return $out;
1970 sub check_env($$)
1972 my ($self, $envvars) = @_;
1973 my $samba_pid = $envvars->{SAMBA_PID};
1975 if (not defined($samba_pid)) {
1976 return 0;
1977 } elsif ($samba_pid > 0) {
1978 my $childpid = Samba::cleanup_child($samba_pid, "samba");
1980 if ($childpid == 0) {
1981 return 1;
1983 return 0;
1984 } else {
1985 return 1;
1990 sub setup_env($$$)
1992 my ($self, $envname, $path) = @_;
1993 my $target3 = $self->{target3};
1995 $ENV{ENVNAME} = $envname;
1997 if (defined($self->{vars}->{$envname})) {
1998 return $self->{vars}->{$envname};
2001 if ($envname eq "ad_dc_ntvfs") {
2002 return $self->setup_ad_dc_ntvfs("$path/ad_dc_ntvfs");
2003 } elsif ($envname eq "fl2000dc") {
2004 return $self->setup_fl2000dc("$path/fl2000dc");
2005 } elsif ($envname eq "fl2003dc") {
2006 if (not defined($self->{vars}->{ad_dc})) {
2007 $self->setup_ad_dc("$path/ad_dc");
2009 return $self->setup_fl2003dc("$path/fl2003dc", $self->{vars}->{ad_dc});
2010 } elsif ($envname eq "fl2008r2dc") {
2011 if (not defined($self->{vars}->{ad_dc})) {
2012 $self->setup_ad_dc("$path/ad_dc");
2014 return $self->setup_fl2008r2dc("$path/fl2008r2dc", $self->{vars}->{ad_dc});
2015 } elsif ($envname eq "rpc_proxy") {
2016 if (not defined($self->{vars}->{ad_dc_ntvfs})) {
2017 $self->setup_ad_dc_ntvfs("$path/ad_dc_ntvfs");
2019 return $self->setup_rpc_proxy("$path/rpc_proxy", $self->{vars}->{ad_dc_ntvfs});
2020 } elsif ($envname eq "vampire_dc") {
2021 if (not defined($self->{vars}->{ad_dc_ntvfs})) {
2022 $self->setup_ad_dc_ntvfs("$path/ad_dc_ntvfs");
2024 return $self->setup_vampire_dc("$path/vampire_dc", $self->{vars}->{ad_dc_ntvfs});
2025 } elsif ($envname eq "promoted_dc") {
2026 if (not defined($self->{vars}->{ad_dc_ntvfs})) {
2027 $self->setup_ad_dc_ntvfs("$path/ad_dc_ntvfs");
2029 return $self->setup_promoted_dc("$path/promoted_dc", $self->{vars}->{ad_dc_ntvfs});
2030 } elsif ($envname eq "subdom_dc") {
2031 if (not defined($self->{vars}->{ad_dc_ntvfs})) {
2032 $self->setup_ad_dc_ntvfs("$path/ad_dc_ntvfs");
2034 return $self->setup_subdom_dc("$path/subdom_dc", $self->{vars}->{ad_dc_ntvfs});
2035 } elsif ($envname eq "s4member_dflt_domain") {
2036 if (not defined($self->{vars}->{ad_dc_ntvfs})) {
2037 $self->setup_ad_dc_ntvfs("$path/ad_dc_ntvfs");
2039 return $self->setup_s4member_dflt_domain("$path/s4member_dflt_domain", $self->{vars}->{ad_dc_ntvfs});
2040 } elsif ($envname eq "s4member") {
2041 if (not defined($self->{vars}->{ad_dc_ntvfs})) {
2042 $self->setup_ad_dc_ntvfs("$path/ad_dc_ntvfs");
2044 return $self->setup_s4member("$path/s4member", $self->{vars}->{ad_dc_ntvfs});
2045 } elsif ($envname eq "rodc") {
2046 if (not defined($self->{vars}->{ad_dc_ntvfs})) {
2047 $self->setup_ad_dc_ntvfs("$path/ad_dc_ntvfs");
2049 return $self->setup_rodc("$path/rodc", $self->{vars}->{ad_dc_ntvfs});
2050 } elsif ($envname eq "chgdcpass") {
2051 return $self->setup_chgdcpass("$path/chgdcpass", $self->{vars}->{chgdcpass});
2052 } elsif ($envname eq "ad_member") {
2053 if (not defined($self->{vars}->{ad_dc_ntvfs})) {
2054 $self->setup_ad_dc_ntvfs("$path/ad_dc_ntvfs");
2056 return $target3->setup_admember("$path/ad_member", $self->{vars}->{ad_dc_ntvfs}, 29);
2057 } elsif ($envname eq "ad_dc") {
2058 return $self->setup_ad_dc("$path/ad_dc");
2059 } elsif ($envname eq "ad_dc_no_nss") {
2060 return $self->setup_ad_dc("$path/ad_dc_no_nss", "no_nss");
2061 } elsif ($envname eq "ad_member_rfc2307") {
2062 if (not defined($self->{vars}->{ad_dc_ntvfs})) {
2063 $self->setup_ad_dc_ntvfs("$path/ad_dc_ntvfs");
2065 return $target3->setup_admember_rfc2307("$path/ad_member_rfc2307",
2066 $self->{vars}->{ad_dc_ntvfs}, 34);
2067 } elsif ($envname eq "none") {
2068 return $self->setup_none("$path/none");
2069 } else {
2070 return "UNKNOWN";
2074 sub setup_s4member($$$)
2076 my ($self, $path, $dc_vars) = @_;
2078 my $env = $self->provision_s4member($path, $dc_vars, "s4member");
2080 if (defined $env) {
2081 if (not defined($self->check_or_start($env, "standard"))) {
2082 return undef;
2085 $self->{vars}->{s4member} = $env;
2088 return $env;
2091 sub setup_s4member_dflt_domain($$$)
2093 my ($self, $path, $dc_vars) = @_;
2095 my $env = $self->provision_s4member($path, $dc_vars, "s4member_dflt",
2096 "winbind use default domain = yes");
2098 if (defined $env) {
2099 if (not defined($self->check_or_start($env, "standard"))) {
2100 return undef;
2103 $self->{vars}->{s4member_dflt_domain} = $env;
2106 return $env;
2109 sub setup_rpc_proxy($$$)
2111 my ($self, $path, $dc_vars) = @_;
2113 my $env = $self->provision_rpc_proxy($path, $dc_vars);
2115 if (defined $env) {
2116 if (not defined($self->check_or_start($env, "standard"))) {
2117 return undef;
2120 $self->{vars}->{rpc_proxy} = $env;
2122 return $env;
2125 sub setup_ad_dc_ntvfs($$)
2127 my ($self, $path) = @_;
2129 my $env = $self->provision_ad_dc_ntvfs($path);
2130 if (defined $env) {
2131 if (not defined($self->check_or_start($env, "standard"))) {
2132 warn("Failed to start ad_dc_ntvfs");
2133 return undef;
2136 $self->{vars}->{ad_dc_ntvfs} = $env;
2138 return $env;
2141 sub setup_chgdcpass($$)
2143 my ($self, $path) = @_;
2145 my $env = $self->provision_chgdcpass($path);
2146 if (defined $env) {
2147 if (not defined($self->check_or_start($env, "standard"))) {
2148 return undef;
2151 $self->{vars}->{chgdcpass} = $env;
2153 return $env;
2156 sub setup_fl2000dc($$)
2158 my ($self, $path) = @_;
2160 my $env = $self->provision_fl2000dc($path);
2161 if (defined $env) {
2162 if (not defined($self->check_or_start($env, "standard"))) {
2163 return undef;
2166 $self->{vars}->{fl2000dc} = $env;
2169 return $env;
2172 sub setup_fl2003dc($$$)
2174 my ($self, $path, $dc_vars) = @_;
2176 my $env = $self->provision_fl2003dc($path);
2178 if (defined $env) {
2179 if (not defined($self->check_or_start($env, "standard"))) {
2180 return undef;
2183 $env = $self->setup_trust($env, $dc_vars, "external", "--no-aes-keys");
2185 $self->{vars}->{fl2003dc} = $env;
2187 return $env;
2190 sub setup_fl2008r2dc($$$)
2192 my ($self, $path, $dc_vars) = @_;
2194 my $env = $self->provision_fl2008r2dc($path);
2196 if (defined $env) {
2197 if (not defined($self->check_or_start($env, "standard"))) {
2198 return undef;
2201 my $upn_array = ["$env->{REALM}.upn"];
2202 my $spn_array = ["$env->{REALM}.spn"];
2204 $self->setup_namespaces($env, $upn_array, $spn_array);
2206 $env = $self->setup_trust($env, $dc_vars, "forest", "");
2208 $self->{vars}->{fl2008r2dc} = $env;
2211 return $env;
2214 sub setup_vampire_dc($$$)
2216 my ($self, $path, $dc_vars) = @_;
2218 my $env = $self->provision_vampire_dc($path, $dc_vars);
2220 if (defined $env) {
2221 if (not defined($self->check_or_start($env, "single"))) {
2222 return undef;
2225 $self->{vars}->{vampire_dc} = $env;
2227 # force replicated DC to update repsTo/repsFrom
2228 # for vampired partitions
2229 my $samba_tool = Samba::bindir_path($self, "samba-tool");
2230 my $cmd = "";
2231 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$env->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
2232 if (defined($env->{RESOLV_WRAPPER_CONF})) {
2233 $cmd .= "RESOLV_WRAPPER_CONF=\"$env->{RESOLV_WRAPPER_CONF}\" ";
2234 } else {
2235 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$env->{RESOLV_WRAPPER_HOSTS}\" ";
2237 $cmd .= " KRB5_CONFIG=\"$env->{KRB5_CONFIG}\"";
2238 $cmd .= "KRB5CCNAME=\"$env->{KRB5_CCACHE}\" ";
2239 $cmd .= " $samba_tool drs kcc -k no $env->{DC_SERVER}";
2240 $cmd .= " $env->{CONFIGURATION}";
2241 $cmd .= " -U$dc_vars->{DC_USERNAME}\%$dc_vars->{DC_PASSWORD}";
2242 unless (system($cmd) == 0) {
2243 warn("Failed to exec kcc on remote DC\n$cmd");
2244 return undef;
2247 # as 'vampired' dc may add data in its local replica
2248 # we need to synchronize data between DCs
2249 my $base_dn = "DC=".join(",DC=", split(/\./, $dc_vars->{REALM}));
2250 $cmd = "";
2251 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$env->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
2252 if (defined($env->{RESOLV_WRAPPER_CONF})) {
2253 $cmd .= "RESOLV_WRAPPER_CONF=\"$env->{RESOLV_WRAPPER_CONF}\" ";
2254 } else {
2255 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$env->{RESOLV_WRAPPER_HOSTS}\" ";
2257 $cmd .= " KRB5_CONFIG=\"$env->{KRB5_CONFIG}\"";
2258 $cmd .= "KRB5CCNAME=\"$env->{KRB5_CCACHE}\" ";
2259 $cmd .= " $samba_tool drs replicate $env->{DC_SERVER} $env->{SERVER}";
2260 $cmd .= " $dc_vars->{CONFIGURATION}";
2261 $cmd .= " -U$dc_vars->{DC_USERNAME}\%$dc_vars->{DC_PASSWORD}";
2262 # replicate Configuration NC
2263 my $cmd_repl = "$cmd \"CN=Configuration,$base_dn\"";
2264 unless(system($cmd_repl) == 0) {
2265 warn("Failed to replicate\n$cmd_repl");
2266 return undef;
2268 # replicate Default NC
2269 $cmd_repl = "$cmd \"$base_dn\"";
2270 unless(system($cmd_repl) == 0) {
2271 warn("Failed to replicate\n$cmd_repl");
2272 return undef;
2275 # Pull in a full set of changes from the main DC
2276 my $base_dn = "DC=".join(",DC=", split(/\./, $dc_vars->{REALM}));
2277 $cmd = "";
2278 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$env->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
2279 if (defined($env->{RESOLV_WRAPPER_CONF})) {
2280 $cmd .= "RESOLV_WRAPPER_CONF=\"$env->{RESOLV_WRAPPER_CONF}\" ";
2281 } else {
2282 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$env->{RESOLV_WRAPPER_HOSTS}\" ";
2284 $cmd .= " KRB5_CONFIG=\"$env->{KRB5_CONFIG}\"";
2285 $cmd .= "KRB5CCNAME=\"$env->{KRB5_CCACHE}\" ";
2286 $cmd .= " $samba_tool drs replicate $env->{SERVER} $env->{DC_SERVER}";
2287 $cmd .= " $dc_vars->{CONFIGURATION}";
2288 $cmd .= " -U$dc_vars->{DC_USERNAME}\%$dc_vars->{DC_PASSWORD}";
2289 # replicate Configuration NC
2290 my $cmd_repl = "$cmd \"CN=Configuration,$base_dn\"";
2291 unless(system($cmd_repl) == 0) {
2292 warn("Failed to replicate\n$cmd_repl");
2293 return undef;
2295 # replicate Default NC
2296 $cmd_repl = "$cmd \"$base_dn\"";
2297 unless(system($cmd_repl) == 0) {
2298 warn("Failed to replicate\n$cmd_repl");
2299 return undef;
2303 return $env;
2306 sub setup_promoted_dc($$$)
2308 my ($self, $path, $dc_vars) = @_;
2310 my $env = $self->provision_promoted_dc($path, $dc_vars);
2312 if (defined $env) {
2313 if (not defined($self->check_or_start($env, "single"))) {
2314 return undef;
2317 $self->{vars}->{promoted_dc} = $env;
2319 # force source and replicated DC to update repsTo/repsFrom
2320 # for vampired partitions
2321 my $samba_tool = Samba::bindir_path($self, "samba-tool");
2322 my $cmd = "";
2323 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$env->{SOCKET_WRAPPER_DEFAULT_IFACE}\"";
2324 $cmd .= " KRB5_CONFIG=\"$env->{KRB5_CONFIG}\"";
2325 $cmd .= "KRB5CCNAME=\"$env->{KRB5_CCACHE}\" ";
2326 $cmd .= " $samba_tool drs kcc $env->{DC_SERVER}";
2327 $cmd .= " $env->{CONFIGURATION}";
2328 $cmd .= " -U$dc_vars->{DC_USERNAME}\%$dc_vars->{DC_PASSWORD}";
2329 unless (system($cmd) == 0) {
2330 warn("Failed to exec kcc on remote DC\n$cmd");
2331 return undef;
2334 my $samba_tool = Samba::bindir_path($self, "samba-tool");
2335 my $cmd = "";
2336 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$env->{SOCKET_WRAPPER_DEFAULT_IFACE}\"";
2337 $cmd .= " KRB5_CONFIG=\"$env->{KRB5_CONFIG}\"";
2338 $cmd .= "KRB5CCNAME=\"$env->{KRB5_CCACHE}\" ";
2339 $cmd .= " $samba_tool drs kcc $env->{SERVER}";
2340 $cmd .= " $env->{CONFIGURATION}";
2341 $cmd .= " -U$dc_vars->{DC_USERNAME}\%$dc_vars->{DC_PASSWORD}";
2342 unless (system($cmd) == 0) {
2343 warn("Failed to exec kcc on promoted DC\n$cmd");
2344 return undef;
2347 # as 'vampired' dc may add data in its local replica
2348 # we need to synchronize data between DCs
2349 my $base_dn = "DC=".join(",DC=", split(/\./, $dc_vars->{REALM}));
2350 $cmd = "SOCKET_WRAPPER_DEFAULT_IFACE=\"$env->{SOCKET_WRAPPER_DEFAULT_IFACE}\"";
2351 $cmd .= " KRB5_CONFIG=\"$env->{KRB5_CONFIG}\"";
2352 $cmd .= "KRB5CCNAME=\"$env->{KRB5_CCACHE}\" ";
2353 $cmd .= " $samba_tool drs replicate $env->{DC_SERVER} $env->{SERVER}";
2354 $cmd .= " $dc_vars->{CONFIGURATION}";
2355 $cmd .= " -U$dc_vars->{DC_USERNAME}\%$dc_vars->{DC_PASSWORD}";
2356 # replicate Configuration NC
2357 my $cmd_repl = "$cmd \"CN=Configuration,$base_dn\"";
2358 unless(system($cmd_repl) == 0) {
2359 warn("Failed to replicate\n$cmd_repl");
2360 return undef;
2362 # replicate Default NC
2363 $cmd_repl = "$cmd \"$base_dn\"";
2364 unless(system($cmd_repl) == 0) {
2365 warn("Failed to replicate\n$cmd_repl");
2366 return undef;
2370 return $env;
2373 sub setup_subdom_dc($$$)
2375 my ($self, $path, $dc_vars) = @_;
2377 my $env = $self->provision_subdom_dc($path, $dc_vars);
2379 if (defined $env) {
2380 if (not defined($self->check_or_start($env, "single"))) {
2381 return undef;
2384 $self->{vars}->{subdom_dc} = $env;
2386 # force replicated DC to update repsTo/repsFrom
2387 # for primary domain partitions
2388 my $samba_tool = Samba::bindir_path($self, "samba-tool");
2389 my $cmd = "";
2390 $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$env->{SOCKET_WRAPPER_DEFAULT_IFACE}\"";
2391 $cmd .= " KRB5_CONFIG=\"$env->{KRB5_CONFIG}\"";
2392 $cmd .= "KRB5CCNAME=\"$env->{KRB5_CCACHE}\" ";
2393 $cmd .= " $samba_tool drs kcc $env->{DC_SERVER}";
2394 $cmd .= " $env->{CONFIGURATION}";
2395 $cmd .= " -U$dc_vars->{DC_USERNAME}\%$dc_vars->{DC_PASSWORD} --realm=$dc_vars->{DC_REALM}";
2396 unless (system($cmd) == 0) {
2397 warn("Failed to exec kcc on remote DC\n$cmd");
2398 return undef;
2401 # as 'subdomain' dc may add data in its local replica
2402 # we need to synchronize data between DCs
2403 my $base_dn = "DC=".join(",DC=", split(/\./, $env->{REALM}));
2404 my $config_dn = "CN=Configuration,DC=".join(",DC=", split(/\./, $dc_vars->{REALM}));
2405 $cmd = "SOCKET_WRAPPER_DEFAULT_IFACE=\"$env->{SOCKET_WRAPPER_DEFAULT_IFACE}\"";
2406 $cmd .= " KRB5_CONFIG=\"$env->{KRB5_CONFIG}\"";
2407 $cmd .= "KRB5CCNAME=\"$env->{KRB5_CCACHE}\" ";
2408 $cmd .= " $samba_tool drs replicate $env->{DC_SERVER} $env->{SUBDOM_DC_SERVER}";
2409 $cmd .= " $dc_vars->{CONFIGURATION}";
2410 $cmd .= " -U$dc_vars->{DC_USERNAME}\%$dc_vars->{DC_PASSWORD} --realm=$dc_vars->{DC_REALM}";
2411 # replicate Configuration NC
2412 my $cmd_repl = "$cmd \"$config_dn\"";
2413 unless(system($cmd_repl) == 0) {
2414 warn("Failed to replicate\n$cmd_repl");
2415 return undef;
2417 # replicate Default NC
2418 $cmd_repl = "$cmd \"$base_dn\"";
2419 unless(system($cmd_repl) == 0) {
2420 warn("Failed to replicate\n$cmd_repl");
2421 return undef;
2425 return $env;
2428 sub setup_rodc($$$)
2430 my ($self, $path, $dc_vars) = @_;
2432 my $env = $self->provision_rodc($path, $dc_vars);
2434 unless ($env) {
2435 return undef;
2438 if (not defined($self->check_or_start($env, "single"))) {
2439 return undef;
2442 my $samba_tool = Samba::bindir_path($self, "samba-tool");
2443 my $cmd = "";
2445 my $base_dn = "DC=".join(",DC=", split(/\./, $dc_vars->{REALM}));
2446 $cmd = "SOCKET_WRAPPER_DEFAULT_IFACE=\"$env->{SOCKET_WRAPPER_DEFAULT_IFACE}\"";
2447 $cmd .= " KRB5_CONFIG=\"$env->{KRB5_CONFIG}\"";
2448 $cmd .= "KRB5CCNAME=\"$env->{KRB5_CCACHE}\" ";
2449 $cmd .= " $samba_tool drs replicate $env->{SERVER} $env->{DC_SERVER}";
2450 $cmd .= " $dc_vars->{CONFIGURATION}";
2451 $cmd .= " -U$dc_vars->{DC_USERNAME}\%$dc_vars->{DC_PASSWORD}";
2452 # replicate Configuration NC
2453 my $cmd_repl = "$cmd \"CN=Configuration,$base_dn\"";
2454 unless(system($cmd_repl) == 0) {
2455 warn("Failed to replicate\n$cmd_repl");
2456 return undef;
2458 # replicate Default NC
2459 $cmd_repl = "$cmd \"$base_dn\"";
2460 unless(system($cmd_repl) == 0) {
2461 warn("Failed to replicate\n$cmd_repl");
2462 return undef;
2465 $self->{vars}->{rodc} = $env;
2467 return $env;
2470 sub setup_ad_dc($$)
2472 my ($self, $path, $no_nss) = @_;
2474 # If we didn't build with ADS, pretend this env was never available
2475 if (not $self->{target3}->have_ads()) {
2476 return "UNKNOWN";
2479 my $env = $self->provision_ad_dc($path);
2480 unless ($env) {
2481 return undef;
2484 if (defined($no_nss) and $no_nss) {
2485 $env->{NSS_WRAPPER_MODULE_SO_PATH} = undef;
2486 $env->{NSS_WRAPPER_MODULE_FN_PREFIX} = undef;
2489 if (not defined($self->check_or_start($env, "single"))) {
2490 return undef;
2493 my $upn_array = ["$env->{REALM}.upn"];
2494 my $spn_array = ["$env->{REALM}.spn"];
2496 $self->setup_namespaces($env, $upn_array, $spn_array);
2498 $self->{vars}->{ad_dc} = $env;
2499 return $env;
2502 sub setup_none($$)
2504 my ($self, $path) = @_;
2506 my $ret = {
2507 KRB5_CONFIG => abs_path($path) . "/no_krb5.conf",
2508 SAMBA_PID => -1,