s3-selftest: set "lpq cache time = 0" in server configuration.
[sfrench/samba-autobuild/.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 package Samba3;
7
8 use strict;
9 use Cwd qw(abs_path);
10 use FindBin qw($RealBin);
11 use POSIX;
12
13 sub binpath($$)
14 {
15         my ($self, $binary) = @_;
16
17         if (defined($self->{bindir})) {
18                 my $path = "$self->{bindir}/$binary";
19                 -f $path or die("File $path doesn't exist");
20                 return $path;
21         }
22
23         return $binary;
24 }
25
26 sub new($$) {
27         my ($classname, $bindir) = @_;
28         my $self = { bindir => $bindir };
29         bless $self;
30         return $self;
31 }
32
33 sub teardown_env($$)
34 {
35         my ($self, $envvars) = @_;
36
37         my $smbdpid = read_pid($envvars, "smbd");
38         my $nmbdpid = read_pid($envvars, "nmbd");
39         my $winbinddpid = read_pid($envvars, "winbindd");
40
41         $self->stop_sig_term($smbdpid);
42         $self->stop_sig_term($nmbdpid);
43         $self->stop_sig_term($winbinddpid);
44
45         sleep(2);
46
47         $self->stop_sig_kill($smbdpid);
48         $self->stop_sig_kill($nmbdpid);
49         $self->stop_sig_kill($winbinddpid);
50
51         return 0;
52 }
53
54 sub getlog_env_app($$$)
55 {
56         my ($self, $envvars, $name) = @_;
57
58         my $title = "$name LOG of: $envvars->{NETBIOSNAME}\n";
59         my $out = $title;
60
61         open(LOG, "<".$envvars->{$name."_TEST_LOG"});
62
63         seek(LOG, $envvars->{$name."_TEST_LOG_POS"}, SEEK_SET);
64         while (<LOG>) {
65                 $out .= $_;
66         }
67         $envvars->{$name."_TEST_LOG_POS"} = tell(LOG);
68         close(LOG);
69
70         return "" if $out eq $title;
71  
72         return $out;
73 }
74
75 sub getlog_env($$)
76 {
77         my ($self, $envvars) = @_;
78         my $ret = "";
79
80         $ret .= $self->getlog_env_app($envvars, "SMBD");
81         $ret .= $self->getlog_env_app($envvars, "NMBD");
82         $ret .= $self->getlog_env_app($envvars, "WINBINDD");
83
84         return $ret;
85 }
86
87 sub check_env($$)
88 {
89         my ($self, $envvars) = @_;
90
91         # TODO ...
92         return 1;
93 }
94
95 sub setup_env($$$)
96 {
97         my ($self, $envname, $path) = @_;
98         
99         if ($envname eq "dc") {
100                 return $self->setup_dc("$path/dc");
101         } elsif ($envname eq "member") {
102                 if (not defined($self->{vars}->{dc})) {
103                         $self->setup_dc("$path/dc");
104                 }
105                 return $self->setup_member("$path/member", $self->{vars}->{dc});
106         } else {
107                 return undef;
108         }
109 }
110
111 sub setup_dc($$)
112 {
113         my ($self, $path) = @_;
114
115         print "PROVISIONING DC...";
116
117         my $dc_options = "
118         domain master = yes
119         domain logons = yes
120         lanman auth = yes
121 ";
122
123         my $vars = $self->provision($path,
124                                     "LOCALDC2",
125                                     2,
126                                     "localdc2pass",
127                                     $dc_options);
128
129         $self->check_or_start($vars,
130                               ($ENV{SMBD_MAXTIME} or 2700),
131                                "yes", "yes", "yes");
132
133         $self->wait_for_start($vars);
134
135         $self->{vars}->{dc} = $vars;
136
137         return $vars;
138 }
139
140 sub setup_member($$$)
141 {
142         my ($self, $prefix, $dcvars) = @_;
143
144         print "PROVISIONING MEMBER...";
145
146         my $member_options = "
147         security = domain
148         server signing = on
149 ";
150         my $ret = $self->provision($prefix,
151                                    "LOCALMEMBER3",
152                                    3,
153                                    "localmember3pass",
154                                    $member_options);
155
156         $ret or die("Unable to provision");
157
158         my $net = $self->binpath("net");
159         my $cmd = "";
160         $cmd .= "SOCKET_WRAPPER_DEFAULT_IFACE=\"$ret->{SOCKET_WRAPPER_DEFAULT_IFACE}\" ";
161         $cmd .= "$net join $ret->{CONFIGURATION} $dcvars->{DOMAIN} member";
162         $cmd .= " -U$dcvars->{USERNAME}\%$dcvars->{PASSWORD}";
163
164         system($cmd) == 0 or die("Join failed\n$cmd");
165
166         $self->check_or_start($ret,
167                               ($ENV{SMBD_MAXTIME} or 2700),
168                                "yes", "yes", "yes");
169
170         $self->wait_for_start($ret);
171
172         $ret->{DC_SERVER} = $dcvars->{SERVER};
173         $ret->{DC_SERVER_IP} = $dcvars->{SERVER_IP};
174         $ret->{DC_NETBIOSNAME} = $dcvars->{NETBIOSNAME};
175         $ret->{DC_USERNAME} = $dcvars->{USERNAME};
176         $ret->{DC_PASSWORD} = $dcvars->{PASSWORD};
177
178         return $ret;
179 }
180
181 sub stop($)
182 {
183         my ($self) = @_;
184 }
185
186 sub stop_sig_term($$) {
187         my ($self, $pid) = @_;
188         kill("USR1", $pid) or kill("ALRM", $pid) or warn("Unable to kill $pid: $!");
189 }
190
191 sub stop_sig_kill($$) {
192         my ($self, $pid) = @_;
193         kill("ALRM", $pid) or warn("Unable to kill $pid: $!");
194 }
195
196 sub write_pid($$$)
197 {
198         my ($env_vars, $app, $pid) = @_;
199
200         open(PID, ">$env_vars->{PIDDIR}/timelimit.$app.pid");
201         print PID $pid;
202         close(PID);
203 }
204
205 sub read_pid($$)
206 {
207         my ($env_vars, $app) = @_;
208
209         open(PID, "<$env_vars->{PIDDIR}/timelimit.$app.pid");
210         my $pid = <PID>;
211         close(PID);
212         return $pid;
213 }
214
215 sub check_or_start($$$$$) {
216         my ($self, $env_vars, $maxtime, $nmbd, $winbindd, $smbd) = @_;
217
218         unlink($env_vars->{NMBD_TEST_LOG});
219         print "STARTING NMBD...";
220         my $pid = fork();
221         if ($pid == 0) {
222                 open STDOUT, ">$env_vars->{NMBD_TEST_LOG}";
223                 open STDERR, '>&STDOUT';
224
225                 SocketWrapper::set_default_iface($env_vars->{SOCKET_WRAPPER_DEFAULT_IFACE});
226
227                 $ENV{WINBINDD_SOCKET_DIR} = $env_vars->{WINBINDD_SOCKET_DIR};
228
229                 $ENV{NSS_WRAPPER_PASSWD} = $env_vars->{NSS_WRAPPER_PASSWD};
230                 $ENV{NSS_WRAPPER_GROUP} = $env_vars->{NSS_WRAPPER_GROUP};
231                 $ENV{NSS_WRAPPER_WINBIND_SO_PATH} = $env_vars->{NSS_WRAPPER_WINBIND_SO_PATH};
232
233                 if ($nmbd ne "yes") {
234                         $SIG{USR1} = $SIG{ALRM} = $SIG{INT} = $SIG{QUIT} = $SIG{TERM} = sub {
235                                 my $signame = shift;
236                                 print("Skip nmbd received signal $signame");
237                                 exit 0;
238                         };
239                         sleep($maxtime);
240                         exit 0;
241                 }
242
243                 my @optargs = ("-d0");
244                 if (defined($ENV{NMBD_OPTIONS})) {
245                         @optargs = split(/ /, $ENV{NMBD_OPTIONS});
246                 }
247
248                 $ENV{MAKE_TEST_BINARY} = $self->binpath("nmbd");
249
250                 my @preargs = ($self->binpath("timelimit"), $maxtime);
251                 if(defined($ENV{NMBD_VALGRIND})) { 
252                         @preargs = split(/ /, $ENV{NMBD_VALGRIND});
253                 }
254
255                 exec(@preargs, $self->binpath("nmbd"), "-F", "-S", "--no-process-group", "-s", $env_vars->{SERVERCONFFILE}, @optargs) or die("Unable to start nmbd: $!");
256         }
257         write_pid($env_vars, "nmbd", $pid);
258         print "DONE\n";
259
260         unlink($env_vars->{WINBINDD_TEST_LOG});
261         print "STARTING WINBINDD...";
262         $pid = fork();
263         if ($pid == 0) {
264                 open STDOUT, ">$env_vars->{WINBINDD_TEST_LOG}";
265                 open STDERR, '>&STDOUT';
266
267                 SocketWrapper::set_default_iface($env_vars->{SOCKET_WRAPPER_DEFAULT_IFACE});
268
269                 $ENV{WINBINDD_SOCKET_DIR} = $env_vars->{WINBINDD_SOCKET_DIR};
270
271                 $ENV{NSS_WRAPPER_PASSWD} = $env_vars->{NSS_WRAPPER_PASSWD};
272                 $ENV{NSS_WRAPPER_GROUP} = $env_vars->{NSS_WRAPPER_GROUP};
273                 $ENV{NSS_WRAPPER_WINBIND_SO_PATH} = $env_vars->{NSS_WRAPPER_WINBIND_SO_PATH};
274
275                 if ($winbindd ne "yes") {
276                         $SIG{USR1} = $SIG{ALRM} = $SIG{INT} = $SIG{QUIT} = $SIG{TERM} = sub {
277                                 my $signame = shift;
278                                 print("Skip winbindd received signal $signame");
279                                 exit 0;
280                         };
281                         sleep($maxtime);
282                         exit 0;
283                 }
284
285                 my @optargs = ("-d0");
286                 if (defined($ENV{WINBINDD_OPTIONS})) {
287                         @optargs = split(/ /, $ENV{WINBINDD_OPTIONS});
288                 }
289
290                 $ENV{MAKE_TEST_BINARY} = $self->binpath("winbindd");
291
292                 my @preargs = ($self->binpath("timelimit"), $maxtime);
293                 if(defined($ENV{WINBINDD_VALGRIND})) {
294                         @preargs = split(/ /, $ENV{WINBINDD_VALGRIND});
295                 }
296
297                 exec(@preargs, $self->binpath("winbindd"), "-F", "-S", "--no-process-group", "-s", $env_vars->{SERVERCONFFILE}, @optargs) or die("Unable to start winbindd: $!");
298         }
299         write_pid($env_vars, "winbindd", $pid);
300         print "DONE\n";
301
302         unlink($env_vars->{SMBD_TEST_LOG});
303         print "STARTING SMBD...";
304         $pid = fork();
305         if ($pid == 0) {
306                 open STDOUT, ">$env_vars->{SMBD_TEST_LOG}";
307                 open STDERR, '>&STDOUT';
308
309                 SocketWrapper::set_default_iface($env_vars->{SOCKET_WRAPPER_DEFAULT_IFACE});
310
311                 $ENV{WINBINDD_SOCKET_DIR} = $env_vars->{WINBINDD_SOCKET_DIR};
312
313                 $ENV{NSS_WRAPPER_PASSWD} = $env_vars->{NSS_WRAPPER_PASSWD};
314                 $ENV{NSS_WRAPPER_GROUP} = $env_vars->{NSS_WRAPPER_GROUP};
315                 $ENV{NSS_WRAPPER_WINBIND_SO_PATH} = $env_vars->{NSS_WRAPPER_WINBIND_SO_PATH};
316
317                 if ($smbd ne "yes") {
318                         $SIG{USR1} = $SIG{ALRM} = $SIG{INT} = $SIG{QUIT} = $SIG{TERM} = sub {
319                                 my $signame = shift;
320                                 print("Skip smbd received signal $signame");
321                                 exit 0;
322                         };
323                         sleep($maxtime);
324                         exit 0;
325                 }
326
327                 $ENV{MAKE_TEST_BINARY} = $self->binpath("smbd");
328                 my @optargs = ("-d0");
329                 if (defined($ENV{SMBD_OPTIONS})) {
330                         @optargs = split(/ /, $ENV{SMBD_OPTIONS});
331                 }
332                 my @preargs = ($self->binpath("timelimit"), $maxtime);
333                 if(defined($ENV{SMBD_VALGRIND})) {
334                         @preargs = split(/ /,$ENV{SMBD_VALGRIND});
335                 }
336                 exec(@preargs, $self->binpath("smbd"), "-F", "-S", "--no-process-group", "-s", $env_vars->{SERVERCONFFILE}, @optargs) or die("Unable to start smbd: $!");
337         }
338         write_pid($env_vars, "smbd", $pid);
339         print "DONE\n";
340
341         return 0;
342 }
343
344 sub create_clientconf($$$)
345 {
346         my ($self, $prefix, $domain) = @_;
347
348         my $lockdir = "$prefix/locks";
349         my $logdir = "$prefix/logs";
350         my $piddir = "$prefix/pid";
351         my $privatedir = "$prefix/private";
352         my $conffile = "$prefix/smb.conf";
353
354         my $torture_interfaces='127.0.0.6/8,127.0.0.7/8,127.0.0.8/8,127.0.0.9/8,127.0.0.10/8,127.0.0.11/8';
355         open(CONF, ">$conffile");
356         print CONF "
357 [global]
358         workgroup = $domain
359
360         private dir = $privatedir
361         pid directory = $piddir
362         lock directory = $lockdir
363         log file = $logdir/log.\%m
364         log level = 0
365
366         name resolve order = bcast
367
368         netbios name = TORTURE_6
369         interfaces = $torture_interfaces
370         panic action = $RealBin/gdb_backtrace \%d %\$(MAKE_TEST_BINARY)
371
372         passdb backend = tdbsam
373         ";
374         close(CONF);
375 }
376
377 sub provision($$$$$$)
378 {
379         my ($self, $prefix, $server, $swiface, $password, $extra_options) = @_;
380
381         ##
382         ## setup the various environment variables we need
383         ##
384
385         my %ret = ();
386         my $server_ip = "127.0.0.$swiface";
387         my $domain = "SAMBA-TEST";
388
389         my $unix_name = ($ENV{USER} or $ENV{LOGNAME} or `PATH=/usr/ucb:$ENV{PATH} whoami`);
390         chomp $unix_name;
391         my $unix_uid = $>;
392         my $unix_gids_str = $);
393         my @unix_gids = split(" ", $unix_gids_str);
394
395         my $prefix_abs = abs_path($prefix);
396         my $bindir_abs = abs_path($self->{bindir});
397
398         my @dirs = ();
399
400         my $shrdir="$prefix_abs/share";
401         push(@dirs,$shrdir);
402
403         my $libdir="$prefix_abs/lib";
404         push(@dirs,$libdir);
405
406         my $piddir="$prefix_abs/pid";
407         push(@dirs,$piddir);
408
409         my $privatedir="$prefix_abs/private";
410         push(@dirs,$privatedir);
411
412         my $lockdir="$prefix_abs/lockdir";
413         push(@dirs,$lockdir);
414
415         my $eventlogdir="$prefix_abs/lockdir/eventlog";
416         push(@dirs,$eventlogdir);
417
418         my $logdir="$prefix_abs/logs";
419         push(@dirs,$logdir);
420
421         # this gets autocreated by winbindd
422         my $wbsockdir="$prefix_abs/winbindd";
423         my $wbsockprivdir="$lockdir/winbindd_privileged";
424
425         ## 
426         ## create the test directory layout
427         ##
428         die ("prefix_abs = ''") if $prefix_abs eq "";
429         die ("prefix_abs = '/'") if $prefix_abs eq "/";
430
431         mkdir($prefix_abs, 0777);
432         print "CREATE TEST ENVIRONMENT IN '$prefix'...";
433         system("rm -rf $prefix_abs/*");
434         mkdir($_, 0777) foreach(@dirs);
435
436         my $conffile="$libdir/server.conf";
437
438         my $nss_wrapper_pl = "$ENV{PERL} $RealBin/../lib/nss_wrapper/nss_wrapper.pl";
439         my $nss_wrapper_passwd = "$privatedir/passwd";
440         my $nss_wrapper_group = "$privatedir/group";
441
442         my $mod_printer_pl = "$ENV{PERL} $RealBin/../source3/script/tests/printing/modprinter.pl";
443
444         my @eventlog_list = ("dns server", "application");
445
446         ##
447         ## calculate uids and gids
448         ##
449
450         my ($max_uid, $max_gid);
451         my ($uid_nobody, $uid_root);
452         my ($gid_nobody, $gid_nogroup, $gid_root);
453
454         if ($unix_uid < 0xffff - 2) {
455                 $max_uid = 0xffff;
456         } else {
457                 $max_uid = $unix_uid;
458         }
459
460         $uid_root = $max_uid - 1;
461         $uid_nobody = $max_uid - 2;
462
463         if ($unix_gids[0] < 0xffff - 3) {
464                 $max_gid = 0xffff;
465         } else {
466                 $max_gid = $unix_gids[0];
467         }
468
469         $gid_nobody = $max_gid - 1;
470         $gid_nogroup = $max_gid - 2;
471         $gid_root = $max_gid - 3;
472
473         ##
474         ## create conffile
475         ##
476
477         open(CONF, ">$conffile") or die("Unable to open $conffile");
478         print CONF "
479 [global]
480         netbios name = $server
481         interfaces = $server_ip/8
482         bind interfaces only = yes
483         panic action = $RealBin/gdb_backtrace %d %\$(MAKE_TEST_BINARY)
484
485         workgroup = $domain
486
487         private dir = $privatedir
488         pid directory = $piddir
489         lock directory = $lockdir
490         log file = $logdir/log.\%m
491         log level = 0
492
493         name resolve order = bcast
494
495         state directory = $lockdir
496         cache directory = $lockdir
497
498         passdb backend = tdbsam
499
500         time server = yes
501
502         add user script =               $nss_wrapper_pl --passwd_path $nss_wrapper_passwd --type passwd --action add --name %u --gid $gid_nogroup
503         add group script =              $nss_wrapper_pl --group_path  $nss_wrapper_group  --type group  --action add --name %g
504         add machine script =            $nss_wrapper_pl --passwd_path $nss_wrapper_passwd --type passwd --action add --name %u --gid $gid_nogroup
505         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
506         delete user script =            $nss_wrapper_pl --passwd_path $nss_wrapper_passwd --type passwd --action delete --name %u
507         delete group script =           $nss_wrapper_pl --group_path  $nss_wrapper_group  --type group  --action delete --name %g
508         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
509
510         addprinter command =            $mod_printer_pl -a -s $conffile --
511         deleteprinter command =         $mod_printer_pl -d -s $conffile --
512
513         eventlog list = application \"dns server\"
514
515         kernel oplocks = no
516         kernel change notify = no
517
518         syslog = no
519         printing = bsd
520         printcap name = /dev/null
521
522         winbindd:socket dir = $wbsockdir
523         idmap uid = 100000-200000
524         idmap gid = 100000-200000
525         winbind enum users = yes
526         winbind enum groups = yes
527
528 #       min receivefile size = 4000
529
530         read only = no
531         smbd:sharedelay = 100000
532         smbd:writetimeupdatedelay = 500000
533         map hidden = yes
534         map system = yes
535         create mask = 755
536         vfs objects = $bindir_abs/xattr_tdb.so $bindir_abs/streams_depot.so
537
538         printing = vlp
539         print command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb print %p %s
540         lpq command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lpq %p
541         lp rm command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lprm %p %j
542         lp pause command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lppause %p %j
543         lp resume command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb lpresume %p %j
544         queue pause command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb queuepause %p
545         queue resume command = $bindir_abs/vlp tdbfile=$lockdir/vlp.tdb queueresume %p
546         lpq cache time = 0
547
548         # Begin extra options
549         $extra_options
550         # End extra options
551
552         #Include user defined custom parameters if set
553 ";
554
555         if (defined($ENV{INCLUDE_CUSTOM_CONF})) {
556                 print CONF "\t$ENV{INCLUDE_CUSTOM_CONF}\n";
557         }
558
559         print CONF "
560 [tmp]
561         path = $shrdir
562 [hideunread]
563         copy = tmp
564         hide unreadable = yes
565 [hideunwrite]
566         copy = tmp
567         hide unwriteable files = yes
568 [print1]
569         copy = tmp
570         printable = yes
571
572 [print2]
573         copy = print1
574 [print3]
575         copy = print1
576 [print4]
577         copy = print1
578         ";
579         close(CONF);
580
581         ##
582         ## create a test account
583         ##
584
585         open(PASSWD, ">$nss_wrapper_passwd") or die("Unable to open $nss_wrapper_passwd");
586         print PASSWD "nobody:x:$uid_nobody:$gid_nobody:nobody gecos:$prefix_abs:/bin/false
587 $unix_name:x:$unix_uid:$unix_gids[0]:$unix_name gecos:$prefix_abs:/bin/false
588 ";
589         if ($unix_uid != 0) {
590                 print PASSWD "root:x:$uid_root:$gid_root:root gecos:$prefix_abs:/bin/false";
591         }
592         close(PASSWD);
593
594         open(GROUP, ">$nss_wrapper_group") or die("Unable to open $nss_wrapper_group");
595         print GROUP "nobody:x:$gid_nobody:
596 nogroup:x:$gid_nogroup:nobody
597 $unix_name-group:x:$unix_gids[0]:
598 ";
599         if ($unix_gids[0] != 0) {
600                 print GROUP "root:x:$gid_root:";
601         }
602
603         close(GROUP);
604
605         foreach my $evlog (@eventlog_list) {
606                 my $evlogtdb = "$eventlogdir/$evlog.tdb";
607                 open(EVENTLOG, ">$evlogtdb") or die("Unable to open $evlogtdb");
608                 close(EVENTLOG);
609         }
610
611         $ENV{NSS_WRAPPER_PASSWD} = $nss_wrapper_passwd;
612         $ENV{NSS_WRAPPER_GROUP} = $nss_wrapper_group;
613
614         open(PWD, "|".$self->binpath("smbpasswd")." -c $conffile -L -s -a $unix_name >/dev/null");
615         print PWD "$password\n$password\n";
616         close(PWD) or die("Unable to set password for test account");
617
618         delete $ENV{NSS_WRAPPER_PASSWD};
619         delete $ENV{NSS_WRAPPER_GROUP};
620
621         print "DONE\n";
622
623         $ret{SERVER_IP} = $server_ip;
624         $ret{NMBD_TEST_LOG} = "$prefix/nmbd_test.log";
625         $ret{NMBD_TEST_LOG_POS} = 0;
626         $ret{WINBINDD_TEST_LOG} = "$prefix/winbindd_test.log";
627         $ret{WINBINDD_TEST_LOG_POS} = 0;
628         $ret{SMBD_TEST_LOG} = "$prefix/smbd_test.log";
629         $ret{SMBD_TEST_LOG_POS} = 0;
630         $ret{SERVERCONFFILE} = $conffile;
631         $ret{CONFIGURATION} ="-s $conffile";
632         $ret{SERVER} = $server;
633         $ret{USERNAME} = $unix_name;
634         $ret{DOMAIN} = $domain;
635         $ret{NETBIOSNAME} = $server;
636         $ret{PASSWORD} = $password;
637         $ret{PIDDIR} = $piddir;
638         $ret{WINBINDD_SOCKET_DIR} = $wbsockdir;
639         $ret{WINBINDD_PRIV_PIPE_DIR} = $wbsockprivdir;
640         $ret{SOCKET_WRAPPER_DEFAULT_IFACE} = $swiface;
641         $ret{NSS_WRAPPER_PASSWD} = $nss_wrapper_passwd;
642         $ret{NSS_WRAPPER_GROUP} = $nss_wrapper_group;
643         $ret{NSS_WRAPPER_WINBIND_SO_PATH} = $ENV{NSS_WRAPPER_WINBIND_SO_PATH};
644
645         return \%ret;
646 }
647
648 sub wait_for_start($$)
649 {
650         my ($self, $envvars) = @_;
651
652         # give time for nbt server to register its names
653         print "delaying for nbt name registration\n";
654         sleep(10);
655         # This will return quickly when things are up, but be slow if we need to wait for (eg) SSL init 
656         system($self->binpath("nmblookup") ." $envvars->{CONFIGURATION} -U $envvars->{SERVER_IP} __SAMBA__");
657         system($self->binpath("nmblookup") ." $envvars->{CONFIGURATION} __SAMBA__");
658         system($self->binpath("nmblookup") ." $envvars->{CONFIGURATION} -U 127.255.255.255 __SAMBA__");
659         system($self->binpath("nmblookup") ." $envvars->{CONFIGURATION} -U $envvars->{SERVER_IP} $envvars->{SERVER}");
660         system($self->binpath("nmblookup") ." $envvars->{CONFIGURATION} $envvars->{SERVER}");
661         # make sure smbd is also up set
662         print "wait for smbd\n";
663         system($self->binpath("smbclient") ." $envvars->{CONFIGURATION} -L $envvars->{SERVER_IP} -U% -p 139 | head -2");
664         system($self->binpath("smbclient") ." $envvars->{CONFIGURATION} -L $envvars->{SERVER_IP} -U% -p 139 | head -2");
665
666         print $self->getlog_env($envvars);
667 }
668
669 1;