CVE-2015-7560: s3: torture3: Add new POSIX-SYMLINK-ACL test.
[metze/samba/wip.git] / source3 / torture / torture.c
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB torture tester
4    Copyright (C) Andrew Tridgell 1997-1998
5    Copyright (C) Jeremy Allison 2009
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22 #include "system/shmem.h"
23 #include "wbc_async.h"
24 #include "torture/proto.h"
25 #include "libcli/security/security.h"
26 #include "tldap.h"
27 #include "tldap_util.h"
28 #include "../librpc/gen_ndr/svcctl.h"
29 #include "../lib/util/memcache.h"
30 #include "nsswitch/winbind_client.h"
31 #include "dbwrap/dbwrap.h"
32 #include "dbwrap/dbwrap_open.h"
33 #include "dbwrap/dbwrap_rbt.h"
34 #include "talloc_dict.h"
35 #include "async_smb.h"
36 #include "libsmb/libsmb.h"
37 #include "libsmb/clirap.h"
38 #include "trans2.h"
39 #include "libsmb/nmblib.h"
40 #include "../lib/util/tevent_ntstatus.h"
41 #include "util_tdb.h"
42 #include "../libcli/smb/read_smb.h"
43 #include "../libcli/smb/smbXcli_base.h"
44 #include "lib/util/sys_rw_data.h"
45
46 extern char *optarg;
47 extern int optind;
48
49 fstring host, workgroup, share, password, username, myname;
50 static const char *sockops="TCP_NODELAY";
51 int torture_nprocs=1;
52 static int port_to_use=0;
53 int torture_numops=100;
54 int torture_blocksize=1024*1024;
55 static int procnum; /* records process count number when forking */
56 static struct cli_state *current_cli;
57 static fstring randomfname;
58 static bool use_oplocks;
59 static bool use_level_II_oplocks;
60 static const char *client_txt = "client_oplocks.txt";
61 static bool disable_spnego;
62 static bool use_kerberos;
63 static bool force_dos_errors;
64 static fstring multishare_conn_fname;
65 static bool use_multishare_conn = False;
66 static bool do_encrypt;
67 static const char *local_path = NULL;
68 static enum smb_signing_setting signing_state = SMB_SIGNING_DEFAULT;
69 char *test_filename;
70
71 bool torture_showall = False;
72
73 static double create_procs(bool (*fn)(int), bool *result);
74
75 /********************************************************************
76  Ensure a connection is encrypted.
77 ********************************************************************/
78
79 static bool force_cli_encryption(struct cli_state *c,
80                         const char *sharename)
81 {
82         uint16_t major, minor;
83         uint32_t caplow, caphigh;
84         NTSTATUS status;
85
86         if (!SERVER_HAS_UNIX_CIFS(c)) {
87                 d_printf("Encryption required and "
88                         "server that doesn't support "
89                         "UNIX extensions - failing connect\n");
90                         return false;
91         }
92
93         status = cli_unix_extensions_version(c, &major, &minor, &caplow,
94                                              &caphigh);
95         if (!NT_STATUS_IS_OK(status)) {
96                 d_printf("Encryption required and "
97                         "can't get UNIX CIFS extensions "
98                         "version from server: %s\n", nt_errstr(status));
99                 return false;
100         }
101
102         if (!(caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)) {
103                 d_printf("Encryption required and "
104                         "share %s doesn't support "
105                         "encryption.\n", sharename);
106                 return false;
107         }
108
109         if (c->use_kerberos) {
110                 status = cli_gss_smb_encryption_start(c);
111         } else {
112                 status = cli_raw_ntlm_smb_encryption_start(c,
113                                                 username,
114                                                 password,
115                                                 workgroup);
116         }
117
118         if (!NT_STATUS_IS_OK(status)) {
119                 d_printf("Encryption required and "
120                         "setup failed with error %s.\n",
121                         nt_errstr(status));
122                 return false;
123         }
124
125         return true;
126 }
127
128
129 static struct cli_state *open_nbt_connection(void)
130 {
131         struct cli_state *c;
132         NTSTATUS status;
133         int flags = 0;
134
135         if (disable_spnego) {
136                 flags |= CLI_FULL_CONNECTION_DONT_SPNEGO;
137         }
138
139         if (use_oplocks) {
140                 flags |= CLI_FULL_CONNECTION_OPLOCKS;
141         }
142
143         if (use_level_II_oplocks) {
144                 flags |= CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS;
145         }
146
147         if (use_kerberos) {
148                 flags |= CLI_FULL_CONNECTION_USE_KERBEROS;
149         }
150
151         if (force_dos_errors) {
152                 flags |= CLI_FULL_CONNECTION_FORCE_DOS_ERRORS;
153         }
154
155         status = cli_connect_nb(host, NULL, port_to_use, 0x20, myname,
156                                 signing_state, flags, &c);
157         if (!NT_STATUS_IS_OK(status)) {
158                 printf("Failed to connect with %s. Error %s\n", host, nt_errstr(status) );
159                 return NULL;
160         }
161
162         cli_set_timeout(c, 120000); /* set a really long timeout (2 minutes) */
163
164         return c;
165 }
166
167 /****************************************************************************
168  Send a corrupt session request. See rfc1002.txt 4.3 and 4.3.2.
169 ****************************************************************************/
170
171 static bool cli_bad_session_request(int fd,
172                          struct nmb_name *calling, struct nmb_name *called)
173 {
174         TALLOC_CTX *frame;
175         uint8_t len_buf[4];
176         struct iovec iov[3];
177         ssize_t len;
178         uint8_t *inbuf;
179         int err;
180         bool ret = false;
181         uint8_t message_type;
182         uint8_t error;
183         struct tevent_context *ev;
184         struct tevent_req *req;
185
186         frame = talloc_stackframe();
187
188         iov[0].iov_base = len_buf;
189         iov[0].iov_len  = sizeof(len_buf);
190
191         /* put in the destination name */
192
193         iov[1].iov_base = name_mangle(talloc_tos(), called->name,
194                                       called->name_type);
195         if (iov[1].iov_base == NULL) {
196                 goto fail;
197         }
198         iov[1].iov_len = name_len((unsigned char *)iov[1].iov_base,
199                                   talloc_get_size(iov[1].iov_base));
200
201         /* and my name */
202
203         iov[2].iov_base = name_mangle(talloc_tos(), calling->name,
204                                       calling->name_type);
205         if (iov[2].iov_base == NULL) {
206                 goto fail;
207         }
208         iov[2].iov_len = name_len((unsigned char *)iov[2].iov_base,
209                                   talloc_get_size(iov[2].iov_base));
210
211         /* Deliberately corrupt the name len (first byte) */
212         *((uint8_t *)iov[2].iov_base) = 100;
213
214         /* send a session request (RFC 1002) */
215         /* setup the packet length
216          * Remove four bytes from the length count, since the length
217          * field in the NBT Session Service header counts the number
218          * of bytes which follow.  The cli_send_smb() function knows
219          * about this and accounts for those four bytes.
220          * CRH.
221          */
222
223         _smb_setlen(len_buf, iov[1].iov_len + iov[2].iov_len);
224         SCVAL(len_buf,0,0x81);
225
226         len = write_data_iov(fd, iov, 3);
227         if (len == -1) {
228                 goto fail;
229         }
230
231         ev = samba_tevent_context_init(frame);
232         if (ev == NULL) {
233                 goto fail;
234         }
235         req = read_smb_send(frame, ev, fd);
236         if (req == NULL) {
237                 goto fail;
238         }
239         if (!tevent_req_poll(req, ev)) {
240                 goto fail;
241         }
242         len = read_smb_recv(req, talloc_tos(), &inbuf, &err);
243         if (len == -1) {
244                 errno = err;
245                 goto fail;
246         }
247         TALLOC_FREE(ev);
248
249         message_type = CVAL(inbuf, 0);
250         if (message_type != 0x83) {
251                 d_fprintf(stderr, "Expected msg type 0x83, got 0x%2.2x\n",
252                           message_type);
253                 goto fail;
254         }
255
256         if (smb_len(inbuf) != 1) {
257                 d_fprintf(stderr, "Expected smb_len 1, got %d\n",
258                           (int)smb_len(inbuf));
259                 goto fail;
260         }
261
262         error = CVAL(inbuf, 4);
263         if (error !=  0x82) {
264                 d_fprintf(stderr, "Expected error 0x82, got %d\n",
265                           (int)error);
266                 goto fail;
267         }
268
269         ret = true;
270 fail:
271         TALLOC_FREE(frame);
272         return ret;
273 }
274
275 /* Insert a NULL at the first separator of the given path and return a pointer
276  * to the remainder of the string.
277  */
278 static char *
279 terminate_path_at_separator(char * path)
280 {
281         char * p;
282
283         if (!path) {
284                 return NULL;
285         }
286
287         if ((p = strchr_m(path, '/'))) {
288                 *p = '\0';
289                 return p + 1;
290         }
291
292         if ((p = strchr_m(path, '\\'))) {
293                 *p = '\0';
294                 return p + 1;
295         }
296
297         /* No separator. */
298         return NULL;
299 }
300
301 /*
302   parse a //server/share type UNC name
303 */
304 bool smbcli_parse_unc(const char *unc_name, TALLOC_CTX *mem_ctx,
305                       char **hostname, char **sharename)
306 {
307         char *p;
308
309         *hostname = *sharename = NULL;
310
311         if (strncmp(unc_name, "\\\\", 2) &&
312             strncmp(unc_name, "//", 2)) {
313                 return False;
314         }
315
316         *hostname = talloc_strdup(mem_ctx, &unc_name[2]);
317         p = terminate_path_at_separator(*hostname);
318
319         if (p && *p) {
320                 *sharename = talloc_strdup(mem_ctx, p);
321                 terminate_path_at_separator(*sharename);
322         }
323
324         if (*hostname && *sharename) {
325                 return True;
326         }
327
328         TALLOC_FREE(*hostname);
329         TALLOC_FREE(*sharename);
330         return False;
331 }
332
333 static bool torture_open_connection_share(struct cli_state **c,
334                                    const char *hostname, 
335                                    const char *sharename)
336 {
337         int flags = 0;
338         NTSTATUS status;
339
340         if (use_kerberos)
341                 flags |= CLI_FULL_CONNECTION_USE_KERBEROS;
342         if (use_oplocks)
343                 flags |= CLI_FULL_CONNECTION_OPLOCKS;
344         if (use_level_II_oplocks)
345                 flags |= CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS;
346
347         status = cli_full_connection(c, myname,
348                                      hostname, NULL, port_to_use, 
349                                      sharename, "?????", 
350                                      username, workgroup, 
351                                      password, flags, signing_state);
352         if (!NT_STATUS_IS_OK(status)) {
353                 printf("failed to open share connection: //%s/%s port:%d - %s\n",
354                         hostname, sharename, port_to_use, nt_errstr(status));
355                 return False;
356         }
357
358         cli_set_timeout(*c, 120000); /* set a really long timeout (2 minutes) */
359
360         if (do_encrypt) {
361                 return force_cli_encryption(*c,
362                                         sharename);
363         }
364         return True;
365 }
366
367 bool torture_open_connection(struct cli_state **c, int conn_index)
368 {
369         char **unc_list = NULL;
370         int num_unc_names = 0;
371         bool result;
372
373         if (use_multishare_conn==True) {
374                 char *h, *s;
375                 unc_list = file_lines_load(multishare_conn_fname, &num_unc_names, 0, NULL);
376                 if (!unc_list || num_unc_names <= 0) {
377                         printf("Failed to load unc names list from '%s'\n", multishare_conn_fname);
378                         exit(1);
379                 }
380
381                 if (!smbcli_parse_unc(unc_list[conn_index % num_unc_names],
382                                       NULL, &h, &s)) {
383                         printf("Failed to parse UNC name %s\n",
384                                unc_list[conn_index % num_unc_names]);
385                         TALLOC_FREE(unc_list);
386                         exit(1);
387                 }
388
389                 result = torture_open_connection_share(c, h, s);
390
391                 /* h, s were copied earlier */
392                 TALLOC_FREE(unc_list);
393                 return result;
394         }
395
396         return torture_open_connection_share(c, host, share);
397 }
398
399 bool torture_init_connection(struct cli_state **pcli)
400 {
401         struct cli_state *cli;
402
403         cli = open_nbt_connection();
404         if (cli == NULL) {
405                 return false;
406         }
407
408         *pcli = cli;
409         return true;
410 }
411
412 bool torture_cli_session_setup2(struct cli_state *cli, uint16_t *new_vuid)
413 {
414         uint16_t old_vuid = cli_state_get_uid(cli);
415         size_t passlen = strlen(password);
416         NTSTATUS status;
417         bool ret;
418
419         cli_state_set_uid(cli, 0);
420         status = cli_session_setup(cli, username,
421                                    password, passlen,
422                                    password, passlen,
423                                    workgroup);
424         ret = NT_STATUS_IS_OK(status);
425         *new_vuid = cli_state_get_uid(cli);
426         cli_state_set_uid(cli, old_vuid);
427         return ret;
428 }
429
430
431 bool torture_close_connection(struct cli_state *c)
432 {
433         bool ret = True;
434         NTSTATUS status;
435
436         status = cli_tdis(c);
437         if (!NT_STATUS_IS_OK(status)) {
438                 printf("tdis failed (%s)\n", nt_errstr(status));
439                 ret = False;
440         }
441
442         cli_shutdown(c);
443
444         return ret;
445 }
446
447
448 /* check if the server produced the expected dos or nt error code */
449 static bool check_both_error(int line, NTSTATUS status,
450                              uint8_t eclass, uint32_t ecode, NTSTATUS nterr)
451 {
452         if (NT_STATUS_IS_DOS(status)) {
453                 uint8_t cclass;
454                 uint32_t num;
455
456                 /* Check DOS error */
457                 cclass = NT_STATUS_DOS_CLASS(status);
458                 num = NT_STATUS_DOS_CODE(status);
459
460                 if (eclass != cclass || ecode != num) {
461                         printf("unexpected error code class=%d code=%d\n",
462                                (int)cclass, (int)num);
463                         printf(" expected %d/%d %s (line=%d)\n",
464                                (int)eclass, (int)ecode, nt_errstr(nterr), line);
465                         return false;
466                 }
467         } else {
468                 /* Check NT error */
469                 if (!NT_STATUS_EQUAL(nterr, status)) {
470                         printf("unexpected error code %s\n",
471                                 nt_errstr(status));
472                         printf(" expected %s (line=%d)\n",
473                                 nt_errstr(nterr), line);
474                         return false;
475                 }
476         }
477
478         return true;
479 }
480
481
482 /* check if the server produced the expected error code */
483 static bool check_error(int line, NTSTATUS status,
484                         uint8_t eclass, uint32_t ecode, NTSTATUS nterr)
485 {
486         if (NT_STATUS_IS_DOS(status)) {
487                 uint8_t cclass;
488                 uint32_t num;
489
490                 /* Check DOS error */
491
492                 cclass = NT_STATUS_DOS_CLASS(status);
493                 num = NT_STATUS_DOS_CODE(status);
494
495                 if (eclass != cclass || ecode != num) {
496                         printf("unexpected error code class=%d code=%d\n", 
497                                (int)cclass, (int)num);
498                         printf(" expected %d/%d %s (line=%d)\n", 
499                                (int)eclass, (int)ecode, nt_errstr(nterr),
500                                line);
501                         return False;
502                 }
503
504         } else {
505                 /* Check NT error */
506
507                 if (NT_STATUS_V(nterr) != NT_STATUS_V(status)) {
508                         printf("unexpected error code %s\n",
509                                nt_errstr(status));
510                         printf(" expected %s (line=%d)\n", nt_errstr(nterr),
511                                line);
512                         return False;
513                 }
514         }
515
516         return True;
517 }
518
519
520 static bool wait_lock(struct cli_state *c, int fnum, uint32_t offset, uint32_t len)
521 {
522         NTSTATUS status;
523
524         status = cli_lock32(c, fnum, offset, len, -1, WRITE_LOCK);
525
526         while (!NT_STATUS_IS_OK(status)) {
527                 if (!check_both_error(__LINE__, status, ERRDOS,
528                                       ERRlock, NT_STATUS_LOCK_NOT_GRANTED)) {
529                         return false;
530                 }
531
532                 status = cli_lock32(c, fnum, offset, len, -1, WRITE_LOCK);
533         }
534
535         return true;
536 }
537
538
539 static bool rw_torture(struct cli_state *c)
540 {
541         const char *lockfname = "\\torture.lck";
542         fstring fname;
543         uint16_t fnum;
544         uint16_t fnum2;
545         pid_t pid2, pid = getpid();
546         int i, j;
547         char buf[1024];
548         bool correct = True;
549         size_t nread = 0;
550         NTSTATUS status;
551
552         memset(buf, '\0', sizeof(buf));
553
554         status = cli_openx(c, lockfname, O_RDWR | O_CREAT | O_EXCL, 
555                          DENY_NONE, &fnum2);
556         if (!NT_STATUS_IS_OK(status)) {
557                 status = cli_openx(c, lockfname, O_RDWR, DENY_NONE, &fnum2);
558         }
559         if (!NT_STATUS_IS_OK(status)) {
560                 printf("open of %s failed (%s)\n",
561                        lockfname, nt_errstr(status));
562                 return False;
563         }
564
565         for (i=0;i<torture_numops;i++) {
566                 unsigned n = (unsigned)sys_random()%10;
567
568                 if (i % 10 == 0) {
569                         printf("%d\r", i); fflush(stdout);
570                 }
571                 slprintf(fname, sizeof(fstring) - 1, "\\torture.%u", n);
572
573                 if (!wait_lock(c, fnum2, n*sizeof(int), sizeof(int))) {
574                         return False;
575                 }
576
577                 status = cli_openx(c, fname, O_RDWR | O_CREAT | O_TRUNC,
578                                   DENY_ALL, &fnum);
579                 if (!NT_STATUS_IS_OK(status)) {
580                         printf("open failed (%s)\n", nt_errstr(status));
581                         correct = False;
582                         break;
583                 }
584
585                 status = cli_writeall(c, fnum, 0, (uint8_t *)&pid, 0,
586                                       sizeof(pid), NULL);
587                 if (!NT_STATUS_IS_OK(status)) {
588                         printf("write failed (%s)\n", nt_errstr(status));
589                         correct = False;
590                 }
591
592                 for (j=0;j<50;j++) {
593                         status = cli_writeall(c, fnum, 0, (uint8_t *)buf,
594                                               sizeof(pid)+(j*sizeof(buf)),
595                                               sizeof(buf), NULL);
596                         if (!NT_STATUS_IS_OK(status)) {
597                                 printf("write failed (%s)\n",
598                                        nt_errstr(status));
599                                 correct = False;
600                         }
601                 }
602
603                 pid2 = 0;
604
605                 status = cli_read(c, fnum, (char *)&pid2, 0, sizeof(pid),
606                                   &nread);
607                 if (!NT_STATUS_IS_OK(status)) {
608                         printf("read failed (%s)\n", nt_errstr(status));
609                         correct = false;
610                 } else if (nread != sizeof(pid)) {
611                         printf("read/write compare failed: "
612                                "recv %ld req %ld\n", (unsigned long)nread,
613                                (unsigned long)sizeof(pid));
614                         correct = false;
615                 }
616
617                 if (pid2 != pid) {
618                         printf("data corruption!\n");
619                         correct = False;
620                 }
621
622                 status = cli_close(c, fnum);
623                 if (!NT_STATUS_IS_OK(status)) {
624                         printf("close failed (%s)\n", nt_errstr(status));
625                         correct = False;
626                 }
627
628                 status = cli_unlink(c, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
629                 if (!NT_STATUS_IS_OK(status)) {
630                         printf("unlink failed (%s)\n", nt_errstr(status));
631                         correct = False;
632                 }
633
634                 status = cli_unlock(c, fnum2, n*sizeof(int), sizeof(int));
635                 if (!NT_STATUS_IS_OK(status)) {
636                         printf("unlock failed (%s)\n", nt_errstr(status));
637                         correct = False;
638                 }
639         }
640
641         cli_close(c, fnum2);
642         cli_unlink(c, lockfname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
643
644         printf("%d\n", i);
645
646         return correct;
647 }
648
649 static bool run_torture(int dummy)
650 {
651         struct cli_state *cli;
652         bool ret;
653
654         cli = current_cli;
655
656         smbXcli_conn_set_sockopt(cli->conn, sockops);
657
658         ret = rw_torture(cli);
659
660         if (!torture_close_connection(cli)) {
661                 ret = False;
662         }
663
664         return ret;
665 }
666
667 static bool rw_torture3(struct cli_state *c, char *lockfname)
668 {
669         uint16_t fnum = (uint16_t)-1;
670         unsigned int i = 0;
671         char buf[131072];
672         char buf_rd[131072];
673         unsigned count;
674         unsigned countprev = 0;
675         size_t sent = 0;
676         bool correct = True;
677         NTSTATUS status = NT_STATUS_OK;
678
679         srandom(1);
680         for (i = 0; i < sizeof(buf); i += sizeof(uint32_t))
681         {
682                 SIVAL(buf, i, sys_random());
683         }
684
685         if (procnum == 0)
686         {
687                 status = cli_unlink(
688                         c, lockfname,
689                         FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
690                 if (!NT_STATUS_IS_OK(status)) {
691                         printf("unlink failed (%s) (normal, this file should "
692                                "not exist)\n", nt_errstr(status));
693                 }
694
695                 status = cli_openx(c, lockfname, O_RDWR | O_CREAT | O_EXCL,
696                                   DENY_NONE, &fnum);
697                 if (!NT_STATUS_IS_OK(status)) {
698                         printf("first open read/write of %s failed (%s)\n",
699                                         lockfname, nt_errstr(status));
700                         return False;
701                 }
702         }
703         else
704         {
705                 for (i = 0; i < 500 && fnum == (uint16_t)-1; i++)
706                 {
707                         status = cli_openx(c, lockfname, O_RDONLY, 
708                                          DENY_NONE, &fnum);
709                         if (NT_STATUS_IS_OK(status)) {
710                                 break;
711                         }
712                         smb_msleep(10);
713                 }
714                 if (!NT_STATUS_IS_OK(status)) {
715                         printf("second open read-only of %s failed (%s)\n",
716                                         lockfname, nt_errstr(status));
717                         return False;
718                 }
719         }
720
721         i = 0;
722         for (count = 0; count < sizeof(buf); count += sent)
723         {
724                 if (count >= countprev) {
725                         printf("%d %8d\r", i, count);
726                         fflush(stdout);
727                         i++;
728                         countprev += (sizeof(buf) / 20);
729                 }
730
731                 if (procnum == 0)
732                 {
733                         sent = ((unsigned)sys_random()%(20))+ 1;
734                         if (sent > sizeof(buf) - count)
735                         {
736                                 sent = sizeof(buf) - count;
737                         }
738
739                         status = cli_writeall(c, fnum, 0, (uint8_t *)buf+count,
740                                               count, sent, NULL);
741                         if (!NT_STATUS_IS_OK(status)) {
742                                 printf("write failed (%s)\n",
743                                        nt_errstr(status));
744                                 correct = False;
745                         }
746                 }
747                 else
748                 {
749                         status = cli_read(c, fnum, buf_rd+count, count,
750                                           sizeof(buf)-count, &sent);
751                         if(!NT_STATUS_IS_OK(status)) {
752                                 printf("read failed offset:%d size:%ld (%s)\n",
753                                        count, (unsigned long)sizeof(buf)-count,
754                                        nt_errstr(status));
755                                 correct = False;
756                                 sent = 0;
757                         } else if (sent > 0) {
758                                 if (memcmp(buf_rd+count, buf+count, sent) != 0)
759                                 {
760                                         printf("read/write compare failed\n");
761                                         printf("offset: %d req %ld recvd %ld\n", count, (unsigned long)sizeof(buf)-count, (unsigned long)sent);
762                                         correct = False;
763                                         break;
764                                 }
765                         }
766                 }
767
768         }
769
770         status = cli_close(c, fnum);
771         if (!NT_STATUS_IS_OK(status)) {
772                 printf("close failed (%s)\n", nt_errstr(status));
773                 correct = False;
774         }
775
776         return correct;
777 }
778
779 static bool rw_torture2(struct cli_state *c1, struct cli_state *c2)
780 {
781         const char *lockfname = "\\torture2.lck";
782         uint16_t fnum1;
783         uint16_t fnum2;
784         int i;
785         char buf[131072];
786         char buf_rd[131072];
787         bool correct = True;
788         size_t bytes_read;
789         NTSTATUS status;
790
791         status = cli_unlink(c1, lockfname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
792         if (!NT_STATUS_IS_OK(status)) {
793                 printf("unlink failed (%s) (normal, this file should not exist)\n", nt_errstr(status));
794         }
795
796         status = cli_openx(c1, lockfname, O_RDWR | O_CREAT | O_EXCL,
797                           DENY_NONE, &fnum1);
798         if (!NT_STATUS_IS_OK(status)) {
799                 printf("first open read/write of %s failed (%s)\n",
800                                 lockfname, nt_errstr(status));
801                 return False;
802         }
803
804         status = cli_openx(c2, lockfname, O_RDONLY, DENY_NONE, &fnum2);
805         if (!NT_STATUS_IS_OK(status)) {
806                 printf("second open read-only of %s failed (%s)\n",
807                                 lockfname, nt_errstr(status));
808                 cli_close(c1, fnum1);
809                 return False;
810         }
811
812         for (i = 0; i < torture_numops; i++)
813         {
814                 size_t buf_size = ((unsigned)sys_random()%(sizeof(buf)-1))+ 1;
815                 if (i % 10 == 0) {
816                         printf("%d\r", i); fflush(stdout);
817                 }
818
819                 generate_random_buffer((unsigned char *)buf, buf_size);
820
821                 status = cli_writeall(c1, fnum1, 0, (uint8_t *)buf, 0,
822                                       buf_size, NULL);
823                 if (!NT_STATUS_IS_OK(status)) {
824                         printf("write failed (%s)\n", nt_errstr(status));
825                         correct = False;
826                         break;
827                 }
828
829                 status = cli_read(c2, fnum2, buf_rd, 0, buf_size, &bytes_read);
830                 if(!NT_STATUS_IS_OK(status)) {
831                         printf("read failed (%s)\n", nt_errstr(status));
832                         correct = false;
833                         break;
834                 } else if (bytes_read != buf_size) {
835                         printf("read failed\n");
836                         printf("read %ld, expected %ld\n",
837                                (unsigned long)bytes_read,
838                                (unsigned long)buf_size); 
839                         correct = False;
840                         break;
841                 }
842
843                 if (memcmp(buf_rd, buf, buf_size) != 0)
844                 {
845                         printf("read/write compare failed\n");
846                         correct = False;
847                         break;
848                 }
849         }
850
851         status = cli_close(c2, fnum2);
852         if (!NT_STATUS_IS_OK(status)) {
853                 printf("close failed (%s)\n", nt_errstr(status));
854                 correct = False;
855         }
856
857         status = cli_close(c1, fnum1);
858         if (!NT_STATUS_IS_OK(status)) {
859                 printf("close failed (%s)\n", nt_errstr(status));
860                 correct = False;
861         }
862
863         status = cli_unlink(c1, lockfname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
864         if (!NT_STATUS_IS_OK(status)) {
865                 printf("unlink failed (%s)\n", nt_errstr(status));
866                 correct = False;
867         }
868
869         return correct;
870 }
871
872 static bool run_readwritetest(int dummy)
873 {
874         struct cli_state *cli1, *cli2;
875         bool test1, test2 = False;
876
877         if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
878                 return False;
879         }
880         smbXcli_conn_set_sockopt(cli1->conn, sockops);
881         smbXcli_conn_set_sockopt(cli2->conn, sockops);
882
883         printf("starting readwritetest\n");
884
885         test1 = rw_torture2(cli1, cli2);
886         printf("Passed readwritetest v1: %s\n", BOOLSTR(test1));
887
888         if (test1) {
889                 test2 = rw_torture2(cli1, cli1);
890                 printf("Passed readwritetest v2: %s\n", BOOLSTR(test2));
891         }
892
893         if (!torture_close_connection(cli1)) {
894                 test1 = False;
895         }
896
897         if (!torture_close_connection(cli2)) {
898                 test2 = False;
899         }
900
901         return (test1 && test2);
902 }
903
904 static bool run_readwritemulti(int dummy)
905 {
906         struct cli_state *cli;
907         bool test;
908
909         cli = current_cli;
910
911         smbXcli_conn_set_sockopt(cli->conn, sockops);
912
913         printf("run_readwritemulti: fname %s\n", randomfname);
914         test = rw_torture3(cli, randomfname);
915
916         if (!torture_close_connection(cli)) {
917                 test = False;
918         }
919
920         return test;
921 }
922
923 static bool run_readwritelarge_internal(void)
924 {
925         static struct cli_state *cli1;
926         uint16_t fnum1;
927         const char *lockfname = "\\large.dat";
928         off_t fsize;
929         char buf[126*1024];
930         bool correct = True;
931         NTSTATUS status;
932
933         if (!torture_open_connection(&cli1, 0)) {
934                 return False;
935         }
936         smbXcli_conn_set_sockopt(cli1->conn, sockops);
937         memset(buf,'\0',sizeof(buf));
938
939         printf("starting readwritelarge_internal\n");
940
941         cli_unlink(cli1, lockfname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
942
943         status = cli_openx(cli1, lockfname, O_RDWR | O_CREAT | O_EXCL,
944                           DENY_NONE, &fnum1);
945         if (!NT_STATUS_IS_OK(status)) {
946                 printf("open read/write of %s failed (%s)\n", lockfname, nt_errstr(status));
947                 return False;
948         }
949
950         cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 0, sizeof(buf), NULL);
951
952         status = cli_qfileinfo_basic(cli1, fnum1, NULL, &fsize, NULL, NULL,
953                                      NULL, NULL, NULL);
954         if (!NT_STATUS_IS_OK(status)) {
955                 printf("qfileinfo failed (%s)\n", nt_errstr(status));
956                 correct = False;
957         }
958
959         if (fsize == sizeof(buf))
960                 printf("readwritelarge_internal test 1 succeeded (size = %lx)\n",
961                        (unsigned long)fsize);
962         else {
963                 printf("readwritelarge_internal test 1 failed (size = %lx)\n",
964                        (unsigned long)fsize);
965                 correct = False;
966         }
967
968         status = cli_close(cli1, fnum1);
969         if (!NT_STATUS_IS_OK(status)) {
970                 printf("close failed (%s)\n", nt_errstr(status));
971                 correct = False;
972         }
973
974         status = cli_unlink(cli1, lockfname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
975         if (!NT_STATUS_IS_OK(status)) {
976                 printf("unlink failed (%s)\n", nt_errstr(status));
977                 correct = False;
978         }
979
980         status = cli_openx(cli1, lockfname, O_RDWR | O_CREAT | O_EXCL,
981                           DENY_NONE, &fnum1);
982         if (!NT_STATUS_IS_OK(status)) {
983                 printf("open read/write of %s failed (%s)\n", lockfname, nt_errstr(status));
984                 return False;
985         }
986
987         cli_smbwrite(cli1, fnum1, buf, 0, sizeof(buf), NULL);
988
989         status = cli_qfileinfo_basic(cli1, fnum1, NULL, &fsize, NULL, NULL,
990                                      NULL, NULL, NULL);
991         if (!NT_STATUS_IS_OK(status)) {
992                 printf("qfileinfo failed (%s)\n", nt_errstr(status));
993                 correct = False;
994         }
995
996         if (fsize == sizeof(buf))
997                 printf("readwritelarge_internal test 2 succeeded (size = %lx)\n",
998                        (unsigned long)fsize);
999         else {
1000                 printf("readwritelarge_internal test 2 failed (size = %lx)\n",
1001                        (unsigned long)fsize);
1002                 correct = False;
1003         }
1004
1005 #if 0
1006         /* ToDo - set allocation. JRA */
1007         if(!cli_set_allocation_size(cli1, fnum1, 0)) {
1008                 printf("set allocation size to zero failed (%s)\n", cli_errstr(&cli1));
1009                 return False;
1010         }
1011         if (!cli_qfileinfo_basic(cli1, fnum1, NULL, &fsize, NULL, NULL, NULL,
1012                                  NULL, NULL)) {
1013                 printf("qfileinfo failed (%s)\n", cli_errstr(cli1));
1014                 correct = False;
1015         }
1016         if (fsize != 0)
1017                 printf("readwritelarge test 3 (truncate test) succeeded (size = %x)\n", fsize);
1018 #endif
1019
1020         status = cli_close(cli1, fnum1);
1021         if (!NT_STATUS_IS_OK(status)) {
1022                 printf("close failed (%s)\n", nt_errstr(status));
1023                 correct = False;
1024         }
1025
1026         if (!torture_close_connection(cli1)) {
1027                 correct = False;
1028         }
1029         return correct;
1030 }
1031
1032 static bool run_readwritelarge(int dummy)
1033 {
1034         return run_readwritelarge_internal();
1035 }
1036
1037 static bool run_readwritelarge_signtest(int dummy)
1038 {
1039         bool ret;
1040         signing_state = SMB_SIGNING_REQUIRED;
1041         ret = run_readwritelarge_internal();
1042         signing_state = SMB_SIGNING_DEFAULT;
1043         return ret;
1044 }
1045
1046 int line_count = 0;
1047 int nbio_id;
1048
1049 #define ival(s) strtol(s, NULL, 0)
1050
1051 /* run a test that simulates an approximate netbench client load */
1052 static bool run_netbench(int client)
1053 {
1054         struct cli_state *cli;
1055         int i;
1056         char line[1024];
1057         char cname[20];
1058         FILE *f;
1059         const char *params[20];
1060         bool correct = True;
1061
1062         cli = current_cli;
1063
1064         nbio_id = client;
1065
1066         smbXcli_conn_set_sockopt(cli->conn, sockops);
1067
1068         nb_setup(cli);
1069
1070         slprintf(cname,sizeof(cname)-1, "client%d", client);
1071
1072         f = fopen(client_txt, "r");
1073
1074         if (!f) {
1075                 perror(client_txt);
1076                 return False;
1077         }
1078
1079         while (fgets(line, sizeof(line)-1, f)) {
1080                 char *saveptr;
1081                 line_count++;
1082
1083                 line[strlen(line)-1] = 0;
1084
1085                 /* printf("[%d] %s\n", line_count, line); */
1086
1087                 all_string_sub(line,"client1", cname, sizeof(line));
1088
1089                 /* parse the command parameters */
1090                 params[0] = strtok_r(line, " ", &saveptr);
1091                 i = 0;
1092                 while (params[i]) params[++i] = strtok_r(NULL, " ", &saveptr);
1093
1094                 params[i] = "";
1095
1096                 if (i < 2) continue;
1097
1098                 if (!strncmp(params[0],"SMB", 3)) {
1099                         printf("ERROR: You are using a dbench 1 load file\n");
1100                         exit(1);
1101                 }
1102
1103                 if (!strcmp(params[0],"NTCreateX")) {
1104                         nb_createx(params[1], ival(params[2]), ival(params[3]), 
1105                                    ival(params[4]));
1106                 } else if (!strcmp(params[0],"Close")) {
1107                         nb_close(ival(params[1]));
1108                 } else if (!strcmp(params[0],"Rename")) {
1109                         nb_rename(params[1], params[2]);
1110                 } else if (!strcmp(params[0],"Unlink")) {
1111                         nb_unlink(params[1]);
1112                 } else if (!strcmp(params[0],"Deltree")) {
1113                         nb_deltree(params[1]);
1114                 } else if (!strcmp(params[0],"Rmdir")) {
1115                         nb_rmdir(params[1]);
1116                 } else if (!strcmp(params[0],"QUERY_PATH_INFORMATION")) {
1117                         nb_qpathinfo(params[1]);
1118                 } else if (!strcmp(params[0],"QUERY_FILE_INFORMATION")) {
1119                         nb_qfileinfo(ival(params[1]));
1120                 } else if (!strcmp(params[0],"QUERY_FS_INFORMATION")) {
1121                         nb_qfsinfo(ival(params[1]));
1122                 } else if (!strcmp(params[0],"FIND_FIRST")) {
1123                         nb_findfirst(params[1]);
1124                 } else if (!strcmp(params[0],"WriteX")) {
1125                         nb_writex(ival(params[1]), 
1126                                   ival(params[2]), ival(params[3]), ival(params[4]));
1127                 } else if (!strcmp(params[0],"ReadX")) {
1128                         nb_readx(ival(params[1]), 
1129                                   ival(params[2]), ival(params[3]), ival(params[4]));
1130                 } else if (!strcmp(params[0],"Flush")) {
1131                         nb_flush(ival(params[1]));
1132                 } else {
1133                         printf("Unknown operation %s\n", params[0]);
1134                         exit(1);
1135                 }
1136         }
1137         fclose(f);
1138
1139         nb_cleanup();
1140
1141         if (!torture_close_connection(cli)) {
1142                 correct = False;
1143         }
1144
1145         return correct;
1146 }
1147
1148
1149 /* run a test that simulates an approximate netbench client load */
1150 static bool run_nbench(int dummy)
1151 {
1152         double t;
1153         bool correct = True;
1154
1155         nbio_shmem(torture_nprocs);
1156
1157         nbio_id = -1;
1158
1159         signal(SIGALRM, nb_alarm);
1160         alarm(1);
1161         t = create_procs(run_netbench, &correct);
1162         alarm(0);
1163
1164         printf("\nThroughput %g MB/sec\n", 
1165                1.0e-6 * nbio_total() / t);
1166         return correct;
1167 }
1168
1169
1170 /*
1171   This test checks for two things:
1172
1173   1) correct support for retaining locks over a close (ie. the server
1174      must not use posix semantics)
1175   2) support for lock timeouts
1176  */
1177 static bool run_locktest1(int dummy)
1178 {
1179         struct cli_state *cli1, *cli2;
1180         const char *fname = "\\lockt1.lck";
1181         uint16_t fnum1, fnum2, fnum3;
1182         time_t t1, t2;
1183         unsigned lock_timeout;
1184         NTSTATUS status;
1185
1186         if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
1187                 return False;
1188         }
1189         smbXcli_conn_set_sockopt(cli1->conn, sockops);
1190         smbXcli_conn_set_sockopt(cli2->conn, sockops);
1191
1192         printf("starting locktest1\n");
1193
1194         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1195
1196         status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
1197                           &fnum1);
1198         if (!NT_STATUS_IS_OK(status)) {
1199                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
1200                 return False;
1201         }
1202
1203         status = cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum2);
1204         if (!NT_STATUS_IS_OK(status)) {
1205                 printf("open2 of %s failed (%s)\n", fname, nt_errstr(status));
1206                 return False;
1207         }
1208
1209         status = cli_openx(cli2, fname, O_RDWR, DENY_NONE, &fnum3);
1210         if (!NT_STATUS_IS_OK(status)) {
1211                 printf("open3 of %s failed (%s)\n", fname, nt_errstr(status));
1212                 return False;
1213         }
1214
1215         status = cli_lock32(cli1, fnum1, 0, 4, 0, WRITE_LOCK);
1216         if (!NT_STATUS_IS_OK(status)) {
1217                 printf("lock1 failed (%s)\n", nt_errstr(status));
1218                 return false;
1219         }
1220
1221         status = cli_lock32(cli2, fnum3, 0, 4, 0, WRITE_LOCK);
1222         if (NT_STATUS_IS_OK(status)) {
1223                 printf("lock2 succeeded! This is a locking bug\n");
1224                 return false;
1225         } else {
1226                 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1227                                       NT_STATUS_LOCK_NOT_GRANTED)) {
1228                         return false;
1229                 }
1230         }
1231
1232         lock_timeout = (1 + (random() % 20));
1233         printf("Testing lock timeout with timeout=%u\n", lock_timeout);
1234         t1 = time(NULL);
1235         status = cli_lock32(cli2, fnum3, 0, 4, lock_timeout * 1000, WRITE_LOCK);
1236         if (NT_STATUS_IS_OK(status)) {
1237                 printf("lock3 succeeded! This is a locking bug\n");
1238                 return false;
1239         } else {
1240                 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1241                                       NT_STATUS_FILE_LOCK_CONFLICT)) {
1242                         return false;
1243                 }
1244         }
1245         t2 = time(NULL);
1246
1247         if (ABS(t2 - t1) < lock_timeout-1) {
1248                 printf("error: This server appears not to support timed lock requests\n");
1249         }
1250
1251         printf("server slept for %u seconds for a %u second timeout\n",
1252                (unsigned int)(t2-t1), lock_timeout);
1253
1254         status = cli_close(cli1, fnum2);
1255         if (!NT_STATUS_IS_OK(status)) {
1256                 printf("close1 failed (%s)\n", nt_errstr(status));
1257                 return False;
1258         }
1259
1260         status = cli_lock32(cli2, fnum3, 0, 4, 0, WRITE_LOCK);
1261         if (NT_STATUS_IS_OK(status)) {
1262                 printf("lock4 succeeded! This is a locking bug\n");
1263                 return false;
1264         } else {
1265                 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1266                                       NT_STATUS_FILE_LOCK_CONFLICT)) {
1267                         return false;
1268                 }
1269         }
1270
1271         status = cli_close(cli1, fnum1);
1272         if (!NT_STATUS_IS_OK(status)) {
1273                 printf("close2 failed (%s)\n", nt_errstr(status));
1274                 return False;
1275         }
1276
1277         status = cli_close(cli2, fnum3);
1278         if (!NT_STATUS_IS_OK(status)) {
1279                 printf("close3 failed (%s)\n", nt_errstr(status));
1280                 return False;
1281         }
1282
1283         status = cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1284         if (!NT_STATUS_IS_OK(status)) {
1285                 printf("unlink failed (%s)\n", nt_errstr(status));
1286                 return False;
1287         }
1288
1289
1290         if (!torture_close_connection(cli1)) {
1291                 return False;
1292         }
1293
1294         if (!torture_close_connection(cli2)) {
1295                 return False;
1296         }
1297
1298         printf("Passed locktest1\n");
1299         return True;
1300 }
1301
1302 /*
1303   this checks to see if a secondary tconx can use open files from an
1304   earlier tconx
1305  */
1306 static bool run_tcon_test(int dummy)
1307 {
1308         static struct cli_state *cli;
1309         const char *fname = "\\tcontest.tmp";
1310         uint16_t fnum1;
1311         uint16_t cnum1, cnum2, cnum3;
1312         uint16_t vuid1, vuid2;
1313         char buf[4];
1314         bool ret = True;
1315         NTSTATUS status;
1316
1317         memset(buf, '\0', sizeof(buf));
1318
1319         if (!torture_open_connection(&cli, 0)) {
1320                 return False;
1321         }
1322         smbXcli_conn_set_sockopt(cli->conn, sockops);
1323
1324         printf("starting tcontest\n");
1325
1326         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1327
1328         status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
1329         if (!NT_STATUS_IS_OK(status)) {
1330                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
1331                 return False;
1332         }
1333
1334         cnum1 = cli_state_get_tid(cli);
1335         vuid1 = cli_state_get_uid(cli);
1336
1337         status = cli_writeall(cli, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
1338         if (!NT_STATUS_IS_OK(status)) {
1339                 printf("initial write failed (%s)", nt_errstr(status));
1340                 return False;
1341         }
1342
1343         status = cli_tree_connect(cli, share, "?????",
1344                                   password, strlen(password)+1);
1345         if (!NT_STATUS_IS_OK(status)) {
1346                 printf("%s refused 2nd tree connect (%s)\n", host,
1347                        nt_errstr(status));
1348                 cli_shutdown(cli);
1349                 return False;
1350         }
1351
1352         cnum2 = cli_state_get_tid(cli);
1353         cnum3 = MAX(cnum1, cnum2) + 1; /* any invalid number */
1354         vuid2 = cli_state_get_uid(cli) + 1;
1355
1356         /* try a write with the wrong tid */
1357         cli_state_set_tid(cli, cnum2);
1358
1359         status = cli_writeall(cli, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
1360         if (NT_STATUS_IS_OK(status)) {
1361                 printf("* server allows write with wrong TID\n");
1362                 ret = False;
1363         } else {
1364                 printf("server fails write with wrong TID : %s\n",
1365                        nt_errstr(status));
1366         }
1367
1368
1369         /* try a write with an invalid tid */
1370         cli_state_set_tid(cli, cnum3);
1371
1372         status = cli_writeall(cli, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
1373         if (NT_STATUS_IS_OK(status)) {
1374                 printf("* server allows write with invalid TID\n");
1375                 ret = False;
1376         } else {
1377                 printf("server fails write with invalid TID : %s\n",
1378                        nt_errstr(status));
1379         }
1380
1381         /* try a write with an invalid vuid */
1382         cli_state_set_uid(cli, vuid2);
1383         cli_state_set_tid(cli, cnum1);
1384
1385         status = cli_writeall(cli, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
1386         if (NT_STATUS_IS_OK(status)) {
1387                 printf("* server allows write with invalid VUID\n");
1388                 ret = False;
1389         } else {
1390                 printf("server fails write with invalid VUID : %s\n",
1391                        nt_errstr(status));
1392         }
1393
1394         cli_state_set_tid(cli, cnum1);
1395         cli_state_set_uid(cli, vuid1);
1396
1397         status = cli_close(cli, fnum1);
1398         if (!NT_STATUS_IS_OK(status)) {
1399                 printf("close failed (%s)\n", nt_errstr(status));
1400                 return False;
1401         }
1402
1403         cli_state_set_tid(cli, cnum2);
1404
1405         status = cli_tdis(cli);
1406         if (!NT_STATUS_IS_OK(status)) {
1407                 printf("secondary tdis failed (%s)\n", nt_errstr(status));
1408                 return False;
1409         }
1410
1411         cli_state_set_tid(cli, cnum1);
1412
1413         if (!torture_close_connection(cli)) {
1414                 return False;
1415         }
1416
1417         return ret;
1418 }
1419
1420
1421 /*
1422  checks for old style tcon support
1423  */
1424 static bool run_tcon2_test(int dummy)
1425 {
1426         static struct cli_state *cli;
1427         uint16_t cnum, max_xmit;
1428         char *service;
1429         NTSTATUS status;
1430
1431         if (!torture_open_connection(&cli, 0)) {
1432                 return False;
1433         }
1434         smbXcli_conn_set_sockopt(cli->conn, sockops);
1435
1436         printf("starting tcon2 test\n");
1437
1438         if (asprintf(&service, "\\\\%s\\%s", host, share) == -1) {
1439                 return false;
1440         }
1441
1442         status = cli_raw_tcon(cli, service, password, "?????", &max_xmit, &cnum);
1443
1444         SAFE_FREE(service);
1445
1446         if (!NT_STATUS_IS_OK(status)) {
1447                 printf("tcon2 failed : %s\n", nt_errstr(status));
1448         } else {
1449                 printf("tcon OK : max_xmit=%d cnum=%d\n",
1450                        (int)max_xmit, (int)cnum);
1451         }
1452
1453         if (!torture_close_connection(cli)) {
1454                 return False;
1455         }
1456
1457         printf("Passed tcon2 test\n");
1458         return True;
1459 }
1460
1461 static bool tcon_devtest(struct cli_state *cli,
1462                          const char *myshare, const char *devtype,
1463                          const char *return_devtype,
1464                          NTSTATUS expected_error)
1465 {
1466         NTSTATUS status;
1467         bool ret;
1468
1469         status = cli_tree_connect(cli, myshare, devtype,
1470                                   password, strlen(password)+1);
1471
1472         if (NT_STATUS_IS_OK(expected_error)) {
1473                 if (NT_STATUS_IS_OK(status)) {
1474                         if (strcmp(cli->dev, return_devtype) == 0) {
1475                                 ret = True;
1476                         } else { 
1477                                 printf("tconX to share %s with type %s "
1478                                        "succeeded but returned the wrong "
1479                                        "device type (got [%s] but should have got [%s])\n",
1480                                        myshare, devtype, cli->dev, return_devtype);
1481                                 ret = False;
1482                         }
1483                 } else {
1484                         printf("tconX to share %s with type %s "
1485                                "should have succeeded but failed\n",
1486                                myshare, devtype);
1487                         ret = False;
1488                 }
1489                 cli_tdis(cli);
1490         } else {
1491                 if (NT_STATUS_IS_OK(status)) {
1492                         printf("tconx to share %s with type %s "
1493                                "should have failed but succeeded\n",
1494                                myshare, devtype);
1495                         ret = False;
1496                 } else {
1497                         if (NT_STATUS_EQUAL(status, expected_error)) {
1498                                 ret = True;
1499                         } else {
1500                                 printf("Returned unexpected error\n");
1501                                 ret = False;
1502                         }
1503                 }
1504         }
1505         return ret;
1506 }
1507
1508 /*
1509  checks for correct tconX support
1510  */
1511 static bool run_tcon_devtype_test(int dummy)
1512 {
1513         static struct cli_state *cli1 = NULL;
1514         int flags = 0;
1515         NTSTATUS status;
1516         bool ret = True;
1517
1518         status = cli_full_connection(&cli1, myname,
1519                                      host, NULL, port_to_use,
1520                                      NULL, NULL,
1521                                      username, workgroup,
1522                                      password, flags, signing_state);
1523
1524         if (!NT_STATUS_IS_OK(status)) {
1525                 printf("could not open connection\n");
1526                 return False;
1527         }
1528
1529         if (!tcon_devtest(cli1, "IPC$", "A:", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1530                 ret = False;
1531
1532         if (!tcon_devtest(cli1, "IPC$", "?????", "IPC", NT_STATUS_OK))
1533                 ret = False;
1534
1535         if (!tcon_devtest(cli1, "IPC$", "LPT:", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1536                 ret = False;
1537
1538         if (!tcon_devtest(cli1, "IPC$", "IPC", "IPC", NT_STATUS_OK))
1539                 ret = False;
1540
1541         if (!tcon_devtest(cli1, "IPC$", "FOOBA", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1542                 ret = False;
1543
1544         if (!tcon_devtest(cli1, share, "A:", "A:", NT_STATUS_OK))
1545                 ret = False;
1546
1547         if (!tcon_devtest(cli1, share, "?????", "A:", NT_STATUS_OK))
1548                 ret = False;
1549
1550         if (!tcon_devtest(cli1, share, "LPT:", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1551                 ret = False;
1552
1553         if (!tcon_devtest(cli1, share, "IPC", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1554                 ret = False;
1555
1556         if (!tcon_devtest(cli1, share, "FOOBA", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1557                 ret = False;
1558
1559         cli_shutdown(cli1);
1560
1561         if (ret)
1562                 printf("Passed tcondevtest\n");
1563
1564         return ret;
1565 }
1566
1567
1568 /*
1569   This test checks that 
1570
1571   1) the server supports multiple locking contexts on the one SMB
1572   connection, distinguished by PID.  
1573
1574   2) the server correctly fails overlapping locks made by the same PID (this
1575      goes against POSIX behaviour, which is why it is tricky to implement)
1576
1577   3) the server denies unlock requests by an incorrect client PID
1578 */
1579 static bool run_locktest2(int dummy)
1580 {
1581         static struct cli_state *cli;
1582         const char *fname = "\\lockt2.lck";
1583         uint16_t fnum1, fnum2, fnum3;
1584         bool correct = True;
1585         NTSTATUS status;
1586
1587         if (!torture_open_connection(&cli, 0)) {
1588                 return False;
1589         }
1590
1591         smbXcli_conn_set_sockopt(cli->conn, sockops);
1592
1593         printf("starting locktest2\n");
1594
1595         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1596
1597         cli_setpid(cli, 1);
1598
1599         status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
1600         if (!NT_STATUS_IS_OK(status)) {
1601                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
1602                 return False;
1603         }
1604
1605         status = cli_openx(cli, fname, O_RDWR, DENY_NONE, &fnum2);
1606         if (!NT_STATUS_IS_OK(status)) {
1607                 printf("open2 of %s failed (%s)\n", fname, nt_errstr(status));
1608                 return False;
1609         }
1610
1611         cli_setpid(cli, 2);
1612
1613         status = cli_openx(cli, fname, O_RDWR, DENY_NONE, &fnum3);
1614         if (!NT_STATUS_IS_OK(status)) {
1615                 printf("open3 of %s failed (%s)\n", fname, nt_errstr(status));
1616                 return False;
1617         }
1618
1619         cli_setpid(cli, 1);
1620
1621         status = cli_lock32(cli, fnum1, 0, 4, 0, WRITE_LOCK);
1622         if (!NT_STATUS_IS_OK(status)) {
1623                 printf("lock1 failed (%s)\n", nt_errstr(status));
1624                 return false;
1625         }
1626
1627         status = cli_lock32(cli, fnum1, 0, 4, 0, WRITE_LOCK);
1628         if (NT_STATUS_IS_OK(status)) {
1629                 printf("WRITE lock1 succeeded! This is a locking bug\n");
1630                 correct = false;
1631         } else {
1632                 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1633                                       NT_STATUS_LOCK_NOT_GRANTED)) {
1634                         return false;
1635                 }
1636         }
1637
1638         status = cli_lock32(cli, fnum2, 0, 4, 0, WRITE_LOCK);
1639         if (NT_STATUS_IS_OK(status)) {
1640                 printf("WRITE lock2 succeeded! This is a locking bug\n");
1641                 correct = false;
1642         } else {
1643                 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1644                                       NT_STATUS_LOCK_NOT_GRANTED)) {
1645                         return false;
1646                 }
1647         }
1648
1649         status = cli_lock32(cli, fnum2, 0, 4, 0, READ_LOCK);
1650         if (NT_STATUS_IS_OK(status)) {
1651                 printf("READ lock2 succeeded! This is a locking bug\n");
1652                 correct = false;
1653         } else {
1654                 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1655                                  NT_STATUS_FILE_LOCK_CONFLICT)) {
1656                         return false;
1657                 }
1658         }
1659
1660         status = cli_lock32(cli, fnum1, 100, 4, 0, WRITE_LOCK);
1661         if (!NT_STATUS_IS_OK(status)) {
1662                 printf("lock at 100 failed (%s)\n", nt_errstr(status));
1663         }
1664         cli_setpid(cli, 2);
1665         if (NT_STATUS_IS_OK(cli_unlock(cli, fnum1, 100, 4))) {
1666                 printf("unlock at 100 succeeded! This is a locking bug\n");
1667                 correct = False;
1668         }
1669
1670         status = cli_unlock(cli, fnum1, 0, 4);
1671         if (NT_STATUS_IS_OK(status)) {
1672                 printf("unlock1 succeeded! This is a locking bug\n");
1673                 correct = false;
1674         } else {
1675                 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1676                                       NT_STATUS_RANGE_NOT_LOCKED)) {
1677                         return false;
1678                 }
1679         }
1680
1681         status = cli_unlock(cli, fnum1, 0, 8);
1682         if (NT_STATUS_IS_OK(status)) {
1683                 printf("unlock2 succeeded! This is a locking bug\n");
1684                 correct = false;
1685         } else {
1686                 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1687                                       NT_STATUS_RANGE_NOT_LOCKED)) {
1688                         return false;
1689                 }
1690         }
1691
1692         status = cli_lock32(cli, fnum3, 0, 4, 0, WRITE_LOCK);
1693         if (NT_STATUS_IS_OK(status)) {
1694                 printf("lock3 succeeded! This is a locking bug\n");
1695                 correct = false;
1696         } else {
1697                 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1698                                       NT_STATUS_LOCK_NOT_GRANTED)) {
1699                         return false;
1700                 }
1701         }
1702
1703         cli_setpid(cli, 1);
1704
1705         status = cli_close(cli, fnum1);
1706         if (!NT_STATUS_IS_OK(status)) {
1707                 printf("close1 failed (%s)\n", nt_errstr(status));
1708                 return False;
1709         }
1710
1711         status = cli_close(cli, fnum2);
1712         if (!NT_STATUS_IS_OK(status)) {
1713                 printf("close2 failed (%s)\n", nt_errstr(status));
1714                 return False;
1715         }
1716
1717         status = cli_close(cli, fnum3);
1718         if (!NT_STATUS_IS_OK(status)) {
1719                 printf("close3 failed (%s)\n", nt_errstr(status));
1720                 return False;
1721         }
1722
1723         if (!torture_close_connection(cli)) {
1724                 correct = False;
1725         }
1726
1727         printf("locktest2 finished\n");
1728
1729         return correct;
1730 }
1731
1732
1733 /*
1734   This test checks that 
1735
1736   1) the server supports the full offset range in lock requests
1737 */
1738 static bool run_locktest3(int dummy)
1739 {
1740         static struct cli_state *cli1, *cli2;
1741         const char *fname = "\\lockt3.lck";
1742         uint16_t fnum1, fnum2;
1743         int i;
1744         uint32_t offset;
1745         bool correct = True;
1746         NTSTATUS status;
1747
1748 #define NEXT_OFFSET offset += (~(uint32_t)0) / torture_numops
1749
1750         if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
1751                 return False;
1752         }
1753         smbXcli_conn_set_sockopt(cli1->conn, sockops);
1754         smbXcli_conn_set_sockopt(cli2->conn, sockops);
1755
1756         printf("starting locktest3\n");
1757
1758         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1759
1760         status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
1761                          &fnum1);
1762         if (!NT_STATUS_IS_OK(status)) {
1763                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
1764                 return False;
1765         }
1766
1767         status = cli_openx(cli2, fname, O_RDWR, DENY_NONE, &fnum2);
1768         if (!NT_STATUS_IS_OK(status)) {
1769                 printf("open2 of %s failed (%s)\n", fname, nt_errstr(status));
1770                 return False;
1771         }
1772
1773         for (offset=i=0;i<torture_numops;i++) {
1774                 NEXT_OFFSET;
1775
1776                 status = cli_lock32(cli1, fnum1, offset-1, 1, 0, WRITE_LOCK);
1777                 if (!NT_STATUS_IS_OK(status)) {
1778                         printf("lock1 %d failed (%s)\n", 
1779                                i,
1780                                nt_errstr(status));
1781                         return False;
1782                 }
1783
1784                 status = cli_lock32(cli2, fnum2, offset-2, 1, 0, WRITE_LOCK);
1785                 if (!NT_STATUS_IS_OK(status)) {
1786                         printf("lock2 %d failed (%s)\n", 
1787                                i,
1788                                nt_errstr(status));
1789                         return False;
1790                 }
1791         }
1792
1793         for (offset=i=0;i<torture_numops;i++) {
1794                 NEXT_OFFSET;
1795
1796                 status = cli_lock32(cli1, fnum1, offset-2, 1, 0, WRITE_LOCK);
1797                 if (NT_STATUS_IS_OK(status)) {
1798                         printf("error: lock1 %d succeeded!\n", i);
1799                         return False;
1800                 }
1801
1802                 status = cli_lock32(cli2, fnum2, offset-1, 1, 0, WRITE_LOCK);
1803                 if (NT_STATUS_IS_OK(status)) {
1804                         printf("error: lock2 %d succeeded!\n", i);
1805                         return False;
1806                 }
1807
1808                 status = cli_lock32(cli1, fnum1, offset-1, 1, 0, WRITE_LOCK);
1809                 if (NT_STATUS_IS_OK(status)) {
1810                         printf("error: lock3 %d succeeded!\n", i);
1811                         return False;
1812                 }
1813
1814                 status = cli_lock32(cli2, fnum2, offset-2, 1, 0, WRITE_LOCK);
1815                 if (NT_STATUS_IS_OK(status)) {
1816                         printf("error: lock4 %d succeeded!\n", i);
1817                         return False;
1818                 }
1819         }
1820
1821         for (offset=i=0;i<torture_numops;i++) {
1822                 NEXT_OFFSET;
1823
1824                 status = cli_unlock(cli1, fnum1, offset-1, 1);
1825                 if (!NT_STATUS_IS_OK(status)) {
1826                         printf("unlock1 %d failed (%s)\n", 
1827                                i,
1828                                nt_errstr(status));
1829                         return False;
1830                 }
1831
1832                 status = cli_unlock(cli2, fnum2, offset-2, 1);
1833                 if (!NT_STATUS_IS_OK(status)) {
1834                         printf("unlock2 %d failed (%s)\n", 
1835                                i,
1836                                nt_errstr(status));
1837                         return False;
1838                 }
1839         }
1840
1841         status = cli_close(cli1, fnum1);
1842         if (!NT_STATUS_IS_OK(status)) {
1843                 printf("close1 failed (%s)\n", nt_errstr(status));
1844                 return False;
1845         }
1846
1847         status = cli_close(cli2, fnum2);
1848         if (!NT_STATUS_IS_OK(status)) {
1849                 printf("close2 failed (%s)\n", nt_errstr(status));
1850                 return False;
1851         }
1852
1853         status = cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1854         if (!NT_STATUS_IS_OK(status)) {
1855                 printf("unlink failed (%s)\n", nt_errstr(status));
1856                 return False;
1857         }
1858
1859         if (!torture_close_connection(cli1)) {
1860                 correct = False;
1861         }
1862
1863         if (!torture_close_connection(cli2)) {
1864                 correct = False;
1865         }
1866
1867         printf("finished locktest3\n");
1868
1869         return correct;
1870 }
1871
1872 static bool test_cli_read(struct cli_state *cli, uint16_t fnum,
1873                            char *buf, off_t offset, size_t size,
1874                            size_t *nread, size_t expect)
1875 {
1876         NTSTATUS status;
1877         size_t l_nread;
1878
1879         status = cli_read(cli, fnum, buf, offset, size, &l_nread);
1880
1881         if(!NT_STATUS_IS_OK(status)) {
1882                 return false;
1883         } else if (l_nread != expect) {
1884                 return false;
1885         }
1886
1887         if (nread) {
1888                 *nread = l_nread;
1889         }
1890
1891         return true;
1892 }
1893
1894 #define EXPECTED(ret, v) if ((ret) != (v)) { \
1895         printf("** "); correct = False; \
1896         }
1897
1898 /*
1899   looks at overlapping locks
1900 */
1901 static bool run_locktest4(int dummy)
1902 {
1903         static struct cli_state *cli1, *cli2;
1904         const char *fname = "\\lockt4.lck";
1905         uint16_t fnum1, fnum2, f;
1906         bool ret;
1907         char buf[1000];
1908         bool correct = True;
1909         NTSTATUS status;
1910
1911         if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
1912                 return False;
1913         }
1914
1915         smbXcli_conn_set_sockopt(cli1->conn, sockops);
1916         smbXcli_conn_set_sockopt(cli2->conn, sockops);
1917
1918         printf("starting locktest4\n");
1919
1920         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1921
1922         cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
1923         cli_openx(cli2, fname, O_RDWR, DENY_NONE, &fnum2);
1924
1925         memset(buf, 0, sizeof(buf));
1926
1927         status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 0, sizeof(buf),
1928                               NULL);
1929         if (!NT_STATUS_IS_OK(status)) {
1930                 printf("Failed to create file: %s\n", nt_errstr(status));
1931                 correct = False;
1932                 goto fail;
1933         }
1934
1935         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 4, 0, WRITE_LOCK)) &&
1936               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 2, 4, 0, WRITE_LOCK));
1937         EXPECTED(ret, False);
1938         printf("the same process %s set overlapping write locks\n", ret?"can":"cannot");
1939
1940         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 10, 4, 0, READ_LOCK)) &&
1941               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 12, 4, 0, READ_LOCK));
1942         EXPECTED(ret, True);
1943         printf("the same process %s set overlapping read locks\n", ret?"can":"cannot");
1944
1945         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 20, 4, 0, WRITE_LOCK)) &&
1946               NT_STATUS_IS_OK(cli_lock32(cli2, fnum2, 22, 4, 0, WRITE_LOCK));
1947         EXPECTED(ret, False);
1948         printf("a different connection %s set overlapping write locks\n", ret?"can":"cannot");
1949
1950         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 30, 4, 0, READ_LOCK)) &&
1951               NT_STATUS_IS_OK(cli_lock32(cli2, fnum2, 32, 4, 0, READ_LOCK));
1952         EXPECTED(ret, True);
1953         printf("a different connection %s set overlapping read locks\n", ret?"can":"cannot");
1954
1955         ret = (cli_setpid(cli1, 1),
1956               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 40, 4, 0, WRITE_LOCK))) &&
1957               (cli_setpid(cli1, 2),
1958               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 42, 4, 0, WRITE_LOCK)));
1959         EXPECTED(ret, False);
1960         printf("a different pid %s set overlapping write locks\n", ret?"can":"cannot");
1961
1962         ret = (cli_setpid(cli1, 1),
1963               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 50, 4, 0, READ_LOCK))) &&
1964               (cli_setpid(cli1, 2),
1965               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 52, 4, 0, READ_LOCK)));
1966         EXPECTED(ret, True);
1967         printf("a different pid %s set overlapping read locks\n", ret?"can":"cannot");
1968
1969         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 60, 4, 0, READ_LOCK)) &&
1970               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 60, 4, 0, READ_LOCK));
1971         EXPECTED(ret, True);
1972         printf("the same process %s set the same read lock twice\n", ret?"can":"cannot");
1973
1974         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 70, 4, 0, WRITE_LOCK)) &&
1975               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 70, 4, 0, WRITE_LOCK));
1976         EXPECTED(ret, False);
1977         printf("the same process %s set the same write lock twice\n", ret?"can":"cannot");
1978
1979         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 80, 4, 0, READ_LOCK)) &&
1980               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 80, 4, 0, WRITE_LOCK));
1981         EXPECTED(ret, False);
1982         printf("the same process %s overlay a read lock with a write lock\n", ret?"can":"cannot");
1983
1984         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 90, 4, 0, WRITE_LOCK)) &&
1985               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 90, 4, 0, READ_LOCK));
1986         EXPECTED(ret, True);
1987         printf("the same process %s overlay a write lock with a read lock\n", ret?"can":"cannot");
1988
1989         ret = (cli_setpid(cli1, 1),
1990              NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 100, 4, 0, WRITE_LOCK))) &&
1991              (cli_setpid(cli1, 2),
1992              NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 100, 4, 0, READ_LOCK)));
1993         EXPECTED(ret, False);
1994         printf("a different pid %s overlay a write lock with a read lock\n", ret?"can":"cannot");
1995
1996         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 110, 4, 0, READ_LOCK)) &&
1997               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 112, 4, 0, READ_LOCK)) &&
1998               NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 110, 6));
1999         EXPECTED(ret, False);
2000         printf("the same process %s coalesce read locks\n", ret?"can":"cannot");
2001
2002
2003         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 120, 4, 0, WRITE_LOCK)) &&
2004               test_cli_read(cli2, fnum2, buf, 120, 4, NULL, 4);
2005         EXPECTED(ret, False);
2006         printf("this server %s strict write locking\n", ret?"doesn't do":"does");
2007
2008         status = cli_lock32(cli1, fnum1, 130, 4, 0, READ_LOCK);
2009         ret = NT_STATUS_IS_OK(status);
2010         if (ret) {
2011                 status = cli_writeall(cli2, fnum2, 0, (uint8_t *)buf, 130, 4,
2012                                       NULL);
2013                 ret = NT_STATUS_IS_OK(status);
2014         }
2015         EXPECTED(ret, False);
2016         printf("this server %s strict read locking\n", ret?"doesn't do":"does");
2017
2018
2019         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 140, 4, 0, READ_LOCK)) &&
2020               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 140, 4, 0, READ_LOCK)) &&
2021               NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 140, 4)) &&
2022               NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 140, 4));
2023         EXPECTED(ret, True);
2024         printf("this server %s do recursive read locking\n", ret?"does":"doesn't");
2025
2026
2027         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 150, 4, 0, WRITE_LOCK)) &&
2028               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 150, 4, 0, READ_LOCK)) &&
2029               NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 150, 4)) &&
2030               test_cli_read(cli2, fnum2, buf, 150, 4, NULL, 4) &&
2031               !(NT_STATUS_IS_OK(cli_writeall(cli2, fnum2, 0, (uint8_t *)buf,
2032                                              150, 4, NULL))) &&
2033               NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 150, 4));
2034         EXPECTED(ret, True);
2035         printf("this server %s do recursive lock overlays\n", ret?"does":"doesn't");
2036
2037         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 160, 4, 0, READ_LOCK)) &&
2038               NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 160, 4)) &&
2039               NT_STATUS_IS_OK(cli_writeall(cli2, fnum2, 0, (uint8_t *)buf,
2040                                            160, 4, NULL)) &&
2041               test_cli_read(cli2, fnum2, buf, 160, 4, NULL, 4);
2042         EXPECTED(ret, True);
2043         printf("the same process %s remove a read lock using write locking\n", ret?"can":"cannot");
2044
2045         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 170, 4, 0, WRITE_LOCK)) &&
2046               NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 170, 4)) &&
2047               NT_STATUS_IS_OK(cli_writeall(cli2, fnum2, 0, (uint8_t *)buf,
2048                                            170, 4, NULL)) &&
2049               test_cli_read(cli2, fnum2, buf, 170, 4, NULL, 4);
2050         EXPECTED(ret, True);
2051         printf("the same process %s remove a write lock using read locking\n", ret?"can":"cannot");
2052
2053         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 190, 4, 0, WRITE_LOCK)) &&
2054               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 190, 4, 0, READ_LOCK)) &&
2055               NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 190, 4)) &&
2056               !NT_STATUS_IS_OK(cli_writeall(cli2, fnum2, 0, (uint8_t *)buf,
2057                                             190, 4, NULL)) &&
2058               test_cli_read(cli2, fnum2, buf, 190, 4, NULL, 4);
2059         EXPECTED(ret, True);
2060         printf("the same process %s remove the first lock first\n", ret?"does":"doesn't");
2061
2062         cli_close(cli1, fnum1);
2063         cli_close(cli2, fnum2);
2064         cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
2065         cli_openx(cli1, fname, O_RDWR, DENY_NONE, &f);
2066         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 8, 0, READ_LOCK)) &&
2067               NT_STATUS_IS_OK(cli_lock32(cli1, f, 0, 1, 0, READ_LOCK)) &&
2068               NT_STATUS_IS_OK(cli_close(cli1, fnum1)) &&
2069               NT_STATUS_IS_OK(cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1)) &&
2070               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 7, 1, 0, WRITE_LOCK));
2071         cli_close(cli1, f);
2072         cli_close(cli1, fnum1);
2073         EXPECTED(ret, True);
2074         printf("the server %s have the NT byte range lock bug\n", !ret?"does":"doesn't");
2075
2076  fail:
2077         cli_close(cli1, fnum1);
2078         cli_close(cli2, fnum2);
2079         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2080         torture_close_connection(cli1);
2081         torture_close_connection(cli2);
2082
2083         printf("finished locktest4\n");
2084         return correct;
2085 }
2086
2087 /*
2088   looks at lock upgrade/downgrade.
2089 */
2090 static bool run_locktest5(int dummy)
2091 {
2092         static struct cli_state *cli1, *cli2;
2093         const char *fname = "\\lockt5.lck";
2094         uint16_t fnum1, fnum2, fnum3;
2095         bool ret;
2096         char buf[1000];
2097         bool correct = True;
2098         NTSTATUS status;
2099
2100         if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
2101                 return False;
2102         }
2103
2104         smbXcli_conn_set_sockopt(cli1->conn, sockops);
2105         smbXcli_conn_set_sockopt(cli2->conn, sockops);
2106
2107         printf("starting locktest5\n");
2108
2109         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2110
2111         cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
2112         cli_openx(cli2, fname, O_RDWR, DENY_NONE, &fnum2);
2113         cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum3);
2114
2115         memset(buf, 0, sizeof(buf));
2116
2117         status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 0, sizeof(buf),
2118                               NULL);
2119         if (!NT_STATUS_IS_OK(status)) {
2120                 printf("Failed to create file: %s\n", nt_errstr(status));
2121                 correct = False;
2122                 goto fail;
2123         }
2124
2125         /* Check for NT bug... */
2126         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 8, 0, READ_LOCK)) &&
2127               NT_STATUS_IS_OK(cli_lock32(cli1, fnum3, 0, 1, 0, READ_LOCK));
2128         cli_close(cli1, fnum1);
2129         cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
2130         status = cli_lock32(cli1, fnum1, 7, 1, 0, WRITE_LOCK);
2131         ret = NT_STATUS_IS_OK(status);
2132         EXPECTED(ret, True);
2133         printf("this server %s the NT locking bug\n", ret ? "doesn't have" : "has");
2134         cli_close(cli1, fnum1);
2135         cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
2136         cli_unlock(cli1, fnum3, 0, 1);
2137
2138         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 4, 0, WRITE_LOCK)) &&
2139               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 1, 1, 0, READ_LOCK));
2140         EXPECTED(ret, True);
2141         printf("the same process %s overlay a write with a read lock\n", ret?"can":"cannot");
2142
2143         status = cli_lock32(cli2, fnum2, 0, 4, 0, READ_LOCK);
2144         ret = NT_STATUS_IS_OK(status);
2145         EXPECTED(ret, False);
2146
2147         printf("a different processs %s get a read lock on the first process lock stack\n", ret?"can":"cannot");
2148
2149         /* Unlock the process 2 lock. */
2150         cli_unlock(cli2, fnum2, 0, 4);
2151
2152         status = cli_lock32(cli1, fnum3, 0, 4, 0, READ_LOCK);
2153         ret = NT_STATUS_IS_OK(status);
2154         EXPECTED(ret, False);
2155
2156         printf("the same processs on a different fnum %s get a read lock\n", ret?"can":"cannot");
2157
2158         /* Unlock the process 1 fnum3 lock. */
2159         cli_unlock(cli1, fnum3, 0, 4);
2160
2161         /* Stack 2 more locks here. */
2162         ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 4, 0, READ_LOCK)) &&
2163               NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 4, 0, READ_LOCK));
2164
2165         EXPECTED(ret, True);
2166         printf("the same process %s stack read locks\n", ret?"can":"cannot");
2167
2168         /* Unlock the first process lock, then check this was the WRITE lock that was
2169                 removed. */
2170
2171         ret = NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 0, 4)) &&
2172               NT_STATUS_IS_OK(cli_lock32(cli2, fnum2, 0, 4, 0, READ_LOCK));
2173
2174         EXPECTED(ret, True);
2175         printf("the first unlock removes the %s lock\n", ret?"WRITE":"READ");
2176
2177         /* Unlock the process 2 lock. */
2178         cli_unlock(cli2, fnum2, 0, 4);
2179
2180         /* We should have 3 stacked locks here. Ensure we need to do 3 unlocks. */
2181
2182         ret = NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 1, 1)) &&
2183                   NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 0, 4)) &&
2184                   NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 0, 4));
2185
2186         EXPECTED(ret, True);
2187         printf("the same process %s unlock the stack of 4 locks\n", ret?"can":"cannot"); 
2188
2189         /* Ensure the next unlock fails. */
2190         ret = NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 0, 4));
2191         EXPECTED(ret, False);
2192         printf("the same process %s count the lock stack\n", !ret?"can":"cannot"); 
2193
2194         /* Ensure connection 2 can get a write lock. */
2195         status = cli_lock32(cli2, fnum2, 0, 4, 0, WRITE_LOCK);
2196         ret = NT_STATUS_IS_OK(status);
2197         EXPECTED(ret, True);
2198
2199         printf("a different processs %s get a write lock on the unlocked stack\n", ret?"can":"cannot");
2200
2201
2202  fail:
2203         cli_close(cli1, fnum1);
2204         cli_close(cli2, fnum2);
2205         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2206         if (!torture_close_connection(cli1)) {
2207                 correct = False;
2208         }
2209         if (!torture_close_connection(cli2)) {
2210                 correct = False;
2211         }
2212
2213         printf("finished locktest5\n");
2214
2215         return correct;
2216 }
2217
2218 /*
2219   tries the unusual lockingX locktype bits
2220 */
2221 static bool run_locktest6(int dummy)
2222 {
2223         static struct cli_state *cli;
2224         const char *fname[1] = { "\\lock6.txt" };
2225         int i;
2226         uint16_t fnum;
2227         NTSTATUS status;
2228
2229         if (!torture_open_connection(&cli, 0)) {
2230                 return False;
2231         }
2232
2233         smbXcli_conn_set_sockopt(cli->conn, sockops);
2234
2235         printf("starting locktest6\n");
2236
2237         for (i=0;i<1;i++) {
2238                 printf("Testing %s\n", fname[i]);
2239
2240                 cli_unlink(cli, fname[i], FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2241
2242                 cli_openx(cli, fname[i], O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum);
2243                 status = cli_locktype(cli, fnum, 0, 8, 0, LOCKING_ANDX_CHANGE_LOCKTYPE);
2244                 cli_close(cli, fnum);
2245                 printf("CHANGE_LOCKTYPE gave %s\n", nt_errstr(status));
2246
2247                 cli_openx(cli, fname[i], O_RDWR, DENY_NONE, &fnum);
2248                 status = cli_locktype(cli, fnum, 0, 8, 0, LOCKING_ANDX_CANCEL_LOCK);
2249                 cli_close(cli, fnum);
2250                 printf("CANCEL_LOCK gave %s\n", nt_errstr(status));
2251
2252                 cli_unlink(cli, fname[i], FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2253         }
2254
2255         torture_close_connection(cli);
2256
2257         printf("finished locktest6\n");
2258         return True;
2259 }
2260
2261 static bool run_locktest7(int dummy)
2262 {
2263         struct cli_state *cli1;
2264         const char *fname = "\\lockt7.lck";
2265         uint16_t fnum1;
2266         char buf[200];
2267         bool correct = False;
2268         size_t nread;
2269         NTSTATUS status;
2270
2271         if (!torture_open_connection(&cli1, 0)) {
2272                 return False;
2273         }
2274
2275         smbXcli_conn_set_sockopt(cli1->conn, sockops);
2276
2277         printf("starting locktest7\n");
2278
2279         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2280
2281         cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
2282
2283         memset(buf, 0, sizeof(buf));
2284
2285         status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 0, sizeof(buf),
2286                               NULL);
2287         if (!NT_STATUS_IS_OK(status)) {
2288                 printf("Failed to create file: %s\n", nt_errstr(status));
2289                 goto fail;
2290         }
2291
2292         cli_setpid(cli1, 1);
2293
2294         status = cli_lock32(cli1, fnum1, 130, 4, 0, READ_LOCK);
2295         if (!NT_STATUS_IS_OK(status)) {
2296                 printf("Unable to apply read lock on range 130:4, "
2297                        "error was %s\n", nt_errstr(status));
2298                 goto fail;
2299         } else {
2300                 printf("pid1 successfully locked range 130:4 for READ\n");
2301         }
2302
2303         status = cli_read(cli1, fnum1, buf, 130, 4, &nread);
2304         if (!NT_STATUS_IS_OK(status)) {
2305                 printf("pid1 unable to read the range 130:4, error was %s\n",
2306                       nt_errstr(status));
2307                 goto fail;
2308         } else if (nread != 4) {
2309                 printf("pid1 unable to read the range 130:4, "
2310                        "recv %ld req %d\n", (unsigned long)nread, 4);
2311                 goto fail;
2312         } else {
2313                 printf("pid1 successfully read the range 130:4\n");
2314         }
2315
2316         status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
2317         if (!NT_STATUS_IS_OK(status)) {
2318                 printf("pid1 unable to write to the range 130:4, error was "
2319                        "%s\n", nt_errstr(status));
2320                 if (!NT_STATUS_EQUAL(status, NT_STATUS_FILE_LOCK_CONFLICT)) {
2321                         printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2322                         goto fail;
2323                 }
2324         } else {
2325                 printf("pid1 successfully wrote to the range 130:4 (should be denied)\n");
2326                 goto fail;
2327         }
2328
2329         cli_setpid(cli1, 2);
2330
2331         status = cli_read(cli1, fnum1, buf, 130, 4, &nread);
2332         if (!NT_STATUS_IS_OK(status)) {
2333                 printf("pid2 unable to read the range 130:4, error was %s\n",
2334                       nt_errstr(status));
2335                 goto fail;
2336         } else if (nread != 4) {
2337                 printf("pid2 unable to read the range 130:4, "
2338                        "recv %ld req %d\n", (unsigned long)nread, 4);
2339                 goto fail;
2340         } else {
2341                 printf("pid2 successfully read the range 130:4\n");
2342         }
2343
2344         status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
2345         if (!NT_STATUS_IS_OK(status)) {
2346                 printf("pid2 unable to write to the range 130:4, error was "
2347                        "%s\n", nt_errstr(status));
2348                 if (!NT_STATUS_EQUAL(status, NT_STATUS_FILE_LOCK_CONFLICT)) {
2349                         printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2350                         goto fail;
2351                 }
2352         } else {
2353                 printf("pid2 successfully wrote to the range 130:4 (should be denied)\n");
2354                 goto fail;
2355         }
2356
2357         cli_setpid(cli1, 1);
2358         cli_unlock(cli1, fnum1, 130, 4);
2359
2360         status = cli_lock32(cli1, fnum1, 130, 4, 0, WRITE_LOCK);
2361         if (!NT_STATUS_IS_OK(status)) {
2362                 printf("Unable to apply write lock on range 130:4, error was %s\n", nt_errstr(status));
2363                 goto fail;
2364         } else {
2365                 printf("pid1 successfully locked range 130:4 for WRITE\n");
2366         }
2367
2368         status = cli_read(cli1, fnum1, buf, 130, 4, &nread);
2369         if (!NT_STATUS_IS_OK(status)) {
2370                 printf("pid1 unable to read the range 130:4, error was %s\n",
2371                       nt_errstr(status));
2372                 goto fail;
2373         } else if (nread != 4) {
2374                 printf("pid1 unable to read the range 130:4, "
2375                        "recv %ld req %d\n", (unsigned long)nread, 4);
2376                 goto fail;
2377         } else {
2378                 printf("pid1 successfully read the range 130:4\n");
2379         }
2380
2381         status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
2382         if (!NT_STATUS_IS_OK(status)) {
2383                 printf("pid1 unable to write to the range 130:4, error was "
2384                        "%s\n", nt_errstr(status));
2385                 goto fail;
2386         } else {
2387                 printf("pid1 successfully wrote to the range 130:4\n");
2388         }
2389
2390         cli_setpid(cli1, 2);
2391
2392         status = cli_read(cli1, fnum1, buf, 130, 4, &nread);
2393         if (!NT_STATUS_IS_OK(status)) {
2394                 printf("pid2 unable to read the range 130:4, error was "
2395                        "%s\n", nt_errstr(status));
2396                 if (!NT_STATUS_EQUAL(status, NT_STATUS_FILE_LOCK_CONFLICT)) {
2397                         printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2398                         goto fail;
2399                 }
2400         } else {
2401                 printf("pid2 successfully read the range 130:4 (should be denied) recv %ld\n",
2402                        (unsigned long)nread);
2403                 goto fail;
2404         }
2405
2406         status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
2407         if (!NT_STATUS_IS_OK(status)) {
2408                 printf("pid2 unable to write to the range 130:4, error was "
2409                        "%s\n", nt_errstr(status));
2410                 if (!NT_STATUS_EQUAL(status, NT_STATUS_FILE_LOCK_CONFLICT)) {
2411                         printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2412                         goto fail;
2413                 }
2414         } else {
2415                 printf("pid2 successfully wrote to the range 130:4 (should be denied)\n");
2416                 goto fail;
2417         }
2418
2419         cli_unlock(cli1, fnum1, 130, 0);
2420         correct = True;
2421
2422 fail:
2423         cli_close(cli1, fnum1);
2424         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2425         torture_close_connection(cli1);
2426
2427         printf("finished locktest7\n");
2428         return correct;
2429 }
2430
2431 /*
2432  * This demonstrates a problem with our use of GPFS share modes: A file
2433  * descriptor sitting in the pending close queue holding a GPFS share mode
2434  * blocks opening a file another time. Happens with Word 2007 temp files.
2435  * With "posix locking = yes" and "gpfs:sharemodes = yes" enabled, the third
2436  * open is denied with NT_STATUS_SHARING_VIOLATION.
2437  */
2438
2439 static bool run_locktest8(int dummy)
2440 {
2441         struct cli_state *cli1;
2442         const char *fname = "\\lockt8.lck";
2443         uint16_t fnum1, fnum2;
2444         char buf[200];
2445         bool correct = False;
2446         NTSTATUS status;
2447
2448         if (!torture_open_connection(&cli1, 0)) {
2449                 return False;
2450         }
2451
2452         smbXcli_conn_set_sockopt(cli1->conn, sockops);
2453
2454         printf("starting locktest8\n");
2455
2456         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2457
2458         status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_WRITE,
2459                           &fnum1);
2460         if (!NT_STATUS_IS_OK(status)) {
2461                 d_fprintf(stderr, "cli_openx returned %s\n", nt_errstr(status));
2462                 return false;
2463         }
2464
2465         memset(buf, 0, sizeof(buf));
2466
2467         status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum2);
2468         if (!NT_STATUS_IS_OK(status)) {
2469                 d_fprintf(stderr, "cli_openx second time returned %s\n",
2470                           nt_errstr(status));
2471                 goto fail;
2472         }
2473
2474         status = cli_lock32(cli1, fnum2, 1, 1, 0, READ_LOCK);
2475         if (!NT_STATUS_IS_OK(status)) {
2476                 printf("Unable to apply read lock on range 1:1, error was "
2477                        "%s\n", nt_errstr(status));
2478                 goto fail;
2479         }
2480
2481         status = cli_close(cli1, fnum1);
2482         if (!NT_STATUS_IS_OK(status)) {
2483                 d_fprintf(stderr, "cli_close(fnum1) %s\n", nt_errstr(status));
2484                 goto fail;
2485         }
2486
2487         status = cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
2488         if (!NT_STATUS_IS_OK(status)) {
2489                 d_fprintf(stderr, "cli_openx third time returned %s\n",
2490                           nt_errstr(status));
2491                 goto fail;
2492         }
2493
2494         correct = true;
2495
2496 fail:
2497         cli_close(cli1, fnum1);
2498         cli_close(cli1, fnum2);
2499         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2500         torture_close_connection(cli1);
2501
2502         printf("finished locktest8\n");
2503         return correct;
2504 }
2505
2506 /*
2507  * This test is designed to be run in conjunction with
2508  * external NFS or POSIX locks taken in the filesystem.
2509  * It checks that the smbd server will block until the
2510  * lock is released and then acquire it. JRA.
2511  */
2512
2513 static bool got_alarm;
2514 static struct cli_state *alarm_cli;
2515
2516 static void alarm_handler(int dummy)
2517 {
2518         got_alarm = True;
2519 }
2520
2521 static void alarm_handler_parent(int dummy)
2522 {
2523         smbXcli_conn_disconnect(alarm_cli->conn, NT_STATUS_OK);
2524 }
2525
2526 static void do_local_lock(int read_fd, int write_fd)
2527 {
2528         int fd;
2529         char c = '\0';
2530         struct flock lock;
2531         const char *local_pathname = NULL;
2532         int ret;
2533
2534         local_pathname = talloc_asprintf(talloc_tos(),
2535                         "%s/lockt9.lck", local_path);
2536         if (!local_pathname) {
2537                 printf("child: alloc fail\n");
2538                 exit(1);
2539         }
2540
2541         unlink(local_pathname);
2542         fd = open(local_pathname, O_RDWR|O_CREAT, 0666);
2543         if (fd == -1) {
2544                 printf("child: open of %s failed %s.\n",
2545                         local_pathname, strerror(errno));
2546                 exit(1);
2547         }
2548
2549         /* Now take a fcntl lock. */
2550         lock.l_type = F_WRLCK;
2551         lock.l_whence = SEEK_SET;
2552         lock.l_start = 0;
2553         lock.l_len = 4;
2554         lock.l_pid = getpid();
2555
2556         ret = fcntl(fd,F_SETLK,&lock);
2557         if (ret == -1) {
2558                 printf("child: failed to get lock 0:4 on file %s. Error %s\n",
2559                         local_pathname, strerror(errno));
2560                 exit(1);
2561         } else {
2562                 printf("child: got lock 0:4 on file %s.\n",
2563                         local_pathname );
2564                 fflush(stdout);
2565         }
2566
2567         CatchSignal(SIGALRM, alarm_handler);
2568         alarm(5);
2569         /* Signal the parent. */
2570         if (write(write_fd, &c, 1) != 1) {
2571                 printf("child: start signal fail %s.\n",
2572                         strerror(errno));
2573                 exit(1);
2574         }
2575         alarm(0);
2576
2577         alarm(10);
2578         /* Wait for the parent to be ready. */
2579         if (read(read_fd, &c, 1) != 1) {
2580                 printf("child: reply signal fail %s.\n",
2581                         strerror(errno));
2582                 exit(1);
2583         }
2584         alarm(0);
2585
2586         sleep(5);
2587         close(fd);
2588         printf("child: released lock 0:4 on file %s.\n",
2589                 local_pathname );
2590         fflush(stdout);
2591         exit(0);
2592 }
2593
2594 static bool run_locktest9(int dummy)
2595 {
2596         struct cli_state *cli1;
2597         const char *fname = "\\lockt9.lck";
2598         uint16_t fnum;
2599         bool correct = False;
2600         int pipe_in[2], pipe_out[2];
2601         pid_t child_pid;
2602         char c = '\0';
2603         int ret;
2604         struct timeval start;
2605         double seconds;
2606         NTSTATUS status;
2607
2608         printf("starting locktest9\n");
2609
2610         if (local_path == NULL) {
2611                 d_fprintf(stderr, "locktest9 must be given a local path via -l <localpath>\n");
2612                 return false;
2613         }
2614
2615         if (pipe(pipe_in) == -1 || pipe(pipe_out) == -1) {
2616                 return false;
2617         }
2618
2619         child_pid = fork();
2620         if (child_pid == -1) {
2621                 return false;
2622         }
2623
2624         if (child_pid == 0) {
2625                 /* Child. */
2626                 do_local_lock(pipe_out[0], pipe_in[1]);
2627                 exit(0);
2628         }
2629
2630         close(pipe_out[0]);
2631         close(pipe_in[1]);
2632         pipe_out[0] = -1;
2633         pipe_in[1] = -1;
2634
2635         /* Parent. */
2636         ret = read(pipe_in[0], &c, 1);
2637         if (ret != 1) {
2638                 d_fprintf(stderr, "failed to read start signal from child. %s\n",
2639                         strerror(errno));
2640                 return false;
2641         }
2642
2643         if (!torture_open_connection(&cli1, 0)) {
2644                 return false;
2645         }
2646
2647         smbXcli_conn_set_sockopt(cli1->conn, sockops);
2648
2649         status = cli_openx(cli1, fname, O_RDWR, DENY_NONE,
2650                           &fnum);
2651         if (!NT_STATUS_IS_OK(status)) {
2652                 d_fprintf(stderr, "cli_openx returned %s\n", nt_errstr(status));
2653                 return false;
2654         }
2655
2656         /* Ensure the child has the lock. */
2657         status = cli_lock32(cli1, fnum, 0, 4, 0, WRITE_LOCK);
2658         if (NT_STATUS_IS_OK(status)) {
2659                 d_fprintf(stderr, "Got the lock on range 0:4 - this should not happen !\n");
2660                 goto fail;
2661         } else {
2662                 d_printf("Child has the lock.\n");
2663         }
2664
2665         /* Tell the child to wait 5 seconds then exit. */
2666         ret = write(pipe_out[1], &c, 1);
2667         if (ret != 1) {
2668                 d_fprintf(stderr, "failed to send exit signal to child. %s\n",
2669                         strerror(errno));
2670                 goto fail;
2671         }
2672
2673         /* Wait 20 seconds for the lock. */
2674         alarm_cli = cli1;
2675         CatchSignal(SIGALRM, alarm_handler_parent);
2676         alarm(20);
2677
2678         start = timeval_current();
2679
2680         status = cli_lock32(cli1, fnum, 0, 4, -1, WRITE_LOCK);
2681         if (!NT_STATUS_IS_OK(status)) {
2682                 d_fprintf(stderr, "Unable to apply write lock on range 0:4, error was "
2683                        "%s\n", nt_errstr(status));
2684                 goto fail_nofd;
2685         }
2686         alarm(0);
2687
2688         seconds = timeval_elapsed(&start);
2689
2690         printf("Parent got the lock after %.2f seconds.\n",
2691                 seconds);
2692
2693         status = cli_close(cli1, fnum);
2694         if (!NT_STATUS_IS_OK(status)) {
2695                 d_fprintf(stderr, "cli_close(fnum1) %s\n", nt_errstr(status));
2696                 goto fail;
2697         }
2698
2699         correct = true;
2700
2701 fail:
2702         cli_close(cli1, fnum);
2703         torture_close_connection(cli1);
2704
2705 fail_nofd:
2706
2707         printf("finished locktest9\n");
2708         return correct;
2709 }
2710
2711 /*
2712 test whether fnums and tids open on one VC are available on another (a major
2713 security hole)
2714 */
2715 static bool run_fdpasstest(int dummy)
2716 {
2717         struct cli_state *cli1, *cli2;
2718         const char *fname = "\\fdpass.tst";
2719         uint16_t fnum1;
2720         char buf[1024];
2721         NTSTATUS status;
2722
2723         if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
2724                 return False;
2725         }
2726         smbXcli_conn_set_sockopt(cli1->conn, sockops);
2727         smbXcli_conn_set_sockopt(cli2->conn, sockops);
2728
2729         printf("starting fdpasstest\n");
2730
2731         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2732
2733         status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
2734                           &fnum1);
2735         if (!NT_STATUS_IS_OK(status)) {
2736                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
2737                 return False;
2738         }
2739
2740         status = cli_writeall(cli1, fnum1, 0, (const uint8_t *)"hello world\n", 0,
2741                               13, NULL);
2742         if (!NT_STATUS_IS_OK(status)) {
2743                 printf("write failed (%s)\n", nt_errstr(status));
2744                 return False;
2745         }
2746
2747         cli_state_set_uid(cli2, cli_state_get_uid(cli1));
2748         cli_state_set_tid(cli2, cli_state_get_tid(cli1));
2749         cli_setpid(cli2, cli_getpid(cli1));
2750
2751         if (test_cli_read(cli2, fnum1, buf, 0, 13, NULL, 13)) {
2752                 printf("read succeeded! nasty security hole [%s]\n", buf);
2753                 return false;
2754         }
2755
2756         cli_close(cli1, fnum1);
2757         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2758
2759         torture_close_connection(cli1);
2760         torture_close_connection(cli2);
2761
2762         printf("finished fdpasstest\n");
2763         return True;
2764 }
2765
2766 static bool run_fdsesstest(int dummy)
2767 {
2768         struct cli_state *cli;
2769         uint16_t new_vuid;
2770         uint16_t saved_vuid;
2771         uint16_t new_cnum;
2772         uint16_t saved_cnum;
2773         const char *fname = "\\fdsess.tst";
2774         const char *fname1 = "\\fdsess1.tst";
2775         uint16_t fnum1;
2776         uint16_t fnum2;
2777         char buf[1024];
2778         bool ret = True;
2779         NTSTATUS status;
2780
2781         if (!torture_open_connection(&cli, 0))
2782                 return False;
2783         smbXcli_conn_set_sockopt(cli->conn, sockops);
2784
2785         if (!torture_cli_session_setup2(cli, &new_vuid))
2786                 return False;
2787
2788         saved_cnum = cli_state_get_tid(cli);
2789         if (!NT_STATUS_IS_OK(cli_tree_connect(cli, share, "?????", "", 1)))
2790                 return False;
2791         new_cnum = cli_state_get_tid(cli);
2792         cli_state_set_tid(cli, saved_cnum);
2793
2794         printf("starting fdsesstest\n");
2795
2796         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2797         cli_unlink(cli, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2798
2799         status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
2800         if (!NT_STATUS_IS_OK(status)) {
2801                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
2802                 return False;
2803         }
2804
2805         status = cli_writeall(cli, fnum1, 0, (const uint8_t *)"hello world\n", 0, 13,
2806                               NULL);
2807         if (!NT_STATUS_IS_OK(status)) {
2808                 printf("write failed (%s)\n", nt_errstr(status));
2809                 return False;
2810         }
2811
2812         saved_vuid = cli_state_get_uid(cli);
2813         cli_state_set_uid(cli, new_vuid);
2814
2815         if (test_cli_read(cli, fnum1, buf, 0, 13, NULL, 13)) {
2816                 printf("read succeeded with different vuid! "
2817                        "nasty security hole [%s]\n", buf);
2818                 ret = false;
2819         }
2820         /* Try to open a file with different vuid, samba cnum. */
2821         if (NT_STATUS_IS_OK(cli_openx(cli, fname1, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum2))) {
2822                 printf("create with different vuid, same cnum succeeded.\n");
2823                 cli_close(cli, fnum2);
2824                 cli_unlink(cli, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2825         } else {
2826                 printf("create with different vuid, same cnum failed.\n");
2827                 printf("This will cause problems with service clients.\n");
2828                 ret = False;
2829         }
2830
2831         cli_state_set_uid(cli, saved_vuid);
2832
2833         /* Try with same vuid, different cnum. */
2834         cli_state_set_tid(cli, new_cnum);
2835
2836         if (test_cli_read(cli, fnum1, buf, 0, 13, NULL, 13)) {
2837                 printf("read succeeded with different cnum![%s]\n", buf);
2838                 ret = false;
2839         }
2840
2841         cli_state_set_tid(cli, saved_cnum);
2842         cli_close(cli, fnum1);
2843         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2844
2845         torture_close_connection(cli);
2846
2847         printf("finished fdsesstest\n");
2848         return ret;
2849 }
2850
2851 /*
2852   This test checks that 
2853
2854   1) the server does not allow an unlink on a file that is open
2855 */
2856 static bool run_unlinktest(int dummy)
2857 {
2858         struct cli_state *cli;
2859         const char *fname = "\\unlink.tst";
2860         uint16_t fnum;
2861         bool correct = True;
2862         NTSTATUS status;
2863
2864         if (!torture_open_connection(&cli, 0)) {
2865                 return False;
2866         }
2867
2868         smbXcli_conn_set_sockopt(cli->conn, sockops);
2869
2870         printf("starting unlink test\n");
2871
2872         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2873
2874         cli_setpid(cli, 1);
2875
2876         status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum);
2877         if (!NT_STATUS_IS_OK(status)) {
2878                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
2879                 return False;
2880         }
2881
2882         status = cli_unlink(cli, fname,
2883                             FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2884         if (NT_STATUS_IS_OK(status)) {
2885                 printf("error: server allowed unlink on an open file\n");
2886                 correct = False;
2887         } else {
2888                 correct = check_error(__LINE__, status, ERRDOS, ERRbadshare,
2889                                       NT_STATUS_SHARING_VIOLATION);
2890         }
2891
2892         cli_close(cli, fnum);
2893         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2894
2895         if (!torture_close_connection(cli)) {
2896                 correct = False;
2897         }
2898
2899         printf("unlink test finished\n");
2900
2901         return correct;
2902 }
2903
2904
2905 /*
2906 test how many open files this server supports on the one socket
2907 */
2908 static bool run_maxfidtest(int dummy)
2909 {
2910         struct cli_state *cli;
2911         fstring fname;
2912         uint16_t fnums[0x11000];
2913         int i;
2914         int retries=4;
2915         bool correct = True;
2916         NTSTATUS status;
2917
2918         cli = current_cli;
2919
2920         if (retries <= 0) {
2921                 printf("failed to connect\n");
2922                 return False;
2923         }
2924
2925         smbXcli_conn_set_sockopt(cli->conn, sockops);
2926
2927         for (i=0; i<0x11000; i++) {
2928                 slprintf(fname,sizeof(fname)-1,"\\maxfid.%d.%d", i,(int)getpid());
2929                 status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE,
2930                                   &fnums[i]);
2931                 if (!NT_STATUS_IS_OK(status)) {
2932                         printf("open of %s failed (%s)\n", 
2933                                fname, nt_errstr(status));
2934                         printf("maximum fnum is %d\n", i);
2935                         break;
2936                 }
2937                 printf("%6d\r", i);
2938         }
2939         printf("%6d\n", i);
2940         i--;
2941
2942         printf("cleaning up\n");
2943         for (;i>=0;i--) {
2944                 slprintf(fname,sizeof(fname)-1,"\\maxfid.%d.%d", i,(int)getpid());
2945                 cli_close(cli, fnums[i]);
2946
2947                 status = cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2948                 if (!NT_STATUS_IS_OK(status)) {
2949                         printf("unlink of %s failed (%s)\n", 
2950                                fname, nt_errstr(status));
2951                         correct = False;
2952                 }
2953                 printf("%6d\r", i);
2954         }
2955         printf("%6d\n", 0);
2956
2957         printf("maxfid test finished\n");
2958         if (!torture_close_connection(cli)) {
2959                 correct = False;
2960         }
2961         return correct;
2962 }
2963
2964 /* generate a random buffer */
2965 static void rand_buf(char *buf, int len)
2966 {
2967         while (len--) {
2968                 *buf = (char)sys_random();
2969                 buf++;
2970         }
2971 }
2972
2973 /* send smb negprot commands, not reading the response */
2974 static bool run_negprot_nowait(int dummy)
2975 {
2976         struct tevent_context *ev;
2977         int i;
2978         struct cli_state *cli;
2979         bool correct = True;
2980
2981         printf("starting negprot nowait test\n");
2982
2983         ev = samba_tevent_context_init(talloc_tos());
2984         if (ev == NULL) {
2985                 return false;
2986         }
2987
2988         if (!(cli = open_nbt_connection())) {
2989                 TALLOC_FREE(ev);
2990                 return False;
2991         }
2992
2993         for (i=0;i<50000;i++) {
2994                 struct tevent_req *req;
2995
2996                 req = smbXcli_negprot_send(ev, ev, cli->conn, cli->timeout,
2997                                            PROTOCOL_CORE, PROTOCOL_NT1);
2998                 if (req == NULL) {
2999                         TALLOC_FREE(ev);
3000                         return false;
3001                 }
3002                 if (!tevent_req_poll(req, ev)) {
3003                         d_fprintf(stderr, "tevent_req_poll failed: %s\n",
3004                                   strerror(errno));
3005                         TALLOC_FREE(ev);
3006                         return false;
3007                 }
3008                 TALLOC_FREE(req);
3009         }
3010
3011         if (torture_close_connection(cli)) {
3012                 correct = False;
3013         }
3014
3015         printf("finished negprot nowait test\n");
3016
3017         return correct;
3018 }
3019
3020 /* send smb negprot commands, not reading the response */
3021 static bool run_bad_nbt_session(int dummy)
3022 {
3023         struct nmb_name called, calling;
3024         struct sockaddr_storage ss;
3025         NTSTATUS status;
3026         int fd;
3027         bool ret;
3028
3029         printf("starting bad nbt session test\n");
3030
3031         make_nmb_name(&calling, myname, 0x0);
3032         make_nmb_name(&called , host, 0x20);
3033
3034         if (!resolve_name(host, &ss, 0x20, true)) {
3035                 d_fprintf(stderr, "Could not resolve name %s\n", host);
3036                 return false;
3037         }
3038
3039         status = open_socket_out(&ss, NBT_SMB_PORT, 10000, &fd);
3040         if (!NT_STATUS_IS_OK(status)) {
3041                 d_fprintf(stderr, "open_socket_out failed: %s\n",
3042                           nt_errstr(status));
3043                 return false;
3044         }
3045
3046         ret = cli_bad_session_request(fd, &calling, &called);
3047         close(fd);
3048         if (!ret) {
3049                 d_fprintf(stderr, "open_socket_out failed: %s\n",
3050                           nt_errstr(status));
3051                 return false;
3052         }
3053
3054         printf("finished bad nbt session test\n");
3055         return true;
3056 }
3057
3058 /* send random IPC commands */
3059 static bool run_randomipc(int dummy)
3060 {
3061         char *rparam = NULL;
3062         char *rdata = NULL;
3063         unsigned int rdrcnt,rprcnt;
3064         char param[1024];
3065         int api, param_len, i;
3066         struct cli_state *cli;
3067         bool correct = True;
3068         int count = 50000;
3069
3070         printf("starting random ipc test\n");
3071
3072         if (!torture_open_connection(&cli, 0)) {
3073                 return False;
3074         }
3075
3076         for (i=0;i<count;i++) {
3077                 api = sys_random() % 500;
3078                 param_len = (sys_random() % 64);
3079
3080                 rand_buf(param, param_len);
3081
3082                 SSVAL(param,0,api); 
3083
3084                 cli_api(cli, 
3085                         param, param_len, 8,  
3086                         NULL, 0, CLI_BUFFER_SIZE,
3087                         &rparam, &rprcnt,     
3088                         &rdata, &rdrcnt);
3089                 if (i % 100 == 0) {
3090                         printf("%d/%d\r", i,count);
3091                 }
3092         }
3093         printf("%d/%d\n", i, count);
3094
3095         if (!torture_close_connection(cli)) {
3096                 correct = False;
3097         }
3098
3099         SAFE_FREE(rparam);
3100         SAFE_FREE(rdata);
3101
3102         printf("finished random ipc test\n");
3103
3104         return correct;
3105 }
3106
3107
3108
3109 static void browse_callback(const char *sname, uint32_t stype,
3110                             const char *comment, void *state)
3111 {
3112         printf("\t%20.20s %08x %s\n", sname, stype, comment);
3113 }
3114
3115
3116
3117 /*
3118   This test checks the browse list code
3119
3120 */
3121 static bool run_browsetest(int dummy)
3122 {
3123         static struct cli_state *cli;
3124         bool correct = True;
3125
3126         printf("starting browse test\n");
3127
3128         if (!torture_open_connection(&cli, 0)) {
3129                 return False;
3130         }
3131
3132         printf("domain list:\n");
3133         cli_NetServerEnum(cli, cli->server_domain, 
3134                           SV_TYPE_DOMAIN_ENUM,
3135                           browse_callback, NULL);
3136
3137         printf("machine list:\n");
3138         cli_NetServerEnum(cli, cli->server_domain, 
3139                           SV_TYPE_ALL,
3140                           browse_callback, NULL);
3141
3142         if (!torture_close_connection(cli)) {
3143                 correct = False;
3144         }
3145
3146         printf("browse test finished\n");
3147
3148         return correct;
3149
3150 }
3151
3152
3153 /*
3154   This checks how the getatr calls works
3155 */
3156 static bool run_attrtest(int dummy)
3157 {
3158         struct cli_state *cli;
3159         uint16_t fnum;
3160         time_t t, t2;
3161         const char *fname = "\\attrib123456789.tst";
3162         bool correct = True;
3163         NTSTATUS status;
3164
3165         printf("starting attrib test\n");
3166
3167         if (!torture_open_connection(&cli, 0)) {
3168                 return False;
3169         }
3170
3171         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3172         cli_openx(cli, fname, 
3173                         O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
3174         cli_close(cli, fnum);
3175
3176         status = cli_getatr(cli, fname, NULL, NULL, &t);
3177         if (!NT_STATUS_IS_OK(status)) {
3178                 printf("getatr failed (%s)\n", nt_errstr(status));
3179                 correct = False;
3180         }
3181
3182         if (abs(t - time(NULL)) > 60*60*24*10) {
3183                 printf("ERROR: SMBgetatr bug. time is %s",
3184                        ctime(&t));
3185                 t = time(NULL);
3186                 correct = True;
3187         }
3188
3189         t2 = t-60*60*24; /* 1 day ago */
3190
3191         status = cli_setatr(cli, fname, 0, t2);
3192         if (!NT_STATUS_IS_OK(status)) {
3193                 printf("setatr failed (%s)\n", nt_errstr(status));
3194                 correct = True;
3195         }
3196
3197         status = cli_getatr(cli, fname, NULL, NULL, &t);
3198         if (!NT_STATUS_IS_OK(status)) {
3199                 printf("getatr failed (%s)\n", nt_errstr(status));
3200                 correct = True;
3201         }
3202
3203         if (t != t2) {
3204                 printf("ERROR: getatr/setatr bug. times are\n%s",
3205                        ctime(&t));
3206                 printf("%s", ctime(&t2));
3207                 correct = True;
3208         }
3209
3210         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3211
3212         if (!torture_close_connection(cli)) {
3213                 correct = False;
3214         }
3215
3216         printf("attrib test finished\n");
3217
3218         return correct;
3219 }
3220
3221
3222 /*
3223   This checks a couple of trans2 calls
3224 */
3225 static bool run_trans2test(int dummy)
3226 {
3227         struct cli_state *cli;
3228         uint16_t fnum;
3229         off_t size;
3230         time_t c_time, a_time, m_time;
3231         struct timespec c_time_ts, a_time_ts, m_time_ts, w_time_ts, m_time2_ts;
3232         const char *fname = "\\trans2.tst";
3233         const char *dname = "\\trans2";
3234         const char *fname2 = "\\trans2\\trans2.tst";
3235         char *pname;
3236         bool correct = True;
3237         NTSTATUS status;
3238         uint32_t fs_attr;
3239
3240         printf("starting trans2 test\n");
3241
3242         if (!torture_open_connection(&cli, 0)) {
3243                 return False;
3244         }
3245
3246         status = cli_get_fs_attr_info(cli, &fs_attr);
3247         if (!NT_STATUS_IS_OK(status)) {
3248                 printf("ERROR: cli_get_fs_attr_info returned %s\n",
3249                        nt_errstr(status));
3250                 correct = false;
3251         }
3252
3253         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3254         cli_openx(cli, fname, O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
3255         status = cli_qfileinfo_basic(cli, fnum, NULL, &size, &c_time_ts,
3256                                      &a_time_ts, &w_time_ts, &m_time_ts, NULL);
3257         if (!NT_STATUS_IS_OK(status)) {
3258                 printf("ERROR: qfileinfo failed (%s)\n", nt_errstr(status));
3259                 correct = False;
3260         }
3261
3262         status = cli_qfilename(cli, fnum, talloc_tos(), &pname);
3263         if (!NT_STATUS_IS_OK(status)) {
3264                 printf("ERROR: qfilename failed (%s)\n", nt_errstr(status));
3265                 correct = False;
3266         }
3267         else if (strcmp(pname, fname)) {
3268                 printf("qfilename gave different name? [%s] [%s]\n",
3269                        fname, pname);
3270                 correct = False;
3271         }
3272
3273         cli_close(cli, fnum);
3274
3275         sleep(2);
3276
3277         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3278         status = cli_openx(cli, fname, O_RDWR | O_CREAT | O_TRUNC, DENY_NONE,
3279                           &fnum);
3280         if (!NT_STATUS_IS_OK(status)) {
3281                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3282                 return False;
3283         }
3284         cli_close(cli, fnum);
3285
3286         status = cli_qpathinfo1(cli, fname, &c_time, &a_time, &m_time, &size,
3287                                 NULL);
3288         if (!NT_STATUS_IS_OK(status)) {
3289                 printf("ERROR: qpathinfo failed (%s)\n", nt_errstr(status));
3290                 correct = False;
3291         } else {
3292                 time_t t = time(NULL);
3293
3294                 if (c_time != m_time) {
3295                         printf("create time=%s", ctime(&c_time));
3296                         printf("modify time=%s", ctime(&m_time));
3297                         printf("This system appears to have sticky create times\n");
3298                 }
3299                 if ((abs(a_time - t) > 60) && (a_time % (60*60) == 0)) {
3300                         printf("access time=%s", ctime(&a_time));
3301                         printf("This system appears to set a midnight access time\n");
3302                         correct = False;
3303                 }
3304
3305                 if (abs(m_time - t) > 60*60*24*7) {
3306                         printf("ERROR: totally incorrect times - maybe word reversed? mtime=%s", ctime(&m_time));
3307                         correct = False;
3308                 }
3309         }
3310
3311
3312         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3313         cli_openx(cli, fname, 
3314                         O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
3315         cli_close(cli, fnum);
3316         status = cli_qpathinfo2(cli, fname, &c_time_ts, &a_time_ts, &w_time_ts,
3317                                 &m_time_ts, &size, NULL, NULL);
3318         if (!NT_STATUS_IS_OK(status)) {
3319                 printf("ERROR: qpathinfo2 failed (%s)\n", nt_errstr(status));
3320                 correct = False;
3321         } else {
3322                 if (w_time_ts.tv_sec < 60*60*24*2) {
3323                         printf("write time=%s", ctime(&w_time_ts.tv_sec));
3324                         printf("This system appears to set a initial 0 write time\n");
3325                         correct = False;
3326                 }
3327         }
3328
3329         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3330
3331
3332         /* check if the server updates the directory modification time
3333            when creating a new file */
3334         status = cli_mkdir(cli, dname);
3335         if (!NT_STATUS_IS_OK(status)) {
3336                 printf("ERROR: mkdir failed (%s)\n", nt_errstr(status));
3337                 correct = False;
3338         }
3339         sleep(3);
3340         status = cli_qpathinfo2(cli, "\\trans2\\", &c_time_ts, &a_time_ts,
3341                                 &w_time_ts, &m_time_ts, &size, NULL, NULL);
3342         if (!NT_STATUS_IS_OK(status)) {
3343                 printf("ERROR: qpathinfo2 failed (%s)\n", nt_errstr(status));
3344                 correct = False;
3345         }
3346
3347         cli_openx(cli, fname2, 
3348                         O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
3349         cli_writeall(cli, fnum,  0, (uint8_t *)&fnum, 0, sizeof(fnum), NULL);
3350         cli_close(cli, fnum);
3351         status = cli_qpathinfo2(cli, "\\trans2\\", &c_time_ts, &a_time_ts,
3352                                 &w_time_ts, &m_time2_ts, &size, NULL, NULL);
3353         if (!NT_STATUS_IS_OK(status)) {
3354                 printf("ERROR: qpathinfo2 failed (%s)\n", nt_errstr(status));
3355                 correct = False;
3356         } else {
3357                 if (memcmp(&m_time_ts, &m_time2_ts, sizeof(struct timespec))
3358                     == 0) {
3359                         printf("This system does not update directory modification times\n");
3360                         correct = False;
3361                 }
3362         }
3363         cli_unlink(cli, fname2, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3364         cli_rmdir(cli, dname);
3365
3366         if (!torture_close_connection(cli)) {
3367                 correct = False;
3368         }
3369
3370         printf("trans2 test finished\n");
3371
3372         return correct;
3373 }
3374
3375 /*
3376   This checks new W2K calls.
3377 */
3378
3379 static NTSTATUS new_trans(struct cli_state *pcli, int fnum, int level)
3380 {
3381         uint8_t *buf = NULL;
3382         uint32_t len;
3383         NTSTATUS status;
3384
3385         status = cli_qfileinfo(talloc_tos(), pcli, fnum, level, 0,
3386                                CLI_BUFFER_SIZE, NULL, &buf, &len);
3387         if (!NT_STATUS_IS_OK(status)) {
3388                 printf("ERROR: qfileinfo (%d) failed (%s)\n", level,
3389                        nt_errstr(status));
3390         } else {
3391                 printf("qfileinfo: level %d, len = %u\n", level, len);
3392                 dump_data(0, (uint8_t *)buf, len);
3393                 printf("\n");
3394         }
3395         TALLOC_FREE(buf);
3396         return status;
3397 }
3398
3399 static bool run_w2ktest(int dummy)
3400 {
3401         struct cli_state *cli;
3402         uint16_t fnum;
3403         const char *fname = "\\w2ktest\\w2k.tst";
3404         int level;
3405         bool correct = True;
3406
3407         printf("starting w2k test\n");
3408
3409         if (!torture_open_connection(&cli, 0)) {
3410                 return False;
3411         }
3412
3413         cli_openx(cli, fname, 
3414                         O_RDWR | O_CREAT , DENY_NONE, &fnum);
3415
3416         for (level = 1004; level < 1040; level++) {
3417                 new_trans(cli, fnum, level);
3418         }
3419
3420         cli_close(cli, fnum);
3421
3422         if (!torture_close_connection(cli)) {
3423                 correct = False;
3424         }
3425
3426         printf("w2k test finished\n");
3427
3428         return correct;
3429 }
3430
3431
3432 /*
3433   this is a harness for some oplock tests
3434  */
3435 static bool run_oplock1(int dummy)
3436 {
3437         struct cli_state *cli1;
3438         const char *fname = "\\lockt1.lck";
3439         uint16_t fnum1;
3440         bool correct = True;
3441         NTSTATUS status;
3442
3443         printf("starting oplock test 1\n");
3444
3445         if (!torture_open_connection(&cli1, 0)) {
3446                 return False;
3447         }
3448
3449         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3450
3451         smbXcli_conn_set_sockopt(cli1->conn, sockops);
3452
3453         cli1->use_oplocks = True;
3454
3455         status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
3456                           &fnum1);
3457         if (!NT_STATUS_IS_OK(status)) {
3458                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3459                 return False;
3460         }
3461
3462         cli1->use_oplocks = False;
3463
3464         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3465         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3466
3467         status = cli_close(cli1, fnum1);
3468         if (!NT_STATUS_IS_OK(status)) {
3469                 printf("close2 failed (%s)\n", nt_errstr(status));
3470                 return False;
3471         }
3472
3473         status = cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3474         if (!NT_STATUS_IS_OK(status)) {
3475                 printf("unlink failed (%s)\n", nt_errstr(status));
3476                 return False;
3477         }
3478
3479         if (!torture_close_connection(cli1)) {
3480                 correct = False;
3481         }
3482
3483         printf("finished oplock test 1\n");
3484
3485         return correct;
3486 }
3487
3488 static bool run_oplock2(int dummy)
3489 {
3490         struct cli_state *cli1, *cli2;
3491         const char *fname = "\\lockt2.lck";
3492         uint16_t fnum1, fnum2;
3493         int saved_use_oplocks = use_oplocks;
3494         char buf[4];
3495         bool correct = True;
3496         volatile bool *shared_correct;
3497         size_t nread;
3498         NTSTATUS status;
3499
3500         shared_correct = (volatile bool *)anonymous_shared_allocate(sizeof(bool));
3501         *shared_correct = True;
3502
3503         use_level_II_oplocks = True;
3504         use_oplocks = True;
3505
3506         printf("starting oplock test 2\n");
3507
3508         if (!torture_open_connection(&cli1, 0)) {
3509                 use_level_II_oplocks = False;
3510                 use_oplocks = saved_use_oplocks;
3511                 return False;
3512         }
3513
3514         if (!torture_open_connection(&cli2, 1)) {
3515                 use_level_II_oplocks = False;
3516                 use_oplocks = saved_use_oplocks;
3517                 return False;
3518         }
3519
3520         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3521
3522         smbXcli_conn_set_sockopt(cli1->conn, sockops);
3523         smbXcli_conn_set_sockopt(cli2->conn, sockops);
3524
3525         status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
3526                           &fnum1);
3527         if (!NT_STATUS_IS_OK(status)) {
3528                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3529                 return False;
3530         }
3531
3532         /* Don't need the globals any more. */
3533         use_level_II_oplocks = False;
3534         use_oplocks = saved_use_oplocks;
3535
3536         if (fork() == 0) {
3537                 /* Child code */
3538                 status = cli_openx(cli2, fname, O_RDWR, DENY_NONE, &fnum2);
3539                 if (!NT_STATUS_IS_OK(status)) {
3540                         printf("second open of %s failed (%s)\n", fname, nt_errstr(status));
3541                         *shared_correct = False;
3542                         exit(0);
3543                 }
3544
3545                 sleep(2);
3546
3547                 status = cli_close(cli2, fnum2);
3548                 if (!NT_STATUS_IS_OK(status)) {
3549                         printf("close2 failed (%s)\n", nt_errstr(status));
3550                         *shared_correct = False;
3551                 }
3552
3553                 exit(0);
3554         }
3555
3556         sleep(2);
3557
3558         /* Ensure cli1 processes the break. Empty file should always return 0
3559          * bytes.  */
3560         status = cli_read(cli1, fnum1, buf, 0, 4, &nread);
3561         if (!NT_STATUS_IS_OK(status)) {
3562                 printf("read on fnum1 failed (%s)\n", nt_errstr(status));
3563                 correct = false;
3564         } else if (nread != 0) {
3565                 printf("read on empty fnum1 failed. recv %ld expected %d\n",
3566                       (unsigned long)nread, 0);
3567                 correct = false;
3568         }
3569
3570         /* Should now be at level II. */
3571         /* Test if sending a write locks causes a break to none. */
3572         status = cli_lock32(cli1, fnum1, 0, 4, 0, READ_LOCK);
3573         if (!NT_STATUS_IS_OK(status)) {
3574                 printf("lock failed (%s)\n", nt_errstr(status));
3575                 correct = False;
3576         }
3577
3578         cli_unlock(cli1, fnum1, 0, 4);
3579
3580         sleep(2);
3581
3582         status = cli_lock32(cli1, fnum1, 0, 4, 0, WRITE_LOCK);
3583         if (!NT_STATUS_IS_OK(status)) {
3584                 printf("lock failed (%s)\n", nt_errstr(status));
3585                 correct = False;
3586         }
3587
3588         cli_unlock(cli1, fnum1, 0, 4);
3589
3590         sleep(2);
3591
3592         cli_read(cli1, fnum1, buf, 0, 4, NULL);
3593
3594         status = cli_close(cli1, fnum1);
3595         if (!NT_STATUS_IS_OK(status)) {
3596                 printf("close1 failed (%s)\n", nt_errstr(status));
3597                 correct = False;
3598         }
3599
3600         sleep(4);
3601
3602         status = cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3603         if (!NT_STATUS_IS_OK(status)) {
3604                 printf("unlink failed (%s)\n", nt_errstr(status));
3605                 correct = False;
3606         }
3607
3608         if (!torture_close_connection(cli1)) {
3609                 correct = False;
3610         }
3611
3612         if (!*shared_correct) {
3613                 correct = False;
3614         }
3615
3616         printf("finished oplock test 2\n");
3617
3618         return correct;
3619 }
3620
3621 struct oplock4_state {
3622         struct tevent_context *ev;
3623         struct cli_state *cli;
3624         bool *got_break;
3625         uint16_t *fnum2;
3626 };
3627
3628 static void oplock4_got_break(struct tevent_req *req);
3629 static void oplock4_got_open(struct tevent_req *req);
3630
3631 static bool run_oplock4(int dummy)
3632 {
3633         struct tevent_context *ev;
3634         struct cli_state *cli1, *cli2;
3635         struct tevent_req *oplock_req, *open_req;
3636         const char *fname = "\\lockt4.lck";
3637         const char *fname_ln = "\\lockt4_ln.lck";
3638         uint16_t fnum1, fnum2;
3639         int saved_use_oplocks = use_oplocks;
3640         NTSTATUS status;
3641         bool correct = true;
3642
3643         bool got_break;
3644
3645         struct oplock4_state *state;
3646
3647         printf("starting oplock test 4\n");
3648
3649         if (!torture_open_connection(&cli1, 0)) {
3650                 use_level_II_oplocks = false;
3651                 use_oplocks = saved_use_oplocks;
3652                 return false;
3653         }
3654
3655         if (!torture_open_connection(&cli2, 1)) {
3656                 use_level_II_oplocks = false;
3657                 use_oplocks = saved_use_oplocks;
3658                 return false;
3659         }
3660
3661         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3662         cli_unlink(cli1, fname_ln, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3663
3664         smbXcli_conn_set_sockopt(cli1->conn, sockops);
3665         smbXcli_conn_set_sockopt(cli2->conn, sockops);
3666
3667         /* Create the file. */
3668         status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
3669                           &fnum1);
3670         if (!NT_STATUS_IS_OK(status)) {
3671                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3672                 return false;
3673         }
3674
3675         status = cli_close(cli1, fnum1);
3676         if (!NT_STATUS_IS_OK(status)) {
3677                 printf("close1 failed (%s)\n", nt_errstr(status));
3678                 return false;
3679         }
3680
3681         /* Now create a hardlink. */
3682         status = cli_nt_hardlink(cli1, fname, fname_ln);
3683         if (!NT_STATUS_IS_OK(status)) {
3684                 printf("nt hardlink failed (%s)\n", nt_errstr(status));
3685                 return false;
3686         }
3687
3688         /* Prove that opening hardlinks cause deny modes to conflict. */
3689         status = cli_openx(cli1, fname, O_RDWR, DENY_ALL, &fnum1);
3690         if (!NT_STATUS_IS_OK(status)) {
3691                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3692                 return false;
3693         }
3694
3695         status = cli_openx(cli1, fname_ln, O_RDWR, DENY_NONE, &fnum2);
3696         if (NT_STATUS_IS_OK(status)) {
3697                 printf("open of %s succeeded - should fail with sharing violation.\n",
3698                         fname_ln);
3699                 return false;
3700         }
3701
3702         if (!NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION)) {
3703                 printf("open of %s should fail with sharing violation. Got %s\n",
3704                         fname_ln, nt_errstr(status));
3705                 return false;
3706         }
3707
3708         status = cli_close(cli1, fnum1);
3709         if (!NT_STATUS_IS_OK(status)) {
3710                 printf("close1 failed (%s)\n", nt_errstr(status));
3711                 return false;
3712         }
3713
3714         cli1->use_oplocks = true;
3715         cli2->use_oplocks = true;
3716
3717         status = cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
3718         if (!NT_STATUS_IS_OK(status)) {
3719                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3720                 return false;
3721         }
3722
3723         ev = samba_tevent_context_init(talloc_tos());
3724         if (ev == NULL) {
3725                 printf("tevent_context_init failed\n");
3726                 return false;
3727         }
3728
3729         state = talloc(ev, struct oplock4_state);
3730         if (state == NULL) {
3731                 printf("talloc failed\n");
3732                 return false;
3733         }
3734         state->ev = ev;
3735         state->cli = cli1;
3736         state->got_break = &got_break;
3737         state->fnum2 = &fnum2;
3738
3739         oplock_req = cli_smb_oplock_break_waiter_send(
3740                 talloc_tos(), ev, cli1);
3741         if (oplock_req == NULL) {
3742                 printf("cli_smb_oplock_break_waiter_send failed\n");
3743                 return false;
3744         }
3745         tevent_req_set_callback(oplock_req, oplock4_got_break, state);
3746
3747         open_req = cli_openx_send(
3748                 talloc_tos(), ev, cli2, fname_ln, O_RDWR, DENY_NONE);
3749         if (open_req == NULL) {
3750                 printf("cli_openx_send failed\n");
3751                 return false;
3752         }
3753         tevent_req_set_callback(open_req, oplock4_got_open, state);
3754
3755         got_break = false;
3756         fnum2 = 0xffff;
3757
3758         while (!got_break || fnum2 == 0xffff) {
3759                 int ret;
3760                 ret = tevent_loop_once(ev);
3761                 if (ret == -1) {
3762                         printf("tevent_loop_once failed: %s\n",
3763                                strerror(errno));
3764                         return false;
3765                 }
3766         }
3767
3768         status = cli_close(cli2, fnum2);
3769         if (!NT_STATUS_IS_OK(status)) {
3770                 printf("close2 failed (%s)\n", nt_errstr(status));
3771                 correct = false;
3772         }
3773
3774         status = cli_close(cli1, fnum1);
3775         if (!NT_STATUS_IS_OK(status)) {
3776                 printf("close1 failed (%s)\n", nt_errstr(status));
3777                 correct = false;
3778         }
3779
3780         status = cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3781         if (!NT_STATUS_IS_OK(status)) {
3782                 printf("unlink failed (%s)\n", nt_errstr(status));
3783                 correct = false;
3784         }
3785
3786         status = cli_unlink(cli1, fname_ln, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3787         if (!NT_STATUS_IS_OK(status)) {
3788                 printf("unlink failed (%s)\n", nt_errstr(status));
3789                 correct = false;
3790         }
3791
3792         if (!torture_close_connection(cli1)) {
3793                 correct = false;
3794         }
3795
3796         if (!got_break) {
3797                 correct = false;
3798         }
3799
3800         printf("finished oplock test 4\n");
3801
3802         return correct;
3803 }
3804
3805 static void oplock4_got_break(struct tevent_req *req)
3806 {
3807         struct oplock4_state *state = tevent_req_callback_data(
3808                 req, struct oplock4_state);
3809         uint16_t fnum;
3810         uint8_t level;
3811         NTSTATUS status;
3812
3813         status = cli_smb_oplock_break_waiter_recv(req, &fnum, &level);
3814         TALLOC_FREE(req);
3815         if (!NT_STATUS_IS_OK(status)) {
3816                 printf("cli_smb_oplock_break_waiter_recv returned %s\n",
3817                        nt_errstr(status));
3818                 return;
3819         }
3820         *state->got_break = true;
3821
3822         req = cli_oplock_ack_send(state, state->ev, state->cli, fnum,
3823                                   NO_OPLOCK);
3824         if (req == NULL) {
3825                 printf("cli_oplock_ack_send failed\n");
3826                 return;
3827         }
3828 }
3829
3830 static void oplock4_got_open(struct tevent_req *req)
3831 {
3832         struct oplock4_state *state = tevent_req_callback_data(
3833                 req, struct oplock4_state);
3834         NTSTATUS status;
3835
3836         status = cli_openx_recv(req, state->fnum2);
3837         if (!NT_STATUS_IS_OK(status)) {
3838                 printf("cli_openx_recv returned %s\n", nt_errstr(status));
3839                 *state->fnum2 = 0xffff;
3840         }
3841 }
3842
3843 /*
3844   Test delete on close semantics.
3845  */
3846 static bool run_deletetest(int dummy)
3847 {
3848         struct cli_state *cli1 = NULL;
3849         struct cli_state *cli2 = NULL;
3850         const char *fname = "\\delete.file";
3851         uint16_t fnum1 = (uint16_t)-1;
3852         uint16_t fnum2 = (uint16_t)-1;
3853         bool correct = false;
3854         NTSTATUS status;
3855
3856         printf("starting delete test\n");
3857
3858         if (!torture_open_connection(&cli1, 0)) {
3859                 return False;
3860         }
3861
3862         smbXcli_conn_set_sockopt(cli1->conn, sockops);
3863
3864         /* Test 1 - this should delete the file on close. */
3865
3866         cli_setatr(cli1, fname, 0, 0);
3867         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3868
3869         status = cli_ntcreate(cli1, fname, 0, GENERIC_ALL_ACCESS|DELETE_ACCESS,
3870                               FILE_ATTRIBUTE_NORMAL, 0, FILE_OVERWRITE_IF,
3871                               FILE_DELETE_ON_CLOSE, 0, &fnum1, NULL);
3872         if (!NT_STATUS_IS_OK(status)) {
3873                 printf("[1] open of %s failed (%s)\n", fname, nt_errstr(status));
3874                 goto fail;
3875         }
3876
3877         status = cli_close(cli1, fnum1);
3878         if (!NT_STATUS_IS_OK(status)) {
3879                 printf("[1] close failed (%s)\n", nt_errstr(status));
3880                 goto fail;
3881         }
3882
3883         status = cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
3884         if (NT_STATUS_IS_OK(status)) {
3885                 printf("[1] open of %s succeeded (should fail)\n", fname);
3886                 goto fail;
3887         }
3888
3889         printf("first delete on close test succeeded.\n");
3890
3891         /* Test 2 - this should delete the file on close. */
3892
3893         cli_setatr(cli1, fname, 0, 0);
3894         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3895
3896         status = cli_ntcreate(cli1, fname, 0, GENERIC_ALL_ACCESS,
3897                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
3898                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
3899         if (!NT_STATUS_IS_OK(status)) {
3900                 printf("[2] open of %s failed (%s)\n", fname, nt_errstr(status));
3901                 goto fail;
3902         }
3903
3904         status = cli_nt_delete_on_close(cli1, fnum1, true);
3905         if (!NT_STATUS_IS_OK(status)) {
3906                 printf("[2] setting delete_on_close failed (%s)\n", nt_errstr(status));
3907                 goto fail;
3908         }
3909
3910         status = cli_close(cli1, fnum1);
3911         if (!NT_STATUS_IS_OK(status)) {
3912                 printf("[2] close failed (%s)\n", nt_errstr(status));
3913                 goto fail;
3914         }
3915
3916         status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum1);
3917         if (NT_STATUS_IS_OK(status)) {
3918                 printf("[2] open of %s succeeded should have been deleted on close !\n", fname);
3919                 status = cli_close(cli1, fnum1);
3920                 if (!NT_STATUS_IS_OK(status)) {
3921                         printf("[2] close failed (%s)\n", nt_errstr(status));
3922                 }
3923                 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3924                 goto fail;
3925         }
3926
3927         printf("second delete on close test succeeded.\n");
3928
3929         /* Test 3 - ... */
3930         cli_setatr(cli1, fname, 0, 0);
3931         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3932
3933         status = cli_ntcreate(cli1, fname, 0, GENERIC_ALL_ACCESS,
3934                               FILE_ATTRIBUTE_NORMAL,
3935                               FILE_SHARE_READ|FILE_SHARE_WRITE,
3936                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
3937         if (!NT_STATUS_IS_OK(status)) {
3938                 printf("[3] open - 1 of %s failed (%s)\n", fname, nt_errstr(status));
3939                 goto fail;
3940         }
3941
3942         /* This should fail with a sharing violation - open for delete is only compatible
3943            with SHARE_DELETE. */
3944
3945         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
3946                               FILE_ATTRIBUTE_NORMAL,
3947                               FILE_SHARE_READ|FILE_SHARE_WRITE,
3948                               FILE_OPEN, 0, 0, &fnum2, NULL);
3949         if (NT_STATUS_IS_OK(status)) {
3950                 printf("[3] open  - 2 of %s succeeded - should have failed.\n", fname);
3951                 goto fail;
3952         }
3953
3954         /* This should succeed. */
3955         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
3956                              FILE_ATTRIBUTE_NORMAL,
3957                              FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
3958                              FILE_OPEN, 0, 0, &fnum2, NULL);
3959         if (!NT_STATUS_IS_OK(status)) {
3960                 printf("[3] open  - 3 of %s failed (%s)\n", fname, nt_errstr(status));
3961                 goto fail;
3962         }
3963
3964         status = cli_nt_delete_on_close(cli1, fnum1, true);
3965         if (!NT_STATUS_IS_OK(status)) {
3966                 printf("[3] setting delete_on_close failed (%s)\n", nt_errstr(status));
3967                 goto fail;
3968         }
3969
3970         status = cli_close(cli1, fnum1);
3971         if (!NT_STATUS_IS_OK(status)) {
3972                 printf("[3] close 1 failed (%s)\n", nt_errstr(status));
3973                 goto fail;
3974         }
3975
3976         status = cli_close(cli1, fnum2);
3977         if (!NT_STATUS_IS_OK(status)) {
3978                 printf("[3] close 2 failed (%s)\n", nt_errstr(status));
3979                 goto fail;
3980         }
3981
3982         /* This should fail - file should no longer be there. */
3983
3984         status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum1);
3985         if (NT_STATUS_IS_OK(status)) {
3986                 printf("[3] open of %s succeeded should have been deleted on close !\n", fname);
3987                 status = cli_close(cli1, fnum1);
3988                 if (!NT_STATUS_IS_OK(status)) {
3989                         printf("[3] close failed (%s)\n", nt_errstr(status));
3990                 }
3991                 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3992                 goto fail;
3993         }
3994
3995         printf("third delete on close test succeeded.\n");
3996
3997         /* Test 4 ... */
3998         cli_setatr(cli1, fname, 0, 0);
3999         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4000
4001         status = cli_ntcreate(cli1, fname, 0,
4002                               FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4003                               FILE_ATTRIBUTE_NORMAL,
4004                               FILE_SHARE_READ|FILE_SHARE_WRITE,
4005                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
4006         if (!NT_STATUS_IS_OK(status)) {
4007                 printf("[4] open of %s failed (%s)\n", fname, nt_errstr(status));
4008                 goto fail;
4009         }
4010
4011         /* This should succeed. */
4012         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4013                              FILE_ATTRIBUTE_NORMAL,
4014                              FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4015                              FILE_OPEN, 0, 0, &fnum2, NULL);
4016         if (!NT_STATUS_IS_OK(status)) {
4017                 printf("[4] open  - 2 of %s failed (%s)\n", fname, nt_errstr(status));
4018                 goto fail;
4019         }
4020
4021         status = cli_close(cli1, fnum2);
4022         if (!NT_STATUS_IS_OK(status)) {
4023                 printf("[4] close - 1 failed (%s)\n", nt_errstr(status));
4024                 goto fail;
4025         }
4026
4027         status = cli_nt_delete_on_close(cli1, fnum1, true);
4028         if (!NT_STATUS_IS_OK(status)) {
4029                 printf("[4] setting delete_on_close failed (%s)\n", nt_errstr(status));
4030                 goto fail;
4031         }
4032
4033         /* This should fail - no more opens once delete on close set. */
4034         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4035                               FILE_ATTRIBUTE_NORMAL,
4036                               FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4037                               FILE_OPEN, 0, 0, &fnum2, NULL);
4038         if (NT_STATUS_IS_OK(status)) {
4039                 printf("[4] open  - 3 of %s succeeded ! Should have failed.\n", fname );
4040                 goto fail;
4041         }
4042
4043         status = cli_close(cli1, fnum1);
4044         if (!NT_STATUS_IS_OK(status)) {
4045                 printf("[4] close - 2 failed (%s)\n", nt_errstr(status));
4046                 goto fail;
4047         }
4048
4049         printf("fourth delete on close test succeeded.\n");
4050
4051         /* Test 5 ... */
4052         cli_setatr(cli1, fname, 0, 0);
4053         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4054
4055         status = cli_openx(cli1, fname, O_RDWR|O_CREAT, DENY_NONE, &fnum1);
4056         if (!NT_STATUS_IS_OK(status)) {
4057                 printf("[5] open of %s failed (%s)\n", fname, nt_errstr(status));
4058                 goto fail;
4059         }
4060
4061         /* This should fail - only allowed on NT opens with DELETE access. */
4062
4063         status = cli_nt_delete_on_close(cli1, fnum1, true);
4064         if (NT_STATUS_IS_OK(status)) {
4065                 printf("[5] setting delete_on_close on OpenX file succeeded - should fail !\n");
4066                 goto fail;
4067         }
4068
4069         status = cli_close(cli1, fnum1);
4070         if (!NT_STATUS_IS_OK(status)) {
4071                 printf("[5] close failed (%s)\n", nt_errstr(status));
4072                 goto fail;
4073         }
4074
4075         printf("fifth delete on close test succeeded.\n");
4076
4077         /* Test 6 ... */
4078         cli_setatr(cli1, fname, 0, 0);
4079         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4080
4081         status = cli_ntcreate(cli1, fname, 0, FILE_READ_DATA|FILE_WRITE_DATA,
4082                              FILE_ATTRIBUTE_NORMAL,
4083                              FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4084                              FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
4085         if (!NT_STATUS_IS_OK(status)) {
4086                 printf("[6] open of %s failed (%s)\n", fname,
4087                        nt_errstr(status));
4088                 goto fail;
4089         }
4090
4091         /* This should fail - only allowed on NT opens with DELETE access. */
4092
4093         status = cli_nt_delete_on_close(cli1, fnum1, true);
4094         if (NT_STATUS_IS_OK(status)) {
4095                 printf("[6] setting delete_on_close on file with no delete access succeeded - should fail !\n");
4096                 goto fail;
4097         }
4098
4099         status = cli_close(cli1, fnum1);
4100         if (!NT_STATUS_IS_OK(status)) {
4101                 printf("[6] close failed (%s)\n", nt_errstr(status));
4102                 goto fail;
4103         }
4104
4105         printf("sixth delete on close test succeeded.\n");
4106
4107         /* Test 7 ... */
4108         cli_setatr(cli1, fname, 0, 0);
4109         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4110
4111         status = cli_ntcreate(cli1, fname, 0,
4112                               FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4113                               FILE_ATTRIBUTE_NORMAL, 0, FILE_OVERWRITE_IF,
4114                               0, 0, &fnum1, NULL);
4115         if (!NT_STATUS_IS_OK(status)) {
4116                 printf("[7] open of %s failed (%s)\n", fname, nt_errstr(status));
4117                 goto fail;
4118         }
4119
4120         status = cli_nt_delete_on_close(cli1, fnum1, true);
4121         if (!NT_STATUS_IS_OK(status)) {
4122                 printf("[7] setting delete_on_close on file failed !\n");
4123                 goto fail;
4124         }
4125
4126         status = cli_nt_delete_on_close(cli1, fnum1, false);
4127         if (!NT_STATUS_IS_OK(status)) {
4128                 printf("[7] unsetting delete_on_close on file failed !\n");
4129                 goto fail;
4130         }
4131
4132         status = cli_close(cli1, fnum1);
4133         if (!NT_STATUS_IS_OK(status)) {
4134                 printf("[7] close - 1 failed (%s)\n", nt_errstr(status));
4135                 goto fail;
4136         }
4137
4138         /* This next open should succeed - we reset the flag. */
4139         status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum1);
4140         if (!NT_STATUS_IS_OK(status)) {
4141                 printf("[7] open of %s failed (%s)\n", fname, nt_errstr(status));
4142                 goto fail;
4143         }
4144
4145         status = cli_close(cli1, fnum1);
4146         if (!NT_STATUS_IS_OK(status)) {
4147                 printf("[7] close - 2 failed (%s)\n", nt_errstr(status));
4148                 goto fail;
4149         }
4150
4151         printf("seventh delete on close test succeeded.\n");
4152
4153         /* Test 8 ... */
4154         cli_setatr(cli1, fname, 0, 0);
4155         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4156
4157         if (!torture_open_connection(&cli2, 1)) {
4158                 printf("[8] failed to open second connection.\n");
4159                 goto fail;
4160         }
4161
4162         smbXcli_conn_set_sockopt(cli1->conn, sockops);
4163
4164         status = cli_ntcreate(cli1, fname, 0,
4165                              FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4166                              FILE_ATTRIBUTE_NORMAL,
4167                              FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4168                              FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
4169         if (!NT_STATUS_IS_OK(status)) {
4170                 printf("[8] open 1 of %s failed (%s)\n", fname, nt_errstr(status));
4171                 goto fail;
4172         }
4173
4174         status = cli_ntcreate(cli2, fname, 0,
4175                              FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4176                              FILE_ATTRIBUTE_NORMAL,
4177                              FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4178                              FILE_OPEN, 0, 0, &fnum2, NULL);
4179         if (!NT_STATUS_IS_OK(status)) {
4180                 printf("[8] open 2 of %s failed (%s)\n", fname, nt_errstr(status));
4181                 goto fail;
4182         }
4183
4184         status = cli_nt_delete_on_close(cli1, fnum1, true);
4185         if (!NT_STATUS_IS_OK(status)) {
4186                 printf("[8] setting delete_on_close on file failed !\n");
4187                 goto fail;
4188         }
4189
4190         status = cli_close(cli1, fnum1);
4191         if (!NT_STATUS_IS_OK(status)) {
4192                 printf("[8] close - 1 failed (%s)\n", nt_errstr(status));
4193                 goto fail;
4194         }
4195
4196         status = cli_close(cli2, fnum2);
4197         if (!NT_STATUS_IS_OK(status)) {
4198                 printf("[8] close - 2 failed (%s)\n", nt_errstr(status));
4199                 goto fail;
4200         }
4201
4202         /* This should fail.. */
4203         status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum1);
4204         if (NT_STATUS_IS_OK(status)) {
4205                 printf("[8] open of %s succeeded should have been deleted on close !\n", fname);
4206                 goto fail;
4207         }
4208
4209         printf("eighth delete on close test succeeded.\n");
4210
4211         /* Test 9 ... */
4212
4213         /* This should fail - we need to set DELETE_ACCESS. */
4214         status = cli_ntcreate(cli1, fname, 0, FILE_READ_DATA|FILE_WRITE_DATA,
4215                               FILE_ATTRIBUTE_NORMAL,
4216                               FILE_SHARE_NONE,
4217                               FILE_OVERWRITE_IF,
4218                               FILE_DELETE_ON_CLOSE, 0, &fnum1, NULL);
4219         if (NT_STATUS_IS_OK(status)) {
4220                 printf("[9] open of %s succeeded should have failed!\n", fname);
4221                 goto fail;
4222         }
4223
4224         printf("ninth delete on close test succeeded.\n");
4225
4226         /* Test 10 ... */
4227
4228         status = cli_ntcreate(cli1, fname, 0,
4229                              FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4230                              FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
4231                              FILE_OVERWRITE_IF, FILE_DELETE_ON_CLOSE,
4232                              0, &fnum1, NULL);
4233         if (!NT_STATUS_IS_OK(status)) {
4234                 printf("[10] open of %s failed (%s)\n", fname, nt_errstr(status));
4235                 goto fail;
4236         }
4237
4238         /* This should delete the file. */
4239         status = cli_close(cli1, fnum1);
4240         if (!NT_STATUS_IS_OK(status)) {
4241                 printf("[10] close failed (%s)\n", nt_errstr(status));
4242                 goto fail;
4243         }
4244
4245         /* This should fail.. */
4246         status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum1);
4247         if (NT_STATUS_IS_OK(status)) {
4248                 printf("[10] open of %s succeeded should have been deleted on close !\n", fname);
4249                 goto fail;
4250         }
4251
4252         printf("tenth delete on close test succeeded.\n");
4253
4254         /* Test 11 ... */
4255
4256         cli_setatr(cli1, fname, 0, 0);
4257         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4258
4259         /* Can we open a read-only file with delete access? */
4260
4261         /* Create a readonly file. */
4262         status = cli_ntcreate(cli1, fname, 0, FILE_READ_DATA|FILE_WRITE_DATA,
4263                               FILE_ATTRIBUTE_READONLY, FILE_SHARE_NONE,
4264                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
4265         if (!NT_STATUS_IS_OK(status)) {
4266                 printf("[11] open of %s failed (%s)\n", fname, nt_errstr(status));
4267                 goto fail;
4268         }
4269
4270         status = cli_close(cli1, fnum1);
4271         if (!NT_STATUS_IS_OK(status)) {
4272                 printf("[11] close failed (%s)\n", nt_errstr(status));
4273                 goto fail;
4274         }
4275
4276         /* Now try open for delete access. */
4277         status = cli_ntcreate(cli1, fname, 0,
4278                              FILE_READ_ATTRIBUTES|DELETE_ACCESS,
4279                              0,
4280                              FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4281                              FILE_OPEN, 0, 0, &fnum1, NULL);
4282         if (!NT_STATUS_IS_OK(status)) {
4283                 printf("[11] open of %s failed: %s\n", fname, nt_errstr(status));
4284                 goto fail;
4285         }
4286
4287         cli_close(cli1, fnum1);
4288
4289         printf("eleventh delete on close test succeeded.\n");
4290
4291         /*
4292          * Test 12
4293          * like test 4 but with initial delete on close
4294          */
4295
4296         cli_setatr(cli1, fname, 0, 0);
4297         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4298
4299         status = cli_ntcreate(cli1, fname, 0,
4300                               FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4301                               FILE_ATTRIBUTE_NORMAL,
4302                               FILE_SHARE_READ|FILE_SHARE_WRITE,
4303                               FILE_OVERWRITE_IF,
4304                               FILE_DELETE_ON_CLOSE, 0, &fnum1, NULL);
4305         if (!NT_STATUS_IS_OK(status)) {
4306                 printf("[12] open 1 of %s failed (%s)\n", fname, nt_errstr(status));
4307                 goto fail;
4308         }
4309
4310         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4311                               FILE_ATTRIBUTE_NORMAL,
4312                               FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4313                               FILE_OPEN, 0, 0, &fnum2, NULL);
4314         if (!NT_STATUS_IS_OK(status)) {
4315                 printf("[12] open 2 of %s failed(%s).\n", fname, nt_errstr(status));
4316                 goto fail;
4317         }
4318
4319         status = cli_close(cli1, fnum2);
4320         if (!NT_STATUS_IS_OK(status)) {
4321                 printf("[12] close 1 failed (%s)\n", nt_errstr(status));
4322                 goto fail;
4323         }
4324
4325         status = cli_nt_delete_on_close(cli1, fnum1, true);
4326         if (!NT_STATUS_IS_OK(status)) {
4327                 printf("[12] setting delete_on_close failed (%s)\n", nt_errstr(status));
4328                 goto fail;
4329         }
4330
4331         /* This should fail - no more opens once delete on close set. */
4332         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4333                               FILE_ATTRIBUTE_NORMAL,
4334                               FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4335                               FILE_OPEN, 0, 0, &fnum2, NULL);
4336         if (NT_STATUS_IS_OK(status)) {
4337                 printf("[12] open 3 of %s succeeded - should fail).\n", fname);
4338                 goto fail;
4339         }
4340
4341         status = cli_nt_delete_on_close(cli1, fnum1, false);
4342         if (!NT_STATUS_IS_OK(status)) {
4343                 printf("[12] unsetting delete_on_close failed (%s)\n", nt_errstr(status));
4344                 goto fail;
4345         }
4346
4347         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4348                               FILE_ATTRIBUTE_NORMAL,
4349                               FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4350                               FILE_OPEN, 0, 0, &fnum2, NULL);
4351         if (!NT_STATUS_IS_OK(status)) {
4352                 printf("[12] open 4 of %s failed (%s)\n", fname, nt_errstr(status));
4353                 goto fail;
4354         }
4355
4356         status = cli_close(cli1, fnum2);
4357         if (!NT_STATUS_IS_OK(status)) {
4358                 printf("[12] close 2 failed (%s)\n", nt_errstr(status));
4359                 goto fail;
4360         }
4361
4362         status = cli_close(cli1, fnum1);
4363         if (!NT_STATUS_IS_OK(status)) {
4364                 printf("[12] close 3 failed (%s)\n", nt_errstr(status));
4365                 goto fail;
4366         }
4367
4368         /*
4369          * setting delete on close on the handle does
4370          * not unset the initial delete on close...
4371          */
4372         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4373                               FILE_ATTRIBUTE_NORMAL,
4374                               FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4375                               FILE_OPEN, 0, 0, &fnum2, NULL);
4376         if (NT_STATUS_IS_OK(status)) {
4377                 printf("[12] open 5 of %s succeeded - should fail).\n", fname);
4378                 goto fail;
4379         } else if (!NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
4380                 printf("ntcreate returned %s, expected "
4381                        "NT_STATUS_OBJECT_NAME_NOT_FOUND\n",
4382                        nt_errstr(status));
4383                 goto fail;
4384         }
4385
4386         printf("twelfth delete on close test succeeded.\n");
4387
4388
4389         printf("finished delete test\n");
4390
4391         correct = true;
4392
4393   fail:
4394         /* FIXME: This will crash if we aborted before cli2 got
4395          * intialized, because these functions don't handle
4396          * uninitialized connections. */
4397
4398         if (fnum1 != (uint16_t)-1) cli_close(cli1, fnum1);
4399         if (fnum2 != (uint16_t)-1) cli_close(cli1, fnum2);
4400         cli_setatr(cli1, fname, 0, 0);
4401         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4402
4403         if (cli1 && !torture_close_connection(cli1)) {
4404                 correct = False;
4405         }
4406         if (cli2 && !torture_close_connection(cli2)) {
4407                 correct = False;
4408         }
4409         return correct;
4410 }
4411
4412
4413 /*
4414   Test wildcard delete.
4415  */
4416 static bool run_wild_deletetest(int dummy)
4417 {
4418         struct cli_state *cli = NULL;
4419         const char *dname = "\\WTEST";
4420         const char *fname = "\\WTEST\\A";
4421         const char *wunlink_name = "\\WTEST\\*";
4422         uint16_t fnum1 = (uint16_t)-1;
4423         bool correct = false;
4424         NTSTATUS status;
4425
4426         printf("starting wildcard delete test\n");
4427
4428         if (!torture_open_connection(&cli, 0)) {
4429                 return false;
4430         }
4431
4432         smbXcli_conn_set_sockopt(cli->conn, sockops);
4433
4434         cli_unlink(cli, fname, 0);
4435         cli_rmdir(cli, dname);
4436         status = cli_mkdir(cli, dname);
4437         if (!NT_STATUS_IS_OK(status)) {
4438                 printf("mkdir of %s failed %s!\n", dname, nt_errstr(status));
4439                 goto fail;
4440         }
4441         status = cli_openx(cli, fname, O_CREAT|O_RDONLY, DENY_NONE, &fnum1);
4442         if (!NT_STATUS_IS_OK(status)) {
4443                 printf("open of %s failed %s!\n", fname, nt_errstr(status));
4444                 goto fail;
4445         }
4446         status = cli_close(cli, fnum1);
4447         fnum1 = -1;
4448
4449         /*
4450          * Note the unlink attribute-type of zero. This should
4451          * map into FILE_ATTRIBUTE_NORMAL at the server even
4452          * on a wildcard delete.
4453          */
4454
4455         status = cli_unlink(cli, wunlink_name, 0);
4456         if (!NT_STATUS_IS_OK(status)) {
4457                 printf("unlink of %s failed %s!\n",
4458                         wunlink_name, nt_errstr(status));
4459                 goto fail;
4460         }
4461
4462         printf("finished wildcard delete test\n");
4463
4464         correct = true;
4465
4466   fail:
4467
4468         if (fnum1 != (uint16_t)-1) cli_close(cli, fnum1);
4469         cli_unlink(cli, fname, 0);
4470         cli_rmdir(cli, dname);
4471
4472         if (cli && !torture_close_connection(cli)) {
4473                 correct = false;
4474         }
4475         return correct;
4476 }
4477
4478 static bool run_deletetest_ln(int dummy)
4479 {
4480         struct cli_state *cli;
4481         const char *fname = "\\delete1";
4482         const char *fname_ln = "\\delete1_ln";
4483         uint16_t fnum;
4484         uint16_t fnum1;
4485         NTSTATUS status;
4486         bool correct = true;
4487         time_t t;
4488
4489         printf("starting deletetest-ln\n");
4490
4491         if (!torture_open_connection(&cli, 0)) {
4492                 return false;
4493         }
4494
4495         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4496         cli_unlink(cli, fname_ln, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4497
4498         smbXcli_conn_set_sockopt(cli->conn, sockops);
4499
4500         /* Create the file. */
4501         status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum);
4502         if (!NT_STATUS_IS_OK(status)) {
4503                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
4504                 return false;
4505         }
4506
4507         status = cli_close(cli, fnum);
4508         if (!NT_STATUS_IS_OK(status)) {
4509                 printf("close1 failed (%s)\n", nt_errstr(status));
4510                 return false;
4511         }
4512
4513         /* Now create a hardlink. */
4514         status = cli_nt_hardlink(cli, fname, fname_ln);
4515         if (!NT_STATUS_IS_OK(status)) {
4516                 printf("nt hardlink failed (%s)\n", nt_errstr(status));
4517                 return false;
4518         }
4519
4520         /* Open the original file. */
4521         status = cli_ntcreate(cli, fname, 0, FILE_READ_DATA,
4522                         FILE_ATTRIBUTE_NORMAL,
4523                         FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4524                         FILE_OPEN_IF, 0, 0, &fnum, NULL);
4525         if (!NT_STATUS_IS_OK(status)) {
4526                 printf("ntcreate of %s failed (%s)\n", fname, nt_errstr(status));
4527                 return false;
4528         }
4529
4530         /* Unlink the hard link path. */
4531         status = cli_ntcreate(cli, fname_ln, 0, DELETE_ACCESS,
4532                         FILE_ATTRIBUTE_NORMAL,
4533                         FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4534                         FILE_OPEN_IF, 0, 0, &fnum1, NULL);
4535         if (!NT_STATUS_IS_OK(status)) {
4536                 printf("ntcreate of %s failed (%s)\n", fname_ln, nt_errstr(status));
4537                 return false;
4538         }
4539         status = cli_nt_delete_on_close(cli, fnum1, true);
4540         if (!NT_STATUS_IS_OK(status)) {
4541                 d_printf("(%s) failed to set delete_on_close %s: %s\n",
4542                         __location__, fname_ln, nt_errstr(status));
4543                 return false;
4544         }
4545
4546         status = cli_close(cli, fnum1);
4547         if (!NT_STATUS_IS_OK(status)) {
4548                 printf("close %s failed (%s)\n",
4549                         fname_ln, nt_errstr(status));
4550                 return false;
4551         }
4552
4553         status = cli_close(cli, fnum);
4554         if (!NT_STATUS_IS_OK(status)) {
4555                 printf("close %s failed (%s)\n",
4556                         fname, nt_errstr(status));
4557                 return false;
4558         }
4559
4560         /* Ensure the original file is still there. */
4561         status = cli_getatr(cli, fname, NULL, NULL, &t);
4562         if (!NT_STATUS_IS_OK(status)) {
4563                 printf("%s getatr on file %s failed (%s)\n",
4564                         __location__,
4565                         fname,
4566                         nt_errstr(status));
4567                 correct = False;
4568         }
4569
4570         /* Ensure the link path is gone. */
4571         status = cli_getatr(cli, fname_ln, NULL, NULL, &t);
4572         if (!NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
4573                 printf("%s, getatr for file %s returned wrong error code %s "
4574                         "- should have been deleted\n",
4575                         __location__,
4576                         fname_ln, nt_errstr(status));
4577                 correct = False;
4578         }
4579
4580         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4581         cli_unlink(cli, fname_ln, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4582
4583         if (!torture_close_connection(cli)) {
4584                 correct = false;
4585         }
4586
4587         printf("finished deletetest-ln\n");
4588
4589         return correct;
4590 }
4591
4592 /*
4593   print out server properties
4594  */
4595 static bool run_properties(int dummy)
4596 {
4597         struct cli_state *cli;
4598         bool correct = True;
4599
4600         printf("starting properties test\n");
4601
4602         ZERO_STRUCT(cli);
4603
4604         if (!torture_open_connection(&cli, 0)) {
4605                 return False;
4606         }
4607
4608         smbXcli_conn_set_sockopt(cli->conn, sockops);
4609
4610         d_printf("Capabilities 0x%08x\n", smb1cli_conn_capabilities(cli->conn));
4611
4612         if (!torture_close_connection(cli)) {
4613                 correct = False;
4614         }
4615
4616         return correct;
4617 }
4618
4619
4620
4621 /* FIRST_DESIRED_ACCESS   0xf019f */
4622 #define FIRST_DESIRED_ACCESS   FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|\
4623                                FILE_READ_EA|                           /* 0xf */ \
4624                                FILE_WRITE_EA|FILE_READ_ATTRIBUTES|     /* 0x90 */ \
4625                                FILE_WRITE_ATTRIBUTES|                  /* 0x100 */ \
4626                                DELETE_ACCESS|READ_CONTROL_ACCESS|\
4627                                WRITE_DAC_ACCESS|WRITE_OWNER_ACCESS     /* 0xf0000 */
4628 /* SECOND_DESIRED_ACCESS  0xe0080 */
4629 #define SECOND_DESIRED_ACCESS  FILE_READ_ATTRIBUTES|                   /* 0x80 */ \
4630                                READ_CONTROL_ACCESS|WRITE_DAC_ACCESS|\
4631                                WRITE_OWNER_ACCESS                      /* 0xe0000 */
4632
4633 #if 0
4634 #define THIRD_DESIRED_ACCESS   FILE_READ_ATTRIBUTES|                   /* 0x80 */ \
4635                                READ_CONTROL_ACCESS|WRITE_DAC_ACCESS|\
4636                                FILE_READ_DATA|\
4637                                WRITE_OWNER_ACCESS                      /* */
4638 #endif
4639
4640 /*
4641   Test ntcreate calls made by xcopy
4642  */
4643 static bool run_xcopy(int dummy)
4644 {
4645         static struct cli_state *cli1;
4646         const char *fname = "\\test.txt";
4647         bool correct = True;
4648         uint16_t fnum1, fnum2;
4649         NTSTATUS status;
4650
4651         printf("starting xcopy test\n");
4652
4653         if (!torture_open_connection(&cli1, 0)) {
4654                 return False;
4655         }
4656
4657         status = cli_ntcreate(cli1, fname, 0, FIRST_DESIRED_ACCESS,
4658                               FILE_ATTRIBUTE_ARCHIVE, FILE_SHARE_NONE,
4659                               FILE_OVERWRITE_IF, 0x4044, 0, &fnum1, NULL);
4660         if (!NT_STATUS_IS_OK(status)) {
4661                 printf("First open failed - %s\n", nt_errstr(status));
4662                 return False;
4663         }
4664
4665         status = cli_ntcreate(cli1, fname, 0, SECOND_DESIRED_ACCESS, 0,
4666                              FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4667                              FILE_OPEN, 0x200000, 0, &fnum2, NULL);
4668         if (!NT_STATUS_IS_OK(status)) {
4669                 printf("second open failed - %s\n", nt_errstr(status));
4670                 return False;
4671         }
4672
4673         if (!torture_close_connection(cli1)) {
4674                 correct = False;
4675         }
4676
4677         return correct;
4678 }
4679
4680 /*
4681   Test rename on files open with share delete and no share delete.
4682  */
4683 static bool run_rename(int dummy)
4684 {
4685         static struct cli_state *cli1;
4686         const char *fname = "\\test.txt";
4687         const char *fname1 = "\\test1.txt";
4688         bool correct = True;
4689         uint16_t fnum1;
4690         uint16_t attr;
4691         NTSTATUS status;
4692
4693         printf("starting rename test\n");
4694
4695         if (!torture_open_connection(&cli1, 0)) {
4696                 return False;
4697         }
4698
4699         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4700         cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4701
4702         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4703                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_READ,
4704                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
4705         if (!NT_STATUS_IS_OK(status)) {
4706                 printf("First open failed - %s\n", nt_errstr(status));
4707                 return False;
4708         }
4709
4710         status = cli_rename(cli1, fname, fname1);
4711         if (!NT_STATUS_IS_OK(status)) {
4712                 printf("First rename failed (SHARE_READ) (this is correct) - %s\n", nt_errstr(status));
4713         } else {
4714                 printf("First rename succeeded (SHARE_READ) - this should have failed !\n");
4715                 correct = False;
4716         }
4717
4718         status = cli_close(cli1, fnum1);
4719         if (!NT_STATUS_IS_OK(status)) {
4720                 printf("close - 1 failed (%s)\n", nt_errstr(status));
4721                 return False;
4722         }
4723
4724         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4725         cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4726         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS, FILE_ATTRIBUTE_NORMAL,
4727 #if 0
4728                               FILE_SHARE_DELETE|FILE_SHARE_NONE,
4729 #else
4730                               FILE_SHARE_DELETE|FILE_SHARE_READ,
4731 #endif
4732                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
4733         if (!NT_STATUS_IS_OK(status)) {
4734                 printf("Second open failed - %s\n", nt_errstr(status));
4735                 return False;
4736         }
4737
4738         status = cli_rename(cli1, fname, fname1);
4739         if (!NT_STATUS_IS_OK(status)) {
4740                 printf("Second rename failed (SHARE_DELETE | SHARE_READ) - this should have succeeded - %s\n", nt_errstr(status));
4741                 correct = False;
4742         } else {
4743                 printf("Second rename succeeded (SHARE_DELETE | SHARE_READ)\n");
4744         }
4745
4746         status = cli_close(cli1, fnum1);
4747         if (!NT_STATUS_IS_OK(status)) {
4748                 printf("close - 2 failed (%s)\n", nt_errstr(status));
4749                 return False;
4750         }
4751
4752         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4753         cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4754
4755         status = cli_ntcreate(cli1, fname, 0, READ_CONTROL_ACCESS,
4756                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
4757                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
4758         if (!NT_STATUS_IS_OK(status)) {
4759                 printf("Third open failed - %s\n", nt_errstr(status));
4760                 return False;
4761         }
4762
4763
4764 #if 0
4765   {
4766         uint16_t fnum2;
4767
4768         if (!NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, DELETE_ACCESS, FILE_ATTRIBUTE_NORMAL,
4769                                    FILE_SHARE_NONE, FILE_OVERWRITE_IF, 0, 0, &fnum2, NULL))) {
4770                 printf("Fourth open failed - %s\n", cli_errstr(cli1));
4771                 return False;
4772         }
4773         if (!NT_STATUS_IS_OK(cli_nt_delete_on_close(cli1, fnum2, true))) {
4774                 printf("[8] setting delete_on_close on file failed !\n");
4775                 return False;
4776         }
4777
4778         if (!NT_STATUS_IS_OK(cli_close(cli1, fnum2))) {
4779                 printf("close - 4 failed (%s)\n", cli_errstr(cli1));
4780                 return False;
4781         }
4782   }
4783 #endif
4784
4785         status = cli_rename(cli1, fname, fname1);
4786         if (!NT_STATUS_IS_OK(status)) {
4787                 printf("Third rename failed (SHARE_NONE) - this should have succeeded - %s\n", nt_errstr(status));
4788                 correct = False;
4789         } else {
4790                 printf("Third rename succeeded (SHARE_NONE)\n");
4791         }
4792
4793         status = cli_close(cli1, fnum1);
4794         if (!NT_STATUS_IS_OK(status)) {
4795                 printf("close - 3 failed (%s)\n", nt_errstr(status));
4796                 return False;
4797         }
4798
4799         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4800         cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4801
4802         /*----*/
4803
4804         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4805                               FILE_ATTRIBUTE_NORMAL,
4806                               FILE_SHARE_READ | FILE_SHARE_WRITE,
4807                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
4808         if (!NT_STATUS_IS_OK(status)) {
4809                 printf("Fourth open failed - %s\n", nt_errstr(status));
4810                 return False;
4811         }
4812
4813         status = cli_rename(cli1, fname, fname1);
4814         if (!NT_STATUS_IS_OK(status)) {
4815                 printf("Fourth rename failed (SHARE_READ | SHARE_WRITE) (this is correct) - %s\n", nt_errstr(status));
4816         } else {
4817                 printf("Fourth rename succeeded (SHARE_READ | SHARE_WRITE) - this should have failed !\n");
4818                 correct = False;
4819         }
4820
4821         status = cli_close(cli1, fnum1);
4822         if (!NT_STATUS_IS_OK(status)) {
4823                 printf("close - 4 failed (%s)\n", nt_errstr(status));
4824                 return False;
4825         }
4826
4827         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4828         cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4829
4830         /*--*/
4831
4832         status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4833                          FILE_ATTRIBUTE_NORMAL,
4834                          FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
4835                          FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
4836         if (!NT_STATUS_IS_OK(status)) {
4837                 printf("Fifth open failed - %s\n", nt_errstr(status));
4838                 return False;
4839         }
4840
4841         status = cli_rename(cli1, fname, fname1);
4842         if (!NT_STATUS_IS_OK(status)) {
4843                 printf("Fifth rename failed (SHARE_READ | SHARE_WRITE | SHARE_DELETE) - this should have succeeded - %s ! \n", nt_errstr(status));
4844                 correct = False;
4845         } else {
4846                 printf("Fifth rename succeeded (SHARE_READ | SHARE_WRITE | SHARE_DELETE) (this is correct) - %s\n", nt_errstr(status));
4847         }
4848
4849         /*
4850          * Now check if the first name still exists ...
4851          */
4852
4853         /* if (!NT_STATUS_OP(cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS, FILE_ATTRIBUTE_NORMAL,
4854                                    FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
4855                                    FILE_OVERWRITE_IF, 0, 0, &fnum2, NULL))) {
4856           printf("Opening original file after rename of open file fails: %s\n",
4857               cli_errstr(cli1));
4858         }
4859         else {
4860           printf("Opening original file after rename of open file works ...\n");
4861           (void)cli_close(cli1, fnum2);
4862           } */
4863
4864         /*--*/
4865         status = cli_close(cli1, fnum1);
4866         if (!NT_STATUS_IS_OK(status)) {
4867                 printf("close - 5 failed (%s)\n", nt_errstr(status));
4868                 return False;
4869         }
4870
4871         /* Check that the renamed file has FILE_ATTRIBUTE_ARCHIVE. */
4872         status = cli_getatr(cli1, fname1, &attr, NULL, NULL);
4873         if (!NT_STATUS_IS_OK(status)) {
4874                 printf("getatr on file %s failed - %s ! \n",
4875                         fname1, nt_errstr(status));
4876                 correct = False;
4877         } else {
4878                 if (attr != FILE_ATTRIBUTE_ARCHIVE) {
4879                         printf("Renamed file %s has wrong attr 0x%x "
4880                                 "(should be 0x%x)\n",
4881                                 fname1,
4882                                 attr,
4883                                 (unsigned int)FILE_ATTRIBUTE_ARCHIVE);
4884                         correct = False;
4885                 } else {
4886                         printf("Renamed file %s has archive bit set\n", fname1);
4887                 }
4888         }
4889
4890         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4891         cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4892
4893         if (!torture_close_connection(cli1)) {
4894                 correct = False;
4895         }
4896
4897         return correct;
4898 }
4899
4900 static bool run_pipe_number(int dummy)
4901 {
4902         struct cli_state *cli1;
4903         const char *pipe_name = "\\SPOOLSS";
4904         uint16_t fnum;
4905         int num_pipes = 0;
4906         NTSTATUS status;
4907
4908         printf("starting pipenumber test\n");
4909         if (!torture_open_connection(&cli1, 0)) {
4910                 return False;
4911         }
4912
4913         smbXcli_conn_set_sockopt(cli1->conn, sockops);
4914         while(1) {
4915                 status = cli_ntcreate(cli1, pipe_name, 0, FILE_READ_DATA,
4916                                       FILE_ATTRIBUTE_NORMAL,
4917                                       FILE_SHARE_READ|FILE_SHARE_WRITE,
4918                                       FILE_OPEN_IF, 0, 0, &fnum, NULL);
4919                 if (!NT_STATUS_IS_OK(status)) {
4920                         printf("Open of pipe %s failed with error (%s)\n", pipe_name, nt_errstr(status));
4921                         break;
4922                 }
4923                 num_pipes++;
4924                 printf("\r%6d", num_pipes);
4925         }
4926
4927         printf("pipe_number test - we can open %d %s pipes.\n", num_pipes, pipe_name );
4928         torture_close_connection(cli1);
4929         return True;
4930 }
4931
4932 /*
4933   Test open mode returns on read-only files.
4934  */
4935 static bool run_opentest(int dummy)
4936 {
4937         static struct cli_state *cli1;
4938         static struct cli_state *cli2;
4939         const char *fname = "\\readonly.file";
4940         uint16_t fnum1, fnum2;
4941         char buf[20];
4942         off_t fsize;
4943         bool correct = True;
4944         char *tmp_path;
4945         NTSTATUS status;
4946
4947         printf("starting open test\n");
4948
4949         if (!torture_open_connection(&cli1, 0)) {
4950                 return False;
4951         }
4952
4953         cli_setatr(cli1, fname, 0, 0);
4954         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4955
4956         smbXcli_conn_set_sockopt(cli1->conn, sockops);
4957
4958         status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
4959         if (!NT_STATUS_IS_OK(status)) {
4960                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
4961                 return False;
4962         }
4963
4964         status = cli_close(cli1, fnum1);
4965         if (!NT_STATUS_IS_OK(status)) {
4966                 printf("close2 failed (%s)\n", nt_errstr(status));
4967                 return False;
4968         }
4969
4970         status = cli_setatr(cli1, fname, FILE_ATTRIBUTE_READONLY, 0);
4971         if (!NT_STATUS_IS_OK(status)) {
4972                 printf("cli_setatr failed (%s)\n", nt_errstr(status));
4973                 return False;
4974         }
4975
4976         status = cli_openx(cli1, fname, O_RDONLY, DENY_WRITE, &fnum1);
4977         if (!NT_STATUS_IS_OK(status)) {
4978                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
4979                 return False;
4980         }
4981
4982         /* This will fail - but the error should be ERRnoaccess, not ERRbadshare. */
4983         status = cli_openx(cli1, fname, O_RDWR, DENY_ALL, &fnum2);
4984
4985         if (check_error(__LINE__, status, ERRDOS, ERRnoaccess,
4986                         NT_STATUS_ACCESS_DENIED)) {
4987                 printf("correct error code ERRDOS/ERRnoaccess returned\n");
4988         }
4989
4990         printf("finished open test 1\n");
4991
4992         cli_close(cli1, fnum1);
4993
4994         /* Now try not readonly and ensure ERRbadshare is returned. */
4995
4996         cli_setatr(cli1, fname, 0, 0);
4997
4998         status = cli_openx(cli1, fname, O_RDONLY, DENY_WRITE, &fnum1);
4999         if (!NT_STATUS_IS_OK(status)) {
5000                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
5001                 return False;
5002         }
5003
5004         /* This will fail - but the error should be ERRshare. */
5005         status = cli_openx(cli1, fname, O_RDWR, DENY_ALL, &fnum2);
5006
5007         if (check_error(__LINE__, status, ERRDOS, ERRbadshare,
5008                         NT_STATUS_SHARING_VIOLATION)) {
5009                 printf("correct error code ERRDOS/ERRbadshare returned\n");
5010         }
5011
5012         status = cli_close(cli1, fnum1);
5013         if (!NT_STATUS_IS_OK(status)) {
5014                 printf("close2 failed (%s)\n", nt_errstr(status));
5015                 return False;
5016         }
5017
5018         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5019
5020         printf("finished open test 2\n");
5021
5022         /* Test truncate open disposition on file opened for read. */
5023         status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
5024         if (!NT_STATUS_IS_OK(status)) {
5025                 printf("(3) open (1) of %s failed (%s)\n", fname, nt_errstr(status));
5026                 return False;
5027         }
5028
5029         /* write 20 bytes. */
5030
5031         memset(buf, '\0', 20);
5032
5033         status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 0, 20, NULL);
5034         if (!NT_STATUS_IS_OK(status)) {
5035                 printf("write failed (%s)\n", nt_errstr(status));
5036                 correct = False;
5037         }
5038
5039         status = cli_close(cli1, fnum1);
5040         if (!NT_STATUS_IS_OK(status)) {
5041                 printf("(3) close1 failed (%s)\n", nt_errstr(status));
5042                 return False;
5043         }
5044
5045         /* Ensure size == 20. */
5046         status = cli_getatr(cli1, fname, NULL, &fsize, NULL);
5047         if (!NT_STATUS_IS_OK(status)) {
5048                 printf("(3) getatr failed (%s)\n", nt_errstr(status));
5049                 return False;
5050         }
5051
5052         if (fsize != 20) {
5053                 printf("(3) file size != 20\n");
5054                 return False;
5055         }
5056
5057         /* Now test if we can truncate a file opened for readonly. */
5058         status = cli_openx(cli1, fname, O_RDONLY|O_TRUNC, DENY_NONE, &fnum1);
5059         if (!NT_STATUS_IS_OK(status)) {
5060                 printf("(3) open (2) of %s failed (%s)\n", fname, nt_errstr(status));
5061                 return False;
5062         }
5063
5064         status = cli_close(cli1, fnum1);
5065         if (!NT_STATUS_IS_OK(status)) {
5066                 printf("close2 failed (%s)\n", nt_errstr(status));
5067                 return False;
5068         }
5069
5070         /* Ensure size == 0. */
5071         status = cli_getatr(cli1, fname, NULL, &fsize, NULL);
5072         if (!NT_STATUS_IS_OK(status)) {
5073                 printf("(3) getatr failed (%s)\n", nt_errstr(status));
5074                 return False;
5075         }
5076
5077         if (fsize != 0) {
5078                 printf("(3) file size != 0\n");
5079                 return False;
5080         }
5081         printf("finished open test 3\n");
5082
5083         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5084
5085         printf("Do ctemp tests\n");
5086         status = cli_ctemp(cli1, talloc_tos(), "\\", &fnum1, &tmp_path);
5087         if (!NT_STATUS_IS_OK(status)) {
5088                 printf("ctemp failed (%s)\n", nt_errstr(status));
5089                 return False;
5090         }
5091
5092         printf("ctemp gave path %s\n", tmp_path);
5093         status = cli_close(cli1, fnum1);
5094         if (!NT_STATUS_IS_OK(status)) {
5095                 printf("close of temp failed (%s)\n", nt_errstr(status));
5096         }
5097
5098         status = cli_unlink(cli1, tmp_path, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5099         if (!NT_STATUS_IS_OK(status)) {
5100                 printf("unlink of temp failed (%s)\n", nt_errstr(status));
5101         }
5102
5103         /* Test the non-io opens... */
5104
5105         if (!torture_open_connection(&cli2, 1)) {
5106                 return False;
5107         }
5108
5109         cli_setatr(cli2, fname, 0, 0);
5110         cli_unlink(cli2, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5111
5112         smbXcli_conn_set_sockopt(cli2->conn, sockops);
5113
5114         printf("TEST #1 testing 2 non-io opens (no delete)\n");
5115         status = cli_ntcreate(cli1, fname, 0, FILE_READ_ATTRIBUTES,
5116                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5117                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
5118         if (!NT_STATUS_IS_OK(status)) {
5119                 printf("TEST #1 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5120                 return False;
5121         }
5122
5123         status = cli_ntcreate(cli2, fname, 0, FILE_READ_ATTRIBUTES,
5124                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5125                               FILE_OPEN_IF, 0, 0, &fnum2, NULL);
5126         if (!NT_STATUS_IS_OK(status)) {
5127                 printf("TEST #1 open 2 of %s failed (%s)\n", fname, nt_errstr(status));
5128                 return False;
5129         }
5130
5131         status = cli_close(cli1, fnum1);
5132         if (!NT_STATUS_IS_OK(status)) {
5133                 printf("TEST #1 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5134                 return False;
5135         }
5136
5137         status = cli_close(cli2, fnum2);
5138         if (!NT_STATUS_IS_OK(status)) {
5139                 printf("TEST #1 close 2 of %s failed (%s)\n", fname, nt_errstr(status));
5140                 return False;
5141         }
5142
5143         printf("non-io open test #1 passed.\n");
5144
5145         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5146
5147         printf("TEST #2 testing 2 non-io opens (first with delete)\n");
5148
5149         status = cli_ntcreate(cli1, fname, 0,
5150                               DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5151                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5152                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
5153         if (!NT_STATUS_IS_OK(status)) {
5154                 printf("TEST #2 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5155                 return False;
5156         }
5157
5158         status = cli_ntcreate(cli2, fname, 0, FILE_READ_ATTRIBUTES,
5159                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5160                               FILE_OPEN_IF, 0, 0, &fnum2, NULL);
5161         if (!NT_STATUS_IS_OK(status)) {
5162                 printf("TEST #2 open 2 of %s failed (%s)\n", fname, nt_errstr(status));
5163                 return False;
5164         }
5165
5166         status = cli_close(cli1, fnum1);
5167         if (!NT_STATUS_IS_OK(status)) {
5168                 printf("TEST #2 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5169                 return False;
5170         }
5171
5172         status = cli_close(cli2, fnum2);
5173         if (!NT_STATUS_IS_OK(status)) {
5174                 printf("TEST #2 close 2 of %s failed (%s)\n", fname, nt_errstr(status));
5175                 return False;
5176         }
5177
5178         printf("non-io open test #2 passed.\n");
5179
5180         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5181
5182         printf("TEST #3 testing 2 non-io opens (second with delete)\n");
5183
5184         status = cli_ntcreate(cli1, fname, 0, FILE_READ_ATTRIBUTES,
5185                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5186                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
5187         if (!NT_STATUS_IS_OK(status)) {
5188                 printf("TEST #3 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5189                 return False;
5190         }
5191
5192         status = cli_ntcreate(cli2, fname, 0,
5193                               DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5194                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5195                               FILE_OPEN_IF, 0, 0, &fnum2, NULL);
5196         if (!NT_STATUS_IS_OK(status)) {
5197                 printf("TEST #3 open 2 of %s failed (%s)\n", fname, nt_errstr(status));
5198                 return False;
5199         }
5200
5201         status = cli_close(cli1, fnum1);
5202         if (!NT_STATUS_IS_OK(status)) {
5203                 printf("TEST #3 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5204                 return False;
5205         }
5206
5207         status = cli_close(cli2, fnum2);
5208         if (!NT_STATUS_IS_OK(status)) {
5209                 printf("TEST #3 close 2 of %s failed (%s)\n", fname, nt_errstr(status));
5210                 return False;
5211         }
5212
5213         printf("non-io open test #3 passed.\n");
5214
5215         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5216
5217         printf("TEST #4 testing 2 non-io opens (both with delete)\n");
5218
5219         status = cli_ntcreate(cli1, fname, 0,
5220                                DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5221                                FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5222                                FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
5223         if (!NT_STATUS_IS_OK(status)) {
5224                 printf("TEST #4 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5225                 return False;
5226         }
5227
5228         status = cli_ntcreate(cli2, fname, 0,
5229                               DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5230                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5231                               FILE_OPEN_IF, 0, 0, &fnum2, NULL);
5232         if (NT_STATUS_IS_OK(status)) {
5233                 printf("TEST #4 open 2 of %s SUCCEEDED - should have failed (%s)\n", fname, nt_errstr(status));
5234                 return False;
5235         }
5236
5237         printf("TEST #4 open 2 of %s gave %s (correct error should be %s)\n", fname, nt_errstr(status), "sharing violation");
5238
5239         status = cli_close(cli1, fnum1);
5240         if (!NT_STATUS_IS_OK(status)) {
5241                 printf("TEST #4 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5242                 return False;
5243         }
5244
5245         printf("non-io open test #4 passed.\n");
5246
5247         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5248
5249         printf("TEST #5 testing 2 non-io opens (both with delete - both with file share delete)\n");
5250
5251         status = cli_ntcreate(cli1, fname, 0,
5252                               DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5253                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_DELETE,
5254                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
5255         if (!NT_STATUS_IS_OK(status)) {
5256                 printf("TEST #5 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5257                 return False;
5258         }
5259
5260         status = cli_ntcreate(cli2, fname, 0,
5261                               DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5262                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_DELETE,
5263                               FILE_OPEN_IF, 0, 0, &fnum2, NULL);
5264         if (!NT_STATUS_IS_OK(status)) {
5265                 printf("TEST #5 open 2 of %s failed (%s)\n", fname, nt_errstr(status));
5266                 return False;
5267         }
5268
5269         status = cli_close(cli1, fnum1);
5270         if (!NT_STATUS_IS_OK(status)) {
5271                 printf("TEST #5 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5272                 return False;
5273         }
5274
5275         status = cli_close(cli2, fnum2);
5276         if (!NT_STATUS_IS_OK(status)) {
5277                 printf("TEST #5 close 2 of %s failed (%s)\n", fname, nt_errstr(status));
5278                 return False;
5279         }
5280
5281         printf("non-io open test #5 passed.\n");
5282
5283         printf("TEST #6 testing 1 non-io open, one io open\n");
5284
5285         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5286
5287         status = cli_ntcreate(cli1, fname, 0, FILE_READ_DATA,
5288                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5289                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
5290         if (!NT_STATUS_IS_OK(status)) {
5291                 printf("TEST #6 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5292                 return False;
5293         }
5294
5295         status = cli_ntcreate(cli2, fname, 0, FILE_READ_ATTRIBUTES,
5296                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_READ,
5297                               FILE_OPEN_IF, 0, 0, &fnum2, NULL);
5298         if (!NT_STATUS_IS_OK(status)) {
5299                 printf("TEST #6 open 2 of %s failed (%s)\n", fname, nt_errstr(status));
5300                 return False;
5301         }
5302
5303         status = cli_close(cli1, fnum1);
5304         if (!NT_STATUS_IS_OK(status)) {
5305                 printf("TEST #6 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5306                 return False;
5307         }
5308
5309         status = cli_close(cli2, fnum2);
5310         if (!NT_STATUS_IS_OK(status)) {
5311                 printf("TEST #6 close 2 of %s failed (%s)\n", fname, nt_errstr(status));
5312                 return False;
5313         }
5314
5315         printf("non-io open test #6 passed.\n");
5316
5317         printf("TEST #7 testing 1 non-io open, one io open with delete\n");
5318
5319         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5320
5321         status = cli_ntcreate(cli1, fname, 0, FILE_READ_DATA,
5322                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5323                               FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
5324         if (!NT_STATUS_IS_OK(status)) {
5325                 printf("TEST #7 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5326                 return False;
5327         }
5328
5329         status = cli_ntcreate(cli2, fname, 0,
5330                               DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5331                               FILE_ATTRIBUTE_NORMAL,
5332                               FILE_SHARE_READ|FILE_SHARE_DELETE,
5333                               FILE_OPEN_IF, 0, 0, &fnum2, NULL);
5334         if (NT_STATUS_IS_OK(status)) {
5335                 printf("TEST #7 open 2 of %s SUCCEEDED - should have failed (%s)\n", fname, nt_errstr(status));
5336                 return False;
5337         }
5338
5339         printf("TEST #7 open 2 of %s gave %s (correct error should be %s)\n", fname, nt_errstr(status), "sharing violation");
5340
5341         status = cli_close(cli1, fnum1);
5342         if (!NT_STATUS_IS_OK(status)) {
5343                 printf("TEST #7 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5344                 return False;
5345         }
5346
5347         printf("non-io open test #7 passed.\n");
5348
5349         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5350
5351         printf("TEST #8 testing open without WRITE_ATTRIBUTES, updating close write time.\n");
5352         status = cli_ntcreate(cli1, fname, 0, FILE_WRITE_DATA, FILE_ATTRIBUTE_NORMAL,
5353                                 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
5354                                 FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
5355         if (!NT_STATUS_IS_OK(status)) {
5356                 printf("TEST #8 open of %s failed (%s)\n", fname, nt_errstr(status));
5357                 correct = false;
5358                 goto out;
5359         }
5360
5361         /* Write to ensure we have to update the file time. */
5362         status = cli_writeall(cli1, fnum1, 0, (const uint8_t *)"TEST DATA\n", 0, 10,
5363                               NULL);
5364         if (!NT_STATUS_IS_OK(status)) {
5365                 printf("TEST #8 cli_write failed: %s\n", nt_errstr(status));
5366                 correct = false;
5367                 goto out;
5368         }
5369
5370         status = cli_close(cli1, fnum1);
5371         if (!NT_STATUS_IS_OK(status)) {
5372                 printf("TEST #8 close of %s failed (%s)\n", fname, nt_errstr(status));
5373                 correct = false;
5374         }
5375
5376   out:
5377
5378         if (!torture_close_connection(cli1)) {
5379                 correct = False;
5380         }
5381         if (!torture_close_connection(cli2)) {
5382                 correct = False;
5383         }
5384
5385         return correct;
5386 }
5387
5388 NTSTATUS torture_setup_unix_extensions(struct cli_state *cli)
5389 {
5390         uint16_t major, minor;
5391         uint32_t caplow, caphigh;
5392         NTSTATUS status;
5393
5394         if (!SERVER_HAS_UNIX_CIFS(cli)) {
5395                 printf("Server doesn't support UNIX CIFS extensions.\n");
5396                 return NT_STATUS_NOT_SUPPORTED;
5397         }
5398
5399         status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
5400                                              &caphigh);
5401         if (!NT_STATUS_IS_OK(status)) {
5402                 printf("Server didn't return UNIX CIFS extensions: %s\n",
5403                        nt_errstr(status));
5404                 return status;
5405         }
5406
5407         status = cli_set_unix_extensions_capabilities(cli, major, minor,
5408                                                       caplow, caphigh);
5409         if (!NT_STATUS_IS_OK(status)) {
5410                 printf("Server doesn't support setting UNIX CIFS extensions: "
5411                        "%s.\n", nt_errstr(status));
5412                 return status;
5413         }
5414
5415         return NT_STATUS_OK;
5416 }
5417
5418 /*
5419   Test POSIX open /mkdir calls.
5420  */
5421 static bool run_simple_posix_open_test(int dummy)
5422 {
5423         static struct cli_state *cli1;
5424         const char *fname = "posix:file";
5425         const char *hname = "posix:hlink";
5426         const char *sname = "posix:symlink";
5427         const char *dname = "posix:dir";
5428         char buf[10];
5429         char namebuf[11];
5430         uint16_t fnum1 = (uint16_t)-1;
5431         SMB_STRUCT_STAT sbuf;
5432         bool correct = false;
5433         NTSTATUS status;
5434         size_t nread;
5435         const char *fname_windows = "windows_file";
5436         uint16_t fnum2 = (uint16_t)-1;
5437
5438         printf("Starting simple POSIX open test\n");
5439
5440         if (!torture_open_connection(&cli1, 0)) {
5441                 return false;
5442         }
5443
5444         smbXcli_conn_set_sockopt(cli1->conn, sockops);
5445
5446         status = torture_setup_unix_extensions(cli1);
5447         if (!NT_STATUS_IS_OK(status)) {
5448                 return false;
5449         }
5450
5451         cli_setatr(cli1, fname, 0, 0);
5452         cli_posix_unlink(cli1, fname);
5453         cli_setatr(cli1, dname, 0, 0);
5454         cli_posix_rmdir(cli1, dname);
5455         cli_setatr(cli1, hname, 0, 0);
5456         cli_posix_unlink(cli1, hname);
5457         cli_setatr(cli1, sname, 0, 0);
5458         cli_posix_unlink(cli1, sname);
5459         cli_setatr(cli1, fname_windows, 0, 0);
5460         cli_posix_unlink(cli1, fname_windows);
5461
5462         /* Create a directory. */
5463         status = cli_posix_mkdir(cli1, dname, 0777);
5464         if (!NT_STATUS_IS_OK(status)) {
5465                 printf("POSIX mkdir of %s failed (%s)\n", dname, nt_errstr(status));
5466                 goto out;
5467         }
5468
5469         status = cli_posix_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL,
5470                                 0600, &fnum1);
5471         if (!NT_STATUS_IS_OK(status)) {
5472                 printf("POSIX create of %s failed (%s)\n", fname, nt_errstr(status));
5473                 goto out;
5474         }
5475
5476         /* Test ftruncate - set file size. */
5477         status = cli_ftruncate(cli1, fnum1, 1000);
5478         if (!NT_STATUS_IS_OK(status)) {
5479                 printf("ftruncate failed (%s)\n", nt_errstr(status));
5480                 goto out;
5481         }
5482
5483         /* Ensure st_size == 1000 */
5484         status = cli_posix_stat(cli1, fname, &sbuf);
5485         if (!NT_STATUS_IS_OK(status)) {
5486                 printf("stat failed (%s)\n", nt_errstr(status));
5487                 goto out;
5488         }
5489
5490         if (sbuf.st_ex_size != 1000) {
5491                 printf("ftruncate - stat size (%u) != 1000\n", (unsigned int)sbuf.st_ex_size);
5492                 goto out;
5493         }
5494
5495         /* Ensure st_mode == 0600 */
5496         if ((sbuf.st_ex_mode & 07777) != 0600) {
5497                 printf("posix_open - bad permissions 0%o != 0600\n",
5498                                 (unsigned int)(sbuf.st_ex_mode & 07777));
5499                 goto out;
5500         }
5501
5502         /* Test ftruncate - set file size back to zero. */
5503         status = cli_ftruncate(cli1, fnum1, 0);
5504         if (!NT_STATUS_IS_OK(status)) {
5505                 printf("ftruncate failed (%s)\n", nt_errstr(status));
5506                 goto out;
5507         }
5508
5509         status = cli_close(cli1, fnum1);
5510         if (!NT_STATUS_IS_OK(status)) {
5511                 printf("close failed (%s)\n", nt_errstr(status));
5512                 goto out;
5513         }
5514
5515         /* Now open the file again for read only. */
5516         status = cli_posix_open(cli1, fname, O_RDONLY, 0, &fnum1);
5517         if (!NT_STATUS_IS_OK(status)) {
5518                 printf("POSIX open of %s failed (%s)\n", fname, nt_errstr(status));
5519                 goto out;
5520         }
5521
5522         /* Now unlink while open. */
5523         status = cli_posix_unlink(cli1, fname);
5524         if (!NT_STATUS_IS_OK(status)) {
5525                 printf("POSIX unlink of %s failed (%s)\n", fname, nt_errstr(status));
5526                 goto out;
5527         }
5528
5529         status = cli_close(cli1, fnum1);
5530         if (!NT_STATUS_IS_OK(status)) {
5531                 printf("close(2) failed (%s)\n", nt_errstr(status));
5532                 goto out;
5533         }
5534
5535         /* Ensure the file has gone. */
5536         status = cli_posix_open(cli1, fname, O_RDONLY, 0, &fnum1);
5537         if (NT_STATUS_IS_OK(status)) {
5538                 printf("POSIX open of %s succeeded, should have been deleted.\n", fname);
5539                 goto out;
5540         }
5541
5542         /* Create again to test open with O_TRUNC. */
5543         status = cli_posix_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL, 0600, &fnum1);
5544         if (!NT_STATUS_IS_OK(status)) {
5545                 printf("POSIX create of %s failed (%s)\n", fname, nt_errstr(status));
5546                 goto out;
5547         }
5548
5549         /* Test ftruncate - set file size. */
5550         status = cli_ftruncate(cli1, fnum1, 1000);
5551         if (!NT_STATUS_IS_OK(status)) {
5552                 printf("ftruncate failed (%s)\n", nt_errstr(status));
5553                 goto out;
5554         }
5555
5556         /* Ensure st_size == 1000 */
5557         status = cli_posix_stat(cli1, fname, &sbuf);
5558         if (!NT_STATUS_IS_OK(status)) {
5559                 printf("stat failed (%s)\n", nt_errstr(status));
5560                 goto out;
5561         }
5562
5563         if (sbuf.st_ex_size != 1000) {
5564                 printf("ftruncate - stat size (%u) != 1000\n", (unsigned int)sbuf.st_ex_size);
5565                 goto out;
5566         }
5567
5568         status = cli_close(cli1, fnum1);
5569         if (!NT_STATUS_IS_OK(status)) {
5570                 printf("close(2) failed (%s)\n", nt_errstr(status));
5571                 goto out;
5572         }
5573
5574         /* Re-open with O_TRUNC. */
5575         status = cli_posix_open(cli1, fname, O_WRONLY|O_TRUNC, 0600, &fnum1);
5576         if (!NT_STATUS_IS_OK(status)) {
5577                 printf("POSIX create of %s failed (%s)\n", fname, nt_errstr(status));
5578                 goto out;
5579         }
5580
5581         /* Ensure st_size == 0 */
5582         status = cli_posix_stat(cli1, fname, &sbuf);
5583         if (!NT_STATUS_IS_OK(status)) {
5584                 printf("stat failed (%s)\n", nt_errstr(status));
5585                 goto out;
5586         }
5587
5588         if (sbuf.st_ex_size != 0) {
5589                 printf("O_TRUNC - stat size (%u) != 0\n", (unsigned int)sbuf.st_ex_size);
5590                 goto out;
5591         }
5592
5593         status = cli_close(cli1, fnum1);
5594         if (!NT_STATUS_IS_OK(status)) {
5595                 printf("close failed (%s)\n", nt_errstr(status));
5596                 goto out;
5597         }
5598
5599         status = cli_posix_unlink(cli1, fname);
5600         if (!NT_STATUS_IS_OK(status)) {
5601                 printf("POSIX unlink of %s failed (%s)\n", fname, nt_errstr(status));
5602                 goto out;
5603         }
5604
5605         status = cli_posix_open(cli1, dname, O_RDONLY, 0, &fnum1);
5606         if (!NT_STATUS_IS_OK(status)) {
5607                 printf("POSIX open directory O_RDONLY of %s failed (%s)\n",
5608                         dname, nt_errstr(status));
5609                 goto out;
5610         }
5611
5612         cli_close(cli1, fnum1);
5613
5614         /* What happens when we try and POSIX open a directory for write ? */
5615         status = cli_posix_open(cli1, dname, O_RDWR, 0, &fnum1);
5616         if (NT_STATUS_IS_OK(status)) {
5617                 printf("POSIX open of directory %s succeeded, should have failed.\n", fname);
5618                 goto out;
5619         } else {
5620                 if (!check_both_error(__LINE__, status, ERRDOS, EISDIR,
5621                                 NT_STATUS_FILE_IS_A_DIRECTORY)) {
5622                         goto out;
5623                 }
5624         }
5625
5626         /* Create the file. */
5627         status = cli_posix_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL,
5628                                 0600, &fnum1);
5629         if (!NT_STATUS_IS_OK(status)) {
5630                 printf("POSIX create of %s failed (%s)\n", fname, nt_errstr(status));
5631                 goto out;
5632         }
5633
5634         /* Write some data into it. */
5635         status = cli_writeall(cli1, fnum1, 0, (const uint8_t *)"TEST DATA\n", 0, 10,
5636                               NULL);
5637         if (!NT_STATUS_IS_OK(status)) {
5638                 printf("cli_write failed: %s\n", nt_errstr(status));
5639                 goto out;
5640         }
5641
5642         cli_close(cli1, fnum1);
5643
5644         /* Now create a hardlink. */
5645         status = cli_posix_hardlink(cli1, fname, hname);
5646         if (!NT_STATUS_IS_OK(status)) {
5647                 printf("POSIX hardlink of %s failed (%s)\n", hname, nt_errstr(status));
5648                 goto out;
5649         }
5650
5651         /* Now create a symlink. */
5652         status = cli_posix_symlink(cli1, fname, sname);
5653         if (!NT_STATUS_IS_OK(status)) {
5654                 printf("POSIX symlink of %s failed (%s)\n", sname, nt_errstr(status));
5655                 goto out;
5656         }
5657
5658         /* Open the hardlink for read. */
5659         status = cli_posix_open(cli1, hname, O_RDONLY, 0, &fnum1);
5660         if (!NT_STATUS_IS_OK(status)) {
5661                 printf("POSIX open of %s failed (%s)\n", hname, nt_errstr(status));
5662                 goto out;
5663         }
5664
5665         status = cli_read(cli1, fnum1, buf, 0, 10, &nread);
5666         if (!NT_STATUS_IS_OK(status)) {
5667                 printf("POSIX read of %s failed (%s)\n", hname,
5668                        nt_errstr(status));
5669                 goto out;
5670         } else if (nread != 10) {
5671                 printf("POSIX read of %s failed. Received %ld, expected %d\n",
5672                        hname, (unsigned long)nread, 10);
5673                 goto out;
5674         }
5675
5676         if (memcmp(buf, "TEST DATA\n", 10)) {
5677                 printf("invalid data read from hardlink\n");
5678                 goto out;
5679         }
5680
5681         /* Do a POSIX lock/unlock. */
5682         status = cli_posix_lock(cli1, fnum1, 0, 100, true, READ_LOCK);
5683         if (!NT_STATUS_IS_OK(status)) {
5684                 printf("POSIX lock failed %s\n", nt_errstr(status));
5685                 goto out;
5686         }
5687
5688         /* Punch a hole in the locked area. */
5689         status = cli_posix_unlock(cli1, fnum1, 10, 80);
5690         if (!NT_STATUS_IS_OK(status)) {
5691                 printf("POSIX unlock failed %s\n", nt_errstr(status));
5692                 goto out;
5693         }
5694
5695         cli_close(cli1, fnum1);
5696
5697         /* Open the symlink for read - this should fail. A POSIX
5698            client should not be doing opens on a symlink. */
5699         status = cli_posix_open(cli1, sname, O_RDONLY, 0, &fnum1);
5700         if (NT_STATUS_IS_OK(status)) {
5701                 printf("POSIX open of %s succeeded (should have failed)\n", sname);
5702                 goto out;
5703         } else {
5704                 if (!check_both_error(__LINE__, status, ERRDOS, ERRbadpath,
5705                                 NT_STATUS_OBJECT_PATH_NOT_FOUND)) {
5706                         printf("POSIX open of %s should have failed "
5707                                 "with NT_STATUS_OBJECT_PATH_NOT_FOUND, "
5708                                 "failed with %s instead.\n",
5709                                 sname, nt_errstr(status));
5710                         goto out;
5711                 }
5712         }
5713
5714         status = cli_posix_readlink(cli1, sname, namebuf, sizeof(namebuf));
5715         if (!NT_STATUS_IS_OK(status)) {
5716                 printf("POSIX readlink on %s failed (%s)\n", sname, nt_errstr(status));
5717                 goto out;
5718         }
5719
5720         if (strcmp(namebuf, fname) != 0) {
5721                 printf("POSIX readlink on %s failed to match name %s (read %s)\n",
5722                         sname, fname, namebuf);
5723                 goto out;
5724         }
5725
5726         status = cli_posix_rmdir(cli1, dname);
5727         if (!NT_STATUS_IS_OK(status)) {
5728                 printf("POSIX rmdir failed (%s)\n", nt_errstr(status));
5729                 goto out;
5730         }
5731
5732         /* Check directory opens with a specific permission. */
5733         status = cli_posix_mkdir(cli1, dname, 0700);
5734         if (!NT_STATUS_IS_OK(status)) {
5735                 printf("POSIX mkdir of %s failed (%s)\n", dname, nt_errstr(status));
5736                 goto out;
5737         }
5738
5739         /* Ensure st_mode == 0700 */
5740         status = cli_posix_stat(cli1, dname, &sbuf);
5741         if (!NT_STATUS_IS_OK(status)) {
5742                 printf("stat failed (%s)\n", nt_errstr(status));
5743                 goto out;
5744         }
5745
5746         if ((sbuf.st_ex_mode & 07777) != 0700) {
5747                 printf("posix_mkdir - bad permissions 0%o != 0700\n",
5748                                 (unsigned int)(sbuf.st_ex_mode & 07777));
5749                 goto out;
5750         }
5751
5752         /*
5753          * Now create a Windows file, and attempt a POSIX unlink.
5754          * This should fail with a sharing violation but due to:
5755          *
5756          * [Bug 9571] Unlink after open causes smbd to panic
5757          *
5758          * ensure we've fixed the lock ordering violation.
5759          */
5760
5761         status = cli_ntcreate(cli1, fname_windows, 0,
5762                         FILE_READ_DATA|FILE_WRITE_DATA, 0,
5763                         FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
5764                         FILE_CREATE,
5765                         0x0, 0x0, &fnum2, NULL);
5766         if (!NT_STATUS_IS_OK(status)) {
5767                 printf("Windows create of %s failed (%s)\n", fname_windows,
5768                         nt_errstr(status));
5769                 goto out;
5770         }
5771
5772         /* Now try posix_unlink. */
5773         status = cli_posix_unlink(cli1, fname_windows);
5774         if (!NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION)) {
5775                 printf("POSIX unlink of %s should fail "
5776                         "with NT_STATUS_SHARING_VIOLATION "
5777                         "got %s instead !\n",
5778                         fname_windows,
5779                         nt_errstr(status));
5780                 goto out;
5781         }
5782
5783         cli_close(cli1, fnum2);
5784
5785         printf("Simple POSIX open test passed\n");
5786         correct = true;
5787
5788   out:
5789
5790         if (fnum1 != (uint16_t)-1) {
5791                 cli_close(cli1, fnum1);
5792                 fnum1 = (uint16_t)-1;
5793         }
5794
5795         if (fnum2 != (uint16_t)-1) {
5796                 cli_close(cli1, fnum2);
5797                 fnum2 = (uint16_t)-1;
5798         }
5799
5800         cli_setatr(cli1, sname, 0, 0);
5801         cli_posix_unlink(cli1, sname);
5802         cli_setatr(cli1, hname, 0, 0);
5803         cli_posix_unlink(cli1, hname);
5804         cli_setatr(cli1, fname, 0, 0);
5805         cli_posix_unlink(cli1, fname);
5806         cli_setatr(cli1, dname, 0, 0);
5807         cli_posix_rmdir(cli1, dname);
5808         cli_setatr(cli1, fname_windows, 0, 0);
5809         cli_posix_unlink(cli1, fname_windows);
5810
5811         if (!torture_close_connection(cli1)) {
5812                 correct = false;
5813         }
5814
5815         return correct;
5816 }
5817
5818 /*
5819   Test POSIX and Windows ACLs are rejected on symlinks.
5820  */
5821 static bool run_acl_symlink_test(int dummy)
5822 {
5823         static struct cli_state *cli;
5824         const char *fname = "posix_file";
5825         const char *sname = "posix_symlink";
5826         uint16_t fnum = (uint16_t)-1;
5827         bool correct = false;
5828         NTSTATUS status;
5829         char *posix_acl = NULL;
5830         size_t posix_acl_len = 0;
5831         char *posix_acl_sym = NULL;
5832         size_t posix_acl_len_sym = 0;
5833         struct security_descriptor *sd = NULL;
5834         struct security_descriptor *sd_sym = NULL;
5835         TALLOC_CTX *frame = NULL;
5836
5837         frame = talloc_stackframe();
5838
5839         printf("Starting acl symlink test\n");
5840
5841         if (!torture_open_connection(&cli, 0)) {
5842                 TALLOC_FREE(frame);
5843                 return false;
5844         }
5845
5846         smbXcli_conn_set_sockopt(cli->conn, sockops);
5847
5848         status = torture_setup_unix_extensions(cli);
5849         if (!NT_STATUS_IS_OK(status)) {
5850                 TALLOC_FREE(frame);
5851                 return false;
5852         }
5853
5854         cli_setatr(cli, fname, 0, 0);
5855         cli_posix_unlink(cli, fname);
5856         cli_setatr(cli, sname, 0, 0);
5857         cli_posix_unlink(cli, sname);
5858
5859         status = cli_ntcreate(cli,
5860                         fname,
5861                         0,
5862                         READ_CONTROL_ACCESS,
5863                         0,
5864                         FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
5865                         FILE_CREATE,
5866                         0x0,
5867                         0x0,
5868                         &fnum,
5869                         NULL);
5870
5871         if (!NT_STATUS_IS_OK(status)) {
5872                 printf("cli_ntcreate of %s failed (%s)\n",
5873                         fname,
5874                         nt_errstr(status));
5875                 goto out;
5876         }
5877
5878         /* Get the Windows ACL on the file. */
5879         status = cli_query_secdesc(cli,
5880                                 fnum,
5881                                 frame,
5882                                 &sd);
5883         if (!NT_STATUS_IS_OK(status)) {
5884                 printf("cli_query_secdesc failed (%s)\n",
5885                         nt_errstr(status));
5886                 goto out;
5887         }
5888
5889         /* Get the POSIX ACL on the file. */
5890         status = cli_posix_getacl(cli,
5891                                 fname,
5892                                 frame,
5893                                 &posix_acl_len,
5894                                 &posix_acl);
5895
5896         if (!NT_STATUS_IS_OK(status)) {
5897                 printf("cli_posix_getacl failed (%s)\n",
5898                         nt_errstr(status));
5899                 goto out;
5900         }
5901
5902         status = cli_close(cli, fnum);
5903         if (!NT_STATUS_IS_OK(status)) {
5904                 printf("close failed (%s)\n", nt_errstr(status));
5905                 goto out;
5906         }
5907         fnum = (uint16_t)-1;
5908
5909         /* Now create a symlink. */
5910         status = cli_posix_symlink(cli, fname, sname);
5911         if (!NT_STATUS_IS_OK(status)) {
5912                 printf("cli_posix_symlink of %s -> %s failed (%s)\n",
5913                         sname,
5914                         fname,
5915                         nt_errstr(status));
5916                 goto out;
5917         }
5918
5919         /* Open a handle on the symlink. */
5920         status = cli_ntcreate(cli,
5921                         sname,
5922                         0,
5923                         READ_CONTROL_ACCESS|SEC_STD_WRITE_DAC,
5924                         0,
5925                         FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
5926                         FILE_OPEN,
5927                         0x0,
5928                         0x0,
5929                         &fnum,
5930                         NULL);
5931
5932         if (!NT_STATUS_IS_OK(status)) {
5933                 printf("cli_posix_open of %s failed (%s)\n",
5934                         sname,
5935                         nt_errstr(status));
5936                 goto out;
5937         }
5938
5939         /* Get the Windows ACL on the symlink handle. Should fail */
5940         status = cli_query_secdesc(cli,
5941                                 fnum,
5942                                 frame,
5943                                 &sd_sym);
5944
5945         if (!NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
5946                 printf("cli_query_secdesc on a symlink gave %s. "
5947                         "Should be NT_STATUS_ACCESS_DENIED.\n",
5948                         nt_errstr(status));
5949                 goto out;
5950         }
5951
5952         /* Get the POSIX ACL on the symlink pathname. Should fail. */
5953         status = cli_posix_getacl(cli,
5954                                 sname,
5955                                 frame,
5956                                 &posix_acl_len_sym,
5957                                 &posix_acl_sym);
5958
5959         if (!NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
5960                 printf("cli_posix_getacl on a symlink gave %s. "
5961                         "Should be NT_STATUS_ACCESS_DENIED.\n",
5962                         nt_errstr(status));
5963                 goto out;
5964         }
5965
5966         /* Set the Windows ACL on the symlink handle. Should fail */
5967         status = cli_set_security_descriptor(cli,
5968                                 fnum,
5969                                 SECINFO_DACL,
5970                                 sd);
5971
5972         if (!NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
5973                 printf("cli_query_secdesc on a symlink gave %s. "
5974                         "Should be NT_STATUS_ACCESS_DENIED.\n",
5975                         nt_errstr(status));
5976                 goto out;
5977         }
5978
5979         /* Set the POSIX ACL on the symlink pathname. Should fail. */
5980         status = cli_posix_setacl(cli,
5981                                 sname,
5982                                 posix_acl,
5983                                 posix_acl_len);
5984
5985         if (!NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
5986                 printf("cli_posix_getacl on a symlink gave %s. "
5987                         "Should be NT_STATUS_ACCESS_DENIED.\n",
5988                         nt_errstr(status));
5989                 goto out;
5990         }
5991
5992         printf("ACL symlink test passed\n");
5993         correct = true;
5994
5995   out:
5996
5997         if (fnum != (uint16_t)-1) {
5998                 cli_close(cli, fnum);
5999                 fnum = (uint16_t)-1;
6000         }
6001
6002         cli_setatr(cli, sname, 0, 0);
6003         cli_posix_unlink(cli, sname);
6004         cli_setatr(cli, fname, 0, 0);
6005         cli_posix_unlink(cli, fname);
6006
6007         if (!torture_close_connection(cli)) {
6008                 correct = false;
6009         }
6010
6011         TALLOC_FREE(frame);
6012         return correct;
6013 }
6014
6015
6016 static uint32_t open_attrs_table[] = {
6017                 FILE_ATTRIBUTE_NORMAL,
6018                 FILE_ATTRIBUTE_ARCHIVE,
6019                 FILE_ATTRIBUTE_READONLY,
6020                 FILE_ATTRIBUTE_HIDDEN,
6021                 FILE_ATTRIBUTE_SYSTEM,
6022
6023                 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY,
6024                 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN,
6025                 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM,
6026                 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN,
6027                 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM,
6028                 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM,
6029
6030                 FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN,
6031                 FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM,
6032                 FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM,
6033                 FILE_ATTRIBUTE_HIDDEN,FILE_ATTRIBUTE_SYSTEM,
6034 };
6035
6036 struct trunc_open_results {
6037         unsigned int num;
6038         uint32_t init_attr;
6039         uint32_t trunc_attr;
6040         uint32_t result_attr;
6041 };
6042
6043 static struct trunc_open_results attr_results[] = {
6044         { 0, FILE_ATTRIBUTE_NORMAL, FILE_ATTRIBUTE_NORMAL, FILE_ATTRIBUTE_ARCHIVE },
6045         { 1, FILE_ATTRIBUTE_NORMAL, FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_ARCHIVE },
6046         { 2, FILE_ATTRIBUTE_NORMAL, FILE_ATTRIBUTE_READONLY, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY },
6047         { 16, FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_NORMAL, FILE_ATTRIBUTE_ARCHIVE },
6048         { 17, FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_ARCHIVE },
6049         { 18, FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_READONLY, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY },
6050         { 51, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
6051         { 54, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
6052         { 56, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN },
6053         { 68, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
6054         { 71, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
6055         { 73, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM },
6056         { 99, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_HIDDEN,FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
6057         { 102, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
6058         { 104, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN },
6059         { 116, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
6060         { 119,  FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM,  FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
6061         { 121, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM },
6062         { 170, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_HIDDEN },
6063         { 173, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM },
6064         { 227, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
6065         { 230, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
6066         { 232, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN },
6067         { 244, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
6068         { 247, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
6069         { 249, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM }
6070 };
6071
6072 static bool run_openattrtest(int dummy)
6073 {
6074         static struct cli_state *cli1;
6075         const char *fname = "\\openattr.file";
6076         uint16_t fnum1;
6077         bool correct = True;
6078         uint16_t attr;
6079         unsigned int i, j, k, l;
6080         NTSTATUS status;
6081
6082         printf("starting open attr test\n");
6083
6084         if (!torture_open_connection(&cli1, 0)) {
6085                 return False;
6086         }
6087
6088         smbXcli_conn_set_sockopt(cli1->conn, sockops);
6089
6090         for (k = 0, i = 0; i < sizeof(open_attrs_table)/sizeof(uint32_t); i++) {
6091                 cli_setatr(cli1, fname, 0, 0);
6092                 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
6093
6094                 status = cli_ntcreate(cli1, fname, 0, FILE_WRITE_DATA,
6095                                        open_attrs_table[i], FILE_SHARE_NONE,
6096                                        FILE_OVERWRITE_IF, 0, 0, &fnum1, NULL);
6097                 if (!NT_STATUS_IS_OK(status)) {
6098                         printf("open %d (1) of %s failed (%s)\n", i, fname, nt_errstr(status));
6099                         return False;
6100                 }
6101
6102                 status = cli_close(cli1, fnum1);
6103                 if (!NT_STATUS_IS_OK(status)) {
6104                         printf("close %d (1) of %s failed (%s)\n", i, fname, nt_errstr(status));
6105                         return False;
6106                 }
6107
6108                 for (j = 0; j < sizeof(open_attrs_table)/sizeof(uint32_t); j++) {
6109                         status = cli_ntcreate(cli1, fname, 0,
6110                                               FILE_READ_DATA|FILE_WRITE_DATA,
6111                                               open_attrs_table[j],
6112                                               FILE_SHARE_NONE, FILE_OVERWRITE,
6113                                               0, 0, &fnum1, NULL);
6114                         if (!NT_STATUS_IS_OK(status)) {
6115                                 for (l = 0; l < sizeof(attr_results)/sizeof(struct trunc_open_results); l++) {
6116                                         if (attr_results[l].num == k) {
6117                                                 printf("[%d] trunc open 0x%x -> 0x%x of %s failed - should have succeeded !(0x%x:%s)\n",
6118                                                                 k, open_attrs_table[i],
6119                                                                 open_attrs_table[j],
6120                                                                 fname, NT_STATUS_V(status), nt_errstr(status));
6121                                                 correct = False;
6122                                         }
6123                                 }
6124
6125                                 if (!NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
6126                                         printf("[%d] trunc open 0x%x -> 0x%x failed with wrong error code %s\n",
6127                                                         k, open_attrs_table[i], open_attrs_table[j],
6128                                                         nt_errstr(status));
6129                                         correct = False;
6130                                 }
6131 #if 0
6132                                 printf("[%d] trunc open 0x%x -> 0x%x failed\n", k, open_attrs_table[i], open_attrs_table[j]);
6133 #endif
6134                                 k++;
6135                                 continue;
6136                         }
6137
6138                         status = cli_close(cli1, fnum1);
6139                         if (!NT_STATUS_IS_OK(status)) {
6140                                 printf("close %d (2) of %s failed (%s)\n", j, fname, nt_errstr(status));
6141                                 return False;
6142                         }
6143
6144                         status = cli_getatr(cli1, fname, &attr, NULL, NULL);
6145                         if (!NT_STATUS_IS_OK(status)) {
6146                                 printf("getatr(2) failed (%s)\n", nt_errstr(status));
6147                                 return False;
6148                         }
6149
6150 #if 0
6151                         printf("[%d] getatr check [0x%x] trunc [0x%x] got attr 0x%x\n",
6152                                         k,  open_attrs_table[i],  open_attrs_table[j], attr );
6153 #endif
6154
6155                         for (l = 0; l < sizeof(attr_results)/sizeof(struct trunc_open_results); l++) {
6156                                 if (attr_results[l].num == k) {
6157                                         if (attr != attr_results[l].result_attr ||
6158                                                         open_attrs_table[i] != attr_results[l].init_attr ||
6159                                                         open_attrs_table[j] != attr_results[l].trunc_attr) {
6160                                                 printf("getatr check failed. [0x%x] trunc [0x%x] got attr 0x%x, should be 0x%x\n",
6161                                                 open_attrs_table[i],
6162                                                 open_attrs_table[j],
6163                                                 (unsigned int)attr,
6164                                                 attr_results[l].result_attr);
6165                                                 correct = False;
6166                                         }
6167                                         break;
6168                                 }
6169                         }
6170                         k++;
6171                 }
6172         }
6173
6174         cli_setatr(cli1, fname, 0, 0);
6175         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
6176
6177         printf("open attr test %s.\n", correct ? "passed" : "failed");
6178
6179         if (!torture_close_connection(cli1)) {
6180                 correct = False;
6181         }
6182         return correct;
6183 }
6184
6185 static NTSTATUS list_fn(const char *mnt, struct file_info *finfo,
6186                     const char *name, void *state)
6187 {
6188         int *matched = (int *)state;
6189         if (matched != NULL) {
6190                 *matched += 1;
6191         }
6192         return NT_STATUS_OK;
6193 }
6194
6195 /*
6196   test directory listing speed
6197  */
6198 static bool run_dirtest(int dummy)
6199 {
6200         int i;
6201         static struct cli_state *cli;
6202         uint16_t fnum;
6203         struct timeval core_start;
6204         bool correct = True;
6205         int matched;
6206
6207         printf("starting directory test\n");
6208
6209         if (!torture_open_connection(&cli, 0)) {
6210                 return False;
6211         }
6212
6213         smbXcli_conn_set_sockopt(cli->conn, sockops);
6214
6215         srandom(0);
6216         for (i=0;i<torture_numops;i++) {
6217                 fstring fname;
6218                 slprintf(fname, sizeof(fname), "\\%x", (int)random());
6219                 if (!NT_STATUS_IS_OK(cli_openx(cli, fname, O_RDWR|O_CREAT, DENY_NONE, &fnum))) {
6220                         fprintf(stderr,"Failed to open %s\n", fname);
6221                         return False;
6222                 }
6223                 cli_close(cli, fnum);
6224         }
6225
6226         core_start = timeval_current();
6227
6228         matched = 0;
6229         cli_list(cli, "a*.*", 0, list_fn, &matched);
6230         printf("Matched %d\n", matched);
6231
6232         matched = 0;
6233         cli_list(cli, "b*.*", 0, list_fn, &matched);
6234         printf("Matched %d\n", matched);
6235
6236         matched = 0;
6237         cli_list(cli, "xyzabc", 0, list_fn, &matched);
6238         printf("Matched %d\n", matched);
6239
6240         printf("dirtest core %g seconds\n", timeval_elapsed(&core_start));
6241
6242         srandom(0);
6243         for (i=0;i<torture_numops;i++) {
6244                 fstring fname;
6245                 slprintf(fname, sizeof(fname), "\\%x", (int)random());
6246                 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
6247         }
6248
6249         if (!torture_close_connection(cli)) {
6250                 correct = False;
6251         }
6252
6253         printf("finished dirtest\n");
6254
6255         return correct;
6256 }
6257
6258 static NTSTATUS del_fn(const char *mnt, struct file_info *finfo, const char *mask,
6259                    void *state)
6260 {
6261         struct cli_state *pcli = (struct cli_state *)state;
6262         fstring fname;
6263         slprintf(fname, sizeof(fname), "\\LISTDIR\\%s", finfo->name);
6264
6265         if (strcmp(finfo->name, ".") == 0 || strcmp(finfo->name, "..") == 0)
6266                 return NT_STATUS_OK;
6267
6268         if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
6269                 if (!NT_STATUS_IS_OK(cli_rmdir(pcli, fname)))
6270                         printf("del_fn: failed to rmdir %s\n,", fname );
6271         } else {
6272                 if (!NT_STATUS_IS_OK(cli_unlink(pcli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN)))
6273                         printf("del_fn: failed to unlink %s\n,", fname );
6274         }
6275         return NT_STATUS_OK;
6276 }
6277
6278
6279 /*
6280   sees what IOCTLs are supported
6281  */
6282 bool torture_ioctl_test(int dummy)
6283 {
6284         static struct cli_state *cli;
6285         uint16_t device, function;
6286         uint16_t fnum;
6287         const char *fname = "\\ioctl.dat";
6288         DATA_BLOB blob;
6289         NTSTATUS status;
6290
6291         if (!torture_open_connection(&cli, 0)) {
6292                 return False;
6293         }
6294
6295         printf("starting ioctl test\n");
6296
6297         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
6298
6299         status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum);
6300         if (!NT_STATUS_IS_OK(status)) {
6301                 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
6302                 return False;
6303         }
6304
6305         status = cli_raw_ioctl(cli, fnum, 0x2d0000 | (0x0420<<2), &blob);
6306         printf("ioctl device info: %s\n", nt_errstr(status));
6307
6308         status = cli_raw_ioctl(cli, fnum, IOCTL_QUERY_JOB_INFO, &blob);
6309         printf("ioctl job info: %s\n", nt_errstr(status));
6310
6311         for (device=0;device<0x100;device++) {
6312                 printf("ioctl test with device = 0x%x\n", device);
6313                 for (function=0;function<0x100;function++) {
6314                         uint32_t code = (device<<16) | function;
6315
6316                         status = cli_raw_ioctl(cli, fnum, code, &blob);
6317
6318                         if (NT_STATUS_IS_OK(status)) {
6319                                 printf("ioctl 0x%x OK : %d bytes\n", (int)code,
6320                                        (int)blob.length);
6321                                 data_blob_free(&blob);
6322                         }
6323                 }
6324         }
6325
6326         if (!torture_close_connection(cli)) {
6327                 return False;
6328         }
6329
6330         return True;
6331 }
6332
6333
6334 /*
6335   tries varients of chkpath
6336  */
6337 bool torture_chkpath_test(int dummy)
6338 {
6339         static struct cli_state *cli;
6340         uint16_t fnum;
6341         bool ret;
6342         NTSTATUS status;
6343
6344         if (!torture_open_connection(&cli, 0)) {
6345                 return False;
6346         }
6347
6348         printf("starting chkpath test\n");
6349
6350         /* cleanup from an old run */
6351         cli_rmdir(cli, "\\chkpath.dir\\dir2");
6352         cli_unlink(cli, "\\chkpath.dir\\*", FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
6353         cli_rmdir(cli, "\\chkpath.dir");
6354
6355         status = cli_mkdir(cli, "\\chkpath.dir");
6356         if (!NT_STATUS_IS_OK(status)) {
6357                 printf("mkdir1 failed : %s\n", nt_errstr(status));
6358                 return False;
6359         }
6360
6361         status = cli_mkdir(cli, "\\chkpath.dir\\dir2");
6362         if (!NT_STATUS_IS_OK(status)) {
6363                 printf("mkdir2 failed : %s\n", nt_errstr(status));
6364                 return False;
6365         }
6366
6367         status = cli_openx(cli, "\\chkpath.dir\\foo.txt", O_RDWR|O_CREAT|O_EXCL,
6368                           DENY_NONE, &fnum);
6369         if (!NT_STATUS_IS_OK(status)) {
6370                 printf("open1 failed (%s)\n", nt_errstr(status));
6371                 return False;
6372         }
6373         cli_close(cli, fnum);
6374
6375         status = cli_chkpath(cli, "\\chkpath.dir");
6376         if (!NT_STATUS_IS_OK(status)) {
6377                 printf("chkpath1 failed: %s\n", nt_errstr(status));
6378                 ret = False;
6379         }
6380
6381         status = cli_chkpath(cli, "\\chkpath.dir\\dir2");
6382         if (!NT_STATUS_IS_OK(status)) {
6383                 printf("chkpath2 failed: %s\n", nt_errstr(status));
6384                 ret = False;
6385         }
6386
6387         status = cli_chkpath(cli, "\\chkpath.dir\\foo.txt");
6388         if (!NT_STATUS_IS_OK(status)) {
6389                 ret = check_error(__LINE__, status, ERRDOS, ERRbadpath,
6390                                   NT_STATUS_NOT_A_DIRECTORY);
6391         } else {
6392                 printf("* chkpath on a file should fail\n");
6393                 ret = False;
6394         }
6395
6396         status = cli_chkpath(cli, "\\chkpath.dir\\bar.txt");
6397         if (!NT_STATUS_IS_OK(status)) {
6398                 ret = check_error(__LINE__, status, ERRDOS, ERRbadfile,
6399                                   NT_STATUS_OBJECT_NAME_NOT_FOUND);
6400         } else {
6401                 printf("* chkpath on a non existent file should fail\n");
6402                 ret = False;
6403         }
6404
6405         status = cli_chkpath(cli, "\\chkpath.dir\\dirxx\\bar.txt");
6406         if (!NT_STATUS_IS_OK(status)) {
6407                 ret = check_error(__LINE__, status, ERRDOS, ERRbadpath,
6408                                   NT_STATUS_OBJECT_PATH_NOT_FOUND);
6409         } else {
6410                 printf("* chkpath on a non existent component should fail\n");
6411                 ret = False;
6412         }
6413
6414         cli_rmdir(cli, "\\chkpath.dir\\dir2");
6415         cli_unlink(cli, "\\chkpath.dir\\*", FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
6416         cli_rmdir(cli, "\\chkpath.dir");
6417
6418         if (!torture_close_connection(cli)) {
6419                 return False;
6420         }
6421
6422         return ret;
6423 }
6424
6425 static bool run_eatest(int dummy)
6426 {
6427         static struct cli_state *cli;
6428         const char *fname = "\\eatest.txt";
6429         bool correct = True;
6430         uint16_t fnum;
6431         int i;
6432         size_t num_eas;
6433         struct ea_struct *ea_list = NULL;
6434         TALLOC_CTX *mem_ctx = talloc_init("eatest");
6435         NTSTATUS status;
6436
6437         printf("starting eatest\n");
6438
6439         if (!torture_open_connection(&cli, 0)) {
6440                 talloc_destroy(mem_ctx);
6441                 return False;
6442         }
6443
6444         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
6445
6446         status = cli_ntcreate(cli, fname, 0,
6447                               FIRST_DESIRED_ACCESS, FILE_ATTRIBUTE_ARCHIVE,
6448                               FILE_SHARE_NONE, FILE_OVERWRITE_IF,
6449                               0x4044, 0, &fnum, NULL);
6450         if (!NT_STATUS_IS_OK(status)) {
6451                 printf("open failed - %s\n", nt_errstr(status));
6452                 talloc_destroy(mem_ctx);
6453                 return False;
6454         }
6455
6456         for (i = 0; i < 10; i++) {
6457                 fstring ea_name, ea_val;
6458
6459                 slprintf(ea_name, sizeof(ea_name), "EA_%d", i);
6460                 memset(ea_val, (char)i+1, i+1);
6461                 status = cli_set_ea_fnum(cli, fnum, ea_name, ea_val, i+1);
6462                 if (!NT_STATUS_IS_OK(status)) {
6463                         printf("ea_set of name %s failed - %s\n", ea_name,
6464                                nt_errstr(status));
6465                         talloc_destroy(mem_ctx);
6466                         return False;
6467                 }
6468         }
6469
6470         cli_close(cli, fnum);
6471         for (i = 0; i < 10; i++) {
6472                 fstring ea_name, ea_val;
6473
6474                 slprintf(ea_name, sizeof(ea_name), "EA_%d", i+10);
6475                 memset(ea_val, (char)i+1, i+1);
6476                 status = cli_set_ea_path(cli, fname, ea_name, ea_val, i+1);
6477                 if (!NT_STATUS_IS_OK(status)) {
6478                         printf("ea_set of name %s failed - %s\n", ea_name,
6479                                nt_errstr(status));
6480                         talloc_destroy(mem_ctx);
6481                         return False;
6482                 }
6483         }
6484
6485         status = cli_get_ea_list_path(cli, fname, mem_ctx, &num_eas, &ea_list);
6486         if (!NT_STATUS_IS_OK(status)) {
6487                 printf("ea_get list failed - %s\n", nt_errstr(status));
6488                 correct = False;
6489         }
6490
6491         printf("num_eas = %d\n", (int)num_eas);
6492
6493         if (num_eas != 20) {
6494                 printf("Should be 20 EA's stored... failing.\n");
6495                 correct = False;
6496         }
6497
6498         for (i = 0; i < num_eas; i++) {
6499                 printf("%d: ea_name = %s. Val = ", i, ea_list[i].name);
6500                 dump_data(0, ea_list[i].value.data,
6501                           ea_list[i].value.length);
6502         }
6503
6504         /* Setting EA's to zero length deletes them. Test this */
6505         printf("Now deleting all EA's - case indepenent....\n");
6506
6507 #if 1
6508         cli_set_ea_path(cli, fname, "", "", 0);
6509 #else
6510         for (i = 0; i < 20; i++) {
6511                 fstring ea_name;
6512                 slprintf(ea_name, sizeof(ea_name), "ea_%d", i);
6513                 status = cli_set_ea_path(cli, fname, ea_name, "", 0);
6514                 if (!NT_STATUS_IS_OK(status)) {
6515                         printf("ea_set of name %s failed - %s\n", ea_name,
6516                                nt_errstr(status));
6517                         talloc_destroy(mem_ctx);
6518                         return False;
6519                 }
6520         }
6521 #endif
6522
6523         status = cli_get_ea_list_path(cli, fname, mem_ctx, &num_eas, &ea_list);
6524         if (!NT_STATUS_IS_OK(status)) {
6525                 printf("ea_get list failed - %s\n", nt_errstr(status));
6526                 correct = False;
6527         }
6528
6529         printf("num_eas = %d\n", (int)num_eas);
6530         for (i = 0; i < num_eas; i++) {
6531                 printf("%d: ea_name = %s. Val = ", i, ea_list[i].name);
6532                 dump_data(0, ea_list[i].value.data,
6533                           ea_list[i].value.length);
6534         }
6535
6536         if (num_eas != 0) {
6537                 printf("deleting EA's failed.\n");
6538                 correct = False;
6539         }
6540
6541         /* Try and delete a non existent EA. */
6542         status = cli_set_ea_path(cli, fname, "foo", "", 0);
6543         if (!NT_STATUS_IS_OK(status)) {
6544                 printf("deleting non-existent EA 'foo' should succeed. %s\n",
6545                        nt_errstr(status));
6546                 correct = False;
6547         }
6548
6549         talloc_destroy(mem_ctx);
6550         if (!torture_close_connection(cli)) {
6551                 correct = False;
6552         }
6553
6554         return correct;
6555 }
6556
6557 static bool run_dirtest1(int dummy)
6558 {
6559         int i;
6560         static struct cli_state *cli;
6561         uint16_t fnum;
6562         int num_seen;
6563         bool correct = True;
6564
6565         printf("starting directory test\n");
6566
6567         if (!torture_open_connection(&cli, 0)) {
6568                 return False;
6569         }
6570
6571         smbXcli_conn_set_sockopt(cli->conn, sockops);
6572
6573         cli_list(cli, "\\LISTDIR\\*", 0, del_fn, cli);
6574         cli_list(cli, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY, del_fn, cli);
6575         cli_rmdir(cli, "\\LISTDIR");
6576         cli_mkdir(cli, "\\LISTDIR");
6577
6578         /* Create 1000 files and 1000 directories. */
6579         for (i=0;i<1000;i++) {
6580                 fstring fname;
6581                 slprintf(fname, sizeof(fname), "\\LISTDIR\\f%d", i);
6582                 if (!NT_STATUS_IS_OK(cli_ntcreate(cli, fname, 0, GENERIC_ALL_ACCESS, FILE_ATTRIBUTE_ARCHIVE,
6583                                    FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OVERWRITE_IF,
6584                                    0, 0, &fnum, NULL))) {
6585                         fprintf(stderr,"Failed to open %s\n", fname);
6586                         return False;
6587                 }
6588                 cli_close(cli, fnum);
6589         }
6590         for (i=0;i<1000;i++) {
6591                 fstring fname;
6592                 slprintf(fname, sizeof(fname), "\\LISTDIR\\d%d", i);
6593                 if (!NT_STATUS_IS_OK(cli_mkdir(cli, fname))) {
6594                         fprintf(stderr,"Failed to open %s\n", fname);
6595                         return False;
6596                 }
6597         }
6598
6599         /* Now ensure that doing an old list sees both files and directories. */
6600         num_seen = 0;
6601         cli_list_old(cli, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY, list_fn, &num_seen);
6602         printf("num_seen = %d\n", num_seen );
6603         /* We should see 100 files + 1000 directories + . and .. */
6604         if (num_seen != 2002)
6605                 correct = False;
6606
6607         /* Ensure if we have the "must have" bits we only see the
6608          * relevent entries.
6609          */
6610         num_seen = 0;
6611         cli_list_old(cli, "\\LISTDIR\\*", (FILE_ATTRIBUTE_DIRECTORY<<8)|FILE_ATTRIBUTE_DIRECTORY, list_fn, &num_seen);
6612         printf("num_seen = %d\n", num_seen );
6613         if (num_seen != 1002)
6614                 correct = False;
6615
6616         num_seen = 0;
6617         cli_list_old(cli, "\\LISTDIR\\*", (FILE_ATTRIBUTE_ARCHIVE<<8)|FILE_ATTRIBUTE_DIRECTORY, list_fn, &num_seen);
6618         printf("num_seen = %d\n", num_seen );
6619         if (num_seen != 1000)
6620                 correct = False;
6621
6622         /* Delete everything. */
6623         cli_list(cli, "\\LISTDIR\\*", 0, del_fn, cli);
6624         cli_list(cli, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY, del_fn, cli);
6625         cli_rmdir(cli, "\\LISTDIR");
6626
6627 #if 0
6628         printf("Matched %d\n", cli_list(cli, "a*.*", 0, list_fn, NULL));
6629         printf("Matched %d\n", cli_list(cli, "b*.*", 0, list_fn, NULL));
6630         printf("Matched %d\n", cli_list(cli, "xyzabc", 0, list_fn, NULL));
6631 #endif
6632
6633         if (!torture_close_connection(cli)) {
6634                 correct = False;
6635         }
6636
6637         printf("finished dirtest1\n");
6638
6639         return correct;
6640 }
6641
6642 static bool run_error_map_extract(int dummy) {
6643
6644         static struct cli_state *c_dos;
6645         static struct cli_state *c_nt;
6646         NTSTATUS status;
6647
6648         uint32_t error;
6649
6650         uint32_t errnum;
6651         uint8_t errclass;
6652
6653         NTSTATUS nt_status;
6654
6655         fstring user;
6656
6657         /* NT-Error connection */
6658
6659         disable_spnego = true;
6660         if (!(c_nt = open_nbt_connection())) {
6661                 disable_spnego = false;
6662                 return False;
6663         }
6664         disable_spnego = false;
6665
6666         status = smbXcli_negprot(c_nt->conn, c_nt->timeout, PROTOCOL_CORE,
6667                                  PROTOCOL_NT1);
6668
6669         if (!NT_STATUS_IS_OK(status)) {
6670                 printf("%s rejected the NT-error negprot (%s)\n", host,
6671                        nt_errstr(status));
6672                 cli_shutdown(c_nt);
6673                 return False;
6674         }
6675
6676         status = cli_session_setup(c_nt, "", "", 0, "", 0, workgroup);
6677         if (!NT_STATUS_IS_OK(status)) {
6678                 printf("%s rejected the NT-error initial session setup (%s)\n",host, nt_errstr(status));
6679                 return False;
6680         }
6681
6682         /* DOS-Error connection */
6683
6684         disable_spnego = true;
6685         force_dos_errors = true;
6686         if (!(c_dos = open_nbt_connection())) {
6687                 disable_spnego = false;
6688                 force_dos_errors = false;
6689                 return False;
6690         }
6691         disable_spnego = false;
6692         force_dos_errors = false;
6693
6694         status = smbXcli_negprot(c_dos->conn, c_dos->timeout, PROTOCOL_CORE,
6695                                  PROTOCOL_NT1);
6696         if (!NT_STATUS_IS_OK(status)) {
6697                 printf("%s rejected the DOS-error negprot (%s)\n", host,
6698                        nt_errstr(status));
6699                 cli_shutdown(c_dos);
6700                 return False;
6701         }
6702
6703         status = cli_session_setup(c_dos, "", "", 0, "", 0, workgroup);
6704         if (!NT_STATUS_IS_OK(status)) {
6705                 printf("%s rejected the DOS-error initial session setup (%s)\n",
6706                         host, nt_errstr(status));
6707                 return False;
6708         }
6709
6710         c_nt->map_dos_errors = false;
6711         c_dos->map_dos_errors = false;
6712
6713         for (error=(0xc0000000 | 0x1); error < (0xc0000000| 0xFFF); error++) {
6714                 fstr_sprintf(user, "%X", error);
6715
6716                 status = cli_session_setup(c_nt, user,
6717                                            password, strlen(password),
6718                                            password, strlen(password),
6719                                            workgroup);
6720                 if (NT_STATUS_IS_OK(status)) {
6721                         printf("/** Session setup succeeded.  This shouldn't happen...*/\n");
6722                 }
6723
6724                 /* Case #1: 32-bit NT errors */
6725                 if (!NT_STATUS_IS_DOS(status)) {
6726                         nt_status = status;
6727                 } else {
6728                         printf("/** Dos error on NT connection! (%s) */\n", 
6729                                nt_errstr(status));
6730                         nt_status = NT_STATUS(0xc0000000);
6731                 }
6732
6733                 status = cli_session_setup(c_dos, user,
6734                                            password, strlen(password),
6735                                            password, strlen(password),
6736                                            workgroup);
6737                 if (NT_STATUS_IS_OK(status)) {
6738                         printf("/** Session setup succeeded.  This shouldn't happen...*/\n");
6739                 }
6740
6741                 /* Case #1: 32-bit NT errors */
6742                 if (NT_STATUS_IS_DOS(status)) {
6743                         printf("/** NT error on DOS connection! (%s) */\n", 
6744                                nt_errstr(status));
6745                         errnum = errclass = 0;
6746                 } else {
6747                         errclass = NT_STATUS_DOS_CLASS(status);
6748                         errnum = NT_STATUS_DOS_CODE(status);
6749                 }
6750
6751                 if (NT_STATUS_V(nt_status) != error) { 
6752                         printf("/*\t{ This NT error code was 'sqashed'\n\t from %s to %s \n\t during the session setup }\n*/\n", 
6753                                get_nt_error_c_code(talloc_tos(), NT_STATUS(error)), 
6754                                get_nt_error_c_code(talloc_tos(), nt_status));
6755                 }
6756
6757                 printf("\t{%s,\t%s,\t%s},\n", 
6758                        smb_dos_err_class(errclass), 
6759                        smb_dos_err_name(errclass, errnum), 
6760                        get_nt_error_c_code(talloc_tos(), NT_STATUS(error)));
6761         }
6762         return True;
6763 }
6764
6765 static bool run_sesssetup_bench(int dummy)
6766 {
6767         static struct cli_state *c;
6768         const char *fname = "\\file.dat";
6769         uint16_t fnum;
6770         NTSTATUS status;
6771         int i;
6772
6773         if (!torture_open_connection(&c, 0)) {
6774                 return false;
6775         }
6776
6777         status = cli_ntcreate(c, fname, 0, GENERIC_ALL_ACCESS|DELETE_ACCESS,
6778                               FILE_ATTRIBUTE_NORMAL, 0, FILE_OVERWRITE_IF,
6779                               FILE_DELETE_ON_CLOSE, 0, &fnum, NULL);
6780         if (!NT_STATUS_IS_OK(status)) {
6781                 d_printf("open %s failed: %s\n", fname, nt_errstr(status));
6782                 return false;
6783         }
6784
6785         for (i=0; i<torture_numops; i++) {
6786                 status = cli_session_setup(
6787                         c, username,
6788                         password, strlen(password),
6789                         password, strlen(password),
6790                         workgroup);
6791                 if (!NT_STATUS_IS_OK(status)) {
6792                         d_printf("(%s) cli_session_setup failed: %s\n",
6793                                  __location__, nt_errstr(status));
6794                         return false;
6795                 }
6796
6797                 d_printf("\r%d   ", (int)cli_state_get_uid(c));
6798
6799                 status = cli_ulogoff(c);
6800                 if (!NT_STATUS_IS_OK(status)) {
6801                         d_printf("(%s) cli_ulogoff failed: %s\n",
6802                                  __location__, nt_errstr(status));
6803                         return false;
6804                 }
6805         }
6806
6807         return true;
6808 }
6809
6810 static bool subst_test(const char *str, const char *user, const char *domain,
6811                        uid_t uid, gid_t gid, const char *expected)
6812 {
6813         char *subst;
6814         bool result = true;
6815
6816         subst = talloc_sub_specified(talloc_tos(), str, user, NULL, domain, uid, gid);
6817
6818         if (strcmp(subst, expected) != 0) {
6819                 printf("sub_specified(%s, %s, %s, %d, %d) returned [%s], expected "
6820                        "[%s]\n", str, user, domain, (int)uid, (int)gid, subst,
6821                        expected);
6822                 result = false;
6823         }
6824
6825         TALLOC_FREE(subst);
6826         return result;
6827 }
6828
6829 static void chain1_open_completion(struct tevent_req *req)
6830 {
6831         uint16_t fnum;
6832         NTSTATUS status;
6833         status = cli_openx_recv(req, &fnum);
6834         TALLOC_FREE(req);
6835
6836         d_printf("cli_openx_recv returned %s: %d\n",
6837                  nt_errstr(status),
6838                  NT_STATUS_IS_OK(status) ? fnum : -1);
6839 }
6840
6841 static void chain1_write_completion(struct tevent_req *req)
6842 {
6843         size_t written;
6844         NTSTATUS status;
6845         status = cli_write_andx_recv(req, &written);
6846         TALLOC_FREE(req);
6847
6848         d_printf("cli_write_andx_recv returned %s: %d\n",
6849                  nt_errstr(status),
6850                  NT_STATUS_IS_OK(status) ? (int)written : -1);
6851 }
6852
6853 static void chain1_close_completion(struct tevent_req *req)
6854 {
6855         NTSTATUS status;
6856         bool *done = (bool *)tevent_req_callback_data_void(req);
6857
6858         status = cli_close_recv(req);
6859         *done = true;
6860
6861         TALLOC_FREE(req);
6862
6863         d_printf("cli_close returned %s\n", nt_errstr(status));
6864 }
6865
6866 static bool run_chain1(int dummy)
6867 {
6868         struct cli_state *cli1;
6869         struct tevent_context *evt = samba_tevent_context_init(NULL);
6870         struct tevent_req *reqs[3], *smbreqs[3];
6871         bool done = false;
6872         const char *str = "foobar";
6873         NTSTATUS status;
6874
6875         printf("starting chain1 test\n");
6876         if (!torture_open_connection(&cli1, 0)) {
6877                 return False;
6878         }
6879
6880         smbXcli_conn_set_sockopt(cli1->conn, sockops);
6881
6882         reqs[0] = cli_openx_create(talloc_tos(), evt, cli1, "\\test",
6883                                   O_CREAT|O_RDWR, 0, &smbreqs[0]);
6884         if (reqs[0] == NULL) return false;
6885         tevent_req_set_callback(reqs[0], chain1_open_completion, NULL);
6886
6887
6888         reqs[1] = cli_write_andx_create(talloc_tos(), evt, cli1, 0, 0,
6889                                         (const uint8_t *)str, 0, strlen(str)+1,
6890                                         smbreqs, 1, &smbreqs[1]);
6891         if (reqs[1] == NULL) return false;
6892         tevent_req_set_callback(reqs[1], chain1_write_completion, NULL);
6893
6894         reqs[2] = cli_close_create(talloc_tos(), evt, cli1, 0, &smbreqs[2]);
6895         if (reqs[2] == NULL) return false;
6896         tevent_req_set_callback(reqs[2], chain1_close_completion, &done);
6897
6898         status = smb1cli_req_chain_submit(smbreqs, ARRAY_SIZE(smbreqs));
6899         if (!NT_STATUS_IS_OK(status)) {
6900                 return false;
6901         }
6902
6903         while (!done) {
6904                 tevent_loop_once(evt);
6905         }
6906
6907         torture_close_connection(cli1);
6908         return True;
6909 }
6910
6911 static void chain2_sesssetup_completion(struct tevent_req *req)
6912 {
6913         NTSTATUS status;
6914         status = cli_session_setup_guest_recv(req);
6915         d_printf("sesssetup returned %s\n", nt_errstr(status));
6916 }
6917
6918 static void chain2_tcon_completion(struct tevent_req *req)
6919 {
6920         bool *done = (bool *)tevent_req_callback_data_void(req);
6921         NTSTATUS status;
6922         status = cli_tcon_andx_recv(req);
6923         d_printf("tcon_and_x returned %s\n", nt_errstr(status));
6924         *done = true;
6925 }
6926
6927 static bool run_chain2(int dummy)
6928 {
6929         struct cli_state *cli1;
6930         struct tevent_context *evt = samba_tevent_context_init(NULL);
6931         struct tevent_req *reqs[2], *smbreqs[2];
6932         bool done = false;
6933         NTSTATUS status;
6934
6935         printf("starting chain2 test\n");
6936         status = cli_start_connection(&cli1, lp_netbios_name(), host, NULL,
6937                                       port_to_use, SMB_SIGNING_DEFAULT, 0);
6938         if (!NT_STATUS_IS_OK(status)) {
6939                 return False;
6940         }
6941
6942         smbXcli_conn_set_sockopt(cli1->conn, sockops);
6943
6944         reqs[0] = cli_session_setup_guest_create(talloc_tos(), evt, cli1,
6945                                                  &smbreqs[0]);
6946         if (reqs[0] == NULL) return false;
6947         tevent_req_set_callback(reqs[0], chain2_sesssetup_completion, NULL);
6948
6949         reqs[1] = cli_tcon_andx_create(talloc_tos(), evt, cli1, "IPC$",
6950                                        "?????", NULL, 0, &smbreqs[1]);
6951         if (reqs[1] == NULL) return false;
6952         tevent_req_set_callback(reqs[1], chain2_tcon_completion, &done);
6953
6954         status = smb1cli_req_chain_submit(smbreqs, ARRAY_SIZE(smbreqs));
6955         if (!NT_STATUS_IS_OK(status)) {
6956                 return false;
6957         }
6958
6959         while (!done) {
6960                 tevent_loop_once(evt);
6961         }
6962
6963         torture_close_connection(cli1);
6964         return True;
6965 }
6966
6967
6968 struct torture_createdel_state {
6969         struct tevent_context *ev;
6970         struct cli_state *cli;
6971 };
6972
6973 static void torture_createdel_created(struct tevent_req *subreq);
6974 static void torture_createdel_closed(struct tevent_req *subreq);
6975
6976 static struct tevent_req *torture_createdel_send(TALLOC_CTX *mem_ctx,
6977                                                  struct tevent_context *ev,
6978                                                  struct cli_state *cli,
6979                                                  const char *name)
6980 {
6981         struct tevent_req *req, *subreq;
6982         struct torture_createdel_state *state;
6983
6984         req = tevent_req_create(mem_ctx, &state,
6985                                 struct torture_createdel_state);
6986         if (req == NULL) {
6987                 return NULL;
6988         }
6989         state->ev = ev;
6990         state->cli = cli;
6991
6992         subreq = cli_ntcreate_send(
6993                 state, ev, cli, name, 0,
6994                 FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
6995                 FILE_ATTRIBUTE_NORMAL,
6996                 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
6997                 FILE_OPEN_IF, FILE_DELETE_ON_CLOSE, 0);
6998
6999         if (tevent_req_nomem(subreq, req)) {
7000                 return tevent_req_post(req, ev);
7001         }
7002         tevent_req_set_callback(subreq, torture_createdel_created, req);
7003         return req;
7004 }
7005
7006 static void torture_createdel_created(struct tevent_req *subreq)
7007 {
7008         struct tevent_req *req = tevent_req_callback_data(
7009                 subreq, struct tevent_req);
7010         struct torture_createdel_state *state = tevent_req_data(
7011                 req, struct torture_createdel_state);
7012         NTSTATUS status;
7013         uint16_t fnum;
7014
7015         status = cli_ntcreate_recv(subreq, &fnum, NULL);
7016         TALLOC_FREE(subreq);
7017         if (tevent_req_nterror(req, status)) {
7018                 DEBUG(10, ("cli_ntcreate_recv returned %s\n",
7019                            nt_errstr(status)));
7020                 return;
7021         }
7022
7023         subreq = cli_close_send(state, state->ev, state->cli, fnum);
7024         if (tevent_req_nomem(subreq, req)) {
7025                 return;
7026         }
7027         tevent_req_set_callback(subreq, torture_createdel_closed, req);
7028 }
7029
7030 static void torture_createdel_closed(struct tevent_req *subreq)
7031 {
7032         struct tevent_req *req = tevent_req_callback_data(
7033                 subreq, struct tevent_req);
7034         NTSTATUS status;
7035
7036         status = cli_close_recv(subreq);
7037         if (tevent_req_nterror(req, status)) {
7038                 DEBUG(10, ("cli_close_recv returned %s\n", nt_errstr(status)));
7039                 return;
7040         }
7041         tevent_req_done(req);
7042 }
7043
7044 static NTSTATUS torture_createdel_recv(struct tevent_req *req)
7045 {
7046         return tevent_req_simple_recv_ntstatus(req);
7047 }
7048
7049 struct torture_createdels_state {
7050         struct tevent_context *ev;
7051         struct cli_state *cli;
7052         const char *base_name;
7053         int sent;
7054         int received;
7055         int num_files;
7056         struct tevent_req **reqs;
7057 };
7058
7059 static void torture_createdels_done(struct tevent_req *subreq);
7060
7061 static struct tevent_req *torture_createdels_send(TALLOC_CTX *mem_ctx,
7062                                                   struct tevent_context *ev,
7063                                                   struct cli_state *cli,
7064                                                   const char *base_name,
7065                                                   int num_parallel,
7066                                                   int num_files)
7067 {
7068         struct tevent_req *req;
7069         struct torture_createdels_state *state;
7070         int i;
7071
7072         req = tevent_req_create(mem_ctx, &state,
7073                                 struct torture_createdels_state);
7074         if (req == NULL) {
7075                 return NULL;
7076         }
7077         state->ev = ev;
7078         state->cli = cli;
7079         state->base_name = talloc_strdup(state, base_name);
7080         if (tevent_req_nomem(state->base_name, req)) {
7081                 return tevent_req_post(req, ev);
7082         }
7083         state->num_files = MAX(num_parallel, num_files);
7084         state->sent = 0;
7085         state->received = 0;
7086
7087         state->reqs = talloc_array(state, struct tevent_req *, num_parallel);
7088         if (tevent_req_nomem(state->reqs, req)) {
7089                 return tevent_req_post(req, ev);
7090         }
7091
7092         for (i=0; i<num_parallel; i++) {
7093                 char *name;
7094
7095                 name = talloc_asprintf(state, "%s%8.8d", state->base_name,
7096                                        state->sent);
7097                 if (tevent_req_nomem(name, req)) {
7098                         return tevent_req_post(req, ev);
7099                 }
7100                 state->reqs[i] = torture_createdel_send(
7101                         state->reqs, state->ev, state->cli, name);
7102                 if (tevent_req_nomem(state->reqs[i], req)) {
7103                         return tevent_req_post(req, ev);
7104                 }
7105                 name = talloc_move(state->reqs[i], &name);
7106                 tevent_req_set_callback(state->reqs[i],
7107                                         torture_createdels_done, req);
7108                 state->sent += 1;
7109         }
7110         return req;
7111 }
7112
7113 static void torture_createdels_done(struct tevent_req *subreq)
7114 {
7115         struct tevent_req *req = tevent_req_callback_data(
7116                 subreq, struct tevent_req);
7117         struct torture_createdels_state *state = tevent_req_data(
7118                 req, struct torture_createdels_state);
7119         size_t num_parallel = talloc_array_length(state->reqs);
7120         NTSTATUS status;
7121         char *name;
7122         int i;
7123
7124         status = torture_createdel_recv(subreq);
7125         if (!NT_STATUS_IS_OK(status)){
7126                 DEBUG(10, ("torture_createdel_recv returned %s\n",
7127                            nt_errstr(status)));
7128                 TALLOC_FREE(subreq);
7129                 tevent_req_nterror(req, status);
7130                 return;
7131         }
7132
7133         for (i=0; i<num_parallel; i++) {
7134                 if (subreq == state->reqs[i]) {
7135                         break;
7136                 }
7137         }
7138         if (i == num_parallel) {
7139                 DEBUG(10, ("received something we did not send\n"));
7140                 tevent_req_nterror(req, NT_STATUS_INTERNAL_ERROR);
7141                 return;
7142         }
7143         TALLOC_FREE(state->reqs[i]);
7144
7145         if (state->sent >= state->num_files) {
7146                 tevent_req_done(req);
7147                 return;
7148         }
7149
7150         name = talloc_asprintf(state, "%s%8.8d", state->base_name,
7151                                state->sent);
7152         if (tevent_req_nomem(name, req)) {
7153                 return;
7154         }
7155         state->reqs[i] = torture_createdel_send(state->reqs, state->ev,
7156                                                 state->cli, name);
7157         if (tevent_req_nomem(state->reqs[i], req)) {
7158                 return;
7159         }
7160         name = talloc_move(state->reqs[i], &name);
7161         tevent_req_set_callback(state->reqs[i], torture_createdels_done, req);
7162         state->sent += 1;
7163 }
7164
7165 static NTSTATUS torture_createdels_recv(struct tevent_req *req)
7166 {
7167         return tevent_req_simple_recv_ntstatus(req);
7168 }
7169
7170 struct swallow_notify_state {
7171         struct tevent_context *ev;
7172         struct cli_state *cli;
7173         uint16_t fnum;
7174         uint32_t completion_filter;
7175         bool recursive;
7176         bool (*fn)(uint32_t action, const char *name, void *priv);
7177         void *priv;
7178 };
7179
7180 static void swallow_notify_done(struct tevent_req *subreq);
7181
7182 static struct tevent_req *swallow_notify_send(TALLOC_CTX *mem_ctx,
7183                                               struct tevent_context *ev,
7184                                               struct cli_state *cli,
7185                                               uint16_t fnum,
7186                                               uint32_t completion_filter,
7187                                               bool recursive,
7188                                               bool (*fn)(uint32_t action,
7189                                                          const char *name,
7190                                                          void *priv),
7191                                               void *priv)
7192 {
7193         struct tevent_req *req, *subreq;
7194         struct swallow_notify_state *state;
7195
7196         req = tevent_req_create(mem_ctx, &state,
7197                                 struct swallow_notify_state);
7198         if (req == NULL) {
7199                 return NULL;
7200         }
7201         state->ev = ev;
7202         state->cli = cli;
7203         state->fnum = fnum;
7204         state->completion_filter = completion_filter;
7205         state->recursive = recursive;
7206         state->fn = fn;
7207         state->priv = priv;
7208
7209         subreq = cli_notify_send(state, state->ev, state->cli, state->fnum,
7210                                  0xffff, state->completion_filter,
7211                                  state->recursive);
7212         if (tevent_req_nomem(subreq, req)) {
7213                 return tevent_req_post(req, ev);
7214         }
7215         tevent_req_set_callback(subreq, swallow_notify_done, req);
7216         return req;
7217 }
7218
7219 static void swallow_notify_done(struct tevent_req *subreq)
7220 {
7221         struct tevent_req *req = tevent_req_callback_data(
7222                 subreq, struct tevent_req);
7223         struct swallow_notify_state *state = tevent_req_data(
7224                 req, struct swallow_notify_state);
7225         NTSTATUS status;
7226         uint32_t i, num_changes;
7227         struct notify_change *changes;
7228
7229         status = cli_notify_recv(subreq, state, &num_changes, &changes);
7230         TALLOC_FREE(subreq);
7231         if (!NT_STATUS_IS_OK(status)) {
7232                 DEBUG(10, ("cli_notify_recv returned %s\n",
7233                            nt_errstr(status)));
7234                 tevent_req_nterror(req, status);
7235                 return;
7236         }
7237
7238         for (i=0; i<num_changes; i++) {
7239                 state->fn(changes[i].action, changes[i].name, state->priv);
7240         }
7241         TALLOC_FREE(changes);
7242
7243         subreq = cli_notify_send(state, state->ev, state->cli, state->fnum,
7244                                  0xffff, state->completion_filter,
7245                                  state->recursive);
7246         if (tevent_req_nomem(subreq, req)) {
7247                 return;
7248         }
7249         tevent_req_set_callback(subreq, swallow_notify_done, req);
7250 }
7251
7252 static bool print_notifies(uint32_t action, const char *name, void *priv)
7253 {
7254         if (DEBUGLEVEL > 5) {
7255                 d_printf("%d %s\n", (int)action, name);
7256         }
7257         return true;
7258 }
7259
7260 static void notify_bench_done(struct tevent_req *req)
7261 {
7262         int *num_finished = (int *)tevent_req_callback_data_void(req);
7263         *num_finished += 1;
7264 }
7265
7266 static bool run_notify_bench(int dummy)
7267 {
7268         const char *dname = "\\notify-bench";
7269         struct tevent_context *ev;
7270         NTSTATUS status;
7271         uint16_t dnum;
7272         struct tevent_req *req1;
7273         struct tevent_req *req2 = NULL;
7274         int i, num_unc_names;
7275         int num_finished = 0;
7276
7277         printf("starting notify-bench test\n");
7278
7279         if (use_multishare_conn) {
7280                 char **unc_list;
7281                 unc_list = file_lines_load(multishare_conn_fname,
7282                                            &num_unc_names, 0, NULL);
7283                 if (!unc_list || num_unc_names <= 0) {
7284                         d_printf("Failed to load unc names list from '%s'\n",
7285                                  multishare_conn_fname);
7286                         return false;
7287                 }
7288                 TALLOC_FREE(unc_list);
7289         } else {
7290                 num_unc_names = 1;
7291         }
7292
7293         ev = samba_tevent_context_init(talloc_tos());
7294         if (ev == NULL) {
7295                 d_printf("tevent_context_init failed\n");
7296                 return false;
7297         }
7298
7299         for (i=0; i<num_unc_names; i++) {
7300                 struct cli_state *cli;
7301                 char *base_fname;
7302
7303                 base_fname = talloc_asprintf(talloc_tos(), "%s\\file%3.3d.",
7304                                              dname, i);
7305                 if (base_fname == NULL) {
7306                         return false;
7307                 }
7308
7309                 if (!torture_open_connection(&cli, i)) {
7310                         return false;
7311                 }
7312
7313                 status = cli_ntcreate(cli, dname, 0,
7314                                       MAXIMUM_ALLOWED_ACCESS,
7315                                       0, FILE_SHARE_READ|FILE_SHARE_WRITE|
7316                                       FILE_SHARE_DELETE,
7317                                       FILE_OPEN_IF, FILE_DIRECTORY_FILE, 0,
7318                                       &dnum, NULL);
7319
7320                 if (!NT_STATUS_IS_OK(status)) {
7321                         d_printf("Could not create %s: %s\n", dname,
7322                                  nt_errstr(status));
7323                         return false;
7324                 }
7325
7326                 req1 = swallow_notify_send(talloc_tos(), ev, cli, dnum,
7327                                            FILE_NOTIFY_CHANGE_FILE_NAME |
7328                                            FILE_NOTIFY_CHANGE_DIR_NAME |
7329                                            FILE_NOTIFY_CHANGE_ATTRIBUTES |
7330                                            FILE_NOTIFY_CHANGE_LAST_WRITE,
7331                                            false, print_notifies, NULL);
7332                 if (req1 == NULL) {
7333                         d_printf("Could not create notify request\n");
7334                         return false;
7335                 }
7336
7337                 req2 = torture_createdels_send(talloc_tos(), ev, cli,
7338                                                base_fname, 10, torture_numops);
7339                 if (req2 == NULL) {
7340                         d_printf("Could not create createdels request\n");
7341                         return false;
7342                 }
7343                 TALLOC_FREE(base_fname);
7344
7345                 tevent_req_set_callback(req2, notify_bench_done,
7346                                         &num_finished);
7347         }
7348
7349         while (num_finished < num_unc_names) {
7350                 int ret;
7351                 ret = tevent_loop_once(ev);
7352                 if (ret != 0) {
7353                         d_printf("tevent_loop_once failed\n");
7354                         return false;
7355                 }
7356         }
7357
7358         if (!tevent_req_poll(req2, ev)) {
7359                 d_printf("tevent_req_poll failed\n");
7360         }
7361
7362         status = torture_createdels_recv(req2);
7363         d_printf("torture_createdels_recv returned %s\n", nt_errstr(status));
7364
7365         return true;
7366 }
7367
7368 static bool run_mangle1(int dummy)
7369 {
7370         struct cli_state *cli;
7371         const char *fname = "this_is_a_long_fname_to_be_mangled.txt";
7372         uint16_t fnum;
7373         fstring alt_name;
7374         NTSTATUS status;
7375         time_t change_time, access_time, write_time;
7376         off_t size;
7377         uint16_t mode;
7378
7379         printf("starting mangle1 test\n");
7380         if (!torture_open_connection(&cli, 0)) {
7381                 return False;
7382         }
7383
7384         smbXcli_conn_set_sockopt(cli->conn, sockops);
7385
7386         status = cli_ntcreate(cli, fname, 0, GENERIC_ALL_ACCESS|DELETE_ACCESS,
7387                               FILE_ATTRIBUTE_NORMAL, 0, FILE_OVERWRITE_IF,
7388                               0, 0, &fnum, NULL);
7389         if (!NT_STATUS_IS_OK(status)) {
7390                 d_printf("open %s failed: %s\n", fname, nt_errstr(status));
7391                 return false;
7392         }
7393         cli_close(cli, fnum);
7394
7395         status = cli_qpathinfo_alt_name(cli, fname, alt_name);
7396         if (!NT_STATUS_IS_OK(status)) {
7397                 d_printf("cli_qpathinfo_alt_name failed: %s\n",
7398                          nt_errstr(status));
7399                 return false;
7400         }
7401         d_printf("alt_name: %s\n", alt_name);
7402
7403         status = cli_openx(cli, alt_name, O_RDONLY, DENY_NONE, &fnum);
7404         if (!NT_STATUS_IS_OK(status)) {
7405                 d_printf("cli_openx(%s) failed: %s\n", alt_name,
7406                          nt_errstr(status));
7407                 return false;
7408         }
7409         cli_close(cli, fnum);
7410
7411         status = cli_qpathinfo1(cli, alt_name, &change_time, &access_time,
7412                                 &write_time, &size, &mode);
7413         if (!NT_STATUS_IS_OK(status)) {
7414                 d_printf("cli_qpathinfo1(%s) failed: %s\n", alt_name,
7415                          nt_errstr(status));
7416                 return false;
7417         }
7418
7419         return true;
7420 }
7421
7422 static size_t null_source(uint8_t *buf, size_t n, void *priv)
7423 {
7424         size_t *to_pull = (size_t *)priv;
7425         size_t thistime = *to_pull;
7426
7427         thistime = MIN(thistime, n);
7428         if (thistime == 0) {
7429                 return 0;
7430         }
7431
7432         memset(buf, 0, thistime);
7433         *to_pull -= thistime;
7434         return thistime;
7435 }
7436
7437 static bool run_windows_write(int dummy)
7438 {
7439         struct cli_state *cli1;
7440         uint16_t fnum;
7441         int i;
7442         bool ret = false;
7443         const char *fname = "\\writetest.txt";
7444         struct timeval start_time;
7445         double seconds;
7446         double kbytes;
7447         NTSTATUS status;
7448
7449         printf("starting windows_write test\n");
7450         if (!torture_open_connection(&cli1, 0)) {
7451                 return False;
7452         }
7453
7454         status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum);
7455         if (!NT_STATUS_IS_OK(status)) {
7456                 printf("open failed (%s)\n", nt_errstr(status));
7457                 return False;
7458         }
7459
7460         smbXcli_conn_set_sockopt(cli1->conn, sockops);
7461
7462         start_time = timeval_current();
7463
7464         for (i=0; i<torture_numops; i++) {
7465                 uint8_t c = 0;
7466                 off_t start = i * torture_blocksize;
7467                 size_t to_pull = torture_blocksize - 1;
7468
7469                 status = cli_writeall(cli1, fnum, 0, &c,
7470                                       start + torture_blocksize - 1, 1, NULL);
7471                 if (!NT_STATUS_IS_OK(status)) {
7472                         printf("cli_write failed: %s\n", nt_errstr(status));
7473                         goto fail;
7474                 }
7475
7476                 status = cli_push(cli1, fnum, 0, i * torture_blocksize, torture_blocksize,
7477                                   null_source, &to_pull);
7478                 if (!NT_STATUS_IS_OK(status)) {
7479                         printf("cli_push returned: %s\n", nt_errstr(status));
7480                         goto fail;
7481                 }
7482         }
7483
7484         seconds = timeval_elapsed(&start_time);
7485         kbytes = (double)torture_blocksize * torture_numops;
7486         kbytes /= 1024;
7487
7488         printf("Wrote %d kbytes in %.2f seconds: %d kb/sec\n", (int)kbytes,
7489                (double)seconds, (int)(kbytes/seconds));
7490
7491         ret = true;
7492  fail:
7493         cli_close(cli1, fnum);
7494         cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
7495         torture_close_connection(cli1);
7496         return ret;
7497 }
7498
7499 static size_t calc_expected_return(struct cli_state *cli, size_t len_requested)
7500 {
7501         size_t max_pdu = 0x1FFFF;
7502
7503         if (cli->server_posix_capabilities & CIFS_UNIX_LARGE_READ_CAP) {
7504                 max_pdu = 0xFFFFFF;
7505         }
7506
7507         if (smb1cli_conn_signing_is_active(cli->conn)) {
7508                 max_pdu = 0x1FFFF;
7509         }
7510
7511         if (smb1cli_conn_encryption_on(cli->conn)) {
7512                 max_pdu = CLI_BUFFER_SIZE;
7513         }
7514
7515         if ((len_requested & 0xFFFF0000) == 0xFFFF0000) {
7516                 len_requested &= 0xFFFF;
7517         }
7518
7519         return MIN(len_requested,
7520                    max_pdu - (MIN_SMB_SIZE + VWV(12) + 1 /* padding byte */));
7521 }
7522
7523 static bool check_read_call(struct cli_state *cli,
7524                             uint16_t fnum,
7525                             uint8_t *buf,
7526                             size_t len_requested)
7527 {
7528         NTSTATUS status;
7529         struct tevent_req *subreq = NULL;
7530         ssize_t len_read = 0;
7531         size_t len_expected = 0;
7532         struct tevent_context *ev = NULL;
7533
7534         ev = samba_tevent_context_init(talloc_tos());
7535         if (ev == NULL) {
7536                 return false;
7537         }
7538
7539         subreq = cli_read_andx_send(talloc_tos(),
7540                                     ev,
7541                                     cli,
7542                                     fnum,
7543                                     0,
7544                                     len_requested);
7545
7546         if (!tevent_req_poll_ntstatus(subreq, ev, &status)) {
7547                 return false;
7548         }
7549
7550         status = cli_read_andx_recv(subreq, &len_read, &buf);
7551         if (!NT_STATUS_IS_OK(status)) {
7552                 d_printf("cli_read_andx_recv failed: %s\n", nt_errstr(status));
7553                 return false;
7554         }
7555
7556         TALLOC_FREE(subreq);
7557         TALLOC_FREE(ev);
7558
7559         len_expected = calc_expected_return(cli, len_requested);
7560
7561         if (len_expected > 0x10000 && len_read == 0x10000) {
7562                 /* Windows servers only return a max of 0x10000,
7563                    doesn't matter if you set CAP_LARGE_READX in
7564                    the client sessionsetupX call or not. */
7565                 d_printf("Windows server - returned 0x10000 on a read of 0x%x\n",
7566                         (unsigned int)len_requested);
7567         } else if (len_read != len_expected) {
7568                 d_printf("read of 0x%x failed: got 0x%x, expected 0x%x\n",
7569                         (unsigned int)len_requested,
7570                         (unsigned int)len_read,
7571                         (unsigned int)len_expected);
7572                 return false;
7573         } else {
7574                 d_printf("Correct read reply.\n");
7575         }
7576
7577         return true;
7578 }
7579
7580 /* Test large readX variants. */
7581 static bool large_readx_tests(struct cli_state *cli,
7582                                 uint16_t fnum,
7583                                 uint8_t *buf)
7584 {
7585         /* A read of 0xFFFF0001 should *always* return 1 byte. */
7586         if (check_read_call(cli, fnum, buf, 0xFFFF0001) == false) {
7587                 return false;
7588         }
7589         /* A read of 0x10000 should return 0x10000 bytes. */
7590         if (check_read_call(cli, fnum, buf,    0x10000) == false) {
7591                 return false;
7592         }
7593         /* A read of 0x10000 should return 0x10001 bytes. */
7594         if (check_read_call(cli, fnum, buf,    0x10001) == false) {
7595                 return false;
7596         }
7597         /* A read of 0x1FFFF - (MIN_SMB_SIZE + VWV(12) should return
7598            the requested number of bytes. */
7599         if (check_read_call(cli, fnum, buf, 0x1FFFF - (MIN_SMB_SIZE + VWV(12))) == false) {
7600                 return false;
7601         }
7602         /* A read of 1MB should return 1MB bytes (on Samba). */
7603         if (check_read_call(cli, fnum, buf,   0x100000) == false) {
7604                 return false;
7605         }
7606
7607         if (check_read_call(cli, fnum, buf,    0x20001) == false) {
7608                 return false;
7609         }
7610         if (check_read_call(cli, fnum, buf, 0x22000001) == false) {
7611                 return false;
7612         }
7613         if (check_read_call(cli, fnum, buf, 0xFFFE0001) == false) {
7614                 return false;
7615         }
7616         return true;
7617 }
7618
7619 static bool run_large_readx(int dummy)
7620 {
7621         uint8_t *buf = NULL;
7622         struct cli_state *cli1 = NULL;
7623         struct cli_state *cli2 = NULL;
7624         bool correct = false;
7625         const char *fname = "\\large_readx.dat";
7626         NTSTATUS status;
7627         uint16_t fnum1 = UINT16_MAX;
7628         uint32_t normal_caps = 0;
7629         size_t file_size = 20*1024*1024;
7630         TALLOC_CTX *frame = talloc_stackframe();
7631         size_t i;
7632         struct {
7633                 const char *name;
7634                 enum smb_signing_setting signing_setting;
7635                 enum protocol_types protocol;
7636         } runs[] = {
7637                 {
7638                         .name = "NT1",
7639                         .signing_setting = SMB_SIGNING_IF_REQUIRED,
7640                         .protocol = PROTOCOL_NT1,
7641                 },{
7642                         .name = "NT1 - SIGNING_REQUIRED",
7643                         .signing_setting = SMB_SIGNING_REQUIRED,
7644                         .protocol = PROTOCOL_NT1,
7645                 },
7646         };
7647
7648         printf("starting large_readx test\n");
7649
7650         if (!torture_open_connection(&cli1, 0)) {
7651                 goto out;
7652         }
7653
7654         normal_caps = smb1cli_conn_capabilities(cli1->conn);
7655
7656         if (!(normal_caps & CAP_LARGE_READX)) {
7657                 d_printf("Server doesn't have CAP_LARGE_READX 0x%x\n",
7658                         (unsigned int)normal_caps);
7659                 goto out;
7660         }
7661
7662         /* Create a file of size 4MB. */
7663         status = cli_ntcreate(cli1, fname, 0, GENERIC_ALL_ACCESS,
7664                         FILE_ATTRIBUTE_NORMAL, 0, FILE_OVERWRITE_IF,
7665                         0, 0, &fnum1, NULL);
7666
7667         if (!NT_STATUS_IS_OK(status)) {
7668                 d_printf("open %s failed: %s\n", fname, nt_errstr(status));
7669                 goto out;
7670         }
7671
7672         /* Write file_size bytes. */
7673         buf = talloc_zero_array(frame, uint8_t, file_size);
7674         if (buf == NULL) {
7675                 goto out;
7676         }
7677
7678         status = cli_writeall(cli1,
7679                               fnum1,
7680                               0,
7681                               buf,
7682                               0,
7683                               file_size,
7684                               NULL);
7685         if (!NT_STATUS_IS_OK(status)) {
7686                 d_printf("cli_writeall failed: %s\n", nt_errstr(status));
7687                 goto out;
7688         }
7689
7690         status = cli_close(cli1, fnum1);
7691         if (!NT_STATUS_IS_OK(status)) {
7692                 d_printf("cli_close failed: %s\n", nt_errstr(status));
7693                 goto out;
7694         }
7695
7696         fnum1 = UINT16_MAX;
7697
7698         for (i=0; i < ARRAY_SIZE(runs); i++) {
7699                 enum smb_signing_setting saved_signing_setting = signing_state;
7700                 uint16_t fnum2 = -1;
7701
7702                 if (do_encrypt &&
7703                     (runs[i].signing_setting == SMB_SIGNING_REQUIRED))
7704                 {
7705                         d_printf("skip[%u] - %s\n", (unsigned)i, runs[i].name);
7706                         continue;
7707                 }
7708
7709                 d_printf("run[%u] - %s\n", (unsigned)i, runs[i].name);
7710
7711                 signing_state = runs[i].signing_setting;
7712                 cli2 = open_nbt_connection();
7713                 signing_state = saved_signing_setting;
7714                 if (cli2 == NULL) {
7715                         goto out;
7716                 }
7717
7718                 status = smbXcli_negprot(cli2->conn,
7719                                          cli2->timeout,
7720                                          runs[i].protocol,
7721                                          runs[i].protocol);
7722                 if (!NT_STATUS_IS_OK(status)) {
7723                         goto out;
7724                 }
7725
7726                 status = cli_session_setup(cli2,
7727                                         username,
7728                                         password,
7729                                         strlen(password)+1,
7730                                         password,
7731                                         strlen(password)+1,
7732                                         workgroup);
7733                 if (!NT_STATUS_IS_OK(status)) {
7734                         goto out;
7735                 }
7736
7737                 status = cli_tree_connect(cli2,
7738                                         share,
7739                                         "?????",
7740                                         password,
7741                                         strlen(password)+1);
7742                 if (!NT_STATUS_IS_OK(status)) {
7743                         goto out;
7744                 }
7745
7746                 cli_set_timeout(cli2, 120000); /* set a really long timeout (2 minutes) */
7747
7748                 normal_caps = smb1cli_conn_capabilities(cli2->conn);
7749
7750                 if (!(normal_caps & CAP_LARGE_READX)) {
7751                         d_printf("Server doesn't have CAP_LARGE_READX 0x%x\n",
7752                                 (unsigned int)normal_caps);
7753                         goto out;
7754                 }
7755
7756                 if (do_encrypt) {
7757                         if (force_cli_encryption(cli2, share) == false) {
7758                                 goto out;
7759                         }
7760                 } else if (SERVER_HAS_UNIX_CIFS(cli2)) {
7761                         uint16_t major, minor;
7762                         uint32_t caplow, caphigh;
7763
7764                         status = cli_unix_extensions_version(cli2,
7765                                                              &major, &minor,
7766                                                              &caplow, &caphigh);
7767                         if (!NT_STATUS_IS_OK(status)) {
7768                                 goto out;
7769                         }
7770                 }
7771
7772                 status = cli_ntcreate(cli2, fname, 0, FILE_READ_DATA,
7773                                 FILE_ATTRIBUTE_NORMAL, 0, FILE_OPEN,
7774                                 0, 0, &fnum2, NULL);
7775                 if (!NT_STATUS_IS_OK(status)) {
7776                         d_printf("Second open %s failed: %s\n", fname, nt_errstr(status));
7777                         goto out;
7778                 }
7779
7780                 /* All reads must return less than file_size bytes. */
7781                 if (!large_readx_tests(cli2, fnum2, buf)) {
7782                         goto out;
7783                 }
7784
7785                 status = cli_close(cli2, fnum2);
7786                 if (!NT_STATUS_IS_OK(status)) {
7787                         d_printf("cli_close failed: %s\n", nt_errstr(status));
7788                         goto out;
7789                 }
7790                 fnum2 = -1;
7791
7792                 if (!torture_close_connection(cli2)) {
7793                         goto out;
7794                 }
7795                 cli2 = NULL;
7796         }
7797
7798         correct = true;
7799         printf("Success on large_readx test\n");
7800
7801   out:
7802
7803         if (cli2) {
7804                 if (!torture_close_connection(cli2)) {
7805                         correct = false;
7806                 }
7807         }
7808
7809         if (cli1) {
7810                 if (fnum1 != UINT16_MAX) {
7811                         status = cli_close(cli1, fnum1);
7812                         if (!NT_STATUS_IS_OK(status)) {
7813                                 d_printf("cli_close failed: %s\n", nt_errstr(status));
7814                         }
7815                         fnum1 = UINT16_MAX;
7816                 }
7817
7818                 status = cli_unlink(cli1, fname,
7819                                     FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
7820                 if (!NT_STATUS_IS_OK(status)) {
7821                         printf("unlink failed (%s)\n", nt_errstr(status));
7822                 }
7823
7824                 if (!torture_close_connection(cli1)) {
7825                         correct = false;
7826                 }
7827         }
7828
7829         TALLOC_FREE(frame);
7830
7831         printf("finished large_readx test\n");
7832         return correct;
7833 }
7834
7835 static bool run_cli_echo(int dummy)
7836 {
7837         struct cli_state *cli;
7838         NTSTATUS status;
7839
7840         printf("starting cli_echo test\n");
7841         if (!torture_open_connection(&cli, 0)) {
7842                 return false;
7843         }
7844         smbXcli_conn_set_sockopt(cli->conn, sockops);
7845
7846         status = cli_echo(cli, 5, data_blob_const("hello", 5));
7847
7848         d_printf("cli_echo returned %s\n", nt_errstr(status));
7849
7850         torture_close_connection(cli);
7851         return NT_STATUS_IS_OK(status);
7852 }
7853
7854 static bool run_uid_regression_test(int dummy)
7855 {
7856         static struct cli_state *cli;
7857         int16_t old_vuid;
7858         int16_t old_cnum;
7859         bool correct = True;
7860         NTSTATUS status;
7861
7862         printf("starting uid regression test\n");
7863
7864         if (!torture_open_connection(&cli, 0)) {
7865                 return False;
7866         }
7867
7868         smbXcli_conn_set_sockopt(cli->conn, sockops);
7869
7870         /* Ok - now save then logoff our current user. */
7871         old_vuid = cli_state_get_uid(cli);
7872
7873         status = cli_ulogoff(cli);
7874         if (!NT_STATUS_IS_OK(status)) {
7875                 d_printf("(%s) cli_ulogoff failed: %s\n",
7876                          __location__, nt_errstr(status));
7877                 correct = false;
7878                 goto out;
7879         }
7880
7881         cli_state_set_uid(cli, old_vuid);
7882
7883         /* Try an operation. */
7884         status = cli_mkdir(cli, "\\uid_reg_test");
7885         if (NT_STATUS_IS_OK(status)) {
7886                 d_printf("(%s) cli_mkdir succeeded\n",
7887                          __location__);
7888                 correct = false;
7889                 goto out;
7890         } else {
7891                 /* Should be bad uid. */
7892                 if (!check_error(__LINE__, status, ERRSRV, ERRbaduid,
7893                                  NT_STATUS_USER_SESSION_DELETED)) {
7894                         correct = false;
7895                         goto out;
7896                 }
7897         }
7898
7899         old_cnum = cli_state_get_tid(cli);
7900
7901         /* Now try a SMBtdis with the invald vuid set to zero. */
7902         cli_state_set_uid(cli, 0);
7903
7904         /* This should succeed. */
7905         status = cli_tdis(cli);
7906
7907         if (NT_STATUS_IS_OK(status)) {
7908                 d_printf("First tdis with invalid vuid should succeed.\n");
7909         } else {
7910                 d_printf("First tdis failed (%s)\n", nt_errstr(status));
7911                 correct = false;
7912                 goto out;
7913         }
7914
7915         cli_state_set_uid(cli, old_vuid);
7916         cli_state_set_tid(cli, old_cnum);
7917
7918         /* This should fail. */
7919         status = cli_tdis(cli);
7920         if (NT_STATUS_IS_OK(status)) {
7921                 d_printf("Second tdis with invalid vuid should fail - succeeded instead !.\n");
7922                 correct = false;
7923                 goto out;
7924         } else {
7925                 /* Should be bad tid. */
7926                 if (!check_error(__LINE__, status, ERRSRV, ERRinvnid,
7927                                 NT_STATUS_NETWORK_NAME_DELETED)) {
7928                         correct = false;
7929                         goto out;
7930                 }
7931         }
7932
7933         cli_rmdir(cli, "\\uid_reg_test");
7934
7935   out:
7936
7937         cli_shutdown(cli);
7938         return correct;
7939 }
7940
7941
7942 static const char *illegal_chars = "*\\/?<>|\":";
7943 static char force_shortname_chars[] = " +,.[];=\177";
7944
7945 static NTSTATUS shortname_del_fn(const char *mnt, struct file_info *finfo,
7946                              const char *mask, void *state)
7947 {
7948         struct cli_state *pcli = (struct cli_state *)state;
7949         fstring fname;
7950         NTSTATUS status = NT_STATUS_OK;
7951
7952         slprintf(fname, sizeof(fname), "\\shortname\\%s", finfo->name);
7953
7954         if (strcmp(finfo->name, ".") == 0 || strcmp(finfo->name, "..") == 0)
7955                 return NT_STATUS_OK;
7956
7957         if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
7958                 status = cli_rmdir(pcli, fname);
7959                 if (!NT_STATUS_IS_OK(status)) {
7960                         printf("del_fn: failed to rmdir %s\n,", fname );
7961                 }
7962         } else {
7963                 status = cli_unlink(pcli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
7964                 if (!NT_STATUS_IS_OK(status)) {
7965                         printf("del_fn: failed to unlink %s\n,", fname );
7966                 }
7967         }
7968         return status;
7969 }
7970
7971 struct sn_state {
7972         int matched;
7973         int i;
7974         bool val;
7975 };
7976
7977 static NTSTATUS shortname_list_fn(const char *mnt, struct file_info *finfo,
7978                               const char *name, void *state)
7979 {
7980         struct sn_state *s = (struct sn_state  *)state;
7981         int i = s->i;
7982
7983 #if 0
7984         printf("shortname list: i = %d, name = |%s|, shortname = |%s|\n",
7985                 i, finfo->name, finfo->short_name);
7986 #endif
7987
7988         if (strchr(force_shortname_chars, i)) {
7989                 if (!finfo->short_name) {
7990                         /* Shortname not created when it should be. */
7991                         d_printf("(%s) ERROR: Shortname was not created for file %s containing %d\n",
7992                                 __location__, finfo->name, i);
7993                         s->val = true;
7994                 }
7995         } else if (finfo->short_name){
7996                 /* Shortname created when it should not be. */
7997                 d_printf("(%s) ERROR: Shortname %s was created for file %s\n",
7998                         __location__, finfo->short_name, finfo->name);
7999                 s->val = true;
8000         }
8001         s->matched += 1;
8002         return NT_STATUS_OK;
8003 }
8004
8005 static bool run_shortname_test(int dummy)
8006 {
8007         static struct cli_state *cli;
8008         bool correct = True;
8009         int i;
8010         struct sn_state s;
8011         char fname[40];
8012         NTSTATUS status;
8013
8014         printf("starting shortname test\n");
8015
8016         if (!torture_open_connection(&cli, 0)) {
8017                 return False;
8018         }
8019
8020         smbXcli_conn_set_sockopt(cli->conn, sockops);
8021
8022         cli_list(cli, "\\shortname\\*", 0, shortname_del_fn, cli);
8023         cli_list(cli, "\\shortname\\*", FILE_ATTRIBUTE_DIRECTORY, shortname_del_fn, cli);
8024         cli_rmdir(cli, "\\shortname");
8025
8026         status = cli_mkdir(cli, "\\shortname");
8027         if (!NT_STATUS_IS_OK(status)) {
8028                 d_printf("(%s) cli_mkdir of \\shortname failed: %s\n",
8029                         __location__, nt_errstr(status));
8030                 correct = false;
8031                 goto out;
8032         }
8033
8034         if (strlcpy(fname, "\\shortname\\", sizeof(fname)) >= sizeof(fname)) {
8035                 correct = false;
8036                 goto out;
8037         }
8038         if (strlcat(fname, "test .txt", sizeof(fname)) >= sizeof(fname)) {
8039                 correct = false;
8040                 goto out;
8041         }
8042
8043         s.val = false;
8044
8045         for (i = 32; i < 128; i++) {
8046                 uint16_t fnum = (uint16_t)-1;
8047
8048                 s.i = i;
8049
8050                 if (strchr(illegal_chars, i)) {
8051                         continue;
8052                 }
8053                 fname[15] = i;
8054
8055                 status = cli_ntcreate(cli, fname, 0, GENERIC_ALL_ACCESS, FILE_ATTRIBUTE_NORMAL,
8056                                    FILE_SHARE_READ|FILE_SHARE_WRITE,
8057                                    FILE_OVERWRITE_IF, 0, 0, &fnum, NULL);
8058                 if (!NT_STATUS_IS_OK(status)) {
8059                         d_printf("(%s) cli_nt_create of %s failed: %s\n",
8060                                 __location__, fname, nt_errstr(status));
8061                         correct = false;
8062                         goto out;
8063                 }
8064                 cli_close(cli, fnum);
8065
8066                 s.matched = 0;
8067                 status = cli_list(cli, "\\shortname\\test*.*", 0,
8068                                   shortname_list_fn, &s);
8069                 if (s.matched != 1) {
8070                         d_printf("(%s) failed to list %s: %s\n",
8071                                 __location__, fname, nt_errstr(status));
8072                         correct = false;
8073                         goto out;
8074                 }
8075
8076                 status = cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
8077                 if (!NT_STATUS_IS_OK(status)) {
8078                         d_printf("(%s) failed to delete %s: %s\n",
8079                                 __location__, fname, nt_errstr(status));
8080                         correct = false;
8081                         goto out;
8082                 }
8083
8084                 if (s.val) {
8085                         correct = false;
8086                         goto out;
8087                 }
8088         }
8089
8090   out:
8091
8092         cli_list(cli, "\\shortname\\*", 0, shortname_del_fn, cli);
8093         cli_list(cli, "\\shortname\\*", FILE_ATTRIBUTE_DIRECTORY, shortname_del_fn, cli);
8094         cli_rmdir(cli, "\\shortname");
8095         torture_close_connection(cli);
8096         return correct;
8097 }
8098
8099 static void pagedsearch_cb(struct tevent_req *req)
8100 {
8101         TLDAPRC rc;
8102         struct tldap_message *msg;
8103         char *dn;
8104
8105         rc = tldap_search_paged_recv(req, talloc_tos(), &msg);
8106         if (!TLDAP_RC_IS_SUCCESS(rc)) {
8107                 d_printf("tldap_search_paged_recv failed: %s\n",
8108                          tldap_rc2string(rc));
8109                 return;
8110         }
8111         if (tldap_msg_type(msg) != TLDAP_RES_SEARCH_ENTRY) {
8112                 TALLOC_FREE(msg);
8113                 return;
8114         }
8115         if (!tldap_entry_dn(msg, &dn)) {
8116                 d_printf("tldap_entry_dn failed\n");
8117                 return;
8118         }
8119         d_printf("%s\n", dn);
8120         TALLOC_FREE(msg);
8121 }
8122
8123 static bool run_tldap(int dummy)
8124 {
8125         struct tldap_context *ld;
8126         int fd;
8127         TLDAPRC rc;
8128         NTSTATUS status;
8129         struct sockaddr_storage addr;
8130         struct tevent_context *ev;
8131         struct tevent_req *req;
8132         char *basedn;
8133         const char *filter;
8134
8135         if (!resolve_name(host, &addr, 0, false)) {
8136                 d_printf("could not find host %s\n", host);
8137                 return false;
8138         }
8139         status = open_socket_out(&addr, 389, 9999, &fd);
8140         if (!NT_STATUS_IS_OK(status)) {
8141                 d_printf("open_socket_out failed: %s\n", nt_errstr(status));
8142                 return false;
8143         }
8144
8145         ld = tldap_context_create(talloc_tos(), fd);
8146         if (ld == NULL) {
8147                 close(fd);
8148                 d_printf("tldap_context_create failed\n");
8149                 return false;
8150         }
8151
8152         rc = tldap_fetch_rootdse(ld);
8153         if (!TLDAP_RC_IS_SUCCESS(rc)) {
8154                 d_printf("tldap_fetch_rootdse failed: %s\n",
8155                          tldap_errstr(talloc_tos(), ld, rc));
8156                 return false;
8157         }
8158
8159         basedn = tldap_talloc_single_attribute(
8160                 tldap_rootdse(ld), "defaultNamingContext", talloc_tos());
8161         if (basedn == NULL) {
8162                 d_printf("no defaultNamingContext\n");
8163                 return false;
8164         }
8165         d_printf("defaultNamingContext: %s\n", basedn);
8166
8167         ev = samba_tevent_context_init(talloc_tos());
8168         if (ev == NULL) {
8169                 d_printf("tevent_context_init failed\n");
8170                 return false;
8171         }
8172
8173         req = tldap_search_paged_send(talloc_tos(), ev, ld, basedn,
8174                                       TLDAP_SCOPE_SUB, "(objectclass=*)",
8175                                       NULL, 0, 0,
8176                                       NULL, 0, NULL, 0, 0, 0, 0, 5);
8177         if (req == NULL) {
8178                 d_printf("tldap_search_paged_send failed\n");
8179                 return false;
8180         }
8181         tevent_req_set_callback(req, pagedsearch_cb, NULL);
8182
8183         tevent_req_poll(req, ev);
8184
8185         TALLOC_FREE(req);
8186
8187         /* test search filters against rootDSE */
8188         filter = "(&(|(name=samba)(nextRid<=10000000)(usnChanged>=10)(samba~=ambas)(!(name=s*m*a)))"
8189                    "(|(name:=samba)(name:dn:2.5.13.5:=samba)(:dn:2.5.13.5:=samba)(!(name=*samba))))";
8190
8191         rc = tldap_search(ld, "", TLDAP_SCOPE_BASE, filter,
8192                           NULL, 0, 0, NULL, 0, NULL, 0, 0, 0, 0,
8193                           talloc_tos(), NULL);
8194         if (!TLDAP_RC_IS_SUCCESS(rc)) {
8195                 d_printf("tldap_search with complex filter failed: %s\n",
8196                          tldap_errstr(talloc_tos(), ld, rc));
8197                 return false;
8198         }
8199
8200         TALLOC_FREE(ld);
8201         return true;
8202 }
8203
8204 /* Torture test to ensure no regression of :
8205 https://bugzilla.samba.org/show_bug.cgi?id=7084
8206 */
8207
8208 static bool run_dir_createtime(int dummy)
8209 {
8210         struct cli_state *cli;
8211         const char *dname = "\\testdir";
8212         const char *fname = "\\testdir\\testfile";
8213         NTSTATUS status;
8214         struct timespec create_time;
8215         struct timespec create_time1;
8216         uint16_t fnum;
8217         bool ret = false;
8218
8219         if (!torture_open_connection(&cli, 0)) {
8220                 return false;
8221         }
8222
8223         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
8224         cli_rmdir(cli, dname);
8225
8226         status = cli_mkdir(cli, dname);
8227         if (!NT_STATUS_IS_OK(status)) {
8228                 printf("mkdir failed: %s\n", nt_errstr(status));
8229                 goto out;
8230         }
8231
8232         status = cli_qpathinfo2(cli, dname, &create_time, NULL, NULL, NULL,
8233                                 NULL, NULL, NULL);
8234         if (!NT_STATUS_IS_OK(status)) {
8235                 printf("cli_qpathinfo2 returned %s\n",
8236                        nt_errstr(status));
8237                 goto out;
8238         }
8239
8240         /* Sleep 3 seconds, then create a file. */
8241         sleep(3);
8242
8243         status = cli_openx(cli, fname, O_RDWR | O_CREAT | O_EXCL,
8244                          DENY_NONE, &fnum);
8245         if (!NT_STATUS_IS_OK(status)) {
8246                 printf("cli_openx failed: %s\n", nt_errstr(status));
8247                 goto out;
8248         }
8249
8250         status = cli_qpathinfo2(cli, dname, &create_time1, NULL, NULL, NULL,
8251                                 NULL, NULL, NULL);
8252         if (!NT_STATUS_IS_OK(status)) {
8253                 printf("cli_qpathinfo2 (2) returned %s\n",
8254                        nt_errstr(status));
8255                 goto out;
8256         }
8257
8258         if (timespec_compare(&create_time1, &create_time)) {
8259                 printf("run_dir_createtime: create time was updated (error)\n");
8260         } else {
8261                 printf("run_dir_createtime: create time was not updated (correct)\n");
8262                 ret = true;
8263         }
8264
8265   out:
8266
8267         cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
8268         cli_rmdir(cli, dname);
8269         if (!torture_close_connection(cli)) {
8270                 ret = false;
8271         }
8272         return ret;
8273 }
8274
8275
8276 static bool run_streamerror(int dummy)
8277 {
8278         struct cli_state *cli;
8279         const char *dname = "\\testdir";
8280         const char *streamname =
8281                 "testdir:{4c8cc155-6c1e-11d1-8e41-00c04fb9386d}:$DATA";
8282         NTSTATUS status;
8283         time_t change_time, access_time, write_time;
8284         off_t size;
8285         uint16_t mode, fnum;
8286         bool ret = true;
8287
8288         if (!torture_open_connection(&cli, 0)) {
8289                 return false;
8290         }
8291
8292         cli_unlink(cli, "\\testdir\\*", FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
8293         cli_rmdir(cli, dname);
8294
8295         status = cli_mkdir(cli, dname);
8296         if (!NT_STATUS_IS_OK(status)) {
8297                 printf("mkdir failed: %s\n", nt_errstr(status));
8298                 return false;
8299         }
8300
8301         status = cli_qpathinfo1(cli, streamname, &change_time, &access_time,
8302                                 &write_time, &size, &mode);
8303         if (!NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
8304                 printf("pathinfo returned %s, expected "
8305                        "NT_STATUS_OBJECT_NAME_NOT_FOUND\n",
8306                        nt_errstr(status));
8307                 ret = false;
8308         }
8309
8310         status = cli_ntcreate(cli, streamname, 0x16,
8311                               FILE_READ_DATA|FILE_READ_EA|
8312                               FILE_READ_ATTRIBUTES|READ_CONTROL_ACCESS,
8313                               FILE_ATTRIBUTE_NORMAL, FILE_SHARE_READ,
8314                               FILE_OPEN, 0, 0, &fnum, NULL);
8315
8316         if (!NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
8317                 printf("ntcreate returned %s, expected "
8318                        "NT_STATUS_OBJECT_NAME_NOT_FOUND\n",
8319                        nt_errstr(status));
8320                 ret = false;
8321         }
8322
8323
8324         cli_rmdir(cli, dname);
8325         return ret;
8326 }
8327
8328 static bool run_local_substitute(int dummy)
8329 {
8330         bool ok = true;
8331
8332         ok &= subst_test("%U", "bla", "", -1, -1, "bla");
8333         ok &= subst_test("%u%U", "bla", "", -1, -1, "blabla");
8334         ok &= subst_test("%g", "", "", -1, -1, "NO_GROUP");
8335         ok &= subst_test("%G", "", "", -1, -1, "NO_GROUP");
8336         ok &= subst_test("%g", "", "", -1, 0, gidtoname(0));
8337         ok &= subst_test("%G", "", "", -1, 0, gidtoname(0));
8338         ok &= subst_test("%D%u", "u", "dom", -1, 0, "domu");
8339         ok &= subst_test("%i %I", "", "", -1, -1, "0.0.0.0 0.0.0.0");
8340
8341         /* Different captialization rules in sub_basic... */
8342
8343         ok &=  (strcmp(talloc_sub_basic(talloc_tos(), "BLA", "dom", "%U%D"),
8344                        "blaDOM") == 0);
8345
8346         return ok;
8347 }
8348
8349 static bool run_local_base64(int dummy)
8350 {
8351         int i;
8352         bool ret = true;
8353
8354         for (i=1; i<2000; i++) {
8355                 DATA_BLOB blob1, blob2;
8356                 char *b64;
8357
8358                 blob1.data = talloc_array(talloc_tos(), uint8_t, i);
8359                 blob1.length = i;
8360                 generate_random_buffer(blob1.data, blob1.length);
8361
8362                 b64 = base64_encode_data_blob(talloc_tos(), blob1);
8363                 if (b64 == NULL) {
8364                         d_fprintf(stderr, "base64_encode_data_blob failed "
8365                                   "for %d bytes\n", i);
8366                         ret = false;
8367                 }
8368                 blob2 = base64_decode_data_blob(b64);
8369                 TALLOC_FREE(b64);
8370
8371                 if (data_blob_cmp(&blob1, &blob2)) {
8372                         d_fprintf(stderr, "data_blob_cmp failed for %d "
8373                                   "bytes\n", i);
8374                         ret = false;
8375                 }
8376                 TALLOC_FREE(blob1.data);
8377                 data_blob_free(&blob2);
8378         }
8379         return ret;
8380 }
8381
8382 static void parse_fn(time_t timeout, DATA_BLOB blob, void *private_data)
8383 {
8384         return;
8385 }
8386
8387 static bool run_local_gencache(int dummy)
8388 {
8389         char *val;
8390         time_t tm;
8391         DATA_BLOB blob;
8392         char v;
8393         struct memcache *mem;
8394         int i;
8395
8396         mem = memcache_init(NULL, 0);
8397         if (mem == NULL) {
8398                 d_printf("%s: memcache_init failed\n", __location__);
8399                 return false;
8400         }
8401         memcache_set_global(mem);
8402
8403         if (!gencache_set("foo", "bar", time(NULL) + 1000)) {
8404                 d_printf("%s: gencache_set() failed\n", __location__);
8405                 return False;
8406         }
8407
8408         if (!gencache_get("foo", NULL, NULL, NULL)) {
8409                 d_printf("%s: gencache_get() failed\n", __location__);
8410                 return False;
8411         }
8412
8413         for (i=0; i<1000000; i++) {
8414                 gencache_parse("foo", parse_fn, NULL);
8415         }
8416
8417         if (!gencache_get("foo", talloc_tos(), &val, &tm)) {
8418                 d_printf("%s: gencache_get() failed\n", __location__);
8419                 return False;
8420         }
8421         TALLOC_FREE(val);
8422
8423         if (!gencache_get("foo", talloc_tos(), &val, &tm)) {
8424                 d_printf("%s: gencache_get() failed\n", __location__);
8425                 return False;
8426         }
8427
8428         if (strcmp(val, "bar") != 0) {
8429                 d_printf("%s: gencache_get() returned %s, expected %s\n",
8430                          __location__, val, "bar");
8431                 TALLOC_FREE(val);
8432                 return False;
8433         }
8434
8435         TALLOC_FREE(val);
8436
8437         if (!gencache_del("foo")) {
8438                 d_printf("%s: gencache_del() failed\n", __location__);
8439                 return False;
8440         }
8441         if (gencache_del("foo")) {
8442                 d_printf("%s: second gencache_del() succeeded\n",
8443                          __location__);
8444                 return False;
8445         }
8446
8447         if (gencache_get("foo", talloc_tos(), &val, &tm)) {
8448                 d_printf("%s: gencache_get() on deleted entry "
8449                          "succeeded\n", __location__);
8450                 return False;
8451         }
8452
8453         blob = data_blob_string_const_null("bar");
8454         tm = time(NULL) + 60;
8455
8456         if (!gencache_set_data_blob("foo", &blob, tm)) {
8457                 d_printf("%s: gencache_set_data_blob() failed\n", __location__);
8458                 return False;
8459         }
8460
8461         if (!gencache_get_data_blob("foo", talloc_tos(), &blob, NULL, NULL)) {
8462                 d_printf("%s: gencache_get_data_blob() failed\n", __location__);
8463                 return False;
8464         }
8465
8466         if (strcmp((const char *)blob.data, "bar") != 0) {
8467                 d_printf("%s: gencache_get_data_blob() returned %s, expected %s\n",
8468                          __location__, (const char *)blob.data, "bar");
8469                 data_blob_free(&blob);
8470                 return False;
8471         }
8472
8473         data_blob_free(&blob);
8474
8475         if (!gencache_del("foo")) {
8476                 d_printf("%s: gencache_del() failed\n", __location__);
8477                 return False;
8478         }
8479         if (gencache_del("foo")) {
8480                 d_printf("%s: second gencache_del() succeeded\n",
8481                          __location__);
8482                 return False;
8483         }
8484
8485         if (gencache_get_data_blob("foo", talloc_tos(), &blob, NULL, NULL)) {
8486                 d_printf("%s: gencache_get_data_blob() on deleted entry "
8487                          "succeeded\n", __location__);
8488                 return False;
8489         }
8490
8491         v = 1;
8492         blob.data = (uint8_t *)&v;
8493         blob.length = sizeof(v);
8494
8495         if (!gencache_set_data_blob("blob", &blob, tm)) {
8496                 d_printf("%s: gencache_set_data_blob() failed\n",
8497                          __location__);
8498                 return false;
8499         }
8500         if (gencache_get("blob", talloc_tos(), &val, &tm)) {
8501                 d_printf("%s: gencache_get succeeded\n", __location__);
8502                 return false;
8503         }
8504
8505         return True;
8506 }
8507
8508 static bool rbt_testval(struct db_context *db, const char *key,
8509                         const char *value)
8510 {
8511         struct db_record *rec;
8512         TDB_DATA data = string_tdb_data(value);
8513         bool ret = false;
8514         NTSTATUS status;
8515         TDB_DATA dbvalue;
8516
8517         rec = dbwrap_fetch_locked(db, db, string_tdb_data(key));
8518         if (rec == NULL) {
8519                 d_fprintf(stderr, "fetch_locked failed\n");
8520                 goto done;
8521         }
8522         status = dbwrap_record_store(rec, data, 0);
8523         if (!NT_STATUS_IS_OK(status)) {
8524                 d_fprintf(stderr, "store failed: %s\n", nt_errstr(status));
8525                 goto done;
8526         }
8527         TALLOC_FREE(rec);
8528
8529         rec = dbwrap_fetch_locked(db, db, string_tdb_data(key));
8530         if (rec == NULL) {
8531                 d_fprintf(stderr, "second fetch_locked failed\n");
8532                 goto done;
8533         }
8534
8535         dbvalue = dbwrap_record_get_value(rec);
8536         if ((dbvalue.dsize != data.dsize)
8537             || (memcmp(dbvalue.dptr, data.dptr, data.dsize) != 0)) {
8538                 d_fprintf(stderr, "Got wrong data back\n");
8539                 goto done;
8540         }
8541
8542         ret = true;
8543  done:
8544         TALLOC_FREE(rec);
8545         return ret;
8546 }
8547
8548 static int local_rbtree_traverse_read(struct db_record *rec, void *private_data)
8549 {
8550         int *count2 = (int *)private_data;
8551         (*count2)++;
8552         return 0;
8553 }
8554
8555 static int local_rbtree_traverse_delete(struct db_record *rec, void *private_data)
8556 {
8557         int *count2 = (int *)private_data;
8558         (*count2)++;
8559         dbwrap_record_delete(rec);
8560         return 0;
8561 }
8562
8563 static bool run_local_rbtree(int dummy)
8564 {
8565         struct db_context *db;
8566         bool ret = false;
8567         int i;
8568         NTSTATUS status;
8569         int count = 0;
8570         int count2 = 0;
8571
8572         db = db_open_rbt(NULL);
8573
8574         if (db == NULL) {
8575                 d_fprintf(stderr, "db_open_rbt failed\n");
8576                 return false;
8577         }
8578
8579         for (i=0; i<1000; i++) {
8580                 char *key, *value;
8581
8582                 if (asprintf(&key, "key%ld", random()) == -1) {
8583                         goto done;
8584                 }
8585                 if (asprintf(&value, "value%ld", random()) == -1) {
8586                         SAFE_FREE(key);
8587                         goto done;
8588                 }
8589
8590                 if (!rbt_testval(db, key, value)) {
8591                         SAFE_FREE(key);
8592                         SAFE_FREE(value);
8593                         goto done;
8594                 }
8595
8596                 SAFE_FREE(value);
8597                 if (asprintf(&value, "value%ld", random()) == -1) {
8598                         SAFE_FREE(key);
8599                         goto done;
8600                 }
8601
8602                 if (!rbt_testval(db, key, value)) {
8603                         SAFE_FREE(key);
8604                         SAFE_FREE(value);
8605                         goto done;
8606                 }
8607
8608                 SAFE_FREE(key);
8609                 SAFE_FREE(value);
8610         }
8611
8612         ret = true;
8613         count = 0; count2 = 0;
8614         status = dbwrap_traverse_read(db, local_rbtree_traverse_read,
8615                                       &count2, &count);
8616         printf("%s: read1: %d %d, %s\n", __func__, count, count2, nt_errstr(status));
8617         if ((count != count2) || (count != 1000)) {
8618                 ret = false;
8619         }
8620         count = 0; count2 = 0;
8621         status = dbwrap_traverse(db, local_rbtree_traverse_delete,
8622                                  &count2, &count);
8623         printf("%s: delete: %d %d, %s\n", __func__, count, count2, nt_errstr(status));
8624         if ((count != count2) || (count != 1000)) {
8625                 ret = false;
8626         }
8627         count = 0; count2 = 0;
8628         status = dbwrap_traverse_read(db, local_rbtree_traverse_read,
8629                                       &count2, &count);
8630         printf("%s: read2: %d %d, %s\n", __func__, count, count2, nt_errstr(status));
8631         if ((count != count2) || (count != 0)) {
8632                 ret = false;
8633         }
8634
8635  done:
8636         TALLOC_FREE(db);
8637         return ret;
8638 }
8639
8640
8641 /*
8642   local test for character set functions
8643
8644   This is a very simple test for the functionality in convert_string_error()
8645  */
8646 static bool run_local_convert_string(int dummy)
8647 {
8648         TALLOC_CTX *tmp_ctx = talloc_new(NULL);
8649         const char *test_strings[2] = { "March", "M\303\244rz" };
8650         char dst[7];
8651         int i;
8652
8653         for (i=0; i<2; i++) {
8654                 const char *str = test_strings[i];
8655                 int len = strlen(str);
8656                 size_t converted_size;
8657                 bool ret;
8658
8659                 memset(dst, 'X', sizeof(dst));
8660
8661                 /* first try with real source length */
8662                 ret = convert_string_error(CH_UNIX, CH_UTF8,
8663                                            str, len,
8664                                            dst, sizeof(dst),
8665                                            &converted_size);
8666                 if (ret != true) {
8667                         d_fprintf(stderr, "Failed to convert '%s' to CH_DISPLAY\n", str);
8668                         goto failed;
8669                 }
8670
8671                 if (converted_size != len) {
8672                         d_fprintf(stderr, "Converted size of '%s' should be %d - got %d\n",
8673                                   str, len, (int)converted_size);
8674                         goto failed;
8675                 }
8676
8677                 if (strncmp(str, dst, converted_size) != 0) {
8678                         d_fprintf(stderr, "Expected '%s' to match '%s'\n", str, dst);
8679                         goto failed;
8680                 }
8681
8682                 if (strlen(str) != converted_size) {
8683                         d_fprintf(stderr, "Expected '%s' length %d - got %d\n", str,
8684                                   (int)strlen(str), (int)converted_size);
8685                         goto failed;
8686                 }
8687
8688                 if (dst[converted_size] != 'X') {
8689                         d_fprintf(stderr, "Expected no termination of '%s'\n", dst);
8690                         goto failed;
8691                 }
8692
8693                 /* now with srclen==-1, this causes the nul to be
8694                  * converted too */
8695                 ret = convert_string_error(CH_UNIX, CH_UTF8,
8696                                            str, -1,
8697                                            dst, sizeof(dst),
8698                                            &converted_size);
8699                 if (ret != true) {
8700                         d_fprintf(stderr, "Failed to convert '%s' to CH_DISPLAY\n", str);
8701                         goto failed;
8702                 }
8703
8704                 if (converted_size != len+1) {
8705                         d_fprintf(stderr, "Converted size of '%s' should be %d - got %d\n",
8706                                   str, len, (int)converted_size);
8707                         goto failed;
8708                 }
8709
8710                 if (strncmp(str, dst, converted_size) != 0) {
8711                         d_fprintf(stderr, "Expected '%s' to match '%s'\n", str, dst);
8712                         goto failed;
8713                 }
8714
8715                 if (len+1 != converted_size) {
8716                         d_fprintf(stderr, "Expected '%s' length %d - got %d\n", str,
8717                                   len+1, (int)converted_size);
8718                         goto failed;
8719                 }
8720
8721                 if (dst[converted_size] != 'X') {
8722                         d_fprintf(stderr, "Expected no termination of '%s'\n", dst);
8723                         goto failed;
8724                 }
8725
8726         }
8727
8728
8729         TALLOC_FREE(tmp_ctx);
8730         return true;
8731 failed:
8732         TALLOC_FREE(tmp_ctx);
8733         return false;
8734 }
8735
8736
8737 struct talloc_dict_test {
8738         int content;
8739 };
8740
8741 static int talloc_dict_traverse_fn(DATA_BLOB key, void *data, void *priv)
8742 {
8743         int *count = (int *)priv;
8744         *count += 1;
8745         return 0;
8746 }
8747
8748 static bool run_local_talloc_dict(int dummy)
8749 {
8750         struct talloc_dict *dict;
8751         struct talloc_dict_test *t;
8752         int key, count, res;
8753         bool ok;
8754
8755         dict = talloc_dict_init(talloc_tos());
8756         if (dict == NULL) {
8757                 return false;
8758         }
8759
8760         t = talloc(talloc_tos(), struct talloc_dict_test);
8761         if (t == NULL) {
8762                 return false;
8763         }
8764
8765         key = 1;
8766         t->content = 1;
8767         ok = talloc_dict_set(dict, data_blob_const(&key, sizeof(key)), &t);
8768         if (!ok) {
8769                 return false;
8770         }
8771
8772         count = 0;
8773         res = talloc_dict_traverse(dict, talloc_dict_traverse_fn, &count);
8774         if (res == -1) {
8775                 return false;
8776         }
8777
8778         if (count != 1) {
8779                 return false;
8780         }
8781
8782         if (count != res) {
8783                 return false;
8784         }
8785
8786         TALLOC_FREE(dict);
8787
8788         return true;
8789 }
8790
8791 static bool run_local_string_to_sid(int dummy) {
8792         struct dom_sid sid;
8793
8794         if (string_to_sid(&sid, "S--1-5-32-545")) {
8795                 printf("allowing S--1-5-32-545\n");
8796                 return false;
8797         }
8798         if (string_to_sid(&sid, "S-1-5-32-+545")) {
8799                 printf("allowing S-1-5-32-+545\n");
8800                 return false;
8801         }
8802         if (string_to_sid(&sid, "S-1-2-3-4-5-6-7-8-9-0-1-2-3-4-5-6-7-8-9-0")) {
8803                 printf("allowing S-1-2-3-4-5-6-7-8-9-0-1-2-3-4-5-6-7-8-9-0\n");
8804                 return false;
8805         }
8806         if (string_to_sid(&sid, "S-1-5-32-545-abc")) {
8807                 printf("allowing S-1-5-32-545-abc\n");
8808                 return false;
8809         }
8810         if (string_to_sid(&sid, "S-300-5-32-545")) {
8811                 printf("allowing S-300-5-32-545\n");
8812                 return false;
8813         }
8814         if (string_to_sid(&sid, "S-1-0xfffffffffffffe-32-545")) {
8815                 printf("allowing S-1-0xfffffffffffffe-32-545\n");
8816                 return false;
8817         }
8818         if (string_to_sid(&sid, "S-1-0xffffffffffff-5294967297-545")) {
8819                 printf("allowing S-1-0xffffffffffff-5294967297-545\n");
8820                 return false;
8821         }
8822         if (!string_to_sid(&sid, "S-1-0xfffffffffffe-32-545")) {
8823                 printf("could not parse S-1-0xfffffffffffe-32-545\n");
8824                 return false;
8825         }
8826         if (!string_to_sid(&sid, "S-1-5-32-545")) {
8827                 printf("could not parse S-1-5-32-545\n");
8828                 return false;
8829         }
8830         if (!dom_sid_equal(&sid, &global_sid_Builtin_Users)) {
8831                 printf("mis-parsed S-1-5-32-545 as %s\n",
8832                        sid_string_tos(&sid));
8833                 return false;
8834         }
8835         return true;
8836 }
8837
8838 static bool sid_to_string_test(const char *expected) {
8839         char *str;
8840         bool res = true;
8841         struct dom_sid sid;
8842
8843         if (!string_to_sid(&sid, expected)) {
8844                 printf("could not parse %s\n", expected);
8845                 return false;
8846         }
8847
8848         str = dom_sid_string(NULL, &sid);
8849         if (strcmp(str, expected)) {
8850                 printf("Comparison failed (%s != %s)\n", str, expected);
8851                 res = false;
8852         }
8853         TALLOC_FREE(str);
8854         return res;
8855 }
8856
8857 static bool run_local_sid_to_string(int dummy) {
8858         if (!sid_to_string_test("S-1-0xffffffffffff-1-1-1-1-1-1-1-1-1-1-1-1"))
8859                 return false;
8860         if (!sid_to_string_test("S-1-545"))
8861                 return false;
8862         if (!sid_to_string_test("S-255-3840-1-1-1-1"))
8863                 return false;
8864         return true;
8865 }
8866
8867 static bool run_local_binary_to_sid(int dummy) {
8868         struct dom_sid *sid = talloc(NULL, struct dom_sid);
8869         static const uint8_t good_binary_sid[] = {
8870                 0x1, /* revision number */
8871                 15, /* num auths */
8872                 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8873                 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8874                 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8875                 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8876                 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8877                 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8878                 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8879                 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8880                 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8881                 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8882                 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8883                 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8884                 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8885                 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8886                 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8887                 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8888         };
8889
8890         static const uint8_t long_binary_sid[] = {
8891                 0x1, /* revision number */
8892                 15, /* num auths */
8893                 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8894                 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8895                 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8896                 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8897                 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8898                 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8899                 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8900                 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8901                 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8902                 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8903                 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8904                 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8905                 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8906                 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8907                 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8908                 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8909                 0x1, 0x1, 0x1, 0x1, /* auth[15] */
8910                 0x1, 0x1, 0x1, 0x1, /* auth[16] */
8911                 0x1, 0x1, 0x1, 0x1, /* auth[17] */
8912         };
8913
8914         static const uint8_t long_binary_sid2[] = {
8915                 0x1, /* revision number */
8916                 32, /* num auths */
8917                 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8918                 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8919                 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8920                 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8921                 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8922                 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8923                 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8924                 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8925                 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8926                 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8927                 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8928                 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8929                 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8930                 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8931                 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8932                 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8933                 0x1, 0x1, 0x1, 0x1, /* auth[15] */
8934                 0x1, 0x1, 0x1, 0x1, /* auth[16] */
8935                 0x1, 0x1, 0x1, 0x1, /* auth[17] */
8936                 0x1, 0x1, 0x1, 0x1, /* auth[18] */
8937                 0x1, 0x1, 0x1, 0x1, /* auth[19] */
8938                 0x1, 0x1, 0x1, 0x1, /* auth[20] */
8939                 0x1, 0x1, 0x1, 0x1, /* auth[21] */
8940                 0x1, 0x1, 0x1, 0x1, /* auth[22] */
8941                 0x1, 0x1, 0x1, 0x1, /* auth[23] */
8942                 0x1, 0x1, 0x1, 0x1, /* auth[24] */
8943                 0x1, 0x1, 0x1, 0x1, /* auth[25] */
8944                 0x1, 0x1, 0x1, 0x1, /* auth[26] */
8945                 0x1, 0x1, 0x1, 0x1, /* auth[27] */
8946                 0x1, 0x1, 0x1, 0x1, /* auth[28] */
8947                 0x1, 0x1, 0x1, 0x1, /* auth[29] */
8948                 0x1, 0x1, 0x1, 0x1, /* auth[30] */
8949                 0x1, 0x1, 0x1, 0x1, /* auth[31] */
8950         };
8951
8952         if (!sid_parse(good_binary_sid, sizeof(good_binary_sid), sid)) {
8953                 return false;
8954         }
8955         if (sid_parse(long_binary_sid2, sizeof(long_binary_sid2), sid)) {
8956                 return false;
8957         }
8958         if (sid_parse(long_binary_sid, sizeof(long_binary_sid), sid)) {
8959                 return false;
8960         }
8961         return true;
8962 }
8963
8964 /* Split a path name into filename and stream name components. Canonicalise
8965  * such that an implicit $DATA token is always explicit.
8966  *
8967  * The "specification" of this function can be found in the
8968  * run_local_stream_name() function in torture.c, I've tried those
8969  * combinations against a W2k3 server.
8970  */
8971
8972 static NTSTATUS split_ntfs_stream_name(TALLOC_CTX *mem_ctx, const char *fname,
8973                                        char **pbase, char **pstream)
8974 {
8975         char *base = NULL;
8976         char *stream = NULL;
8977         char *sname; /* stream name */
8978         const char *stype; /* stream type */
8979
8980         DEBUG(10, ("split_ntfs_stream_name called for [%s]\n", fname));
8981
8982         sname = strchr_m(fname, ':');
8983
8984         if (lp_posix_pathnames() || (sname == NULL)) {
8985                 if (pbase != NULL) {
8986                         base = talloc_strdup(mem_ctx, fname);
8987                         NT_STATUS_HAVE_NO_MEMORY(base);
8988                 }
8989                 goto done;
8990         }
8991
8992         if (pbase != NULL) {
8993                 base = talloc_strndup(mem_ctx, fname, PTR_DIFF(sname, fname));
8994                 NT_STATUS_HAVE_NO_MEMORY(base);
8995         }
8996
8997         sname += 1;
8998
8999         stype = strchr_m(sname, ':');
9000
9001         if (stype == NULL) {
9002                 sname = talloc_strdup(mem_ctx, sname);
9003                 stype = "$DATA";
9004         }
9005         else {
9006                 if (strcasecmp_m(stype, ":$DATA") != 0) {
9007                         /*
9008                          * If there is an explicit stream type, so far we only
9009                          * allow $DATA. Is there anything else allowed? -- vl
9010                          */
9011                         DEBUG(10, ("[%s] is an invalid stream type\n", stype));
9012                         TALLOC_FREE(base);
9013                         return NT_STATUS_OBJECT_NAME_INVALID;
9014                 }
9015                 sname = talloc_strndup(mem_ctx, sname, PTR_DIFF(stype, sname));
9016                 stype += 1;
9017         }
9018
9019         if (sname == NULL) {
9020                 TALLOC_FREE(base);
9021                 return NT_STATUS_NO_MEMORY;
9022         }
9023
9024         if (sname[0] == '\0') {
9025                 /*
9026                  * no stream name, so no stream
9027                  */
9028                 goto done;
9029         }
9030
9031         if (pstream != NULL) {
9032                 stream = talloc_asprintf(mem_ctx, "%s:%s", sname, stype);
9033                 if (stream == NULL) {
9034                         TALLOC_FREE(sname);
9035                         TALLOC_FREE(base);
9036                         return NT_STATUS_NO_MEMORY;
9037                 }
9038                 /*
9039                  * upper-case the type field
9040                  */
9041                 (void)strupper_m(strchr_m(stream, ':')+1);
9042         }
9043
9044  done:
9045         if (pbase != NULL) {
9046                 *pbase = base;
9047         }
9048         if (pstream != NULL) {
9049                 *pstream = stream;
9050         }
9051         return NT_STATUS_OK;
9052 }
9053
9054 static bool test_stream_name(const char *fname, const char *expected_base,
9055                              const char *expected_stream,
9056                              NTSTATUS expected_status)
9057 {
9058         NTSTATUS status;
9059         char *base = NULL;
9060         char *stream = NULL;
9061
9062         status = split_ntfs_stream_name(talloc_tos(), fname, &base, &stream);
9063         if (!NT_STATUS_EQUAL(status, expected_status)) {
9064                 goto error;
9065         }
9066
9067         if (!NT_STATUS_IS_OK(status)) {
9068                 return true;
9069         }
9070
9071         if (base == NULL) goto error;
9072
9073         if (strcmp(expected_base, base) != 0) goto error;
9074
9075         if ((expected_stream != NULL) && (stream == NULL)) goto error;
9076         if ((expected_stream == NULL) && (stream != NULL)) goto error;
9077
9078         if ((stream != NULL) && (strcmp(expected_stream, stream) != 0))
9079                 goto error;
9080
9081         TALLOC_FREE(base);
9082         TALLOC_FREE(stream);
9083         return true;
9084
9085  error:
9086         d_fprintf(stderr, "Do test_stream(%s, %s, %s, %s)\n",
9087                   fname, expected_base ? expected_base : "<NULL>",
9088                   expected_stream ? expected_stream : "<NULL>",
9089                   nt_errstr(expected_status));
9090         d_fprintf(stderr, "-> base=%s, stream=%s, status=%s\n",
9091                   base ? base : "<NULL>", stream ? stream : "<NULL>",
9092                   nt_errstr(status));
9093         TALLOC_FREE(base);
9094         TALLOC_FREE(stream);
9095         return false;
9096 }
9097
9098 static bool run_local_stream_name(int dummy)
9099 {
9100         bool ret = true;
9101
9102         ret &= test_stream_name(
9103                 "bla", "bla", NULL, NT_STATUS_OK);
9104         ret &= test_stream_name(
9105                 "bla::$DATA", "bla", NULL, NT_STATUS_OK);
9106         ret &= test_stream_name(
9107                 "bla:blub:", "bla", NULL, NT_STATUS_OBJECT_NAME_INVALID);
9108         ret &= test_stream_name(
9109                 "bla::", NULL, NULL, NT_STATUS_OBJECT_NAME_INVALID);
9110         ret &= test_stream_name(
9111                 "bla::123", "bla", NULL, NT_STATUS_OBJECT_NAME_INVALID);
9112         ret &= test_stream_name(
9113                 "bla:$DATA", "bla", "$DATA:$DATA", NT_STATUS_OK);
9114         ret &= test_stream_name(
9115                 "bla:x:$DATA", "bla", "x:$DATA", NT_STATUS_OK);
9116         ret &= test_stream_name(
9117                 "bla:x", "bla", "x:$DATA", NT_STATUS_OK);
9118
9119         return ret;
9120 }
9121
9122 static bool data_blob_equal(DATA_BLOB a, DATA_BLOB b)
9123 {
9124         if (a.length != b.length) {
9125                 printf("a.length=%d != b.length=%d\n",
9126                        (int)a.length, (int)b.length);
9127                 return false;
9128         }
9129         if (memcmp(a.data, b.data, a.length) != 0) {
9130                 printf("a.data and b.data differ\n");
9131                 return false;
9132         }
9133         return true;
9134 }
9135
9136 static bool run_local_memcache(int dummy)
9137 {
9138         struct memcache *cache;
9139         DATA_BLOB k1, k2;
9140         DATA_BLOB d1, d2, d3;
9141         DATA_BLOB v1, v2, v3;
9142
9143         TALLOC_CTX *mem_ctx;
9144         char *str1, *str2;
9145         size_t size1, size2;
9146         bool ret = false;
9147
9148         cache = memcache_init(NULL, sizeof(void *) == 8 ? 200 : 100);
9149
9150         if (cache == NULL) {
9151                 printf("memcache_init failed\n");
9152                 return false;
9153         }
9154
9155         d1 = data_blob_const("d1", 2);
9156         d2 = data_blob_const("d2", 2);
9157         d3 = data_blob_const("d3", 2);
9158
9159         k1 = data_blob_const("d1", 2);
9160         k2 = data_blob_const("d2", 2);
9161
9162         memcache_add(cache, STAT_CACHE, k1, d1);
9163         memcache_add(cache, GETWD_CACHE, k2, d2);
9164
9165         if (!memcache_lookup(cache, STAT_CACHE, k1, &v1)) {
9166                 printf("could not find k1\n");
9167                 return false;
9168         }
9169         if (!data_blob_equal(d1, v1)) {
9170                 return false;
9171         }
9172
9173         if (!memcache_lookup(cache, GETWD_CACHE, k2, &v2)) {
9174                 printf("could not find k2\n");
9175                 return false;
9176         }
9177         if (!data_blob_equal(d2, v2)) {
9178                 return false;
9179         }
9180
9181         memcache_add(cache, STAT_CACHE, k1, d3);
9182
9183         if (!memcache_lookup(cache, STAT_CACHE, k1, &v3)) {
9184                 printf("could not find replaced k1\n");
9185                 return false;
9186         }
9187         if (!data_blob_equal(d3, v3)) {
9188                 return false;
9189         }
9190
9191         memcache_add(cache, GETWD_CACHE, k1, d1);
9192
9193         if (memcache_lookup(cache, GETWD_CACHE, k2, &v2)) {
9194                 printf("Did find k2, should have been purged\n");
9195                 return false;
9196         }
9197
9198         TALLOC_FREE(cache);
9199
9200         cache = memcache_init(NULL, 0);
9201
9202         mem_ctx = talloc_init("foo");
9203
9204         str1 = talloc_strdup(mem_ctx, "string1");
9205         str2 = talloc_strdup(mem_ctx, "string2");
9206
9207         memcache_add_talloc(cache, SINGLETON_CACHE_TALLOC,
9208                             data_blob_string_const("torture"), &str1);
9209         size1 = talloc_total_size(cache);
9210
9211         memcache_add_talloc(cache, SINGLETON_CACHE_TALLOC,
9212                             data_blob_string_const("torture"), &str2);
9213         size2 = talloc_total_size(cache);
9214
9215         printf("size1=%d, size2=%d\n", (int)size1, (int)size2);
9216
9217         if (size2 > size1) {
9218                 printf("memcache leaks memory!\n");
9219                 goto fail;
9220         }
9221
9222         ret = true;
9223  fail:
9224         TALLOC_FREE(cache);
9225         return ret;
9226 }
9227
9228 static void wbclient_done(struct tevent_req *req)
9229 {
9230         wbcErr wbc_err;
9231         struct winbindd_response *wb_resp;
9232         int *i = (int *)tevent_req_callback_data_void(req);
9233
9234         wbc_err = wb_trans_recv(req, req, &wb_resp);
9235         TALLOC_FREE(req);
9236         *i += 1;
9237         d_printf("wb_trans_recv %d returned %s\n", *i, wbcErrorString(wbc_err));
9238 }
9239
9240 static bool run_wbclient_multi_ping(int dummy)
9241 {
9242         struct tevent_context *ev;
9243         struct wb_context **wb_ctx;
9244         struct winbindd_request wb_req;
9245         bool result = false;
9246         int i, j;
9247
9248         BlockSignals(True, SIGPIPE);
9249
9250         ev = tevent_context_init(talloc_tos());
9251         if (ev == NULL) {
9252                 goto fail;
9253         }
9254
9255         wb_ctx = talloc_array(ev, struct wb_context *, torture_nprocs);
9256         if (wb_ctx == NULL) {
9257                 goto fail;
9258         }
9259
9260         ZERO_STRUCT(wb_req);
9261         wb_req.cmd = WINBINDD_PING;
9262
9263         d_printf("torture_nprocs=%d, numops=%d\n", (int)torture_nprocs, (int)torture_numops);
9264
9265         for (i=0; i<torture_nprocs; i++) {
9266                 wb_ctx[i] = wb_context_init(ev, NULL);
9267                 if (wb_ctx[i] == NULL) {
9268                         goto fail;
9269                 }
9270                 for (j=0; j<torture_numops; j++) {
9271                         struct tevent_req *req;
9272                         req = wb_trans_send(ev, ev, wb_ctx[i],
9273                                             (j % 2) == 0, &wb_req);
9274                         if (req == NULL) {
9275                                 goto fail;
9276                         }
9277                         tevent_req_set_callback(req, wbclient_done, &i);
9278                 }
9279         }
9280
9281         i = 0;
9282
9283         while (i < torture_nprocs * torture_numops) {
9284                 tevent_loop_once(ev);
9285         }
9286
9287         result = true;
9288  fail:
9289         TALLOC_FREE(ev);
9290         return result;
9291 }
9292
9293 static void getaddrinfo_finished(struct tevent_req *req)
9294 {
9295         char *name = (char *)tevent_req_callback_data_void(req);
9296         struct addrinfo *ainfo;
9297         int res;
9298
9299         res = getaddrinfo_recv(req, &ainfo);
9300         if (res != 0) {
9301                 d_printf("gai(%s) returned %s\n", name, gai_strerror(res));
9302                 return;
9303         }
9304         d_printf("gai(%s) succeeded\n", name);
9305         freeaddrinfo(ainfo);
9306 }
9307
9308 static bool run_getaddrinfo_send(int dummy)
9309 {
9310         TALLOC_CTX *frame = talloc_stackframe();
9311         struct fncall_context *ctx;
9312         struct tevent_context *ev;
9313         bool result = false;
9314         const char *names[4] = { "www.samba.org", "notfound.samba.org",
9315                                  "www.slashdot.org", "heise.de" };
9316         struct tevent_req *reqs[4];
9317         int i;
9318
9319         ev = samba_tevent_context_init(frame);
9320         if (ev == NULL) {
9321                 goto fail;
9322         }
9323
9324         ctx = fncall_context_init(frame, 4);
9325
9326         for (i=0; i<ARRAY_SIZE(names); i++) {
9327                 reqs[i] = getaddrinfo_send(frame, ev, ctx, names[i], NULL,
9328                                            NULL);
9329                 if (reqs[i] == NULL) {
9330                         goto fail;
9331                 }
9332                 tevent_req_set_callback(reqs[i], getaddrinfo_finished,
9333                                         discard_const_p(void, names[i]));
9334         }
9335
9336         for (i=0; i<ARRAY_SIZE(reqs); i++) {
9337                 tevent_loop_once(ev);
9338         }
9339
9340         result = true;
9341 fail:
9342         TALLOC_FREE(frame);
9343         return result;
9344 }
9345
9346 static bool dbtrans_inc(struct db_context *db)
9347 {
9348         struct db_record *rec;
9349         uint32_t val;
9350         bool ret = false;
9351         NTSTATUS status;
9352         TDB_DATA value;
9353
9354         rec = dbwrap_fetch_locked(db, db, string_term_tdb_data("transtest"));
9355         if (rec == NULL) {
9356                 printf(__location__ "fetch_lock failed\n");
9357                 return false;
9358         }
9359
9360         value = dbwrap_record_get_value(rec);
9361
9362         if (value.dsize != sizeof(uint32_t)) {
9363                 printf(__location__ "value.dsize = %d\n",
9364                        (int)value.dsize);
9365                 goto fail;
9366         }
9367
9368         memcpy(&val, value.dptr, sizeof(val));
9369         val += 1;
9370
9371         status = dbwrap_record_store(
9372                 rec, make_tdb_data((uint8_t *)&val, sizeof(val)), 0);
9373         if (!NT_STATUS_IS_OK(status)) {
9374                 printf(__location__ "store failed: %s\n",
9375                        nt_errstr(status));
9376                 goto fail;
9377         }
9378
9379         ret = true;
9380 fail:
9381         TALLOC_FREE(rec);
9382         return ret;
9383 }
9384
9385 static bool run_local_dbtrans(int dummy)
9386 {
9387         struct db_context *db;
9388         struct db_record *rec;
9389         NTSTATUS status;
9390         uint32_t initial;
9391         int res;
9392         TDB_DATA value;
9393
9394         db = db_open(talloc_tos(), "transtest.tdb", 0, TDB_DEFAULT,
9395                      O_RDWR|O_CREAT, 0600, DBWRAP_LOCK_ORDER_1,
9396                      DBWRAP_FLAG_NONE);
9397         if (db == NULL) {
9398                 printf("Could not open transtest.db\n");
9399                 return false;
9400         }
9401
9402         res = dbwrap_transaction_start(db);
9403         if (res != 0) {
9404                 printf(__location__ "transaction_start failed\n");
9405                 return false;
9406         }
9407
9408         rec = dbwrap_fetch_locked(db, db, string_term_tdb_data("transtest"));
9409         if (rec == NULL) {
9410                 printf(__location__ "fetch_lock failed\n");
9411                 return false;
9412         }
9413
9414         value = dbwrap_record_get_value(rec);
9415
9416         if (value.dptr == NULL) {
9417                 initial = 0;
9418                 status = dbwrap_record_store(
9419                         rec, make_tdb_data((uint8_t *)&initial,
9420                                            sizeof(initial)),
9421                         0);
9422                 if (!NT_STATUS_IS_OK(status)) {
9423                         printf(__location__ "store returned %s\n",
9424                                nt_errstr(status));
9425                         return false;
9426                 }
9427         }
9428
9429         TALLOC_FREE(rec);
9430
9431         res = dbwrap_transaction_commit(db);
9432         if (res != 0) {
9433                 printf(__location__ "transaction_commit failed\n");
9434                 return false;
9435         }
9436
9437         while (true) {
9438                 uint32_t val, val2;
9439                 int i;
9440
9441                 res = dbwrap_transaction_start(db);
9442                 if (res != 0) {
9443                         printf(__location__ "transaction_start failed\n");
9444                         break;
9445                 }
9446
9447                 status = dbwrap_fetch_uint32_bystring(db, "transtest", &val);
9448                 if (!NT_STATUS_IS_OK(status)) {
9449                         printf(__location__ "dbwrap_fetch_uint32 failed: %s\n",
9450                                nt_errstr(status));
9451                         break;
9452                 }
9453
9454                 for (i=0; i<10; i++) {
9455                         if (!dbtrans_inc(db)) {
9456                                 return false;
9457                         }
9458                 }
9459
9460                 status = dbwrap_fetch_uint32_bystring(db, "transtest", &val2);
9461                 if (!NT_STATUS_IS_OK(status)) {
9462                         printf(__location__ "dbwrap_fetch_uint32 failed: %s\n",
9463                                nt_errstr(status));
9464                         break;
9465                 }
9466
9467                 if (val2 != val + 10) {
9468                         printf(__location__ "val=%d, val2=%d\n",
9469                                (int)val, (int)val2);
9470                         break;
9471                 }
9472
9473                 printf("val2=%d\r", val2);
9474
9475                 res = dbwrap_transaction_commit(db);
9476                 if (res != 0) {
9477                         printf(__location__ "transaction_commit failed\n");
9478                         break;
9479                 }
9480         }
9481
9482         TALLOC_FREE(db);
9483         return true;
9484 }
9485
9486 /*
9487  * Just a dummy test to be run under a debugger. There's no real way
9488  * to inspect the tevent_select specific function from outside of
9489  * tevent_select.c.
9490  */
9491
9492 static bool run_local_tevent_select(int dummy)
9493 {
9494         struct tevent_context *ev;
9495         struct tevent_fd *fd1, *fd2;
9496         bool result = false;
9497
9498         ev = tevent_context_init_byname(NULL, "select");
9499         if (ev == NULL) {
9500                 d_fprintf(stderr, "tevent_context_init_byname failed\n");
9501                 goto fail;
9502         }
9503
9504         fd1 = tevent_add_fd(ev, ev, 2, 0, NULL, NULL);
9505         if (fd1 == NULL) {
9506                 d_fprintf(stderr, "tevent_add_fd failed\n");
9507                 goto fail;
9508         }
9509         fd2 = tevent_add_fd(ev, ev, 3, 0, NULL, NULL);
9510         if (fd2 == NULL) {
9511                 d_fprintf(stderr, "tevent_add_fd failed\n");
9512                 goto fail;
9513         }
9514         TALLOC_FREE(fd2);
9515
9516         fd2 = tevent_add_fd(ev, ev, 1, 0, NULL, NULL);
9517         if (fd2 == NULL) {
9518                 d_fprintf(stderr, "tevent_add_fd failed\n");
9519                 goto fail;
9520         }
9521
9522         result = true;
9523 fail:
9524         TALLOC_FREE(ev);
9525         return result;
9526 }
9527
9528 static bool run_local_hex_encode_buf(int dummy)
9529 {
9530         char buf[17];
9531         uint8_t src[8];
9532         int i;
9533
9534         for (i=0; i<sizeof(src); i++) {
9535                 src[i] = i;
9536         }
9537         hex_encode_buf(buf, src, sizeof(src));
9538         if (strcmp(buf, "0001020304050607") != 0) {
9539                 return false;
9540         }
9541         hex_encode_buf(buf, NULL, 0);
9542         if (buf[0] != '\0') {
9543                 return false;
9544         }
9545         return true;
9546 }
9547
9548 static const char *remove_duplicate_addrs2_test_strings_vector[] = {
9549         "0.0.0.0",
9550         "::0",
9551         "1.2.3.1",
9552         "0.0.0.0",
9553         "0.0.0.0",
9554         "1.2.3.2",
9555         "1.2.3.3",
9556         "1.2.3.4",
9557         "1.2.3.5",
9558         "::0",
9559         "1.2.3.6",
9560         "1.2.3.7",
9561         "::0",
9562         "::0",
9563         "::0",
9564         "1.2.3.8",
9565         "1.2.3.9",
9566         "1.2.3.10",
9567         "1.2.3.11",
9568         "1.2.3.12",
9569         "1.2.3.13",
9570         "1001:1111:1111:1000:0:1111:1111:1111",
9571         "1.2.3.1",
9572         "1.2.3.2",
9573         "1.2.3.3",
9574         "1.2.3.12",
9575         "::0",
9576         "::0"
9577 };
9578
9579 static const char *remove_duplicate_addrs2_test_strings_result[] = {
9580         "1.2.3.1",
9581         "1.2.3.2",
9582         "1.2.3.3",
9583         "1.2.3.4",
9584         "1.2.3.5",
9585         "1.2.3.6",
9586         "1.2.3.7",
9587         "1.2.3.8",
9588         "1.2.3.9",
9589         "1.2.3.10",
9590         "1.2.3.11",
9591         "1.2.3.12",
9592         "1.2.3.13",
9593         "1001:1111:1111:1000:0:1111:1111:1111"
9594 };
9595
9596 static bool run_local_remove_duplicate_addrs2(int dummy)
9597 {
9598         struct ip_service test_vector[28];
9599         int count, i;
9600
9601         /* Construct the sockaddr_storage test vector. */
9602         for (i = 0; i < 28; i++) {
9603                 struct addrinfo hints;
9604                 struct addrinfo *res = NULL;
9605                 int ret;
9606
9607                 memset(&hints, '\0', sizeof(hints));
9608                 hints.ai_flags = AI_NUMERICHOST;
9609                 ret = getaddrinfo(remove_duplicate_addrs2_test_strings_vector[i],
9610                                 NULL,
9611                                 &hints,
9612                                 &res);
9613                 if (ret) {
9614                         fprintf(stderr, "getaddrinfo failed on [%s]\n",
9615                                 remove_duplicate_addrs2_test_strings_vector[i]);
9616                         return false;
9617                 }
9618                 memset(&test_vector[i], '\0', sizeof(test_vector[i]));
9619                 memcpy(&test_vector[i].ss,
9620                         res->ai_addr,
9621                         res->ai_addrlen);
9622                 freeaddrinfo(res);
9623         }
9624
9625         count = remove_duplicate_addrs2(test_vector, i);
9626
9627         if (count != 14) {
9628                 fprintf(stderr, "count wrong (%d) should be 14\n",
9629                         count);
9630                 return false;
9631         }
9632
9633         for (i = 0; i < count; i++) {
9634                 char addr[INET6_ADDRSTRLEN];
9635
9636                 print_sockaddr(addr, sizeof(addr), &test_vector[i].ss);
9637
9638                 if (strcmp(addr, remove_duplicate_addrs2_test_strings_result[i]) != 0) {
9639                         fprintf(stderr, "mismatch on [%d] [%s] [%s]\n",
9640                                 i,
9641                                 addr,
9642                                 remove_duplicate_addrs2_test_strings_result[i]);
9643                         return false;
9644                 }
9645         }
9646
9647         printf("run_local_remove_duplicate_addrs2: success\n");
9648         return true;
9649 }
9650
9651 static bool run_local_tdb_opener(int dummy)
9652 {
9653         TDB_CONTEXT *t;
9654         unsigned v = 0;
9655
9656         while (1) {
9657                 t = tdb_open("test.tdb", 1000, TDB_CLEAR_IF_FIRST,
9658                              O_RDWR|O_CREAT, 0755);
9659                 if (t == NULL) {
9660                         perror("tdb_open failed");
9661                         return false;
9662                 }
9663                 tdb_close(t);
9664
9665                 v += 1;
9666                 printf("\r%u", v);
9667         }
9668         return true;
9669 }
9670
9671 static bool run_local_tdb_writer(int dummy)
9672 {
9673         TDB_CONTEXT *t;
9674         unsigned v = 0;
9675         TDB_DATA val;
9676
9677         t = tdb_open("test.tdb", 1000, 0, O_RDWR|O_CREAT, 0755);
9678         if (t == 0) {
9679                 perror("tdb_open failed");
9680                 return 1;
9681         }
9682
9683         val.dptr = (uint8_t *)&v;
9684         val.dsize = sizeof(v);
9685
9686         while (1) {
9687                 TDB_DATA data;
9688                 int ret;
9689
9690                 ret = tdb_store(t, val, val, 0);
9691                 if (ret != 0) {
9692                         printf("%s\n", tdb_errorstr(t));
9693                 }
9694                 v += 1;
9695                 printf("\r%u", v);
9696
9697                 data = tdb_fetch(t, val);
9698                 if (data.dptr != NULL) {
9699                         SAFE_FREE(data.dptr);
9700                 }
9701         }
9702         return true;
9703 }
9704
9705 static double create_procs(bool (*fn)(int), bool *result)
9706 {
9707         int i, status;
9708         volatile pid_t *child_status;
9709         volatile bool *child_status_out;
9710         int synccount;
9711         int tries = 8;
9712         struct timeval start;
9713
9714         synccount = 0;
9715
9716         child_status = (volatile pid_t *)anonymous_shared_allocate(sizeof(pid_t)*torture_nprocs);
9717         if (!child_status) {
9718                 printf("Failed to setup shared memory\n");
9719                 return -1;
9720         }
9721
9722         child_status_out = (volatile bool *)anonymous_shared_allocate(sizeof(bool)*torture_nprocs);
9723         if (!child_status_out) {
9724                 printf("Failed to setup result status shared memory\n");
9725                 return -1;
9726         }
9727
9728         for (i = 0; i < torture_nprocs; i++) {
9729                 child_status[i] = 0;
9730                 child_status_out[i] = True;
9731         }
9732
9733         start = timeval_current();
9734
9735         for (i=0;i<torture_nprocs;i++) {
9736                 procnum = i;
9737                 if (fork() == 0) {
9738                         pid_t mypid = getpid();
9739                         sys_srandom(((int)mypid) ^ ((int)time(NULL)));
9740
9741                         slprintf(myname,sizeof(myname),"CLIENT%d", i);
9742
9743                         while (1) {
9744                                 if (torture_open_connection(&current_cli, i)) break;
9745                                 if (tries-- == 0) {
9746                                         printf("pid %d failed to start\n", (int)getpid());
9747                                         _exit(1);
9748                                 }
9749                                 smb_msleep(10); 
9750                         }
9751
9752                         child_status[i] = getpid();
9753
9754                         while (child_status[i] && timeval_elapsed(&start) < 5) smb_msleep(2);
9755
9756                         child_status_out[i] = fn(i);
9757                         _exit(0);
9758                 }
9759         }
9760
9761         do {
9762                 synccount = 0;
9763                 for (i=0;i<torture_nprocs;i++) {
9764                         if (child_status[i]) synccount++;
9765                 }
9766                 if (synccount == torture_nprocs) break;
9767                 smb_msleep(10);
9768         } while (timeval_elapsed(&start) < 30);
9769
9770         if (synccount != torture_nprocs) {
9771                 printf("FAILED TO START %d CLIENTS (started %d)\n", torture_nprocs, synccount);
9772                 *result = False;
9773                 return timeval_elapsed(&start);
9774         }
9775
9776         /* start the client load */
9777         start = timeval_current();
9778
9779         for (i=0;i<torture_nprocs;i++) {
9780                 child_status[i] = 0;
9781         }
9782
9783         printf("%d clients started\n", torture_nprocs);
9784
9785         for (i=0;i<torture_nprocs;i++) {
9786                 while (waitpid(0, &status, 0) == -1 && errno == EINTR) /* noop */ ;
9787         }
9788
9789         printf("\n");
9790
9791         for (i=0;i<torture_nprocs;i++) {
9792                 if (!child_status_out[i]) {
9793                         *result = False;
9794                 }
9795         }
9796         return timeval_elapsed(&start);
9797 }
9798
9799 #define FLAG_MULTIPROC 1
9800
9801 static struct {
9802         const char *name;
9803         bool (*fn)(int);
9804         unsigned flags;
9805 } torture_ops[] = {
9806         {"FDPASS", run_fdpasstest, 0},
9807         {"LOCK1",  run_locktest1,  0},
9808         {"LOCK2",  run_locktest2,  0},
9809         {"LOCK3",  run_locktest3,  0},
9810         {"LOCK4",  run_locktest4,  0},
9811         {"LOCK5",  run_locktest5,  0},
9812         {"LOCK6",  run_locktest6,  0},
9813         {"LOCK7",  run_locktest7,  0},
9814         {"LOCK8",  run_locktest8,  0},
9815         {"LOCK9",  run_locktest9,  0},
9816         {"UNLINK", run_unlinktest, 0},
9817         {"BROWSE", run_browsetest, 0},
9818         {"ATTR",   run_attrtest,   0},
9819         {"TRANS2", run_trans2test, 0},
9820         {"MAXFID", run_maxfidtest, FLAG_MULTIPROC},
9821         {"TORTURE",run_torture,    FLAG_MULTIPROC},
9822         {"RANDOMIPC", run_randomipc, 0},
9823         {"NEGNOWAIT", run_negprot_nowait, 0},
9824         {"NBENCH",  run_nbench, 0},
9825         {"NBENCH2", run_nbench2, 0},
9826         {"OPLOCK1",  run_oplock1, 0},
9827         {"OPLOCK2",  run_oplock2, 0},
9828         {"OPLOCK4",  run_oplock4, 0},
9829         {"DIR",  run_dirtest, 0},
9830         {"DIR1",  run_dirtest1, 0},
9831         {"DIR-CREATETIME",  run_dir_createtime, 0},
9832         {"DENY1",  torture_denytest1, 0},
9833         {"DENY2",  torture_denytest2, 0},
9834         {"TCON",  run_tcon_test, 0},
9835         {"TCONDEV",  run_tcon_devtype_test, 0},
9836         {"RW1",  run_readwritetest, 0},
9837         {"RW2",  run_readwritemulti, FLAG_MULTIPROC},
9838         {"RW3",  run_readwritelarge, 0},
9839         {"RW-SIGNING",  run_readwritelarge_signtest, 0},
9840         {"OPEN", run_opentest, 0},
9841         {"POSIX", run_simple_posix_open_test, 0},
9842         {"POSIX-APPEND", run_posix_append, 0},
9843         {"POSIX-SYMLINK-ACL", run_acl_symlink_test, 0},
9844         {"CASE-INSENSITIVE-CREATE", run_case_insensitive_create, 0},
9845         {"ASYNC-ECHO", run_async_echo, 0},
9846         { "UID-REGRESSION-TEST", run_uid_regression_test, 0},
9847         { "SHORTNAME-TEST", run_shortname_test, 0},
9848         { "ADDRCHANGE", run_addrchange, 0},
9849 #if 1
9850         {"OPENATTR", run_openattrtest, 0},
9851 #endif
9852         {"XCOPY", run_xcopy, 0},
9853         {"RENAME", run_rename, 0},
9854         {"DELETE", run_deletetest, 0},
9855         {"WILDDELETE", run_wild_deletetest, 0},
9856         {"DELETE-LN", run_deletetest_ln, 0},
9857         {"PROPERTIES", run_properties, 0},
9858         {"MANGLE", torture_mangle, 0},
9859         {"MANGLE1", run_mangle1, 0},
9860         {"W2K", run_w2ktest, 0},
9861         {"TRANS2SCAN", torture_trans2_scan, 0},
9862         {"NTTRANSSCAN", torture_nttrans_scan, 0},
9863         {"UTABLE", torture_utable, 0},
9864         {"CASETABLE", torture_casetable, 0},
9865         {"ERRMAPEXTRACT", run_error_map_extract, 0},
9866         {"PIPE_NUMBER", run_pipe_number, 0},
9867         {"TCON2",  run_tcon2_test, 0},
9868         {"IOCTL",  torture_ioctl_test, 0},
9869         {"CHKPATH",  torture_chkpath_test, 0},
9870         {"FDSESS", run_fdsesstest, 0},
9871         { "EATEST", run_eatest, 0},
9872         { "SESSSETUP_BENCH", run_sesssetup_bench, 0},
9873         { "CHAIN1", run_chain1, 0},
9874         { "CHAIN2", run_chain2, 0},
9875         { "CHAIN3", run_chain3, 0},
9876         { "WINDOWS-WRITE", run_windows_write, 0},
9877         { "LARGE_READX", run_large_readx, 0},
9878         { "NTTRANS-CREATE", run_nttrans_create, 0},
9879         { "NTTRANS-FSCTL", run_nttrans_fsctl, 0},
9880         { "CLI_ECHO", run_cli_echo, 0},
9881         { "GETADDRINFO", run_getaddrinfo_send, 0},
9882         { "TLDAP", run_tldap },
9883         { "STREAMERROR", run_streamerror },
9884         { "NOTIFY-BENCH", run_notify_bench },
9885         { "NOTIFY-BENCH2", run_notify_bench2 },
9886         { "NOTIFY-BENCH3", run_notify_bench3 },
9887         { "BAD-NBT-SESSION", run_bad_nbt_session },
9888         { "SMB-ANY-CONNECT", run_smb_any_connect },
9889         { "NOTIFY-ONLINE", run_notify_online },
9890         { "SMB2-BASIC", run_smb2_basic },
9891         { "SMB2-NEGPROT", run_smb2_negprot },
9892         { "SMB2-SESSION-RECONNECT", run_smb2_session_reconnect },
9893         { "SMB2-TCON-DEPENDENCE", run_smb2_tcon_dependence },
9894         { "SMB2-MULTI-CHANNEL", run_smb2_multi_channel },
9895         { "SMB2-SESSION-REAUTH", run_smb2_session_reauth },
9896         { "CLEANUP1", run_cleanup1 },
9897         { "CLEANUP2", run_cleanup2 },
9898         { "CLEANUP3", run_cleanup3 },
9899         { "CLEANUP4", run_cleanup4 },
9900         { "OPLOCK-CANCEL", run_oplock_cancel },
9901         { "LOCAL-SUBSTITUTE", run_local_substitute, 0},
9902         { "LOCAL-GENCACHE", run_local_gencache, 0},
9903         { "LOCAL-TALLOC-DICT", run_local_talloc_dict, 0},
9904         { "LOCAL-DBWRAP-WATCH1", run_dbwrap_watch1, 0 },
9905         { "LOCAL-MESSAGING-READ1", run_messaging_read1, 0 },
9906         { "LOCAL-MESSAGING-READ2", run_messaging_read2, 0 },
9907         { "LOCAL-MESSAGING-READ3", run_messaging_read3, 0 },
9908         { "LOCAL-MESSAGING-READ4", run_messaging_read4, 0 },
9909         { "LOCAL-MESSAGING-FDPASS1", run_messaging_fdpass1, 0 },
9910         { "LOCAL-MESSAGING-FDPASS2", run_messaging_fdpass2, 0 },
9911         { "LOCAL-MESSAGING-FDPASS2a", run_messaging_fdpass2a, 0 },
9912         { "LOCAL-MESSAGING-FDPASS2b", run_messaging_fdpass2b, 0 },
9913         { "LOCAL-BASE64", run_local_base64, 0},
9914         { "LOCAL-RBTREE", run_local_rbtree, 0},
9915         { "LOCAL-MEMCACHE", run_local_memcache, 0},
9916         { "LOCAL-STREAM-NAME", run_local_stream_name, 0},
9917         { "WBCLIENT-MULTI-PING", run_wbclient_multi_ping, 0},
9918         { "LOCAL-string_to_sid", run_local_string_to_sid, 0},
9919         { "LOCAL-sid_to_string", run_local_sid_to_string, 0},
9920         { "LOCAL-binary_to_sid", run_local_binary_to_sid, 0},
9921         { "LOCAL-DBTRANS", run_local_dbtrans, 0},
9922         { "LOCAL-TEVENT-SELECT", run_local_tevent_select, 0},
9923         { "LOCAL-CONVERT-STRING", run_local_convert_string, 0},
9924         { "LOCAL-CONV-AUTH-INFO", run_local_conv_auth_info, 0},
9925         { "LOCAL-sprintf_append", run_local_sprintf_append, 0},
9926         { "LOCAL-hex_encode_buf", run_local_hex_encode_buf, 0},
9927         { "LOCAL-IDMAP-TDB-COMMON", run_idmap_tdb_common_test, 0},
9928         { "LOCAL-remove_duplicate_addrs2", run_local_remove_duplicate_addrs2, 0},
9929         { "local-tdb-opener", run_local_tdb_opener, 0 },
9930         { "local-tdb-writer", run_local_tdb_writer, 0 },
9931         { "LOCAL-DBWRAP-CTDB", run_local_dbwrap_ctdb, 0 },
9932         { "LOCAL-BENCH-PTHREADPOOL", run_bench_pthreadpool, 0 },
9933         { "qpathinfo-bufsize", run_qpathinfo_bufsize, 0 },
9934         {NULL, NULL, 0}};
9935
9936 /*
9937  * dummy function to satisfy linker dependency
9938  */
9939 struct tevent_context *winbind_event_context(void);
9940 struct tevent_context *winbind_event_context(void)
9941 {
9942         return NULL;
9943 }
9944
9945 /****************************************************************************
9946 run a specified test or "ALL"
9947 ****************************************************************************/
9948 static bool run_test(const char *name)
9949 {
9950         bool ret = True;
9951         bool result = True;
9952         bool found = False;
9953         int i;
9954         double t;
9955         if (strequal(name,"ALL")) {
9956                 for (i=0;torture_ops[i].name;i++) {
9957                         run_test(torture_ops[i].name);
9958                 }
9959                 found = True;
9960         }
9961
9962         for (i=0;torture_ops[i].name;i++) {
9963                 fstr_sprintf(randomfname, "\\XX%x", 
9964                          (unsigned)random());
9965
9966                 if (strequal(name, torture_ops[i].name)) {
9967                         found = True;
9968                         printf("Running %s\n", name);
9969                         if (torture_ops[i].flags & FLAG_MULTIPROC) {
9970                                 t = create_procs(torture_ops[i].fn, &result);
9971                                 if (!result) { 
9972                                         ret = False;
9973                                         printf("TEST %s FAILED!\n", name);
9974                                 }
9975                         } else {
9976                                 struct timeval start;
9977                                 start = timeval_current();
9978                                 if (!torture_ops[i].fn(0)) {
9979                                         ret = False;
9980                                         printf("TEST %s FAILED!\n", name);
9981                                 }
9982                                 t = timeval_elapsed(&start);
9983                         }
9984                         printf("%s took %g secs\n\n", name, t);
9985                 }
9986         }
9987
9988         if (!found) {
9989                 printf("Did not find a test named %s\n", name);
9990                 ret = False;
9991         }
9992
9993         return ret;
9994 }
9995
9996
9997 static void usage(void)
9998 {
9999         int i;
10000
10001         printf("WARNING samba4 test suite is much more complete nowadays.\n");
10002         printf("Please use samba4 torture.\n\n");
10003
10004         printf("Usage: smbtorture //server/share <options> TEST1 TEST2 ...\n");
10005
10006         printf("\t-d debuglevel\n");
10007         printf("\t-U user%%pass\n");
10008         printf("\t-k                    use kerberos\n");
10009         printf("\t-N numprocs\n");
10010         printf("\t-n my_netbios_name\n");
10011         printf("\t-W workgroup\n");
10012         printf("\t-o num_operations\n");
10013         printf("\t-O socket_options\n");
10014         printf("\t-m maximum protocol\n");
10015         printf("\t-L use oplocks\n");
10016         printf("\t-c CLIENT.TXT         specify client load file for NBENCH\n");
10017         printf("\t-A showall\n");
10018         printf("\t-p port\n");
10019         printf("\t-s seed\n");
10020         printf("\t-b unclist_filename   specify multiple shares for multiple connections\n");
10021         printf("\t-f filename           filename to test\n");
10022         printf("\t-e                    encrypt\n");
10023         printf("\n\n");
10024
10025         printf("tests are:");
10026         for (i=0;torture_ops[i].name;i++) {
10027                 printf(" %s", torture_ops[i].name);
10028         }
10029         printf("\n");
10030
10031         printf("default test is ALL\n");
10032
10033         exit(1);
10034 }
10035
10036 /****************************************************************************
10037   main program
10038 ****************************************************************************/
10039  int main(int argc,char *argv[])
10040 {
10041         int opt, i;
10042         char *p;
10043         int gotuser = 0;
10044         int gotpass = 0;
10045         bool correct = True;
10046         TALLOC_CTX *frame = talloc_stackframe();
10047         int seed = time(NULL);
10048
10049 #ifdef HAVE_SETBUFFER
10050         setbuffer(stdout, NULL, 0);
10051 #endif
10052
10053         setup_logging("smbtorture", DEBUG_STDOUT);
10054
10055         smb_init_locale();
10056         fault_setup();
10057
10058         if (is_default_dyn_CONFIGFILE()) {
10059                 if(getenv("SMB_CONF_PATH")) {
10060                         set_dyn_CONFIGFILE(getenv("SMB_CONF_PATH"));
10061                 }
10062         }
10063         lp_load_global(get_dyn_CONFIGFILE());
10064         load_interfaces();
10065
10066         if (argc < 2) {
10067                 usage();
10068         }
10069
10070         for(p = argv[1]; *p; p++)
10071           if(*p == '\\')
10072             *p = '/';
10073
10074         if (strncmp(argv[1], "//", 2)) {
10075                 usage();
10076         }
10077
10078         fstrcpy(host, &argv[1][2]);
10079         p = strchr_m(&host[2],'/');
10080         if (!p) {
10081                 usage();
10082         }
10083         *p = 0;
10084         fstrcpy(share, p+1);
10085
10086         fstrcpy(myname, get_myname(talloc_tos()));
10087         if (!*myname) {
10088                 fprintf(stderr, "Failed to get my hostname.\n");
10089                 return 1;
10090         }
10091
10092         if (*username == 0 && getenv("LOGNAME")) {
10093           fstrcpy(username,getenv("LOGNAME"));
10094         }
10095
10096         argc--;
10097         argv++;
10098
10099         fstrcpy(workgroup, lp_workgroup());
10100
10101         while ((opt = getopt(argc, argv, "p:hW:U:n:N:O:o:m:Ll:d:Aec:ks:b:B:f:"))
10102                != EOF) {
10103                 switch (opt) {
10104                 case 'p':
10105                         port_to_use = atoi(optarg);
10106                         break;
10107                 case 's':
10108                         seed = atoi(optarg);
10109                         break;
10110                 case 'W':
10111                         fstrcpy(workgroup,optarg);
10112                         break;
10113                 case 'm':
10114                         lp_set_cmdline("client max protocol", optarg);
10115                         break;
10116                 case 'N':
10117                         torture_nprocs = atoi(optarg);
10118                         break;
10119                 case 'o':
10120                         torture_numops = atoi(optarg);
10121                         break;
10122                 case 'd':
10123                         lp_set_cmdline("log level", optarg);
10124                         break;
10125                 case 'O':
10126                         sockops = optarg;
10127                         break;
10128                 case 'L':
10129                         use_oplocks = True;
10130                         break;
10131                 case 'l':
10132                         local_path = optarg;
10133                         break;
10134                 case 'A':
10135                         torture_showall = True;
10136                         break;
10137                 case 'n':
10138                         fstrcpy(myname, optarg);
10139                         break;
10140                 case 'c':
10141                         client_txt = optarg;
10142                         break;
10143                 case 'e':
10144                         do_encrypt = true;
10145                         break;
10146                 case 'k':
10147 #ifdef HAVE_KRB5
10148                         use_kerberos = True;
10149 #else
10150                         d_printf("No kerberos support compiled in\n");
10151                         exit(1);
10152 #endif
10153                         break;
10154                 case 'U':
10155                         gotuser = 1;
10156                         fstrcpy(username,optarg);
10157                         p = strchr_m(username,'%');
10158                         if (p) {
10159                                 *p = 0;
10160                                 fstrcpy(password, p+1);
10161                                 gotpass = 1;
10162                         }
10163                         break;
10164                 case 'b':
10165                         fstrcpy(multishare_conn_fname, optarg);
10166                         use_multishare_conn = True;
10167                         break;
10168                 case 'B':
10169                         torture_blocksize = atoi(optarg);
10170                         break;
10171                 case 'f':
10172                         test_filename = SMB_STRDUP(optarg);
10173                         break;
10174                 default:
10175                         printf("Unknown option %c (%d)\n", (char)opt, opt);
10176                         usage();
10177                 }
10178         }
10179
10180         d_printf("using seed %d\n", seed);
10181
10182         srandom(seed);
10183
10184         if(use_kerberos && !gotuser) gotpass = True;
10185
10186         while (!gotpass) {
10187                 char pwd[256] = {0};
10188                 int rc;
10189
10190                 rc = samba_getpass("Password:", pwd, sizeof(pwd), false, false);
10191                 if (rc == 0) {
10192                         fstrcpy(password, pwd);
10193                         gotpass = 1;
10194                 }
10195         }
10196
10197         printf("host=%s share=%s user=%s myname=%s\n", 
10198                host, share, username, myname);
10199
10200         if (argc == optind) {
10201                 correct = run_test("ALL");
10202         } else {
10203                 for (i=optind;i<argc;i++) {
10204                         if (!run_test(argv[i])) {
10205                                 correct = False;
10206                         }
10207                 }
10208         }
10209
10210         TALLOC_FREE(frame);
10211
10212         if (correct) {
10213                 return(0);
10214         } else {
10215                 return(1);
10216         }
10217 }