selftest: explicitly set "client min protocol = CORE"
[samba.git] / selftest / target / Samba3.pm
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.
5
6 # NOTE: Refer to the README for more details about the various testenvs,
7 # and tips about adding new testenvs.
8
9 package Samba3;
10
11 use strict;
12 use Cwd qw(abs_path);
13 use FindBin qw($RealBin);
14 use POSIX;
15 use target::Samba;
16 use File::Path 'remove_tree';
17
18 sub have_ads($) {
19         my ($self) = @_;
20         my $found_ads = 0;
21         my $smbd_build_options = Samba::bindir_path($self, "smbd") . " -b|";
22         open(IN, $smbd_build_options) or die("Unable to run $smbd_build_options: $!");
23
24         while (<IN>) {
25                 if (/WITH_ADS/) {
26                        $found_ads = 1;
27                 }
28         }
29         close IN;
30
31         # If we were not built with ADS support, pretend we were never even available
32         print "smbd does not have ADS support\n" unless $found_ads;
33         return $found_ads;
34 }
35
36 # return smb.conf parameters applicable to @path, based on the underlying
37 # filesystem type
38 sub get_fs_specific_conf($$)
39 {
40         my ($self, $path) = @_;
41         my $mods = "";
42         my $stat_out = `stat --file-system $path` or return "";
43
44         if ($stat_out =~ m/Type:\s+btrfs/) {
45                 $mods .= "streams_xattr btrfs";
46         }
47
48         if ($mods) {
49                 return "vfs objects = $mods";
50         }
51
52         return undef;
53 }
54
55 sub new($$) {
56         my ($classname, $bindir, $srcdir, $server_maxtime) = @_;
57         my $self = { vars => {},
58                      bindir => $bindir,
59                      srcdir => $srcdir,
60                      server_maxtime => $server_maxtime
61         };
62         bless $self;
63         return $self;
64 }
65
66 sub teardown_env($$)
67 {
68         my ($self, $envvars) = @_;
69         my $count = 0;
70
71         # This should cause smbd to terminate gracefully
72         close($envvars->{STDIN_PIPE});
73
74         my $smbdpid = $envvars->{SMBD_TL_PID};
75         my $nmbdpid = $envvars->{NMBD_TL_PID};
76         my $winbinddpid = $envvars->{WINBINDD_TL_PID};
77
78         # This should give it time to write out the gcov data
79         until ($count > 20) {
80             my $smbdchild = Samba::cleanup_child($smbdpid, "smbd");
81             my $nmbdchild = Samba::cleanup_child($nmbdpid, "nmbd");
82             my $winbinddchild = Samba::cleanup_child($winbinddpid, "winbindd");
83             if ($smbdchild == -1
84                 && $nmbdchild == -1
85                 && $winbinddchild == -1) {
86                 last;
87             }
88             sleep(1);
89             $count++;
90         }
91
92         if ($count <= 20 && kill(0, $smbdpid, $nmbdpid, $winbinddpid) == 0) {
93             return;
94         }
95
96         $self->stop_sig_term($smbdpid);
97         $self->stop_sig_term($nmbdpid);
98         $self->stop_sig_term($winbinddpid);
99
100         $count = 0;
101         until ($count > 10) {
102             my $smbdchild = Samba::cleanup_child($smbdpid, "smbd");
103             my $nmbdchild = Samba::cleanup_child($nmbdpid, "nmbd");
104             my $winbinddchild = Samba::cleanup_child($winbinddpid, "winbindd");
105             if ($smbdchild == -1
106                 && $nmbdchild == -1
107                 && $winbinddchild == -1) {
108                 last;
109             }
110             sleep(1);
111             $count++;
112         }
113
114         if ($count <= 10 && kill(0, $smbdpid, $nmbdpid, $winbinddpid) == 0) {
115             return;
116         }
117
118         warn("timelimit process did not quit on SIGTERM, sending SIGKILL");
119         $self->stop_sig_kill($smbdpid);
120         $self->stop_sig_kill($nmbdpid);
121         $self->stop_sig_kill($winbinddpid);
122
123         return 0;
124 }
125
126 sub getlog_env_app($$$)
127 {
128         my ($self, $envvars, $name) = @_;
129
130         my $title = "$name LOG of: $envvars->{NETBIOSNAME}\n";
131         my $out = $title;
132
133         open(LOG, "<".$envvars->{$name."_TEST_LOG"});
134
135         seek(LOG, $envvars->{$name."_TEST_LOG_POS"}, SEEK_SET);
136         while (<LOG>) {
137                 $out .= $_;
138         }
139         $envvars->{$name."_TEST_LOG_POS"} = tell(LOG);
140         close(LOG);
141
142         return "" if $out eq $title;
143  
144         return $out;
145 }
146
147 sub getlog_env($$)
148 {
149         my ($self, $envvars) = @_;
150         my $ret = "";
151
152         $ret .= $self->getlog_env_app($envvars, "SMBD");
153         $ret .= $self->getlog_env_app($envvars, "NMBD");
154         $ret .= $self->getlog_env_app($envvars, "WINBINDD");
155
156         return $ret;
157 }
158
159 sub check_env($$)
160 {
161         my ($self, $envvars) = @_;
162
163         my $childpid = waitpid(-1, WNOHANG);
164
165         # TODO ...
166         return 1;
167 }
168
169 # Declare the environments Samba3 makes available.
170 # To be set up, they will be called as
171 #   samba3->setup_$envname($self, $path, $dep_1_vars, $dep_2_vars, ...)
172 %Samba3::ENV_DEPS = (
173         # name              => [dep_1, dep_2, ...],
174         nt4_dc              => [],
175         nt4_dc_schannel     => [],
176
177         simpleserver        => [],
178         fileserver          => [],
179         maptoguest          => [],
180         ktest               => [],
181
182         nt4_member          => ["nt4_dc"],
183
184         ad_member           => ["ad_dc"],
185         ad_member_rfc2307   => ["ad_dc_ntvfs"],
186         ad_member_idmap_rid => ["ad_dc"],
187         ad_member_idmap_ad  => ["fl2008r2dc"],
188 );
189
190 %Samba3::ENV_DEPS_POST = ();
191
192 sub setup_nt4_dc
193 {
194         my ($self, $path) = @_;
195
196         print "PROVISIONING NT4 DC...";
197
198         my $nt4_dc_options = "
199         domain master = yes
200         domain logons = yes
201         lanman auth = yes
202         ntlm auth = yes
203         raw NTLMv2 auth = yes
204         server schannel = auto
205
206         rpc_server:epmapper = external
207         rpc_server:spoolss = external
208         rpc_server:lsarpc = external
209         rpc_server:samr = external
210         rpc_server:netlogon = external
211         rpc_server:register_embedded_np = yes
212         rpc_server:FssagentRpc = external
213
214         rpc_daemon:epmd = fork
215         rpc_daemon:spoolssd = fork
216         rpc_daemon:lsasd = fork
217         rpc_daemon:fssd = fork
218         fss: sequence timeout = 1
219         check parent directory delete on close = yes
220 ";
221
222         my $vars = $self->provision($path, "SAMBA-TEST",
223                                     "LOCALNT4DC2",
224                                     "localntdc2pass",
225                                     $nt4_dc_options);
226
227         $vars or return undef;
228
229         if (not $self->check_or_start($vars, "yes", "yes", "yes")) {
230                return undef;
231         }
232
233         $vars->{DOMSID} = $vars->{SAMSID};
234         $vars->{DC_SERVER} = $vars->{SERVER};
235         $vars->{DC_SERVER_IP} = $vars->{SERVER_IP};
236         $vars->{DC_SERVER_IPV6} = $vars->{SERVER_IPV6};
237         $vars->{DC_NETBIOSNAME} = $vars->{NETBIOSNAME};
238         $vars->{DC_USERNAME} = $vars->{USERNAME};
239         $vars->{DC_PASSWORD} = $vars->{PASSWORD};
240
241         return $vars;
242 }
243
244 sub setup_nt4_dc_schannel
245 {
246         my ($self, $path) = @_;
247
248         print "PROVISIONING NT4 DC WITH SERVER SCHANNEL ...";
249
250         my $pdc_options = "
251         domain master = yes
252         domain logons = yes
253         lanman auth = yes
254
255         rpc_server:epmapper = external
256         rpc_server:spoolss = external
257         rpc_server:lsarpc = external
258         rpc_server:samr = external
259         rpc_server:netlogon = external
260         rpc_server:register_embedded_np = yes
261
262         rpc_daemon:epmd = fork
263         rpc_daemon:spoolssd = fork
264         rpc_daemon:lsasd = fork
265
266         server schannel = yes
267         # used to reproduce bug #12772
268         server max protocol = SMB2_02
269 ";
270
271         my $vars = $self->provision($path, "NT4SCHANNEL",
272                                     "LOCALNT4DC9",
273                                     "localntdc9pass",
274                                     $pdc_options);
275
276         $vars or return undef;
277
278         if (not $self->check_or_start($vars, "yes", "yes", "yes")) {
279                return undef;
280         }
281
282         $vars->{DOMSID} = $vars->{SAMSID};
283         $vars->{DC_SERVER} = $vars->{SERVER};
284         $vars->{DC_SERVER_IP} = $vars->{SERVER_IP};
285         $vars->{DC_SERVER_IPV6} = $vars->{SERVER_IPV6};
286         $vars->{DC_NETBIOSNAME} = $vars->{NETBIOSNAME};
287         $vars->{DC_USERNAME} = $vars->{USERNAME};
288         $vars->{DC_PASSWORD} = $vars->{PASSWORD};
289
290         return $vars;
291 }
292
293 sub setup_nt4_member
294 {
295         my ($self, $prefix, $nt4_dc_vars) = @_;
296         my $count = 0;
297         my $rc;
298
299         print "PROVISIONING MEMBER...";
300
301         my $require_mutexes = "dbwrap_tdb_require_mutexes:* = yes";
302         $require_mutexes = "" if ($ENV{SELFTEST_DONT_REQUIRE_TDB_MUTEX_SUPPORT} eq "1");
303
304         my $member_options = "
305         security = domain
306         dbwrap_tdb_mutexes:* = yes
307         ${require_mutexes}
308 ";
309         my $ret = $self->provision($prefix, $nt4_dc_vars->{DOMAIN},
310                                    "LOCALNT4MEMBER3",
311                                    "localnt4member3pass",
312                                    $member_options);
313
314         $ret or return undef;
315
316         my $nmblookup = Samba::bindir_path($self, "nmblookup");
317         do {
318                 print "Waiting for the LOGON SERVER registration ...\n";
319                 $rc = system("$nmblookup $ret->{CONFIGURATION} $ret->{DOMAIN}\#1c");
320                 if ($rc != 0) {
321                         sleep(1);
322                 }
323                 $count++;
324         } while ($rc != 0 && $count < 10);
325         if ($count == 10) {
326                 print "NMBD not reachable after 10 retries\n";
327                 teardown_env($self, $ret);
328                 return 0;
329         }
330
331         my $net = Samba::bindir_path($self, "net");
332         # Add hosts file for name lookups
333         my $cmd = "NSS_WRAPPER_HOSTS='$ret->{NSS_WRAPPER_HOSTS}' ";
334         $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
335         $cmd .= "SELFTEST_WINBINDD_SOCKET_DIR=\"$ret->{SELFTEST_WINBINDD_SOCKET_DIR}\" ";
336         $cmd .= "$net rpc join $ret->{CONFIGURATION} $nt4_dc_vars->{DOMAIN} member";
337         $cmd .= " -U$nt4_dc_vars->{USERNAME}\%$nt4_dc_vars->{PASSWORD}";
338
339         if (system($cmd) != 0) {
340             warn("Join failed\n$cmd");
341             return undef;
342         }
343
344         # Add hosts file for name lookups
345         my $cmd = "NSS_WRAPPER_HOSTS='$ret->{NSS_WRAPPER_HOSTS}' ";
346         $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
347         $cmd .= "SELFTEST_WINBINDD_SOCKET_DIR=\"$ret->{SELFTEST_WINBINDD_SOCKET_DIR}\" ";
348         $cmd .= "$net $ret->{CONFIGURATION} primarytrust dumpinfo | grep -q 'REDACTED SECRET VALUES'";
349
350         if (system($cmd) != 0) {
351             warn("check failed\n$cmd");
352             return undef;
353         }
354
355         if (not $self->check_or_start($ret, "yes", "yes", "yes")) {
356                return undef;
357         }
358
359         $ret->{DOMSID} = $nt4_dc_vars->{DOMSID};
360         $ret->{DC_SERVER} = $nt4_dc_vars->{SERVER};
361         $ret->{DC_SERVER_IP} = $nt4_dc_vars->{SERVER_IP};
362         $ret->{DC_SERVER_IPV6} = $nt4_dc_vars->{SERVER_IPV6};
363         $ret->{DC_NETBIOSNAME} = $nt4_dc_vars->{NETBIOSNAME};
364         $ret->{DC_USERNAME} = $nt4_dc_vars->{USERNAME};
365         $ret->{DC_PASSWORD} = $nt4_dc_vars->{PASSWORD};
366
367         return $ret;
368 }
369
370 sub setup_ad_member
371 {
372         my ($self, $prefix, $dcvars) = @_;
373
374         my $prefix_abs = abs_path($prefix);
375         my @dirs = ();
376
377         # If we didn't build with ADS, pretend this env was never available
378         if (not $self->have_ads()) {
379                 return "UNKNOWN";
380         }
381
382         print "PROVISIONING S3 AD MEMBER...";
383
384         mkdir($prefix_abs, 0777);
385
386         my $share_dir="$prefix_abs/share";
387         push(@dirs, $share_dir);
388
389         my $substitution_path = "$share_dir/D_$dcvars->{DOMAIN}";
390         push(@dirs, $substitution_path);
391
392         $substitution_path = "$share_dir/D_$dcvars->{DOMAIN}/U_alice";
393         push(@dirs, $substitution_path);
394
395         $substitution_path = "$share_dir/D_$dcvars->{DOMAIN}/U_alice/G_domain users";
396         push(@dirs, $substitution_path);
397
398         # Using '/' as the winbind separator is a bad idea ...
399         $substitution_path = "$share_dir/D_$dcvars->{DOMAIN}/u_$dcvars->{DOMAIN}";
400         push(@dirs, $substitution_path);
401
402         $substitution_path = "$share_dir/D_$dcvars->{DOMAIN}/u_$dcvars->{DOMAIN}/alice";
403         push(@dirs, $substitution_path);
404
405         $substitution_path = "$share_dir/D_$dcvars->{DOMAIN}/u_$dcvars->{DOMAIN}/alice/g_$dcvars->{DOMAIN}";
406         push(@dirs, $substitution_path);
407
408         $substitution_path = "$share_dir/D_$dcvars->{DOMAIN}/u_$dcvars->{DOMAIN}/alice/g_$dcvars->{DOMAIN}/domain users";
409         push(@dirs, $substitution_path);
410
411         my $member_options = "
412         security = ads
413         workgroup = $dcvars->{DOMAIN}
414         realm = $dcvars->{REALM}
415         netbios aliases = foo bar
416         template homedir = /home/%D/%G/%U
417         auth event notification = true
418         password server = $dcvars->{SERVER}
419
420 [sub_dug]
421         path = $share_dir/D_%D/U_%U/G_%G
422         writeable = yes
423
424 [sub_dug2]
425         path = $share_dir/D_%D/u_%u/g_%g
426         writeable = yes
427
428 ";
429
430         my $ret = $self->provision($prefix, $dcvars->{DOMAIN},
431                                    "LOCALADMEMBER",
432                                    "loCalMemberPass",
433                                    $member_options,
434                                    $dcvars->{SERVER_IP},
435                                    $dcvars->{SERVER_IPV6});
436
437         $ret or return undef;
438
439         mkdir($_, 0777) foreach(@dirs);
440
441         close(USERMAP);
442         $ret->{DOMAIN} = $dcvars->{DOMAIN};
443         $ret->{REALM} = $dcvars->{REALM};
444         $ret->{DOMSID} = $dcvars->{DOMSID};
445
446         my $ctx;
447         $ctx = {};
448         $ctx->{krb5_conf} = "$prefix_abs/lib/krb5.conf";
449         $ctx->{domain} = $dcvars->{DOMAIN};
450         $ctx->{realm} = $dcvars->{REALM};
451         $ctx->{dnsname} = lc($dcvars->{REALM});
452         $ctx->{kdc_ipv4} = $dcvars->{SERVER_IP};
453         $ctx->{kdc_ipv6} = $dcvars->{SERVER_IPV6};
454         $ctx->{krb5_ccname} = "$prefix_abs/krb5cc_%{uid}";
455         Samba::mk_krb5_conf($ctx, "");
456
457         $ret->{KRB5_CONFIG} = $ctx->{krb5_conf};
458         $ret->{RESOLV_CONF} = $dcvars->{RESOLV_CONF};
459
460         my $net = Samba::bindir_path($self, "net");
461         # Add hosts file for name lookups
462         my $cmd = "NSS_WRAPPER_HOSTS='$ret->{NSS_WRAPPER_HOSTS}' ";
463         $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
464         if (defined($ret->{RESOLV_WRAPPER_CONF})) {
465                 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
466         } else {
467                 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
468         }
469         $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
470         $cmd .= "SELFTEST_WINBINDD_SOCKET_DIR=\"$ret->{SELFTEST_WINBINDD_SOCKET_DIR}\" ";
471         $cmd .= "$net join $ret->{CONFIGURATION}";
472         $cmd .= " -U$dcvars->{USERNAME}\%$dcvars->{PASSWORD}";
473
474         if (system($cmd) != 0) {
475             warn("Join failed\n$cmd");
476             return undef;
477         }
478
479         # We need world access to this share, as otherwise the domain
480         # administrator from the AD domain provided by Samba4 can't
481         # access the share for tests.
482         chmod 0777, "$prefix/share";
483
484         if (not $self->check_or_start($ret, "yes", "yes", "yes")) {
485                 return undef;
486         }
487
488         $ret->{DC_SERVER} = $dcvars->{SERVER};
489         $ret->{DC_SERVER_IP} = $dcvars->{SERVER_IP};
490         $ret->{DC_SERVER_IPV6} = $dcvars->{SERVER_IPV6};
491         $ret->{DC_SERVERCONFFILE} = $dcvars->{SERVERCONFFILE};
492         $ret->{DC_NETBIOSNAME} = $dcvars->{NETBIOSNAME};
493         $ret->{DC_USERNAME} = $dcvars->{USERNAME};
494         $ret->{DC_PASSWORD} = $dcvars->{PASSWORD};
495
496         return $ret;
497 }
498
499 sub setup_ad_member_rfc2307
500 {
501         my ($self, $prefix, $dcvars) = @_;
502
503         # If we didn't build with ADS, pretend this env was never available
504         if (not $self->have_ads()) {
505                 return "UNKNOWN";
506         }
507
508         print "PROVISIONING S3 AD MEMBER WITH idmap_rfc2307 config...";
509
510         my $member_options = "
511         security = ads
512         workgroup = $dcvars->{DOMAIN}
513         realm = $dcvars->{REALM}
514         idmap cache time = 0
515         idmap negative cache time = 0
516         idmap config * : backend = autorid
517         idmap config * : range = 1000000-1999999
518         idmap config * : rangesize = 100000
519         idmap config $dcvars->{DOMAIN} : backend = rfc2307
520         idmap config $dcvars->{DOMAIN} : range = 2000000-2999999
521         idmap config $dcvars->{DOMAIN} : ldap_server = ad
522         idmap config $dcvars->{DOMAIN} : bind_path_user = ou=idmap,dc=samba,dc=example,dc=com
523         idmap config $dcvars->{DOMAIN} : bind_path_group = ou=idmap,dc=samba,dc=example,dc=com
524
525         password server = $dcvars->{SERVER}
526 ";
527
528         my $ret = $self->provision($prefix, $dcvars->{DOMAIN},
529                                    "RFC2307MEMBER",
530                                    "loCalMemberPass",
531                                    $member_options,
532                                    $dcvars->{SERVER_IP},
533                                    $dcvars->{SERVER_IPV6});
534
535         $ret or return undef;
536
537         close(USERMAP);
538         $ret->{DOMAIN} = $dcvars->{DOMAIN};
539         $ret->{REALM} = $dcvars->{REALM};
540         $ret->{DOMSID} = $dcvars->{DOMSID};
541
542         my $ctx;
543         my $prefix_abs = abs_path($prefix);
544         $ctx = {};
545         $ctx->{krb5_conf} = "$prefix_abs/lib/krb5.conf";
546         $ctx->{domain} = $dcvars->{DOMAIN};
547         $ctx->{realm} = $dcvars->{REALM};
548         $ctx->{dnsname} = lc($dcvars->{REALM});
549         $ctx->{kdc_ipv4} = $dcvars->{SERVER_IP};
550         $ctx->{kdc_ipv6} = $dcvars->{SERVER_IPV6};
551         $ctx->{krb5_ccname} = "$prefix_abs/krb5cc_%{uid}";
552         Samba::mk_krb5_conf($ctx, "");
553
554         $ret->{KRB5_CONFIG} = $ctx->{krb5_conf};
555         $ret->{RESOLV_CONF} = $dcvars->{RESOLV_CONF};
556
557         my $net = Samba::bindir_path($self, "net");
558         # Add hosts file for name lookups
559         my $cmd = "NSS_WRAPPER_HOSTS='$ret->{NSS_WRAPPER_HOSTS}' ";
560         $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
561         if (defined($ret->{RESOLV_WRAPPER_CONF})) {
562                 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
563         } else {
564                 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
565         }
566         $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
567         $cmd .= "SELFTEST_WINBINDD_SOCKET_DIR=\"$ret->{SELFTEST_WINBINDD_SOCKET_DIR}\" ";
568         $cmd .= "$net join $ret->{CONFIGURATION}";
569         $cmd .= " -U$dcvars->{USERNAME}\%$dcvars->{PASSWORD}";
570
571         if (system($cmd) != 0) {
572             warn("Join failed\n$cmd");
573             return undef;
574         }
575
576         # We need world access to this share, as otherwise the domain
577         # administrator from the AD domain provided by Samba4 can't
578         # access the share for tests.
579         chmod 0777, "$prefix/share";
580
581         if (not $self->check_or_start($ret, "yes", "yes", "yes")) {
582                 return undef;
583         }
584
585         $ret->{DC_SERVER} = $dcvars->{SERVER};
586         $ret->{DC_SERVER_IP} = $dcvars->{SERVER_IP};
587         $ret->{DC_SERVER_IPV6} = $dcvars->{SERVER_IPV6};
588         $ret->{DC_NETBIOSNAME} = $dcvars->{NETBIOSNAME};
589         $ret->{DC_USERNAME} = $dcvars->{USERNAME};
590         $ret->{DC_PASSWORD} = $dcvars->{PASSWORD};
591
592         return $ret;
593 }
594
595 sub setup_ad_member_idmap_rid
596 {
597         my ($self, $prefix, $dcvars) = @_;
598
599         # If we didn't build with ADS, pretend this env was never available
600         if (not $self->have_ads()) {
601                 return "UNKNOWN";
602         }
603
604         print "PROVISIONING S3 AD MEMBER WITH idmap_rid config...";
605
606         my $member_options = "
607         security = ads
608         workgroup = $dcvars->{DOMAIN}
609         realm = $dcvars->{REALM}
610         idmap config * : backend = tdb
611         idmap config * : range = 1000000-1999999
612         idmap config $dcvars->{DOMAIN} : backend = rid
613         idmap config $dcvars->{DOMAIN} : range = 2000000-2999999
614         # Prevent overridding the provisioned lib/krb5.conf which sets certain
615         # values required for tests to succeed
616         create krb5 conf = no
617         map to guest = bad user
618 ";
619
620         my $ret = $self->provision($prefix, $dcvars->{DOMAIN},
621                                    "IDMAPRIDMEMBER",
622                                    "loCalMemberPass",
623                                    $member_options,
624                                    $dcvars->{SERVER_IP},
625                                    $dcvars->{SERVER_IPV6});
626
627         $ret or return undef;
628
629         close(USERMAP);
630         $ret->{DOMAIN} = $dcvars->{DOMAIN};
631         $ret->{REALM} = $dcvars->{REALM};
632         $ret->{DOMSID} = $dcvars->{DOMSID};
633
634         my $ctx;
635         my $prefix_abs = abs_path($prefix);
636         $ctx = {};
637         $ctx->{krb5_conf} = "$prefix_abs/lib/krb5.conf";
638         $ctx->{domain} = $dcvars->{DOMAIN};
639         $ctx->{realm} = $dcvars->{REALM};
640         $ctx->{dnsname} = lc($dcvars->{REALM});
641         $ctx->{kdc_ipv4} = $dcvars->{SERVER_IP};
642         $ctx->{kdc_ipv6} = $dcvars->{SERVER_IPV6};
643         $ctx->{krb5_ccname} = "$prefix_abs/krb5cc_%{uid}";
644         Samba::mk_krb5_conf($ctx, "");
645
646         $ret->{KRB5_CONFIG} = $ctx->{krb5_conf};
647         $ret->{RESOLV_CONF} = $dcvars->{RESOLV_CONF};
648
649         my $net = Samba::bindir_path($self, "net");
650         # Add hosts file for name lookups
651         my $cmd = "NSS_WRAPPER_HOSTS='$ret->{NSS_WRAPPER_HOSTS}' ";
652         $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
653         if (defined($ret->{RESOLV_WRAPPER_CONF})) {
654                 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
655         } else {
656                 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
657         }
658         $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
659         $cmd .= "SELFTEST_WINBINDD_SOCKET_DIR=\"$ret->{SELFTEST_WINBINDD_SOCKET_DIR}\" ";
660         $cmd .= "$net join $ret->{CONFIGURATION}";
661         $cmd .= " -U$dcvars->{USERNAME}\%$dcvars->{PASSWORD}";
662
663         if (system($cmd) != 0) {
664             warn("Join failed\n$cmd");
665             return undef;
666         }
667
668         # We need world access to this share, as otherwise the domain
669         # administrator from the AD domain provided by Samba4 can't
670         # access the share for tests.
671         chmod 0777, "$prefix/share";
672
673         if (not $self->check_or_start($ret, "yes", "yes", "yes")) {
674                 return undef;
675         }
676
677         $ret->{DC_SERVER} = $dcvars->{SERVER};
678         $ret->{DC_SERVER_IP} = $dcvars->{SERVER_IP};
679         $ret->{DC_SERVER_IPV6} = $dcvars->{SERVER_IPV6};
680         $ret->{DC_NETBIOSNAME} = $dcvars->{NETBIOSNAME};
681         $ret->{DC_USERNAME} = $dcvars->{USERNAME};
682         $ret->{DC_PASSWORD} = $dcvars->{PASSWORD};
683
684         return $ret;
685 }
686
687 sub setup_ad_member_idmap_ad
688 {
689         my ($self, $prefix, $dcvars) = @_;
690
691         # If we didn't build with ADS, pretend this env was never available
692         if (not $self->have_ads()) {
693                 return "UNKNOWN";
694         }
695
696         print "PROVISIONING S3 AD MEMBER WITH idmap_ad config...";
697
698         my $member_options = "
699         security = ads
700         workgroup = $dcvars->{DOMAIN}
701         realm = $dcvars->{REALM}
702         password server = $dcvars->{SERVER}
703         idmap config * : backend = tdb
704         idmap config * : range = 1000000-1999999
705         idmap config $dcvars->{DOMAIN} : backend = ad
706         idmap config $dcvars->{DOMAIN} : range = 2000000-2999999
707         idmap config $dcvars->{TRUST_DOMAIN} : backend = ad
708         idmap config $dcvars->{TRUST_DOMAIN} : range = 2000000-2999999
709 ";
710
711         my $ret = $self->provision($prefix, $dcvars->{DOMAIN},
712                                    "IDMAPADMEMBER",
713                                    "loCalMemberPass",
714                                    $member_options,
715                                    $dcvars->{SERVER_IP},
716                                    $dcvars->{SERVER_IPV6});
717
718         $ret or return undef;
719
720         close(USERMAP);
721         $ret->{DOMAIN} = $dcvars->{DOMAIN};
722         $ret->{REALM} = $dcvars->{REALM};
723         $ret->{DOMSID} = $dcvars->{DOMSID};
724
725         my $ctx;
726         my $prefix_abs = abs_path($prefix);
727         $ctx = {};
728         $ctx->{krb5_conf} = "$prefix_abs/lib/krb5.conf";
729         $ctx->{domain} = $dcvars->{DOMAIN};
730         $ctx->{realm} = $dcvars->{REALM};
731         $ctx->{dnsname} = lc($dcvars->{REALM});
732         $ctx->{kdc_ipv4} = $dcvars->{SERVER_IP};
733         $ctx->{kdc_ipv6} = $dcvars->{SERVER_IPV6};
734         $ctx->{krb5_ccname} = "$prefix_abs/krb5cc_%{uid}";
735         Samba::mk_krb5_conf($ctx, "");
736
737         $ret->{KRB5_CONFIG} = $ctx->{krb5_conf};
738         $ret->{RESOLV_CONF} = $dcvars->{RESOLV_CONF};
739
740         my $net = Samba::bindir_path($self, "net");
741         # Add hosts file for name lookups
742         my $cmd = "NSS_WRAPPER_HOSTS='$ret->{NSS_WRAPPER_HOSTS}' ";
743         $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
744         if (defined($ret->{RESOLV_WRAPPER_CONF})) {
745                 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
746         } else {
747                 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
748         }
749         $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
750         $cmd .= "SELFTEST_WINBINDD_SOCKET_DIR=\"$ret->{SELFTEST_WINBINDD_SOCKET_DIR}\" ";
751         $cmd .= "$net join $ret->{CONFIGURATION}";
752         $cmd .= " -U$dcvars->{USERNAME}\%$dcvars->{PASSWORD}";
753
754         if (system($cmd) != 0) {
755             warn("Join failed\n$cmd");
756             return undef;
757         }
758
759         # We need world access to this share, as otherwise the domain
760         # administrator from the AD domain provided by Samba4 can't
761         # access the share for tests.
762         chmod 0777, "$prefix/share";
763
764         if (not $self->check_or_start($ret, "yes", "yes", "yes")) {
765                 return undef;
766         }
767
768         $ret->{DC_SERVER} = $dcvars->{SERVER};
769         $ret->{DC_SERVER_IP} = $dcvars->{SERVER_IP};
770         $ret->{DC_SERVER_IPV6} = $dcvars->{SERVER_IPV6};
771         $ret->{DC_NETBIOSNAME} = $dcvars->{NETBIOSNAME};
772         $ret->{DC_USERNAME} = $dcvars->{USERNAME};
773         $ret->{DC_PASSWORD} = $dcvars->{PASSWORD};
774
775         $ret->{TRUST_SERVER} = $dcvars->{TRUST_SERVER};
776         $ret->{TRUST_USERNAME} = $dcvars->{TRUST_USERNAME};
777         $ret->{TRUST_PASSWORD} = $dcvars->{TRUST_PASSWORD};
778         $ret->{TRUST_DOMAIN} = $dcvars->{TRUST_DOMAIN};
779         $ret->{TRUST_REALM} = $dcvars->{TRUST_REALM};
780         $ret->{TRUST_DOMSID} = $dcvars->{TRUST_DOMSID};
781
782         return $ret;
783 }
784
785 sub setup_simpleserver
786 {
787         my ($self, $path) = @_;
788
789         print "PROVISIONING simple server...";
790
791         my $prefix_abs = abs_path($path);
792
793         my $simpleserver_options = "
794         lanman auth = yes
795         ntlm auth = yes
796         vfs objects = xattr_tdb streams_depot
797         change notify = no
798         smb encrypt = off
799
800 [vfs_aio_pthread]
801         path = $prefix_abs/share
802         read only = no
803         vfs objects = aio_pthread
804         aio_pthread:aio open = yes
805         smbd:async dosmode = no
806
807 [vfs_aio_pthread_async_dosmode_default1]
808         path = $prefix_abs/share
809         read only = no
810         vfs objects = aio_pthread
811         store dos attributes = yes
812         aio_pthread:aio open = yes
813         smbd:async dosmode = yes
814
815 [vfs_aio_pthread_async_dosmode_default2]
816         path = $prefix_abs/share
817         read only = no
818         vfs objects = aio_pthread xattr_tdb
819         store dos attributes = yes
820         aio_pthread:aio open = yes
821         smbd:async dosmode = yes
822
823 [vfs_aio_pthread_async_dosmode_force_sync1]
824         path = $prefix_abs/share
825         read only = no
826         vfs objects = aio_pthread
827         store dos attributes = yes
828         aio_pthread:aio open = yes
829         smbd:async dosmode = yes
830         # This simulates non linux systems
831         smbd:force sync user path safe threadpool = yes
832         smbd:force sync user chdir safe threadpool = yes
833         smbd:force sync root path safe threadpool = yes
834         smbd:force sync root chdir safe threadpool = yes
835
836 [vfs_aio_pthread_async_dosmode_force_sync2]
837         path = $prefix_abs/share
838         read only = no
839         vfs objects = aio_pthread xattr_tdb
840         store dos attributes = yes
841         aio_pthread:aio open = yes
842         smbd:async dosmode = yes
843         # This simulates non linux systems
844         smbd:force sync user path safe threadpool = yes
845         smbd:force sync user chdir safe threadpool = yes
846         smbd:force sync root path safe threadpool = yes
847         smbd:force sync root chdir safe threadpool = yes
848
849 [vfs_aio_fork]
850         path = $prefix_abs/share
851         vfs objects = aio_fork
852         read only = no
853         vfs_aio_fork:erratic_testing_mode=yes
854
855 [dosmode]
856         path = $prefix_abs/share
857         vfs objects =
858         store dos attributes = yes
859         hide files = /hidefile/
860         hide dot files = yes
861
862 [enc_desired]
863         path = $prefix_abs/share
864         vfs objects =
865         smb encrypt = desired
866
867 [hidenewfiles]
868         path = $prefix_abs/share
869         hide new files timeout = 5
870 ";
871
872         my $vars = $self->provision($path, "WORKGROUP",
873                                     "LOCALSHARE4",
874                                     "local4pass",
875                                     $simpleserver_options);
876
877         $vars or return undef;
878
879         if (not $self->check_or_start($vars, "yes", "no", "yes")) {
880                return undef;
881         }
882
883         return $vars;
884 }
885
886 sub setup_fileserver
887 {
888         my ($self, $path) = @_;
889         my $prefix_abs = abs_path($path);
890         my $srcdir_abs = abs_path($self->{srcdir});
891
892         print "PROVISIONING file server ...\n";
893
894         my @dirs = ();
895
896         mkdir($prefix_abs, 0777);
897
898         my $usershare_dir="$prefix_abs/lib/usershare";
899
900         mkdir("$prefix_abs/lib", 0755);
901         remove_tree($usershare_dir);
902         mkdir($usershare_dir, 01770);
903
904         my $share_dir="$prefix_abs/share";
905
906         # Create share directory structure
907         my $lower_case_share_dir="$share_dir/lower-case";
908         push(@dirs, $lower_case_share_dir);
909
910         my $lower_case_share_dir_30000="$share_dir/lower-case-30000";
911         push(@dirs, $lower_case_share_dir_30000);
912
913         my $dfree_share_dir="$share_dir/dfree";
914         push(@dirs, $dfree_share_dir);
915         push(@dirs, "$dfree_share_dir/subdir1");
916         push(@dirs, "$dfree_share_dir/subdir2");
917         push(@dirs, "$dfree_share_dir/subdir3");
918
919         my $quotadir_dir="$share_dir/quota";
920         push(@dirs, $quotadir_dir);
921
922         my $valid_users_sharedir="$share_dir/valid_users";
923         push(@dirs,$valid_users_sharedir);
924
925         my $offline_sharedir="$share_dir/offline";
926         push(@dirs,$offline_sharedir);
927
928         my $force_user_valid_users_dir = "$share_dir/force_user_valid_users";
929         push(@dirs, $force_user_valid_users_dir);
930
931         my $smbget_sharedir="$share_dir/smbget";
932         push(@dirs,$smbget_sharedir);
933
934         my $tarmode_sharedir="$share_dir/tarmode";
935         push(@dirs,$tarmode_sharedir);
936
937         my $usershare_sharedir="$share_dir/usershares";
938         push(@dirs,$usershare_sharedir);
939
940         my $fileserver_options = "
941         kernel change notify = yes
942
943         usershare path = $usershare_dir
944         usershare max shares = 10
945         usershare allow guests = yes
946         usershare prefix allow list = $usershare_sharedir
947
948         get quota command = $prefix_abs/getset_quota.py
949         set quota command = $prefix_abs/getset_quota.py
950 [lowercase]
951         path = $lower_case_share_dir
952         comment = smb username is [%U]
953         case sensitive = True
954         default case = lower
955         preserve case = no
956         short preserve case = no
957 [lowercase-30000]
958         path = $lower_case_share_dir_30000
959         comment = smb username is [%U]
960         case sensitive = True
961         default case = lower
962         preserve case = no
963         short preserve case = no
964 [dfree]
965         path = $dfree_share_dir
966         comment = smb username is [%U]
967         dfree command = $srcdir_abs/testprogs/blackbox/dfree.sh
968 [valid-users-access]
969         path = $valid_users_sharedir
970         valid users = +userdup
971 [offline]
972         path = $offline_sharedir
973         vfs objects = offline
974
975 # BUG: https://bugzilla.samba.org/show_bug.cgi?id=9878
976 # RH BUG: https://bugzilla.redhat.com/show_bug.cgi?id=1077651
977 [force_user_valid_users]
978         path = $force_user_valid_users_dir
979         comment = force user with valid users combination test share
980         valid users = +force_user
981         force user = force_user
982         force group = everyone
983         write list = force_user
984
985 [smbget]
986         path = $smbget_sharedir
987         comment = smb username is [%U]
988         guest ok = yes
989 [ign_sysacls]
990         path = $share_dir
991         comment = ignore system acls
992         acl_xattr:ignore system acls = yes
993 [inherit_owner]
994         path = $share_dir
995         comment = inherit owner
996         inherit owner = yes
997 [inherit_owner_u]
998         path = $share_dir
999         comment = inherit only unix owner
1000         inherit owner = unix only
1001         acl_xattr:ignore system acls = yes
1002 # BUG: https://bugzilla.samba.org/show_bug.cgi?id=13690
1003 [force_group_test]
1004         path = $share_dir
1005         comment = force group test
1006 #       force group = everyone
1007 [homes]
1008         comment = Home directories
1009         browseable = No
1010         read only = No
1011 ";
1012
1013         my $vars = $self->provision($path, "WORKGROUP",
1014                                     "FILESERVER",
1015                                     "fileserver",
1016                                     $fileserver_options,
1017                                     undef,
1018                                     undef,
1019                                     1);
1020
1021         $vars or return undef;
1022
1023         if (not $self->check_or_start($vars, "yes", "no", "yes")) {
1024                return undef;
1025         }
1026
1027
1028         mkdir($_, 0777) foreach(@dirs);
1029
1030         ## Create case sensitive lower case share dir
1031         foreach my $file ('a'..'z') {
1032                 my $full_path = $lower_case_share_dir . '/' . $file;
1033                 open my $fh, '>', $full_path;
1034                 # Add some content to file
1035                 print $fh $full_path;
1036                 close $fh;
1037         }
1038
1039         for (my $file = 1; $file < 51; ++$file) {
1040                 my $full_path = $lower_case_share_dir . '/' . $file;
1041                 open my $fh, '>', $full_path;
1042                 # Add some content to file
1043                 print $fh $full_path;
1044                 close $fh;
1045         }
1046
1047         # Create content for 30000 share
1048         foreach my $file ('a'..'z') {
1049                 my $full_path = $lower_case_share_dir_30000 . '/' . $file;
1050                 open my $fh, '>', $full_path;
1051                 # Add some content to file
1052                 print $fh $full_path;
1053                 close $fh;
1054         }
1055
1056         for (my $file = 1; $file < 30001; ++$file) {
1057                 my $full_path = $lower_case_share_dir_30000 . '/' . $file;
1058                 open my $fh, '>', $full_path;
1059                 # Add some content to file
1060                 print $fh $full_path;
1061                 close $fh;
1062         }
1063
1064         ##
1065         ## create a listable file in valid_users_share
1066         ##
1067         my $valid_users_target = "$valid_users_sharedir/foo";
1068         unless (open(VALID_USERS_TARGET, ">$valid_users_target")) {
1069                 warn("Unable to open $valid_users_target");
1070                 return undef;
1071         }
1072         close(VALID_USERS_TARGET);
1073         chmod 0644, $valid_users_target;
1074
1075         return $vars;
1076 }
1077
1078 sub setup_ktest
1079 {
1080         my ($self, $prefix) = @_;
1081
1082         # If we didn't build with ADS, pretend this env was never available
1083         if (not $self->have_ads()) {
1084                 return "UNKNOWN";
1085         }
1086
1087         print "PROVISIONING server with security=ads...";
1088
1089         my $ktest_options = "
1090         workgroup = KTEST
1091         realm = ktest.samba.example.com
1092         security = ads
1093         username map = $prefix/lib/username.map
1094         server signing = required
1095         server min protocol = SMB3_00
1096         client max protocol = SMB3
1097
1098         # This disables NTLM auth against the local SAM, which
1099         # we use can then test this setting by.
1100         ntlm auth = disabled
1101 ";
1102
1103         my $ret = $self->provision($prefix, "KTEST",
1104                                    "LOCALKTEST6",
1105                                    "localktest6pass",
1106                                    $ktest_options);
1107
1108         $ret or return undef;
1109
1110         my $ctx;
1111         my $prefix_abs = abs_path($prefix);
1112         $ctx = {};
1113         $ctx->{krb5_conf} = "$prefix_abs/lib/krb5.conf";
1114         $ctx->{domain} = "KTEST";
1115         $ctx->{realm} = "KTEST.SAMBA.EXAMPLE.COM";
1116         $ctx->{dnsname} = lc($ctx->{realm});
1117         $ctx->{kdc_ipv4} = "0.0.0.0";
1118         $ctx->{kdc_ipv6} = "::";
1119         $ctx->{krb5_ccname} = "$prefix_abs/krb5cc_%{uid}";
1120         Samba::mk_krb5_conf($ctx, "");
1121
1122         $ret->{KRB5_CONFIG} = $ctx->{krb5_conf};
1123
1124         open(USERMAP, ">$prefix/lib/username.map") or die("Unable to open $prefix/lib/username.map");
1125         print USERMAP "
1126 $ret->{USERNAME} = KTEST\\Administrator
1127 ";
1128         close(USERMAP);
1129
1130 #This is the secrets.tdb created by 'net ads join' from Samba3 to a
1131 #Samba4 DC with the same parameters as are being used here.  The
1132 #domain SID is S-1-5-21-1071277805-689288055-3486227160
1133         $ret->{SAMSID} = "S-1-5-21-1911091480-1468226576-2729736297";
1134         $ret->{DOMSID} = "S-1-5-21-1071277805-689288055-3486227160";
1135
1136         system("cp $self->{srcdir}/source3/selftest/ktest-secrets.tdb $prefix/private/secrets.tdb");
1137         chmod 0600, "$prefix/private/secrets.tdb";
1138
1139 #Make sure there's no old ntdb file.
1140         system("rm -f $prefix/private/secrets.ntdb");
1141
1142 #This uses a pre-calculated krb5 credentials cache, obtained by running Samba4 with:
1143 # "--option=kdc:service ticket lifetime=239232" "--option=kdc:user ticket lifetime=239232" "--option=kdc:renewal lifetime=239232"
1144 #
1145 #and having in krb5.conf:
1146 # ticket_lifetime = 799718400
1147 # renew_lifetime = 799718400
1148 #
1149 # The commands for the -2 keytab where were:
1150 # kinit administrator@KTEST.SAMBA.EXAMPLE.COM
1151 # kvno host/localktest6@KTEST.SAMBA.EXAMPLE.COM
1152 # kvno cifs/localktest6@KTEST.SAMBA.EXAMPLE.COM
1153 # kvno host/LOCALKTEST6@KTEST.SAMBA.EXAMPLE.COM
1154 # kvno cifs/LOCALKTEST6@KTEST.SAMBA.EXAMPLE.COM
1155 #
1156 # and then for the -3 keytab, I did
1157 #
1158 # net changetrustpw; kdestroy and the same again.
1159 #
1160 # This creates a credential cache with a very long lifetime (2036 at
1161 # at 2011-04), and shows that running 'net changetrustpw' does not
1162 # break existing logins (for the secrets.tdb method at least).
1163 #
1164
1165         $ret->{KRB5_CCACHE}="FILE:$prefix/krb5_ccache";
1166
1167         system("cp $self->{srcdir}/source3/selftest/ktest-krb5_ccache-2 $prefix/krb5_ccache-2");
1168         chmod 0600, "$prefix/krb5_ccache-2";
1169
1170         system("cp $self->{srcdir}/source3/selftest/ktest-krb5_ccache-3 $prefix/krb5_ccache-3");
1171         chmod 0600, "$prefix/krb5_ccache-3";
1172
1173         # We need world access to this share, as otherwise the domain
1174         # administrator from the AD domain provided by ktest can't
1175         # access the share for tests.
1176         chmod 0777, "$prefix/share";
1177
1178         if (not $self->check_or_start($ret, "yes", "no", "yes")) {
1179                return undef;
1180         }
1181         return $ret;
1182 }
1183
1184 sub setup_maptoguest
1185 {
1186         my ($self, $path) = @_;
1187
1188         print "PROVISIONING maptoguest...";
1189
1190         my $options = "
1191 map to guest = bad user
1192 ntlm auth = yes
1193 ";
1194
1195         my $vars = $self->provision($path, "WORKGROUP",
1196                                     "maptoguest",
1197                                     "maptoguestpass",
1198                                     $options);
1199
1200         $vars or return undef;
1201
1202         if (not $self->check_or_start($vars, "yes", "no", "yes")) {
1203                return undef;
1204         }
1205
1206         return $vars;
1207 }
1208
1209 sub stop_sig_term($$) {
1210         my ($self, $pid) = @_;
1211         kill("USR1", $pid) or kill("ALRM", $pid) or warn("Unable to kill $pid: $!");
1212 }
1213
1214 sub stop_sig_kill($$) {
1215         my ($self, $pid) = @_;
1216         kill("ALRM", $pid) or warn("Unable to kill $pid: $!");
1217 }
1218
1219 sub write_pid($$$)
1220 {
1221         my ($env_vars, $app, $pid) = @_;
1222
1223         open(PID, ">$env_vars->{PIDDIR}/timelimit.$app.pid");
1224         print PID $pid;
1225         close(PID);
1226 }
1227
1228 sub read_pid($$)
1229 {
1230         my ($env_vars, $app) = @_;
1231
1232         open(PID, "<$env_vars->{PIDDIR}/timelimit.$app.pid");
1233         my $pid = <PID>;
1234         close(PID);
1235         return $pid;
1236 }
1237
1238 # builds up the cmd args to run an s3 binary (i.e. smbd, nmbd, etc)
1239 sub make_bin_cmd
1240 {
1241         my ($self, $binary, $env_vars, $options, $valgrind, $dont_log_stdout) = @_;
1242
1243         my @optargs = ("-d0");
1244         if (defined($options)) {
1245                 @optargs = split(/ /, $options);
1246         }
1247         my @preargs = (Samba::bindir_path($self, "timelimit"), $self->{server_maxtime});
1248
1249         if (defined($valgrind)) {
1250                 @preargs = split(/ /, $valgrind);
1251         }
1252         my @args = ("-F", "--no-process-group",
1253                     "-s", $env_vars->{SERVERCONFFILE},
1254                     "-l", $env_vars->{LOGDIR});
1255
1256         if (not defined($dont_log_stdout)) {
1257                 push(@args, "--log-stdout");
1258         }
1259         return (@preargs, $binary, @args, @optargs);
1260 }
1261
1262 sub check_or_start($$$$$) {
1263         my ($self, $env_vars, $nmbd, $winbindd, $smbd) = @_;
1264         my $STDIN_READER;
1265
1266         # use a pipe for stdin in the child processes. This allows
1267         # those processes to monitor the pipe for EOF to ensure they
1268         # exit when the test script exits
1269         pipe($STDIN_READER, $env_vars->{STDIN_PIPE});
1270
1271         my $binary = Samba::bindir_path($self, "nmbd");
1272         my @full_cmd = $self->make_bin_cmd($binary, $env_vars,
1273                                            $ENV{NMBD_OPTIONS}, $ENV{NMBD_VALGRIND},
1274                                            $ENV{NMBD_DONT_LOG_STDOUT});
1275         my $nmbd_envs = Samba::get_env_for_process("nmbd", $env_vars);
1276         delete $nmbd_envs->{RESOLV_WRAPPER_CONF};
1277         delete $nmbd_envs->{RESOLV_WRAPPER_HOSTS};
1278
1279         # fork and exec() nmbd in the child process
1280         my $daemon_ctx = {
1281                 NAME => "nmbd",
1282                 BINARY_PATH => $binary,
1283                 FULL_CMD => [ @full_cmd ],
1284                 LOG_FILE => $env_vars->{NMBD_TEST_LOG},
1285                 ENV_VARS => $nmbd_envs,
1286         };
1287         if ($nmbd ne "yes") {
1288                 $daemon_ctx->{SKIP_DAEMON} = 1;
1289         }
1290         my $pid = Samba::fork_and_exec($self, $env_vars, $daemon_ctx, $STDIN_READER);
1291
1292         $env_vars->{NMBD_TL_PID} = $pid;
1293         write_pid($env_vars, "nmbd", $pid);
1294
1295         $binary = Samba::bindir_path($self, "winbindd");
1296         @full_cmd = $self->make_bin_cmd($binary, $env_vars,
1297                                          $ENV{WINBINDD_OPTIONS}, $ENV{WINBINDD_VALGRIND}, "N/A");
1298
1299         if (not defined($ENV{WINBINDD_DONT_LOG_STDOUT})) {
1300                 push(@full_cmd, "--stdout");
1301         }
1302
1303         # fork and exec() winbindd in the child process
1304         $daemon_ctx = {
1305                 NAME => "winbindd",
1306                 BINARY_PATH => $binary,
1307                 FULL_CMD => [ @full_cmd ],
1308                 LOG_FILE => $env_vars->{WINBINDD_TEST_LOG},
1309         };
1310         if ($winbindd ne "yes") {
1311                 $daemon_ctx->{SKIP_DAEMON} = 1;
1312         }
1313         my $pid = Samba::fork_and_exec($self, $env_vars, $daemon_ctx, $STDIN_READER);
1314
1315         $env_vars->{WINBINDD_TL_PID} = $pid;
1316         write_pid($env_vars, "winbindd", $pid);
1317
1318         $binary = Samba::bindir_path($self, "smbd");
1319         @full_cmd = $self->make_bin_cmd($binary, $env_vars,
1320                                          $ENV{SMBD_OPTIONS}, $ENV{SMBD_VALGRIND},
1321                                          $ENV{SMBD_DONT_LOG_STDOUT});
1322
1323         # fork and exec() smbd in the child process
1324         $daemon_ctx = {
1325                 NAME => "smbd",
1326                 BINARY_PATH => $binary,
1327                 FULL_CMD => [ @full_cmd ],
1328                 LOG_FILE => $env_vars->{SMBD_TEST_LOG},
1329         };
1330         if ($smbd ne "yes") {
1331                 $daemon_ctx->{SKIP_DAEMON} = 1;
1332         }
1333
1334         my $pid = Samba::fork_and_exec($self, $env_vars, $daemon_ctx, $STDIN_READER);
1335
1336         $env_vars->{SMBD_TL_PID} = $pid;
1337         write_pid($env_vars, "smbd", $pid);
1338
1339         # close the parent's read-end of the pipe
1340         close(STDIN_READER);
1341
1342         return $self->wait_for_start($env_vars, $nmbd, $winbindd, $smbd);
1343 }
1344
1345 sub createuser($$$$$)
1346 {
1347         my ($self, $username, $password, $conffile, $env) = @_;
1348         my $cmd = "UID_WRAPPER_ROOT=1 " . Samba::bindir_path($self, "smbpasswd")." -c $conffile -L -s -a $username > /dev/null";
1349
1350         keys %$env;
1351         while(my($var, $val) = each %$env) {
1352                 $cmd = "$var=\"$val\" $cmd";
1353         }
1354
1355         unless (open(PWD, "|$cmd")) {
1356             warn("Unable to set password for $username account\n$cmd");
1357             return undef;
1358         }
1359         print PWD "$password\n$password\n";
1360         unless (close(PWD)) {
1361             warn("Unable to set password for $username account\n$cmd");
1362             return undef;
1363         }
1364 }
1365
1366 sub provision($$$$$$$$$)
1367 {
1368         my ($self, $prefix, $domain, $server, $password, $extra_options, $dc_server_ip, $dc_server_ipv6, $no_delete_prefix) = @_;
1369
1370         ##
1371         ## setup the various environment variables we need
1372         ##
1373
1374         my $samsid = Samba::random_domain_sid();
1375         my $swiface = Samba::get_interface($server);
1376         my %ret = ();
1377         my %createuser_env = ();
1378         my $server_ip = Samba::get_ipv4_addr($server);
1379         my $server_ipv6 = Samba::get_ipv6_addr($server);
1380
1381         my $unix_name = ($ENV{USER} or $ENV{LOGNAME} or `PATH=/usr/ucb:$ENV{PATH} whoami`);
1382         chomp $unix_name;
1383         my $unix_uid = $>;
1384         my $unix_gids_str = $);
1385         my @unix_gids = split(" ", $unix_gids_str);
1386
1387         my $prefix_abs = abs_path($prefix);
1388         my $bindir_abs = abs_path($self->{bindir});
1389
1390         my @dirs = ();
1391
1392         my $shrdir="$prefix_abs/share";
1393         push(@dirs,$shrdir);
1394
1395         my $libdir="$prefix_abs/lib";
1396         push(@dirs,$libdir);
1397
1398         my $piddir="$prefix_abs/pid";
1399         push(@dirs,$piddir);
1400
1401         my $privatedir="$prefix_abs/private";
1402         push(@dirs,$privatedir);
1403
1404         my $binddnsdir = "$prefix_abs/bind-dns";
1405         push(@dirs, $binddnsdir);
1406
1407         my $lockdir="$prefix_abs/lockdir";
1408         push(@dirs,$lockdir);
1409
1410         my $eventlogdir="$prefix_abs/lockdir/eventlog";
1411         push(@dirs,$eventlogdir);
1412
1413         my $logdir="$prefix_abs/logs";
1414         push(@dirs,$logdir);
1415
1416         my $driver32dir="$shrdir/W32X86";
1417         push(@dirs,$driver32dir);
1418
1419         my $driver64dir="$shrdir/x64";
1420         push(@dirs,$driver64dir);
1421
1422         my $driver40dir="$shrdir/WIN40";
1423         push(@dirs,$driver40dir);
1424
1425         my $ro_shrdir="$shrdir/root-tmp";
1426         push(@dirs,$ro_shrdir);
1427
1428         my $msdfs_shrdir="$shrdir/msdfsshare";
1429         push(@dirs,$msdfs_shrdir);
1430
1431         my $msdfs_deeppath="$msdfs_shrdir/deeppath";
1432         push(@dirs,$msdfs_deeppath);
1433
1434         my $badnames_shrdir="$shrdir/badnames";
1435         push(@dirs,$badnames_shrdir);
1436
1437         my $lease1_shrdir="$shrdir/SMB2_10";
1438         push(@dirs,$lease1_shrdir);
1439
1440         my $lease2_shrdir="$shrdir/SMB3_00";
1441         push(@dirs,$lease2_shrdir);
1442
1443         my $manglenames_shrdir="$shrdir/manglenames";
1444         push(@dirs,$manglenames_shrdir);
1445
1446         my $widelinks_shrdir="$shrdir/widelinks";
1447         push(@dirs,$widelinks_shrdir);
1448
1449         my $widelinks_linkdir="$shrdir/widelinks_foo";
1450         push(@dirs,$widelinks_linkdir);
1451
1452         my $shadow_tstdir="$shrdir/shadow";
1453         push(@dirs,$shadow_tstdir);
1454         my $shadow_mntdir="$shadow_tstdir/mount";
1455         push(@dirs,$shadow_mntdir);
1456         my $shadow_basedir="$shadow_mntdir/base";
1457         push(@dirs,$shadow_basedir);
1458         my $shadow_shrdir="$shadow_basedir/share";
1459         push(@dirs,$shadow_shrdir);
1460
1461         my $nosymlinks_shrdir="$shrdir/nosymlinks";
1462         push(@dirs,$nosymlinks_shrdir);
1463
1464         my $local_symlinks_shrdir="$shrdir/local_symlinks";
1465         push(@dirs,$local_symlinks_shrdir);
1466
1467         # this gets autocreated by winbindd
1468         my $wbsockdir="$prefix_abs/winbindd";
1469
1470         my $nmbdsockdir="$prefix_abs/nmbd";
1471         unlink($nmbdsockdir);
1472
1473         ## 
1474         ## create the test directory layout
1475         ##
1476         die ("prefix_abs = ''") if $prefix_abs eq "";
1477         die ("prefix_abs = '/'") if $prefix_abs eq "/";
1478
1479         mkdir($prefix_abs, 0777);
1480         print "CREATE TEST ENVIRONMENT IN '$prefix'...";
1481         if (not defined($no_delete_prefix) or not $no_delete_prefix) {
1482             system("rm -rf $prefix_abs/*");
1483         }
1484         mkdir($_, 0777) foreach(@dirs);
1485
1486         my $fs_specific_conf = $self->get_fs_specific_conf($shrdir);
1487
1488         ##
1489         ## lockdir and piddir must be 0755
1490         ##
1491         chmod 0755, $lockdir;
1492         chmod 0755, $piddir;
1493
1494
1495         ##
1496         ## create ro and msdfs share layout
1497         ##
1498
1499         chmod 0755, $ro_shrdir;
1500         my $unreadable_file = "$ro_shrdir/unreadable_file";
1501         unless (open(UNREADABLE_FILE, ">$unreadable_file")) {
1502                 warn("Unable to open $unreadable_file");
1503                 return undef;
1504         }
1505         close(UNREADABLE_FILE);
1506         chmod 0600, $unreadable_file;
1507
1508         my $msdfs_target = "$ro_shrdir/msdfs-target";
1509         unless (open(MSDFS_TARGET, ">$msdfs_target")) {
1510                 warn("Unable to open $msdfs_target");
1511                 return undef;
1512         }
1513         close(MSDFS_TARGET);
1514         chmod 0666, $msdfs_target;
1515         symlink "msdfs:$server_ip\\ro-tmp,$server_ipv6\\ro-tmp",
1516                 "$msdfs_shrdir/msdfs-src1";
1517         symlink "msdfs:$server_ipv6\\ro-tmp", "$msdfs_shrdir/deeppath/msdfs-src2";
1518
1519         ##
1520         ## create bad names in $badnames_shrdir
1521         ##
1522         ## (An invalid name, would be mangled to 8.3).
1523         my $badname_target = "$badnames_shrdir/\340|\231\216\377\177";
1524         unless (open(BADNAME_TARGET, ">$badname_target")) {
1525                 warn("Unable to open $badname_target");
1526                 return undef;
1527         }
1528         close(BADNAME_TARGET);
1529         chmod 0666, $badname_target;
1530
1531         ## (A bad name, would not be mangled to 8.3).
1532         my $badname_target = "$badnames_shrdir/\240\276\346\327\377\177";
1533         unless (open(BADNAME_TARGET, ">$badname_target")) {
1534                 warn("Unable to open $badname_target");
1535                 return undef;
1536         }
1537         close(BADNAME_TARGET);
1538         chmod 0666, $badname_target;
1539
1540         ## (A bad good name).
1541         my $badname_target = "$badnames_shrdir/blank.txt";
1542         unless (open(BADNAME_TARGET, ">$badname_target")) {
1543                 warn("Unable to open $badname_target");
1544                 return undef;
1545         }
1546         close(BADNAME_TARGET);
1547         chmod 0666, $badname_target;
1548
1549         ##
1550         ## create mangleable directory names in $manglenames_shrdir
1551         ##
1552         my $manglename_target = "$manglenames_shrdir/foo:bar";
1553         mkdir($manglename_target, 0777);
1554
1555         ##
1556         ## create symlinks for widelinks tests.
1557         ##
1558         my $widelinks_target = "$widelinks_linkdir/target";
1559         unless (open(WIDELINKS_TARGET, ">$widelinks_target")) {
1560                 warn("Unable to open $widelinks_target");
1561                 return undef;
1562         }
1563         close(WIDELINKS_TARGET);
1564         chmod 0666, $widelinks_target;
1565         ##
1566         ## This link should get ACCESS_DENIED
1567         ##
1568         symlink "$widelinks_target", "$widelinks_shrdir/source";
1569         ##
1570         ## This link should be allowed
1571         ##
1572         symlink "$widelinks_shrdir", "$widelinks_shrdir/dot";
1573
1574         my $conffile="$libdir/server.conf";
1575         my $dfqconffile="$libdir/dfq.conf";
1576         my $errorinjectconf="$libdir/error_inject.conf";
1577         my $delayinjectconf="$libdir/delay_inject.conf";
1578
1579         my $nss_wrapper_pl = "$ENV{PERL} $self->{srcdir}/third_party/nss_wrapper/nss_wrapper.pl";
1580         my $nss_wrapper_passwd = "$privatedir/passwd";
1581         my $nss_wrapper_group = "$privatedir/group";
1582         my $nss_wrapper_hosts = "$ENV{SELFTEST_PREFIX}/hosts";
1583         my $resolv_conf = "$privatedir/resolv.conf";
1584         my $dns_host_file = "$ENV{SELFTEST_PREFIX}/dns_host_file";
1585
1586         my $mod_printer_pl = "$ENV{PERL} $self->{srcdir}/source3/script/tests/printing/modprinter.pl";
1587
1588         my $fake_snap_pl = "$ENV{PERL} $self->{srcdir}/source3/script/tests/fake_snap.pl";
1589
1590         my @eventlog_list = ("dns server", "application");
1591
1592         ##
1593         ## calculate uids and gids
1594         ##
1595
1596         my ($max_uid, $max_gid);
1597         my ($uid_nobody, $uid_root, $uid_pdbtest, $uid_pdbtest2, $uid_userdup);
1598         my ($uid_pdbtest_wkn);
1599         my ($uid_smbget);
1600         my ($uid_force_user);
1601         my ($gid_nobody, $gid_nogroup, $gid_root, $gid_domusers, $gid_domadmins);
1602         my ($gid_userdup, $gid_everyone);
1603         my ($gid_force_user);
1604         my ($uid_user1);
1605         my ($uid_user2);
1606         my ($uid_gooduser);
1607         my ($uid_eviluser);
1608         my ($uid_slashuser);
1609
1610         if ($unix_uid < 0xffff - 13) {
1611                 $max_uid = 0xffff;
1612         } else {
1613                 $max_uid = $unix_uid;
1614         }
1615
1616         $uid_root = $max_uid - 1;
1617         $uid_nobody = $max_uid - 2;
1618         $uid_pdbtest = $max_uid - 3;
1619         $uid_pdbtest2 = $max_uid - 4;
1620         $uid_userdup = $max_uid - 5;
1621         $uid_pdbtest_wkn = $max_uid - 6;
1622         $uid_force_user = $max_uid - 7;
1623         $uid_smbget = $max_uid - 8;
1624         $uid_user1 = $max_uid - 9;
1625         $uid_user2 = $max_uid - 10;
1626         $uid_gooduser = $max_uid - 11;
1627         $uid_eviluser = $max_uid - 12;
1628         $uid_slashuser = $max_uid - 13;
1629
1630         if ($unix_gids[0] < 0xffff - 8) {
1631                 $max_gid = 0xffff;
1632         } else {
1633                 $max_gid = $unix_gids[0];
1634         }
1635
1636         $gid_nobody = $max_gid - 1;
1637         $gid_nogroup = $max_gid - 2;
1638         $gid_root = $max_gid - 3;
1639         $gid_domusers = $max_gid - 4;
1640         $gid_domadmins = $max_gid - 5;
1641         $gid_userdup = $max_gid - 6;
1642         $gid_everyone = $max_gid - 7;
1643         $gid_force_user = $max_gid - 8;
1644
1645         ##
1646         ## create conffile
1647         ##
1648
1649         unless (open(CONF, ">$conffile")) {
1650                 warn("Unable to open $conffile");
1651                 return undef;
1652         }
1653
1654         my $interfaces = Samba::get_interfaces_config($server);
1655
1656         print CONF "
1657 [global]
1658         netbios name = $server
1659         interfaces = $interfaces
1660         bind interfaces only = yes
1661         panic action = cd $self->{srcdir} && $self->{srcdir}/selftest/gdb_backtrace %d %\$(MAKE_TEST_BINARY)
1662         smbd:suicide mode = yes
1663
1664         client min protocol = CORE
1665         server min protocol = LANMAN1
1666
1667         workgroup = $domain
1668
1669         private dir = $privatedir
1670         binddns dir = $binddnsdir
1671         pid directory = $piddir
1672         lock directory = $lockdir
1673         log file = $logdir/log.\%m
1674         log level = 1
1675         debug pid = yes
1676         max log size = 0
1677
1678         state directory = $lockdir
1679         cache directory = $lockdir
1680
1681         passdb backend = tdbsam
1682
1683         time server = yes
1684
1685         add user script =               $nss_wrapper_pl --passwd_path $nss_wrapper_passwd --type passwd --action add --name %u --gid $gid_nogroup
1686         add group script =              $nss_wrapper_pl --group_path  $nss_wrapper_group  --type group  --action add --name %g
1687         add machine script =            $nss_wrapper_pl --passwd_path $nss_wrapper_passwd --type passwd --action add --name %u --gid $gid_nogroup
1688         add user to group script =      $nss_wrapper_pl --passwd_path $nss_wrapper_passwd --type member --action add --member %u --name %g --group_path $nss_wrapper_group
1689         delete user script =            $nss_wrapper_pl --passwd_path $nss_wrapper_passwd --type passwd --action delete --name %u
1690         delete group script =           $nss_wrapper_pl --group_path  $nss_wrapper_group  --type group  --action delete --name %g
1691         delete user from group script = $nss_wrapper_pl --passwd_path $nss_wrapper_passwd --type member --action delete --member %u --name %g --group_path $nss_wrapper_group
1692
1693         addprinter command =            $mod_printer_pl -a -s $conffile --
1694         deleteprinter command =         $mod_printer_pl -d -s $conffile --
1695
1696         eventlog list = application \"dns server\"
1697
1698         kernel oplocks = no
1699         kernel change notify = no
1700
1701         logging = file
1702         printing = bsd
1703         printcap name = /dev/null
1704
1705         winbindd socket directory = $wbsockdir
1706         nmbd:socket dir = $nmbdsockdir
1707         idmap config * : range = 100000-200000
1708         winbind enum users = yes
1709         winbind enum groups = yes
1710         winbind separator = /
1711         include system krb5 conf = no
1712
1713 #       min receivefile size = 4000
1714
1715         read only = no
1716
1717         smbd:sharedelay = 100000
1718         smbd:writetimeupdatedelay = 500000
1719         map hidden = no
1720         map system = no
1721         map readonly = no
1722         store dos attributes = yes
1723         create mask = 755
1724         dos filemode = yes
1725         strict rename = yes
1726         strict sync = yes
1727         vfs objects = acl_xattr fake_acls xattr_tdb streams_depot time_audit full_audit
1728
1729         full_audit:syslog = no
1730         full_audit:success = none
1731         full_audit:failure = none
1732
1733         printing = vlp
1734         print command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb print %p %s
1735         lpq command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lpq %p
1736         lp rm command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lprm %p %j
1737         lp pause command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lppause %p %j
1738         lp resume command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lpresume %p %j
1739         queue pause command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb queuepause %p
1740         queue resume command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb queueresume %p
1741         lpq cache time = 0
1742         print notify backchannel = yes
1743
1744         ncalrpc dir = $prefix_abs/ncalrpc
1745
1746         # The samba3.blackbox.smbclient_s3 test uses this to test that
1747         # sending messages works, and that the %m sub works.
1748         message command = mv %s $shrdir/message.%m
1749
1750         # fsrvp server requires registry shares
1751         registry shares = yes
1752
1753         # Used by RPC SRVSVC tests
1754         add share command = $bindir_abs/smbaddshare
1755         change share command = $bindir_abs/smbchangeshare
1756         delete share command = $bindir_abs/smbdeleteshare
1757
1758         # fruit:copyfile is a global option
1759         fruit:copyfile = yes
1760
1761         #this does not mean that we use non-secure test env,
1762         #it just means we ALLOW one to be configured.
1763         allow insecure wide links = yes
1764
1765         # Begin extra options
1766         $extra_options
1767         # End extra options
1768
1769         #Include user defined custom parameters if set
1770 ";
1771
1772         if (defined($ENV{INCLUDE_CUSTOM_CONF})) {
1773                 print CONF "\t$ENV{INCLUDE_CUSTOM_CONF}\n";
1774         }
1775
1776         print CONF "
1777 [tmp]
1778         path = $shrdir
1779         comment = smb username is [%U]
1780 [tmpsort]
1781         path = $shrdir
1782         comment = Load dirsort module
1783         vfs objects = dirsort acl_xattr fake_acls xattr_tdb streams_depot
1784 [tmpenc]
1785         path = $shrdir
1786         comment = encrypt smb username is [%U]
1787         smb encrypt = required
1788         vfs objects = dirsort
1789 [tmpguest]
1790         path = $shrdir
1791         guest ok = yes
1792 [guestonly]
1793         path = $shrdir
1794         guest only = yes
1795         guest ok = yes
1796 [forceuser]
1797         path = $shrdir
1798         force user = $unix_name
1799         guest ok = yes
1800 [forceuser_unixonly]
1801         comment = force a user with unix user SID and group SID
1802         path = $shrdir
1803         force user = pdbtest
1804         guest ok = yes
1805 [forceuser_wkngroup]
1806         comment = force a user with well-known group SID
1807         path = $shrdir
1808         force user = pdbtest_wkn
1809         guest ok = yes
1810 [forcegroup]
1811         path = $shrdir
1812         force group = nogroup
1813         guest ok = yes
1814 [ro-tmp]
1815         path = $ro_shrdir
1816         guest ok = yes
1817 [write-list-tmp]
1818         path = $shrdir
1819         read only = yes
1820         write list = $unix_name
1821 [valid-users-tmp]
1822         path = $shrdir
1823         valid users = $unix_name
1824         access based share enum = yes
1825 [msdfs-share]
1826         path = $msdfs_shrdir
1827         msdfs root = yes
1828         msdfs shuffle referrals = yes
1829         guest ok = yes
1830 [hideunread]
1831         copy = tmp
1832         hide unreadable = yes
1833 [tmpcase]
1834         copy = tmp
1835         case sensitive = yes
1836 [hideunwrite]
1837         copy = tmp
1838         hide unwriteable files = yes
1839 [durable]
1840         copy = tmp
1841         kernel share modes = no
1842         kernel oplocks = no
1843         posix locking = no
1844 [fs_specific]
1845         copy = tmp
1846         $fs_specific_conf
1847 [print1]
1848         copy = tmp
1849         printable = yes
1850
1851 [print2]
1852         copy = print1
1853 [print3]
1854         copy = print1
1855         default devmode = no
1856 [lp]
1857         copy = print1
1858
1859 [nfs4acl_simple_40]
1860         path = $shrdir
1861         comment = smb username is [%U]
1862         nfs4:mode = simple
1863         nfs4acl_xattr:version = 40
1864         vfs objects = nfs4acl_xattr xattr_tdb
1865
1866 [nfs4acl_special_40]
1867         path = $shrdir
1868         comment = smb username is [%U]
1869         nfs4:mode = special
1870         nfs4acl_xattr:version = 40
1871         vfs objects = nfs4acl_xattr xattr_tdb
1872
1873 [nfs4acl_simple_41]
1874         path = $shrdir
1875         comment = smb username is [%U]
1876         nfs4:mode = simple
1877         vfs objects = nfs4acl_xattr xattr_tdb
1878
1879 [nfs4acl_xdr_40]
1880         path = $shrdir
1881         comment = smb username is [%U]
1882         vfs objects = nfs4acl_xattr xattr_tdb
1883         nfs4:mode = simple
1884         nfs4acl_xattr:encoding = xdr
1885         nfs4acl_xattr:version = 40
1886
1887 [nfs4acl_xdr_41]
1888         path = $shrdir
1889         comment = smb username is [%U]
1890         vfs objects = nfs4acl_xattr xattr_tdb
1891         nfs4:mode = simple
1892         nfs4acl_xattr:encoding = xdr
1893         nfs4acl_xattr:version = 41
1894
1895 [nfs4acl_nfs_40]
1896         path = $shrdir
1897         comment = smb username is [%U]
1898         vfs objects = nfs4acl_xattr xattr_tdb
1899         nfs4:mode = simple
1900         nfs4acl_xattr:encoding = nfs
1901         nfs4acl_xattr:version = 40
1902         nfs4acl_xattr:xattr_name = security.nfs4acl_xdr
1903
1904 [nfs4acl_nfs_41]
1905         path = $shrdir
1906         comment = smb username is [%U]
1907         vfs objects = nfs4acl_xattr xattr_tdb
1908         nfs4:mode = simple
1909         nfs4acl_xattr:encoding = nfs
1910         nfs4acl_xattr:version = 41
1911         nfs4acl_xattr:xattr_name = security.nfs4acl_xdr
1912
1913 [xcopy_share]
1914         path = $shrdir
1915         comment = smb username is [%U]
1916         create mask = 777
1917         force create mode = 777
1918 [posix_share]
1919         path = $shrdir
1920         comment = smb username is [%U]
1921         create mask = 0777
1922         force create mode = 0
1923         directory mask = 0777
1924         force directory mode = 0
1925         vfs objects = xattr_tdb streams_depot
1926 [aio]
1927         copy = tmp
1928         aio read size = 1
1929         aio write size = 1
1930
1931 [print\$]
1932         copy = tmp
1933
1934 [vfs_fruit]
1935         path = $shrdir
1936         vfs objects = catia fruit streams_xattr acl_xattr xattr_tdb
1937         fruit:resource = file
1938         fruit:metadata = netatalk
1939         fruit:locking = netatalk
1940         fruit:encoding = native
1941         fruit:veto_appledouble = no
1942
1943 [vfs_fruit_xattr]
1944         path = $shrdir
1945         # This is used by vfs.fruit tests that require real fs xattr
1946         vfs objects = catia fruit streams_xattr acl_xattr
1947         fruit:resource = file
1948         fruit:metadata = netatalk
1949         fruit:locking = netatalk
1950         fruit:encoding = native
1951         fruit:veto_appledouble = no
1952
1953 [vfs_fruit_metadata_stream]
1954         path = $shrdir
1955         vfs objects = fruit streams_xattr acl_xattr xattr_tdb
1956         fruit:resource = file
1957         fruit:metadata = stream
1958         fruit:veto_appledouble = no
1959
1960 [vfs_fruit_stream_depot]
1961         path = $shrdir
1962         vfs objects = fruit streams_depot acl_xattr xattr_tdb
1963         fruit:resource = stream
1964         fruit:metadata = stream
1965         fruit:veto_appledouble = no
1966
1967 [vfs_wo_fruit]
1968         path = $shrdir
1969         vfs objects = streams_xattr acl_xattr xattr_tdb
1970
1971 [vfs_wo_fruit_stream_depot]
1972         path = $shrdir
1973         vfs objects = streams_depot acl_xattr xattr_tdb
1974
1975 [vfs_fruit_timemachine]
1976         path = $shrdir
1977         vfs objects = fruit streams_xattr acl_xattr xattr_tdb
1978         fruit:resource = file
1979         fruit:metadata = stream
1980         fruit:time machine = yes
1981         fruit:time machine max size = 32K
1982
1983 [vfs_fruit_wipe_intentionally_left_blank_rfork]
1984         path = $shrdir
1985         vfs objects = fruit streams_xattr acl_xattr xattr_tdb
1986         fruit:resource = file
1987         fruit:metadata = stream
1988         fruit:wipe_intentionally_left_blank_rfork = true
1989         fruit:delete_empty_adfiles = false
1990         fruit:veto_appledouble = no
1991
1992 [vfs_fruit_delete_empty_adfiles]
1993         path = $shrdir
1994         vfs objects = fruit streams_xattr acl_xattr xattr_tdb
1995         fruit:resource = file
1996         fruit:metadata = stream
1997         fruit:wipe_intentionally_left_blank_rfork = true
1998         fruit:delete_empty_adfiles = true
1999         fruit:veto_appledouble = no
2000
2001 [vfs_fruit_zero_fileid]
2002         path = $shrdir
2003         vfs objects = fruit streams_xattr acl_xattr xattr_tdb
2004         fruit:resource = file
2005         fruit:metadata = stream
2006         fruit:zero_file_id=yes
2007
2008 [badname-tmp]
2009         path = $badnames_shrdir
2010         guest ok = yes
2011
2012 [manglenames_share]
2013         path = $manglenames_shrdir
2014         guest ok = yes
2015
2016 [dynamic_share]
2017         path = $shrdir/%R
2018         guest ok = yes
2019
2020 [widelinks_share]
2021         path = $widelinks_shrdir
2022         wide links = no
2023         guest ok = yes
2024
2025 [fsrvp_share]
2026         path = $shrdir
2027         comment = fake shapshots using rsync
2028         vfs objects = shell_snap shadow_copy2
2029         shell_snap:check path command = $fake_snap_pl --check
2030         shell_snap:create command = $fake_snap_pl --create
2031         shell_snap:delete command = $fake_snap_pl --delete
2032         # a relative path here fails, the snapshot dir is no longer found
2033         shadow:snapdir = $shrdir/.snapshots
2034
2035 [shadow1]
2036         path = $shadow_shrdir
2037         comment = previous versions snapshots under mount point
2038         vfs objects = shadow_copy2
2039         shadow:mountpoint = $shadow_mntdir
2040
2041 [shadow2]
2042         path = $shadow_shrdir
2043         comment = previous versions snapshots outside mount point
2044         vfs objects = shadow_copy2
2045         shadow:mountpoint = $shadow_mntdir
2046         shadow:snapdir = $shadow_tstdir/.snapshots
2047
2048 [shadow3]
2049         path = $shadow_shrdir
2050         comment = previous versions with subvolume snapshots, snapshots under base dir
2051         vfs objects = shadow_copy2
2052         shadow:mountpoint = $shadow_mntdir
2053         shadow:basedir = $shadow_basedir
2054         shadow:snapdir = $shadow_basedir/.snapshots
2055
2056 [shadow4]
2057         path = $shadow_shrdir
2058         comment = previous versions with subvolume snapshots, snapshots outside mount point
2059         vfs objects = shadow_copy2
2060         shadow:mountpoint = $shadow_mntdir
2061         shadow:basedir = $shadow_basedir
2062         shadow:snapdir = $shadow_tstdir/.snapshots
2063
2064 [shadow5]
2065         path = $shadow_shrdir
2066         comment = previous versions at volume root snapshots under mount point
2067         vfs objects = shadow_copy2
2068         shadow:mountpoint = $shadow_shrdir
2069
2070 [shadow6]
2071         path = $shadow_shrdir
2072         comment = previous versions at volume root snapshots outside mount point
2073         vfs objects = shadow_copy2
2074         shadow:mountpoint = $shadow_shrdir
2075         shadow:snapdir = $shadow_tstdir/.snapshots
2076
2077 [shadow7]
2078         path = $shadow_shrdir
2079         comment = previous versions snapshots everywhere
2080         vfs objects = shadow_copy2
2081         shadow:mountpoint = $shadow_mntdir
2082         shadow:snapdirseverywhere = yes
2083
2084 [shadow8]
2085         path = $shadow_shrdir
2086         comment = previous versions using snapsharepath
2087         vfs objects = shadow_copy2
2088         shadow:mountpoint = $shadow_mntdir
2089         shadow:snapdir = $shadow_tstdir/.snapshots
2090         shadow:snapsharepath = share
2091
2092 [shadow_fmt0]
2093         comment = Testing shadow:format with default option
2094         vfs object = shadow_copy2
2095         path = $shadow_shrdir
2096         read only = no
2097         guest ok = yes
2098         shadow:mountpoint = $shadow_mntdir
2099         shadow:basedir = $shadow_basedir
2100         shadow:snapdir = $shadow_basedir/.snapshots
2101         shadow:format = \@GMT-%Y.%m.%d-%H.%M.%S
2102
2103 [shadow_fmt1]
2104         comment = Testing shadow:format with only date component
2105         vfs object = shadow_copy2
2106         path = $shadow_shrdir
2107         read only = no
2108         guest ok = yes
2109         shadow:mountpoint = $shadow_mntdir
2110         shadow:basedir = $shadow_basedir
2111         shadow:snapdir = $shadow_basedir/.snapshots
2112         shadow:format = \@GMT-%Y-%m-%d
2113
2114 [shadow_fmt2]
2115         comment = Testing shadow:format with some hardcoded prefix
2116         vfs object = shadow_copy2
2117         path = $shadow_shrdir
2118         read only = no
2119         guest ok = yes
2120         shadow:mountpoint = $shadow_mntdir
2121         shadow:basedir = $shadow_basedir
2122         shadow:snapdir = $shadow_basedir/.snapshots
2123         shadow:format = snap\@GMT-%Y.%m.%d-%H.%M.%S
2124
2125 [shadow_fmt3]
2126         comment = Testing shadow:format with modified format
2127         vfs object = shadow_copy2
2128         path = $shadow_shrdir
2129         read only = no
2130         guest ok = yes
2131         shadow:mountpoint = $shadow_mntdir
2132         shadow:basedir = $shadow_basedir
2133         shadow:snapdir = $shadow_basedir/.snapshots
2134         shadow:format = \@GMT-%Y.%m.%d-%H_%M_%S-snap
2135
2136 [shadow_fmt4]
2137         comment = Testing shadow:snapprefix regex
2138         vfs object = shadow_copy2
2139         path = $shadow_shrdir
2140         read only = no
2141         guest ok = yes
2142         shadow:mountpoint = $shadow_mntdir
2143         shadow:basedir = $shadow_basedir
2144         shadow:snapdir = $shadow_basedir/.snapshots
2145         shadow:snapprefix = \^s[a-z]*p\$
2146         shadow:format = _GMT-%Y.%m.%d-%H.%M.%S
2147
2148 [shadow_fmt5]
2149         comment = Testing shadow:snapprefix with delim regex
2150         vfs object = shadow_copy2
2151         path = $shadow_shrdir
2152         read only = no
2153         guest ok = yes
2154         shadow:mountpoint = $shadow_mntdir
2155         shadow:basedir = $shadow_basedir
2156         shadow:snapdir = $shadow_basedir/.snapshots
2157         shadow:delimiter = \@GMT
2158         shadow:snapprefix = [a-z]*
2159         shadow:format = \@GMT-%Y.%m.%d-%H.%M.%S
2160
2161 [shadow_wl]
2162         path = $shadow_shrdir
2163         comment = previous versions with wide links allowed
2164         vfs objects = shadow_copy2
2165         shadow:mountpoint = $shadow_mntdir
2166         wide links = yes
2167
2168 [shadow_write]
2169         path = $shadow_tstdir
2170         comment = previous versions snapshots under mount point
2171         vfs objects = shadow_copy2 streams_xattr error_inject
2172         aio write size = 0
2173         error_inject:pwrite = EBADF
2174         shadow:mountpoint = $shadow_tstdir
2175
2176 [dfq]
2177         path = $shrdir/dfree
2178         vfs objects = acl_xattr fake_acls xattr_tdb fake_dfq
2179         admin users = $unix_name
2180         include = $dfqconffile
2181 [dfq_cache]
2182         path = $shrdir/dfree
2183         vfs objects = acl_xattr fake_acls xattr_tdb fake_dfq
2184         admin users = $unix_name
2185         include = $dfqconffile
2186         dfree cache time = 60
2187 [dfq_owner]
2188         path = $shrdir/dfree
2189         vfs objects = acl_xattr fake_acls xattr_tdb fake_dfq
2190         inherit owner = yes
2191         include = $dfqconffile
2192 [quotadir]
2193         path = $shrdir/quota
2194         admin users = $unix_name
2195
2196 [acl_xattr_ign_sysacl_posix]
2197         copy = tmp
2198         acl_xattr:ignore system acls = yes
2199         acl_xattr:default acl style = posix
2200 [acl_xattr_ign_sysacl_windows]
2201         copy = tmp
2202         acl_xattr:ignore system acls = yes
2203         acl_xattr:default acl style = windows
2204
2205 [mangle_illegal]
2206         copy = tmp
2207         mangled names = illegal
2208
2209 [nosymlinks]
2210         copy = tmp
2211         path = $nosymlinks_shrdir
2212         follow symlinks = no
2213
2214 [local_symlinks]
2215         copy = tmp
2216         path = $local_symlinks_shrdir
2217         follow symlinks = yes
2218
2219 [kernel_oplocks]
2220         copy = tmp
2221         kernel oplocks = yes
2222         vfs objects = streams_xattr xattr_tdb
2223
2224 [streams_xattr]
2225         copy = tmp
2226         vfs objects = streams_xattr xattr_tdb
2227
2228 [compound_find]
2229         copy = tmp
2230         smbd:find async delay usec = 10000
2231 [error_inject]
2232         copy = tmp
2233         vfs objects = error_inject
2234         include = $errorinjectconf
2235
2236 [delay_inject]
2237         copy = tmp
2238         vfs objects = delay_inject
2239         kernel share modes = no
2240         kernel oplocks = no
2241         posix locking = no
2242         include = $delayinjectconf
2243
2244 [aio_delay_inject]
2245         copy = tmp
2246         vfs objects = delay_inject
2247         delay_inject:pread_send = 2000
2248         delay_inject:pwrite_send = 2000
2249
2250 [delete_readonly]
2251         path = $prefix_abs/share
2252         delete readonly = yes
2253         ";
2254         close(CONF);
2255
2256         my $net = Samba::bindir_path($self, "net");
2257         my $cmd = "";
2258         $cmd .= "SMB_CONF_PATH=\"$conffile\" ";
2259         $cmd .= "$net setlocalsid $samsid";
2260
2261         if (system($cmd) != 0) {
2262             warn("Join failed\n$cmd");
2263             return undef;
2264         }
2265
2266         unless (open(ERRORCONF, ">$errorinjectconf")) {
2267                 warn("Unable to open $errorinjectconf");
2268                 return undef;
2269         }
2270         close(ERRORCONF);
2271
2272         unless (open(DELAYCONF, ">$delayinjectconf")) {
2273                 warn("Unable to open $delayinjectconf");
2274                 return undef;
2275         }
2276         close(DELAYCONF);
2277
2278         unless (open(DFQCONF, ">$dfqconffile")) {
2279                 warn("Unable to open $dfqconffile");
2280                 return undef;
2281         }
2282         close(DFQCONF);
2283
2284         ##
2285         ## create a test account
2286         ##
2287
2288         unless (open(PASSWD, ">$nss_wrapper_passwd")) {
2289            warn("Unable to open $nss_wrapper_passwd");
2290            return undef;
2291         } 
2292         print PASSWD "nobody:x:$uid_nobody:$gid_nobody:nobody gecos:$prefix_abs:/bin/false
2293 $unix_name:x:$unix_uid:$unix_gids[0]:$unix_name gecos:$prefix_abs:/bin/false
2294 pdbtest:x:$uid_pdbtest:$gid_nogroup:pdbtest gecos:$prefix_abs:/bin/false
2295 pdbtest2:x:$uid_pdbtest2:$gid_nogroup:pdbtest gecos:$prefix_abs:/bin/false
2296 userdup:x:$uid_userdup:$gid_userdup:userdup gecos:$prefix_abs:/bin/false
2297 pdbtest_wkn:x:$uid_pdbtest_wkn:$gid_everyone:pdbtest_wkn gecos:$prefix_abs:/bin/false
2298 force_user:x:$uid_force_user:$gid_force_user:force user gecos:$prefix_abs:/bin/false
2299 smbget_user:x:$uid_smbget:$gid_domusers:smbget_user gecos:$prefix_abs:/bin/false
2300 user1:x:$uid_user1:$gid_nogroup:user1 gecos:$prefix_abs:/bin/false
2301 user2:x:$uid_user2:$gid_nogroup:user2 gecos:$prefix_abs:/bin/false
2302 gooduser:x:$uid_gooduser:$gid_domusers:gooduser gecos:$prefix_abs:/bin/false
2303 eviluser:x:$uid_eviluser:$gid_domusers:eviluser gecos::/bin/false
2304 slashuser:x:$uid_slashuser:$gid_domusers:slashuser gecos:/:/bin/false
2305 ";
2306         if ($unix_uid != 0) {
2307                 print PASSWD "root:x:$uid_root:$gid_root:root gecos:$prefix_abs:/bin/false
2308 ";
2309         }
2310         close(PASSWD);
2311
2312         unless (open(GROUP, ">$nss_wrapper_group")) {
2313              warn("Unable to open $nss_wrapper_group");
2314              return undef;
2315         }
2316         print GROUP "nobody:x:$gid_nobody:
2317 nogroup:x:$gid_nogroup:nobody
2318 $unix_name-group:x:$unix_gids[0]:
2319 domusers:X:$gid_domusers:
2320 domadmins:X:$gid_domadmins:
2321 userdup:x:$gid_userdup:$unix_name
2322 everyone:x:$gid_everyone:
2323 force_user:x:$gid_force_user:
2324 ";
2325         if ($unix_gids[0] != 0) {
2326                 print GROUP "root:x:$gid_root:
2327 ";
2328         }
2329
2330         close(GROUP);
2331
2332         ## hosts
2333         my $hostname = lc($server);
2334         unless (open(HOSTS, ">>$nss_wrapper_hosts")) {
2335                 warn("Unable to open $nss_wrapper_hosts");
2336                 return undef;
2337         }
2338         print HOSTS "${server_ip} ${hostname}.samba.example.com ${hostname}\n";
2339         print HOSTS "${server_ipv6} ${hostname}.samba.example.com ${hostname}\n";
2340         close(HOSTS);
2341
2342         ## hosts
2343         unless (open(RESOLV_CONF, ">$resolv_conf")) {
2344                 warn("Unable to open $resolv_conf");
2345                 return undef;
2346         }
2347         if (defined($dc_server_ip) or defined($dc_server_ipv6)) {
2348                 if (defined($dc_server_ip)) {
2349                         print RESOLV_CONF "nameserver $dc_server_ip\n";
2350                 }
2351                 if (defined($dc_server_ipv6)) {
2352                         print RESOLV_CONF "nameserver $dc_server_ipv6\n";
2353                 }
2354         } else {
2355                 print RESOLV_CONF "nameserver ${server_ip}\n";
2356                 print RESOLV_CONF "nameserver ${server_ipv6}\n";
2357         }
2358         close(RESOLV_CONF);
2359
2360         foreach my $evlog (@eventlog_list) {
2361                 my $evlogtdb = "$eventlogdir/$evlog.tdb";
2362                 open(EVENTLOG, ">$evlogtdb") or die("Unable to open $evlogtdb");
2363                 close(EVENTLOG);
2364         }
2365
2366         $createuser_env{NSS_WRAPPER_PASSWD} = $nss_wrapper_passwd;
2367         $createuser_env{NSS_WRAPPER_GROUP} = $nss_wrapper_group;
2368         $createuser_env{NSS_WRAPPER_HOSTS} = $nss_wrapper_hosts;
2369         $createuser_env{NSS_WRAPPER_HOSTNAME} = "${hostname}.samba.example.com";
2370         if ($ENV{SAMBA_DNS_FAKING}) {
2371                 $createuser_env{RESOLV_WRAPPER_HOSTS} = $dns_host_file;
2372         } else {
2373                 $createuser_env{RESOLV_WRAPPER_CONF} = $resolv_conf;
2374         }
2375
2376         createuser($self, $unix_name, $password, $conffile, \%createuser_env) || die("Unable to create user");
2377         createuser($self, "force_user", $password, $conffile, \%createuser_env) || die("Unable to create force_user");
2378         createuser($self, "smbget_user", $password, $conffile, \%createuser_env) || die("Unable to create smbget_user");
2379         createuser($self, "user1", $password, $conffile, \%createuser_env) || die("Unable to create user1");
2380         createuser($self, "user2", $password, $conffile, \%createuser_env) || die("Unable to create user2");
2381         createuser($self, "gooduser", $password, $conffile, \%createuser_env) || die("Unable to create gooduser");
2382         createuser($self, "eviluser", $password, $conffile, \%createuser_env) || die("Unable to create eviluser");
2383         createuser($self, "slashuser", $password, $conffile, \%createuser_env) || die("Unable to create slashuser");
2384
2385         open(DNS_UPDATE_LIST, ">$prefix/dns_update_list") or die("Unable to open $$prefix/dns_update_list");
2386         print DNS_UPDATE_LIST "A $server. $server_ip\n";
2387         print DNS_UPDATE_LIST "AAAA $server. $server_ipv6\n";
2388         close(DNS_UPDATE_LIST);
2389
2390         print "DONE\n";
2391
2392         $ret{SERVER_IP} = $server_ip;
2393         $ret{SERVER_IPV6} = $server_ipv6;
2394         $ret{NMBD_TEST_LOG} = "$prefix/nmbd_test.log";
2395         $ret{NMBD_TEST_LOG_POS} = 0;
2396         $ret{WINBINDD_TEST_LOG} = "$prefix/winbindd_test.log";
2397         $ret{WINBINDD_TEST_LOG_POS} = 0;
2398         $ret{SMBD_TEST_LOG} = "$prefix/smbd_test.log";
2399         $ret{SMBD_TEST_LOG_POS} = 0;
2400         $ret{SERVERCONFFILE} = $conffile;
2401         $ret{TESTENV_DIR} = $prefix_abs;
2402         $ret{CONFIGURATION} ="-s $conffile";
2403         $ret{LOCK_DIR} = $lockdir;
2404         $ret{SERVER} = $server;
2405         $ret{USERNAME} = $unix_name;
2406         $ret{USERID} = $unix_uid;
2407         $ret{DOMAIN} = $domain;
2408         $ret{SAMSID} = $samsid;
2409         $ret{NETBIOSNAME} = $server;
2410         $ret{PASSWORD} = $password;
2411         $ret{PIDDIR} = $piddir;
2412         $ret{SELFTEST_WINBINDD_SOCKET_DIR} = $wbsockdir;
2413         $ret{NMBD_SOCKET_DIR} = $nmbdsockdir;
2414         $ret{SOCKET_WRAPPER_DEFAULT_IFACE} = $swiface;
2415         $ret{NSS_WRAPPER_PASSWD} = $nss_wrapper_passwd;
2416         $ret{NSS_WRAPPER_GROUP} = $nss_wrapper_group;
2417         $ret{NSS_WRAPPER_HOSTS} = $nss_wrapper_hosts;
2418         $ret{NSS_WRAPPER_HOSTNAME} = "${hostname}.samba.example.com";
2419         $ret{NSS_WRAPPER_MODULE_SO_PATH} = Samba::nss_wrapper_winbind_so_path($self);
2420         $ret{NSS_WRAPPER_MODULE_FN_PREFIX} = "winbind";
2421         if ($ENV{SAMBA_DNS_FAKING}) {
2422                 $ret{RESOLV_WRAPPER_HOSTS} = $dns_host_file;
2423         } else {
2424                 $ret{RESOLV_WRAPPER_CONF} = $resolv_conf;
2425         }
2426         $ret{LOCAL_PATH} = "$shrdir";
2427         $ret{LOGDIR} = $logdir;
2428
2429         #
2430         # Avoid hitting system krb5.conf -
2431         # An env that needs Kerberos will reset this to the real
2432         # value.
2433         #
2434         $ret{KRB5_CONFIG} = abs_path($prefix) . "/no_krb5.conf";
2435
2436         # Define KRB5CCNAME for each environment we set up
2437         $ret{KRB5_CCACHE} = abs_path($prefix) . "/krb5ccache";
2438         $ENV{KRB5CCNAME} = $ret{KRB5_CCACHE};
2439
2440         return \%ret;
2441 }
2442
2443 sub wait_for_start($$$$$)
2444 {
2445         my ($self, $envvars, $nmbd, $winbindd, $smbd) = @_;
2446         my $cmd;
2447         my $netcmd;
2448         my $ret;
2449
2450         if ($nmbd eq "yes") {
2451                 my $count = 0;
2452
2453                 # give time for nbt server to register its names
2454                 print "checking for nmbd\n";
2455
2456                 # This will return quickly when things are up, but be slow if we need to wait for (eg) SSL init
2457                 my $nmblookup = Samba::bindir_path($self, "nmblookup");
2458
2459                 do {
2460                         $ret = system("$nmblookup $envvars->{CONFIGURATION} $envvars->{SERVER}");
2461                         if ($ret != 0) {
2462                                 sleep(1);
2463                         } else {
2464                                 system("$nmblookup $envvars->{CONFIGURATION} -U $envvars->{SERVER_IP} __SAMBA__");
2465                                 system("$nmblookup $envvars->{CONFIGURATION} __SAMBA__");
2466                                 system("$nmblookup $envvars->{CONFIGURATION} -U 127.255.255.255 __SAMBA__");
2467                                 system("$nmblookup $envvars->{CONFIGURATION} -U $envvars->{SERVER_IP} $envvars->{SERVER}");
2468                         }
2469                         $count++;
2470                 } while ($ret != 0 && $count < 10);
2471                 if ($count == 10) {
2472                         print "NMBD not reachable after 10 retries\n";
2473                         teardown_env($self, $envvars);
2474                         return 0;
2475                 }
2476         }
2477
2478         if ($winbindd eq "yes") {
2479             print "checking for winbindd\n";
2480             my $count = 0;
2481             $cmd = "SELFTEST_WINBINDD_SOCKET_DIR='$envvars->{SELFTEST_WINBINDD_SOCKET_DIR}' ";
2482             $cmd .= "NSS_WRAPPER_PASSWD='$envvars->{NSS_WRAPPER_PASSWD}' ";
2483             $cmd .= "NSS_WRAPPER_GROUP='$envvars->{NSS_WRAPPER_GROUP}' ";
2484             $cmd .= Samba::bindir_path($self, "wbinfo") . " --ping-dc";
2485
2486             do {
2487                 if ($ret != 0) {
2488                     $ret = system($cmd);
2489                     sleep(1);
2490                 }
2491                 $count++;
2492             } while ($ret != 0 && $count < 20);
2493             if ($count == 20) {
2494                 print "WINBINDD not reachable after 20 seconds\n";
2495                 teardown_env($self, $envvars);
2496                 return 0;
2497             }
2498         }
2499
2500         if ($smbd eq "yes") {
2501             # make sure smbd is also up set
2502             print "wait for smbd\n";
2503
2504             my $count = 0;
2505             do {
2506                 $ret = system(Samba::bindir_path($self, "smbclient") ." $envvars->{CONFIGURATION} -L $envvars->{SERVER} -U% -p 139");
2507                 if ($ret != 0) {
2508                     sleep(1);
2509                 }
2510                 $count++
2511             } while ($ret != 0 && $count < 20);
2512             if ($count == 20) {
2513                 print "SMBD failed to start up in a reasonable time (20sec)\n";
2514                 teardown_env($self, $envvars);
2515                 return 0;
2516             }
2517         }
2518
2519         # Ensure we have domain users mapped.
2520         $netcmd = "NSS_WRAPPER_PASSWD='$envvars->{NSS_WRAPPER_PASSWD}' ";
2521         $netcmd .= "NSS_WRAPPER_GROUP='$envvars->{NSS_WRAPPER_GROUP}' ";
2522         $netcmd .= Samba::bindir_path($self, "net") ." $envvars->{CONFIGURATION} ";
2523
2524         $cmd = $netcmd . "groupmap delete ntgroup=domusers";
2525         $ret = system($cmd);
2526
2527         $cmd = $netcmd . "groupmap add rid=513 unixgroup=domusers type=domain";
2528         $ret = system($cmd);
2529         if ($ret != 0) {
2530                 print("\"$cmd\" failed\n");
2531                 return 1;
2532         }
2533
2534         $cmd = $netcmd . "groupmap delete ntgroup=domadmins";
2535         $ret = system($cmd);
2536
2537         $cmd = $netcmd . "groupmap add rid=512 unixgroup=domadmins type=domain";
2538         $ret = system($cmd);
2539         if ($ret != 0) {
2540                 print("\"$cmd\" failed\n");
2541                 return 1;
2542         }
2543
2544         $cmd = $netcmd . "groupmap delete ntgroup=everyone";
2545         $ret = system($cmd);
2546
2547         $cmd = $netcmd . "groupmap add sid=S-1-1-0 unixgroup=everyone type=builtin";
2548         $ret = system($cmd);
2549         if ($ret != 0) {
2550                 print("\"$cmd\" failed\n");
2551                 return 1;
2552         }
2553
2554         # note: creating builtin groups requires winbindd for the
2555         # unix id allocator
2556         my $create_builtin_users = "no";
2557         if ($winbindd eq "yes") {
2558                 $cmd = "SELFTEST_WINBINDD_SOCKET_DIR='$envvars->{SELFTEST_WINBINDD_SOCKET_DIR}' ";
2559                 $cmd .= "NSS_WRAPPER_PASSWD='$envvars->{NSS_WRAPPER_PASSWD}' ";
2560                 $cmd .= "NSS_WRAPPER_GROUP='$envvars->{NSS_WRAPPER_GROUP}' ";
2561                 $cmd .= Samba::bindir_path($self, "wbinfo") . " --sid-to-gid=S-1-5-32-545";
2562                 my $wbinfo_out = qx($cmd 2>&1);
2563                 if ($? != 0) {
2564                         # wbinfo doesn't give us a better error code then
2565                         # WBC_ERR_DOMAIN_NOT_FOUND, but at least that's
2566                         # different then WBC_ERR_WINBIND_NOT_AVAILABLE
2567                         if ($wbinfo_out !~ /WBC_ERR_DOMAIN_NOT_FOUND/) {
2568                                 print("Failed to run \"wbinfo --sid-to-gid=S-1-5-32-545\": $wbinfo_out");
2569                                 teardown_env($self, $envvars);
2570                                 return 0;
2571                         }
2572                         $create_builtin_users = "yes";
2573                 }
2574         }
2575         if ($create_builtin_users eq "yes") {
2576             $cmd = "SELFTEST_WINBINDD_SOCKET_DIR='$envvars->{SELFTEST_WINBINDD_SOCKET_DIR}' ";
2577             $cmd .= "NSS_WRAPPER_PASSWD='$envvars->{NSS_WRAPPER_PASSWD}' ";
2578             $cmd .= "NSS_WRAPPER_GROUP='$envvars->{NSS_WRAPPER_GROUP}' ";
2579             $cmd .= Samba::bindir_path($self, "net") . " $envvars->{CONFIGURATION} ";
2580             $cmd .= "sam createbuiltingroup Users";
2581             $ret = system($cmd);
2582             if ($ret != 0) {
2583                 print "Failed to create BUILTIN\\Users group\n";
2584                 teardown_env($self, $envvars);
2585                 return 0;
2586             }
2587
2588             $cmd = Samba::bindir_path($self, "net") . " $envvars->{CONFIGURATION} ";
2589             $cmd .= "cache del IDMAP/SID2XID/S-1-5-32-545";
2590             system($cmd);
2591
2592             $cmd = "SELFTEST_WINBINDD_SOCKET_DIR='$envvars->{SELFTEST_WINBINDD_SOCKET_DIR}' ";
2593             $cmd .= "NSS_WRAPPER_PASSWD='$envvars->{NSS_WRAPPER_PASSWD}' ";
2594             $cmd .= "NSS_WRAPPER_GROUP='$envvars->{NSS_WRAPPER_GROUP}' ";
2595             $cmd .= Samba::bindir_path($self, "wbinfo") . " --sid-to-gid=S-1-5-32-545";
2596             $ret = system($cmd);
2597             if ($ret != 0) {
2598                 print "Missing \"BUILTIN\\Users\", did net sam createbuiltingroup Users fail?\n";
2599                 teardown_env($self, $envvars);
2600                 return 0;
2601             }
2602         }
2603
2604         print $self->getlog_env($envvars);
2605
2606         return 1;
2607 }
2608
2609 1;