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