selftest: Add TESTENV_DIR "env" variable
[metze/samba/wip.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 ";
618
619         my $ret = $self->provision($prefix, $dcvars->{DOMAIN},
620                                    "IDMAPRIDMEMBER",
621                                    "loCalMemberPass",
622                                    $member_options,
623                                    $dcvars->{SERVER_IP},
624                                    $dcvars->{SERVER_IPV6});
625
626         $ret or return undef;
627
628         close(USERMAP);
629         $ret->{DOMAIN} = $dcvars->{DOMAIN};
630         $ret->{REALM} = $dcvars->{REALM};
631         $ret->{DOMSID} = $dcvars->{DOMSID};
632
633         my $ctx;
634         my $prefix_abs = abs_path($prefix);
635         $ctx = {};
636         $ctx->{krb5_conf} = "$prefix_abs/lib/krb5.conf";
637         $ctx->{domain} = $dcvars->{DOMAIN};
638         $ctx->{realm} = $dcvars->{REALM};
639         $ctx->{dnsname} = lc($dcvars->{REALM});
640         $ctx->{kdc_ipv4} = $dcvars->{SERVER_IP};
641         $ctx->{kdc_ipv6} = $dcvars->{SERVER_IPV6};
642         $ctx->{krb5_ccname} = "$prefix_abs/krb5cc_%{uid}";
643         Samba::mk_krb5_conf($ctx, "");
644
645         $ret->{KRB5_CONFIG} = $ctx->{krb5_conf};
646         $ret->{RESOLV_CONF} = $dcvars->{RESOLV_CONF};
647
648         my $net = Samba::bindir_path($self, "net");
649         # Add hosts file for name lookups
650         my $cmd = "NSS_WRAPPER_HOSTS='$ret->{NSS_WRAPPER_HOSTS}' ";
651         $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
652         if (defined($ret->{RESOLV_WRAPPER_CONF})) {
653                 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
654         } else {
655                 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
656         }
657         $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
658         $cmd .= "SELFTEST_WINBINDD_SOCKET_DIR=\"$ret->{SELFTEST_WINBINDD_SOCKET_DIR}\" ";
659         $cmd .= "$net join $ret->{CONFIGURATION}";
660         $cmd .= " -U$dcvars->{USERNAME}\%$dcvars->{PASSWORD}";
661
662         if (system($cmd) != 0) {
663             warn("Join failed\n$cmd");
664             return undef;
665         }
666
667         # We need world access to this share, as otherwise the domain
668         # administrator from the AD domain provided by Samba4 can't
669         # access the share for tests.
670         chmod 0777, "$prefix/share";
671
672         if (not $self->check_or_start($ret, "yes", "yes", "yes")) {
673                 return undef;
674         }
675
676         $ret->{DC_SERVER} = $dcvars->{SERVER};
677         $ret->{DC_SERVER_IP} = $dcvars->{SERVER_IP};
678         $ret->{DC_SERVER_IPV6} = $dcvars->{SERVER_IPV6};
679         $ret->{DC_NETBIOSNAME} = $dcvars->{NETBIOSNAME};
680         $ret->{DC_USERNAME} = $dcvars->{USERNAME};
681         $ret->{DC_PASSWORD} = $dcvars->{PASSWORD};
682
683         return $ret;
684 }
685
686 sub setup_ad_member_idmap_ad
687 {
688         my ($self, $prefix, $dcvars) = @_;
689
690         # If we didn't build with ADS, pretend this env was never available
691         if (not $self->have_ads()) {
692                 return "UNKNOWN";
693         }
694
695         print "PROVISIONING S3 AD MEMBER WITH idmap_ad config...";
696
697         my $member_options = "
698         security = ads
699         workgroup = $dcvars->{DOMAIN}
700         realm = $dcvars->{REALM}
701         password server = $dcvars->{SERVER}
702         idmap config * : backend = tdb
703         idmap config * : range = 1000000-1999999
704         idmap config $dcvars->{DOMAIN} : backend = ad
705         idmap config $dcvars->{DOMAIN} : range = 2000000-2999999
706         idmap config $dcvars->{TRUST_DOMAIN} : backend = ad
707         idmap config $dcvars->{TRUST_DOMAIN} : range = 2000000-2999999
708 ";
709
710         my $ret = $self->provision($prefix, $dcvars->{DOMAIN},
711                                    "IDMAPADMEMBER",
712                                    "loCalMemberPass",
713                                    $member_options,
714                                    $dcvars->{SERVER_IP},
715                                    $dcvars->{SERVER_IPV6});
716
717         $ret or return undef;
718
719         close(USERMAP);
720         $ret->{DOMAIN} = $dcvars->{DOMAIN};
721         $ret->{REALM} = $dcvars->{REALM};
722         $ret->{DOMSID} = $dcvars->{DOMSID};
723
724         my $ctx;
725         my $prefix_abs = abs_path($prefix);
726         $ctx = {};
727         $ctx->{krb5_conf} = "$prefix_abs/lib/krb5.conf";
728         $ctx->{domain} = $dcvars->{DOMAIN};
729         $ctx->{realm} = $dcvars->{REALM};
730         $ctx->{dnsname} = lc($dcvars->{REALM});
731         $ctx->{kdc_ipv4} = $dcvars->{SERVER_IP};
732         $ctx->{kdc_ipv6} = $dcvars->{SERVER_IPV6};
733         $ctx->{krb5_ccname} = "$prefix_abs/krb5cc_%{uid}";
734         Samba::mk_krb5_conf($ctx, "");
735
736         $ret->{KRB5_CONFIG} = $ctx->{krb5_conf};
737         $ret->{RESOLV_CONF} = $dcvars->{RESOLV_CONF};
738
739         my $net = Samba::bindir_path($self, "net");
740         # Add hosts file for name lookups
741         my $cmd = "NSS_WRAPPER_HOSTS='$ret->{NSS_WRAPPER_HOSTS}' ";
742         $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
743         if (defined($ret->{RESOLV_WRAPPER_CONF})) {
744                 $cmd .= "RESOLV_WRAPPER_CONF=\"$ret->{RESOLV_WRAPPER_CONF}\" ";
745         } else {
746                 $cmd .= "RESOLV_WRAPPER_HOSTS=\"$ret->{RESOLV_WRAPPER_HOSTS}\" ";
747         }
748         $cmd .= "KRB5_CONFIG=\"$ret->{KRB5_CONFIG}\" ";
749         $cmd .= "SELFTEST_WINBINDD_SOCKET_DIR=\"$ret->{SELFTEST_WINBINDD_SOCKET_DIR}\" ";
750         $cmd .= "$net join $ret->{CONFIGURATION}";
751         $cmd .= " -U$dcvars->{USERNAME}\%$dcvars->{PASSWORD}";
752
753         if (system($cmd) != 0) {
754             warn("Join failed\n$cmd");
755             return undef;
756         }
757
758         # We need world access to this share, as otherwise the domain
759         # administrator from the AD domain provided by Samba4 can't
760         # access the share for tests.
761         chmod 0777, "$prefix/share";
762
763         if (not $self->check_or_start($ret, "yes", "yes", "yes")) {
764                 return undef;
765         }
766
767         $ret->{DC_SERVER} = $dcvars->{SERVER};
768         $ret->{DC_SERVER_IP} = $dcvars->{SERVER_IP};
769         $ret->{DC_SERVER_IPV6} = $dcvars->{SERVER_IPV6};
770         $ret->{DC_NETBIOSNAME} = $dcvars->{NETBIOSNAME};
771         $ret->{DC_USERNAME} = $dcvars->{USERNAME};
772         $ret->{DC_PASSWORD} = $dcvars->{PASSWORD};
773
774         $ret->{TRUST_SERVER} = $dcvars->{TRUST_SERVER};
775         $ret->{TRUST_USERNAME} = $dcvars->{TRUST_USERNAME};
776         $ret->{TRUST_PASSWORD} = $dcvars->{TRUST_PASSWORD};
777         $ret->{TRUST_DOMAIN} = $dcvars->{TRUST_DOMAIN};
778         $ret->{TRUST_REALM} = $dcvars->{TRUST_REALM};
779         $ret->{TRUST_DOMSID} = $dcvars->{TRUST_DOMSID};
780
781         return $ret;
782 }
783
784 sub setup_simpleserver
785 {
786         my ($self, $path) = @_;
787
788         print "PROVISIONING simple server...";
789
790         my $prefix_abs = abs_path($path);
791
792         my $simpleserver_options = "
793         lanman auth = yes
794         ntlm auth = yes
795         vfs objects = xattr_tdb streams_depot
796         change notify = no
797         smb encrypt = off
798
799 [vfs_aio_pthread]
800         path = $prefix_abs/share
801         read only = no
802         vfs objects = aio_pthread
803         aio_pthread:aio open = yes
804         smbd:async dosmode = no
805
806 [vfs_aio_pthread_async_dosmode_default1]
807         path = $prefix_abs/share
808         read only = no
809         vfs objects = aio_pthread
810         store dos attributes = yes
811         aio_pthread:aio open = yes
812         smbd:async dosmode = yes
813
814 [vfs_aio_pthread_async_dosmode_default2]
815         path = $prefix_abs/share
816         read only = no
817         vfs objects = aio_pthread xattr_tdb
818         store dos attributes = yes
819         aio_pthread:aio open = yes
820         smbd:async dosmode = yes
821
822 [vfs_aio_pthread_async_dosmode_force_sync1]
823         path = $prefix_abs/share
824         read only = no
825         vfs objects = aio_pthread
826         store dos attributes = yes
827         aio_pthread:aio open = yes
828         smbd:async dosmode = yes
829         # This simulates non linux systems
830         smbd:force sync user path safe threadpool = yes
831         smbd:force sync user chdir safe threadpool = yes
832         smbd:force sync root path safe threadpool = yes
833         smbd:force sync root chdir safe threadpool = yes
834
835 [vfs_aio_pthread_async_dosmode_force_sync2]
836         path = $prefix_abs/share
837         read only = no
838         vfs objects = aio_pthread xattr_tdb
839         store dos attributes = yes
840         aio_pthread:aio open = yes
841         smbd:async dosmode = yes
842         # This simulates non linux systems
843         smbd:force sync user path safe threadpool = yes
844         smbd:force sync user chdir safe threadpool = yes
845         smbd:force sync root path safe threadpool = yes
846         smbd:force sync root chdir safe threadpool = yes
847
848 [vfs_aio_fork]
849         path = $prefix_abs/share
850         vfs objects = aio_fork
851         read only = no
852         vfs_aio_fork:erratic_testing_mode=yes
853
854 [dosmode]
855         path = $prefix_abs/share
856         vfs objects =
857         store dos attributes = yes
858         hide files = /hidefile/
859         hide dot files = yes
860
861 [enc_desired]
862         path = $prefix_abs/share
863         vfs objects =
864         smb encrypt = desired
865
866 [hidenewfiles]
867         path = $prefix_abs/share
868         hide new files timeout = 5
869 ";
870
871         my $vars = $self->provision($path, "WORKGROUP",
872                                     "LOCALSHARE4",
873                                     "local4pass",
874                                     $simpleserver_options);
875
876         $vars or return undef;
877
878         if (not $self->check_or_start($vars, "yes", "no", "yes")) {
879                return undef;
880         }
881
882         return $vars;
883 }
884
885 sub setup_fileserver
886 {
887         my ($self, $path) = @_;
888         my $prefix_abs = abs_path($path);
889         my $srcdir_abs = abs_path($self->{srcdir});
890
891         print "PROVISIONING file server ...\n";
892
893         my @dirs = ();
894
895         mkdir($prefix_abs, 0777);
896
897         my $usershare_dir="$prefix_abs/lib/usershare";
898
899         mkdir("$prefix_abs/lib", 0755);
900         remove_tree($usershare_dir);
901         mkdir($usershare_dir, 01770);
902
903         my $share_dir="$prefix_abs/share";
904
905         # Create share directory structure
906         my $lower_case_share_dir="$share_dir/lower-case";
907         push(@dirs, $lower_case_share_dir);
908
909         my $lower_case_share_dir_30000="$share_dir/lower-case-30000";
910         push(@dirs, $lower_case_share_dir_30000);
911
912         my $dfree_share_dir="$share_dir/dfree";
913         push(@dirs, $dfree_share_dir);
914         push(@dirs, "$dfree_share_dir/subdir1");
915         push(@dirs, "$dfree_share_dir/subdir2");
916         push(@dirs, "$dfree_share_dir/subdir3");
917
918         my $quotadir_dir="$share_dir/quota";
919         push(@dirs, $quotadir_dir);
920
921         my $valid_users_sharedir="$share_dir/valid_users";
922         push(@dirs,$valid_users_sharedir);
923
924         my $offline_sharedir="$share_dir/offline";
925         push(@dirs,$offline_sharedir);
926
927         my $force_user_valid_users_dir = "$share_dir/force_user_valid_users";
928         push(@dirs, $force_user_valid_users_dir);
929
930         my $smbget_sharedir="$share_dir/smbget";
931         push(@dirs,$smbget_sharedir);
932
933         my $tarmode_sharedir="$share_dir/tarmode";
934         push(@dirs,$tarmode_sharedir);
935
936         my $usershare_sharedir="$share_dir/usershares";
937         push(@dirs,$usershare_sharedir);
938
939         my $fileserver_options = "
940         kernel change notify = yes
941
942         usershare path = $usershare_dir
943         usershare max shares = 10
944         usershare allow guests = yes
945         usershare prefix allow list = $usershare_sharedir
946
947         get quota command = $prefix_abs/getset_quota.py
948         set quota command = $prefix_abs/getset_quota.py
949 [lowercase]
950         path = $lower_case_share_dir
951         comment = smb username is [%U]
952         case sensitive = True
953         default case = lower
954         preserve case = no
955         short preserve case = no
956 [lowercase-30000]
957         path = $lower_case_share_dir_30000
958         comment = smb username is [%U]
959         case sensitive = True
960         default case = lower
961         preserve case = no
962         short preserve case = no
963 [dfree]
964         path = $dfree_share_dir
965         comment = smb username is [%U]
966         dfree command = $srcdir_abs/testprogs/blackbox/dfree.sh
967 [valid-users-access]
968         path = $valid_users_sharedir
969         valid users = +userdup
970 [offline]
971         path = $offline_sharedir
972         vfs objects = offline
973
974 # BUG: https://bugzilla.samba.org/show_bug.cgi?id=9878
975 # RH BUG: https://bugzilla.redhat.com/show_bug.cgi?id=1077651
976 [force_user_valid_users]
977         path = $force_user_valid_users_dir
978         comment = force user with valid users combination test share
979         valid users = +force_user
980         force user = force_user
981         force group = everyone
982         write list = force_user
983
984 [smbget]
985         path = $smbget_sharedir
986         comment = smb username is [%U]
987         guest ok = yes
988 [ign_sysacls]
989         path = $share_dir
990         comment = ignore system acls
991         acl_xattr:ignore system acls = yes
992 [inherit_owner]
993         path = $share_dir
994         comment = inherit owner
995         inherit owner = yes
996 [inherit_owner_u]
997         path = $share_dir
998         comment = inherit only unix owner
999         inherit owner = unix only
1000         acl_xattr:ignore system acls = yes
1001 # BUG: https://bugzilla.samba.org/show_bug.cgi?id=13690
1002 [force_group_test]
1003         path = $share_dir
1004         comment = force group test
1005 #       force group = everyone
1006 [homes]
1007         comment = Home directories
1008         browseable = No
1009         read only = No
1010 ";
1011
1012         my $vars = $self->provision($path, "WORKGROUP",
1013                                     "FILESERVER",
1014                                     "fileserver",
1015                                     $fileserver_options,
1016                                     undef,
1017                                     undef,
1018                                     1);
1019
1020         $vars or return undef;
1021
1022         if (not $self->check_or_start($vars, "yes", "no", "yes")) {
1023                return undef;
1024         }
1025
1026
1027         mkdir($_, 0777) foreach(@dirs);
1028
1029         ## Create case sensitive lower case share dir
1030         foreach my $file ('a'..'z') {
1031                 my $full_path = $lower_case_share_dir . '/' . $file;
1032                 open my $fh, '>', $full_path;
1033                 # Add some content to file
1034                 print $fh $full_path;
1035                 close $fh;
1036         }
1037
1038         for (my $file = 1; $file < 51; ++$file) {
1039                 my $full_path = $lower_case_share_dir . '/' . $file;
1040                 open my $fh, '>', $full_path;
1041                 # Add some content to file
1042                 print $fh $full_path;
1043                 close $fh;
1044         }
1045
1046         # Create content for 30000 share
1047         foreach my $file ('a'..'z') {
1048                 my $full_path = $lower_case_share_dir_30000 . '/' . $file;
1049                 open my $fh, '>', $full_path;
1050                 # Add some content to file
1051                 print $fh $full_path;
1052                 close $fh;
1053         }
1054
1055         for (my $file = 1; $file < 30001; ++$file) {
1056                 my $full_path = $lower_case_share_dir_30000 . '/' . $file;
1057                 open my $fh, '>', $full_path;
1058                 # Add some content to file
1059                 print $fh $full_path;
1060                 close $fh;
1061         }
1062
1063         ##
1064         ## create a listable file in valid_users_share
1065         ##
1066         my $valid_users_target = "$valid_users_sharedir/foo";
1067         unless (open(VALID_USERS_TARGET, ">$valid_users_target")) {
1068                 warn("Unable to open $valid_users_target");
1069                 return undef;
1070         }
1071         close(VALID_USERS_TARGET);
1072         chmod 0644, $valid_users_target;
1073
1074         return $vars;
1075 }
1076
1077 sub setup_ktest
1078 {
1079         my ($self, $prefix) = @_;
1080
1081         # If we didn't build with ADS, pretend this env was never available
1082         if (not $self->have_ads()) {
1083                 return "UNKNOWN";
1084         }
1085
1086         print "PROVISIONING server with security=ads...";
1087
1088         my $ktest_options = "
1089         workgroup = KTEST
1090         realm = ktest.samba.example.com
1091         security = ads
1092         username map = $prefix/lib/username.map
1093         server signing = required
1094         server min protocol = SMB3_00
1095         client max protocol = SMB3
1096
1097         # This disables NTLM auth against the local SAM, which
1098         # we use can then test this setting by.
1099         ntlm auth = disabled
1100 ";
1101
1102         my $ret = $self->provision($prefix, "KTEST",
1103                                    "LOCALKTEST6",
1104                                    "localktest6pass",
1105                                    $ktest_options);
1106
1107         $ret or return undef;
1108
1109         my $ctx;
1110         my $prefix_abs = abs_path($prefix);
1111         $ctx = {};
1112         $ctx->{krb5_conf} = "$prefix_abs/lib/krb5.conf";
1113         $ctx->{domain} = "KTEST";
1114         $ctx->{realm} = "KTEST.SAMBA.EXAMPLE.COM";
1115         $ctx->{dnsname} = lc($ctx->{realm});
1116         $ctx->{kdc_ipv4} = "0.0.0.0";
1117         $ctx->{kdc_ipv6} = "::";
1118         $ctx->{krb5_ccname} = "$prefix_abs/krb5cc_%{uid}";
1119         Samba::mk_krb5_conf($ctx, "");
1120
1121         $ret->{KRB5_CONFIG} = $ctx->{krb5_conf};
1122
1123         open(USERMAP, ">$prefix/lib/username.map") or die("Unable to open $prefix/lib/username.map");
1124         print USERMAP "
1125 $ret->{USERNAME} = KTEST\\Administrator
1126 ";
1127         close(USERMAP);
1128
1129 #This is the secrets.tdb created by 'net ads join' from Samba3 to a
1130 #Samba4 DC with the same parameters as are being used here.  The
1131 #domain SID is S-1-5-21-1071277805-689288055-3486227160
1132         $ret->{SAMSID} = "S-1-5-21-1911091480-1468226576-2729736297";
1133         $ret->{DOMSID} = "S-1-5-21-1071277805-689288055-3486227160";
1134
1135         system("cp $self->{srcdir}/source3/selftest/ktest-secrets.tdb $prefix/private/secrets.tdb");
1136         chmod 0600, "$prefix/private/secrets.tdb";
1137
1138 #Make sure there's no old ntdb file.
1139         system("rm -f $prefix/private/secrets.ntdb");
1140
1141 #This uses a pre-calculated krb5 credentials cache, obtained by running Samba4 with:
1142 # "--option=kdc:service ticket lifetime=239232" "--option=kdc:user ticket lifetime=239232" "--option=kdc:renewal lifetime=239232"
1143 #
1144 #and having in krb5.conf:
1145 # ticket_lifetime = 799718400
1146 # renew_lifetime = 799718400
1147 #
1148 # The commands for the -2 keytab where were:
1149 # kinit administrator@KTEST.SAMBA.EXAMPLE.COM
1150 # kvno host/localktest6@KTEST.SAMBA.EXAMPLE.COM
1151 # kvno cifs/localktest6@KTEST.SAMBA.EXAMPLE.COM
1152 # kvno host/LOCALKTEST6@KTEST.SAMBA.EXAMPLE.COM
1153 # kvno cifs/LOCALKTEST6@KTEST.SAMBA.EXAMPLE.COM
1154 #
1155 # and then for the -3 keytab, I did
1156 #
1157 # net changetrustpw; kdestroy and the same again.
1158 #
1159 # This creates a credential cache with a very long lifetime (2036 at
1160 # at 2011-04), and shows that running 'net changetrustpw' does not
1161 # break existing logins (for the secrets.tdb method at least).
1162 #
1163
1164         $ret->{KRB5_CCACHE}="FILE:$prefix/krb5_ccache";
1165
1166         system("cp $self->{srcdir}/source3/selftest/ktest-krb5_ccache-2 $prefix/krb5_ccache-2");
1167         chmod 0600, "$prefix/krb5_ccache-2";
1168
1169         system("cp $self->{srcdir}/source3/selftest/ktest-krb5_ccache-3 $prefix/krb5_ccache-3");
1170         chmod 0600, "$prefix/krb5_ccache-3";
1171
1172         # We need world access to this share, as otherwise the domain
1173         # administrator from the AD domain provided by ktest can't
1174         # access the share for tests.
1175         chmod 0777, "$prefix/share";
1176
1177         if (not $self->check_or_start($ret, "yes", "no", "yes")) {
1178                return undef;
1179         }
1180         return $ret;
1181 }
1182
1183 sub setup_maptoguest
1184 {
1185         my ($self, $path) = @_;
1186
1187         print "PROVISIONING maptoguest...";
1188
1189         my $options = "
1190 map to guest = bad user
1191 ntlm auth = yes
1192 ";
1193
1194         my $vars = $self->provision($path, "WORKGROUP",
1195                                     "maptoguest",
1196                                     "maptoguestpass",
1197                                     $options);
1198
1199         $vars or return undef;
1200
1201         if (not $self->check_or_start($vars, "yes", "no", "yes")) {
1202                return undef;
1203         }
1204
1205         return $vars;
1206 }
1207
1208 sub stop_sig_term($$) {
1209         my ($self, $pid) = @_;
1210         kill("USR1", $pid) or kill("ALRM", $pid) or warn("Unable to kill $pid: $!");
1211 }
1212
1213 sub stop_sig_kill($$) {
1214         my ($self, $pid) = @_;
1215         kill("ALRM", $pid) or warn("Unable to kill $pid: $!");
1216 }
1217
1218 sub write_pid($$$)
1219 {
1220         my ($env_vars, $app, $pid) = @_;
1221
1222         open(PID, ">$env_vars->{PIDDIR}/timelimit.$app.pid");
1223         print PID $pid;
1224         close(PID);
1225 }
1226
1227 sub read_pid($$)
1228 {
1229         my ($env_vars, $app) = @_;
1230
1231         open(PID, "<$env_vars->{PIDDIR}/timelimit.$app.pid");
1232         my $pid = <PID>;
1233         close(PID);
1234         return $pid;
1235 }
1236
1237 # builds up the cmd args to run an s3 binary (i.e. smbd, nmbd, etc)
1238 sub make_bin_cmd
1239 {
1240         my ($self, $binary, $env_vars, $options, $valgrind, $dont_log_stdout) = @_;
1241
1242         my @optargs = ("-d0");
1243         if (defined($options)) {
1244                 @optargs = split(/ /, $options);
1245         }
1246         my @preargs = (Samba::bindir_path($self, "timelimit"), $self->{server_maxtime});
1247
1248         if (defined($valgrind)) {
1249                 @preargs = split(/ /, $valgrind);
1250         }
1251         my @args = ("-F", "--no-process-group",
1252                     "-s", $env_vars->{SERVERCONFFILE},
1253                     "-l", $env_vars->{LOGDIR});
1254
1255         if (not defined($dont_log_stdout)) {
1256                 push(@args, "--log-stdout");
1257         }
1258         return (@preargs, $binary, @args, @optargs);
1259 }
1260
1261 sub check_or_start($$$$$) {
1262         my ($self, $env_vars, $nmbd, $winbindd, $smbd) = @_;
1263         my $STDIN_READER;
1264
1265         # use a pipe for stdin in the child processes. This allows
1266         # those processes to monitor the pipe for EOF to ensure they
1267         # exit when the test script exits
1268         pipe($STDIN_READER, $env_vars->{STDIN_PIPE});
1269
1270         my $binary = Samba::bindir_path($self, "nmbd");
1271         my @full_cmd = $self->make_bin_cmd($binary, $env_vars,
1272                                            $ENV{NMBD_OPTIONS}, $ENV{NMBD_VALGRIND},
1273                                            $ENV{NMBD_DONT_LOG_STDOUT});
1274         my $nmbd_envs = Samba::get_env_for_process("nmbd", $env_vars);
1275         delete $nmbd_envs->{RESOLV_WRAPPER_CONF};
1276         delete $nmbd_envs->{RESOLV_WRAPPER_HOSTS};
1277
1278         # fork and exec() nmbd in the child process
1279         my $daemon_ctx = {
1280                 NAME => "nmbd",
1281                 BINARY_PATH => $binary,
1282                 FULL_CMD => [ @full_cmd ],
1283                 LOG_FILE => $env_vars->{NMBD_TEST_LOG},
1284                 ENV_VARS => $nmbd_envs,
1285         };
1286         if ($nmbd ne "yes") {
1287                 $daemon_ctx->{SKIP_DAEMON} = 1;
1288         }
1289         my $pid = Samba::fork_and_exec($self, $env_vars, $daemon_ctx, $STDIN_READER);
1290
1291         $env_vars->{NMBD_TL_PID} = $pid;
1292         write_pid($env_vars, "nmbd", $pid);
1293
1294         $binary = Samba::bindir_path($self, "winbindd");
1295         @full_cmd = $self->make_bin_cmd($binary, $env_vars,
1296                                          $ENV{WINBINDD_OPTIONS}, $ENV{WINBINDD_VALGRIND}, "N/A");
1297
1298         if (not defined($ENV{WINBINDD_DONT_LOG_STDOUT})) {
1299                 push(@full_cmd, "--stdout");
1300         }
1301
1302         # fork and exec() winbindd in the child process
1303         $daemon_ctx = {
1304                 NAME => "winbindd",
1305                 BINARY_PATH => $binary,
1306                 FULL_CMD => [ @full_cmd ],
1307                 LOG_FILE => $env_vars->{WINBINDD_TEST_LOG},
1308         };
1309         if ($winbindd ne "yes") {
1310                 $daemon_ctx->{SKIP_DAEMON} = 1;
1311         }
1312         my $pid = Samba::fork_and_exec($self, $env_vars, $daemon_ctx, $STDIN_READER);
1313
1314         $env_vars->{WINBINDD_TL_PID} = $pid;
1315         write_pid($env_vars, "winbindd", $pid);
1316
1317         $binary = Samba::bindir_path($self, "smbd");
1318         @full_cmd = $self->make_bin_cmd($binary, $env_vars,
1319                                          $ENV{SMBD_OPTIONS}, $ENV{SMBD_VALGRIND},
1320                                          $ENV{SMBD_DONT_LOG_STDOUT});
1321
1322         # fork and exec() smbd in the child process
1323         $daemon_ctx = {
1324                 NAME => "smbd",
1325                 BINARY_PATH => $binary,
1326                 FULL_CMD => [ @full_cmd ],
1327                 LOG_FILE => $env_vars->{SMBD_TEST_LOG},
1328         };
1329         if ($smbd ne "yes") {
1330                 $daemon_ctx->{SKIP_DAEMON} = 1;
1331         }
1332
1333         my $pid = Samba::fork_and_exec($self, $env_vars, $daemon_ctx, $STDIN_READER);
1334
1335         $env_vars->{SMBD_TL_PID} = $pid;
1336         write_pid($env_vars, "smbd", $pid);
1337
1338         # close the parent's read-end of the pipe
1339         close(STDIN_READER);
1340
1341         return $self->wait_for_start($env_vars, $nmbd, $winbindd, $smbd);
1342 }
1343
1344 sub createuser($$$$$)
1345 {
1346         my ($self, $username, $password, $conffile, $env) = @_;
1347         my $cmd = "UID_WRAPPER_ROOT=1 " . Samba::bindir_path($self, "smbpasswd")." -c $conffile -L -s -a $username > /dev/null";
1348
1349         keys %$env;
1350         while(my($var, $val) = each %$env) {
1351                 $cmd = "$var=\"$val\" $cmd";
1352         }
1353
1354         unless (open(PWD, "|$cmd")) {
1355             warn("Unable to set password for $username account\n$cmd");
1356             return undef;
1357         }
1358         print PWD "$password\n$password\n";
1359         unless (close(PWD)) {
1360             warn("Unable to set password for $username account\n$cmd");
1361             return undef;
1362         }
1363 }
1364
1365 sub provision($$$$$$$$$)
1366 {
1367         my ($self, $prefix, $domain, $server, $password, $extra_options, $dc_server_ip, $dc_server_ipv6, $no_delete_prefix) = @_;
1368
1369         ##
1370         ## setup the various environment variables we need
1371         ##
1372
1373         my $samsid = Samba::random_domain_sid();
1374         my $swiface = Samba::get_interface($server);
1375         my %ret = ();
1376         my %createuser_env = ();
1377         my $server_ip = Samba::get_ipv4_addr($server);
1378         my $server_ipv6 = Samba::get_ipv6_addr($server);
1379
1380         my $unix_name = ($ENV{USER} or $ENV{LOGNAME} or `PATH=/usr/ucb:$ENV{PATH} whoami`);
1381         chomp $unix_name;
1382         my $unix_uid = $>;
1383         my $unix_gids_str = $);
1384         my @unix_gids = split(" ", $unix_gids_str);
1385
1386         my $prefix_abs = abs_path($prefix);
1387         my $bindir_abs = abs_path($self->{bindir});
1388
1389         my @dirs = ();
1390
1391         my $shrdir="$prefix_abs/share";
1392         push(@dirs,$shrdir);
1393
1394         my $libdir="$prefix_abs/lib";
1395         push(@dirs,$libdir);
1396
1397         my $piddir="$prefix_abs/pid";
1398         push(@dirs,$piddir);
1399
1400         my $privatedir="$prefix_abs/private";
1401         push(@dirs,$privatedir);
1402
1403         my $binddnsdir = "$prefix_abs/bind-dns";
1404         push(@dirs, $binddnsdir);
1405
1406         my $lockdir="$prefix_abs/lockdir";
1407         push(@dirs,$lockdir);
1408
1409         my $eventlogdir="$prefix_abs/lockdir/eventlog";
1410         push(@dirs,$eventlogdir);
1411
1412         my $logdir="$prefix_abs/logs";
1413         push(@dirs,$logdir);
1414
1415         my $driver32dir="$shrdir/W32X86";
1416         push(@dirs,$driver32dir);
1417
1418         my $driver64dir="$shrdir/x64";
1419         push(@dirs,$driver64dir);
1420
1421         my $driver40dir="$shrdir/WIN40";
1422         push(@dirs,$driver40dir);
1423
1424         my $ro_shrdir="$shrdir/root-tmp";
1425         push(@dirs,$ro_shrdir);
1426
1427         my $msdfs_shrdir="$shrdir/msdfsshare";
1428         push(@dirs,$msdfs_shrdir);
1429
1430         my $msdfs_deeppath="$msdfs_shrdir/deeppath";
1431         push(@dirs,$msdfs_deeppath);
1432
1433         my $badnames_shrdir="$shrdir/badnames";
1434         push(@dirs,$badnames_shrdir);
1435
1436         my $lease1_shrdir="$shrdir/SMB2_10";
1437         push(@dirs,$lease1_shrdir);
1438
1439         my $lease2_shrdir="$shrdir/SMB3_00";
1440         push(@dirs,$lease2_shrdir);
1441
1442         my $manglenames_shrdir="$shrdir/manglenames";
1443         push(@dirs,$manglenames_shrdir);
1444
1445         my $widelinks_shrdir="$shrdir/widelinks";
1446         push(@dirs,$widelinks_shrdir);
1447
1448         my $widelinks_linkdir="$shrdir/widelinks_foo";
1449         push(@dirs,$widelinks_linkdir);
1450
1451         my $shadow_tstdir="$shrdir/shadow";
1452         push(@dirs,$shadow_tstdir);
1453         my $shadow_mntdir="$shadow_tstdir/mount";
1454         push(@dirs,$shadow_mntdir);
1455         my $shadow_basedir="$shadow_mntdir/base";
1456         push(@dirs,$shadow_basedir);
1457         my $shadow_shrdir="$shadow_basedir/share";
1458         push(@dirs,$shadow_shrdir);
1459
1460         my $nosymlinks_shrdir="$shrdir/nosymlinks";
1461         push(@dirs,$nosymlinks_shrdir);
1462
1463         my $local_symlinks_shrdir="$shrdir/local_symlinks";
1464         push(@dirs,$local_symlinks_shrdir);
1465
1466         # this gets autocreated by winbindd
1467         my $wbsockdir="$prefix_abs/winbindd";
1468
1469         my $nmbdsockdir="$prefix_abs/nmbd";
1470         unlink($nmbdsockdir);
1471
1472         ## 
1473         ## create the test directory layout
1474         ##
1475         die ("prefix_abs = ''") if $prefix_abs eq "";
1476         die ("prefix_abs = '/'") if $prefix_abs eq "/";
1477
1478         mkdir($prefix_abs, 0777);
1479         print "CREATE TEST ENVIRONMENT IN '$prefix'...";
1480         if (not defined($no_delete_prefix) or not $no_delete_prefix) {
1481             system("rm -rf $prefix_abs/*");
1482         }
1483         mkdir($_, 0777) foreach(@dirs);
1484
1485         my $fs_specific_conf = $self->get_fs_specific_conf($shrdir);
1486
1487         ##
1488         ## lockdir and piddir must be 0755
1489         ##
1490         chmod 0755, $lockdir;
1491         chmod 0755, $piddir;
1492
1493
1494         ##
1495         ## create ro and msdfs share layout
1496         ##
1497
1498         chmod 0755, $ro_shrdir;
1499         my $unreadable_file = "$ro_shrdir/unreadable_file";
1500         unless (open(UNREADABLE_FILE, ">$unreadable_file")) {
1501                 warn("Unable to open $unreadable_file");
1502                 return undef;
1503         }
1504         close(UNREADABLE_FILE);
1505         chmod 0600, $unreadable_file;
1506
1507         my $msdfs_target = "$ro_shrdir/msdfs-target";
1508         unless (open(MSDFS_TARGET, ">$msdfs_target")) {
1509                 warn("Unable to open $msdfs_target");
1510                 return undef;
1511         }
1512         close(MSDFS_TARGET);
1513         chmod 0666, $msdfs_target;
1514         symlink "msdfs:$server_ip\\ro-tmp,$server_ipv6\\ro-tmp",
1515                 "$msdfs_shrdir/msdfs-src1";
1516         symlink "msdfs:$server_ipv6\\ro-tmp", "$msdfs_shrdir/deeppath/msdfs-src2";
1517
1518         ##
1519         ## create bad names in $badnames_shrdir
1520         ##
1521         ## (An invalid name, would be mangled to 8.3).
1522         my $badname_target = "$badnames_shrdir/\340|\231\216\377\177";
1523         unless (open(BADNAME_TARGET, ">$badname_target")) {
1524                 warn("Unable to open $badname_target");
1525                 return undef;
1526         }
1527         close(BADNAME_TARGET);
1528         chmod 0666, $badname_target;
1529
1530         ## (A bad name, would not be mangled to 8.3).
1531         my $badname_target = "$badnames_shrdir/\240\276\346\327\377\177";
1532         unless (open(BADNAME_TARGET, ">$badname_target")) {
1533                 warn("Unable to open $badname_target");
1534                 return undef;
1535         }
1536         close(BADNAME_TARGET);
1537         chmod 0666, $badname_target;
1538
1539         ## (A bad good name).
1540         my $badname_target = "$badnames_shrdir/blank.txt";
1541         unless (open(BADNAME_TARGET, ">$badname_target")) {
1542                 warn("Unable to open $badname_target");
1543                 return undef;
1544         }
1545         close(BADNAME_TARGET);
1546         chmod 0666, $badname_target;
1547
1548         ##
1549         ## create mangleable directory names in $manglenames_shrdir
1550         ##
1551         my $manglename_target = "$manglenames_shrdir/foo:bar";
1552         mkdir($manglename_target, 0777);
1553
1554         ##
1555         ## create symlinks for widelinks tests.
1556         ##
1557         my $widelinks_target = "$widelinks_linkdir/target";
1558         unless (open(WIDELINKS_TARGET, ">$widelinks_target")) {
1559                 warn("Unable to open $widelinks_target");
1560                 return undef;
1561         }
1562         close(WIDELINKS_TARGET);
1563         chmod 0666, $widelinks_target;
1564         ##
1565         ## This link should get ACCESS_DENIED
1566         ##
1567         symlink "$widelinks_target", "$widelinks_shrdir/source";
1568         ##
1569         ## This link should be allowed
1570         ##
1571         symlink "$widelinks_shrdir", "$widelinks_shrdir/dot";
1572
1573         my $conffile="$libdir/server.conf";
1574         my $dfqconffile="$libdir/dfq.conf";
1575         my $errorinjectconf="$libdir/error_inject.conf";
1576         my $delayinjectconf="$libdir/delay_inject.conf";
1577
1578         my $nss_wrapper_pl = "$ENV{PERL} $self->{srcdir}/third_party/nss_wrapper/nss_wrapper.pl";
1579         my $nss_wrapper_passwd = "$privatedir/passwd";
1580         my $nss_wrapper_group = "$privatedir/group";
1581         my $nss_wrapper_hosts = "$ENV{SELFTEST_PREFIX}/hosts";
1582         my $resolv_conf = "$privatedir/resolv.conf";
1583         my $dns_host_file = "$ENV{SELFTEST_PREFIX}/dns_host_file";
1584
1585         my $mod_printer_pl = "$ENV{PERL} $self->{srcdir}/source3/script/tests/printing/modprinter.pl";
1586
1587         my $fake_snap_pl = "$ENV{PERL} $self->{srcdir}/source3/script/tests/fake_snap.pl";
1588
1589         my @eventlog_list = ("dns server", "application");
1590
1591         ##
1592         ## calculate uids and gids
1593         ##
1594
1595         my ($max_uid, $max_gid);
1596         my ($uid_nobody, $uid_root, $uid_pdbtest, $uid_pdbtest2, $uid_userdup);
1597         my ($uid_pdbtest_wkn);
1598         my ($uid_smbget);
1599         my ($uid_force_user);
1600         my ($gid_nobody, $gid_nogroup, $gid_root, $gid_domusers, $gid_domadmins);
1601         my ($gid_userdup, $gid_everyone);
1602         my ($gid_force_user);
1603         my ($uid_user1);
1604         my ($uid_user2);
1605         my ($uid_gooduser);
1606         my ($uid_eviluser);
1607         my ($uid_slashuser);
1608
1609         if ($unix_uid < 0xffff - 13) {
1610                 $max_uid = 0xffff;
1611         } else {
1612                 $max_uid = $unix_uid;
1613         }
1614
1615         $uid_root = $max_uid - 1;
1616         $uid_nobody = $max_uid - 2;
1617         $uid_pdbtest = $max_uid - 3;
1618         $uid_pdbtest2 = $max_uid - 4;
1619         $uid_userdup = $max_uid - 5;
1620         $uid_pdbtest_wkn = $max_uid - 6;
1621         $uid_force_user = $max_uid - 7;
1622         $uid_smbget = $max_uid - 8;
1623         $uid_user1 = $max_uid - 9;
1624         $uid_user2 = $max_uid - 10;
1625         $uid_gooduser = $max_uid - 11;
1626         $uid_eviluser = $max_uid - 12;
1627         $uid_slashuser = $max_uid - 13;
1628
1629         if ($unix_gids[0] < 0xffff - 8) {
1630                 $max_gid = 0xffff;
1631         } else {
1632                 $max_gid = $unix_gids[0];
1633         }
1634
1635         $gid_nobody = $max_gid - 1;
1636         $gid_nogroup = $max_gid - 2;
1637         $gid_root = $max_gid - 3;
1638         $gid_domusers = $max_gid - 4;
1639         $gid_domadmins = $max_gid - 5;
1640         $gid_userdup = $max_gid - 6;
1641         $gid_everyone = $max_gid - 7;
1642         $gid_force_user = $max_gid - 8;
1643
1644         ##
1645         ## create conffile
1646         ##
1647
1648         unless (open(CONF, ">$conffile")) {
1649                 warn("Unable to open $conffile");
1650                 return undef;
1651         }
1652
1653         my $interfaces = Samba::get_interfaces_config($server);
1654
1655         print CONF "
1656 [global]
1657         netbios name = $server
1658         interfaces = $interfaces
1659         bind interfaces only = yes
1660         panic action = cd $self->{srcdir} && $self->{srcdir}/selftest/gdb_backtrace %d %\$(MAKE_TEST_BINARY)
1661         smbd:suicide mode = yes
1662
1663         workgroup = $domain
1664
1665         private dir = $privatedir
1666         binddns dir = $binddnsdir
1667         pid directory = $piddir
1668         lock directory = $lockdir
1669         log file = $logdir/log.\%m
1670         log level = 1
1671         debug pid = yes
1672         max log size = 0
1673
1674         state directory = $lockdir
1675         cache directory = $lockdir
1676
1677         passdb backend = tdbsam
1678
1679         time server = yes
1680
1681         add user script =               $nss_wrapper_pl --passwd_path $nss_wrapper_passwd --type passwd --action add --name %u --gid $gid_nogroup
1682         add group script =              $nss_wrapper_pl --group_path  $nss_wrapper_group  --type group  --action add --name %g
1683         add machine script =            $nss_wrapper_pl --passwd_path $nss_wrapper_passwd --type passwd --action add --name %u --gid $gid_nogroup
1684         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
1685         delete user script =            $nss_wrapper_pl --passwd_path $nss_wrapper_passwd --type passwd --action delete --name %u
1686         delete group script =           $nss_wrapper_pl --group_path  $nss_wrapper_group  --type group  --action delete --name %g
1687         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
1688
1689         addprinter command =            $mod_printer_pl -a -s $conffile --
1690         deleteprinter command =         $mod_printer_pl -d -s $conffile --
1691
1692         eventlog list = application \"dns server\"
1693
1694         kernel oplocks = no
1695         kernel change notify = no
1696
1697         logging = file
1698         printing = bsd
1699         printcap name = /dev/null
1700
1701         winbindd socket directory = $wbsockdir
1702         nmbd:socket dir = $nmbdsockdir
1703         idmap config * : range = 100000-200000
1704         winbind enum users = yes
1705         winbind enum groups = yes
1706         winbind separator = /
1707         include system krb5 conf = no
1708
1709 #       min receivefile size = 4000
1710
1711         read only = no
1712
1713         smbd:sharedelay = 100000
1714         smbd:writetimeupdatedelay = 500000
1715         map hidden = no
1716         map system = no
1717         map readonly = no
1718         store dos attributes = yes
1719         create mask = 755
1720         dos filemode = yes
1721         strict rename = yes
1722         strict sync = yes
1723         vfs objects = acl_xattr fake_acls xattr_tdb streams_depot time_audit full_audit
1724
1725         full_audit:syslog = no
1726         full_audit:success = none
1727         full_audit:failure = none
1728
1729         printing = vlp
1730         print command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb print %p %s
1731         lpq command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lpq %p
1732         lp rm command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lprm %p %j
1733         lp pause command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lppause %p %j
1734         lp resume command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lpresume %p %j
1735         queue pause command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb queuepause %p
1736         queue resume command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb queueresume %p
1737         lpq cache time = 0
1738         print notify backchannel = yes
1739
1740         ncalrpc dir = $prefix_abs/ncalrpc
1741
1742         # The samba3.blackbox.smbclient_s3 test uses this to test that
1743         # sending messages works, and that the %m sub works.
1744         message command = mv %s $shrdir/message.%m
1745
1746         # fsrvp server requires registry shares
1747         registry shares = yes
1748
1749         # Used by RPC SRVSVC tests
1750         add share command = $bindir_abs/smbaddshare
1751         change share command = $bindir_abs/smbchangeshare
1752         delete share command = $bindir_abs/smbdeleteshare
1753
1754         # fruit:copyfile is a global option
1755         fruit:copyfile = yes
1756
1757         #this does not mean that we use non-secure test env,
1758         #it just means we ALLOW one to be configured.
1759         allow insecure wide links = yes
1760
1761         # Begin extra options
1762         $extra_options
1763         # End extra options
1764
1765         #Include user defined custom parameters if set
1766 ";
1767
1768         if (defined($ENV{INCLUDE_CUSTOM_CONF})) {
1769                 print CONF "\t$ENV{INCLUDE_CUSTOM_CONF}\n";
1770         }
1771
1772         print CONF "
1773 [tmp]
1774         path = $shrdir
1775         comment = smb username is [%U]
1776 [tmpsort]
1777         path = $shrdir
1778         comment = Load dirsort module
1779         vfs objects = dirsort acl_xattr fake_acls xattr_tdb streams_depot
1780 [tmpenc]
1781         path = $shrdir
1782         comment = encrypt smb username is [%U]
1783         smb encrypt = required
1784         vfs objects = dirsort
1785 [tmpguest]
1786         path = $shrdir
1787         guest ok = yes
1788 [guestonly]
1789         path = $shrdir
1790         guest only = yes
1791         guest ok = yes
1792 [forceuser]
1793         path = $shrdir
1794         force user = $unix_name
1795         guest ok = yes
1796 [forceuser_unixonly]
1797         comment = force a user with unix user SID and group SID
1798         path = $shrdir
1799         force user = pdbtest
1800         guest ok = yes
1801 [forceuser_wkngroup]
1802         comment = force a user with well-known group SID
1803         path = $shrdir
1804         force user = pdbtest_wkn
1805         guest ok = yes
1806 [forcegroup]
1807         path = $shrdir
1808         force group = nogroup
1809         guest ok = yes
1810 [ro-tmp]
1811         path = $ro_shrdir
1812         guest ok = yes
1813 [write-list-tmp]
1814         path = $shrdir
1815         read only = yes
1816         write list = $unix_name
1817 [valid-users-tmp]
1818         path = $shrdir
1819         valid users = $unix_name
1820         access based share enum = yes
1821 [msdfs-share]
1822         path = $msdfs_shrdir
1823         msdfs root = yes
1824         msdfs shuffle referrals = yes
1825         guest ok = yes
1826 [hideunread]
1827         copy = tmp
1828         hide unreadable = yes
1829 [tmpcase]
1830         copy = tmp
1831         case sensitive = yes
1832 [hideunwrite]
1833         copy = tmp
1834         hide unwriteable files = yes
1835 [durable]
1836         copy = tmp
1837         kernel share modes = no
1838         kernel oplocks = no
1839         posix locking = no
1840 [fs_specific]
1841         copy = tmp
1842         $fs_specific_conf
1843 [print1]
1844         copy = tmp
1845         printable = yes
1846
1847 [print2]
1848         copy = print1
1849 [print3]
1850         copy = print1
1851         default devmode = no
1852 [lp]
1853         copy = print1
1854
1855 [nfs4acl_simple_40]
1856         path = $shrdir
1857         comment = smb username is [%U]
1858         nfs4:mode = simple
1859         nfs4acl_xattr:version = 40
1860         vfs objects = nfs4acl_xattr xattr_tdb
1861
1862 [nfs4acl_special_40]
1863         path = $shrdir
1864         comment = smb username is [%U]
1865         nfs4:mode = special
1866         nfs4acl_xattr:version = 40
1867         vfs objects = nfs4acl_xattr xattr_tdb
1868
1869 [nfs4acl_simple_41]
1870         path = $shrdir
1871         comment = smb username is [%U]
1872         nfs4:mode = simple
1873         vfs objects = nfs4acl_xattr xattr_tdb
1874
1875 [nfs4acl_xdr_40]
1876         path = $shrdir
1877         comment = smb username is [%U]
1878         vfs objects = nfs4acl_xattr xattr_tdb
1879         nfs4:mode = simple
1880         nfs4acl_xattr:encoding = xdr
1881         nfs4acl_xattr:version = 40
1882
1883 [nfs4acl_xdr_41]
1884         path = $shrdir
1885         comment = smb username is [%U]
1886         vfs objects = nfs4acl_xattr xattr_tdb
1887         nfs4:mode = simple
1888         nfs4acl_xattr:encoding = xdr
1889         nfs4acl_xattr:version = 41
1890
1891 [nfs4acl_nfs_40]
1892         path = $shrdir
1893         comment = smb username is [%U]
1894         vfs objects = nfs4acl_xattr xattr_tdb
1895         nfs4:mode = simple
1896         nfs4acl_xattr:encoding = nfs
1897         nfs4acl_xattr:version = 40
1898         nfs4acl_xattr:xattr_name = security.nfs4acl_xdr
1899
1900 [nfs4acl_nfs_41]
1901         path = $shrdir
1902         comment = smb username is [%U]
1903         vfs objects = nfs4acl_xattr xattr_tdb
1904         nfs4:mode = simple
1905         nfs4acl_xattr:encoding = nfs
1906         nfs4acl_xattr:version = 41
1907         nfs4acl_xattr:xattr_name = security.nfs4acl_xdr
1908
1909 [xcopy_share]
1910         path = $shrdir
1911         comment = smb username is [%U]
1912         create mask = 777
1913         force create mode = 777
1914 [posix_share]
1915         path = $shrdir
1916         comment = smb username is [%U]
1917         create mask = 0777
1918         force create mode = 0
1919         directory mask = 0777
1920         force directory mode = 0
1921         vfs objects = xattr_tdb streams_depot
1922 [aio]
1923         copy = tmp
1924         aio read size = 1
1925         aio write size = 1
1926
1927 [print\$]
1928         copy = tmp
1929
1930 [vfs_fruit]
1931         path = $shrdir
1932         vfs objects = catia fruit streams_xattr acl_xattr xattr_tdb
1933         fruit:resource = file
1934         fruit:metadata = netatalk
1935         fruit:locking = netatalk
1936         fruit:encoding = native
1937         fruit:veto_appledouble = no
1938
1939 [vfs_fruit_xattr]
1940         path = $shrdir
1941         # This is used by vfs.fruit tests that require real fs xattr
1942         vfs objects = catia fruit streams_xattr acl_xattr
1943         fruit:resource = file
1944         fruit:metadata = netatalk
1945         fruit:locking = netatalk
1946         fruit:encoding = native
1947         fruit:veto_appledouble = no
1948
1949 [vfs_fruit_metadata_stream]
1950         path = $shrdir
1951         vfs objects = fruit streams_xattr acl_xattr xattr_tdb
1952         fruit:resource = file
1953         fruit:metadata = stream
1954         fruit:veto_appledouble = no
1955
1956 [vfs_fruit_stream_depot]
1957         path = $shrdir
1958         vfs objects = fruit streams_depot acl_xattr xattr_tdb
1959         fruit:resource = stream
1960         fruit:metadata = stream
1961         fruit:veto_appledouble = no
1962
1963 [vfs_wo_fruit]
1964         path = $shrdir
1965         vfs objects = streams_xattr acl_xattr xattr_tdb
1966
1967 [vfs_wo_fruit_stream_depot]
1968         path = $shrdir
1969         vfs objects = streams_depot acl_xattr xattr_tdb
1970
1971 [vfs_fruit_timemachine]
1972         path = $shrdir
1973         vfs objects = fruit streams_xattr acl_xattr xattr_tdb
1974         fruit:resource = file
1975         fruit:metadata = stream
1976         fruit:time machine = yes
1977         fruit:time machine max size = 32K
1978
1979 [vfs_fruit_wipe_intentionally_left_blank_rfork]
1980         path = $shrdir
1981         vfs objects = fruit streams_xattr acl_xattr xattr_tdb
1982         fruit:resource = file
1983         fruit:metadata = stream
1984         fruit:wipe_intentionally_left_blank_rfork = true
1985         fruit:delete_empty_adfiles = false
1986         fruit:veto_appledouble = no
1987
1988 [vfs_fruit_delete_empty_adfiles]
1989         path = $shrdir
1990         vfs objects = fruit streams_xattr acl_xattr xattr_tdb
1991         fruit:resource = file
1992         fruit:metadata = stream
1993         fruit:wipe_intentionally_left_blank_rfork = true
1994         fruit:delete_empty_adfiles = true
1995         fruit:veto_appledouble = no
1996
1997 [badname-tmp]
1998         path = $badnames_shrdir
1999         guest ok = yes
2000
2001 [manglenames_share]
2002         path = $manglenames_shrdir
2003         guest ok = yes
2004
2005 [dynamic_share]
2006         path = $shrdir/%R
2007         guest ok = yes
2008
2009 [widelinks_share]
2010         path = $widelinks_shrdir
2011         wide links = no
2012         guest ok = yes
2013
2014 [fsrvp_share]
2015         path = $shrdir
2016         comment = fake shapshots using rsync
2017         vfs objects = shell_snap shadow_copy2
2018         shell_snap:check path command = $fake_snap_pl --check
2019         shell_snap:create command = $fake_snap_pl --create
2020         shell_snap:delete command = $fake_snap_pl --delete
2021         # a relative path here fails, the snapshot dir is no longer found
2022         shadow:snapdir = $shrdir/.snapshots
2023
2024 [shadow1]
2025         path = $shadow_shrdir
2026         comment = previous versions snapshots under mount point
2027         vfs objects = shadow_copy2
2028         shadow:mountpoint = $shadow_mntdir
2029
2030 [shadow2]
2031         path = $shadow_shrdir
2032         comment = previous versions snapshots outside mount point
2033         vfs objects = shadow_copy2
2034         shadow:mountpoint = $shadow_mntdir
2035         shadow:snapdir = $shadow_tstdir/.snapshots
2036
2037 [shadow3]
2038         path = $shadow_shrdir
2039         comment = previous versions with subvolume snapshots, snapshots under base dir
2040         vfs objects = shadow_copy2
2041         shadow:mountpoint = $shadow_mntdir
2042         shadow:basedir = $shadow_basedir
2043         shadow:snapdir = $shadow_basedir/.snapshots
2044
2045 [shadow4]
2046         path = $shadow_shrdir
2047         comment = previous versions with subvolume snapshots, snapshots outside mount point
2048         vfs objects = shadow_copy2
2049         shadow:mountpoint = $shadow_mntdir
2050         shadow:basedir = $shadow_basedir
2051         shadow:snapdir = $shadow_tstdir/.snapshots
2052
2053 [shadow5]
2054         path = $shadow_shrdir
2055         comment = previous versions at volume root snapshots under mount point
2056         vfs objects = shadow_copy2
2057         shadow:mountpoint = $shadow_shrdir
2058
2059 [shadow6]
2060         path = $shadow_shrdir
2061         comment = previous versions at volume root snapshots outside mount point
2062         vfs objects = shadow_copy2
2063         shadow:mountpoint = $shadow_shrdir
2064         shadow:snapdir = $shadow_tstdir/.snapshots
2065
2066 [shadow7]
2067         path = $shadow_shrdir
2068         comment = previous versions snapshots everywhere
2069         vfs objects = shadow_copy2
2070         shadow:mountpoint = $shadow_mntdir
2071         shadow:snapdirseverywhere = yes
2072
2073 [shadow8]
2074         path = $shadow_shrdir
2075         comment = previous versions using snapsharepath
2076         vfs objects = shadow_copy2
2077         shadow:mountpoint = $shadow_mntdir
2078         shadow:snapdir = $shadow_tstdir/.snapshots
2079         shadow:snapsharepath = share
2080
2081 [shadow_fmt0]
2082         comment = Testing shadow:format with default option
2083         vfs object = shadow_copy2
2084         path = $shadow_shrdir
2085         read only = no
2086         guest ok = yes
2087         shadow:mountpoint = $shadow_mntdir
2088         shadow:basedir = $shadow_basedir
2089         shadow:snapdir = $shadow_basedir/.snapshots
2090         shadow:format = \@GMT-%Y.%m.%d-%H.%M.%S
2091
2092 [shadow_fmt1]
2093         comment = Testing shadow:format with only date component
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
2102
2103 [shadow_fmt2]
2104         comment = Testing shadow:format with some hardcoded prefix
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 = snap\@GMT-%Y.%m.%d-%H.%M.%S
2113
2114 [shadow_fmt3]
2115         comment = Testing shadow:format with modified format
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 = \@GMT-%Y.%m.%d-%H_%M_%S-snap
2124
2125 [shadow_fmt4]
2126         comment = Testing shadow:snapprefix regex
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:snapprefix = \^s[a-z]*p\$
2135         shadow:format = _GMT-%Y.%m.%d-%H.%M.%S
2136
2137 [shadow_fmt5]
2138         comment = Testing shadow:snapprefix with delim regex
2139         vfs object = shadow_copy2
2140         path = $shadow_shrdir
2141         read only = no
2142         guest ok = yes
2143         shadow:mountpoint = $shadow_mntdir
2144         shadow:basedir = $shadow_basedir
2145         shadow:snapdir = $shadow_basedir/.snapshots
2146         shadow:delimiter = \@GMT
2147         shadow:snapprefix = [a-z]*
2148         shadow:format = \@GMT-%Y.%m.%d-%H.%M.%S
2149
2150 [shadow_wl]
2151         path = $shadow_shrdir
2152         comment = previous versions with wide links allowed
2153         vfs objects = shadow_copy2
2154         shadow:mountpoint = $shadow_mntdir
2155         wide links = yes
2156
2157 [shadow_write]
2158         path = $shadow_tstdir
2159         comment = previous versions snapshots under mount point
2160         vfs objects = shadow_copy2 streams_xattr error_inject
2161         aio write size = 0
2162         error_inject:pwrite = EBADF
2163         shadow:mountpoint = $shadow_tstdir
2164
2165 [dfq]
2166         path = $shrdir/dfree
2167         vfs objects = acl_xattr fake_acls xattr_tdb fake_dfq
2168         admin users = $unix_name
2169         include = $dfqconffile
2170 [dfq_cache]
2171         path = $shrdir/dfree
2172         vfs objects = acl_xattr fake_acls xattr_tdb fake_dfq
2173         admin users = $unix_name
2174         include = $dfqconffile
2175         dfree cache time = 60
2176 [dfq_owner]
2177         path = $shrdir/dfree
2178         vfs objects = acl_xattr fake_acls xattr_tdb fake_dfq
2179         inherit owner = yes
2180         include = $dfqconffile
2181 [quotadir]
2182         path = $shrdir/quota
2183         admin users = $unix_name
2184
2185 [acl_xattr_ign_sysacl_posix]
2186         copy = tmp
2187         acl_xattr:ignore system acls = yes
2188         acl_xattr:default acl style = posix
2189 [acl_xattr_ign_sysacl_windows]
2190         copy = tmp
2191         acl_xattr:ignore system acls = yes
2192         acl_xattr:default acl style = windows
2193
2194 [mangle_illegal]
2195         copy = tmp
2196         mangled names = illegal
2197
2198 [nosymlinks]
2199         copy = tmp
2200         path = $nosymlinks_shrdir
2201         follow symlinks = no
2202
2203 [local_symlinks]
2204         copy = tmp
2205         path = $local_symlinks_shrdir
2206         follow symlinks = yes
2207
2208 [kernel_oplocks]
2209         copy = tmp
2210         kernel oplocks = yes
2211         vfs objects = streams_xattr xattr_tdb
2212
2213 [streams_xattr]
2214         copy = tmp
2215         vfs objects = streams_xattr xattr_tdb
2216
2217 [compound_find]
2218         copy = tmp
2219         smbd:find async delay usec = 10000
2220 [error_inject]
2221         copy = tmp
2222         vfs objects = error_inject
2223         include = $errorinjectconf
2224
2225 [delay_inject]
2226         copy = tmp
2227         vfs objects = delay_inject
2228         kernel share modes = no
2229         kernel oplocks = no
2230         posix locking = no
2231         include = $delayinjectconf
2232
2233 [aio_delay_inject]
2234         copy = tmp
2235         vfs objects = delay_inject
2236         delay_inject:pread_send = 2000
2237         delay_inject:pwrite_send = 2000
2238
2239 [delete_readonly]
2240         path = $prefix_abs/share
2241         delete readonly = yes
2242         ";
2243         close(CONF);
2244
2245         my $net = Samba::bindir_path($self, "net");
2246         my $cmd = "";
2247         $cmd .= "SMB_CONF_PATH=\"$conffile\" ";
2248         $cmd .= "$net setlocalsid $samsid";
2249
2250         if (system($cmd) != 0) {
2251             warn("Join failed\n$cmd");
2252             return undef;
2253         }
2254
2255         unless (open(ERRORCONF, ">$errorinjectconf")) {
2256                 warn("Unable to open $errorinjectconf");
2257                 return undef;
2258         }
2259         close(ERRORCONF);
2260
2261         unless (open(DELAYCONF, ">$delayinjectconf")) {
2262                 warn("Unable to open $delayinjectconf");
2263                 return undef;
2264         }
2265         close(DELAYCONF);
2266
2267         unless (open(DFQCONF, ">$dfqconffile")) {
2268                 warn("Unable to open $dfqconffile");
2269                 return undef;
2270         }
2271         close(DFQCONF);
2272
2273         ##
2274         ## create a test account
2275         ##
2276
2277         unless (open(PASSWD, ">$nss_wrapper_passwd")) {
2278            warn("Unable to open $nss_wrapper_passwd");
2279            return undef;
2280         } 
2281         print PASSWD "nobody:x:$uid_nobody:$gid_nobody:nobody gecos:$prefix_abs:/bin/false
2282 $unix_name:x:$unix_uid:$unix_gids[0]:$unix_name gecos:$prefix_abs:/bin/false
2283 pdbtest:x:$uid_pdbtest:$gid_nogroup:pdbtest gecos:$prefix_abs:/bin/false
2284 pdbtest2:x:$uid_pdbtest2:$gid_nogroup:pdbtest gecos:$prefix_abs:/bin/false
2285 userdup:x:$uid_userdup:$gid_userdup:userdup gecos:$prefix_abs:/bin/false
2286 pdbtest_wkn:x:$uid_pdbtest_wkn:$gid_everyone:pdbtest_wkn gecos:$prefix_abs:/bin/false
2287 force_user:x:$uid_force_user:$gid_force_user:force user gecos:$prefix_abs:/bin/false
2288 smbget_user:x:$uid_smbget:$gid_domusers:smbget_user gecos:$prefix_abs:/bin/false
2289 user1:x:$uid_user1:$gid_nogroup:user1 gecos:$prefix_abs:/bin/false
2290 user2:x:$uid_user2:$gid_nogroup:user2 gecos:$prefix_abs:/bin/false
2291 gooduser:x:$uid_gooduser:$gid_domusers:gooduser gecos:$prefix_abs:/bin/false
2292 eviluser:x:$uid_eviluser:$gid_domusers:eviluser gecos::/bin/false
2293 slashuser:x:$uid_slashuser:$gid_domusers:slashuser gecos:/:/bin/false
2294 ";
2295         if ($unix_uid != 0) {
2296                 print PASSWD "root:x:$uid_root:$gid_root:root gecos:$prefix_abs:/bin/false
2297 ";
2298         }
2299         close(PASSWD);
2300
2301         unless (open(GROUP, ">$nss_wrapper_group")) {
2302              warn("Unable to open $nss_wrapper_group");
2303              return undef;
2304         }
2305         print GROUP "nobody:x:$gid_nobody:
2306 nogroup:x:$gid_nogroup:nobody
2307 $unix_name-group:x:$unix_gids[0]:
2308 domusers:X:$gid_domusers:
2309 domadmins:X:$gid_domadmins:
2310 userdup:x:$gid_userdup:$unix_name
2311 everyone:x:$gid_everyone:
2312 force_user:x:$gid_force_user:
2313 ";
2314         if ($unix_gids[0] != 0) {
2315                 print GROUP "root:x:$gid_root:
2316 ";
2317         }
2318
2319         close(GROUP);
2320
2321         ## hosts
2322         my $hostname = lc($server);
2323         unless (open(HOSTS, ">>$nss_wrapper_hosts")) {
2324                 warn("Unable to open $nss_wrapper_hosts");
2325                 return undef;
2326         }
2327         print HOSTS "${server_ip} ${hostname}.samba.example.com ${hostname}\n";
2328         print HOSTS "${server_ipv6} ${hostname}.samba.example.com ${hostname}\n";
2329         close(HOSTS);
2330
2331         ## hosts
2332         unless (open(RESOLV_CONF, ">$resolv_conf")) {
2333                 warn("Unable to open $resolv_conf");
2334                 return undef;
2335         }
2336         if (defined($dc_server_ip) or defined($dc_server_ipv6)) {
2337                 if (defined($dc_server_ip)) {
2338                         print RESOLV_CONF "nameserver $dc_server_ip\n";
2339                 }
2340                 if (defined($dc_server_ipv6)) {
2341                         print RESOLV_CONF "nameserver $dc_server_ipv6\n";
2342                 }
2343         } else {
2344                 print RESOLV_CONF "nameserver ${server_ip}\n";
2345                 print RESOLV_CONF "nameserver ${server_ipv6}\n";
2346         }
2347         close(RESOLV_CONF);
2348
2349         foreach my $evlog (@eventlog_list) {
2350                 my $evlogtdb = "$eventlogdir/$evlog.tdb";
2351                 open(EVENTLOG, ">$evlogtdb") or die("Unable to open $evlogtdb");
2352                 close(EVENTLOG);
2353         }
2354
2355         $createuser_env{NSS_WRAPPER_PASSWD} = $nss_wrapper_passwd;
2356         $createuser_env{NSS_WRAPPER_GROUP} = $nss_wrapper_group;
2357         $createuser_env{NSS_WRAPPER_HOSTS} = $nss_wrapper_hosts;
2358         $createuser_env{NSS_WRAPPER_HOSTNAME} = "${hostname}.samba.example.com";
2359         if ($ENV{SAMBA_DNS_FAKING}) {
2360                 $createuser_env{RESOLV_WRAPPER_HOSTS} = $dns_host_file;
2361         } else {
2362                 $createuser_env{RESOLV_WRAPPER_CONF} = $resolv_conf;
2363         }
2364
2365         createuser($self, $unix_name, $password, $conffile, \%createuser_env) || die("Unable to create user");
2366         createuser($self, "force_user", $password, $conffile, \%createuser_env) || die("Unable to create force_user");
2367         createuser($self, "smbget_user", $password, $conffile, \%createuser_env) || die("Unable to create smbget_user");
2368         createuser($self, "user1", $password, $conffile, \%createuser_env) || die("Unable to create user1");
2369         createuser($self, "user2", $password, $conffile, \%createuser_env) || die("Unable to create user2");
2370         createuser($self, "gooduser", $password, $conffile, \%createuser_env) || die("Unable to create gooduser");
2371         createuser($self, "eviluser", $password, $conffile, \%createuser_env) || die("Unable to create eviluser");
2372         createuser($self, "slashuser", $password, $conffile, \%createuser_env) || die("Unable to create slashuser");
2373
2374         open(DNS_UPDATE_LIST, ">$prefix/dns_update_list") or die("Unable to open $$prefix/dns_update_list");
2375         print DNS_UPDATE_LIST "A $server. $server_ip\n";
2376         print DNS_UPDATE_LIST "AAAA $server. $server_ipv6\n";
2377         close(DNS_UPDATE_LIST);
2378
2379         print "DONE\n";
2380
2381         $ret{SERVER_IP} = $server_ip;
2382         $ret{SERVER_IPV6} = $server_ipv6;
2383         $ret{NMBD_TEST_LOG} = "$prefix/nmbd_test.log";
2384         $ret{NMBD_TEST_LOG_POS} = 0;
2385         $ret{WINBINDD_TEST_LOG} = "$prefix/winbindd_test.log";
2386         $ret{WINBINDD_TEST_LOG_POS} = 0;
2387         $ret{SMBD_TEST_LOG} = "$prefix/smbd_test.log";
2388         $ret{SMBD_TEST_LOG_POS} = 0;
2389         $ret{SERVERCONFFILE} = $conffile;
2390         $ret{TESTENV_DIR} = $prefix_abs;
2391         $ret{CONFIGURATION} ="-s $conffile";
2392         $ret{LOCK_DIR} = $lockdir;
2393         $ret{SERVER} = $server;
2394         $ret{USERNAME} = $unix_name;
2395         $ret{USERID} = $unix_uid;
2396         $ret{DOMAIN} = $domain;
2397         $ret{SAMSID} = $samsid;
2398         $ret{NETBIOSNAME} = $server;
2399         $ret{PASSWORD} = $password;
2400         $ret{PIDDIR} = $piddir;
2401         $ret{SELFTEST_WINBINDD_SOCKET_DIR} = $wbsockdir;
2402         $ret{NMBD_SOCKET_DIR} = $nmbdsockdir;
2403         $ret{SOCKET_WRAPPER_DEFAULT_IFACE} = $swiface;
2404         $ret{NSS_WRAPPER_PASSWD} = $nss_wrapper_passwd;
2405         $ret{NSS_WRAPPER_GROUP} = $nss_wrapper_group;
2406         $ret{NSS_WRAPPER_HOSTS} = $nss_wrapper_hosts;
2407         $ret{NSS_WRAPPER_HOSTNAME} = "${hostname}.samba.example.com";
2408         $ret{NSS_WRAPPER_MODULE_SO_PATH} = Samba::nss_wrapper_winbind_so_path($self);
2409         $ret{NSS_WRAPPER_MODULE_FN_PREFIX} = "winbind";
2410         if ($ENV{SAMBA_DNS_FAKING}) {
2411                 $ret{RESOLV_WRAPPER_HOSTS} = $dns_host_file;
2412         } else {
2413                 $ret{RESOLV_WRAPPER_CONF} = $resolv_conf;
2414         }
2415         $ret{LOCAL_PATH} = "$shrdir";
2416         $ret{LOGDIR} = $logdir;
2417
2418         #
2419         # Avoid hitting system krb5.conf -
2420         # An env that needs Kerberos will reset this to the real
2421         # value.
2422         #
2423         $ret{KRB5_CONFIG} = abs_path($prefix) . "/no_krb5.conf";
2424
2425         # Define KRB5CCNAME for each environment we set up
2426         $ret{KRB5_CCACHE} = abs_path($prefix) . "/krb5ccache";
2427         $ENV{KRB5CCNAME} = $ret{KRB5_CCACHE};
2428
2429         return \%ret;
2430 }
2431
2432 sub wait_for_start($$$$$)
2433 {
2434         my ($self, $envvars, $nmbd, $winbindd, $smbd) = @_;
2435         my $cmd;
2436         my $netcmd;
2437         my $ret;
2438
2439         if ($nmbd eq "yes") {
2440                 my $count = 0;
2441
2442                 # give time for nbt server to register its names
2443                 print "checking for nmbd\n";
2444
2445                 # This will return quickly when things are up, but be slow if we need to wait for (eg) SSL init
2446                 my $nmblookup = Samba::bindir_path($self, "nmblookup");
2447
2448                 do {
2449                         $ret = system("$nmblookup $envvars->{CONFIGURATION} $envvars->{SERVER}");
2450                         if ($ret != 0) {
2451                                 sleep(1);
2452                         } else {
2453                                 system("$nmblookup $envvars->{CONFIGURATION} -U $envvars->{SERVER_IP} __SAMBA__");
2454                                 system("$nmblookup $envvars->{CONFIGURATION} __SAMBA__");
2455                                 system("$nmblookup $envvars->{CONFIGURATION} -U 127.255.255.255 __SAMBA__");
2456                                 system("$nmblookup $envvars->{CONFIGURATION} -U $envvars->{SERVER_IP} $envvars->{SERVER}");
2457                         }
2458                         $count++;
2459                 } while ($ret != 0 && $count < 10);
2460                 if ($count == 10) {
2461                         print "NMBD not reachable after 10 retries\n";
2462                         teardown_env($self, $envvars);
2463                         return 0;
2464                 }
2465         }
2466
2467         if ($winbindd eq "yes") {
2468             print "checking for winbindd\n";
2469             my $count = 0;
2470             $cmd = "SELFTEST_WINBINDD_SOCKET_DIR='$envvars->{SELFTEST_WINBINDD_SOCKET_DIR}' ";
2471             $cmd .= "NSS_WRAPPER_PASSWD='$envvars->{NSS_WRAPPER_PASSWD}' ";
2472             $cmd .= "NSS_WRAPPER_GROUP='$envvars->{NSS_WRAPPER_GROUP}' ";
2473             $cmd .= Samba::bindir_path($self, "wbinfo") . " --ping-dc";
2474
2475             do {
2476                 if ($ret != 0) {
2477                     $ret = system($cmd);
2478                     sleep(1);
2479                 }
2480                 $count++;
2481             } while ($ret != 0 && $count < 20);
2482             if ($count == 20) {
2483                 print "WINBINDD not reachable after 20 seconds\n";
2484                 teardown_env($self, $envvars);
2485                 return 0;
2486             }
2487         }
2488
2489         if ($smbd eq "yes") {
2490             # make sure smbd is also up set
2491             print "wait for smbd\n";
2492
2493             my $count = 0;
2494             do {
2495                 $ret = system(Samba::bindir_path($self, "smbclient") ." $envvars->{CONFIGURATION} -L $envvars->{SERVER} -U% -p 139");
2496                 if ($ret != 0) {
2497                     sleep(1);
2498                 }
2499                 $count++
2500             } while ($ret != 0 && $count < 20);
2501             if ($count == 20) {
2502                 print "SMBD failed to start up in a reasonable time (20sec)\n";
2503                 teardown_env($self, $envvars);
2504                 return 0;
2505             }
2506         }
2507
2508         # Ensure we have domain users mapped.
2509         $netcmd = "NSS_WRAPPER_PASSWD='$envvars->{NSS_WRAPPER_PASSWD}' ";
2510         $netcmd .= "NSS_WRAPPER_GROUP='$envvars->{NSS_WRAPPER_GROUP}' ";
2511         $netcmd .= Samba::bindir_path($self, "net") ." $envvars->{CONFIGURATION} ";
2512
2513         $cmd = $netcmd . "groupmap delete ntgroup=domusers";
2514         $ret = system($cmd);
2515
2516         $cmd = $netcmd . "groupmap add rid=513 unixgroup=domusers type=domain";
2517         $ret = system($cmd);
2518         if ($ret != 0) {
2519                 print("\"$cmd\" failed\n");
2520                 return 1;
2521         }
2522
2523         $cmd = $netcmd . "groupmap delete ntgroup=domadmins";
2524         $ret = system($cmd);
2525
2526         $cmd = $netcmd . "groupmap add rid=512 unixgroup=domadmins type=domain";
2527         $ret = system($cmd);
2528         if ($ret != 0) {
2529                 print("\"$cmd\" failed\n");
2530                 return 1;
2531         }
2532
2533         $cmd = $netcmd . "groupmap delete ntgroup=everyone";
2534         $ret = system($cmd);
2535
2536         $cmd = $netcmd . "groupmap add sid=S-1-1-0 unixgroup=everyone type=builtin";
2537         $ret = system($cmd);
2538         if ($ret != 0) {
2539                 print("\"$cmd\" failed\n");
2540                 return 1;
2541         }
2542
2543         # note: creating builtin groups requires winbindd for the
2544         # unix id allocator
2545         my $create_builtin_users = "no";
2546         if ($winbindd eq "yes") {
2547                 $cmd = "SELFTEST_WINBINDD_SOCKET_DIR='$envvars->{SELFTEST_WINBINDD_SOCKET_DIR}' ";
2548                 $cmd .= "NSS_WRAPPER_PASSWD='$envvars->{NSS_WRAPPER_PASSWD}' ";
2549                 $cmd .= "NSS_WRAPPER_GROUP='$envvars->{NSS_WRAPPER_GROUP}' ";
2550                 $cmd .= Samba::bindir_path($self, "wbinfo") . " --sid-to-gid=S-1-5-32-545";
2551                 my $wbinfo_out = qx($cmd 2>&1);
2552                 if ($? != 0) {
2553                         # wbinfo doesn't give us a better error code then
2554                         # WBC_ERR_DOMAIN_NOT_FOUND, but at least that's
2555                         # different then WBC_ERR_WINBIND_NOT_AVAILABLE
2556                         if ($wbinfo_out !~ /WBC_ERR_DOMAIN_NOT_FOUND/) {
2557                                 print("Failed to run \"wbinfo --sid-to-gid=S-1-5-32-545\": $wbinfo_out");
2558                                 teardown_env($self, $envvars);
2559                                 return 0;
2560                         }
2561                         $create_builtin_users = "yes";
2562                 }
2563         }
2564         if ($create_builtin_users eq "yes") {
2565             $cmd = "SELFTEST_WINBINDD_SOCKET_DIR='$envvars->{SELFTEST_WINBINDD_SOCKET_DIR}' ";
2566             $cmd .= "NSS_WRAPPER_PASSWD='$envvars->{NSS_WRAPPER_PASSWD}' ";
2567             $cmd .= "NSS_WRAPPER_GROUP='$envvars->{NSS_WRAPPER_GROUP}' ";
2568             $cmd .= Samba::bindir_path($self, "net") . " $envvars->{CONFIGURATION} ";
2569             $cmd .= "sam createbuiltingroup Users";
2570             $ret = system($cmd);
2571             if ($ret != 0) {
2572                 print "Failed to create BUILTIN\\Users group\n";
2573                 teardown_env($self, $envvars);
2574                 return 0;
2575             }
2576
2577             $cmd = Samba::bindir_path($self, "net") . " $envvars->{CONFIGURATION} ";
2578             $cmd .= "cache del IDMAP/SID2XID/S-1-5-32-545";
2579             system($cmd);
2580
2581             $cmd = "SELFTEST_WINBINDD_SOCKET_DIR='$envvars->{SELFTEST_WINBINDD_SOCKET_DIR}' ";
2582             $cmd .= "NSS_WRAPPER_PASSWD='$envvars->{NSS_WRAPPER_PASSWD}' ";
2583             $cmd .= "NSS_WRAPPER_GROUP='$envvars->{NSS_WRAPPER_GROUP}' ";
2584             $cmd .= Samba::bindir_path($self, "wbinfo") . " --sid-to-gid=S-1-5-32-545";
2585             $ret = system($cmd);
2586             if ($ret != 0) {
2587                 print "Missing \"BUILTIN\\Users\", did net sam createbuiltingroup Users fail?\n";
2588                 teardown_env($self, $envvars);
2589                 return 0;
2590             }
2591         }
2592
2593         print $self->getlog_env($envvars);
2594
2595         return 1;
2596 }
2597
2598 1;