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