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