r6933: Add a couple of helper functions for creating nbt names.
[sfrench/samba-autobuild/.git] / source4 / torture / torture.c
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB torture tester
4    Copyright (C) Andrew Tridgell 1997-2003
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "includes.h"
22 #include "dynconfig.h"
23 #include "clilist.h"
24 #include "lib/cmdline/popt_common.h"
25 #include "libcli/raw/libcliraw.h"
26 #include "system/time.h"
27 #include "system/wait.h"
28 #include "system/filesys.h"
29 #include "ioctl.h"
30 #include "librpc/gen_ndr/ndr_security.h"
31
32 int torture_nprocs=4;
33 int torture_numops=100;
34 int torture_entries=1000;
35 int torture_failures=1;
36 int torture_seed=0;
37 static int procnum; /* records process count number when forking */
38 static struct smbcli_state *current_cli;
39 static BOOL use_oplocks;
40 static BOOL use_level_II_oplocks;
41
42 BOOL torture_showall = False;
43
44 #define CHECK_MAX_FAILURES(label) do { if (++failures >= torture_failures) goto label; } while (0)
45
46 static struct smbcli_state *open_nbt_connection(void)
47 {
48         struct nbt_name called, calling;
49         struct smbcli_state *cli;
50         const char *host = lp_parm_string(-1, "torture", "host");
51
52         make_nbt_name_client(&calling, lp_netbios_name());
53
54         nbt_choose_called_name(NULL, &called, host, NBT_NAME_SERVER);
55
56         cli = smbcli_state_init(NULL);
57         if (!cli) {
58                 printf("Failed initialize smbcli_struct to connect with %s\n", host);
59                 return NULL;
60         }
61
62         if (!smbcli_socket_connect(cli, host)) {
63                 printf("Failed to connect with %s\n", host);
64                 return cli;
65         }
66
67         if (!smbcli_transport_establish(cli, &calling, &called)) {
68                 printf("%s rejected the session\n",host);
69                 smbcli_shutdown(cli);
70                 return NULL;
71         }
72
73         return cli;
74 }
75
76 BOOL torture_open_connection_share(struct smbcli_state **c, 
77                                    const char *hostname, 
78                                    const char *sharename)
79 {
80         NTSTATUS status;
81
82         status = smbcli_full_connection(NULL,
83                                         c, hostname, 
84                                         sharename, NULL,
85                                         cmdline_credentials);
86         if (!NT_STATUS_IS_OK(status)) {
87                 printf("Failed to open connection - %s\n", nt_errstr(status));
88                 return False;
89         }
90
91         (*c)->transport->options.use_oplocks = use_oplocks;
92         (*c)->transport->options.use_level2_oplocks = use_level_II_oplocks;
93
94         return True;
95 }
96
97 BOOL torture_open_connection(struct smbcli_state **c)
98 {
99         const char *host = lp_parm_string(-1, "torture", "host");
100         const char *share = lp_parm_string(-1, "torture", "share");
101
102         return torture_open_connection_share(c, host, share);
103 }
104
105
106
107 BOOL torture_close_connection(struct smbcli_state *c)
108 {
109         BOOL ret = True;
110         if (!c) return True;
111         if (NT_STATUS_IS_ERR(smbcli_tdis(c))) {
112                 printf("tdis failed (%s)\n", smbcli_errstr(c->tree));
113                 ret = False;
114         }
115         smbcli_shutdown(c);
116         return ret;
117 }
118
119 /* open a rpc connection to the chosen binding string */
120 NTSTATUS torture_rpc_connection(TALLOC_CTX *parent_ctx, 
121                                 struct dcerpc_pipe **p, 
122                                 const char *pipe_name,
123                                 const char *pipe_uuid, 
124                                 uint32_t pipe_version)
125 {
126         NTSTATUS status;
127         const char *binding = lp_parm_string(-1, "torture", "binding");
128
129         if (!binding) {
130                 printf("You must specify a ncacn binding string\n");
131                 return NT_STATUS_INVALID_PARAMETER;
132         }
133
134         status = dcerpc_pipe_connect(parent_ctx, 
135                                      p, binding, pipe_uuid, pipe_version,
136                                      cmdline_credentials);
137  
138         return status;
139 }
140
141 /* open a rpc connection to a specific transport */
142 NTSTATUS torture_rpc_connection_transport(TALLOC_CTX *parent_ctx, 
143                                           struct dcerpc_pipe **p, 
144                                           const char *pipe_name,
145                                           const char *pipe_uuid, 
146                                           uint32_t pipe_version,
147                                           enum dcerpc_transport_t transport)
148 {
149         NTSTATUS status;
150         const char *binding = lp_parm_string(-1, "torture", "binding");
151         struct dcerpc_binding *b;
152         TALLOC_CTX *mem_ctx = talloc_named(parent_ctx, 0, "torture_rpc_connection_smb");
153
154         if (!binding) {
155                 printf("You must specify a ncacn binding string\n");
156                 talloc_free(mem_ctx);
157                 return NT_STATUS_INVALID_PARAMETER;
158         }
159
160         status = dcerpc_parse_binding(mem_ctx, binding, &b);
161         if (!NT_STATUS_IS_OK(status)) {
162                 DEBUG(0,("Failed to parse dcerpc binding '%s'\n", binding));
163                 talloc_free(mem_ctx);
164                 return status;
165         }
166
167         b->transport = transport;
168
169         status = dcerpc_pipe_connect_b(mem_ctx, p, b, pipe_uuid, pipe_version,
170                                                                    cmdline_credentials);
171                                            
172         if (NT_STATUS_IS_OK(status)) {
173                 *p = talloc_reference(parent_ctx, *p);
174         } else {
175                 *p = NULL;
176         }
177         talloc_free(mem_ctx);
178         return status;
179 }
180
181 /* check if the server produced the expected error code */
182 BOOL check_error(const char *location, struct smbcli_state *c, 
183                  uint8_t eclass, uint32_t ecode, NTSTATUS nterr)
184 {
185         if (smbcli_is_dos_error(c->tree)) {
186                 uint8_t class;
187                 uint32_t num;
188
189                 /* Check DOS error */
190
191                 smbcli_dos_error(c, &class, &num);
192
193                 if (eclass != class || ecode != num) {
194                         printf("unexpected error code class=%d code=%d\n", 
195                                (int)class, (int)num);
196                         printf(" expected %d/%d %s (at %s)\n", 
197                                (int)eclass, (int)ecode, nt_errstr(nterr), location);
198                         return False;
199                 }
200
201         } else {
202                 NTSTATUS status;
203
204                 /* Check NT error */
205
206                 status = smbcli_nt_error(c->tree);
207
208                 if (NT_STATUS_V(nterr) != NT_STATUS_V(status)) {
209                         printf("unexpected error code %s\n", nt_errstr(status));
210                         printf(" expected %s (at %s)\n", nt_errstr(nterr), location);
211                         return False;
212                 }
213         }
214
215         return True;
216 }
217
218
219 static BOOL wait_lock(struct smbcli_state *c, int fnum, uint32_t offset, uint32_t len)
220 {
221         while (NT_STATUS_IS_ERR(smbcli_lock(c->tree, fnum, offset, len, -1, WRITE_LOCK))) {
222                 if (!check_error(__location__, c, ERRDOS, ERRlock, NT_STATUS_LOCK_NOT_GRANTED)) return False;
223         }
224         return True;
225 }
226
227
228 static BOOL rw_torture(struct smbcli_state *c)
229 {
230         const char *lockfname = "\\torture.lck";
231         char *fname;
232         int fnum;
233         int fnum2;
234         pid_t pid2, pid = getpid();
235         int i, j;
236         uint8_t buf[1024];
237         BOOL correct = True;
238
239         fnum2 = smbcli_open(c->tree, lockfname, O_RDWR | O_CREAT | O_EXCL, 
240                          DENY_NONE);
241         if (fnum2 == -1)
242                 fnum2 = smbcli_open(c->tree, lockfname, O_RDWR, DENY_NONE);
243         if (fnum2 == -1) {
244                 printf("open of %s failed (%s)\n", lockfname, smbcli_errstr(c->tree));
245                 return False;
246         }
247
248
249         for (i=0;i<torture_numops;i++) {
250                 uint_t n = (uint_t)random()%10;
251                 if (i % 10 == 0) {
252                         printf("%d\r", i); fflush(stdout);
253                 }
254                 asprintf(&fname, "\\torture.%u", n);
255
256                 if (!wait_lock(c, fnum2, n*sizeof(int), sizeof(int))) {
257                         return False;
258                 }
259
260                 fnum = smbcli_open(c->tree, fname, O_RDWR | O_CREAT | O_TRUNC, DENY_ALL);
261                 if (fnum == -1) {
262                         printf("open failed (%s)\n", smbcli_errstr(c->tree));
263                         correct = False;
264                         break;
265                 }
266
267                 if (smbcli_write(c->tree, fnum, 0, &pid, 0, sizeof(pid)) != sizeof(pid)) {
268                         printf("write failed (%s)\n", smbcli_errstr(c->tree));
269                         correct = False;
270                 }
271
272                 for (j=0;j<50;j++) {
273                         if (smbcli_write(c->tree, fnum, 0, buf, 
274                                       sizeof(pid)+(j*sizeof(buf)), 
275                                       sizeof(buf)) != sizeof(buf)) {
276                                 printf("write failed (%s)\n", smbcli_errstr(c->tree));
277                                 correct = False;
278                         }
279                 }
280
281                 pid2 = 0;
282
283                 if (smbcli_read(c->tree, fnum, &pid2, 0, sizeof(pid)) != sizeof(pid)) {
284                         printf("read failed (%s)\n", smbcli_errstr(c->tree));
285                         correct = False;
286                 }
287
288                 if (pid2 != pid) {
289                         printf("data corruption!\n");
290                         correct = False;
291                 }
292
293                 if (NT_STATUS_IS_ERR(smbcli_close(c->tree, fnum))) {
294                         printf("close failed (%s)\n", smbcli_errstr(c->tree));
295                         correct = False;
296                 }
297
298                 if (NT_STATUS_IS_ERR(smbcli_unlink(c->tree, fname))) {
299                         printf("unlink failed (%s)\n", smbcli_errstr(c->tree));
300                         correct = False;
301                 }
302
303                 if (NT_STATUS_IS_ERR(smbcli_unlock(c->tree, fnum2, n*sizeof(int), sizeof(int)))) {
304                         printf("unlock failed (%s)\n", smbcli_errstr(c->tree));
305                         correct = False;
306                 }
307                 free(fname);
308         }
309
310         smbcli_close(c->tree, fnum2);
311         smbcli_unlink(c->tree, lockfname);
312
313         printf("%d\n", i);
314
315         return correct;
316 }
317
318 static BOOL run_torture(struct smbcli_state *cli, int dummy)
319 {
320         BOOL ret;
321
322         ret = rw_torture(cli);
323         
324         if (!torture_close_connection(cli)) {
325                 ret = False;
326         }
327
328         return ret;
329 }
330
331
332 static BOOL rw_torture2(struct smbcli_state *c1, struct smbcli_state *c2)
333 {
334         const char *lockfname = "\\torture2.lck";
335         int fnum1;
336         int fnum2;
337         int i;
338         uint8_t buf[131072];
339         uint8_t buf_rd[131072];
340         BOOL correct = True;
341         ssize_t bytes_read, bytes_written;
342
343         if (smbcli_deltree(c1->tree, lockfname) == -1) {
344                 printf("unlink failed (%s)\n", smbcli_errstr(c1->tree));
345         }
346
347         fnum1 = smbcli_open(c1->tree, lockfname, O_RDWR | O_CREAT | O_EXCL, 
348                          DENY_NONE);
349         if (fnum1 == -1) {
350                 printf("first open read/write of %s failed (%s)\n",
351                                 lockfname, smbcli_errstr(c1->tree));
352                 return False;
353         }
354         fnum2 = smbcli_open(c2->tree, lockfname, O_RDONLY, 
355                          DENY_NONE);
356         if (fnum2 == -1) {
357                 printf("second open read-only of %s failed (%s)\n",
358                                 lockfname, smbcli_errstr(c2->tree));
359                 smbcli_close(c1->tree, fnum1);
360                 return False;
361         }
362
363         printf("Checking data integrity over %d ops\n", torture_numops);
364
365         for (i=0;i<torture_numops;i++)
366         {
367                 size_t buf_size = ((uint_t)random()%(sizeof(buf)-1))+ 1;
368                 if (i % 10 == 0) {
369                         printf("%d\r", i); fflush(stdout);
370                 }
371
372                 generate_random_buffer(buf, buf_size);
373
374                 if ((bytes_written = smbcli_write(c1->tree, fnum1, 0, buf, 0, buf_size)) != buf_size) {
375                         printf("write failed (%s)\n", smbcli_errstr(c1->tree));
376                         printf("wrote %d, expected %d\n", bytes_written, buf_size); 
377                         correct = False;
378                         break;
379                 }
380
381                 if ((bytes_read = smbcli_read(c2->tree, fnum2, buf_rd, 0, buf_size)) != buf_size) {
382                         printf("read failed (%s)\n", smbcli_errstr(c2->tree));
383                         printf("read %d, expected %d\n", bytes_read, buf_size); 
384                         correct = False;
385                         break;
386                 }
387
388                 if (memcmp(buf_rd, buf, buf_size) != 0)
389                 {
390                         printf("read/write compare failed\n");
391                         correct = False;
392                         break;
393                 }
394         }
395
396         if (NT_STATUS_IS_ERR(smbcli_close(c2->tree, fnum2))) {
397                 printf("close failed (%s)\n", smbcli_errstr(c2->tree));
398                 correct = False;
399         }
400         if (NT_STATUS_IS_ERR(smbcli_close(c1->tree, fnum1))) {
401                 printf("close failed (%s)\n", smbcli_errstr(c1->tree));
402                 correct = False;
403         }
404
405         if (NT_STATUS_IS_ERR(smbcli_unlink(c1->tree, lockfname))) {
406                 printf("unlink failed (%s)\n", smbcli_errstr(c1->tree));
407                 correct = False;
408         }
409
410         return correct;
411 }
412
413 #define BOOLSTR(b) ((b) ? "Yes" : "No")
414
415 static BOOL run_readwritetest(void)
416 {
417         struct smbcli_state *cli1, *cli2;
418         BOOL test1, test2 = True;
419
420         if (!torture_open_connection(&cli1) || !torture_open_connection(&cli2)) {
421                 return False;
422         }
423
424         printf("starting readwritetest\n");
425
426         test1 = rw_torture2(cli1, cli2);
427         printf("Passed readwritetest v1: %s\n", BOOLSTR(test1));
428
429         if (test1) {
430                 test2 = rw_torture2(cli1, cli1);
431                 printf("Passed readwritetest v2: %s\n", BOOLSTR(test2));
432         }
433
434         if (!torture_close_connection(cli1)) {
435                 test1 = False;
436         }
437
438         if (!torture_close_connection(cli2)) {
439                 test2 = False;
440         }
441
442         return (test1 && test2);
443 }
444
445 /*
446   this checks to see if a secondary tconx can use open files from an
447   earlier tconx
448  */
449 static BOOL run_tcon_test(void)
450 {
451         struct smbcli_state *cli;
452         const char *fname = "\\tcontest.tmp";
453         int fnum1;
454         uint16_t cnum1, cnum2, cnum3;
455         uint16_t vuid1, vuid2;
456         uint8_t buf[4];
457         BOOL ret = True;
458         struct smbcli_tree *tree1;
459         const char *host = lp_parm_string(-1, "torture", "host");
460         const char *share = lp_parm_string(-1, "torture", "share");
461         const char *password = lp_parm_string(-1, "torture", "password");
462
463         if (!torture_open_connection(&cli)) {
464                 return False;
465         }
466
467         printf("starting tcontest\n");
468
469         if (smbcli_deltree(cli->tree, fname) == -1) {
470                 printf("unlink of %s failed (%s)\n", fname, smbcli_errstr(cli->tree));
471         }
472
473         fnum1 = smbcli_open(cli->tree, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE);
474         if (fnum1 == -1) {
475                 printf("open of %s failed (%s)\n", fname, smbcli_errstr(cli->tree));
476                 return False;
477         }
478
479         cnum1 = cli->tree->tid;
480         vuid1 = cli->session->vuid;
481
482         memset(&buf, 0, 4); /* init buf so valgrind won't complain */
483         if (smbcli_write(cli->tree, fnum1, 0, buf, 130, 4) != 4) {
484                 printf("initial write failed (%s)\n", smbcli_errstr(cli->tree));
485                 return False;
486         }
487
488         tree1 = cli->tree;      /* save old tree connection */
489         if (NT_STATUS_IS_ERR(smbcli_send_tconX(cli, share, "?????", password))) {
490                 printf("%s refused 2nd tree connect (%s)\n", host,
491                            smbcli_errstr(cli->tree));
492                 smbcli_shutdown(cli);
493                 return False;
494         }
495
496         cnum2 = cli->tree->tid;
497         cnum3 = MAX(cnum1, cnum2) + 1; /* any invalid number */
498         vuid2 = cli->session->vuid + 1;
499
500         /* try a write with the wrong tid */
501         cli->tree->tid = cnum2;
502
503         if (smbcli_write(cli->tree, fnum1, 0, buf, 130, 4) == 4) {
504                 printf("* server allows write with wrong TID\n");
505                 ret = False;
506         } else {
507                 printf("server fails write with wrong TID : %s\n", smbcli_errstr(cli->tree));
508         }
509
510
511         /* try a write with an invalid tid */
512         cli->tree->tid = cnum3;
513
514         if (smbcli_write(cli->tree, fnum1, 0, buf, 130, 4) == 4) {
515                 printf("* server allows write with invalid TID\n");
516                 ret = False;
517         } else {
518                 printf("server fails write with invalid TID : %s\n", smbcli_errstr(cli->tree));
519         }
520
521         /* try a write with an invalid vuid */
522         cli->session->vuid = vuid2;
523         cli->tree->tid = cnum1;
524
525         if (smbcli_write(cli->tree, fnum1, 0, buf, 130, 4) == 4) {
526                 printf("* server allows write with invalid VUID\n");
527                 ret = False;
528         } else {
529                 printf("server fails write with invalid VUID : %s\n", smbcli_errstr(cli->tree));
530         }
531
532         cli->session->vuid = vuid1;
533         cli->tree->tid = cnum1;
534
535         if (NT_STATUS_IS_ERR(smbcli_close(cli->tree, fnum1))) {
536                 printf("close failed (%s)\n", smbcli_errstr(cli->tree));
537                 return False;
538         }
539
540         cli->tree->tid = cnum2;
541
542         if (NT_STATUS_IS_ERR(smbcli_tdis(cli))) {
543                 printf("secondary tdis failed (%s)\n", smbcli_errstr(cli->tree));
544                 return False;
545         }
546
547         cli->tree = tree1;  /* restore initial tree */
548         cli->tree->tid = cnum1;
549
550         if (!torture_close_connection(cli)) {
551                 return False;
552         }
553
554         return ret;
555 }
556
557
558
559 static BOOL tcon_devtest(struct smbcli_state *cli,
560                          const char *myshare, const char *devtype,
561                          NTSTATUS expected_error)
562 {
563         BOOL status;
564         BOOL ret;
565         const char *password = lp_parm_string(-1, "torture", "password");
566
567         status = NT_STATUS_IS_OK(smbcli_send_tconX(cli, myshare, devtype, 
568                                                 password));
569
570         printf("Trying share %s with devtype %s\n", myshare, devtype);
571
572         if (NT_STATUS_IS_OK(expected_error)) {
573                 if (status) {
574                         ret = True;
575                 } else {
576                         printf("tconX to share %s with type %s "
577                                "should have succeeded but failed\n",
578                                myshare, devtype);
579                         ret = False;
580                 }
581                 smbcli_tdis(cli);
582         } else {
583                 if (status) {
584                         printf("tconx to share %s with type %s "
585                                "should have failed but succeeded\n",
586                                myshare, devtype);
587                         ret = False;
588                 } else {
589                         if (NT_STATUS_EQUAL(smbcli_nt_error(cli->tree),
590                                             expected_error)) {
591                                 ret = True;
592                         } else {
593                                 printf("Returned unexpected error\n");
594                                 ret = False;
595                         }
596                 }
597         }
598         return ret;
599 }
600
601 /*
602  checks for correct tconX support
603  */
604 static BOOL run_tcon_devtype_test(void)
605 {
606         struct smbcli_state *cli1 = NULL;
607         NTSTATUS status;
608         BOOL ret = True;
609         const char *host = lp_parm_string(-1, "torture", "host");
610         const char *share = lp_parm_string(-1, "torture", "share");
611         
612         status = smbcli_full_connection(NULL,
613                                         &cli1, host, 
614                                         share, NULL,
615                                         cmdline_credentials);
616
617         if (!NT_STATUS_IS_OK(status)) {
618                 printf("could not open connection\n");
619                 return False;
620         }
621
622         if (!tcon_devtest(cli1, "IPC$", "A:", NT_STATUS_BAD_DEVICE_TYPE))
623                 ret = False;
624
625         if (!tcon_devtest(cli1, "IPC$", "?????", NT_STATUS_OK))
626                 ret = False;
627
628         if (!tcon_devtest(cli1, "IPC$", "LPT:", NT_STATUS_BAD_DEVICE_TYPE))
629                 ret = False;
630
631         if (!tcon_devtest(cli1, "IPC$", "IPC", NT_STATUS_OK))
632                 ret = False;
633                         
634         if (!tcon_devtest(cli1, "IPC$", "FOOBA", NT_STATUS_BAD_DEVICE_TYPE))
635                 ret = False;
636
637         if (!tcon_devtest(cli1, share, "A:", NT_STATUS_OK))
638                 ret = False;
639
640         if (!tcon_devtest(cli1, share, "?????", NT_STATUS_OK))
641                 ret = False;
642
643         if (!tcon_devtest(cli1, share, "LPT:", NT_STATUS_BAD_DEVICE_TYPE))
644                 ret = False;
645
646         if (!tcon_devtest(cli1, share, "IPC", NT_STATUS_BAD_DEVICE_TYPE))
647                 ret = False;
648                         
649         if (!tcon_devtest(cli1, share, "FOOBA", NT_STATUS_BAD_DEVICE_TYPE))
650                 ret = False;
651
652         smbcli_shutdown(cli1);
653
654         if (ret)
655                 printf("Passed tcondevtest\n");
656
657         return ret;
658 }
659
660
661 /*
662 test whether fnums and tids open on one VC are available on another (a major
663 security hole)
664 */
665 static BOOL run_fdpasstest(void)
666 {
667         struct smbcli_state *cli1, *cli2;
668         const char *fname = "\\fdpass.tst";
669         int fnum1, oldtid;
670         uint8_t buf[1024];
671
672         if (!torture_open_connection(&cli1) || !torture_open_connection(&cli2)) {
673                 return False;
674         }
675
676         printf("starting fdpasstest\n");
677
678         smbcli_unlink(cli1->tree, fname);
679
680         printf("Opening a file on connection 1\n");
681
682         fnum1 = smbcli_open(cli1->tree, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE);
683         if (fnum1 == -1) {
684                 printf("open of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
685                 return False;
686         }
687
688         printf("writing to file on connection 1\n");
689
690         if (smbcli_write(cli1->tree, fnum1, 0, "hello world\n", 0, 13) != 13) {
691                 printf("write failed (%s)\n", smbcli_errstr(cli1->tree));
692                 return False;
693         }
694
695         oldtid = cli2->tree->tid;
696         cli2->session->vuid = cli1->session->vuid;
697         cli2->tree->tid = cli1->tree->tid;
698         cli2->session->pid = cli1->session->pid;
699
700         printf("reading from file on connection 2\n");
701
702         if (smbcli_read(cli2->tree, fnum1, buf, 0, 13) == 13) {
703                 printf("read succeeded! nasty security hole [%s]\n",
704                        buf);
705                 return False;
706         }
707
708         smbcli_close(cli1->tree, fnum1);
709         smbcli_unlink(cli1->tree, fname);
710
711         cli2->tree->tid = oldtid;
712
713         torture_close_connection(cli1);
714         torture_close_connection(cli2);
715
716         printf("finished fdpasstest\n");
717         return True;
718 }
719
720
721 /*
722 test the timing of deferred open requests
723 */
724 static BOOL run_deferopen(struct smbcli_state *cli, int dummy)
725 {
726         const char *fname = "\\defer_open_test.dat";
727         int retries=4;
728         int i = 0;
729         BOOL correct = True;
730
731         if (retries <= 0) {
732                 printf("failed to connect\n");
733                 return False;
734         }
735
736         printf("Testing deferred open requests.\n");
737
738         while (i < 4) {
739                 int fnum = -1;
740
741                 do {
742                         struct timeval tv;
743                         tv = timeval_current();
744                         fnum = smbcli_nt_create_full(cli->tree, fname, 0, 
745                                                      SEC_RIGHTS_FILE_ALL,
746                                                      FILE_ATTRIBUTE_NORMAL, 
747                                                      NTCREATEX_SHARE_ACCESS_NONE,
748                                                      NTCREATEX_DISP_OPEN_IF, 0, 0);
749                         if (fnum != -1) {
750                                 break;
751                         }
752                         if (NT_STATUS_EQUAL(smbcli_nt_error(cli->tree),NT_STATUS_SHARING_VIOLATION)) {
753                                 double e = timeval_elapsed(&tv);
754                                 if (e < 0.5 || e > 1.5) {
755                                         fprintf(stderr,"Timing incorrect %.2f violation\n",
756                                                 e);
757                                 }
758                         }
759                 } while (NT_STATUS_EQUAL(smbcli_nt_error(cli->tree),NT_STATUS_SHARING_VIOLATION));
760
761                 if (fnum == -1) {
762                         fprintf(stderr,"Failed to open %s, error=%s\n", fname, smbcli_errstr(cli->tree));
763                         return False;
764                 }
765
766                 printf("pid %u open %d\n", getpid(), i);
767
768                 sleep(10);
769                 i++;
770                 if (NT_STATUS_IS_ERR(smbcli_close(cli->tree, fnum))) {
771                         fprintf(stderr,"Failed to close %s, error=%s\n", fname, smbcli_errstr(cli->tree));
772                         return False;
773                 }
774                 sleep(2);
775         }
776
777         if (NT_STATUS_IS_ERR(smbcli_unlink(cli->tree, fname))) {
778                 /* All until the last unlink will fail with sharing violation. */
779                 if (!NT_STATUS_EQUAL(smbcli_nt_error(cli->tree),NT_STATUS_SHARING_VIOLATION)) {
780                         printf("unlink of %s failed (%s)\n", fname, smbcli_errstr(cli->tree));
781                         correct = False;
782                 }
783         }
784
785         printf("deferred test finished\n");
786         if (!torture_close_connection(cli)) {
787                 correct = False;
788         }
789         return correct;
790 }
791
792 /*
793 test how many open files this server supports on the one socket
794 */
795 static BOOL run_maxfidtest(struct smbcli_state *cli, int dummy)
796 {
797 #define MAXFID_TEMPLATE "\\maxfid\\fid%d\\maxfid.%d.%d"
798         char *fname;
799         int fnums[0x11000], i;
800         int retries=4, maxfid;
801         BOOL correct = True;
802
803         if (retries <= 0) {
804                 printf("failed to connect\n");
805                 return False;
806         }
807
808         if (smbcli_deltree(cli->tree, "\\maxfid") == -1) {
809                 printf("Failed to deltree \\maxfid - %s\n",
810                        smbcli_errstr(cli->tree));
811                 return False;
812         }
813         if (NT_STATUS_IS_ERR(smbcli_mkdir(cli->tree, "\\maxfid"))) {
814                 printf("Failed to mkdir \\maxfid, error=%s\n", 
815                        smbcli_errstr(cli->tree));
816                 return False;
817         }
818
819         printf("Testing maximum number of open files\n");
820
821         for (i=0; i<0x11000; i++) {
822                 if (i % 1000 == 0) {
823                         asprintf(&fname, "\\maxfid\\fid%d", i/1000);
824                         if (NT_STATUS_IS_ERR(smbcli_mkdir(cli->tree, fname))) {
825                                 printf("Failed to mkdir %s, error=%s\n", 
826                                        fname, smbcli_errstr(cli->tree));
827                                 return False;
828                         }
829                         free(fname);
830                 }
831                 asprintf(&fname, MAXFID_TEMPLATE, i/1000, i,(int)getpid());
832                 if ((fnums[i] = smbcli_open(cli->tree, fname, 
833                                         O_RDWR|O_CREAT|O_TRUNC, DENY_NONE)) ==
834                     -1) {
835                         printf("open of %s failed (%s)\n", 
836                                fname, smbcli_errstr(cli->tree));
837                         printf("maximum fnum is %d\n", i);
838                         break;
839                 }
840                 free(fname);
841                 printf("%6d\r", i);
842         }
843         printf("%6d\n", i);
844         i--;
845
846         maxfid = i;
847
848         printf("cleaning up\n");
849         for (i=0;i<maxfid/2;i++) {
850                 asprintf(&fname, MAXFID_TEMPLATE, i/1000, i,(int)getpid());
851                 if (NT_STATUS_IS_ERR(smbcli_close(cli->tree, fnums[i]))) {
852                         printf("Close of fnum %d failed - %s\n", fnums[i], smbcli_errstr(cli->tree));
853                 }
854                 if (NT_STATUS_IS_ERR(smbcli_unlink(cli->tree, fname))) {
855                         printf("unlink of %s failed (%s)\n", 
856                                fname, smbcli_errstr(cli->tree));
857                         correct = False;
858                 }
859                 free(fname);
860
861                 asprintf(&fname, MAXFID_TEMPLATE, (maxfid-i)/1000, maxfid-i,(int)getpid());
862                 if (NT_STATUS_IS_ERR(smbcli_close(cli->tree, fnums[maxfid-i]))) {
863                         printf("Close of fnum %d failed - %s\n", fnums[maxfid-i], smbcli_errstr(cli->tree));
864                 }
865                 if (NT_STATUS_IS_ERR(smbcli_unlink(cli->tree, fname))) {
866                         printf("unlink of %s failed (%s)\n", 
867                                fname, smbcli_errstr(cli->tree));
868                         correct = False;
869                 }
870                 free(fname);
871
872                 printf("%6d %6d\r", i, maxfid-i);
873         }
874         printf("%6d\n", 0);
875
876         if (smbcli_deltree(cli->tree, "\\maxfid") == -1) {
877                 printf("Failed to deltree \\maxfid - %s\n",
878                        smbcli_errstr(cli->tree));
879                 return False;
880         }
881
882         printf("maxfid test finished\n");
883         if (!torture_close_connection(cli)) {
884                 correct = False;
885         }
886         return correct;
887 #undef MAXFID_TEMPLATE
888 }
889
890 /* send smb negprot commands, not reading the response */
891 static BOOL run_negprot_nowait(void)
892 {
893         int i;
894         struct smbcli_state *cli, *cli2;
895         BOOL correct = True;
896
897         printf("starting negprot nowait test\n");
898
899         cli = open_nbt_connection();
900         if (!cli) {
901                 return False;
902         }
903
904         printf("Filling send buffer\n");
905
906         for (i=0;i<10000;i++) {
907                 struct smbcli_request *req;
908                 time_t t1 = time(NULL);
909                 req = smb_raw_negotiate_send(cli->transport, PROTOCOL_NT1);
910                 while (req->state == SMBCLI_REQUEST_SEND && time(NULL) < t1+5) {
911                         smbcli_transport_process(cli->transport);
912                 }
913                 if (req->state == SMBCLI_REQUEST_ERROR) {
914                         printf("Failed to fill pipe - %s\n", nt_errstr(req->status));
915                         torture_close_connection(cli);
916                         return correct;
917                 }
918                 if (req->state == SMBCLI_REQUEST_SEND) {
919                         break;
920                 }
921         }
922
923         if (i == 10000) {
924                 printf("send buffer failed to fill\n");
925                 if (!torture_close_connection(cli)) {
926                         correct = False;
927                 }
928                 return correct;
929         }
930
931         printf("send buffer filled after %d requests\n", i);
932
933         printf("Opening secondary connection\n");
934         if (!torture_open_connection(&cli2)) {
935                 return False;
936         }
937
938         if (!torture_close_connection(cli)) {
939                 correct = False;
940         }
941
942         if (!torture_close_connection(cli2)) {
943                 correct = False;
944         }
945
946         printf("finished negprot nowait test\n");
947
948         return correct;
949 }
950
951
952 /*
953   This checks how the getatr calls works
954 */
955 static BOOL run_attrtest(void)
956 {
957         struct smbcli_state *cli;
958         int fnum;
959         time_t t, t2;
960         const char *fname = "\\attrib123456789.tst";
961         BOOL correct = True;
962
963         printf("starting attrib test\n");
964
965         if (!torture_open_connection(&cli)) {
966                 return False;
967         }
968
969         smbcli_unlink(cli->tree, fname);
970         fnum = smbcli_open(cli->tree, fname, 
971                         O_RDWR | O_CREAT | O_TRUNC, DENY_NONE);
972         smbcli_close(cli->tree, fnum);
973
974         if (NT_STATUS_IS_ERR(smbcli_getatr(cli->tree, fname, NULL, NULL, &t))) {
975                 printf("getatr failed (%s)\n", smbcli_errstr(cli->tree));
976                 correct = False;
977         }
978
979         printf("New file time is %s", ctime(&t));
980
981         if (abs(t - time(NULL)) > 60*60*24*10) {
982                 printf("ERROR: SMBgetatr bug. time is %s",
983                        ctime(&t));
984                 t = time(NULL);
985                 correct = False;
986         }
987
988         t2 = t-60*60*24; /* 1 day ago */
989
990         printf("Setting file time to %s", ctime(&t2));
991
992         if (NT_STATUS_IS_ERR(smbcli_setatr(cli->tree, fname, 0, t2))) {
993                 printf("setatr failed (%s)\n", smbcli_errstr(cli->tree));
994                 correct = True;
995         }
996
997         if (NT_STATUS_IS_ERR(smbcli_getatr(cli->tree, fname, NULL, NULL, &t))) {
998                 printf("getatr failed (%s)\n", smbcli_errstr(cli->tree));
999                 correct = True;
1000         }
1001
1002         printf("Retrieved file time as %s", ctime(&t));
1003
1004         if (t != t2) {
1005                 printf("ERROR: getatr/setatr bug. times are\n%s",
1006                        ctime(&t));
1007                 printf("%s", ctime(&t2));
1008                 correct = True;
1009         }
1010
1011         smbcli_unlink(cli->tree, fname);
1012
1013         if (!torture_close_connection(cli)) {
1014                 correct = False;
1015         }
1016
1017         printf("attrib test finished\n");
1018
1019         return correct;
1020 }
1021
1022
1023 /*
1024   This checks a couple of trans2 calls
1025 */
1026 static BOOL run_trans2test(void)
1027 {
1028         struct smbcli_state *cli;
1029         int fnum;
1030         size_t size;
1031         time_t c_time, a_time, m_time, w_time, m_time2;
1032         const char *fname = "\\trans2.tst";
1033         const char *dname = "\\trans2";
1034         const char *fname2 = "\\trans2\\trans2.tst";
1035         const char *pname;
1036         BOOL correct = True;
1037
1038         printf("starting trans2 test\n");
1039
1040         if (!torture_open_connection(&cli)) {
1041                 return False;
1042         }
1043
1044         smbcli_unlink(cli->tree, fname);
1045
1046         printf("Testing qfileinfo\n");
1047         
1048         fnum = smbcli_open(cli->tree, fname, 
1049                         O_RDWR | O_CREAT | O_TRUNC, DENY_NONE);
1050         if (NT_STATUS_IS_ERR(smbcli_qfileinfo(cli->tree, fnum, NULL, &size, &c_time, &a_time, &m_time,
1051                            NULL, NULL))) {
1052                 printf("ERROR: qfileinfo failed (%s)\n", smbcli_errstr(cli->tree));
1053                 correct = False;
1054         }
1055
1056         printf("Testing NAME_INFO\n");
1057
1058         if (NT_STATUS_IS_ERR(smbcli_qfilename(cli->tree, fnum, &pname))) {
1059                 printf("ERROR: qfilename failed (%s)\n", smbcli_errstr(cli->tree));
1060                 correct = False;
1061         }
1062
1063         if (!pname || strcmp(pname, fname)) {
1064                 printf("qfilename gave different name? [%s] [%s]\n",
1065                        fname, pname);
1066                 correct = False;
1067         }
1068
1069         smbcli_close(cli->tree, fnum);
1070         smbcli_unlink(cli->tree, fname);
1071
1072         fnum = smbcli_open(cli->tree, fname, 
1073                         O_RDWR | O_CREAT | O_TRUNC, DENY_NONE);
1074         if (fnum == -1) {
1075                 printf("open of %s failed (%s)\n", fname, smbcli_errstr(cli->tree));
1076                 return False;
1077         }
1078         smbcli_close(cli->tree, fnum);
1079
1080         printf("Checking for sticky create times\n");
1081
1082         if (NT_STATUS_IS_ERR(smbcli_qpathinfo(cli->tree, fname, &c_time, &a_time, &m_time, &size, NULL))) {
1083                 printf("ERROR: qpathinfo failed (%s)\n", smbcli_errstr(cli->tree));
1084                 correct = False;
1085         } else {
1086                 if (c_time != m_time) {
1087                         printf("create time=%s", ctime(&c_time));
1088                         printf("modify time=%s", ctime(&m_time));
1089                         printf("This system appears to have sticky create times\n");
1090                 }
1091                 if (a_time % (60*60) == 0) {
1092                         printf("access time=%s", ctime(&a_time));
1093                         printf("This system appears to set a midnight access time\n");
1094                         correct = False;
1095                 }
1096
1097                 if (abs(m_time - time(NULL)) > 60*60*24*7) {
1098                         printf("ERROR: totally incorrect times - maybe word reversed? mtime=%s", ctime(&m_time));
1099                         correct = False;
1100                 }
1101         }
1102
1103
1104         smbcli_unlink(cli->tree, fname);
1105         fnum = smbcli_open(cli->tree, fname, 
1106                         O_RDWR | O_CREAT | O_TRUNC, DENY_NONE);
1107         smbcli_close(cli->tree, fnum);
1108         if (NT_STATUS_IS_ERR(smbcli_qpathinfo2(cli->tree, fname, &c_time, &a_time, &m_time, &w_time, &size, NULL, NULL))) {
1109                 printf("ERROR: qpathinfo2 failed (%s)\n", smbcli_errstr(cli->tree));
1110                 correct = False;
1111         } else {
1112                 if (w_time < 60*60*24*2) {
1113                         printf("write time=%s", ctime(&w_time));
1114                         printf("This system appears to set a initial 0 write time\n");
1115                         correct = False;
1116                 }
1117         }
1118
1119         smbcli_unlink(cli->tree, fname);
1120
1121
1122         /* check if the server updates the directory modification time
1123            when creating a new file */
1124         if (NT_STATUS_IS_ERR(smbcli_mkdir(cli->tree, dname))) {
1125                 printf("ERROR: mkdir failed (%s)\n", smbcli_errstr(cli->tree));
1126                 correct = False;
1127         }
1128         sleep(3);
1129         if (NT_STATUS_IS_ERR(smbcli_qpathinfo2(cli->tree, "\\trans2\\", &c_time, &a_time, &m_time, &w_time, &size, NULL, NULL))) {
1130                 printf("ERROR: qpathinfo2 failed (%s)\n", smbcli_errstr(cli->tree));
1131                 correct = False;
1132         }
1133
1134         fnum = smbcli_open(cli->tree, fname2, 
1135                         O_RDWR | O_CREAT | O_TRUNC, DENY_NONE);
1136         smbcli_write(cli->tree, fnum,  0, &fnum, 0, sizeof(fnum));
1137         smbcli_close(cli->tree, fnum);
1138         if (NT_STATUS_IS_ERR(smbcli_qpathinfo2(cli->tree, "\\trans2\\", &c_time, &a_time, &m_time2, &w_time, &size, NULL, NULL))) {
1139                 printf("ERROR: qpathinfo2 failed (%s)\n", smbcli_errstr(cli->tree));
1140                 correct = False;
1141         } else {
1142                 if (m_time2 == m_time) {
1143                         printf("This system does not update directory modification times\n");
1144                         correct = False;
1145                 }
1146         }
1147         smbcli_unlink(cli->tree, fname2);
1148         smbcli_rmdir(cli->tree, dname);
1149
1150         if (!torture_close_connection(cli)) {
1151                 correct = False;
1152         }
1153
1154         printf("trans2 test finished\n");
1155
1156         return correct;
1157 }
1158
1159
1160
1161 /* FIRST_DESIRED_ACCESS   0xf019f */
1162 #define FIRST_DESIRED_ACCESS   SEC_FILE_READ_DATA|SEC_FILE_WRITE_DATA|SEC_FILE_APPEND_DATA|\
1163                                SEC_FILE_READ_EA|                           /* 0xf */ \
1164                                SEC_FILE_WRITE_EA|SEC_FILE_READ_ATTRIBUTE|     /* 0x90 */ \
1165                                SEC_FILE_WRITE_ATTRIBUTE|                  /* 0x100 */ \
1166                                SEC_STD_DELETE|SEC_STD_READ_CONTROL|\
1167                                SEC_STD_WRITE_DAC|SEC_STD_WRITE_OWNER     /* 0xf0000 */
1168 /* SECOND_DESIRED_ACCESS  0xe0080 */
1169 #define SECOND_DESIRED_ACCESS  SEC_FILE_READ_ATTRIBUTE|                   /* 0x80 */ \
1170                                SEC_STD_READ_CONTROL|SEC_STD_WRITE_DAC|\
1171                                SEC_STD_WRITE_OWNER                      /* 0xe0000 */
1172
1173 #if 0
1174 #define THIRD_DESIRED_ACCESS   FILE_READ_ATTRIBUTE|                   /* 0x80 */ \
1175                                READ_CONTROL|WRITE_DAC|\
1176                                SEC_FILE_READ_DATA|\
1177                                WRITE_OWNER                      /* */
1178 #endif
1179
1180 /*
1181   Test ntcreate calls made by xcopy
1182  */
1183 static BOOL run_xcopy(void)
1184 {
1185         struct smbcli_state *cli1;
1186         const char *fname = "\\test.txt";
1187         BOOL correct = True;
1188         int fnum1, fnum2;
1189
1190         printf("starting xcopy test\n");
1191         
1192         if (!torture_open_connection(&cli1)) {
1193                 return False;
1194         }
1195         
1196         fnum1 = smbcli_nt_create_full(cli1->tree, fname, 0,
1197                                       FIRST_DESIRED_ACCESS, 
1198                                       FILE_ATTRIBUTE_ARCHIVE,
1199                                       NTCREATEX_SHARE_ACCESS_NONE, 
1200                                       NTCREATEX_DISP_OVERWRITE_IF, 
1201                                       0x4044, 0);
1202
1203         if (fnum1 == -1) {
1204                 printf("First open failed - %s\n", smbcli_errstr(cli1->tree));
1205                 return False;
1206         }
1207
1208         fnum2 = smbcli_nt_create_full(cli1->tree, fname, 0,
1209                                    SECOND_DESIRED_ACCESS, 0,
1210                                    NTCREATEX_SHARE_ACCESS_READ|NTCREATEX_SHARE_ACCESS_WRITE|NTCREATEX_SHARE_ACCESS_DELETE, NTCREATEX_DISP_OPEN, 
1211                                    0x200000, 0);
1212         if (fnum2 == -1) {
1213                 printf("second open failed - %s\n", smbcli_errstr(cli1->tree));
1214                 return False;
1215         }
1216         
1217         if (!torture_close_connection(cli1)) {
1218                 correct = False;
1219         }
1220         
1221         return correct;
1222 }
1223
1224
1225 /*
1226   see how many RPC pipes we can open at once
1227 */
1228 static BOOL run_pipe_number(void)
1229 {
1230         struct smbcli_state *cli1;
1231         const char *pipe_name = "\\WKSSVC";
1232         int fnum;
1233         int num_pipes = 0;
1234
1235         printf("starting pipenumber test\n");
1236         if (!torture_open_connection(&cli1)) {
1237                 return False;
1238         }
1239
1240         while(1) {
1241                 fnum = smbcli_nt_create_full(cli1->tree, pipe_name, 0, SEC_FILE_READ_DATA, FILE_ATTRIBUTE_NORMAL,
1242                                    NTCREATEX_SHARE_ACCESS_READ|NTCREATEX_SHARE_ACCESS_WRITE, NTCREATEX_DISP_OPEN_IF, 0, 0);
1243
1244                 if (fnum == -1) {
1245                         printf("Open of pipe %s failed with error (%s)\n", pipe_name, smbcli_errstr(cli1->tree));
1246                         break;
1247                 }
1248                 num_pipes++;
1249                 printf("%d\r", num_pipes);
1250                 fflush(stdout);
1251         }
1252
1253         printf("pipe_number test - we can open %d %s pipes.\n", num_pipes, pipe_name );
1254         torture_close_connection(cli1);
1255         return True;
1256 }
1257
1258
1259
1260
1261 /*
1262   open N connections to the server and just hold them open
1263   used for testing performance when there are N idle users
1264   already connected
1265  */
1266  static BOOL torture_holdcon(void)
1267 {
1268         int i;
1269         struct smbcli_state **cli;
1270         int num_dead = 0;
1271
1272         printf("Opening %d connections\n", torture_numops);
1273         
1274         cli = malloc_array_p(struct smbcli_state *, torture_numops);
1275
1276         for (i=0;i<torture_numops;i++) {
1277                 if (!torture_open_connection(&cli[i])) {
1278                         return False;
1279                 }
1280                 printf("opened %d connections\r", i);
1281                 fflush(stdout);
1282         }
1283
1284         printf("\nStarting pings\n");
1285
1286         while (1) {
1287                 for (i=0;i<torture_numops;i++) {
1288                         NTSTATUS status;
1289                         if (cli[i]) {
1290                                 status = smbcli_chkpath(cli[i]->tree, "\\");
1291                                 if (!NT_STATUS_IS_OK(status)) {
1292                                         printf("Connection %d is dead\n", i);
1293                                         cli[i] = NULL;
1294                                         num_dead++;
1295                                 }
1296                                 usleep(100);
1297                         }
1298                 }
1299
1300                 if (num_dead == torture_numops) {
1301                         printf("All connections dead - finishing\n");
1302                         break;
1303                 }
1304
1305                 printf(".");
1306                 fflush(stdout);
1307         }
1308
1309         return True;
1310 }
1311
1312 /*
1313   Try with a wrong vuid and check error message.
1314  */
1315
1316 static BOOL run_vuidtest(void)
1317 {
1318         struct smbcli_state *cli;
1319         const char *fname = "\\vuid.tst";
1320         int fnum;
1321         size_t size;
1322         time_t c_time, a_time, m_time;
1323         BOOL correct = True;
1324
1325         uint16_t orig_vuid;
1326         NTSTATUS result;
1327
1328         printf("starting vuid test\n");
1329
1330         if (!torture_open_connection(&cli)) {
1331                 return False;
1332         }
1333
1334         smbcli_unlink(cli->tree, fname);
1335
1336         fnum = smbcli_open(cli->tree, fname, 
1337                         O_RDWR | O_CREAT | O_TRUNC, DENY_NONE);
1338
1339         orig_vuid = cli->session->vuid;
1340
1341         cli->session->vuid += 1234;
1342
1343         printf("Testing qfileinfo with wrong vuid\n");
1344         
1345         if (NT_STATUS_IS_OK(result = smbcli_qfileinfo(cli->tree, fnum, NULL,
1346                                                    &size, &c_time, &a_time,
1347                                                    &m_time, NULL, NULL))) {
1348                 printf("ERROR: qfileinfo passed with wrong vuid\n");
1349                 correct = False;
1350         }
1351
1352         if ( (cli->transport->error.etype != ETYPE_DOS) ||
1353              (cli->transport->error.e.dos.eclass != ERRSRV) ||
1354              (cli->transport->error.e.dos.ecode != ERRbaduid) ) {
1355                 printf("ERROR: qfileinfo should have returned DOS error "
1356                        "ERRSRV:ERRbaduid\n  but returned %s\n",
1357                        smbcli_errstr(cli->tree));
1358                 correct = False;
1359         }
1360
1361         cli->session->vuid -= 1234;
1362
1363         if (NT_STATUS_IS_ERR(smbcli_close(cli->tree, fnum))) {
1364                 printf("close failed (%s)\n", smbcli_errstr(cli->tree));
1365                 correct = False;
1366         }
1367
1368         smbcli_unlink(cli->tree, fname);
1369
1370         if (!torture_close_connection(cli)) {
1371                 correct = False;
1372         }
1373
1374         printf("vuid test finished\n");
1375
1376         return correct;
1377 }
1378
1379 /*
1380   Test open mode returns on read-only files.
1381  */
1382  static BOOL run_opentest(void)
1383 {
1384         static struct smbcli_state *cli1;
1385         static struct smbcli_state *cli2;
1386         const char *fname = "\\readonly.file";
1387         int fnum1, fnum2;
1388         uint8_t buf[20];
1389         size_t fsize;
1390         BOOL correct = True;
1391         char *tmp_path;
1392         int failures = 0;
1393
1394         printf("starting open test\n");
1395         
1396         if (!torture_open_connection(&cli1)) {
1397                 return False;
1398         }
1399         
1400         smbcli_setatr(cli1->tree, fname, 0, 0);
1401         smbcli_unlink(cli1->tree, fname);
1402         
1403         fnum1 = smbcli_open(cli1->tree, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE);
1404         if (fnum1 == -1) {
1405                 printf("open of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1406                 return False;
1407         }
1408
1409         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1410                 printf("close2 failed (%s)\n", smbcli_errstr(cli1->tree));
1411                 return False;
1412         }
1413         
1414         if (NT_STATUS_IS_ERR(smbcli_setatr(cli1->tree, fname, FILE_ATTRIBUTE_READONLY, 0))) {
1415                 printf("smbcli_setatr failed (%s)\n", smbcli_errstr(cli1->tree));
1416                 CHECK_MAX_FAILURES(error_test1);
1417                 return False;
1418         }
1419         
1420         fnum1 = smbcli_open(cli1->tree, fname, O_RDONLY, DENY_WRITE);
1421         if (fnum1 == -1) {
1422                 printf("open of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1423                 CHECK_MAX_FAILURES(error_test1);
1424                 return False;
1425         }
1426         
1427         /* This will fail - but the error should be ERRnoaccess, not ERRbadshare. */
1428         fnum2 = smbcli_open(cli1->tree, fname, O_RDWR, DENY_ALL);
1429         
1430         if (check_error(__location__, cli1, ERRDOS, ERRnoaccess, 
1431                         NT_STATUS_ACCESS_DENIED)) {
1432                 printf("correct error code ERRDOS/ERRnoaccess returned\n");
1433         }
1434         
1435         printf("finished open test 1\n");
1436 error_test1:
1437         smbcli_close(cli1->tree, fnum1);
1438         
1439         /* Now try not readonly and ensure ERRbadshare is returned. */
1440         
1441         smbcli_setatr(cli1->tree, fname, 0, 0);
1442         
1443         fnum1 = smbcli_open(cli1->tree, fname, O_RDONLY, DENY_WRITE);
1444         if (fnum1 == -1) {
1445                 printf("open of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1446                 return False;
1447         }
1448         
1449         /* This will fail - but the error should be ERRshare. */
1450         fnum2 = smbcli_open(cli1->tree, fname, O_RDWR, DENY_ALL);
1451         
1452         if (check_error(__location__, cli1, ERRDOS, ERRbadshare, 
1453                         NT_STATUS_SHARING_VIOLATION)) {
1454                 printf("correct error code ERRDOS/ERRbadshare returned\n");
1455         }
1456         
1457         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1458                 printf("close2 failed (%s)\n", smbcli_errstr(cli1->tree));
1459                 return False;
1460         }
1461         
1462         smbcli_unlink(cli1->tree, fname);
1463         
1464         printf("finished open test 2\n");
1465         
1466         /* Test truncate open disposition on file opened for read. */
1467         
1468         fnum1 = smbcli_open(cli1->tree, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE);
1469         if (fnum1 == -1) {
1470                 printf("(3) open (1) of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1471                 return False;
1472         }
1473         
1474         /* write 20 bytes. */
1475         
1476         memset(buf, '\0', 20);
1477
1478         if (smbcli_write(cli1->tree, fnum1, 0, buf, 0, 20) != 20) {
1479                 printf("write failed (%s)\n", smbcli_errstr(cli1->tree));
1480                 correct = False;
1481         }
1482
1483         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1484                 printf("(3) close1 failed (%s)\n", smbcli_errstr(cli1->tree));
1485                 return False;
1486         }
1487         
1488         /* Ensure size == 20. */
1489         if (NT_STATUS_IS_ERR(smbcli_getatr(cli1->tree, fname, NULL, &fsize, NULL))) {
1490                 printf("(3) getatr failed (%s)\n", smbcli_errstr(cli1->tree));
1491                 CHECK_MAX_FAILURES(error_test3);
1492                 return False;
1493         }
1494         
1495         if (fsize != 20) {
1496                 printf("(3) file size != 20\n");
1497                 CHECK_MAX_FAILURES(error_test3);
1498                 return False;
1499         }
1500
1501         /* Now test if we can truncate a file opened for readonly. */
1502         
1503         fnum1 = smbcli_open(cli1->tree, fname, O_RDONLY|O_TRUNC, DENY_NONE);
1504         if (fnum1 == -1) {
1505                 printf("(3) open (2) of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1506                 CHECK_MAX_FAILURES(error_test3);
1507                 return False;
1508         }
1509         
1510         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1511                 printf("close2 failed (%s)\n", smbcli_errstr(cli1->tree));
1512                 return False;
1513         }
1514
1515         /* Ensure size == 0. */
1516         if (NT_STATUS_IS_ERR(smbcli_getatr(cli1->tree, fname, NULL, &fsize, NULL))) {
1517                 printf("(3) getatr failed (%s)\n", smbcli_errstr(cli1->tree));
1518                 CHECK_MAX_FAILURES(error_test3);
1519                 return False;
1520         }
1521
1522         if (fsize != 0) {
1523                 printf("(3) file size != 0\n");
1524                 CHECK_MAX_FAILURES(error_test3);
1525                 return False;
1526         }
1527         printf("finished open test 3\n");
1528 error_test3:    
1529         smbcli_unlink(cli1->tree, fname);
1530
1531
1532         printf("testing ctemp\n");
1533         fnum1 = smbcli_ctemp(cli1->tree, "\\", &tmp_path);
1534         if (fnum1 == -1) {
1535                 printf("ctemp failed (%s)\n", smbcli_errstr(cli1->tree));
1536                 CHECK_MAX_FAILURES(error_test4);
1537                 return False;
1538         }
1539         printf("ctemp gave path %s\n", tmp_path);
1540         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1541                 printf("close of temp failed (%s)\n", smbcli_errstr(cli1->tree));
1542         }
1543         if (NT_STATUS_IS_ERR(smbcli_unlink(cli1->tree, tmp_path))) {
1544                 printf("unlink of temp failed (%s)\n", smbcli_errstr(cli1->tree));
1545         }
1546 error_test4:    
1547         /* Test the non-io opens... */
1548
1549         if (!torture_open_connection(&cli2)) {
1550                 return False;
1551         }
1552         
1553         smbcli_setatr(cli2->tree, fname, 0, 0);
1554         smbcli_unlink(cli2->tree, fname);
1555         
1556         printf("TEST #1 testing 2 non-io opens (no delete)\n");
1557         
1558         fnum1 = smbcli_nt_create_full(cli1->tree, fname, 0, SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1559                                    NTCREATEX_SHARE_ACCESS_NONE, NTCREATEX_DISP_OVERWRITE_IF, 0, 0);
1560
1561         if (fnum1 == -1) {
1562                 printf("test 1 open 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1563                 CHECK_MAX_FAILURES(error_test10);
1564                 return False;
1565         }
1566
1567         fnum2 = smbcli_nt_create_full(cli2->tree, fname, 0, SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1568                                    NTCREATEX_SHARE_ACCESS_NONE, NTCREATEX_DISP_OPEN_IF, 0, 0);
1569         if (fnum2 == -1) {
1570                 printf("test 1 open 2 of %s failed (%s)\n", fname, smbcli_errstr(cli2->tree));
1571                 CHECK_MAX_FAILURES(error_test10);
1572                 return False;
1573         }
1574
1575         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1576                 printf("test 1 close 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1577                 return False;
1578         }
1579         if (NT_STATUS_IS_ERR(smbcli_close(cli2->tree, fnum2))) {
1580                 printf("test 1 close 2 of %s failed (%s)\n", fname, smbcli_errstr(cli2->tree));
1581                 return False;
1582         }
1583
1584         printf("non-io open test #1 passed.\n");
1585 error_test10:
1586         smbcli_unlink(cli1->tree, fname);
1587
1588         printf("TEST #2 testing 2 non-io opens (first with delete)\n");
1589         
1590         fnum1 = smbcli_nt_create_full(cli1->tree, fname, 0, SEC_STD_DELETE|SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1591                                    NTCREATEX_SHARE_ACCESS_NONE, NTCREATEX_DISP_OVERWRITE_IF, 0, 0);
1592
1593         if (fnum1 == -1) {
1594                 printf("test 2 open 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1595                 CHECK_MAX_FAILURES(error_test20);
1596                 return False;
1597         }
1598
1599         fnum2 = smbcli_nt_create_full(cli2->tree, fname, 0, SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1600                                    NTCREATEX_SHARE_ACCESS_NONE, NTCREATEX_DISP_OPEN_IF, 0, 0);
1601
1602         if (fnum2 == -1) {
1603                 printf("test 2 open 2 of %s failed (%s)\n", fname, smbcli_errstr(cli2->tree));
1604                 CHECK_MAX_FAILURES(error_test20);
1605                 return False;
1606         }
1607
1608         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1609                 printf("test 1 close 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1610                 return False;
1611         }
1612         if (NT_STATUS_IS_ERR(smbcli_close(cli2->tree, fnum2))) {
1613                 printf("test 1 close 2 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1614                 return False;
1615         }
1616
1617         printf("non-io open test #2 passed.\n");
1618 error_test20:
1619         smbcli_unlink(cli1->tree, fname);
1620
1621         printf("TEST #3 testing 2 non-io opens (second with delete)\n");
1622         
1623         fnum1 = smbcli_nt_create_full(cli1->tree, fname, 0, SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1624                                    NTCREATEX_SHARE_ACCESS_NONE, NTCREATEX_DISP_OVERWRITE_IF, 0, 0);
1625
1626         if (fnum1 == -1) {
1627                 printf("test 3 open 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1628                 CHECK_MAX_FAILURES(error_test30);
1629                 return False;
1630         }
1631
1632         fnum2 = smbcli_nt_create_full(cli2->tree, fname, 0, SEC_STD_DELETE|SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1633                                    NTCREATEX_SHARE_ACCESS_NONE, NTCREATEX_DISP_OPEN_IF, 0, 0);
1634
1635         if (fnum2 == -1) {
1636                 printf("test 3 open 2 of %s failed (%s)\n", fname, smbcli_errstr(cli2->tree));
1637                 CHECK_MAX_FAILURES(error_test30);
1638                 return False;
1639         }
1640
1641         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1642                 printf("test 3 close 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1643                 return False;
1644         }
1645         if (NT_STATUS_IS_ERR(smbcli_close(cli2->tree, fnum2))) {
1646                 printf("test 3 close 2 of %s failed (%s)\n", fname, smbcli_errstr(cli2->tree));
1647                 return False;
1648         }
1649
1650         printf("non-io open test #3 passed.\n");
1651 error_test30:
1652         smbcli_unlink(cli1->tree, fname);
1653
1654         printf("TEST #4 testing 2 non-io opens (both with delete)\n");
1655         
1656         fnum1 = smbcli_nt_create_full(cli1->tree, fname, 0, SEC_STD_DELETE|SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1657                                    NTCREATEX_SHARE_ACCESS_NONE, NTCREATEX_DISP_OVERWRITE_IF, 0, 0);
1658
1659         if (fnum1 == -1) {
1660                 printf("test 4 open 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1661                 CHECK_MAX_FAILURES(error_test40);
1662                 return False;
1663         }
1664
1665         fnum2 = smbcli_nt_create_full(cli2->tree, fname, 0, SEC_STD_DELETE|SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1666                                    NTCREATEX_SHARE_ACCESS_NONE, NTCREATEX_DISP_OPEN_IF, 0, 0);
1667
1668         if (fnum2 != -1) {
1669                 printf("test 4 open 2 of %s SUCCEEDED - should have failed (%s)\n", fname, smbcli_errstr(cli2->tree));
1670                 CHECK_MAX_FAILURES(error_test40);
1671                 return False;
1672         }
1673
1674         printf("test 4 open 2 of %s gave %s (correct error should be %s)\n", fname, smbcli_errstr(cli2->tree), "sharing violation");
1675
1676         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1677                 printf("test 4 close 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1678                 return False;
1679         }
1680
1681         printf("non-io open test #4 passed.\n");
1682 error_test40:
1683         smbcli_unlink(cli1->tree, fname);
1684
1685         printf("TEST #5 testing 2 non-io opens (both with delete - both with file share delete)\n");
1686         
1687         fnum1 = smbcli_nt_create_full(cli1->tree, fname, 0, SEC_STD_DELETE|SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1688                                    NTCREATEX_SHARE_ACCESS_DELETE, NTCREATEX_DISP_OVERWRITE_IF, 0, 0);
1689
1690         if (fnum1 == -1) {
1691                 printf("test 5 open 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1692                 CHECK_MAX_FAILURES(error_test50);
1693                 return False;
1694         }
1695
1696         fnum2 = smbcli_nt_create_full(cli2->tree, fname, 0, SEC_STD_DELETE|SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1697                                    NTCREATEX_SHARE_ACCESS_DELETE, NTCREATEX_DISP_OPEN_IF, 0, 0);
1698
1699         if (fnum2 == -1) {
1700                 printf("test 5 open 2 of %s failed (%s)\n", fname, smbcli_errstr(cli2->tree));
1701                 CHECK_MAX_FAILURES(error_test50);
1702                 return False;
1703         }
1704
1705         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1706                 printf("test 5 close 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1707                 return False;
1708         }
1709
1710         if (NT_STATUS_IS_ERR(smbcli_close(cli2->tree, fnum2))) {
1711                 printf("test 5 close 2 of %s failed (%s)\n", fname, smbcli_errstr(cli2->tree));
1712                 return False;
1713         }
1714
1715         printf("non-io open test #5 passed.\n");
1716 error_test50:
1717         printf("TEST #6 testing 1 non-io open, one io open\n");
1718         
1719         smbcli_unlink(cli1->tree, fname);
1720
1721         fnum1 = smbcli_nt_create_full(cli1->tree, fname, 0, SEC_FILE_READ_DATA, FILE_ATTRIBUTE_NORMAL,
1722                                    NTCREATEX_SHARE_ACCESS_NONE, NTCREATEX_DISP_OVERWRITE_IF, 0, 0);
1723
1724         if (fnum1 == -1) {
1725                 printf("test 6 open 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1726                 CHECK_MAX_FAILURES(error_test60);
1727                 return False;
1728         }
1729
1730         fnum2 = smbcli_nt_create_full(cli2->tree, fname, 0, SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1731                                    NTCREATEX_SHARE_ACCESS_READ, NTCREATEX_DISP_OPEN_IF, 0, 0);
1732
1733         if (fnum2 == -1) {
1734                 printf("test 6 open 2 of %s failed (%s)\n", fname, smbcli_errstr(cli2->tree));
1735                 CHECK_MAX_FAILURES(error_test60);
1736                 return False;
1737         }
1738
1739         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1740                 printf("test 6 close 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1741                 return False;
1742         }
1743
1744         if (NT_STATUS_IS_ERR(smbcli_close(cli2->tree, fnum2))) {
1745                 printf("test 6 close 2 of %s failed (%s)\n", fname, smbcli_errstr(cli2->tree));
1746                 return False;
1747         }
1748
1749         printf("non-io open test #6 passed.\n");
1750 error_test60:
1751         printf("TEST #7 testing 1 non-io open, one io open with delete\n");
1752
1753         smbcli_unlink(cli1->tree, fname);
1754
1755         fnum1 = smbcli_nt_create_full(cli1->tree, fname, 0, SEC_FILE_READ_DATA, FILE_ATTRIBUTE_NORMAL,
1756                                    NTCREATEX_SHARE_ACCESS_NONE, NTCREATEX_DISP_OVERWRITE_IF, 0, 0);
1757
1758         if (fnum1 == -1) {
1759                 printf("test 7 open 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1760                 CHECK_MAX_FAILURES(error_test70);
1761                 return False;
1762         }
1763
1764         fnum2 = smbcli_nt_create_full(cli2->tree, fname, 0, SEC_STD_DELETE|SEC_FILE_READ_ATTRIBUTE, FILE_ATTRIBUTE_NORMAL,
1765                                    NTCREATEX_SHARE_ACCESS_READ|NTCREATEX_SHARE_ACCESS_DELETE, NTCREATEX_DISP_OPEN_IF, 0, 0);
1766
1767         if (fnum2 != -1) {
1768                 printf("test 7 open 2 of %s SUCCEEDED - should have failed (%s)\n", fname, smbcli_errstr(cli2->tree));
1769                 CHECK_MAX_FAILURES(error_test70);
1770                 return False;
1771         }
1772
1773         printf("test 7 open 2 of %s gave %s (correct error should be %s)\n", fname, smbcli_errstr(cli2->tree), "sharing violation");
1774
1775         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1776                 printf("test 7 close 1 of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1777                 return False;
1778         }
1779
1780         printf("non-io open test #7 passed.\n");
1781
1782 error_test70:
1783
1784         printf("TEST #8 testing one normal open, followed by lock, followed by open with truncate\n");
1785
1786         smbcli_unlink(cli1->tree, fname);
1787
1788         fnum1 = smbcli_open(cli1->tree, fname, O_RDWR|O_CREAT, DENY_NONE);
1789         if (fnum1 == -1) {
1790                 printf("(8) open (1) of %s failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1791                 return False;
1792         }
1793         
1794         /* write 20 bytes. */
1795         
1796         memset(buf, '\0', 20);
1797
1798         if (smbcli_write(cli1->tree, fnum1, 0, buf, 0, 20) != 20) {
1799                 printf("(8) write failed (%s)\n", smbcli_errstr(cli1->tree));
1800                 correct = False;
1801         }
1802
1803         /* Ensure size == 20. */
1804         if (NT_STATUS_IS_ERR(smbcli_getatr(cli1->tree, fname, NULL, &fsize, NULL))) {
1805                 printf("(8) getatr (1) failed (%s)\n", smbcli_errstr(cli1->tree));
1806                 CHECK_MAX_FAILURES(error_test80);
1807                 return False;
1808         }
1809         
1810         if (fsize != 20) {
1811                 printf("(8) file size != 20\n");
1812                 CHECK_MAX_FAILURES(error_test80);
1813                 return False;
1814         }
1815
1816         /* Get an exclusive lock on the open file. */
1817         if (NT_STATUS_IS_ERR(smbcli_lock(cli1->tree, fnum1, 0, 4, 0, WRITE_LOCK))) {
1818                 printf("(8) lock1 failed (%s)\n", smbcli_errstr(cli1->tree));
1819                 CHECK_MAX_FAILURES(error_test80);
1820                 return False;
1821         }
1822
1823         fnum2 = smbcli_open(cli1->tree, fname, O_RDWR|O_TRUNC, DENY_NONE);
1824         if (fnum1 == -1) {
1825                 printf("(8) open (2) of %s with truncate failed (%s)\n", fname, smbcli_errstr(cli1->tree));
1826                 return False;
1827         }
1828
1829         /* Ensure size == 0. */
1830         if (NT_STATUS_IS_ERR(smbcli_getatr(cli1->tree, fname, NULL, &fsize, NULL))) {
1831                 printf("(8) getatr (2) failed (%s)\n", smbcli_errstr(cli1->tree));
1832                 CHECK_MAX_FAILURES(error_test80);
1833                 return False;
1834         }
1835         
1836         if (fsize != 0) {
1837                 printf("(8) file size != 0\n");
1838                 CHECK_MAX_FAILURES(error_test80);
1839                 return False;
1840         }
1841
1842         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum1))) {
1843                 printf("(8) close1 failed (%s)\n", smbcli_errstr(cli1->tree));
1844                 return False;
1845         }
1846         
1847         if (NT_STATUS_IS_ERR(smbcli_close(cli1->tree, fnum2))) {
1848                 printf("(8) close1 failed (%s)\n", smbcli_errstr(cli1->tree));
1849                 return False;
1850         }
1851         
1852 error_test80:
1853
1854         printf("open test #8 passed.\n");
1855
1856         smbcli_unlink(cli1->tree, fname);
1857
1858         if (!torture_close_connection(cli1)) {
1859                 correct = False;
1860         }
1861         if (!torture_close_connection(cli2)) {
1862                 correct = False;
1863         }
1864         
1865         return correct;
1866 }
1867
1868
1869 /*
1870   sees what IOCTLs are supported
1871  */
1872 BOOL torture_ioctl_test(void)
1873 {
1874         struct smbcli_state *cli;
1875         uint16_t device, function;
1876         int fnum;
1877         const char *fname = "\\ioctl.dat";
1878         NTSTATUS status;
1879         union smb_ioctl parms;
1880         TALLOC_CTX *mem_ctx;
1881
1882         if (!torture_open_connection(&cli)) {
1883                 return False;
1884         }
1885
1886         mem_ctx = talloc_init("ioctl_test");
1887
1888         printf("starting ioctl test\n");
1889
1890         smbcli_unlink(cli->tree, fname);
1891
1892         fnum = smbcli_open(cli->tree, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE);
1893         if (fnum == -1) {
1894                 printf("open of %s failed (%s)\n", fname, smbcli_errstr(cli->tree));
1895                 return False;
1896         }
1897
1898         parms.ioctl.level = RAW_IOCTL_IOCTL;
1899         parms.ioctl.in.fnum = fnum;
1900         parms.ioctl.in.request = IOCTL_QUERY_JOB_INFO;
1901         status = smb_raw_ioctl(cli->tree, mem_ctx, &parms);
1902         printf("ioctl job info: %s\n", smbcli_errstr(cli->tree));
1903
1904         for (device=0;device<0x100;device++) {
1905                 printf("testing device=0x%x\n", device);
1906                 for (function=0;function<0x100;function++) {
1907                         parms.ioctl.in.request = (device << 16) | function;
1908                         status = smb_raw_ioctl(cli->tree, mem_ctx, &parms);
1909
1910                         if (NT_STATUS_IS_OK(status)) {
1911                                 printf("ioctl device=0x%x function=0x%x OK : %d bytes\n", 
1912                                         device, function, parms.ioctl.out.blob.length);
1913                         }
1914                 }
1915         }
1916
1917         if (!torture_close_connection(cli)) {
1918                 return False;
1919         }
1920
1921         return True;
1922 }
1923
1924
1925 /*
1926   tries variants of chkpath
1927  */
1928 BOOL torture_chkpath_test(void)
1929 {
1930         struct smbcli_state *cli;
1931         int fnum;
1932         BOOL ret;
1933
1934         if (!torture_open_connection(&cli)) {
1935                 return False;
1936         }
1937
1938         printf("starting chkpath test\n");
1939
1940         printf("Testing valid and invalid paths\n");
1941
1942         /* cleanup from an old run */
1943         smbcli_rmdir(cli->tree, "\\chkpath.dir\\dir2");
1944         smbcli_unlink(cli->tree, "\\chkpath.dir\\*");
1945         smbcli_rmdir(cli->tree, "\\chkpath.dir");
1946
1947         if (NT_STATUS_IS_ERR(smbcli_mkdir(cli->tree, "\\chkpath.dir"))) {
1948                 printf("mkdir1 failed : %s\n", smbcli_errstr(cli->tree));
1949                 return False;
1950         }
1951
1952         if (NT_STATUS_IS_ERR(smbcli_mkdir(cli->tree, "\\chkpath.dir\\dir2"))) {
1953                 printf("mkdir2 failed : %s\n", smbcli_errstr(cli->tree));
1954                 return False;
1955         }
1956
1957         fnum = smbcli_open(cli->tree, "\\chkpath.dir\\foo.txt", O_RDWR|O_CREAT|O_EXCL, DENY_NONE);
1958         if (fnum == -1) {
1959                 printf("open1 failed (%s)\n", smbcli_errstr(cli->tree));
1960                 return False;
1961         }
1962         smbcli_close(cli->tree, fnum);
1963
1964         if (NT_STATUS_IS_ERR(smbcli_chkpath(cli->tree, "\\chkpath.dir"))) {
1965                 printf("chkpath1 failed: %s\n", smbcli_errstr(cli->tree));
1966                 ret = False;
1967         }
1968
1969         if (NT_STATUS_IS_ERR(smbcli_chkpath(cli->tree, "\\chkpath.dir\\dir2"))) {
1970                 printf("chkpath2 failed: %s\n", smbcli_errstr(cli->tree));
1971                 ret = False;
1972         }
1973
1974         if (NT_STATUS_IS_ERR(smbcli_chkpath(cli->tree, "\\chkpath.dir\\foo.txt"))) {
1975                 ret = check_error(__location__, cli, ERRDOS, ERRbadpath, 
1976                                   NT_STATUS_NOT_A_DIRECTORY);
1977         } else {
1978                 printf("* chkpath on a file should fail\n");
1979                 ret = False;
1980         }
1981
1982         if (NT_STATUS_IS_ERR(smbcli_chkpath(cli->tree, "\\chkpath.dir\\bar.txt"))) {
1983                 ret = check_error(__location__, cli, ERRDOS, ERRbadfile, 
1984                                   NT_STATUS_OBJECT_NAME_NOT_FOUND);
1985         } else {
1986                 printf("* chkpath on a non existent file should fail\n");
1987                 ret = False;
1988         }
1989
1990         if (NT_STATUS_IS_ERR(smbcli_chkpath(cli->tree, "\\chkpath.dir\\dirxx\\bar.txt"))) {
1991                 ret = check_error(__location__, cli, ERRDOS, ERRbadpath, 
1992                                   NT_STATUS_OBJECT_PATH_NOT_FOUND);
1993         } else {
1994                 printf("* chkpath on a non existent component should fail\n");
1995                 ret = False;
1996         }
1997
1998         smbcli_rmdir(cli->tree, "\\chkpath.dir\\dir2");
1999         smbcli_unlink(cli->tree, "\\chkpath.dir\\*");
2000         smbcli_rmdir(cli->tree, "\\chkpath.dir");
2001
2002         if (!torture_close_connection(cli)) {
2003                 return False;
2004         }
2005
2006         return ret;
2007 }
2008
2009
2010 static void sigcont(int sig)
2011 {
2012 }
2013
2014 double torture_create_procs(BOOL (*fn)(struct smbcli_state *, int), BOOL *result)
2015 {
2016         int i, status;
2017         volatile pid_t *child_status;
2018         volatile BOOL *child_status_out;
2019         int synccount;
2020         int tries = 8;
2021         double start_time_limit = 10 + (torture_nprocs * 1.5);
2022         char **unc_list = NULL;
2023         const char *p;
2024         int num_unc_names = 0;
2025         struct timeval tv;
2026
2027         *result = True;
2028
2029         synccount = 0;
2030
2031         signal(SIGCONT, sigcont);
2032
2033         child_status = (volatile pid_t *)shm_setup(sizeof(pid_t)*torture_nprocs);
2034         if (!child_status) {
2035                 printf("Failed to setup shared memory\n");
2036                 return -1;
2037         }
2038
2039         child_status_out = (volatile BOOL *)shm_setup(sizeof(BOOL)*torture_nprocs);
2040         if (!child_status_out) {
2041                 printf("Failed to setup result status shared memory\n");
2042                 return -1;
2043         }
2044
2045         p = lp_parm_string(-1, "torture", "unclist");
2046         if (p) {
2047                 unc_list = file_lines_load(p, &num_unc_names);
2048                 if (!unc_list || num_unc_names <= 0) {
2049                         printf("Failed to load unc names list from '%s'\n", p);
2050                         exit(1);
2051                 }
2052         }
2053
2054         for (i = 0; i < torture_nprocs; i++) {
2055                 child_status[i] = 0;
2056                 child_status_out[i] = True;
2057         }
2058
2059         tv = timeval_current();
2060
2061         for (i=0;i<torture_nprocs;i++) {
2062                 procnum = i;
2063                 if (fork() == 0) {
2064                         char *myname;
2065                         const char *hostname=NULL, *sharename;
2066
2067                         pid_t mypid = getpid();
2068                         srandom(((int)mypid) ^ ((int)time(NULL)));
2069
2070                         asprintf(&myname, "CLIENT%d", i);
2071                         lp_set_cmdline("netbios name", myname);
2072                         free(myname);
2073
2074
2075                         if (unc_list) {
2076                                 if (!smbcli_parse_unc(unc_list[i % num_unc_names],
2077                                                       NULL, &hostname, &sharename)) {
2078                                         printf("Failed to parse UNC name %s\n",
2079                                                unc_list[i % num_unc_names]);
2080                                         exit(1);
2081                                 }
2082                         }
2083
2084                         while (1) {
2085                                 if (hostname) {
2086                                         if (torture_open_connection_share(&current_cli,
2087                                                                           hostname, 
2088                                                                           sharename)) {
2089                                                 break;
2090                                         }
2091                                 } else if (torture_open_connection(&current_cli)) {
2092                                                 break;
2093                                 }
2094                                 if (tries-- == 0) {
2095                                         printf("pid %d failed to start\n", (int)getpid());
2096                                         _exit(1);
2097                                 }
2098                                 msleep(100);    
2099                         }
2100
2101                         child_status[i] = getpid();
2102
2103                         pause();
2104
2105                         if (child_status[i]) {
2106                                 printf("Child %d failed to start!\n", i);
2107                                 child_status_out[i] = 1;
2108                                 _exit(1);
2109                         }
2110
2111                         child_status_out[i] = fn(current_cli, i);
2112                         _exit(0);
2113                 }
2114         }
2115
2116         do {
2117                 synccount = 0;
2118                 for (i=0;i<torture_nprocs;i++) {
2119                         if (child_status[i]) synccount++;
2120                 }
2121                 if (synccount == torture_nprocs) break;
2122                 msleep(100);
2123         } while (timeval_elapsed(&tv) < start_time_limit);
2124
2125         if (synccount != torture_nprocs) {
2126                 printf("FAILED TO START %d CLIENTS (started %d)\n", torture_nprocs, synccount);
2127                 *result = False;
2128                 return timeval_elapsed(&tv);
2129         }
2130
2131         printf("Starting %d clients\n", torture_nprocs);
2132
2133         /* start the client load */
2134         tv = timeval_current();
2135         for (i=0;i<torture_nprocs;i++) {
2136                 child_status[i] = 0;
2137         }
2138
2139         printf("%d clients started\n", torture_nprocs);
2140
2141         kill(0, SIGCONT);
2142
2143         for (i=0;i<torture_nprocs;i++) {
2144                 int ret;
2145                 while ((ret=sys_waitpid(0, &status, 0)) == -1 && errno == EINTR) /* noop */ ;
2146                 if (ret == -1 || WEXITSTATUS(status) != 0) {
2147                         *result = False;
2148                 }
2149         }
2150
2151         printf("\n");
2152         
2153         for (i=0;i<torture_nprocs;i++) {
2154                 if (!child_status_out[i]) {
2155                         *result = False;
2156                 }
2157         }
2158         return timeval_elapsed(&tv);
2159 }
2160
2161 #define FLAG_MULTIPROC 1
2162
2163 static struct {
2164         const char *name;
2165         BOOL (*fn)(void);
2166         BOOL (*multi_fn)(struct smbcli_state *, int );
2167 } torture_ops[] = {
2168         /* base tests */
2169         {"BASE-FDPASS", run_fdpasstest, 0},
2170         {"BASE-LOCK1",  torture_locktest1,  0},
2171         {"BASE-LOCK2",  torture_locktest2,  0},
2172         {"BASE-LOCK3",  torture_locktest3,  0},
2173         {"BASE-LOCK4",  torture_locktest4,  0},
2174         {"BASE-LOCK5",  torture_locktest5,  0},
2175         {"BASE-LOCK6",  torture_locktest6,  0},
2176         {"BASE-LOCK7",  torture_locktest7,  0},
2177         {"BASE-UNLINK", torture_unlinktest, 0},
2178         {"BASE-ATTR",   run_attrtest,   0},
2179         {"BASE-TRANS2", run_trans2test, 0},
2180         {"BASE-NEGNOWAIT", run_negprot_nowait, 0},
2181         {"BASE-DIR1",  torture_dirtest1, 0},
2182         {"BASE-DIR2",  torture_dirtest2, 0},
2183         {"BASE-DENY1",  torture_denytest1, 0},
2184         {"BASE-DENY2",  torture_denytest2, 0},
2185         {"BASE-DENY3",  torture_denytest3, 0},
2186         {"BASE-DENYDOS",  torture_denydos_sharing, 0},
2187         {"BASE-NTDENY1",  NULL, torture_ntdenytest1},
2188         {"BASE-NTDENY2",  torture_ntdenytest2, 0},
2189         {"BASE-TCON",  run_tcon_test, 0},
2190         {"BASE-TCONDEV",  run_tcon_devtype_test, 0},
2191         {"BASE-VUID", run_vuidtest, 0},
2192         {"BASE-RW1",  run_readwritetest, 0},
2193         {"BASE-OPEN", run_opentest, 0},
2194         {"BASE-DEFER_OPEN", NULL, run_deferopen},
2195         {"BASE-XCOPY", run_xcopy, 0},
2196         {"BASE-RENAME", torture_test_rename, 0},
2197         {"BASE-DELETE", torture_test_delete, 0},
2198         {"BASE-PROPERTIES", torture_test_properties, 0},
2199         {"BASE-MANGLE", torture_mangle, 0},
2200         {"BASE-OPENATTR", torture_openattrtest, 0},
2201         {"BASE-CHARSET", torture_charset, 0},
2202         {"BASE-CHKPATH",  torture_chkpath_test, 0},
2203         {"BASE-SECLEAK",  torture_sec_leak, 0},
2204         {"BASE-DISCONNECT",  torture_disconnect, 0},
2205         {"BASE-DELAYWRITE", torture_delay_write, 0},
2206
2207         /* benchmarking tests */
2208         {"BENCH-HOLDCON",  torture_holdcon, 0},
2209         {"BENCH-NBENCH",  torture_nbench, 0},
2210         {"BENCH-TORTURE", NULL, run_torture},
2211         {"BENCH-NBT",     torture_bench_nbt, 0},
2212         {"BENCH-WINS",    torture_bench_wins, 0},
2213         {"BENCH-RPC",     torture_bench_rpc, 0},
2214         {"BENCH-CLDAP",   torture_bench_cldap, 0},
2215
2216         /* RAW smb tests */
2217         {"RAW-QFSINFO", torture_raw_qfsinfo, 0},
2218         {"RAW-QFILEINFO", torture_raw_qfileinfo, 0},
2219         {"RAW-SFILEINFO", torture_raw_sfileinfo, 0},
2220         {"RAW-SFILEINFO-BUG", torture_raw_sfileinfo_bug, 0},
2221         {"RAW-SEARCH", torture_raw_search, 0},
2222         {"RAW-CLOSE", torture_raw_close, 0},
2223         {"RAW-OPEN", torture_raw_open, 0},
2224         {"RAW-MKDIR", torture_raw_mkdir, 0},
2225         {"RAW-OPLOCK", torture_raw_oplock, 0},
2226         {"RAW-NOTIFY", torture_raw_notify, 0},
2227         {"RAW-MUX", torture_raw_mux, 0},
2228         {"RAW-IOCTL", torture_raw_ioctl, 0},
2229         {"RAW-CHKPATH", torture_raw_chkpath, 0},
2230         {"RAW-UNLINK", torture_raw_unlink, 0},
2231         {"RAW-READ", torture_raw_read, 0},
2232         {"RAW-WRITE", torture_raw_write, 0},
2233         {"RAW-LOCK", torture_raw_lock, 0},
2234         {"RAW-CONTEXT", torture_raw_context, 0},
2235         {"RAW-RENAME", torture_raw_rename, 0},
2236         {"RAW-SEEK", torture_raw_seek, 0},
2237         {"RAW-EAS", torture_raw_eas, 0},
2238         {"RAW-STREAMS", torture_raw_streams, 0},
2239         {"RAW-ACLS", torture_raw_acls, 0},
2240         {"RAW-RAP", torture_raw_rap, 0},
2241         {"RAW-COMPOSITE", torture_raw_composite, 0},
2242
2243         /* protocol scanners */
2244         {"SCAN-TRANS2", torture_trans2_scan, 0},
2245         {"SCAN-NTTRANS", torture_nttrans_scan, 0},
2246         {"SCAN-ALIASES", torture_trans2_aliases, 0},
2247         {"SCAN-SMB", torture_smb_scan, 0},
2248         {"SCAN-MAXFID", NULL, run_maxfidtest},
2249         {"SCAN-UTABLE", torture_utable, 0},
2250         {"SCAN-CASETABLE", torture_casetable, 0},
2251         {"SCAN-PIPE_NUMBER", run_pipe_number, 0},
2252         {"SCAN-IOCTL",  torture_ioctl_test, 0},
2253         {"SCAN-RAP",  torture_rap_scan, 0},
2254
2255         /* rpc testers */
2256         {"RPC-LSA", torture_rpc_lsa, 0},
2257         {"RPC-ECHO", torture_rpc_echo, 0},
2258         {"RPC-DFS", torture_rpc_dfs, 0},
2259         {"RPC-SPOOLSS", torture_rpc_spoolss, 0},
2260         {"RPC-SAMR", torture_rpc_samr, 0},
2261         {"RPC-UNIXINFO", torture_rpc_unixinfo, 0},
2262         {"RPC-NETLOGON", torture_rpc_netlogon, 0},
2263         {"RPC-SAMLOGON", torture_rpc_samlogon, 0},
2264         {"RPC-SAMSYNC", torture_rpc_samsync, 0},
2265         {"RPC-SCHANNEL", torture_rpc_schannel, 0},
2266         {"RPC-WKSSVC", torture_rpc_wkssvc, 0},
2267         {"RPC-SRVSVC", torture_rpc_srvsvc, 0},
2268         {"RPC-SVCCTL", torture_rpc_svcctl, 0},
2269         {"RPC-ATSVC", torture_rpc_atsvc, 0},
2270         {"RPC-EVENTLOG", torture_rpc_eventlog, 0},
2271         {"RPC-EPMAPPER", torture_rpc_epmapper, 0},
2272         {"RPC-WINREG", torture_rpc_winreg, 0},
2273         {"RPC-INITSHUTDOWN", torture_rpc_initshutdown, 0},
2274         {"RPC-OXIDRESOLVE", torture_rpc_oxidresolve, 0},
2275         {"RPC-REMACT", torture_rpc_remact, 0},
2276         {"RPC-MGMT", torture_rpc_mgmt, 0},
2277         {"RPC-SCANNER", torture_rpc_scanner, 0},
2278         {"RPC-AUTOIDL", torture_rpc_autoidl, 0},
2279         {"RPC-COUNTCALLS", torture_rpc_countcalls, 0},
2280         {"RPC-MULTIBIND", torture_multi_bind, 0},
2281         {"RPC-DRSUAPI", torture_rpc_drsuapi, 0},
2282         {"RPC-LOGIN", torture_rpc_login, 0},
2283         {"RPC-ROT", torture_rpc_rot, 0},
2284         {"RPC-DSSETUP", torture_rpc_dssetup, 0},
2285         {"RPC-ALTERCONTEXT", torture_rpc_alter_context, 0},
2286
2287         /* local (no server) testers */
2288         {"LOCAL-NTLMSSP", torture_ntlmssp_self_check, 0},
2289         {"LOCAL-ICONV", torture_local_iconv, 0},
2290         {"LOCAL-TALLOC", torture_local_talloc, 0},
2291         {"LOCAL-MESSAGING", torture_local_messaging, 0},
2292         {"LOCAL-BINDING", torture_local_binding_string, 0},
2293         {"LOCAL-IDTREE", torture_local_idtree, 0},
2294         {"LOCAL-SOCKET", torture_local_socket, 0},
2295
2296         /* COM (Component Object Model) testers */
2297         {"COM-SIMPLE", torture_com_simple, 0 },
2298
2299         /* ldap testers */
2300         {"LDAP-BASIC", torture_ldap_basic, 0},
2301         {"LDAP-CLDAP", torture_cldap, 0},
2302
2303         /* nbt tests */
2304         {"NBT-REGISTER", torture_nbt_register, 0},
2305         {"NBT-WINS", torture_nbt_wins, 0},
2306         {"NBT-WINSREPLICATION", torture_nbt_winsreplication, 0},
2307         {"NBT-DGRAM", torture_nbt_dgram, 0},
2308         
2309         /* libnet tests */
2310         {"NET-USERINFO", torture_userinfo, 0},
2311         {"NET-USERADD", torture_useradd, 0},
2312         {"NET-USERDEL", torture_userdel, 0},
2313
2314         {NULL, NULL, 0}};
2315
2316
2317
2318 /****************************************************************************
2319 run a specified test or "ALL"
2320 ****************************************************************************/
2321 static BOOL run_test(const char *name)
2322 {
2323         BOOL ret = True;
2324         int i;
2325         BOOL matched = False;
2326
2327         if (strequal(name,"ALL")) {
2328                 for (i=0;torture_ops[i].name;i++) {
2329                         if (!run_test(torture_ops[i].name)) {
2330                                 ret = False;
2331                         }
2332                 }
2333                 return ret;
2334         }
2335
2336         for (i=0;torture_ops[i].name;i++) {
2337                 if (gen_fnmatch(name, torture_ops[i].name) == 0) {
2338                         double t;
2339                         matched = True;
2340                         init_iconv();
2341                         printf("Running %s\n", torture_ops[i].name);
2342                         if (torture_ops[i].multi_fn) {
2343                                 BOOL result = False;
2344                                 t = torture_create_procs(torture_ops[i].multi_fn, 
2345                                                          &result);
2346                                 if (!result) { 
2347                                         ret = False;
2348                                         printf("TEST %s FAILED!\n", torture_ops[i].name);
2349                                 }
2350                                          
2351                         } else {
2352                                 struct timeval tv = timeval_current();
2353                                 if (!torture_ops[i].fn()) {
2354                                         ret = False;
2355                                         printf("TEST %s FAILED!\n", torture_ops[i].name);
2356                                 }
2357                                 t = timeval_elapsed(&tv);
2358                         }
2359                         printf("%s took %g secs\n\n", torture_ops[i].name, t);
2360                 }
2361         }
2362
2363         if (!matched) {
2364                 printf("Unknown torture operation '%s'\n", name);
2365         }
2366
2367         return ret;
2368 }
2369
2370
2371 static void parse_dns(const char *dns)
2372 {
2373         char *userdn, *basedn, *secret;
2374         char *p, *d;
2375
2376         /* retrievieng the userdn */
2377         p = strchr_m(dns, '#');
2378         if (!p) {
2379                 lp_set_cmdline("torture:ldap_userdn", "");
2380                 lp_set_cmdline("torture:ldap_basedn", "");
2381                 lp_set_cmdline("torture:ldap_secret", "");
2382                 return;
2383         }
2384         userdn = strndup(dns, p - dns);
2385         lp_set_cmdline("torture:ldap_userdn", userdn);
2386
2387         /* retrieve the basedn */
2388         d = p + 1;
2389         p = strchr_m(d, '#');
2390         if (!p) {
2391                 lp_set_cmdline("torture:ldap_basedn", "");
2392                 lp_set_cmdline("torture:ldap_secret", "");
2393                 return;
2394         }
2395         basedn = strndup(d, p - d);
2396         lp_set_cmdline("torture:ldap_basedn", basedn);
2397
2398         /* retrieve the secret */
2399         p = p + 1;
2400         if (!p) {
2401                 lp_set_cmdline("torture:ldap_secret", "");
2402                 return;
2403         }
2404         secret = strdup(p);
2405         lp_set_cmdline("torture:ldap_secret", secret);
2406
2407         printf ("%s - %s - %s\n", userdn, basedn, secret);
2408
2409 }
2410
2411 static void usage(poptContext pc)
2412 {
2413         int i;
2414         int perline = 5;
2415
2416         poptPrintUsage(pc, stdout, 0);
2417         printf("\n");
2418
2419         printf("The binding format is:\n\n");
2420
2421         printf("  TRANSPORT:host[flags]\n\n");
2422
2423         printf("  where TRANSPORT is either ncacn_np for SMB or ncacn_ip_tcp for RPC/TCP\n\n");
2424
2425         printf("  'host' is an IP or hostname or netbios name. If the binding string\n");
2426         printf("  identifies the server side of an endpoint, 'host' may be an empty\n");
2427         printf("  string.\n\n");
2428
2429         printf("  'flags' can include a SMB pipe name if using the ncacn_np transport or\n");
2430         printf("  a TCP port number if using the ncacn_ip_tcp transport, otherwise they\n");
2431         printf("  will be auto-determined.\n\n");
2432
2433         printf("  other recognised flags are:\n\n");
2434
2435         printf("    sign : enable ntlmssp signing\n");
2436         printf("    seal : enable ntlmssp sealing\n");
2437         printf("    connect : enable rpc connect level auth (auth, but no sign or seal)\n");
2438         printf("    validate: enable the NDR validator\n");
2439         printf("    print: enable debugging of the packets\n");
2440         printf("    bigendian: use bigendian RPC\n");
2441         printf("    padcheck: check reply data for non-zero pad bytes\n\n");
2442
2443         printf("  For example, these all connect to the samr pipe:\n\n");
2444
2445         printf("    ncacn_np:myserver\n");
2446         printf("    ncacn_np:myserver[samr]\n");
2447         printf("    ncacn_np:myserver[\\pipe\\samr]\n");
2448         printf("    ncacn_np:myserver[/pipe/samr]\n");
2449         printf("    ncacn_np:myserver[samr,sign,print]\n");
2450         printf("    ncacn_np:myserver[\\pipe\\samr,sign,seal,bigendian]\n");
2451         printf("    ncacn_np:myserver[/pipe/samr,seal,validate]\n");
2452         printf("    ncacn_np:\n");
2453         printf("    ncacn_np:[/pipe/samr]\n\n");
2454
2455         printf("    ncacn_ip_tcp:myserver\n");
2456         printf("    ncacn_ip_tcp:myserver[1024]\n");
2457         printf("    ncacn_ip_tcp:myserver[1024,sign,seal]\n\n");
2458
2459         printf("The unc format is:\n\n");
2460
2461         printf("    //server/share\n\n");
2462
2463         printf("tests are:");
2464         for (i=0;torture_ops[i].name;i++) {
2465                 if ((i%perline)==0) {
2466                         printf("\n");
2467                 }
2468                 printf("%s ", torture_ops[i].name);
2469         }
2470         printf("\n\n");
2471
2472         printf("default test is ALL\n");
2473
2474         exit(1);
2475 }
2476
2477 static BOOL is_binding_string(const char *binding_string)
2478 {
2479         TALLOC_CTX *mem_ctx = talloc_init("is_binding_string");
2480         struct dcerpc_binding *binding_struct;
2481         NTSTATUS status;
2482         
2483         status = dcerpc_parse_binding(mem_ctx, binding_string, &binding_struct);
2484
2485         talloc_free(mem_ctx);
2486         return NT_STATUS_IS_OK(status);
2487 }
2488
2489 /****************************************************************************
2490   main program
2491 ****************************************************************************/
2492  int main(int argc,char *argv[])
2493 {
2494         int opt, i;
2495         char *p;
2496         BOOL correct = True;
2497         int argc_new;
2498         char **argv_new;
2499         poptContext pc;
2500         enum {OPT_LOADFILE=1000,OPT_UNCLIST,OPT_TIMELIMIT,OPT_DNS,OPT_DANGEROUS};
2501         struct poptOption long_options[] = {
2502                 POPT_AUTOHELP
2503                 {"smb-ports",   'p', POPT_ARG_STRING, NULL,             0,      "SMB ports",    NULL},
2504                 {"seed",          0, POPT_ARG_INT,  &torture_seed,      0,      "seed",         NULL},
2505                 {"num-progs",     0, POPT_ARG_INT,  &torture_nprocs,    0,      "num progs",    NULL},
2506                 {"num-ops",       0, POPT_ARG_INT,  &torture_numops,    0,      "num ops",      NULL},
2507                 {"entries",       0, POPT_ARG_INT,  &torture_entries,   0,      "entries",      NULL},
2508                 {"use-oplocks", 'L', POPT_ARG_NONE, &use_oplocks,       0,      "use oplocks",  NULL},
2509                 {"show-all",      0, POPT_ARG_NONE, &torture_showall,   0,      "show all",     NULL},
2510                 {"loadfile",      0, POPT_ARG_STRING,   NULL,   OPT_LOADFILE,   "loadfile",     NULL},
2511                 {"unclist",       0, POPT_ARG_STRING,   NULL,   OPT_UNCLIST,    "unclist",      NULL},
2512                 {"timelimit",   't', POPT_ARG_STRING,   NULL,   OPT_TIMELIMIT,  "timelimit",    NULL},
2513                 {"failures",    'f', POPT_ARG_INT,  &torture_failures,  0,      "failures",     NULL},
2514                 {"parse-dns",   'D', POPT_ARG_STRING,   NULL,   OPT_DNS,        "parse-dns",    NULL},
2515                 {"dangerous",   'X', POPT_ARG_NONE,     NULL,   OPT_DANGEROUS,  "dangerous",    NULL},
2516                 POPT_COMMON_SAMBA
2517                 POPT_COMMON_CONNECTION
2518                 POPT_COMMON_CREDENTIALS
2519                 POPT_COMMON_VERSION
2520                 POPT_TABLEEND
2521         };
2522
2523         setup_logging("smbtorture", DEBUG_STDOUT);
2524
2525 #ifdef HAVE_SETBUFFER
2526         setbuffer(stdout, NULL, 0);
2527 #endif
2528
2529         pc = poptGetContext("smbtorture", argc, (const char **) argv, long_options, 
2530                             POPT_CONTEXT_KEEP_FIRST);
2531
2532         poptSetOtherOptionHelp(pc, "<binding>|<unc> TEST1 TEST2 ...");
2533
2534         while((opt = poptGetNextOpt(pc)) != -1) {
2535                 switch (opt) {
2536                 case OPT_LOADFILE:
2537                         lp_set_cmdline("torture:loadfile", poptGetOptArg(pc));
2538                         break;
2539                 case OPT_UNCLIST:
2540                         lp_set_cmdline("torture:unclist", poptGetOptArg(pc));
2541                         break;
2542                 case OPT_TIMELIMIT:
2543                         lp_set_cmdline("torture:timelimit", poptGetOptArg(pc));
2544                         break;
2545                 case OPT_DNS:
2546                         parse_dns(poptGetOptArg(pc));
2547                         break;
2548                 case OPT_DANGEROUS:
2549                         lp_set_cmdline("torture:dangerous", "Yes");
2550                         break;
2551                 default:
2552                         d_printf("Invalid option %s: %s\n", 
2553                                  poptBadOption(pc, 0), poptStrerror(opt));
2554                         usage(pc);
2555                         exit(1);
2556                 }
2557         }
2558
2559         lp_load(dyn_CONFIGFILE,True,False,False);
2560         load_interfaces();
2561
2562         smbtorture_init_subsystems;
2563
2564
2565         if (torture_seed == 0) {
2566                 torture_seed = time(NULL);
2567         } 
2568         printf("Using seed %d\n", torture_seed);
2569         srandom(torture_seed);
2570
2571         argv_new = discard_const_p(char *, poptGetArgs(pc));
2572
2573         argc_new = argc;
2574         for (i=0; i<argc; i++) {
2575                 if (argv_new[i] == NULL) {
2576                         argc_new = i;
2577                         break;
2578                 }
2579         }
2580
2581         if (argc_new < 3) {
2582                 usage(pc);
2583                 exit(1);
2584         }
2585
2586         for(p = argv_new[1]; *p; p++) {
2587                 if(*p == '\\')
2588                         *p = '/';
2589         }
2590
2591         /* see if its a RPC transport specifier */
2592         if (is_binding_string(argv_new[1])) {
2593                 lp_set_cmdline("torture:binding", argv_new[1]);
2594         } else {
2595                 char *binding = NULL;
2596                 const char *host = NULL, *share = NULL;
2597
2598                 if (!smbcli_parse_unc(argv_new[1], NULL, &host, &share)) {
2599                         d_printf("Invalid option: %s is not a valid torture target (share or binding string)\n\n", argv_new[1]);
2600                         usage(pc);
2601                 }
2602
2603                 lp_set_cmdline("torture:host", host);
2604                 lp_set_cmdline("torture:share", share);
2605                 asprintf(&binding, "ncacn_np:%s", host);
2606                 lp_set_cmdline("torture:binding", binding);
2607         }
2608
2609         if (argc_new == 0) {
2610                 printf("You must specify a test to run, or 'ALL'\n");
2611         } else {
2612                 for (i=2;i<argc_new;i++) {
2613                         if (!run_test(argv_new[i])) {
2614                                 correct = False;
2615                         }
2616                 }
2617         }
2618
2619         if (correct) {
2620                 return(0);
2621         } else {
2622                 return(1);
2623         }
2624 }