s3:libsmb: add cli_{query,set}_security_descriptor() which take sec_info flags
[Samba/gebeck_regimport.git] / source3 / torture / torture.c
blob89b34e4da085f35764517b785da649667e081f70
1 /*
2 Unix SMB/CIFS implementation.
3 SMB torture tester
4 Copyright (C) Andrew Tridgell 1997-1998
5 Copyright (C) Jeremy Allison 2009
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.
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.
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/>.
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 "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"
45 extern char *optarg;
46 extern int optind;
48 fstring host, workgroup, share, password, username, myname;
49 static int max_protocol = PROTOCOL_NT1;
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 int signing_state = SMB_SIGNING_DEFAULT;
69 char *test_filename;
71 bool torture_showall = False;
73 static double create_procs(bool (*fn)(int), bool *result);
75 /********************************************************************
76 Ensure a connection is encrypted.
77 ********************************************************************/
79 static bool force_cli_encryption(struct cli_state *c,
80 const char *sharename)
82 uint16 major, minor;
83 uint32 caplow, caphigh;
84 NTSTATUS status;
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;
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;
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;
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);
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;
125 return true;
129 static struct cli_state *open_nbt_connection(void)
131 struct cli_state *c;
132 NTSTATUS status;
133 int flags = 0;
135 if (disable_spnego) {
136 flags |= CLI_FULL_CONNECTION_DONT_SPNEGO;
139 if (use_oplocks) {
140 flags |= CLI_FULL_CONNECTION_OPLOCKS;
143 if (use_level_II_oplocks) {
144 flags |= CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS;
147 if (use_kerberos) {
148 flags |= CLI_FULL_CONNECTION_USE_KERBEROS;
151 if (force_dos_errors) {
152 flags |= CLI_FULL_CONNECTION_FORCE_DOS_ERRORS;
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;
162 cli_set_timeout(c, 120000); /* set a really long timeout (2 minutes) */
164 return c;
167 /****************************************************************************
168 Send a corrupt session request. See rfc1002.txt 4.3 and 4.3.2.
169 ****************************************************************************/
171 static bool cli_bad_session_request(int fd,
172 struct nmb_name *calling, struct nmb_name *called)
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 event_context *ev;
184 struct tevent_req *req;
186 frame = talloc_stackframe();
188 iov[0].iov_base = len_buf;
189 iov[0].iov_len = sizeof(len_buf);
191 /* put in the destination name */
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;
198 iov[1].iov_len = name_len((unsigned char *)iov[1].iov_base,
199 talloc_get_size(iov[1].iov_base));
201 /* and my name */
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;
208 iov[2].iov_len = name_len((unsigned char *)iov[2].iov_base,
209 talloc_get_size(iov[2].iov_base));
211 /* Deliberately corrupt the name len (first byte) */
212 *((uint8_t *)iov[2].iov_base) = 100;
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.
223 _smb_setlen(len_buf, iov[1].iov_len + iov[2].iov_len);
224 SCVAL(len_buf,0,0x81);
226 len = write_data_iov(fd, iov, 3);
227 if (len == -1) {
228 goto fail;
231 ev = event_context_init(frame);
232 if (ev == NULL) {
233 goto fail;
235 req = read_smb_send(frame, ev, fd);
236 if (req == NULL) {
237 goto fail;
239 if (!tevent_req_poll(req, ev)) {
240 goto fail;
242 len = read_smb_recv(req, talloc_tos(), &inbuf, &err);
243 if (len == -1) {
244 errno = err;
245 goto fail;
247 TALLOC_FREE(ev);
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;
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;
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;
269 ret = true;
270 fail:
271 TALLOC_FREE(frame);
272 return ret;
275 /* Insert a NULL at the first separator of the given path and return a pointer
276 * to the remainder of the string.
278 static char *
279 terminate_path_at_separator(char * path)
281 char * p;
283 if (!path) {
284 return NULL;
287 if ((p = strchr_m(path, '/'))) {
288 *p = '\0';
289 return p + 1;
292 if ((p = strchr_m(path, '\\'))) {
293 *p = '\0';
294 return p + 1;
297 /* No separator. */
298 return NULL;
302 parse a //server/share type UNC name
304 bool smbcli_parse_unc(const char *unc_name, TALLOC_CTX *mem_ctx,
305 char **hostname, char **sharename)
307 char *p;
309 *hostname = *sharename = NULL;
311 if (strncmp(unc_name, "\\\\", 2) &&
312 strncmp(unc_name, "//", 2)) {
313 return False;
316 *hostname = talloc_strdup(mem_ctx, &unc_name[2]);
317 p = terminate_path_at_separator(*hostname);
319 if (p && *p) {
320 *sharename = talloc_strdup(mem_ctx, p);
321 terminate_path_at_separator(*sharename);
324 if (*hostname && *sharename) {
325 return True;
328 TALLOC_FREE(*hostname);
329 TALLOC_FREE(*sharename);
330 return False;
333 static bool torture_open_connection_share(struct cli_state **c,
334 const char *hostname,
335 const char *sharename)
337 int flags = 0;
338 NTSTATUS status;
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;
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;
358 cli_set_timeout(*c, 120000); /* set a really long timeout (2 minutes) */
360 if (do_encrypt) {
361 return force_cli_encryption(*c,
362 sharename);
364 return True;
367 bool torture_open_connection(struct cli_state **c, int conn_index)
369 char **unc_list = NULL;
370 int num_unc_names = 0;
371 bool result;
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);
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);
389 result = torture_open_connection_share(c, h, s);
391 /* h, s were copied earlier */
392 TALLOC_FREE(unc_list);
393 return result;
396 return torture_open_connection_share(c, host, share);
399 bool torture_init_connection(struct cli_state **pcli)
401 struct cli_state *cli;
403 cli = open_nbt_connection();
404 if (cli == NULL) {
405 return false;
408 *pcli = cli;
409 return true;
412 bool torture_cli_session_setup2(struct cli_state *cli, uint16 *new_vuid)
414 uint16_t old_vuid = cli_state_get_uid(cli);
415 fstring old_user_name;
416 size_t passlen = strlen(password);
417 NTSTATUS status;
418 bool ret;
420 fstrcpy(old_user_name, cli->user_name);
421 cli_state_set_uid(cli, 0);
422 ret = NT_STATUS_IS_OK(cli_session_setup(cli, username,
423 password, passlen,
424 password, passlen,
425 workgroup));
426 *new_vuid = cli_state_get_uid(cli);
427 cli_state_set_uid(cli, old_vuid);
428 status = cli_set_username(cli, old_user_name);
429 if (!NT_STATUS_IS_OK(status)) {
430 return false;
432 return ret;
436 bool torture_close_connection(struct cli_state *c)
438 bool ret = True;
439 NTSTATUS status;
441 status = cli_tdis(c);
442 if (!NT_STATUS_IS_OK(status)) {
443 printf("tdis failed (%s)\n", nt_errstr(status));
444 ret = False;
447 cli_shutdown(c);
449 return ret;
453 /* check if the server produced the expected dos or nt error code */
454 static bool check_both_error(int line, NTSTATUS status,
455 uint8 eclass, uint32 ecode, NTSTATUS nterr)
457 if (NT_STATUS_IS_DOS(status)) {
458 uint8 cclass;
459 uint32 num;
461 /* Check DOS error */
462 cclass = NT_STATUS_DOS_CLASS(status);
463 num = NT_STATUS_DOS_CODE(status);
465 if (eclass != cclass || ecode != num) {
466 printf("unexpected error code class=%d code=%d\n",
467 (int)cclass, (int)num);
468 printf(" expected %d/%d %s (line=%d)\n",
469 (int)eclass, (int)ecode, nt_errstr(nterr), line);
470 return false;
472 } else {
473 /* Check NT error */
474 if (!NT_STATUS_EQUAL(nterr, status)) {
475 printf("unexpected error code %s\n",
476 nt_errstr(status));
477 printf(" expected %s (line=%d)\n",
478 nt_errstr(nterr), line);
479 return false;
483 return true;
487 /* check if the server produced the expected error code */
488 static bool check_error(int line, NTSTATUS status,
489 uint8 eclass, uint32 ecode, NTSTATUS nterr)
491 if (NT_STATUS_IS_DOS(status)) {
492 uint8 cclass;
493 uint32 num;
495 /* Check DOS error */
497 cclass = NT_STATUS_DOS_CLASS(status);
498 num = NT_STATUS_DOS_CODE(status);
500 if (eclass != cclass || ecode != num) {
501 printf("unexpected error code class=%d code=%d\n",
502 (int)cclass, (int)num);
503 printf(" expected %d/%d %s (line=%d)\n",
504 (int)eclass, (int)ecode, nt_errstr(nterr),
505 line);
506 return False;
509 } else {
510 /* Check NT error */
512 if (NT_STATUS_V(nterr) != NT_STATUS_V(status)) {
513 printf("unexpected error code %s\n",
514 nt_errstr(status));
515 printf(" expected %s (line=%d)\n", nt_errstr(nterr),
516 line);
517 return False;
521 return True;
525 static bool wait_lock(struct cli_state *c, int fnum, uint32 offset, uint32 len)
527 NTSTATUS status;
529 status = cli_lock32(c, fnum, offset, len, -1, WRITE_LOCK);
531 while (!NT_STATUS_IS_OK(status)) {
532 if (!check_both_error(__LINE__, status, ERRDOS,
533 ERRlock, NT_STATUS_LOCK_NOT_GRANTED)) {
534 return false;
537 status = cli_lock32(c, fnum, offset, len, -1, WRITE_LOCK);
540 return true;
544 static bool rw_torture(struct cli_state *c)
546 const char *lockfname = "\\torture.lck";
547 fstring fname;
548 uint16_t fnum;
549 uint16_t fnum2;
550 pid_t pid2, pid = getpid();
551 int i, j;
552 char buf[1024];
553 bool correct = True;
554 size_t nread = 0;
555 NTSTATUS status;
557 memset(buf, '\0', sizeof(buf));
559 status = cli_openx(c, lockfname, O_RDWR | O_CREAT | O_EXCL,
560 DENY_NONE, &fnum2);
561 if (!NT_STATUS_IS_OK(status)) {
562 status = cli_openx(c, lockfname, O_RDWR, DENY_NONE, &fnum2);
564 if (!NT_STATUS_IS_OK(status)) {
565 printf("open of %s failed (%s)\n",
566 lockfname, nt_errstr(status));
567 return False;
570 for (i=0;i<torture_numops;i++) {
571 unsigned n = (unsigned)sys_random()%10;
573 if (i % 10 == 0) {
574 printf("%d\r", i); fflush(stdout);
576 slprintf(fname, sizeof(fstring) - 1, "\\torture.%u", n);
578 if (!wait_lock(c, fnum2, n*sizeof(int), sizeof(int))) {
579 return False;
582 status = cli_openx(c, fname, O_RDWR | O_CREAT | O_TRUNC,
583 DENY_ALL, &fnum);
584 if (!NT_STATUS_IS_OK(status)) {
585 printf("open failed (%s)\n", nt_errstr(status));
586 correct = False;
587 break;
590 status = cli_writeall(c, fnum, 0, (uint8_t *)&pid, 0,
591 sizeof(pid), NULL);
592 if (!NT_STATUS_IS_OK(status)) {
593 printf("write failed (%s)\n", nt_errstr(status));
594 correct = False;
597 for (j=0;j<50;j++) {
598 status = cli_writeall(c, fnum, 0, (uint8_t *)buf,
599 sizeof(pid)+(j*sizeof(buf)),
600 sizeof(buf), NULL);
601 if (!NT_STATUS_IS_OK(status)) {
602 printf("write failed (%s)\n",
603 nt_errstr(status));
604 correct = False;
608 pid2 = 0;
610 status = cli_read(c, fnum, (char *)&pid2, 0, sizeof(pid),
611 &nread);
612 if (!NT_STATUS_IS_OK(status)) {
613 printf("read failed (%s)\n", nt_errstr(status));
614 correct = false;
615 } else if (nread != sizeof(pid)) {
616 printf("read/write compare failed: "
617 "recv %ld req %ld\n", (unsigned long)nread,
618 (unsigned long)sizeof(pid));
619 correct = false;
622 if (pid2 != pid) {
623 printf("data corruption!\n");
624 correct = False;
627 status = cli_close(c, fnum);
628 if (!NT_STATUS_IS_OK(status)) {
629 printf("close failed (%s)\n", nt_errstr(status));
630 correct = False;
633 status = cli_unlink(c, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
634 if (!NT_STATUS_IS_OK(status)) {
635 printf("unlink failed (%s)\n", nt_errstr(status));
636 correct = False;
639 status = cli_unlock(c, fnum2, n*sizeof(int), sizeof(int));
640 if (!NT_STATUS_IS_OK(status)) {
641 printf("unlock failed (%s)\n", nt_errstr(status));
642 correct = False;
646 cli_close(c, fnum2);
647 cli_unlink(c, lockfname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
649 printf("%d\n", i);
651 return correct;
654 static bool run_torture(int dummy)
656 struct cli_state *cli;
657 bool ret;
659 cli = current_cli;
661 smbXcli_conn_set_sockopt(cli->conn, sockops);
663 ret = rw_torture(cli);
665 if (!torture_close_connection(cli)) {
666 ret = False;
669 return ret;
672 static bool rw_torture3(struct cli_state *c, char *lockfname)
674 uint16_t fnum = (uint16_t)-1;
675 unsigned int i = 0;
676 char buf[131072];
677 char buf_rd[131072];
678 unsigned count;
679 unsigned countprev = 0;
680 size_t sent = 0;
681 bool correct = True;
682 NTSTATUS status = NT_STATUS_OK;
684 srandom(1);
685 for (i = 0; i < sizeof(buf); i += sizeof(uint32))
687 SIVAL(buf, i, sys_random());
690 if (procnum == 0)
692 status = cli_unlink(
693 c, lockfname,
694 FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
695 if (!NT_STATUS_IS_OK(status)) {
696 printf("unlink failed (%s) (normal, this file should "
697 "not exist)\n", nt_errstr(status));
700 status = cli_openx(c, lockfname, O_RDWR | O_CREAT | O_EXCL,
701 DENY_NONE, &fnum);
702 if (!NT_STATUS_IS_OK(status)) {
703 printf("first open read/write of %s failed (%s)\n",
704 lockfname, nt_errstr(status));
705 return False;
708 else
710 for (i = 0; i < 500 && fnum == (uint16_t)-1; i++)
712 status = cli_openx(c, lockfname, O_RDONLY,
713 DENY_NONE, &fnum);
714 if (!NT_STATUS_IS_OK(status)) {
715 break;
717 smb_msleep(10);
719 if (!NT_STATUS_IS_OK(status)) {
720 printf("second open read-only of %s failed (%s)\n",
721 lockfname, nt_errstr(status));
722 return False;
726 i = 0;
727 for (count = 0; count < sizeof(buf); count += sent)
729 if (count >= countprev) {
730 printf("%d %8d\r", i, count);
731 fflush(stdout);
732 i++;
733 countprev += (sizeof(buf) / 20);
736 if (procnum == 0)
738 sent = ((unsigned)sys_random()%(20))+ 1;
739 if (sent > sizeof(buf) - count)
741 sent = sizeof(buf) - count;
744 status = cli_writeall(c, fnum, 0, (uint8_t *)buf+count,
745 count, sent, NULL);
746 if (!NT_STATUS_IS_OK(status)) {
747 printf("write failed (%s)\n",
748 nt_errstr(status));
749 correct = False;
752 else
754 status = cli_read(c, fnum, buf_rd+count, count,
755 sizeof(buf)-count, &sent);
756 if(!NT_STATUS_IS_OK(status)) {
757 printf("read failed offset:%d size:%ld (%s)\n",
758 count, (unsigned long)sizeof(buf)-count,
759 nt_errstr(status));
760 correct = False;
761 sent = 0;
762 } else if (sent > 0) {
763 if (memcmp(buf_rd+count, buf+count, sent) != 0)
765 printf("read/write compare failed\n");
766 printf("offset: %d req %ld recvd %ld\n", count, (unsigned long)sizeof(buf)-count, (unsigned long)sent);
767 correct = False;
768 break;
775 status = cli_close(c, fnum);
776 if (!NT_STATUS_IS_OK(status)) {
777 printf("close failed (%s)\n", nt_errstr(status));
778 correct = False;
781 return correct;
784 static bool rw_torture2(struct cli_state *c1, struct cli_state *c2)
786 const char *lockfname = "\\torture2.lck";
787 uint16_t fnum1;
788 uint16_t fnum2;
789 int i;
790 char buf[131072];
791 char buf_rd[131072];
792 bool correct = True;
793 size_t bytes_read;
794 NTSTATUS status;
796 status = cli_unlink(c1, lockfname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
797 if (!NT_STATUS_IS_OK(status)) {
798 printf("unlink failed (%s) (normal, this file should not exist)\n", nt_errstr(status));
801 status = cli_openx(c1, lockfname, O_RDWR | O_CREAT | O_EXCL,
802 DENY_NONE, &fnum1);
803 if (!NT_STATUS_IS_OK(status)) {
804 printf("first open read/write of %s failed (%s)\n",
805 lockfname, nt_errstr(status));
806 return False;
809 status = cli_openx(c2, lockfname, O_RDONLY, DENY_NONE, &fnum2);
810 if (!NT_STATUS_IS_OK(status)) {
811 printf("second open read-only of %s failed (%s)\n",
812 lockfname, nt_errstr(status));
813 cli_close(c1, fnum1);
814 return False;
817 for (i = 0; i < torture_numops; i++)
819 size_t buf_size = ((unsigned)sys_random()%(sizeof(buf)-1))+ 1;
820 if (i % 10 == 0) {
821 printf("%d\r", i); fflush(stdout);
824 generate_random_buffer((unsigned char *)buf, buf_size);
826 status = cli_writeall(c1, fnum1, 0, (uint8_t *)buf, 0,
827 buf_size, NULL);
828 if (!NT_STATUS_IS_OK(status)) {
829 printf("write failed (%s)\n", nt_errstr(status));
830 correct = False;
831 break;
834 status = cli_read(c2, fnum2, buf_rd, 0, buf_size, &bytes_read);
835 if(!NT_STATUS_IS_OK(status)) {
836 printf("read failed (%s)\n", nt_errstr(status));
837 correct = false;
838 break;
839 } else if (bytes_read != buf_size) {
840 printf("read failed\n");
841 printf("read %ld, expected %ld\n",
842 (unsigned long)bytes_read,
843 (unsigned long)buf_size);
844 correct = False;
845 break;
848 if (memcmp(buf_rd, buf, buf_size) != 0)
850 printf("read/write compare failed\n");
851 correct = False;
852 break;
856 status = cli_close(c2, fnum2);
857 if (!NT_STATUS_IS_OK(status)) {
858 printf("close failed (%s)\n", nt_errstr(status));
859 correct = False;
862 status = cli_close(c1, fnum1);
863 if (!NT_STATUS_IS_OK(status)) {
864 printf("close failed (%s)\n", nt_errstr(status));
865 correct = False;
868 status = cli_unlink(c1, lockfname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
869 if (!NT_STATUS_IS_OK(status)) {
870 printf("unlink failed (%s)\n", nt_errstr(status));
871 correct = False;
874 return correct;
877 static bool run_readwritetest(int dummy)
879 struct cli_state *cli1, *cli2;
880 bool test1, test2 = False;
882 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
883 return False;
885 smbXcli_conn_set_sockopt(cli1->conn, sockops);
886 smbXcli_conn_set_sockopt(cli2->conn, sockops);
888 printf("starting readwritetest\n");
890 test1 = rw_torture2(cli1, cli2);
891 printf("Passed readwritetest v1: %s\n", BOOLSTR(test1));
893 if (test1) {
894 test2 = rw_torture2(cli1, cli1);
895 printf("Passed readwritetest v2: %s\n", BOOLSTR(test2));
898 if (!torture_close_connection(cli1)) {
899 test1 = False;
902 if (!torture_close_connection(cli2)) {
903 test2 = False;
906 return (test1 && test2);
909 static bool run_readwritemulti(int dummy)
911 struct cli_state *cli;
912 bool test;
914 cli = current_cli;
916 smbXcli_conn_set_sockopt(cli->conn, sockops);
918 printf("run_readwritemulti: fname %s\n", randomfname);
919 test = rw_torture3(cli, randomfname);
921 if (!torture_close_connection(cli)) {
922 test = False;
925 return test;
928 static bool run_readwritelarge_internal(void)
930 static struct cli_state *cli1;
931 uint16_t fnum1;
932 const char *lockfname = "\\large.dat";
933 off_t fsize;
934 char buf[126*1024];
935 bool correct = True;
936 NTSTATUS status;
938 if (!torture_open_connection(&cli1, 0)) {
939 return False;
941 smbXcli_conn_set_sockopt(cli1->conn, sockops);
942 memset(buf,'\0',sizeof(buf));
944 printf("starting readwritelarge_internal\n");
946 cli_unlink(cli1, lockfname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
948 status = cli_openx(cli1, lockfname, O_RDWR | O_CREAT | O_EXCL,
949 DENY_NONE, &fnum1);
950 if (!NT_STATUS_IS_OK(status)) {
951 printf("open read/write of %s failed (%s)\n", lockfname, nt_errstr(status));
952 return False;
955 cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 0, sizeof(buf), NULL);
957 status = cli_qfileinfo_basic(cli1, fnum1, NULL, &fsize, NULL, NULL,
958 NULL, NULL, NULL);
959 if (!NT_STATUS_IS_OK(status)) {
960 printf("qfileinfo failed (%s)\n", nt_errstr(status));
961 correct = False;
964 if (fsize == sizeof(buf))
965 printf("readwritelarge_internal test 1 succeeded (size = %lx)\n",
966 (unsigned long)fsize);
967 else {
968 printf("readwritelarge_internal test 1 failed (size = %lx)\n",
969 (unsigned long)fsize);
970 correct = False;
973 status = cli_close(cli1, fnum1);
974 if (!NT_STATUS_IS_OK(status)) {
975 printf("close failed (%s)\n", nt_errstr(status));
976 correct = False;
979 status = cli_unlink(cli1, lockfname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
980 if (!NT_STATUS_IS_OK(status)) {
981 printf("unlink failed (%s)\n", nt_errstr(status));
982 correct = False;
985 status = cli_openx(cli1, lockfname, O_RDWR | O_CREAT | O_EXCL,
986 DENY_NONE, &fnum1);
987 if (!NT_STATUS_IS_OK(status)) {
988 printf("open read/write of %s failed (%s)\n", lockfname, nt_errstr(status));
989 return False;
992 cli_smbwrite(cli1, fnum1, buf, 0, sizeof(buf), NULL);
994 status = cli_qfileinfo_basic(cli1, fnum1, NULL, &fsize, NULL, NULL,
995 NULL, NULL, NULL);
996 if (!NT_STATUS_IS_OK(status)) {
997 printf("qfileinfo failed (%s)\n", nt_errstr(status));
998 correct = False;
1001 if (fsize == sizeof(buf))
1002 printf("readwritelarge_internal test 2 succeeded (size = %lx)\n",
1003 (unsigned long)fsize);
1004 else {
1005 printf("readwritelarge_internal test 2 failed (size = %lx)\n",
1006 (unsigned long)fsize);
1007 correct = False;
1010 #if 0
1011 /* ToDo - set allocation. JRA */
1012 if(!cli_set_allocation_size(cli1, fnum1, 0)) {
1013 printf("set allocation size to zero failed (%s)\n", cli_errstr(&cli1));
1014 return False;
1016 if (!cli_qfileinfo_basic(cli1, fnum1, NULL, &fsize, NULL, NULL, NULL,
1017 NULL, NULL)) {
1018 printf("qfileinfo failed (%s)\n", cli_errstr(cli1));
1019 correct = False;
1021 if (fsize != 0)
1022 printf("readwritelarge test 3 (truncate test) succeeded (size = %x)\n", fsize);
1023 #endif
1025 status = cli_close(cli1, fnum1);
1026 if (!NT_STATUS_IS_OK(status)) {
1027 printf("close failed (%s)\n", nt_errstr(status));
1028 correct = False;
1031 if (!torture_close_connection(cli1)) {
1032 correct = False;
1034 return correct;
1037 static bool run_readwritelarge(int dummy)
1039 return run_readwritelarge_internal();
1042 static bool run_readwritelarge_signtest(int dummy)
1044 bool ret;
1045 signing_state = SMB_SIGNING_REQUIRED;
1046 ret = run_readwritelarge_internal();
1047 signing_state = SMB_SIGNING_DEFAULT;
1048 return ret;
1051 int line_count = 0;
1052 int nbio_id;
1054 #define ival(s) strtol(s, NULL, 0)
1056 /* run a test that simulates an approximate netbench client load */
1057 static bool run_netbench(int client)
1059 struct cli_state *cli;
1060 int i;
1061 char line[1024];
1062 char cname[20];
1063 FILE *f;
1064 const char *params[20];
1065 bool correct = True;
1067 cli = current_cli;
1069 nbio_id = client;
1071 smbXcli_conn_set_sockopt(cli->conn, sockops);
1073 nb_setup(cli);
1075 slprintf(cname,sizeof(cname)-1, "client%d", client);
1077 f = fopen(client_txt, "r");
1079 if (!f) {
1080 perror(client_txt);
1081 return False;
1084 while (fgets(line, sizeof(line)-1, f)) {
1085 char *saveptr;
1086 line_count++;
1088 line[strlen(line)-1] = 0;
1090 /* printf("[%d] %s\n", line_count, line); */
1092 all_string_sub(line,"client1", cname, sizeof(line));
1094 /* parse the command parameters */
1095 params[0] = strtok_r(line, " ", &saveptr);
1096 i = 0;
1097 while (params[i]) params[++i] = strtok_r(NULL, " ", &saveptr);
1099 params[i] = "";
1101 if (i < 2) continue;
1103 if (!strncmp(params[0],"SMB", 3)) {
1104 printf("ERROR: You are using a dbench 1 load file\n");
1105 exit(1);
1108 if (!strcmp(params[0],"NTCreateX")) {
1109 nb_createx(params[1], ival(params[2]), ival(params[3]),
1110 ival(params[4]));
1111 } else if (!strcmp(params[0],"Close")) {
1112 nb_close(ival(params[1]));
1113 } else if (!strcmp(params[0],"Rename")) {
1114 nb_rename(params[1], params[2]);
1115 } else if (!strcmp(params[0],"Unlink")) {
1116 nb_unlink(params[1]);
1117 } else if (!strcmp(params[0],"Deltree")) {
1118 nb_deltree(params[1]);
1119 } else if (!strcmp(params[0],"Rmdir")) {
1120 nb_rmdir(params[1]);
1121 } else if (!strcmp(params[0],"QUERY_PATH_INFORMATION")) {
1122 nb_qpathinfo(params[1]);
1123 } else if (!strcmp(params[0],"QUERY_FILE_INFORMATION")) {
1124 nb_qfileinfo(ival(params[1]));
1125 } else if (!strcmp(params[0],"QUERY_FS_INFORMATION")) {
1126 nb_qfsinfo(ival(params[1]));
1127 } else if (!strcmp(params[0],"FIND_FIRST")) {
1128 nb_findfirst(params[1]);
1129 } else if (!strcmp(params[0],"WriteX")) {
1130 nb_writex(ival(params[1]),
1131 ival(params[2]), ival(params[3]), ival(params[4]));
1132 } else if (!strcmp(params[0],"ReadX")) {
1133 nb_readx(ival(params[1]),
1134 ival(params[2]), ival(params[3]), ival(params[4]));
1135 } else if (!strcmp(params[0],"Flush")) {
1136 nb_flush(ival(params[1]));
1137 } else {
1138 printf("Unknown operation %s\n", params[0]);
1139 exit(1);
1142 fclose(f);
1144 nb_cleanup();
1146 if (!torture_close_connection(cli)) {
1147 correct = False;
1150 return correct;
1154 /* run a test that simulates an approximate netbench client load */
1155 static bool run_nbench(int dummy)
1157 double t;
1158 bool correct = True;
1160 nbio_shmem(torture_nprocs);
1162 nbio_id = -1;
1164 signal(SIGALRM, nb_alarm);
1165 alarm(1);
1166 t = create_procs(run_netbench, &correct);
1167 alarm(0);
1169 printf("\nThroughput %g MB/sec\n",
1170 1.0e-6 * nbio_total() / t);
1171 return correct;
1176 This test checks for two things:
1178 1) correct support for retaining locks over a close (ie. the server
1179 must not use posix semantics)
1180 2) support for lock timeouts
1182 static bool run_locktest1(int dummy)
1184 struct cli_state *cli1, *cli2;
1185 const char *fname = "\\lockt1.lck";
1186 uint16_t fnum1, fnum2, fnum3;
1187 time_t t1, t2;
1188 unsigned lock_timeout;
1189 NTSTATUS status;
1191 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
1192 return False;
1194 smbXcli_conn_set_sockopt(cli1->conn, sockops);
1195 smbXcli_conn_set_sockopt(cli2->conn, sockops);
1197 printf("starting locktest1\n");
1199 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1201 status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
1202 &fnum1);
1203 if (!NT_STATUS_IS_OK(status)) {
1204 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
1205 return False;
1208 status = cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum2);
1209 if (!NT_STATUS_IS_OK(status)) {
1210 printf("open2 of %s failed (%s)\n", fname, nt_errstr(status));
1211 return False;
1214 status = cli_openx(cli2, fname, O_RDWR, DENY_NONE, &fnum3);
1215 if (!NT_STATUS_IS_OK(status)) {
1216 printf("open3 of %s failed (%s)\n", fname, nt_errstr(status));
1217 return False;
1220 status = cli_lock32(cli1, fnum1, 0, 4, 0, WRITE_LOCK);
1221 if (!NT_STATUS_IS_OK(status)) {
1222 printf("lock1 failed (%s)\n", nt_errstr(status));
1223 return false;
1226 status = cli_lock32(cli2, fnum3, 0, 4, 0, WRITE_LOCK);
1227 if (NT_STATUS_IS_OK(status)) {
1228 printf("lock2 succeeded! This is a locking bug\n");
1229 return false;
1230 } else {
1231 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1232 NT_STATUS_LOCK_NOT_GRANTED)) {
1233 return false;
1237 lock_timeout = (1 + (random() % 20));
1238 printf("Testing lock timeout with timeout=%u\n", lock_timeout);
1239 t1 = time(NULL);
1240 status = cli_lock32(cli2, fnum3, 0, 4, lock_timeout * 1000, WRITE_LOCK);
1241 if (NT_STATUS_IS_OK(status)) {
1242 printf("lock3 succeeded! This is a locking bug\n");
1243 return false;
1244 } else {
1245 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1246 NT_STATUS_FILE_LOCK_CONFLICT)) {
1247 return false;
1250 t2 = time(NULL);
1252 if (ABS(t2 - t1) < lock_timeout-1) {
1253 printf("error: This server appears not to support timed lock requests\n");
1256 printf("server slept for %u seconds for a %u second timeout\n",
1257 (unsigned int)(t2-t1), lock_timeout);
1259 status = cli_close(cli1, fnum2);
1260 if (!NT_STATUS_IS_OK(status)) {
1261 printf("close1 failed (%s)\n", nt_errstr(status));
1262 return False;
1265 status = cli_lock32(cli2, fnum3, 0, 4, 0, WRITE_LOCK);
1266 if (NT_STATUS_IS_OK(status)) {
1267 printf("lock4 succeeded! This is a locking bug\n");
1268 return false;
1269 } else {
1270 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1271 NT_STATUS_FILE_LOCK_CONFLICT)) {
1272 return false;
1276 status = cli_close(cli1, fnum1);
1277 if (!NT_STATUS_IS_OK(status)) {
1278 printf("close2 failed (%s)\n", nt_errstr(status));
1279 return False;
1282 status = cli_close(cli2, fnum3);
1283 if (!NT_STATUS_IS_OK(status)) {
1284 printf("close3 failed (%s)\n", nt_errstr(status));
1285 return False;
1288 status = cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1289 if (!NT_STATUS_IS_OK(status)) {
1290 printf("unlink failed (%s)\n", nt_errstr(status));
1291 return False;
1295 if (!torture_close_connection(cli1)) {
1296 return False;
1299 if (!torture_close_connection(cli2)) {
1300 return False;
1303 printf("Passed locktest1\n");
1304 return True;
1308 this checks to see if a secondary tconx can use open files from an
1309 earlier tconx
1311 static bool run_tcon_test(int dummy)
1313 static struct cli_state *cli;
1314 const char *fname = "\\tcontest.tmp";
1315 uint16 fnum1;
1316 uint16 cnum1, cnum2, cnum3;
1317 uint16 vuid1, vuid2;
1318 char buf[4];
1319 bool ret = True;
1320 NTSTATUS status;
1322 memset(buf, '\0', sizeof(buf));
1324 if (!torture_open_connection(&cli, 0)) {
1325 return False;
1327 smbXcli_conn_set_sockopt(cli->conn, sockops);
1329 printf("starting tcontest\n");
1331 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1333 status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
1334 if (!NT_STATUS_IS_OK(status)) {
1335 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
1336 return False;
1339 cnum1 = cli_state_get_tid(cli);
1340 vuid1 = cli_state_get_uid(cli);
1342 status = cli_writeall(cli, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
1343 if (!NT_STATUS_IS_OK(status)) {
1344 printf("initial write failed (%s)", nt_errstr(status));
1345 return False;
1348 status = cli_tree_connect(cli, share, "?????",
1349 password, strlen(password)+1);
1350 if (!NT_STATUS_IS_OK(status)) {
1351 printf("%s refused 2nd tree connect (%s)\n", host,
1352 nt_errstr(status));
1353 cli_shutdown(cli);
1354 return False;
1357 cnum2 = cli_state_get_tid(cli);
1358 cnum3 = MAX(cnum1, cnum2) + 1; /* any invalid number */
1359 vuid2 = cli_state_get_uid(cli) + 1;
1361 /* try a write with the wrong tid */
1362 cli_state_set_tid(cli, cnum2);
1364 status = cli_writeall(cli, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
1365 if (NT_STATUS_IS_OK(status)) {
1366 printf("* server allows write with wrong TID\n");
1367 ret = False;
1368 } else {
1369 printf("server fails write with wrong TID : %s\n",
1370 nt_errstr(status));
1374 /* try a write with an invalid tid */
1375 cli_state_set_tid(cli, cnum3);
1377 status = cli_writeall(cli, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
1378 if (NT_STATUS_IS_OK(status)) {
1379 printf("* server allows write with invalid TID\n");
1380 ret = False;
1381 } else {
1382 printf("server fails write with invalid TID : %s\n",
1383 nt_errstr(status));
1386 /* try a write with an invalid vuid */
1387 cli_state_set_uid(cli, vuid2);
1388 cli_state_set_tid(cli, cnum1);
1390 status = cli_writeall(cli, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
1391 if (NT_STATUS_IS_OK(status)) {
1392 printf("* server allows write with invalid VUID\n");
1393 ret = False;
1394 } else {
1395 printf("server fails write with invalid VUID : %s\n",
1396 nt_errstr(status));
1399 cli_state_set_tid(cli, cnum1);
1400 cli_state_set_uid(cli, vuid1);
1402 status = cli_close(cli, fnum1);
1403 if (!NT_STATUS_IS_OK(status)) {
1404 printf("close failed (%s)\n", nt_errstr(status));
1405 return False;
1408 cli_state_set_tid(cli, cnum2);
1410 status = cli_tdis(cli);
1411 if (!NT_STATUS_IS_OK(status)) {
1412 printf("secondary tdis failed (%s)\n", nt_errstr(status));
1413 return False;
1416 cli_state_set_tid(cli, cnum1);
1418 if (!torture_close_connection(cli)) {
1419 return False;
1422 return ret;
1427 checks for old style tcon support
1429 static bool run_tcon2_test(int dummy)
1431 static struct cli_state *cli;
1432 uint16 cnum, max_xmit;
1433 char *service;
1434 NTSTATUS status;
1436 if (!torture_open_connection(&cli, 0)) {
1437 return False;
1439 smbXcli_conn_set_sockopt(cli->conn, sockops);
1441 printf("starting tcon2 test\n");
1443 if (asprintf(&service, "\\\\%s\\%s", host, share) == -1) {
1444 return false;
1447 status = cli_raw_tcon(cli, service, password, "?????", &max_xmit, &cnum);
1449 SAFE_FREE(service);
1451 if (!NT_STATUS_IS_OK(status)) {
1452 printf("tcon2 failed : %s\n", nt_errstr(status));
1453 } else {
1454 printf("tcon OK : max_xmit=%d cnum=%d\n",
1455 (int)max_xmit, (int)cnum);
1458 if (!torture_close_connection(cli)) {
1459 return False;
1462 printf("Passed tcon2 test\n");
1463 return True;
1466 static bool tcon_devtest(struct cli_state *cli,
1467 const char *myshare, const char *devtype,
1468 const char *return_devtype,
1469 NTSTATUS expected_error)
1471 NTSTATUS status;
1472 bool ret;
1474 status = cli_tree_connect(cli, myshare, devtype,
1475 password, strlen(password)+1);
1477 if (NT_STATUS_IS_OK(expected_error)) {
1478 if (NT_STATUS_IS_OK(status)) {
1479 if (strcmp(cli->dev, return_devtype) == 0) {
1480 ret = True;
1481 } else {
1482 printf("tconX to share %s with type %s "
1483 "succeeded but returned the wrong "
1484 "device type (got [%s] but should have got [%s])\n",
1485 myshare, devtype, cli->dev, return_devtype);
1486 ret = False;
1488 } else {
1489 printf("tconX to share %s with type %s "
1490 "should have succeeded but failed\n",
1491 myshare, devtype);
1492 ret = False;
1494 cli_tdis(cli);
1495 } else {
1496 if (NT_STATUS_IS_OK(status)) {
1497 printf("tconx to share %s with type %s "
1498 "should have failed but succeeded\n",
1499 myshare, devtype);
1500 ret = False;
1501 } else {
1502 if (NT_STATUS_EQUAL(status, expected_error)) {
1503 ret = True;
1504 } else {
1505 printf("Returned unexpected error\n");
1506 ret = False;
1510 return ret;
1514 checks for correct tconX support
1516 static bool run_tcon_devtype_test(int dummy)
1518 static struct cli_state *cli1 = NULL;
1519 int flags = 0;
1520 NTSTATUS status;
1521 bool ret = True;
1523 status = cli_full_connection(&cli1, myname,
1524 host, NULL, port_to_use,
1525 NULL, NULL,
1526 username, workgroup,
1527 password, flags, signing_state);
1529 if (!NT_STATUS_IS_OK(status)) {
1530 printf("could not open connection\n");
1531 return False;
1534 if (!tcon_devtest(cli1, "IPC$", "A:", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1535 ret = False;
1537 if (!tcon_devtest(cli1, "IPC$", "?????", "IPC", NT_STATUS_OK))
1538 ret = False;
1540 if (!tcon_devtest(cli1, "IPC$", "LPT:", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1541 ret = False;
1543 if (!tcon_devtest(cli1, "IPC$", "IPC", "IPC", NT_STATUS_OK))
1544 ret = False;
1546 if (!tcon_devtest(cli1, "IPC$", "FOOBA", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1547 ret = False;
1549 if (!tcon_devtest(cli1, share, "A:", "A:", NT_STATUS_OK))
1550 ret = False;
1552 if (!tcon_devtest(cli1, share, "?????", "A:", NT_STATUS_OK))
1553 ret = False;
1555 if (!tcon_devtest(cli1, share, "LPT:", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1556 ret = False;
1558 if (!tcon_devtest(cli1, share, "IPC", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1559 ret = False;
1561 if (!tcon_devtest(cli1, share, "FOOBA", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1562 ret = False;
1564 cli_shutdown(cli1);
1566 if (ret)
1567 printf("Passed tcondevtest\n");
1569 return ret;
1574 This test checks that
1576 1) the server supports multiple locking contexts on the one SMB
1577 connection, distinguished by PID.
1579 2) the server correctly fails overlapping locks made by the same PID (this
1580 goes against POSIX behaviour, which is why it is tricky to implement)
1582 3) the server denies unlock requests by an incorrect client PID
1584 static bool run_locktest2(int dummy)
1586 static struct cli_state *cli;
1587 const char *fname = "\\lockt2.lck";
1588 uint16_t fnum1, fnum2, fnum3;
1589 bool correct = True;
1590 NTSTATUS status;
1592 if (!torture_open_connection(&cli, 0)) {
1593 return False;
1596 smbXcli_conn_set_sockopt(cli->conn, sockops);
1598 printf("starting locktest2\n");
1600 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1602 cli_setpid(cli, 1);
1604 status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
1605 if (!NT_STATUS_IS_OK(status)) {
1606 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
1607 return False;
1610 status = cli_openx(cli, fname, O_RDWR, DENY_NONE, &fnum2);
1611 if (!NT_STATUS_IS_OK(status)) {
1612 printf("open2 of %s failed (%s)\n", fname, nt_errstr(status));
1613 return False;
1616 cli_setpid(cli, 2);
1618 status = cli_openx(cli, fname, O_RDWR, DENY_NONE, &fnum3);
1619 if (!NT_STATUS_IS_OK(status)) {
1620 printf("open3 of %s failed (%s)\n", fname, nt_errstr(status));
1621 return False;
1624 cli_setpid(cli, 1);
1626 status = cli_lock32(cli, fnum1, 0, 4, 0, WRITE_LOCK);
1627 if (!NT_STATUS_IS_OK(status)) {
1628 printf("lock1 failed (%s)\n", nt_errstr(status));
1629 return false;
1632 status = cli_lock32(cli, fnum1, 0, 4, 0, WRITE_LOCK);
1633 if (NT_STATUS_IS_OK(status)) {
1634 printf("WRITE lock1 succeeded! This is a locking bug\n");
1635 correct = false;
1636 } else {
1637 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1638 NT_STATUS_LOCK_NOT_GRANTED)) {
1639 return false;
1643 status = cli_lock32(cli, fnum2, 0, 4, 0, WRITE_LOCK);
1644 if (NT_STATUS_IS_OK(status)) {
1645 printf("WRITE lock2 succeeded! This is a locking bug\n");
1646 correct = false;
1647 } else {
1648 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1649 NT_STATUS_LOCK_NOT_GRANTED)) {
1650 return false;
1654 status = cli_lock32(cli, fnum2, 0, 4, 0, READ_LOCK);
1655 if (NT_STATUS_IS_OK(status)) {
1656 printf("READ lock2 succeeded! This is a locking bug\n");
1657 correct = false;
1658 } else {
1659 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1660 NT_STATUS_FILE_LOCK_CONFLICT)) {
1661 return false;
1665 status = cli_lock32(cli, fnum1, 100, 4, 0, WRITE_LOCK);
1666 if (!NT_STATUS_IS_OK(status)) {
1667 printf("lock at 100 failed (%s)\n", nt_errstr(status));
1669 cli_setpid(cli, 2);
1670 if (NT_STATUS_IS_OK(cli_unlock(cli, fnum1, 100, 4))) {
1671 printf("unlock at 100 succeeded! This is a locking bug\n");
1672 correct = False;
1675 status = cli_unlock(cli, fnum1, 0, 4);
1676 if (NT_STATUS_IS_OK(status)) {
1677 printf("unlock1 succeeded! This is a locking bug\n");
1678 correct = false;
1679 } else {
1680 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1681 NT_STATUS_RANGE_NOT_LOCKED)) {
1682 return false;
1686 status = cli_unlock(cli, fnum1, 0, 8);
1687 if (NT_STATUS_IS_OK(status)) {
1688 printf("unlock2 succeeded! This is a locking bug\n");
1689 correct = false;
1690 } else {
1691 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1692 NT_STATUS_RANGE_NOT_LOCKED)) {
1693 return false;
1697 status = cli_lock32(cli, fnum3, 0, 4, 0, WRITE_LOCK);
1698 if (NT_STATUS_IS_OK(status)) {
1699 printf("lock3 succeeded! This is a locking bug\n");
1700 correct = false;
1701 } else {
1702 if (!check_both_error(__LINE__, status, ERRDOS, ERRlock,
1703 NT_STATUS_LOCK_NOT_GRANTED)) {
1704 return false;
1708 cli_setpid(cli, 1);
1710 status = cli_close(cli, fnum1);
1711 if (!NT_STATUS_IS_OK(status)) {
1712 printf("close1 failed (%s)\n", nt_errstr(status));
1713 return False;
1716 status = cli_close(cli, fnum2);
1717 if (!NT_STATUS_IS_OK(status)) {
1718 printf("close2 failed (%s)\n", nt_errstr(status));
1719 return False;
1722 status = cli_close(cli, fnum3);
1723 if (!NT_STATUS_IS_OK(status)) {
1724 printf("close3 failed (%s)\n", nt_errstr(status));
1725 return False;
1728 if (!torture_close_connection(cli)) {
1729 correct = False;
1732 printf("locktest2 finished\n");
1734 return correct;
1739 This test checks that
1741 1) the server supports the full offset range in lock requests
1743 static bool run_locktest3(int dummy)
1745 static struct cli_state *cli1, *cli2;
1746 const char *fname = "\\lockt3.lck";
1747 uint16_t fnum1, fnum2;
1748 int i;
1749 uint32 offset;
1750 bool correct = True;
1751 NTSTATUS status;
1753 #define NEXT_OFFSET offset += (~(uint32)0) / torture_numops
1755 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
1756 return False;
1758 smbXcli_conn_set_sockopt(cli1->conn, sockops);
1759 smbXcli_conn_set_sockopt(cli2->conn, sockops);
1761 printf("starting locktest3\n");
1763 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1765 status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
1766 &fnum1);
1767 if (!NT_STATUS_IS_OK(status)) {
1768 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
1769 return False;
1772 status = cli_openx(cli2, fname, O_RDWR, DENY_NONE, &fnum2);
1773 if (!NT_STATUS_IS_OK(status)) {
1774 printf("open2 of %s failed (%s)\n", fname, nt_errstr(status));
1775 return False;
1778 for (offset=i=0;i<torture_numops;i++) {
1779 NEXT_OFFSET;
1781 status = cli_lock32(cli1, fnum1, offset-1, 1, 0, WRITE_LOCK);
1782 if (!NT_STATUS_IS_OK(status)) {
1783 printf("lock1 %d failed (%s)\n",
1785 nt_errstr(status));
1786 return False;
1789 status = cli_lock32(cli2, fnum2, offset-2, 1, 0, WRITE_LOCK);
1790 if (!NT_STATUS_IS_OK(status)) {
1791 printf("lock2 %d failed (%s)\n",
1793 nt_errstr(status));
1794 return False;
1798 for (offset=i=0;i<torture_numops;i++) {
1799 NEXT_OFFSET;
1801 status = cli_lock32(cli1, fnum1, offset-2, 1, 0, WRITE_LOCK);
1802 if (NT_STATUS_IS_OK(status)) {
1803 printf("error: lock1 %d succeeded!\n", i);
1804 return False;
1807 status = cli_lock32(cli2, fnum2, offset-1, 1, 0, WRITE_LOCK);
1808 if (NT_STATUS_IS_OK(status)) {
1809 printf("error: lock2 %d succeeded!\n", i);
1810 return False;
1813 status = cli_lock32(cli1, fnum1, offset-1, 1, 0, WRITE_LOCK);
1814 if (NT_STATUS_IS_OK(status)) {
1815 printf("error: lock3 %d succeeded!\n", i);
1816 return False;
1819 status = cli_lock32(cli2, fnum2, offset-2, 1, 0, WRITE_LOCK);
1820 if (NT_STATUS_IS_OK(status)) {
1821 printf("error: lock4 %d succeeded!\n", i);
1822 return False;
1826 for (offset=i=0;i<torture_numops;i++) {
1827 NEXT_OFFSET;
1829 status = cli_unlock(cli1, fnum1, offset-1, 1);
1830 if (!NT_STATUS_IS_OK(status)) {
1831 printf("unlock1 %d failed (%s)\n",
1833 nt_errstr(status));
1834 return False;
1837 status = cli_unlock(cli2, fnum2, offset-2, 1);
1838 if (!NT_STATUS_IS_OK(status)) {
1839 printf("unlock2 %d failed (%s)\n",
1841 nt_errstr(status));
1842 return False;
1846 status = cli_close(cli1, fnum1);
1847 if (!NT_STATUS_IS_OK(status)) {
1848 printf("close1 failed (%s)\n", nt_errstr(status));
1849 return False;
1852 status = cli_close(cli2, fnum2);
1853 if (!NT_STATUS_IS_OK(status)) {
1854 printf("close2 failed (%s)\n", nt_errstr(status));
1855 return False;
1858 status = cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1859 if (!NT_STATUS_IS_OK(status)) {
1860 printf("unlink failed (%s)\n", nt_errstr(status));
1861 return False;
1864 if (!torture_close_connection(cli1)) {
1865 correct = False;
1868 if (!torture_close_connection(cli2)) {
1869 correct = False;
1872 printf("finished locktest3\n");
1874 return correct;
1877 static bool test_cli_read(struct cli_state *cli, uint16_t fnum,
1878 char *buf, off_t offset, size_t size,
1879 size_t *nread, size_t expect)
1881 NTSTATUS status;
1882 size_t l_nread;
1884 status = cli_read(cli, fnum, buf, offset, size, &l_nread);
1886 if(!NT_STATUS_IS_OK(status)) {
1887 return false;
1888 } else if (l_nread != expect) {
1889 return false;
1892 if (nread) {
1893 *nread = l_nread;
1896 return true;
1899 #define EXPECTED(ret, v) if ((ret) != (v)) { \
1900 printf("** "); correct = False; \
1904 looks at overlapping locks
1906 static bool run_locktest4(int dummy)
1908 static struct cli_state *cli1, *cli2;
1909 const char *fname = "\\lockt4.lck";
1910 uint16_t fnum1, fnum2, f;
1911 bool ret;
1912 char buf[1000];
1913 bool correct = True;
1914 NTSTATUS status;
1916 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
1917 return False;
1920 smbXcli_conn_set_sockopt(cli1->conn, sockops);
1921 smbXcli_conn_set_sockopt(cli2->conn, sockops);
1923 printf("starting locktest4\n");
1925 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
1927 cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
1928 cli_openx(cli2, fname, O_RDWR, DENY_NONE, &fnum2);
1930 memset(buf, 0, sizeof(buf));
1932 status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 0, sizeof(buf),
1933 NULL);
1934 if (!NT_STATUS_IS_OK(status)) {
1935 printf("Failed to create file: %s\n", nt_errstr(status));
1936 correct = False;
1937 goto fail;
1940 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 4, 0, WRITE_LOCK)) &&
1941 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 2, 4, 0, WRITE_LOCK));
1942 EXPECTED(ret, False);
1943 printf("the same process %s set overlapping write locks\n", ret?"can":"cannot");
1945 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 10, 4, 0, READ_LOCK)) &&
1946 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 12, 4, 0, READ_LOCK));
1947 EXPECTED(ret, True);
1948 printf("the same process %s set overlapping read locks\n", ret?"can":"cannot");
1950 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 20, 4, 0, WRITE_LOCK)) &&
1951 NT_STATUS_IS_OK(cli_lock32(cli2, fnum2, 22, 4, 0, WRITE_LOCK));
1952 EXPECTED(ret, False);
1953 printf("a different connection %s set overlapping write locks\n", ret?"can":"cannot");
1955 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 30, 4, 0, READ_LOCK)) &&
1956 NT_STATUS_IS_OK(cli_lock32(cli2, fnum2, 32, 4, 0, READ_LOCK));
1957 EXPECTED(ret, True);
1958 printf("a different connection %s set overlapping read locks\n", ret?"can":"cannot");
1960 ret = (cli_setpid(cli1, 1),
1961 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 40, 4, 0, WRITE_LOCK))) &&
1962 (cli_setpid(cli1, 2),
1963 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 42, 4, 0, WRITE_LOCK)));
1964 EXPECTED(ret, False);
1965 printf("a different pid %s set overlapping write locks\n", ret?"can":"cannot");
1967 ret = (cli_setpid(cli1, 1),
1968 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 50, 4, 0, READ_LOCK))) &&
1969 (cli_setpid(cli1, 2),
1970 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 52, 4, 0, READ_LOCK)));
1971 EXPECTED(ret, True);
1972 printf("a different pid %s set overlapping read locks\n", ret?"can":"cannot");
1974 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 60, 4, 0, READ_LOCK)) &&
1975 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 60, 4, 0, READ_LOCK));
1976 EXPECTED(ret, True);
1977 printf("the same process %s set the same read lock twice\n", ret?"can":"cannot");
1979 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 70, 4, 0, WRITE_LOCK)) &&
1980 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 70, 4, 0, WRITE_LOCK));
1981 EXPECTED(ret, False);
1982 printf("the same process %s set the same write lock twice\n", ret?"can":"cannot");
1984 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 80, 4, 0, READ_LOCK)) &&
1985 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 80, 4, 0, WRITE_LOCK));
1986 EXPECTED(ret, False);
1987 printf("the same process %s overlay a read lock with a write lock\n", ret?"can":"cannot");
1989 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 90, 4, 0, WRITE_LOCK)) &&
1990 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 90, 4, 0, READ_LOCK));
1991 EXPECTED(ret, True);
1992 printf("the same process %s overlay a write lock with a read lock\n", ret?"can":"cannot");
1994 ret = (cli_setpid(cli1, 1),
1995 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 100, 4, 0, WRITE_LOCK))) &&
1996 (cli_setpid(cli1, 2),
1997 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 100, 4, 0, READ_LOCK)));
1998 EXPECTED(ret, False);
1999 printf("a different pid %s overlay a write lock with a read lock\n", ret?"can":"cannot");
2001 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 110, 4, 0, READ_LOCK)) &&
2002 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 112, 4, 0, READ_LOCK)) &&
2003 NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 110, 6));
2004 EXPECTED(ret, False);
2005 printf("the same process %s coalesce read locks\n", ret?"can":"cannot");
2008 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 120, 4, 0, WRITE_LOCK)) &&
2009 test_cli_read(cli2, fnum2, buf, 120, 4, NULL, 4);
2010 EXPECTED(ret, False);
2011 printf("this server %s strict write locking\n", ret?"doesn't do":"does");
2013 status = cli_lock32(cli1, fnum1, 130, 4, 0, READ_LOCK);
2014 ret = NT_STATUS_IS_OK(status);
2015 if (ret) {
2016 status = cli_writeall(cli2, fnum2, 0, (uint8_t *)buf, 130, 4,
2017 NULL);
2018 ret = NT_STATUS_IS_OK(status);
2020 EXPECTED(ret, False);
2021 printf("this server %s strict read locking\n", ret?"doesn't do":"does");
2024 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 140, 4, 0, READ_LOCK)) &&
2025 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 140, 4, 0, READ_LOCK)) &&
2026 NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 140, 4)) &&
2027 NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 140, 4));
2028 EXPECTED(ret, True);
2029 printf("this server %s do recursive read locking\n", ret?"does":"doesn't");
2032 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 150, 4, 0, WRITE_LOCK)) &&
2033 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 150, 4, 0, READ_LOCK)) &&
2034 NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 150, 4)) &&
2035 test_cli_read(cli2, fnum2, buf, 150, 4, NULL, 4) &&
2036 !(NT_STATUS_IS_OK(cli_writeall(cli2, fnum2, 0, (uint8_t *)buf,
2037 150, 4, NULL))) &&
2038 NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 150, 4));
2039 EXPECTED(ret, True);
2040 printf("this server %s do recursive lock overlays\n", ret?"does":"doesn't");
2042 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 160, 4, 0, READ_LOCK)) &&
2043 NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 160, 4)) &&
2044 NT_STATUS_IS_OK(cli_writeall(cli2, fnum2, 0, (uint8_t *)buf,
2045 160, 4, NULL)) &&
2046 test_cli_read(cli2, fnum2, buf, 160, 4, NULL, 4);
2047 EXPECTED(ret, True);
2048 printf("the same process %s remove a read lock using write locking\n", ret?"can":"cannot");
2050 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 170, 4, 0, WRITE_LOCK)) &&
2051 NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 170, 4)) &&
2052 NT_STATUS_IS_OK(cli_writeall(cli2, fnum2, 0, (uint8_t *)buf,
2053 170, 4, NULL)) &&
2054 test_cli_read(cli2, fnum2, buf, 170, 4, NULL, 4);
2055 EXPECTED(ret, True);
2056 printf("the same process %s remove a write lock using read locking\n", ret?"can":"cannot");
2058 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 190, 4, 0, WRITE_LOCK)) &&
2059 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 190, 4, 0, READ_LOCK)) &&
2060 NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 190, 4)) &&
2061 !NT_STATUS_IS_OK(cli_writeall(cli2, fnum2, 0, (uint8_t *)buf,
2062 190, 4, NULL)) &&
2063 test_cli_read(cli2, fnum2, buf, 190, 4, NULL, 4);
2064 EXPECTED(ret, True);
2065 printf("the same process %s remove the first lock first\n", ret?"does":"doesn't");
2067 cli_close(cli1, fnum1);
2068 cli_close(cli2, fnum2);
2069 cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
2070 cli_openx(cli1, fname, O_RDWR, DENY_NONE, &f);
2071 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 8, 0, READ_LOCK)) &&
2072 NT_STATUS_IS_OK(cli_lock32(cli1, f, 0, 1, 0, READ_LOCK)) &&
2073 NT_STATUS_IS_OK(cli_close(cli1, fnum1)) &&
2074 NT_STATUS_IS_OK(cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1)) &&
2075 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 7, 1, 0, WRITE_LOCK));
2076 cli_close(cli1, f);
2077 cli_close(cli1, fnum1);
2078 EXPECTED(ret, True);
2079 printf("the server %s have the NT byte range lock bug\n", !ret?"does":"doesn't");
2081 fail:
2082 cli_close(cli1, fnum1);
2083 cli_close(cli2, fnum2);
2084 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2085 torture_close_connection(cli1);
2086 torture_close_connection(cli2);
2088 printf("finished locktest4\n");
2089 return correct;
2093 looks at lock upgrade/downgrade.
2095 static bool run_locktest5(int dummy)
2097 static struct cli_state *cli1, *cli2;
2098 const char *fname = "\\lockt5.lck";
2099 uint16_t fnum1, fnum2, fnum3;
2100 bool ret;
2101 char buf[1000];
2102 bool correct = True;
2103 NTSTATUS status;
2105 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
2106 return False;
2109 smbXcli_conn_set_sockopt(cli1->conn, sockops);
2110 smbXcli_conn_set_sockopt(cli2->conn, sockops);
2112 printf("starting locktest5\n");
2114 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2116 cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
2117 cli_openx(cli2, fname, O_RDWR, DENY_NONE, &fnum2);
2118 cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum3);
2120 memset(buf, 0, sizeof(buf));
2122 status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 0, sizeof(buf),
2123 NULL);
2124 if (!NT_STATUS_IS_OK(status)) {
2125 printf("Failed to create file: %s\n", nt_errstr(status));
2126 correct = False;
2127 goto fail;
2130 /* Check for NT bug... */
2131 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 8, 0, READ_LOCK)) &&
2132 NT_STATUS_IS_OK(cli_lock32(cli1, fnum3, 0, 1, 0, READ_LOCK));
2133 cli_close(cli1, fnum1);
2134 cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
2135 status = cli_lock32(cli1, fnum1, 7, 1, 0, WRITE_LOCK);
2136 ret = NT_STATUS_IS_OK(status);
2137 EXPECTED(ret, True);
2138 printf("this server %s the NT locking bug\n", ret ? "doesn't have" : "has");
2139 cli_close(cli1, fnum1);
2140 cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
2141 cli_unlock(cli1, fnum3, 0, 1);
2143 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 4, 0, WRITE_LOCK)) &&
2144 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 1, 1, 0, READ_LOCK));
2145 EXPECTED(ret, True);
2146 printf("the same process %s overlay a write with a read lock\n", ret?"can":"cannot");
2148 status = cli_lock32(cli2, fnum2, 0, 4, 0, READ_LOCK);
2149 ret = NT_STATUS_IS_OK(status);
2150 EXPECTED(ret, False);
2152 printf("a different processs %s get a read lock on the first process lock stack\n", ret?"can":"cannot");
2154 /* Unlock the process 2 lock. */
2155 cli_unlock(cli2, fnum2, 0, 4);
2157 status = cli_lock32(cli1, fnum3, 0, 4, 0, READ_LOCK);
2158 ret = NT_STATUS_IS_OK(status);
2159 EXPECTED(ret, False);
2161 printf("the same processs on a different fnum %s get a read lock\n", ret?"can":"cannot");
2163 /* Unlock the process 1 fnum3 lock. */
2164 cli_unlock(cli1, fnum3, 0, 4);
2166 /* Stack 2 more locks here. */
2167 ret = NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 4, 0, READ_LOCK)) &&
2168 NT_STATUS_IS_OK(cli_lock32(cli1, fnum1, 0, 4, 0, READ_LOCK));
2170 EXPECTED(ret, True);
2171 printf("the same process %s stack read locks\n", ret?"can":"cannot");
2173 /* Unlock the first process lock, then check this was the WRITE lock that was
2174 removed. */
2176 ret = NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 0, 4)) &&
2177 NT_STATUS_IS_OK(cli_lock32(cli2, fnum2, 0, 4, 0, READ_LOCK));
2179 EXPECTED(ret, True);
2180 printf("the first unlock removes the %s lock\n", ret?"WRITE":"READ");
2182 /* Unlock the process 2 lock. */
2183 cli_unlock(cli2, fnum2, 0, 4);
2185 /* We should have 3 stacked locks here. Ensure we need to do 3 unlocks. */
2187 ret = NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 1, 1)) &&
2188 NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 0, 4)) &&
2189 NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 0, 4));
2191 EXPECTED(ret, True);
2192 printf("the same process %s unlock the stack of 4 locks\n", ret?"can":"cannot");
2194 /* Ensure the next unlock fails. */
2195 ret = NT_STATUS_IS_OK(cli_unlock(cli1, fnum1, 0, 4));
2196 EXPECTED(ret, False);
2197 printf("the same process %s count the lock stack\n", !ret?"can":"cannot");
2199 /* Ensure connection 2 can get a write lock. */
2200 status = cli_lock32(cli2, fnum2, 0, 4, 0, WRITE_LOCK);
2201 ret = NT_STATUS_IS_OK(status);
2202 EXPECTED(ret, True);
2204 printf("a different processs %s get a write lock on the unlocked stack\n", ret?"can":"cannot");
2207 fail:
2208 cli_close(cli1, fnum1);
2209 cli_close(cli2, fnum2);
2210 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2211 if (!torture_close_connection(cli1)) {
2212 correct = False;
2214 if (!torture_close_connection(cli2)) {
2215 correct = False;
2218 printf("finished locktest5\n");
2220 return correct;
2224 tries the unusual lockingX locktype bits
2226 static bool run_locktest6(int dummy)
2228 static struct cli_state *cli;
2229 const char *fname[1] = { "\\lock6.txt" };
2230 int i;
2231 uint16_t fnum;
2232 NTSTATUS status;
2234 if (!torture_open_connection(&cli, 0)) {
2235 return False;
2238 smbXcli_conn_set_sockopt(cli->conn, sockops);
2240 printf("starting locktest6\n");
2242 for (i=0;i<1;i++) {
2243 printf("Testing %s\n", fname[i]);
2245 cli_unlink(cli, fname[i], FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2247 cli_openx(cli, fname[i], O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum);
2248 status = cli_locktype(cli, fnum, 0, 8, 0, LOCKING_ANDX_CHANGE_LOCKTYPE);
2249 cli_close(cli, fnum);
2250 printf("CHANGE_LOCKTYPE gave %s\n", nt_errstr(status));
2252 cli_openx(cli, fname[i], O_RDWR, DENY_NONE, &fnum);
2253 status = cli_locktype(cli, fnum, 0, 8, 0, LOCKING_ANDX_CANCEL_LOCK);
2254 cli_close(cli, fnum);
2255 printf("CANCEL_LOCK gave %s\n", nt_errstr(status));
2257 cli_unlink(cli, fname[i], FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2260 torture_close_connection(cli);
2262 printf("finished locktest6\n");
2263 return True;
2266 static bool run_locktest7(int dummy)
2268 struct cli_state *cli1;
2269 const char *fname = "\\lockt7.lck";
2270 uint16_t fnum1;
2271 char buf[200];
2272 bool correct = False;
2273 size_t nread;
2274 NTSTATUS status;
2276 if (!torture_open_connection(&cli1, 0)) {
2277 return False;
2280 smbXcli_conn_set_sockopt(cli1->conn, sockops);
2282 printf("starting locktest7\n");
2284 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2286 cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
2288 memset(buf, 0, sizeof(buf));
2290 status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 0, sizeof(buf),
2291 NULL);
2292 if (!NT_STATUS_IS_OK(status)) {
2293 printf("Failed to create file: %s\n", nt_errstr(status));
2294 goto fail;
2297 cli_setpid(cli1, 1);
2299 status = cli_lock32(cli1, fnum1, 130, 4, 0, READ_LOCK);
2300 if (!NT_STATUS_IS_OK(status)) {
2301 printf("Unable to apply read lock on range 130:4, "
2302 "error was %s\n", nt_errstr(status));
2303 goto fail;
2304 } else {
2305 printf("pid1 successfully locked range 130:4 for READ\n");
2308 status = cli_read(cli1, fnum1, buf, 130, 4, &nread);
2309 if (!NT_STATUS_IS_OK(status)) {
2310 printf("pid1 unable to read the range 130:4, error was %s\n",
2311 nt_errstr(status));
2312 goto fail;
2313 } else if (nread != 4) {
2314 printf("pid1 unable to read the range 130:4, "
2315 "recv %ld req %d\n", (unsigned long)nread, 4);
2316 goto fail;
2317 } else {
2318 printf("pid1 successfully read the range 130:4\n");
2321 status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
2322 if (!NT_STATUS_IS_OK(status)) {
2323 printf("pid1 unable to write to the range 130:4, error was "
2324 "%s\n", nt_errstr(status));
2325 if (!NT_STATUS_EQUAL(status, NT_STATUS_FILE_LOCK_CONFLICT)) {
2326 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2327 goto fail;
2329 } else {
2330 printf("pid1 successfully wrote to the range 130:4 (should be denied)\n");
2331 goto fail;
2334 cli_setpid(cli1, 2);
2336 status = cli_read(cli1, fnum1, buf, 130, 4, &nread);
2337 if (!NT_STATUS_IS_OK(status)) {
2338 printf("pid2 unable to read the range 130:4, error was %s\n",
2339 nt_errstr(status));
2340 goto fail;
2341 } else if (nread != 4) {
2342 printf("pid2 unable to read the range 130:4, "
2343 "recv %ld req %d\n", (unsigned long)nread, 4);
2344 goto fail;
2345 } else {
2346 printf("pid2 successfully read the range 130:4\n");
2349 status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
2350 if (!NT_STATUS_IS_OK(status)) {
2351 printf("pid2 unable to write to the range 130:4, error was "
2352 "%s\n", nt_errstr(status));
2353 if (!NT_STATUS_EQUAL(status, NT_STATUS_FILE_LOCK_CONFLICT)) {
2354 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2355 goto fail;
2357 } else {
2358 printf("pid2 successfully wrote to the range 130:4 (should be denied)\n");
2359 goto fail;
2362 cli_setpid(cli1, 1);
2363 cli_unlock(cli1, fnum1, 130, 4);
2365 status = cli_lock32(cli1, fnum1, 130, 4, 0, WRITE_LOCK);
2366 if (!NT_STATUS_IS_OK(status)) {
2367 printf("Unable to apply write lock on range 130:4, error was %s\n", nt_errstr(status));
2368 goto fail;
2369 } else {
2370 printf("pid1 successfully locked range 130:4 for WRITE\n");
2373 status = cli_read(cli1, fnum1, buf, 130, 4, &nread);
2374 if (!NT_STATUS_IS_OK(status)) {
2375 printf("pid1 unable to read the range 130:4, error was %s\n",
2376 nt_errstr(status));
2377 goto fail;
2378 } else if (nread != 4) {
2379 printf("pid1 unable to read the range 130:4, "
2380 "recv %ld req %d\n", (unsigned long)nread, 4);
2381 goto fail;
2382 } else {
2383 printf("pid1 successfully read the range 130:4\n");
2386 status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
2387 if (!NT_STATUS_IS_OK(status)) {
2388 printf("pid1 unable to write to the range 130:4, error was "
2389 "%s\n", nt_errstr(status));
2390 goto fail;
2391 } else {
2392 printf("pid1 successfully wrote to the range 130:4\n");
2395 cli_setpid(cli1, 2);
2397 status = cli_read(cli1, fnum1, buf, 130, 4, &nread);
2398 if (!NT_STATUS_IS_OK(status)) {
2399 printf("pid2 unable to read the range 130:4, error was "
2400 "%s\n", nt_errstr(status));
2401 if (!NT_STATUS_EQUAL(status, NT_STATUS_FILE_LOCK_CONFLICT)) {
2402 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2403 goto fail;
2405 } else {
2406 printf("pid2 successfully read the range 130:4 (should be denied) recv %ld\n",
2407 (unsigned long)nread);
2408 goto fail;
2411 status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 130, 4, NULL);
2412 if (!NT_STATUS_IS_OK(status)) {
2413 printf("pid2 unable to write to the range 130:4, error was "
2414 "%s\n", nt_errstr(status));
2415 if (!NT_STATUS_EQUAL(status, NT_STATUS_FILE_LOCK_CONFLICT)) {
2416 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2417 goto fail;
2419 } else {
2420 printf("pid2 successfully wrote to the range 130:4 (should be denied)\n");
2421 goto fail;
2424 cli_unlock(cli1, fnum1, 130, 0);
2425 correct = True;
2427 fail:
2428 cli_close(cli1, fnum1);
2429 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2430 torture_close_connection(cli1);
2432 printf("finished locktest7\n");
2433 return correct;
2437 * This demonstrates a problem with our use of GPFS share modes: A file
2438 * descriptor sitting in the pending close queue holding a GPFS share mode
2439 * blocks opening a file another time. Happens with Word 2007 temp files.
2440 * With "posix locking = yes" and "gpfs:sharemodes = yes" enabled, the third
2441 * open is denied with NT_STATUS_SHARING_VIOLATION.
2444 static bool run_locktest8(int dummy)
2446 struct cli_state *cli1;
2447 const char *fname = "\\lockt8.lck";
2448 uint16_t fnum1, fnum2;
2449 char buf[200];
2450 bool correct = False;
2451 NTSTATUS status;
2453 if (!torture_open_connection(&cli1, 0)) {
2454 return False;
2457 smbXcli_conn_set_sockopt(cli1->conn, sockops);
2459 printf("starting locktest8\n");
2461 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2463 status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_WRITE,
2464 &fnum1);
2465 if (!NT_STATUS_IS_OK(status)) {
2466 d_fprintf(stderr, "cli_openx returned %s\n", nt_errstr(status));
2467 return false;
2470 memset(buf, 0, sizeof(buf));
2472 status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum2);
2473 if (!NT_STATUS_IS_OK(status)) {
2474 d_fprintf(stderr, "cli_openx second time returned %s\n",
2475 nt_errstr(status));
2476 goto fail;
2479 status = cli_lock32(cli1, fnum2, 1, 1, 0, READ_LOCK);
2480 if (!NT_STATUS_IS_OK(status)) {
2481 printf("Unable to apply read lock on range 1:1, error was "
2482 "%s\n", nt_errstr(status));
2483 goto fail;
2486 status = cli_close(cli1, fnum1);
2487 if (!NT_STATUS_IS_OK(status)) {
2488 d_fprintf(stderr, "cli_close(fnum1) %s\n", nt_errstr(status));
2489 goto fail;
2492 status = cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
2493 if (!NT_STATUS_IS_OK(status)) {
2494 d_fprintf(stderr, "cli_openx third time returned %s\n",
2495 nt_errstr(status));
2496 goto fail;
2499 correct = true;
2501 fail:
2502 cli_close(cli1, fnum1);
2503 cli_close(cli1, fnum2);
2504 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2505 torture_close_connection(cli1);
2507 printf("finished locktest8\n");
2508 return correct;
2512 * This test is designed to be run in conjunction with
2513 * external NFS or POSIX locks taken in the filesystem.
2514 * It checks that the smbd server will block until the
2515 * lock is released and then acquire it. JRA.
2518 static bool got_alarm;
2519 static struct cli_state *alarm_cli;
2521 static void alarm_handler(int dummy)
2523 got_alarm = True;
2526 static void alarm_handler_parent(int dummy)
2528 smbXcli_conn_disconnect(alarm_cli->conn, NT_STATUS_OK);
2531 static void do_local_lock(int read_fd, int write_fd)
2533 int fd;
2534 char c = '\0';
2535 struct flock lock;
2536 const char *local_pathname = NULL;
2537 int ret;
2539 local_pathname = talloc_asprintf(talloc_tos(),
2540 "%s/lockt9.lck", local_path);
2541 if (!local_pathname) {
2542 printf("child: alloc fail\n");
2543 exit(1);
2546 unlink(local_pathname);
2547 fd = open(local_pathname, O_RDWR|O_CREAT, 0666);
2548 if (fd == -1) {
2549 printf("child: open of %s failed %s.\n",
2550 local_pathname, strerror(errno));
2551 exit(1);
2554 /* Now take a fcntl lock. */
2555 lock.l_type = F_WRLCK;
2556 lock.l_whence = SEEK_SET;
2557 lock.l_start = 0;
2558 lock.l_len = 4;
2559 lock.l_pid = getpid();
2561 ret = fcntl(fd,F_SETLK,&lock);
2562 if (ret == -1) {
2563 printf("child: failed to get lock 0:4 on file %s. Error %s\n",
2564 local_pathname, strerror(errno));
2565 exit(1);
2566 } else {
2567 printf("child: got lock 0:4 on file %s.\n",
2568 local_pathname );
2569 fflush(stdout);
2572 CatchSignal(SIGALRM, alarm_handler);
2573 alarm(5);
2574 /* Signal the parent. */
2575 if (write(write_fd, &c, 1) != 1) {
2576 printf("child: start signal fail %s.\n",
2577 strerror(errno));
2578 exit(1);
2580 alarm(0);
2582 alarm(10);
2583 /* Wait for the parent to be ready. */
2584 if (read(read_fd, &c, 1) != 1) {
2585 printf("child: reply signal fail %s.\n",
2586 strerror(errno));
2587 exit(1);
2589 alarm(0);
2591 sleep(5);
2592 close(fd);
2593 printf("child: released lock 0:4 on file %s.\n",
2594 local_pathname );
2595 fflush(stdout);
2596 exit(0);
2599 static bool run_locktest9(int dummy)
2601 struct cli_state *cli1;
2602 const char *fname = "\\lockt9.lck";
2603 uint16_t fnum;
2604 bool correct = False;
2605 int pipe_in[2], pipe_out[2];
2606 pid_t child_pid;
2607 char c = '\0';
2608 int ret;
2609 struct timeval start;
2610 double seconds;
2611 NTSTATUS status;
2613 printf("starting locktest9\n");
2615 if (local_path == NULL) {
2616 d_fprintf(stderr, "locktest9 must be given a local path via -l <localpath>\n");
2617 return false;
2620 if (pipe(pipe_in) == -1 || pipe(pipe_out) == -1) {
2621 return false;
2624 child_pid = fork();
2625 if (child_pid == -1) {
2626 return false;
2629 if (child_pid == 0) {
2630 /* Child. */
2631 do_local_lock(pipe_out[0], pipe_in[1]);
2632 exit(0);
2635 close(pipe_out[0]);
2636 close(pipe_in[1]);
2637 pipe_out[0] = -1;
2638 pipe_in[1] = -1;
2640 /* Parent. */
2641 ret = read(pipe_in[0], &c, 1);
2642 if (ret != 1) {
2643 d_fprintf(stderr, "failed to read start signal from child. %s\n",
2644 strerror(errno));
2645 return false;
2648 if (!torture_open_connection(&cli1, 0)) {
2649 return false;
2652 smbXcli_conn_set_sockopt(cli1->conn, sockops);
2654 status = cli_openx(cli1, fname, O_RDWR, DENY_NONE,
2655 &fnum);
2656 if (!NT_STATUS_IS_OK(status)) {
2657 d_fprintf(stderr, "cli_openx returned %s\n", nt_errstr(status));
2658 return false;
2661 /* Ensure the child has the lock. */
2662 status = cli_lock32(cli1, fnum, 0, 4, 0, WRITE_LOCK);
2663 if (NT_STATUS_IS_OK(status)) {
2664 d_fprintf(stderr, "Got the lock on range 0:4 - this should not happen !\n");
2665 goto fail;
2666 } else {
2667 d_printf("Child has the lock.\n");
2670 /* Tell the child to wait 5 seconds then exit. */
2671 ret = write(pipe_out[1], &c, 1);
2672 if (ret != 1) {
2673 d_fprintf(stderr, "failed to send exit signal to child. %s\n",
2674 strerror(errno));
2675 goto fail;
2678 /* Wait 20 seconds for the lock. */
2679 alarm_cli = cli1;
2680 CatchSignal(SIGALRM, alarm_handler_parent);
2681 alarm(20);
2683 start = timeval_current();
2685 status = cli_lock32(cli1, fnum, 0, 4, -1, WRITE_LOCK);
2686 if (!NT_STATUS_IS_OK(status)) {
2687 d_fprintf(stderr, "Unable to apply write lock on range 0:4, error was "
2688 "%s\n", nt_errstr(status));
2689 goto fail_nofd;
2691 alarm(0);
2693 seconds = timeval_elapsed(&start);
2695 printf("Parent got the lock after %.2f seconds.\n",
2696 seconds);
2698 status = cli_close(cli1, fnum);
2699 if (!NT_STATUS_IS_OK(status)) {
2700 d_fprintf(stderr, "cli_close(fnum1) %s\n", nt_errstr(status));
2701 goto fail;
2704 correct = true;
2706 fail:
2707 cli_close(cli1, fnum);
2708 torture_close_connection(cli1);
2710 fail_nofd:
2712 printf("finished locktest9\n");
2713 return correct;
2717 test whether fnums and tids open on one VC are available on another (a major
2718 security hole)
2720 static bool run_fdpasstest(int dummy)
2722 struct cli_state *cli1, *cli2;
2723 const char *fname = "\\fdpass.tst";
2724 uint16_t fnum1;
2725 char buf[1024];
2726 NTSTATUS status;
2728 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
2729 return False;
2731 smbXcli_conn_set_sockopt(cli1->conn, sockops);
2732 smbXcli_conn_set_sockopt(cli2->conn, sockops);
2734 printf("starting fdpasstest\n");
2736 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2738 status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
2739 &fnum1);
2740 if (!NT_STATUS_IS_OK(status)) {
2741 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
2742 return False;
2745 status = cli_writeall(cli1, fnum1, 0, (const uint8_t *)"hello world\n", 0,
2746 13, NULL);
2747 if (!NT_STATUS_IS_OK(status)) {
2748 printf("write failed (%s)\n", nt_errstr(status));
2749 return False;
2752 cli_state_set_uid(cli2, cli_state_get_uid(cli1));
2753 cli_state_set_tid(cli2, cli_state_get_tid(cli1));
2754 cli_setpid(cli2, cli_getpid(cli1));
2756 if (test_cli_read(cli2, fnum1, buf, 0, 13, NULL, 13)) {
2757 printf("read succeeded! nasty security hole [%s]\n", buf);
2758 return false;
2761 cli_close(cli1, fnum1);
2762 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2764 torture_close_connection(cli1);
2765 torture_close_connection(cli2);
2767 printf("finished fdpasstest\n");
2768 return True;
2771 static bool run_fdsesstest(int dummy)
2773 struct cli_state *cli;
2774 uint16 new_vuid;
2775 uint16 saved_vuid;
2776 uint16 new_cnum;
2777 uint16 saved_cnum;
2778 const char *fname = "\\fdsess.tst";
2779 const char *fname1 = "\\fdsess1.tst";
2780 uint16_t fnum1;
2781 uint16_t fnum2;
2782 char buf[1024];
2783 bool ret = True;
2784 NTSTATUS status;
2786 if (!torture_open_connection(&cli, 0))
2787 return False;
2788 smbXcli_conn_set_sockopt(cli->conn, sockops);
2790 if (!torture_cli_session_setup2(cli, &new_vuid))
2791 return False;
2793 saved_cnum = cli_state_get_tid(cli);
2794 if (!NT_STATUS_IS_OK(cli_tree_connect(cli, share, "?????", "", 1)))
2795 return False;
2796 new_cnum = cli_state_get_tid(cli);
2797 cli_state_set_tid(cli, saved_cnum);
2799 printf("starting fdsesstest\n");
2801 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2802 cli_unlink(cli, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2804 status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
2805 if (!NT_STATUS_IS_OK(status)) {
2806 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
2807 return False;
2810 status = cli_writeall(cli, fnum1, 0, (const uint8_t *)"hello world\n", 0, 13,
2811 NULL);
2812 if (!NT_STATUS_IS_OK(status)) {
2813 printf("write failed (%s)\n", nt_errstr(status));
2814 return False;
2817 saved_vuid = cli_state_get_uid(cli);
2818 cli_state_set_uid(cli, new_vuid);
2820 if (test_cli_read(cli, fnum1, buf, 0, 13, NULL, 13)) {
2821 printf("read succeeded with different vuid! "
2822 "nasty security hole [%s]\n", buf);
2823 ret = false;
2825 /* Try to open a file with different vuid, samba cnum. */
2826 if (NT_STATUS_IS_OK(cli_openx(cli, fname1, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum2))) {
2827 printf("create with different vuid, same cnum succeeded.\n");
2828 cli_close(cli, fnum2);
2829 cli_unlink(cli, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2830 } else {
2831 printf("create with different vuid, same cnum failed.\n");
2832 printf("This will cause problems with service clients.\n");
2833 ret = False;
2836 cli_state_set_uid(cli, saved_vuid);
2838 /* Try with same vuid, different cnum. */
2839 cli_state_set_tid(cli, new_cnum);
2841 if (test_cli_read(cli, fnum1, buf, 0, 13, NULL, 13)) {
2842 printf("read succeeded with different cnum![%s]\n", buf);
2843 ret = false;
2846 cli_state_set_tid(cli, saved_cnum);
2847 cli_close(cli, fnum1);
2848 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2850 torture_close_connection(cli);
2852 printf("finished fdsesstest\n");
2853 return ret;
2857 This test checks that
2859 1) the server does not allow an unlink on a file that is open
2861 static bool run_unlinktest(int dummy)
2863 struct cli_state *cli;
2864 const char *fname = "\\unlink.tst";
2865 uint16_t fnum;
2866 bool correct = True;
2867 NTSTATUS status;
2869 if (!torture_open_connection(&cli, 0)) {
2870 return False;
2873 smbXcli_conn_set_sockopt(cli->conn, sockops);
2875 printf("starting unlink test\n");
2877 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2879 cli_setpid(cli, 1);
2881 status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum);
2882 if (!NT_STATUS_IS_OK(status)) {
2883 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
2884 return False;
2887 status = cli_unlink(cli, fname,
2888 FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2889 if (NT_STATUS_IS_OK(status)) {
2890 printf("error: server allowed unlink on an open file\n");
2891 correct = False;
2892 } else {
2893 correct = check_error(__LINE__, status, ERRDOS, ERRbadshare,
2894 NT_STATUS_SHARING_VIOLATION);
2897 cli_close(cli, fnum);
2898 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2900 if (!torture_close_connection(cli)) {
2901 correct = False;
2904 printf("unlink test finished\n");
2906 return correct;
2911 test how many open files this server supports on the one socket
2913 static bool run_maxfidtest(int dummy)
2915 struct cli_state *cli;
2916 fstring fname;
2917 uint16_t fnums[0x11000];
2918 int i;
2919 int retries=4;
2920 bool correct = True;
2921 NTSTATUS status;
2923 cli = current_cli;
2925 if (retries <= 0) {
2926 printf("failed to connect\n");
2927 return False;
2930 smbXcli_conn_set_sockopt(cli->conn, sockops);
2932 for (i=0; i<0x11000; i++) {
2933 slprintf(fname,sizeof(fname)-1,"\\maxfid.%d.%d", i,(int)getpid());
2934 status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE,
2935 &fnums[i]);
2936 if (!NT_STATUS_IS_OK(status)) {
2937 printf("open of %s failed (%s)\n",
2938 fname, nt_errstr(status));
2939 printf("maximum fnum is %d\n", i);
2940 break;
2942 printf("%6d\r", i);
2944 printf("%6d\n", i);
2945 i--;
2947 printf("cleaning up\n");
2948 for (;i>=0;i--) {
2949 slprintf(fname,sizeof(fname)-1,"\\maxfid.%d.%d", i,(int)getpid());
2950 cli_close(cli, fnums[i]);
2952 status = cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2953 if (!NT_STATUS_IS_OK(status)) {
2954 printf("unlink of %s failed (%s)\n",
2955 fname, nt_errstr(status));
2956 correct = False;
2958 printf("%6d\r", i);
2960 printf("%6d\n", 0);
2962 printf("maxfid test finished\n");
2963 if (!torture_close_connection(cli)) {
2964 correct = False;
2966 return correct;
2969 /* generate a random buffer */
2970 static void rand_buf(char *buf, int len)
2972 while (len--) {
2973 *buf = (char)sys_random();
2974 buf++;
2978 /* send smb negprot commands, not reading the response */
2979 static bool run_negprot_nowait(int dummy)
2981 struct tevent_context *ev;
2982 int i;
2983 struct cli_state *cli;
2984 bool correct = True;
2986 printf("starting negprot nowait test\n");
2988 ev = tevent_context_init(talloc_tos());
2989 if (ev == NULL) {
2990 return false;
2993 if (!(cli = open_nbt_connection())) {
2994 TALLOC_FREE(ev);
2995 return False;
2998 for (i=0;i<50000;i++) {
2999 struct tevent_req *req;
3001 req = smbXcli_negprot_send(ev, ev, cli->conn, cli->timeout,
3002 PROTOCOL_CORE, PROTOCOL_NT1);
3003 if (req == NULL) {
3004 TALLOC_FREE(ev);
3005 return false;
3007 if (!tevent_req_poll(req, ev)) {
3008 d_fprintf(stderr, "tevent_req_poll failed: %s\n",
3009 strerror(errno));
3010 TALLOC_FREE(ev);
3011 return false;
3013 TALLOC_FREE(req);
3016 if (torture_close_connection(cli)) {
3017 correct = False;
3020 printf("finished negprot nowait test\n");
3022 return correct;
3025 /* send smb negprot commands, not reading the response */
3026 static bool run_bad_nbt_session(int dummy)
3028 struct nmb_name called, calling;
3029 struct sockaddr_storage ss;
3030 NTSTATUS status;
3031 int fd;
3032 bool ret;
3034 printf("starting bad nbt session test\n");
3036 make_nmb_name(&calling, myname, 0x0);
3037 make_nmb_name(&called , host, 0x20);
3039 if (!resolve_name(host, &ss, 0x20, true)) {
3040 d_fprintf(stderr, "Could not resolve name %s\n", host);
3041 return false;
3044 status = open_socket_out(&ss, NBT_SMB_PORT, 10000, &fd);
3045 if (!NT_STATUS_IS_OK(status)) {
3046 d_fprintf(stderr, "open_socket_out failed: %s\n",
3047 nt_errstr(status));
3048 return false;
3051 ret = cli_bad_session_request(fd, &calling, &called);
3052 close(fd);
3053 if (!ret) {
3054 d_fprintf(stderr, "open_socket_out failed: %s\n",
3055 nt_errstr(status));
3056 return false;
3059 printf("finished bad nbt session test\n");
3060 return true;
3063 /* send random IPC commands */
3064 static bool run_randomipc(int dummy)
3066 char *rparam = NULL;
3067 char *rdata = NULL;
3068 unsigned int rdrcnt,rprcnt;
3069 char param[1024];
3070 int api, param_len, i;
3071 struct cli_state *cli;
3072 bool correct = True;
3073 int count = 50000;
3075 printf("starting random ipc test\n");
3077 if (!torture_open_connection(&cli, 0)) {
3078 return False;
3081 for (i=0;i<count;i++) {
3082 api = sys_random() % 500;
3083 param_len = (sys_random() % 64);
3085 rand_buf(param, param_len);
3087 SSVAL(param,0,api);
3089 cli_api(cli,
3090 param, param_len, 8,
3091 NULL, 0, BUFFER_SIZE,
3092 &rparam, &rprcnt,
3093 &rdata, &rdrcnt);
3094 if (i % 100 == 0) {
3095 printf("%d/%d\r", i,count);
3098 printf("%d/%d\n", i, count);
3100 if (!torture_close_connection(cli)) {
3101 correct = False;
3104 printf("finished random ipc test\n");
3106 return correct;
3111 static void browse_callback(const char *sname, uint32 stype,
3112 const char *comment, void *state)
3114 printf("\t%20.20s %08x %s\n", sname, stype, comment);
3120 This test checks the browse list code
3123 static bool run_browsetest(int dummy)
3125 static struct cli_state *cli;
3126 bool correct = True;
3128 printf("starting browse test\n");
3130 if (!torture_open_connection(&cli, 0)) {
3131 return False;
3134 printf("domain list:\n");
3135 cli_NetServerEnum(cli, cli->server_domain,
3136 SV_TYPE_DOMAIN_ENUM,
3137 browse_callback, NULL);
3139 printf("machine list:\n");
3140 cli_NetServerEnum(cli, cli->server_domain,
3141 SV_TYPE_ALL,
3142 browse_callback, NULL);
3144 if (!torture_close_connection(cli)) {
3145 correct = False;
3148 printf("browse test finished\n");
3150 return correct;
3156 This checks how the getatr calls works
3158 static bool run_attrtest(int dummy)
3160 struct cli_state *cli;
3161 uint16_t fnum;
3162 time_t t, t2;
3163 const char *fname = "\\attrib123456789.tst";
3164 bool correct = True;
3165 NTSTATUS status;
3167 printf("starting attrib test\n");
3169 if (!torture_open_connection(&cli, 0)) {
3170 return False;
3173 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3174 cli_openx(cli, fname,
3175 O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
3176 cli_close(cli, fnum);
3178 status = cli_getatr(cli, fname, NULL, NULL, &t);
3179 if (!NT_STATUS_IS_OK(status)) {
3180 printf("getatr failed (%s)\n", nt_errstr(status));
3181 correct = False;
3184 if (abs(t - time(NULL)) > 60*60*24*10) {
3185 printf("ERROR: SMBgetatr bug. time is %s",
3186 ctime(&t));
3187 t = time(NULL);
3188 correct = True;
3191 t2 = t-60*60*24; /* 1 day ago */
3193 status = cli_setatr(cli, fname, 0, t2);
3194 if (!NT_STATUS_IS_OK(status)) {
3195 printf("setatr failed (%s)\n", nt_errstr(status));
3196 correct = True;
3199 status = cli_getatr(cli, fname, NULL, NULL, &t);
3200 if (!NT_STATUS_IS_OK(status)) {
3201 printf("getatr failed (%s)\n", nt_errstr(status));
3202 correct = True;
3205 if (t != t2) {
3206 printf("ERROR: getatr/setatr bug. times are\n%s",
3207 ctime(&t));
3208 printf("%s", ctime(&t2));
3209 correct = True;
3212 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3214 if (!torture_close_connection(cli)) {
3215 correct = False;
3218 printf("attrib test finished\n");
3220 return correct;
3225 This checks a couple of trans2 calls
3227 static bool run_trans2test(int dummy)
3229 struct cli_state *cli;
3230 uint16_t fnum;
3231 off_t size;
3232 time_t c_time, a_time, m_time;
3233 struct timespec c_time_ts, a_time_ts, m_time_ts, w_time_ts, m_time2_ts;
3234 const char *fname = "\\trans2.tst";
3235 const char *dname = "\\trans2";
3236 const char *fname2 = "\\trans2\\trans2.tst";
3237 char *pname;
3238 bool correct = True;
3239 NTSTATUS status;
3240 uint32_t fs_attr;
3242 printf("starting trans2 test\n");
3244 if (!torture_open_connection(&cli, 0)) {
3245 return False;
3248 status = cli_get_fs_attr_info(cli, &fs_attr);
3249 if (!NT_STATUS_IS_OK(status)) {
3250 printf("ERROR: cli_get_fs_attr_info returned %s\n",
3251 nt_errstr(status));
3252 correct = false;
3255 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3256 cli_openx(cli, fname, O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
3257 status = cli_qfileinfo_basic(cli, fnum, NULL, &size, &c_time_ts,
3258 &a_time_ts, &w_time_ts, &m_time_ts, NULL);
3259 if (!NT_STATUS_IS_OK(status)) {
3260 printf("ERROR: qfileinfo failed (%s)\n", nt_errstr(status));
3261 correct = False;
3264 status = cli_qfilename(cli, fnum, talloc_tos(), &pname);
3265 if (!NT_STATUS_IS_OK(status)) {
3266 printf("ERROR: qfilename failed (%s)\n", nt_errstr(status));
3267 correct = False;
3270 if (strcmp(pname, fname)) {
3271 printf("qfilename gave different name? [%s] [%s]\n",
3272 fname, pname);
3273 correct = False;
3276 cli_close(cli, fnum);
3278 sleep(2);
3280 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3281 status = cli_openx(cli, fname, O_RDWR | O_CREAT | O_TRUNC, DENY_NONE,
3282 &fnum);
3283 if (!NT_STATUS_IS_OK(status)) {
3284 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3285 return False;
3287 cli_close(cli, fnum);
3289 status = cli_qpathinfo1(cli, fname, &c_time, &a_time, &m_time, &size,
3290 NULL);
3291 if (!NT_STATUS_IS_OK(status)) {
3292 printf("ERROR: qpathinfo failed (%s)\n", nt_errstr(status));
3293 correct = False;
3294 } else {
3295 time_t t = time(NULL);
3297 if (c_time != m_time) {
3298 printf("create time=%s", ctime(&c_time));
3299 printf("modify time=%s", ctime(&m_time));
3300 printf("This system appears to have sticky create times\n");
3302 if ((abs(a_time - t) > 60) && (a_time % (60*60) == 0)) {
3303 printf("access time=%s", ctime(&a_time));
3304 printf("This system appears to set a midnight access time\n");
3305 correct = False;
3308 if (abs(m_time - t) > 60*60*24*7) {
3309 printf("ERROR: totally incorrect times - maybe word reversed? mtime=%s", ctime(&m_time));
3310 correct = False;
3315 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3316 cli_openx(cli, fname,
3317 O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
3318 cli_close(cli, fnum);
3319 status = cli_qpathinfo2(cli, fname, &c_time_ts, &a_time_ts, &w_time_ts,
3320 &m_time_ts, &size, NULL, NULL);
3321 if (!NT_STATUS_IS_OK(status)) {
3322 printf("ERROR: qpathinfo2 failed (%s)\n", nt_errstr(status));
3323 correct = False;
3324 } else {
3325 if (w_time_ts.tv_sec < 60*60*24*2) {
3326 printf("write time=%s", ctime(&w_time_ts.tv_sec));
3327 printf("This system appears to set a initial 0 write time\n");
3328 correct = False;
3332 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3335 /* check if the server updates the directory modification time
3336 when creating a new file */
3337 status = cli_mkdir(cli, dname);
3338 if (!NT_STATUS_IS_OK(status)) {
3339 printf("ERROR: mkdir failed (%s)\n", nt_errstr(status));
3340 correct = False;
3342 sleep(3);
3343 status = cli_qpathinfo2(cli, "\\trans2\\", &c_time_ts, &a_time_ts,
3344 &w_time_ts, &m_time_ts, &size, NULL, NULL);
3345 if (!NT_STATUS_IS_OK(status)) {
3346 printf("ERROR: qpathinfo2 failed (%s)\n", nt_errstr(status));
3347 correct = False;
3350 cli_openx(cli, fname2,
3351 O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
3352 cli_writeall(cli, fnum, 0, (uint8_t *)&fnum, 0, sizeof(fnum), NULL);
3353 cli_close(cli, fnum);
3354 status = cli_qpathinfo2(cli, "\\trans2\\", &c_time_ts, &a_time_ts,
3355 &w_time_ts, &m_time2_ts, &size, NULL, NULL);
3356 if (!NT_STATUS_IS_OK(status)) {
3357 printf("ERROR: qpathinfo2 failed (%s)\n", nt_errstr(status));
3358 correct = False;
3359 } else {
3360 if (memcmp(&m_time_ts, &m_time2_ts, sizeof(struct timespec))
3361 == 0) {
3362 printf("This system does not update directory modification times\n");
3363 correct = False;
3366 cli_unlink(cli, fname2, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3367 cli_rmdir(cli, dname);
3369 if (!torture_close_connection(cli)) {
3370 correct = False;
3373 printf("trans2 test finished\n");
3375 return correct;
3379 This checks new W2K calls.
3382 static NTSTATUS new_trans(struct cli_state *pcli, int fnum, int level)
3384 uint8_t *buf = NULL;
3385 uint32 len;
3386 NTSTATUS status;
3388 status = cli_qfileinfo(talloc_tos(), pcli, fnum, level, 0,
3389 CLI_BUFFER_SIZE, NULL, &buf, &len);
3390 if (!NT_STATUS_IS_OK(status)) {
3391 printf("ERROR: qfileinfo (%d) failed (%s)\n", level,
3392 nt_errstr(status));
3393 } else {
3394 printf("qfileinfo: level %d, len = %u\n", level, len);
3395 dump_data(0, (uint8 *)buf, len);
3396 printf("\n");
3398 TALLOC_FREE(buf);
3399 return status;
3402 static bool run_w2ktest(int dummy)
3404 struct cli_state *cli;
3405 uint16_t fnum;
3406 const char *fname = "\\w2ktest\\w2k.tst";
3407 int level;
3408 bool correct = True;
3410 printf("starting w2k test\n");
3412 if (!torture_open_connection(&cli, 0)) {
3413 return False;
3416 cli_openx(cli, fname,
3417 O_RDWR | O_CREAT , DENY_NONE, &fnum);
3419 for (level = 1004; level < 1040; level++) {
3420 new_trans(cli, fnum, level);
3423 cli_close(cli, fnum);
3425 if (!torture_close_connection(cli)) {
3426 correct = False;
3429 printf("w2k test finished\n");
3431 return correct;
3436 this is a harness for some oplock tests
3438 static bool run_oplock1(int dummy)
3440 struct cli_state *cli1;
3441 const char *fname = "\\lockt1.lck";
3442 uint16_t fnum1;
3443 bool correct = True;
3444 NTSTATUS status;
3446 printf("starting oplock test 1\n");
3448 if (!torture_open_connection(&cli1, 0)) {
3449 return False;
3452 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3454 smbXcli_conn_set_sockopt(cli1->conn, sockops);
3456 cli1->use_oplocks = True;
3458 status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
3459 &fnum1);
3460 if (!NT_STATUS_IS_OK(status)) {
3461 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3462 return False;
3465 cli1->use_oplocks = False;
3467 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3468 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3470 status = cli_close(cli1, fnum1);
3471 if (!NT_STATUS_IS_OK(status)) {
3472 printf("close2 failed (%s)\n", nt_errstr(status));
3473 return False;
3476 status = cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3477 if (!NT_STATUS_IS_OK(status)) {
3478 printf("unlink failed (%s)\n", nt_errstr(status));
3479 return False;
3482 if (!torture_close_connection(cli1)) {
3483 correct = False;
3486 printf("finished oplock test 1\n");
3488 return correct;
3491 static bool run_oplock2(int dummy)
3493 struct cli_state *cli1, *cli2;
3494 const char *fname = "\\lockt2.lck";
3495 uint16_t fnum1, fnum2;
3496 int saved_use_oplocks = use_oplocks;
3497 char buf[4];
3498 bool correct = True;
3499 volatile bool *shared_correct;
3500 size_t nread;
3501 NTSTATUS status;
3503 shared_correct = (volatile bool *)anonymous_shared_allocate(sizeof(bool));
3504 *shared_correct = True;
3506 use_level_II_oplocks = True;
3507 use_oplocks = True;
3509 printf("starting oplock test 2\n");
3511 if (!torture_open_connection(&cli1, 0)) {
3512 use_level_II_oplocks = False;
3513 use_oplocks = saved_use_oplocks;
3514 return False;
3517 if (!torture_open_connection(&cli2, 1)) {
3518 use_level_II_oplocks = False;
3519 use_oplocks = saved_use_oplocks;
3520 return False;
3523 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3525 smbXcli_conn_set_sockopt(cli1->conn, sockops);
3526 smbXcli_conn_set_sockopt(cli2->conn, sockops);
3528 status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
3529 &fnum1);
3530 if (!NT_STATUS_IS_OK(status)) {
3531 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3532 return False;
3535 /* Don't need the globals any more. */
3536 use_level_II_oplocks = False;
3537 use_oplocks = saved_use_oplocks;
3539 if (fork() == 0) {
3540 /* Child code */
3541 status = cli_openx(cli2, fname, O_RDWR, DENY_NONE, &fnum2);
3542 if (!NT_STATUS_IS_OK(status)) {
3543 printf("second open of %s failed (%s)\n", fname, nt_errstr(status));
3544 *shared_correct = False;
3545 exit(0);
3548 sleep(2);
3550 status = cli_close(cli2, fnum2);
3551 if (!NT_STATUS_IS_OK(status)) {
3552 printf("close2 failed (%s)\n", nt_errstr(status));
3553 *shared_correct = False;
3556 exit(0);
3559 sleep(2);
3561 /* Ensure cli1 processes the break. Empty file should always return 0
3562 * bytes. */
3563 status = cli_read(cli1, fnum1, buf, 0, 4, &nread);
3564 if (!NT_STATUS_IS_OK(status)) {
3565 printf("read on fnum1 failed (%s)\n", nt_errstr(status));
3566 correct = false;
3567 } else if (nread != 0) {
3568 printf("read on empty fnum1 failed. recv %ld expected %d\n",
3569 (unsigned long)nread, 0);
3570 correct = false;
3573 /* Should now be at level II. */
3574 /* Test if sending a write locks causes a break to none. */
3575 status = cli_lock32(cli1, fnum1, 0, 4, 0, READ_LOCK);
3576 if (!NT_STATUS_IS_OK(status)) {
3577 printf("lock failed (%s)\n", nt_errstr(status));
3578 correct = False;
3581 cli_unlock(cli1, fnum1, 0, 4);
3583 sleep(2);
3585 status = cli_lock32(cli1, fnum1, 0, 4, 0, WRITE_LOCK);
3586 if (!NT_STATUS_IS_OK(status)) {
3587 printf("lock failed (%s)\n", nt_errstr(status));
3588 correct = False;
3591 cli_unlock(cli1, fnum1, 0, 4);
3593 sleep(2);
3595 cli_read(cli1, fnum1, buf, 0, 4, NULL);
3597 status = cli_close(cli1, fnum1);
3598 if (!NT_STATUS_IS_OK(status)) {
3599 printf("close1 failed (%s)\n", nt_errstr(status));
3600 correct = False;
3603 sleep(4);
3605 status = cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3606 if (!NT_STATUS_IS_OK(status)) {
3607 printf("unlink failed (%s)\n", nt_errstr(status));
3608 correct = False;
3611 if (!torture_close_connection(cli1)) {
3612 correct = False;
3615 if (!*shared_correct) {
3616 correct = False;
3619 printf("finished oplock test 2\n");
3621 return correct;
3624 struct oplock4_state {
3625 struct tevent_context *ev;
3626 struct cli_state *cli;
3627 bool *got_break;
3628 uint16_t *fnum2;
3631 static void oplock4_got_break(struct tevent_req *req);
3632 static void oplock4_got_open(struct tevent_req *req);
3634 static bool run_oplock4(int dummy)
3636 struct tevent_context *ev;
3637 struct cli_state *cli1, *cli2;
3638 struct tevent_req *oplock_req, *open_req;
3639 const char *fname = "\\lockt4.lck";
3640 const char *fname_ln = "\\lockt4_ln.lck";
3641 uint16_t fnum1, fnum2;
3642 int saved_use_oplocks = use_oplocks;
3643 NTSTATUS status;
3644 bool correct = true;
3646 bool got_break;
3648 struct oplock4_state *state;
3650 printf("starting oplock test 4\n");
3652 if (!torture_open_connection(&cli1, 0)) {
3653 use_level_II_oplocks = false;
3654 use_oplocks = saved_use_oplocks;
3655 return false;
3658 if (!torture_open_connection(&cli2, 1)) {
3659 use_level_II_oplocks = false;
3660 use_oplocks = saved_use_oplocks;
3661 return false;
3664 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3665 cli_unlink(cli1, fname_ln, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3667 smbXcli_conn_set_sockopt(cli1->conn, sockops);
3668 smbXcli_conn_set_sockopt(cli2->conn, sockops);
3670 /* Create the file. */
3671 status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE,
3672 &fnum1);
3673 if (!NT_STATUS_IS_OK(status)) {
3674 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3675 return false;
3678 status = cli_close(cli1, fnum1);
3679 if (!NT_STATUS_IS_OK(status)) {
3680 printf("close1 failed (%s)\n", nt_errstr(status));
3681 return false;
3684 /* Now create a hardlink. */
3685 status = cli_nt_hardlink(cli1, fname, fname_ln);
3686 if (!NT_STATUS_IS_OK(status)) {
3687 printf("nt hardlink failed (%s)\n", nt_errstr(status));
3688 return false;
3691 /* Prove that opening hardlinks cause deny modes to conflict. */
3692 status = cli_openx(cli1, fname, O_RDWR, DENY_ALL, &fnum1);
3693 if (!NT_STATUS_IS_OK(status)) {
3694 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3695 return false;
3698 status = cli_openx(cli1, fname_ln, O_RDWR, DENY_NONE, &fnum2);
3699 if (NT_STATUS_IS_OK(status)) {
3700 printf("open of %s succeeded - should fail with sharing violation.\n",
3701 fname_ln);
3702 return false;
3705 if (!NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION)) {
3706 printf("open of %s should fail with sharing violation. Got %s\n",
3707 fname_ln, nt_errstr(status));
3708 return false;
3711 status = cli_close(cli1, fnum1);
3712 if (!NT_STATUS_IS_OK(status)) {
3713 printf("close1 failed (%s)\n", nt_errstr(status));
3714 return false;
3717 cli1->use_oplocks = true;
3718 cli2->use_oplocks = true;
3720 status = cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
3721 if (!NT_STATUS_IS_OK(status)) {
3722 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
3723 return false;
3726 ev = tevent_context_init(talloc_tos());
3727 if (ev == NULL) {
3728 printf("tevent_context_init failed\n");
3729 return false;
3732 state = talloc(ev, struct oplock4_state);
3733 if (state == NULL) {
3734 printf("talloc failed\n");
3735 return false;
3737 state->ev = ev;
3738 state->cli = cli1;
3739 state->got_break = &got_break;
3740 state->fnum2 = &fnum2;
3742 oplock_req = cli_smb_oplock_break_waiter_send(
3743 talloc_tos(), ev, cli1);
3744 if (oplock_req == NULL) {
3745 printf("cli_smb_oplock_break_waiter_send failed\n");
3746 return false;
3748 tevent_req_set_callback(oplock_req, oplock4_got_break, state);
3750 open_req = cli_openx_send(
3751 talloc_tos(), ev, cli2, fname_ln, O_RDWR, DENY_NONE);
3752 if (open_req == NULL) {
3753 printf("cli_openx_send failed\n");
3754 return false;
3756 tevent_req_set_callback(open_req, oplock4_got_open, state);
3758 got_break = false;
3759 fnum2 = 0xffff;
3761 while (!got_break || fnum2 == 0xffff) {
3762 int ret;
3763 ret = tevent_loop_once(ev);
3764 if (ret == -1) {
3765 printf("tevent_loop_once failed: %s\n",
3766 strerror(errno));
3767 return false;
3771 status = cli_close(cli2, fnum2);
3772 if (!NT_STATUS_IS_OK(status)) {
3773 printf("close2 failed (%s)\n", nt_errstr(status));
3774 correct = false;
3777 status = cli_close(cli1, fnum1);
3778 if (!NT_STATUS_IS_OK(status)) {
3779 printf("close1 failed (%s)\n", nt_errstr(status));
3780 correct = false;
3783 status = cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3784 if (!NT_STATUS_IS_OK(status)) {
3785 printf("unlink failed (%s)\n", nt_errstr(status));
3786 correct = false;
3789 status = cli_unlink(cli1, fname_ln, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3790 if (!NT_STATUS_IS_OK(status)) {
3791 printf("unlink failed (%s)\n", nt_errstr(status));
3792 correct = false;
3795 if (!torture_close_connection(cli1)) {
3796 correct = false;
3799 if (!got_break) {
3800 correct = false;
3803 printf("finished oplock test 4\n");
3805 return correct;
3808 static void oplock4_got_break(struct tevent_req *req)
3810 struct oplock4_state *state = tevent_req_callback_data(
3811 req, struct oplock4_state);
3812 uint16_t fnum;
3813 uint8_t level;
3814 NTSTATUS status;
3816 status = cli_smb_oplock_break_waiter_recv(req, &fnum, &level);
3817 TALLOC_FREE(req);
3818 if (!NT_STATUS_IS_OK(status)) {
3819 printf("cli_smb_oplock_break_waiter_recv returned %s\n",
3820 nt_errstr(status));
3821 return;
3823 *state->got_break = true;
3825 req = cli_oplock_ack_send(state, state->ev, state->cli, fnum,
3826 NO_OPLOCK);
3827 if (req == NULL) {
3828 printf("cli_oplock_ack_send failed\n");
3829 return;
3833 static void oplock4_got_open(struct tevent_req *req)
3835 struct oplock4_state *state = tevent_req_callback_data(
3836 req, struct oplock4_state);
3837 NTSTATUS status;
3839 status = cli_openx_recv(req, state->fnum2);
3840 if (!NT_STATUS_IS_OK(status)) {
3841 printf("cli_openx_recv returned %s\n", nt_errstr(status));
3842 *state->fnum2 = 0xffff;
3847 Test delete on close semantics.
3849 static bool run_deletetest(int dummy)
3851 struct cli_state *cli1 = NULL;
3852 struct cli_state *cli2 = NULL;
3853 const char *fname = "\\delete.file";
3854 uint16_t fnum1 = (uint16_t)-1;
3855 uint16_t fnum2 = (uint16_t)-1;
3856 bool correct = false;
3857 NTSTATUS status;
3859 printf("starting delete test\n");
3861 if (!torture_open_connection(&cli1, 0)) {
3862 return False;
3865 smbXcli_conn_set_sockopt(cli1->conn, sockops);
3867 /* Test 1 - this should delete the file on close. */
3869 cli_setatr(cli1, fname, 0, 0);
3870 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3872 status = cli_ntcreate(cli1, fname, 0, GENERIC_ALL_ACCESS|DELETE_ACCESS,
3873 FILE_ATTRIBUTE_NORMAL, 0, FILE_OVERWRITE_IF,
3874 FILE_DELETE_ON_CLOSE, 0, &fnum1);
3875 if (!NT_STATUS_IS_OK(status)) {
3876 printf("[1] open of %s failed (%s)\n", fname, nt_errstr(status));
3877 goto fail;
3880 status = cli_close(cli1, fnum1);
3881 if (!NT_STATUS_IS_OK(status)) {
3882 printf("[1] close failed (%s)\n", nt_errstr(status));
3883 goto fail;
3886 status = cli_openx(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
3887 if (NT_STATUS_IS_OK(status)) {
3888 printf("[1] open of %s succeeded (should fail)\n", fname);
3889 goto fail;
3892 printf("first delete on close test succeeded.\n");
3894 /* Test 2 - this should delete the file on close. */
3896 cli_setatr(cli1, fname, 0, 0);
3897 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3899 status = cli_ntcreate(cli1, fname, 0, GENERIC_ALL_ACCESS,
3900 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
3901 FILE_OVERWRITE_IF, 0, 0, &fnum1);
3902 if (!NT_STATUS_IS_OK(status)) {
3903 printf("[2] open of %s failed (%s)\n", fname, nt_errstr(status));
3904 goto fail;
3907 status = cli_nt_delete_on_close(cli1, fnum1, true);
3908 if (!NT_STATUS_IS_OK(status)) {
3909 printf("[2] setting delete_on_close failed (%s)\n", nt_errstr(status));
3910 goto fail;
3913 status = cli_close(cli1, fnum1);
3914 if (!NT_STATUS_IS_OK(status)) {
3915 printf("[2] close failed (%s)\n", nt_errstr(status));
3916 goto fail;
3919 status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum1);
3920 if (NT_STATUS_IS_OK(status)) {
3921 printf("[2] open of %s succeeded should have been deleted on close !\n", fname);
3922 status = cli_close(cli1, fnum1);
3923 if (!NT_STATUS_IS_OK(status)) {
3924 printf("[2] close failed (%s)\n", nt_errstr(status));
3926 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3927 goto fail;
3930 printf("second delete on close test succeeded.\n");
3932 /* Test 3 - ... */
3933 cli_setatr(cli1, fname, 0, 0);
3934 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3936 status = cli_ntcreate(cli1, fname, 0, GENERIC_ALL_ACCESS,
3937 FILE_ATTRIBUTE_NORMAL,
3938 FILE_SHARE_READ|FILE_SHARE_WRITE,
3939 FILE_OVERWRITE_IF, 0, 0, &fnum1);
3940 if (!NT_STATUS_IS_OK(status)) {
3941 printf("[3] open - 1 of %s failed (%s)\n", fname, nt_errstr(status));
3942 goto fail;
3945 /* This should fail with a sharing violation - open for delete is only compatible
3946 with SHARE_DELETE. */
3948 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
3949 FILE_ATTRIBUTE_NORMAL,
3950 FILE_SHARE_READ|FILE_SHARE_WRITE,
3951 FILE_OPEN, 0, 0, &fnum2);
3952 if (NT_STATUS_IS_OK(status)) {
3953 printf("[3] open - 2 of %s succeeded - should have failed.\n", fname);
3954 goto fail;
3957 /* This should succeed. */
3958 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
3959 FILE_ATTRIBUTE_NORMAL,
3960 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
3961 FILE_OPEN, 0, 0, &fnum2);
3962 if (!NT_STATUS_IS_OK(status)) {
3963 printf("[3] open - 3 of %s failed (%s)\n", fname, nt_errstr(status));
3964 goto fail;
3967 status = cli_nt_delete_on_close(cli1, fnum1, true);
3968 if (!NT_STATUS_IS_OK(status)) {
3969 printf("[3] setting delete_on_close failed (%s)\n", nt_errstr(status));
3970 goto fail;
3973 status = cli_close(cli1, fnum1);
3974 if (!NT_STATUS_IS_OK(status)) {
3975 printf("[3] close 1 failed (%s)\n", nt_errstr(status));
3976 goto fail;
3979 status = cli_close(cli1, fnum2);
3980 if (!NT_STATUS_IS_OK(status)) {
3981 printf("[3] close 2 failed (%s)\n", nt_errstr(status));
3982 goto fail;
3985 /* This should fail - file should no longer be there. */
3987 status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum1);
3988 if (NT_STATUS_IS_OK(status)) {
3989 printf("[3] open of %s succeeded should have been deleted on close !\n", fname);
3990 status = cli_close(cli1, fnum1);
3991 if (!NT_STATUS_IS_OK(status)) {
3992 printf("[3] close failed (%s)\n", nt_errstr(status));
3994 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
3995 goto fail;
3998 printf("third delete on close test succeeded.\n");
4000 /* Test 4 ... */
4001 cli_setatr(cli1, fname, 0, 0);
4002 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4004 status = cli_ntcreate(cli1, fname, 0,
4005 FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4006 FILE_ATTRIBUTE_NORMAL,
4007 FILE_SHARE_READ|FILE_SHARE_WRITE,
4008 FILE_OVERWRITE_IF, 0, 0, &fnum1);
4009 if (!NT_STATUS_IS_OK(status)) {
4010 printf("[4] open of %s failed (%s)\n", fname, nt_errstr(status));
4011 goto fail;
4014 /* This should succeed. */
4015 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4016 FILE_ATTRIBUTE_NORMAL,
4017 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4018 FILE_OPEN, 0, 0, &fnum2);
4019 if (!NT_STATUS_IS_OK(status)) {
4020 printf("[4] open - 2 of %s failed (%s)\n", fname, nt_errstr(status));
4021 goto fail;
4024 status = cli_close(cli1, fnum2);
4025 if (!NT_STATUS_IS_OK(status)) {
4026 printf("[4] close - 1 failed (%s)\n", nt_errstr(status));
4027 goto fail;
4030 status = cli_nt_delete_on_close(cli1, fnum1, true);
4031 if (!NT_STATUS_IS_OK(status)) {
4032 printf("[4] setting delete_on_close failed (%s)\n", nt_errstr(status));
4033 goto fail;
4036 /* This should fail - no more opens once delete on close set. */
4037 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4038 FILE_ATTRIBUTE_NORMAL,
4039 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4040 FILE_OPEN, 0, 0, &fnum2);
4041 if (NT_STATUS_IS_OK(status)) {
4042 printf("[4] open - 3 of %s succeeded ! Should have failed.\n", fname );
4043 goto fail;
4046 status = cli_close(cli1, fnum1);
4047 if (!NT_STATUS_IS_OK(status)) {
4048 printf("[4] close - 2 failed (%s)\n", nt_errstr(status));
4049 goto fail;
4052 printf("fourth delete on close test succeeded.\n");
4054 /* Test 5 ... */
4055 cli_setatr(cli1, fname, 0, 0);
4056 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4058 status = cli_openx(cli1, fname, O_RDWR|O_CREAT, DENY_NONE, &fnum1);
4059 if (!NT_STATUS_IS_OK(status)) {
4060 printf("[5] open of %s failed (%s)\n", fname, nt_errstr(status));
4061 goto fail;
4064 /* This should fail - only allowed on NT opens with DELETE access. */
4066 status = cli_nt_delete_on_close(cli1, fnum1, true);
4067 if (NT_STATUS_IS_OK(status)) {
4068 printf("[5] setting delete_on_close on OpenX file succeeded - should fail !\n");
4069 goto fail;
4072 status = cli_close(cli1, fnum1);
4073 if (!NT_STATUS_IS_OK(status)) {
4074 printf("[5] close failed (%s)\n", nt_errstr(status));
4075 goto fail;
4078 printf("fifth delete on close test succeeded.\n");
4080 /* Test 6 ... */
4081 cli_setatr(cli1, fname, 0, 0);
4082 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4084 status = cli_ntcreate(cli1, fname, 0, FILE_READ_DATA|FILE_WRITE_DATA,
4085 FILE_ATTRIBUTE_NORMAL,
4086 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4087 FILE_OVERWRITE_IF, 0, 0, &fnum1);
4088 if (!NT_STATUS_IS_OK(status)) {
4089 printf("[6] open of %s failed (%s)\n", fname,
4090 nt_errstr(status));
4091 goto fail;
4094 /* This should fail - only allowed on NT opens with DELETE access. */
4096 status = cli_nt_delete_on_close(cli1, fnum1, true);
4097 if (NT_STATUS_IS_OK(status)) {
4098 printf("[6] setting delete_on_close on file with no delete access succeeded - should fail !\n");
4099 goto fail;
4102 status = cli_close(cli1, fnum1);
4103 if (!NT_STATUS_IS_OK(status)) {
4104 printf("[6] close failed (%s)\n", nt_errstr(status));
4105 goto fail;
4108 printf("sixth delete on close test succeeded.\n");
4110 /* Test 7 ... */
4111 cli_setatr(cli1, fname, 0, 0);
4112 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4114 status = cli_ntcreate(cli1, fname, 0,
4115 FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4116 FILE_ATTRIBUTE_NORMAL, 0, FILE_OVERWRITE_IF,
4117 0, 0, &fnum1);
4118 if (!NT_STATUS_IS_OK(status)) {
4119 printf("[7] open of %s failed (%s)\n", fname, nt_errstr(status));
4120 goto fail;
4123 status = cli_nt_delete_on_close(cli1, fnum1, true);
4124 if (!NT_STATUS_IS_OK(status)) {
4125 printf("[7] setting delete_on_close on file failed !\n");
4126 goto fail;
4129 status = cli_nt_delete_on_close(cli1, fnum1, false);
4130 if (!NT_STATUS_IS_OK(status)) {
4131 printf("[7] unsetting delete_on_close on file failed !\n");
4132 goto fail;
4135 status = cli_close(cli1, fnum1);
4136 if (!NT_STATUS_IS_OK(status)) {
4137 printf("[7] close - 1 failed (%s)\n", nt_errstr(status));
4138 goto fail;
4141 /* This next open should succeed - we reset the flag. */
4142 status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum1);
4143 if (!NT_STATUS_IS_OK(status)) {
4144 printf("[7] open of %s failed (%s)\n", fname, nt_errstr(status));
4145 goto fail;
4148 status = cli_close(cli1, fnum1);
4149 if (!NT_STATUS_IS_OK(status)) {
4150 printf("[7] close - 2 failed (%s)\n", nt_errstr(status));
4151 goto fail;
4154 printf("seventh delete on close test succeeded.\n");
4156 /* Test 8 ... */
4157 cli_setatr(cli1, fname, 0, 0);
4158 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4160 if (!torture_open_connection(&cli2, 1)) {
4161 printf("[8] failed to open second connection.\n");
4162 goto fail;
4165 smbXcli_conn_set_sockopt(cli1->conn, sockops);
4167 status = cli_ntcreate(cli1, fname, 0,
4168 FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4169 FILE_ATTRIBUTE_NORMAL,
4170 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4171 FILE_OVERWRITE_IF, 0, 0, &fnum1);
4172 if (!NT_STATUS_IS_OK(status)) {
4173 printf("[8] open 1 of %s failed (%s)\n", fname, nt_errstr(status));
4174 goto fail;
4177 status = cli_ntcreate(cli2, fname, 0,
4178 FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4179 FILE_ATTRIBUTE_NORMAL,
4180 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4181 FILE_OPEN, 0, 0, &fnum2);
4182 if (!NT_STATUS_IS_OK(status)) {
4183 printf("[8] open 2 of %s failed (%s)\n", fname, nt_errstr(status));
4184 goto fail;
4187 status = cli_nt_delete_on_close(cli1, fnum1, true);
4188 if (!NT_STATUS_IS_OK(status)) {
4189 printf("[8] setting delete_on_close on file failed !\n");
4190 goto fail;
4193 status = cli_close(cli1, fnum1);
4194 if (!NT_STATUS_IS_OK(status)) {
4195 printf("[8] close - 1 failed (%s)\n", nt_errstr(status));
4196 goto fail;
4199 status = cli_close(cli2, fnum2);
4200 if (!NT_STATUS_IS_OK(status)) {
4201 printf("[8] close - 2 failed (%s)\n", nt_errstr(status));
4202 goto fail;
4205 /* This should fail.. */
4206 status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum1);
4207 if (NT_STATUS_IS_OK(status)) {
4208 printf("[8] open of %s succeeded should have been deleted on close !\n", fname);
4209 goto fail;
4212 printf("eighth delete on close test succeeded.\n");
4214 /* Test 9 ... */
4216 /* This should fail - we need to set DELETE_ACCESS. */
4217 status = cli_ntcreate(cli1, fname, 0, FILE_READ_DATA|FILE_WRITE_DATA,
4218 FILE_ATTRIBUTE_NORMAL,
4219 FILE_SHARE_NONE,
4220 FILE_OVERWRITE_IF,
4221 FILE_DELETE_ON_CLOSE, 0, &fnum1);
4222 if (NT_STATUS_IS_OK(status)) {
4223 printf("[9] open of %s succeeded should have failed!\n", fname);
4224 goto fail;
4227 printf("ninth delete on close test succeeded.\n");
4229 /* Test 10 ... */
4231 status = cli_ntcreate(cli1, fname, 0,
4232 FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4233 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
4234 FILE_OVERWRITE_IF, FILE_DELETE_ON_CLOSE,
4235 0, &fnum1);
4236 if (!NT_STATUS_IS_OK(status)) {
4237 printf("[10] open of %s failed (%s)\n", fname, nt_errstr(status));
4238 goto fail;
4241 /* This should delete the file. */
4242 status = cli_close(cli1, fnum1);
4243 if (!NT_STATUS_IS_OK(status)) {
4244 printf("[10] close failed (%s)\n", nt_errstr(status));
4245 goto fail;
4248 /* This should fail.. */
4249 status = cli_openx(cli1, fname, O_RDONLY, DENY_NONE, &fnum1);
4250 if (NT_STATUS_IS_OK(status)) {
4251 printf("[10] open of %s succeeded should have been deleted on close !\n", fname);
4252 goto fail;
4255 printf("tenth delete on close test succeeded.\n");
4257 /* Test 11 ... */
4259 cli_setatr(cli1, fname, 0, 0);
4260 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4262 /* Can we open a read-only file with delete access? */
4264 /* Create a readonly file. */
4265 status = cli_ntcreate(cli1, fname, 0, FILE_READ_DATA|FILE_WRITE_DATA,
4266 FILE_ATTRIBUTE_READONLY, FILE_SHARE_NONE,
4267 FILE_OVERWRITE_IF, 0, 0, &fnum1);
4268 if (!NT_STATUS_IS_OK(status)) {
4269 printf("[11] open of %s failed (%s)\n", fname, nt_errstr(status));
4270 goto fail;
4273 status = cli_close(cli1, fnum1);
4274 if (!NT_STATUS_IS_OK(status)) {
4275 printf("[11] close failed (%s)\n", nt_errstr(status));
4276 goto fail;
4279 /* Now try open for delete access. */
4280 status = cli_ntcreate(cli1, fname, 0,
4281 FILE_READ_ATTRIBUTES|DELETE_ACCESS,
4283 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4284 FILE_OPEN, 0, 0, &fnum1);
4285 if (!NT_STATUS_IS_OK(status)) {
4286 printf("[11] open of %s failed: %s\n", fname, nt_errstr(status));
4287 goto fail;
4290 cli_close(cli1, fnum1);
4292 printf("eleventh delete on close test succeeded.\n");
4295 * Test 12
4296 * like test 4 but with initial delete on close
4299 cli_setatr(cli1, fname, 0, 0);
4300 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4302 status = cli_ntcreate(cli1, fname, 0,
4303 FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
4304 FILE_ATTRIBUTE_NORMAL,
4305 FILE_SHARE_READ|FILE_SHARE_WRITE,
4306 FILE_OVERWRITE_IF,
4307 FILE_DELETE_ON_CLOSE, 0, &fnum1);
4308 if (!NT_STATUS_IS_OK(status)) {
4309 printf("[12] open 1 of %s failed (%s)\n", fname, nt_errstr(status));
4310 goto fail;
4313 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4314 FILE_ATTRIBUTE_NORMAL,
4315 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4316 FILE_OPEN, 0, 0, &fnum2);
4317 if (!NT_STATUS_IS_OK(status)) {
4318 printf("[12] open 2 of %s failed(%s).\n", fname, nt_errstr(status));
4319 goto fail;
4322 status = cli_close(cli1, fnum2);
4323 if (!NT_STATUS_IS_OK(status)) {
4324 printf("[12] close 1 failed (%s)\n", nt_errstr(status));
4325 goto fail;
4328 status = cli_nt_delete_on_close(cli1, fnum1, true);
4329 if (!NT_STATUS_IS_OK(status)) {
4330 printf("[12] setting delete_on_close failed (%s)\n", nt_errstr(status));
4331 goto fail;
4334 /* This should fail - no more opens once delete on close set. */
4335 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4336 FILE_ATTRIBUTE_NORMAL,
4337 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4338 FILE_OPEN, 0, 0, &fnum2);
4339 if (NT_STATUS_IS_OK(status)) {
4340 printf("[12] open 3 of %s succeeded - should fail).\n", fname);
4341 goto fail;
4344 status = cli_nt_delete_on_close(cli1, fnum1, false);
4345 if (!NT_STATUS_IS_OK(status)) {
4346 printf("[12] unsetting delete_on_close failed (%s)\n", nt_errstr(status));
4347 goto fail;
4350 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4351 FILE_ATTRIBUTE_NORMAL,
4352 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4353 FILE_OPEN, 0, 0, &fnum2);
4354 if (!NT_STATUS_IS_OK(status)) {
4355 printf("[12] open 4 of %s failed (%s)\n", fname, nt_errstr(status));
4356 goto fail;
4359 status = cli_close(cli1, fnum2);
4360 if (!NT_STATUS_IS_OK(status)) {
4361 printf("[12] close 2 failed (%s)\n", nt_errstr(status));
4362 goto fail;
4365 status = cli_close(cli1, fnum1);
4366 if (!NT_STATUS_IS_OK(status)) {
4367 printf("[12] close 3 failed (%s)\n", nt_errstr(status));
4368 goto fail;
4372 * setting delete on close on the handle does
4373 * not unset the initial delete on close...
4375 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4376 FILE_ATTRIBUTE_NORMAL,
4377 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4378 FILE_OPEN, 0, 0, &fnum2);
4379 if (NT_STATUS_IS_OK(status)) {
4380 printf("[12] open 5 of %s succeeded - should fail).\n", fname);
4381 goto fail;
4382 } else if (!NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
4383 printf("ntcreate returned %s, expected "
4384 "NT_STATUS_OBJECT_NAME_NOT_FOUND\n",
4385 nt_errstr(status));
4386 goto fail;
4389 printf("twelfth delete on close test succeeded.\n");
4392 printf("finished delete test\n");
4394 correct = true;
4396 fail:
4397 /* FIXME: This will crash if we aborted before cli2 got
4398 * intialized, because these functions don't handle
4399 * uninitialized connections. */
4401 if (fnum1 != (uint16_t)-1) cli_close(cli1, fnum1);
4402 if (fnum2 != (uint16_t)-1) cli_close(cli1, fnum2);
4403 cli_setatr(cli1, fname, 0, 0);
4404 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4406 if (cli1 && !torture_close_connection(cli1)) {
4407 correct = False;
4409 if (cli2 && !torture_close_connection(cli2)) {
4410 correct = False;
4412 return correct;
4415 static bool run_deletetest_ln(int dummy)
4417 struct cli_state *cli;
4418 const char *fname = "\\delete1";
4419 const char *fname_ln = "\\delete1_ln";
4420 uint16_t fnum;
4421 uint16_t fnum1;
4422 NTSTATUS status;
4423 bool correct = true;
4424 time_t t;
4426 printf("starting deletetest-ln\n");
4428 if (!torture_open_connection(&cli, 0)) {
4429 return false;
4432 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4433 cli_unlink(cli, fname_ln, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4435 smbXcli_conn_set_sockopt(cli->conn, sockops);
4437 /* Create the file. */
4438 status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum);
4439 if (!NT_STATUS_IS_OK(status)) {
4440 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
4441 return false;
4444 status = cli_close(cli, fnum);
4445 if (!NT_STATUS_IS_OK(status)) {
4446 printf("close1 failed (%s)\n", nt_errstr(status));
4447 return false;
4450 /* Now create a hardlink. */
4451 status = cli_nt_hardlink(cli, fname, fname_ln);
4452 if (!NT_STATUS_IS_OK(status)) {
4453 printf("nt hardlink failed (%s)\n", nt_errstr(status));
4454 return false;
4457 /* Open the original file. */
4458 status = cli_ntcreate(cli, fname, 0, FILE_READ_DATA,
4459 FILE_ATTRIBUTE_NORMAL,
4460 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4461 FILE_OPEN_IF, 0, 0, &fnum);
4462 if (!NT_STATUS_IS_OK(status)) {
4463 printf("ntcreate of %s failed (%s)\n", fname, nt_errstr(status));
4464 return false;
4467 /* Unlink the hard link path. */
4468 status = cli_ntcreate(cli, fname_ln, 0, DELETE_ACCESS,
4469 FILE_ATTRIBUTE_NORMAL,
4470 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4471 FILE_OPEN_IF, 0, 0, &fnum1);
4472 if (!NT_STATUS_IS_OK(status)) {
4473 printf("ntcreate of %s failed (%s)\n", fname_ln, nt_errstr(status));
4474 return false;
4476 status = cli_nt_delete_on_close(cli, fnum1, true);
4477 if (!NT_STATUS_IS_OK(status)) {
4478 d_printf("(%s) failed to set delete_on_close %s: %s\n",
4479 __location__, fname_ln, nt_errstr(status));
4480 return false;
4483 status = cli_close(cli, fnum1);
4484 if (!NT_STATUS_IS_OK(status)) {
4485 printf("close %s failed (%s)\n",
4486 fname_ln, nt_errstr(status));
4487 return false;
4490 status = cli_close(cli, fnum);
4491 if (!NT_STATUS_IS_OK(status)) {
4492 printf("close %s failed (%s)\n",
4493 fname, nt_errstr(status));
4494 return false;
4497 /* Ensure the original file is still there. */
4498 status = cli_getatr(cli, fname, NULL, NULL, &t);
4499 if (!NT_STATUS_IS_OK(status)) {
4500 printf("%s getatr on file %s failed (%s)\n",
4501 __location__,
4502 fname,
4503 nt_errstr(status));
4504 correct = False;
4507 /* Ensure the link path is gone. */
4508 status = cli_getatr(cli, fname_ln, NULL, NULL, &t);
4509 if (!NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
4510 printf("%s, getatr for file %s returned wrong error code %s "
4511 "- should have been deleted\n",
4512 __location__,
4513 fname_ln, nt_errstr(status));
4514 correct = False;
4517 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4518 cli_unlink(cli, fname_ln, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4520 if (!torture_close_connection(cli)) {
4521 correct = false;
4524 printf("finished deletetest-ln\n");
4526 return correct;
4530 print out server properties
4532 static bool run_properties(int dummy)
4534 struct cli_state *cli;
4535 bool correct = True;
4537 printf("starting properties test\n");
4539 ZERO_STRUCT(cli);
4541 if (!torture_open_connection(&cli, 0)) {
4542 return False;
4545 smbXcli_conn_set_sockopt(cli->conn, sockops);
4547 d_printf("Capabilities 0x%08x\n", smb1cli_conn_capabilities(cli->conn));
4549 if (!torture_close_connection(cli)) {
4550 correct = False;
4553 return correct;
4558 /* FIRST_DESIRED_ACCESS 0xf019f */
4559 #define FIRST_DESIRED_ACCESS FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|\
4560 FILE_READ_EA| /* 0xf */ \
4561 FILE_WRITE_EA|FILE_READ_ATTRIBUTES| /* 0x90 */ \
4562 FILE_WRITE_ATTRIBUTES| /* 0x100 */ \
4563 DELETE_ACCESS|READ_CONTROL_ACCESS|\
4564 WRITE_DAC_ACCESS|WRITE_OWNER_ACCESS /* 0xf0000 */
4565 /* SECOND_DESIRED_ACCESS 0xe0080 */
4566 #define SECOND_DESIRED_ACCESS FILE_READ_ATTRIBUTES| /* 0x80 */ \
4567 READ_CONTROL_ACCESS|WRITE_DAC_ACCESS|\
4568 WRITE_OWNER_ACCESS /* 0xe0000 */
4570 #if 0
4571 #define THIRD_DESIRED_ACCESS FILE_READ_ATTRIBUTES| /* 0x80 */ \
4572 READ_CONTROL_ACCESS|WRITE_DAC_ACCESS|\
4573 FILE_READ_DATA|\
4574 WRITE_OWNER_ACCESS /* */
4575 #endif
4578 Test ntcreate calls made by xcopy
4580 static bool run_xcopy(int dummy)
4582 static struct cli_state *cli1;
4583 const char *fname = "\\test.txt";
4584 bool correct = True;
4585 uint16_t fnum1, fnum2;
4586 NTSTATUS status;
4588 printf("starting xcopy test\n");
4590 if (!torture_open_connection(&cli1, 0)) {
4591 return False;
4594 status = cli_ntcreate(cli1, fname, 0, FIRST_DESIRED_ACCESS,
4595 FILE_ATTRIBUTE_ARCHIVE, FILE_SHARE_NONE,
4596 FILE_OVERWRITE_IF, 0x4044, 0, &fnum1);
4597 if (!NT_STATUS_IS_OK(status)) {
4598 printf("First open failed - %s\n", nt_errstr(status));
4599 return False;
4602 status = cli_ntcreate(cli1, fname, 0, SECOND_DESIRED_ACCESS, 0,
4603 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
4604 FILE_OPEN, 0x200000, 0, &fnum2);
4605 if (!NT_STATUS_IS_OK(status)) {
4606 printf("second open failed - %s\n", nt_errstr(status));
4607 return False;
4610 if (!torture_close_connection(cli1)) {
4611 correct = False;
4614 return correct;
4618 Test rename on files open with share delete and no share delete.
4620 static bool run_rename(int dummy)
4622 static struct cli_state *cli1;
4623 const char *fname = "\\test.txt";
4624 const char *fname1 = "\\test1.txt";
4625 bool correct = True;
4626 uint16_t fnum1;
4627 uint16_t attr;
4628 NTSTATUS status;
4630 printf("starting rename test\n");
4632 if (!torture_open_connection(&cli1, 0)) {
4633 return False;
4636 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4637 cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4639 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4640 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_READ,
4641 FILE_OVERWRITE_IF, 0, 0, &fnum1);
4642 if (!NT_STATUS_IS_OK(status)) {
4643 printf("First open failed - %s\n", nt_errstr(status));
4644 return False;
4647 status = cli_rename(cli1, fname, fname1);
4648 if (!NT_STATUS_IS_OK(status)) {
4649 printf("First rename failed (SHARE_READ) (this is correct) - %s\n", nt_errstr(status));
4650 } else {
4651 printf("First rename succeeded (SHARE_READ) - this should have failed !\n");
4652 correct = False;
4655 status = cli_close(cli1, fnum1);
4656 if (!NT_STATUS_IS_OK(status)) {
4657 printf("close - 1 failed (%s)\n", nt_errstr(status));
4658 return False;
4661 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4662 cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4663 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS, FILE_ATTRIBUTE_NORMAL,
4664 #if 0
4665 FILE_SHARE_DELETE|FILE_SHARE_NONE,
4666 #else
4667 FILE_SHARE_DELETE|FILE_SHARE_READ,
4668 #endif
4669 FILE_OVERWRITE_IF, 0, 0, &fnum1);
4670 if (!NT_STATUS_IS_OK(status)) {
4671 printf("Second open failed - %s\n", nt_errstr(status));
4672 return False;
4675 status = cli_rename(cli1, fname, fname1);
4676 if (!NT_STATUS_IS_OK(status)) {
4677 printf("Second rename failed (SHARE_DELETE | SHARE_READ) - this should have succeeded - %s\n", nt_errstr(status));
4678 correct = False;
4679 } else {
4680 printf("Second rename succeeded (SHARE_DELETE | SHARE_READ)\n");
4683 status = cli_close(cli1, fnum1);
4684 if (!NT_STATUS_IS_OK(status)) {
4685 printf("close - 2 failed (%s)\n", nt_errstr(status));
4686 return False;
4689 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4690 cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4692 status = cli_ntcreate(cli1, fname, 0, READ_CONTROL_ACCESS,
4693 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
4694 FILE_OVERWRITE_IF, 0, 0, &fnum1);
4695 if (!NT_STATUS_IS_OK(status)) {
4696 printf("Third open failed - %s\n", nt_errstr(status));
4697 return False;
4701 #if 0
4703 uint16_t fnum2;
4705 if (!NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, DELETE_ACCESS, FILE_ATTRIBUTE_NORMAL,
4706 FILE_SHARE_NONE, FILE_OVERWRITE_IF, 0, 0, &fnum2))) {
4707 printf("Fourth open failed - %s\n", cli_errstr(cli1));
4708 return False;
4710 if (!NT_STATUS_IS_OK(cli_nt_delete_on_close(cli1, fnum2, true))) {
4711 printf("[8] setting delete_on_close on file failed !\n");
4712 return False;
4715 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum2))) {
4716 printf("close - 4 failed (%s)\n", cli_errstr(cli1));
4717 return False;
4720 #endif
4722 status = cli_rename(cli1, fname, fname1);
4723 if (!NT_STATUS_IS_OK(status)) {
4724 printf("Third rename failed (SHARE_NONE) - this should have succeeded - %s\n", nt_errstr(status));
4725 correct = False;
4726 } else {
4727 printf("Third rename succeeded (SHARE_NONE)\n");
4730 status = cli_close(cli1, fnum1);
4731 if (!NT_STATUS_IS_OK(status)) {
4732 printf("close - 3 failed (%s)\n", nt_errstr(status));
4733 return False;
4736 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4737 cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4739 /*----*/
4741 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4742 FILE_ATTRIBUTE_NORMAL,
4743 FILE_SHARE_READ | FILE_SHARE_WRITE,
4744 FILE_OVERWRITE_IF, 0, 0, &fnum1);
4745 if (!NT_STATUS_IS_OK(status)) {
4746 printf("Fourth open failed - %s\n", nt_errstr(status));
4747 return False;
4750 status = cli_rename(cli1, fname, fname1);
4751 if (!NT_STATUS_IS_OK(status)) {
4752 printf("Fourth rename failed (SHARE_READ | SHARE_WRITE) (this is correct) - %s\n", nt_errstr(status));
4753 } else {
4754 printf("Fourth rename succeeded (SHARE_READ | SHARE_WRITE) - this should have failed !\n");
4755 correct = False;
4758 status = cli_close(cli1, fnum1);
4759 if (!NT_STATUS_IS_OK(status)) {
4760 printf("close - 4 failed (%s)\n", nt_errstr(status));
4761 return False;
4764 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4765 cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4767 /*--*/
4769 status = cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
4770 FILE_ATTRIBUTE_NORMAL,
4771 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
4772 FILE_OVERWRITE_IF, 0, 0, &fnum1);
4773 if (!NT_STATUS_IS_OK(status)) {
4774 printf("Fifth open failed - %s\n", nt_errstr(status));
4775 return False;
4778 status = cli_rename(cli1, fname, fname1);
4779 if (!NT_STATUS_IS_OK(status)) {
4780 printf("Fifth rename failed (SHARE_READ | SHARE_WRITE | SHARE_DELETE) - this should have succeeded - %s ! \n", nt_errstr(status));
4781 correct = False;
4782 } else {
4783 printf("Fifth rename succeeded (SHARE_READ | SHARE_WRITE | SHARE_DELETE) (this is correct) - %s\n", nt_errstr(status));
4787 * Now check if the first name still exists ...
4790 /* if (!NT_STATUS_OP(cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS, FILE_ATTRIBUTE_NORMAL,
4791 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, FILE_OVERWRITE_IF, 0, 0, &fnum2))) {
4792 printf("Opening original file after rename of open file fails: %s\n",
4793 cli_errstr(cli1));
4795 else {
4796 printf("Opening original file after rename of open file works ...\n");
4797 (void)cli_close(cli1, fnum2);
4798 } */
4800 /*--*/
4801 status = cli_close(cli1, fnum1);
4802 if (!NT_STATUS_IS_OK(status)) {
4803 printf("close - 5 failed (%s)\n", nt_errstr(status));
4804 return False;
4807 /* Check that the renamed file has FILE_ATTRIBUTE_ARCHIVE. */
4808 status = cli_getatr(cli1, fname1, &attr, NULL, NULL);
4809 if (!NT_STATUS_IS_OK(status)) {
4810 printf("getatr on file %s failed - %s ! \n",
4811 fname1, nt_errstr(status));
4812 correct = False;
4813 } else {
4814 if (attr != FILE_ATTRIBUTE_ARCHIVE) {
4815 printf("Renamed file %s has wrong attr 0x%x "
4816 "(should be 0x%x)\n",
4817 fname1,
4818 attr,
4819 (unsigned int)FILE_ATTRIBUTE_ARCHIVE);
4820 correct = False;
4821 } else {
4822 printf("Renamed file %s has archive bit set\n", fname1);
4826 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4827 cli_unlink(cli1, fname1, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4829 if (!torture_close_connection(cli1)) {
4830 correct = False;
4833 return correct;
4836 static bool run_pipe_number(int dummy)
4838 struct cli_state *cli1;
4839 const char *pipe_name = "\\SPOOLSS";
4840 uint16_t fnum;
4841 int num_pipes = 0;
4842 NTSTATUS status;
4844 printf("starting pipenumber test\n");
4845 if (!torture_open_connection(&cli1, 0)) {
4846 return False;
4849 smbXcli_conn_set_sockopt(cli1->conn, sockops);
4850 while(1) {
4851 status = cli_ntcreate(cli1, pipe_name, 0, FILE_READ_DATA,
4852 FILE_ATTRIBUTE_NORMAL,
4853 FILE_SHARE_READ|FILE_SHARE_WRITE,
4854 FILE_OPEN_IF, 0, 0, &fnum);
4855 if (!NT_STATUS_IS_OK(status)) {
4856 printf("Open of pipe %s failed with error (%s)\n", pipe_name, nt_errstr(status));
4857 break;
4859 num_pipes++;
4860 printf("\r%6d", num_pipes);
4863 printf("pipe_number test - we can open %d %s pipes.\n", num_pipes, pipe_name );
4864 torture_close_connection(cli1);
4865 return True;
4869 Test open mode returns on read-only files.
4871 static bool run_opentest(int dummy)
4873 static struct cli_state *cli1;
4874 static struct cli_state *cli2;
4875 const char *fname = "\\readonly.file";
4876 uint16_t fnum1, fnum2;
4877 char buf[20];
4878 off_t fsize;
4879 bool correct = True;
4880 char *tmp_path;
4881 NTSTATUS status;
4883 printf("starting open test\n");
4885 if (!torture_open_connection(&cli1, 0)) {
4886 return False;
4889 cli_setatr(cli1, fname, 0, 0);
4890 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4892 smbXcli_conn_set_sockopt(cli1->conn, sockops);
4894 status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
4895 if (!NT_STATUS_IS_OK(status)) {
4896 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
4897 return False;
4900 status = cli_close(cli1, fnum1);
4901 if (!NT_STATUS_IS_OK(status)) {
4902 printf("close2 failed (%s)\n", nt_errstr(status));
4903 return False;
4906 status = cli_setatr(cli1, fname, FILE_ATTRIBUTE_READONLY, 0);
4907 if (!NT_STATUS_IS_OK(status)) {
4908 printf("cli_setatr failed (%s)\n", nt_errstr(status));
4909 return False;
4912 status = cli_openx(cli1, fname, O_RDONLY, DENY_WRITE, &fnum1);
4913 if (!NT_STATUS_IS_OK(status)) {
4914 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
4915 return False;
4918 /* This will fail - but the error should be ERRnoaccess, not ERRbadshare. */
4919 status = cli_openx(cli1, fname, O_RDWR, DENY_ALL, &fnum2);
4921 if (check_error(__LINE__, status, ERRDOS, ERRnoaccess,
4922 NT_STATUS_ACCESS_DENIED)) {
4923 printf("correct error code ERRDOS/ERRnoaccess returned\n");
4926 printf("finished open test 1\n");
4928 cli_close(cli1, fnum1);
4930 /* Now try not readonly and ensure ERRbadshare is returned. */
4932 cli_setatr(cli1, fname, 0, 0);
4934 status = cli_openx(cli1, fname, O_RDONLY, DENY_WRITE, &fnum1);
4935 if (!NT_STATUS_IS_OK(status)) {
4936 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
4937 return False;
4940 /* This will fail - but the error should be ERRshare. */
4941 status = cli_openx(cli1, fname, O_RDWR, DENY_ALL, &fnum2);
4943 if (check_error(__LINE__, status, ERRDOS, ERRbadshare,
4944 NT_STATUS_SHARING_VIOLATION)) {
4945 printf("correct error code ERRDOS/ERRbadshare returned\n");
4948 status = cli_close(cli1, fnum1);
4949 if (!NT_STATUS_IS_OK(status)) {
4950 printf("close2 failed (%s)\n", nt_errstr(status));
4951 return False;
4954 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
4956 printf("finished open test 2\n");
4958 /* Test truncate open disposition on file opened for read. */
4959 status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
4960 if (!NT_STATUS_IS_OK(status)) {
4961 printf("(3) open (1) of %s failed (%s)\n", fname, nt_errstr(status));
4962 return False;
4965 /* write 20 bytes. */
4967 memset(buf, '\0', 20);
4969 status = cli_writeall(cli1, fnum1, 0, (uint8_t *)buf, 0, 20, NULL);
4970 if (!NT_STATUS_IS_OK(status)) {
4971 printf("write failed (%s)\n", nt_errstr(status));
4972 correct = False;
4975 status = cli_close(cli1, fnum1);
4976 if (!NT_STATUS_IS_OK(status)) {
4977 printf("(3) close1 failed (%s)\n", nt_errstr(status));
4978 return False;
4981 /* Ensure size == 20. */
4982 status = cli_getatr(cli1, fname, NULL, &fsize, NULL);
4983 if (!NT_STATUS_IS_OK(status)) {
4984 printf("(3) getatr failed (%s)\n", nt_errstr(status));
4985 return False;
4988 if (fsize != 20) {
4989 printf("(3) file size != 20\n");
4990 return False;
4993 /* Now test if we can truncate a file opened for readonly. */
4994 status = cli_openx(cli1, fname, O_RDONLY|O_TRUNC, DENY_NONE, &fnum1);
4995 if (!NT_STATUS_IS_OK(status)) {
4996 printf("(3) open (2) of %s failed (%s)\n", fname, nt_errstr(status));
4997 return False;
5000 status = cli_close(cli1, fnum1);
5001 if (!NT_STATUS_IS_OK(status)) {
5002 printf("close2 failed (%s)\n", nt_errstr(status));
5003 return False;
5006 /* Ensure size == 0. */
5007 status = cli_getatr(cli1, fname, NULL, &fsize, NULL);
5008 if (!NT_STATUS_IS_OK(status)) {
5009 printf("(3) getatr failed (%s)\n", nt_errstr(status));
5010 return False;
5013 if (fsize != 0) {
5014 printf("(3) file size != 0\n");
5015 return False;
5017 printf("finished open test 3\n");
5019 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5021 printf("Do ctemp tests\n");
5022 status = cli_ctemp(cli1, talloc_tos(), "\\", &fnum1, &tmp_path);
5023 if (!NT_STATUS_IS_OK(status)) {
5024 printf("ctemp failed (%s)\n", nt_errstr(status));
5025 return False;
5028 printf("ctemp gave path %s\n", tmp_path);
5029 status = cli_close(cli1, fnum1);
5030 if (!NT_STATUS_IS_OK(status)) {
5031 printf("close of temp failed (%s)\n", nt_errstr(status));
5034 status = cli_unlink(cli1, tmp_path, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5035 if (!NT_STATUS_IS_OK(status)) {
5036 printf("unlink of temp failed (%s)\n", nt_errstr(status));
5039 /* Test the non-io opens... */
5041 if (!torture_open_connection(&cli2, 1)) {
5042 return False;
5045 cli_setatr(cli2, fname, 0, 0);
5046 cli_unlink(cli2, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5048 smbXcli_conn_set_sockopt(cli2->conn, sockops);
5050 printf("TEST #1 testing 2 non-io opens (no delete)\n");
5051 status = cli_ntcreate(cli1, fname, 0, FILE_READ_ATTRIBUTES,
5052 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5053 FILE_OVERWRITE_IF, 0, 0, &fnum1);
5054 if (!NT_STATUS_IS_OK(status)) {
5055 printf("TEST #1 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5056 return False;
5059 status = cli_ntcreate(cli2, fname, 0, FILE_READ_ATTRIBUTES,
5060 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5061 FILE_OPEN_IF, 0, 0, &fnum2);
5062 if (!NT_STATUS_IS_OK(status)) {
5063 printf("TEST #1 open 2 of %s failed (%s)\n", fname, nt_errstr(status));
5064 return False;
5067 status = cli_close(cli1, fnum1);
5068 if (!NT_STATUS_IS_OK(status)) {
5069 printf("TEST #1 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5070 return False;
5073 status = cli_close(cli2, fnum2);
5074 if (!NT_STATUS_IS_OK(status)) {
5075 printf("TEST #1 close 2 of %s failed (%s)\n", fname, nt_errstr(status));
5076 return False;
5079 printf("non-io open test #1 passed.\n");
5081 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5083 printf("TEST #2 testing 2 non-io opens (first with delete)\n");
5085 status = cli_ntcreate(cli1, fname, 0,
5086 DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5087 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5088 FILE_OVERWRITE_IF, 0, 0, &fnum1);
5089 if (!NT_STATUS_IS_OK(status)) {
5090 printf("TEST #2 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5091 return False;
5094 status = cli_ntcreate(cli2, fname, 0, FILE_READ_ATTRIBUTES,
5095 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5096 FILE_OPEN_IF, 0, 0, &fnum2);
5097 if (!NT_STATUS_IS_OK(status)) {
5098 printf("TEST #2 open 2 of %s failed (%s)\n", fname, nt_errstr(status));
5099 return False;
5102 status = cli_close(cli1, fnum1);
5103 if (!NT_STATUS_IS_OK(status)) {
5104 printf("TEST #2 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5105 return False;
5108 status = cli_close(cli2, fnum2);
5109 if (!NT_STATUS_IS_OK(status)) {
5110 printf("TEST #2 close 2 of %s failed (%s)\n", fname, nt_errstr(status));
5111 return False;
5114 printf("non-io open test #2 passed.\n");
5116 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5118 printf("TEST #3 testing 2 non-io opens (second with delete)\n");
5120 status = cli_ntcreate(cli1, fname, 0, FILE_READ_ATTRIBUTES,
5121 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5122 FILE_OVERWRITE_IF, 0, 0, &fnum1);
5123 if (!NT_STATUS_IS_OK(status)) {
5124 printf("TEST #3 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5125 return False;
5128 status = cli_ntcreate(cli2, fname, 0,
5129 DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5130 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5131 FILE_OPEN_IF, 0, 0, &fnum2);
5132 if (!NT_STATUS_IS_OK(status)) {
5133 printf("TEST #3 open 2 of %s failed (%s)\n", fname, nt_errstr(status));
5134 return False;
5137 status = cli_close(cli1, fnum1);
5138 if (!NT_STATUS_IS_OK(status)) {
5139 printf("TEST #3 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5140 return False;
5143 status = cli_close(cli2, fnum2);
5144 if (!NT_STATUS_IS_OK(status)) {
5145 printf("TEST #3 close 2 of %s failed (%s)\n", fname, nt_errstr(status));
5146 return False;
5149 printf("non-io open test #3 passed.\n");
5151 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5153 printf("TEST #4 testing 2 non-io opens (both with delete)\n");
5155 status = cli_ntcreate(cli1, fname, 0,
5156 DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5157 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5158 FILE_OVERWRITE_IF, 0, 0, &fnum1);
5159 if (!NT_STATUS_IS_OK(status)) {
5160 printf("TEST #4 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5161 return False;
5164 status = cli_ntcreate(cli2, fname, 0,
5165 DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5166 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5167 FILE_OPEN_IF, 0, 0, &fnum2);
5168 if (NT_STATUS_IS_OK(status)) {
5169 printf("TEST #4 open 2 of %s SUCCEEDED - should have failed (%s)\n", fname, nt_errstr(status));
5170 return False;
5173 printf("TEST #4 open 2 of %s gave %s (correct error should be %s)\n", fname, nt_errstr(status), "sharing violation");
5175 status = cli_close(cli1, fnum1);
5176 if (!NT_STATUS_IS_OK(status)) {
5177 printf("TEST #4 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5178 return False;
5181 printf("non-io open test #4 passed.\n");
5183 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5185 printf("TEST #5 testing 2 non-io opens (both with delete - both with file share delete)\n");
5187 status = cli_ntcreate(cli1, fname, 0,
5188 DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5189 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_DELETE,
5190 FILE_OVERWRITE_IF, 0, 0, &fnum1);
5191 if (!NT_STATUS_IS_OK(status)) {
5192 printf("TEST #5 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5193 return False;
5196 status = cli_ntcreate(cli2, fname, 0,
5197 DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5198 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_DELETE,
5199 FILE_OPEN_IF, 0, 0, &fnum2);
5200 if (!NT_STATUS_IS_OK(status)) {
5201 printf("TEST #5 open 2 of %s failed (%s)\n", fname, nt_errstr(status));
5202 return False;
5205 status = cli_close(cli1, fnum1);
5206 if (!NT_STATUS_IS_OK(status)) {
5207 printf("TEST #5 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5208 return False;
5211 status = cli_close(cli2, fnum2);
5212 if (!NT_STATUS_IS_OK(status)) {
5213 printf("TEST #5 close 2 of %s failed (%s)\n", fname, nt_errstr(status));
5214 return False;
5217 printf("non-io open test #5 passed.\n");
5219 printf("TEST #6 testing 1 non-io open, one io open\n");
5221 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5223 status = cli_ntcreate(cli1, fname, 0, FILE_READ_DATA,
5224 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5225 FILE_OVERWRITE_IF, 0, 0, &fnum1);
5226 if (!NT_STATUS_IS_OK(status)) {
5227 printf("TEST #6 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5228 return False;
5231 status = cli_ntcreate(cli2, fname, 0, FILE_READ_ATTRIBUTES,
5232 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_READ,
5233 FILE_OPEN_IF, 0, 0, &fnum2);
5234 if (!NT_STATUS_IS_OK(status)) {
5235 printf("TEST #6 open 2 of %s failed (%s)\n", fname, nt_errstr(status));
5236 return False;
5239 status = cli_close(cli1, fnum1);
5240 if (!NT_STATUS_IS_OK(status)) {
5241 printf("TEST #6 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5242 return False;
5245 status = cli_close(cli2, fnum2);
5246 if (!NT_STATUS_IS_OK(status)) {
5247 printf("TEST #6 close 2 of %s failed (%s)\n", fname, nt_errstr(status));
5248 return False;
5251 printf("non-io open test #6 passed.\n");
5253 printf("TEST #7 testing 1 non-io open, one io open with delete\n");
5255 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5257 status = cli_ntcreate(cli1, fname, 0, FILE_READ_DATA,
5258 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
5259 FILE_OVERWRITE_IF, 0, 0, &fnum1);
5260 if (!NT_STATUS_IS_OK(status)) {
5261 printf("TEST #7 open 1 of %s failed (%s)\n", fname, nt_errstr(status));
5262 return False;
5265 status = cli_ntcreate(cli2, fname, 0,
5266 DELETE_ACCESS|FILE_READ_ATTRIBUTES,
5267 FILE_ATTRIBUTE_NORMAL,
5268 FILE_SHARE_READ|FILE_SHARE_DELETE,
5269 FILE_OPEN_IF, 0, 0, &fnum2);
5270 if (NT_STATUS_IS_OK(status)) {
5271 printf("TEST #7 open 2 of %s SUCCEEDED - should have failed (%s)\n", fname, nt_errstr(status));
5272 return False;
5275 printf("TEST #7 open 2 of %s gave %s (correct error should be %s)\n", fname, nt_errstr(status), "sharing violation");
5277 status = cli_close(cli1, fnum1);
5278 if (!NT_STATUS_IS_OK(status)) {
5279 printf("TEST #7 close 1 of %s failed (%s)\n", fname, nt_errstr(status));
5280 return False;
5283 printf("non-io open test #7 passed.\n");
5285 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5287 printf("TEST #8 testing open without WRITE_ATTRIBUTES, updating close write time.\n");
5288 status = cli_ntcreate(cli1, fname, 0, FILE_WRITE_DATA, FILE_ATTRIBUTE_NORMAL,
5289 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
5290 FILE_OVERWRITE_IF, 0, 0, &fnum1);
5291 if (!NT_STATUS_IS_OK(status)) {
5292 printf("TEST #8 open of %s failed (%s)\n", fname, nt_errstr(status));
5293 correct = false;
5294 goto out;
5297 /* Write to ensure we have to update the file time. */
5298 status = cli_writeall(cli1, fnum1, 0, (const uint8_t *)"TEST DATA\n", 0, 10,
5299 NULL);
5300 if (!NT_STATUS_IS_OK(status)) {
5301 printf("TEST #8 cli_write failed: %s\n", nt_errstr(status));
5302 correct = false;
5303 goto out;
5306 status = cli_close(cli1, fnum1);
5307 if (!NT_STATUS_IS_OK(status)) {
5308 printf("TEST #8 close of %s failed (%s)\n", fname, nt_errstr(status));
5309 correct = false;
5312 out:
5314 if (!torture_close_connection(cli1)) {
5315 correct = False;
5317 if (!torture_close_connection(cli2)) {
5318 correct = False;
5321 return correct;
5324 NTSTATUS torture_setup_unix_extensions(struct cli_state *cli)
5326 uint16 major, minor;
5327 uint32 caplow, caphigh;
5328 NTSTATUS status;
5330 if (!SERVER_HAS_UNIX_CIFS(cli)) {
5331 printf("Server doesn't support UNIX CIFS extensions.\n");
5332 return NT_STATUS_NOT_SUPPORTED;
5335 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
5336 &caphigh);
5337 if (!NT_STATUS_IS_OK(status)) {
5338 printf("Server didn't return UNIX CIFS extensions: %s\n",
5339 nt_errstr(status));
5340 return status;
5343 status = cli_set_unix_extensions_capabilities(cli, major, minor,
5344 caplow, caphigh);
5345 if (!NT_STATUS_IS_OK(status)) {
5346 printf("Server doesn't support setting UNIX CIFS extensions: "
5347 "%s.\n", nt_errstr(status));
5348 return status;
5351 return NT_STATUS_OK;
5355 Test POSIX open /mkdir calls.
5357 static bool run_simple_posix_open_test(int dummy)
5359 static struct cli_state *cli1;
5360 const char *fname = "posix:file";
5361 const char *hname = "posix:hlink";
5362 const char *sname = "posix:symlink";
5363 const char *dname = "posix:dir";
5364 char buf[10];
5365 char namebuf[11];
5366 uint16_t fnum1 = (uint16_t)-1;
5367 SMB_STRUCT_STAT sbuf;
5368 bool correct = false;
5369 NTSTATUS status;
5370 size_t nread;
5372 printf("Starting simple POSIX open test\n");
5374 if (!torture_open_connection(&cli1, 0)) {
5375 return false;
5378 smbXcli_conn_set_sockopt(cli1->conn, sockops);
5380 status = torture_setup_unix_extensions(cli1);
5381 if (!NT_STATUS_IS_OK(status)) {
5382 return false;
5385 cli_setatr(cli1, fname, 0, 0);
5386 cli_posix_unlink(cli1, fname);
5387 cli_setatr(cli1, dname, 0, 0);
5388 cli_posix_rmdir(cli1, dname);
5389 cli_setatr(cli1, hname, 0, 0);
5390 cli_posix_unlink(cli1, hname);
5391 cli_setatr(cli1, sname, 0, 0);
5392 cli_posix_unlink(cli1, sname);
5394 /* Create a directory. */
5395 status = cli_posix_mkdir(cli1, dname, 0777);
5396 if (!NT_STATUS_IS_OK(status)) {
5397 printf("POSIX mkdir of %s failed (%s)\n", dname, nt_errstr(status));
5398 goto out;
5401 status = cli_posix_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL,
5402 0600, &fnum1);
5403 if (!NT_STATUS_IS_OK(status)) {
5404 printf("POSIX create of %s failed (%s)\n", fname, nt_errstr(status));
5405 goto out;
5408 /* Test ftruncate - set file size. */
5409 status = cli_ftruncate(cli1, fnum1, 1000);
5410 if (!NT_STATUS_IS_OK(status)) {
5411 printf("ftruncate failed (%s)\n", nt_errstr(status));
5412 goto out;
5415 /* Ensure st_size == 1000 */
5416 status = cli_posix_stat(cli1, fname, &sbuf);
5417 if (!NT_STATUS_IS_OK(status)) {
5418 printf("stat failed (%s)\n", nt_errstr(status));
5419 goto out;
5422 if (sbuf.st_ex_size != 1000) {
5423 printf("ftruncate - stat size (%u) != 1000\n", (unsigned int)sbuf.st_ex_size);
5424 goto out;
5427 /* Ensure st_mode == 0600 */
5428 if ((sbuf.st_ex_mode & 07777) != 0600) {
5429 printf("posix_open - bad permissions 0%o != 0600\n",
5430 (unsigned int)(sbuf.st_ex_mode & 07777));
5431 goto out;
5434 /* Test ftruncate - set file size back to zero. */
5435 status = cli_ftruncate(cli1, fnum1, 0);
5436 if (!NT_STATUS_IS_OK(status)) {
5437 printf("ftruncate failed (%s)\n", nt_errstr(status));
5438 goto out;
5441 status = cli_close(cli1, fnum1);
5442 if (!NT_STATUS_IS_OK(status)) {
5443 printf("close failed (%s)\n", nt_errstr(status));
5444 goto out;
5447 /* Now open the file again for read only. */
5448 status = cli_posix_open(cli1, fname, O_RDONLY, 0, &fnum1);
5449 if (!NT_STATUS_IS_OK(status)) {
5450 printf("POSIX open of %s failed (%s)\n", fname, nt_errstr(status));
5451 goto out;
5454 /* Now unlink while open. */
5455 status = cli_posix_unlink(cli1, fname);
5456 if (!NT_STATUS_IS_OK(status)) {
5457 printf("POSIX unlink of %s failed (%s)\n", fname, nt_errstr(status));
5458 goto out;
5461 status = cli_close(cli1, fnum1);
5462 if (!NT_STATUS_IS_OK(status)) {
5463 printf("close(2) failed (%s)\n", nt_errstr(status));
5464 goto out;
5467 /* Ensure the file has gone. */
5468 status = cli_posix_open(cli1, fname, O_RDONLY, 0, &fnum1);
5469 if (NT_STATUS_IS_OK(status)) {
5470 printf("POSIX open of %s succeeded, should have been deleted.\n", fname);
5471 goto out;
5474 /* Create again to test open with O_TRUNC. */
5475 status = cli_posix_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL, 0600, &fnum1);
5476 if (!NT_STATUS_IS_OK(status)) {
5477 printf("POSIX create of %s failed (%s)\n", fname, nt_errstr(status));
5478 goto out;
5481 /* Test ftruncate - set file size. */
5482 status = cli_ftruncate(cli1, fnum1, 1000);
5483 if (!NT_STATUS_IS_OK(status)) {
5484 printf("ftruncate failed (%s)\n", nt_errstr(status));
5485 goto out;
5488 /* Ensure st_size == 1000 */
5489 status = cli_posix_stat(cli1, fname, &sbuf);
5490 if (!NT_STATUS_IS_OK(status)) {
5491 printf("stat failed (%s)\n", nt_errstr(status));
5492 goto out;
5495 if (sbuf.st_ex_size != 1000) {
5496 printf("ftruncate - stat size (%u) != 1000\n", (unsigned int)sbuf.st_ex_size);
5497 goto out;
5500 status = cli_close(cli1, fnum1);
5501 if (!NT_STATUS_IS_OK(status)) {
5502 printf("close(2) failed (%s)\n", nt_errstr(status));
5503 goto out;
5506 /* Re-open with O_TRUNC. */
5507 status = cli_posix_open(cli1, fname, O_WRONLY|O_TRUNC, 0600, &fnum1);
5508 if (!NT_STATUS_IS_OK(status)) {
5509 printf("POSIX create of %s failed (%s)\n", fname, nt_errstr(status));
5510 goto out;
5513 /* Ensure st_size == 0 */
5514 status = cli_posix_stat(cli1, fname, &sbuf);
5515 if (!NT_STATUS_IS_OK(status)) {
5516 printf("stat failed (%s)\n", nt_errstr(status));
5517 goto out;
5520 if (sbuf.st_ex_size != 0) {
5521 printf("O_TRUNC - stat size (%u) != 0\n", (unsigned int)sbuf.st_ex_size);
5522 goto out;
5525 status = cli_close(cli1, fnum1);
5526 if (!NT_STATUS_IS_OK(status)) {
5527 printf("close failed (%s)\n", nt_errstr(status));
5528 goto out;
5531 status = cli_posix_unlink(cli1, fname);
5532 if (!NT_STATUS_IS_OK(status)) {
5533 printf("POSIX unlink of %s failed (%s)\n", fname, nt_errstr(status));
5534 goto out;
5537 status = cli_posix_open(cli1, dname, O_RDONLY, 0, &fnum1);
5538 if (!NT_STATUS_IS_OK(status)) {
5539 printf("POSIX open directory O_RDONLY of %s failed (%s)\n",
5540 dname, nt_errstr(status));
5541 goto out;
5544 cli_close(cli1, fnum1);
5546 /* What happens when we try and POSIX open a directory for write ? */
5547 status = cli_posix_open(cli1, dname, O_RDWR, 0, &fnum1);
5548 if (NT_STATUS_IS_OK(status)) {
5549 printf("POSIX open of directory %s succeeded, should have failed.\n", fname);
5550 goto out;
5551 } else {
5552 if (!check_both_error(__LINE__, status, ERRDOS, EISDIR,
5553 NT_STATUS_FILE_IS_A_DIRECTORY)) {
5554 goto out;
5558 /* Create the file. */
5559 status = cli_posix_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL,
5560 0600, &fnum1);
5561 if (!NT_STATUS_IS_OK(status)) {
5562 printf("POSIX create of %s failed (%s)\n", fname, nt_errstr(status));
5563 goto out;
5566 /* Write some data into it. */
5567 status = cli_writeall(cli1, fnum1, 0, (const uint8_t *)"TEST DATA\n", 0, 10,
5568 NULL);
5569 if (!NT_STATUS_IS_OK(status)) {
5570 printf("cli_write failed: %s\n", nt_errstr(status));
5571 goto out;
5574 cli_close(cli1, fnum1);
5576 /* Now create a hardlink. */
5577 status = cli_posix_hardlink(cli1, fname, hname);
5578 if (!NT_STATUS_IS_OK(status)) {
5579 printf("POSIX hardlink of %s failed (%s)\n", hname, nt_errstr(status));
5580 goto out;
5583 /* Now create a symlink. */
5584 status = cli_posix_symlink(cli1, fname, sname);
5585 if (!NT_STATUS_IS_OK(status)) {
5586 printf("POSIX symlink of %s failed (%s)\n", sname, nt_errstr(status));
5587 goto out;
5590 /* Open the hardlink for read. */
5591 status = cli_posix_open(cli1, hname, O_RDONLY, 0, &fnum1);
5592 if (!NT_STATUS_IS_OK(status)) {
5593 printf("POSIX open of %s failed (%s)\n", hname, nt_errstr(status));
5594 goto out;
5597 status = cli_read(cli1, fnum1, buf, 0, 10, &nread);
5598 if (!NT_STATUS_IS_OK(status)) {
5599 printf("POSIX read of %s failed (%s)\n", hname,
5600 nt_errstr(status));
5601 goto out;
5602 } else if (nread != 10) {
5603 printf("POSIX read of %s failed. Received %ld, expected %d\n",
5604 hname, (unsigned long)nread, 10);
5605 goto out;
5608 if (memcmp(buf, "TEST DATA\n", 10)) {
5609 printf("invalid data read from hardlink\n");
5610 goto out;
5613 /* Do a POSIX lock/unlock. */
5614 status = cli_posix_lock(cli1, fnum1, 0, 100, true, READ_LOCK);
5615 if (!NT_STATUS_IS_OK(status)) {
5616 printf("POSIX lock failed %s\n", nt_errstr(status));
5617 goto out;
5620 /* Punch a hole in the locked area. */
5621 status = cli_posix_unlock(cli1, fnum1, 10, 80);
5622 if (!NT_STATUS_IS_OK(status)) {
5623 printf("POSIX unlock failed %s\n", nt_errstr(status));
5624 goto out;
5627 cli_close(cli1, fnum1);
5629 /* Open the symlink for read - this should fail. A POSIX
5630 client should not be doing opens on a symlink. */
5631 status = cli_posix_open(cli1, sname, O_RDONLY, 0, &fnum1);
5632 if (NT_STATUS_IS_OK(status)) {
5633 printf("POSIX open of %s succeeded (should have failed)\n", sname);
5634 goto out;
5635 } else {
5636 if (!check_both_error(__LINE__, status, ERRDOS, ERRbadpath,
5637 NT_STATUS_OBJECT_PATH_NOT_FOUND)) {
5638 printf("POSIX open of %s should have failed "
5639 "with NT_STATUS_OBJECT_PATH_NOT_FOUND, "
5640 "failed with %s instead.\n",
5641 sname, nt_errstr(status));
5642 goto out;
5646 status = cli_posix_readlink(cli1, sname, namebuf, sizeof(namebuf));
5647 if (!NT_STATUS_IS_OK(status)) {
5648 printf("POSIX readlink on %s failed (%s)\n", sname, nt_errstr(status));
5649 goto out;
5652 if (strcmp(namebuf, fname) != 0) {
5653 printf("POSIX readlink on %s failed to match name %s (read %s)\n",
5654 sname, fname, namebuf);
5655 goto out;
5658 status = cli_posix_rmdir(cli1, dname);
5659 if (!NT_STATUS_IS_OK(status)) {
5660 printf("POSIX rmdir failed (%s)\n", nt_errstr(status));
5661 goto out;
5664 /* Check directory opens with a specific permission. */
5665 status = cli_posix_mkdir(cli1, dname, 0700);
5666 if (!NT_STATUS_IS_OK(status)) {
5667 printf("POSIX mkdir of %s failed (%s)\n", dname, nt_errstr(status));
5668 goto out;
5671 /* Ensure st_mode == 0700 */
5672 status = cli_posix_stat(cli1, dname, &sbuf);
5673 if (!NT_STATUS_IS_OK(status)) {
5674 printf("stat failed (%s)\n", nt_errstr(status));
5675 goto out;
5678 if ((sbuf.st_ex_mode & 07777) != 0700) {
5679 printf("posix_mkdir - bad permissions 0%o != 0700\n",
5680 (unsigned int)(sbuf.st_ex_mode & 07777));
5681 goto out;
5684 printf("Simple POSIX open test passed\n");
5685 correct = true;
5687 out:
5689 if (fnum1 != (uint16_t)-1) {
5690 cli_close(cli1, fnum1);
5691 fnum1 = (uint16_t)-1;
5694 cli_setatr(cli1, sname, 0, 0);
5695 cli_posix_unlink(cli1, sname);
5696 cli_setatr(cli1, hname, 0, 0);
5697 cli_posix_unlink(cli1, hname);
5698 cli_setatr(cli1, fname, 0, 0);
5699 cli_posix_unlink(cli1, fname);
5700 cli_setatr(cli1, dname, 0, 0);
5701 cli_posix_rmdir(cli1, dname);
5703 if (!torture_close_connection(cli1)) {
5704 correct = false;
5707 return correct;
5711 static uint32 open_attrs_table[] = {
5712 FILE_ATTRIBUTE_NORMAL,
5713 FILE_ATTRIBUTE_ARCHIVE,
5714 FILE_ATTRIBUTE_READONLY,
5715 FILE_ATTRIBUTE_HIDDEN,
5716 FILE_ATTRIBUTE_SYSTEM,
5718 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY,
5719 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN,
5720 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM,
5721 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN,
5722 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM,
5723 FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM,
5725 FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN,
5726 FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM,
5727 FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM,
5728 FILE_ATTRIBUTE_HIDDEN,FILE_ATTRIBUTE_SYSTEM,
5731 struct trunc_open_results {
5732 unsigned int num;
5733 uint32 init_attr;
5734 uint32 trunc_attr;
5735 uint32 result_attr;
5738 static struct trunc_open_results attr_results[] = {
5739 { 0, FILE_ATTRIBUTE_NORMAL, FILE_ATTRIBUTE_NORMAL, FILE_ATTRIBUTE_ARCHIVE },
5740 { 1, FILE_ATTRIBUTE_NORMAL, FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_ARCHIVE },
5741 { 2, FILE_ATTRIBUTE_NORMAL, FILE_ATTRIBUTE_READONLY, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY },
5742 { 16, FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_NORMAL, FILE_ATTRIBUTE_ARCHIVE },
5743 { 17, FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_ARCHIVE },
5744 { 18, FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_READONLY, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY },
5745 { 51, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
5746 { 54, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
5747 { 56, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN },
5748 { 68, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
5749 { 71, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
5750 { 73, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM },
5751 { 99, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_HIDDEN,FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
5752 { 102, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
5753 { 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 },
5754 { 116, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
5755 { 119, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
5756 { 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 },
5757 { 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 },
5758 { 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 },
5759 { 227, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
5760 { 230, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN },
5761 { 232, FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN },
5762 { 244, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
5763 { 247, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_SYSTEM },
5764 { 249, FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM, FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM }
5767 static bool run_openattrtest(int dummy)
5769 static struct cli_state *cli1;
5770 const char *fname = "\\openattr.file";
5771 uint16_t fnum1;
5772 bool correct = True;
5773 uint16 attr;
5774 unsigned int i, j, k, l;
5775 NTSTATUS status;
5777 printf("starting open attr test\n");
5779 if (!torture_open_connection(&cli1, 0)) {
5780 return False;
5783 smbXcli_conn_set_sockopt(cli1->conn, sockops);
5785 for (k = 0, i = 0; i < sizeof(open_attrs_table)/sizeof(uint32); i++) {
5786 cli_setatr(cli1, fname, 0, 0);
5787 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5789 status = cli_ntcreate(cli1, fname, 0, FILE_WRITE_DATA,
5790 open_attrs_table[i], FILE_SHARE_NONE,
5791 FILE_OVERWRITE_IF, 0, 0, &fnum1);
5792 if (!NT_STATUS_IS_OK(status)) {
5793 printf("open %d (1) of %s failed (%s)\n", i, fname, nt_errstr(status));
5794 return False;
5797 status = cli_close(cli1, fnum1);
5798 if (!NT_STATUS_IS_OK(status)) {
5799 printf("close %d (1) of %s failed (%s)\n", i, fname, nt_errstr(status));
5800 return False;
5803 for (j = 0; j < sizeof(open_attrs_table)/sizeof(uint32); j++) {
5804 status = cli_ntcreate(cli1, fname, 0,
5805 FILE_READ_DATA|FILE_WRITE_DATA,
5806 open_attrs_table[j],
5807 FILE_SHARE_NONE, FILE_OVERWRITE,
5808 0, 0, &fnum1);
5809 if (!NT_STATUS_IS_OK(status)) {
5810 for (l = 0; l < sizeof(attr_results)/sizeof(struct trunc_open_results); l++) {
5811 if (attr_results[l].num == k) {
5812 printf("[%d] trunc open 0x%x -> 0x%x of %s failed - should have succeeded !(0x%x:%s)\n",
5813 k, open_attrs_table[i],
5814 open_attrs_table[j],
5815 fname, NT_STATUS_V(status), nt_errstr(status));
5816 correct = False;
5820 if (!NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
5821 printf("[%d] trunc open 0x%x -> 0x%x failed with wrong error code %s\n",
5822 k, open_attrs_table[i], open_attrs_table[j],
5823 nt_errstr(status));
5824 correct = False;
5826 #if 0
5827 printf("[%d] trunc open 0x%x -> 0x%x failed\n", k, open_attrs_table[i], open_attrs_table[j]);
5828 #endif
5829 k++;
5830 continue;
5833 status = cli_close(cli1, fnum1);
5834 if (!NT_STATUS_IS_OK(status)) {
5835 printf("close %d (2) of %s failed (%s)\n", j, fname, nt_errstr(status));
5836 return False;
5839 status = cli_getatr(cli1, fname, &attr, NULL, NULL);
5840 if (!NT_STATUS_IS_OK(status)) {
5841 printf("getatr(2) failed (%s)\n", nt_errstr(status));
5842 return False;
5845 #if 0
5846 printf("[%d] getatr check [0x%x] trunc [0x%x] got attr 0x%x\n",
5847 k, open_attrs_table[i], open_attrs_table[j], attr );
5848 #endif
5850 for (l = 0; l < sizeof(attr_results)/sizeof(struct trunc_open_results); l++) {
5851 if (attr_results[l].num == k) {
5852 if (attr != attr_results[l].result_attr ||
5853 open_attrs_table[i] != attr_results[l].init_attr ||
5854 open_attrs_table[j] != attr_results[l].trunc_attr) {
5855 printf("getatr check failed. [0x%x] trunc [0x%x] got attr 0x%x, should be 0x%x\n",
5856 open_attrs_table[i],
5857 open_attrs_table[j],
5858 (unsigned int)attr,
5859 attr_results[l].result_attr);
5860 correct = False;
5862 break;
5865 k++;
5869 cli_setatr(cli1, fname, 0, 0);
5870 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5872 printf("open attr test %s.\n", correct ? "passed" : "failed");
5874 if (!torture_close_connection(cli1)) {
5875 correct = False;
5877 return correct;
5880 static NTSTATUS list_fn(const char *mnt, struct file_info *finfo,
5881 const char *name, void *state)
5883 int *matched = (int *)state;
5884 if (matched != NULL) {
5885 *matched += 1;
5887 return NT_STATUS_OK;
5891 test directory listing speed
5893 static bool run_dirtest(int dummy)
5895 int i;
5896 static struct cli_state *cli;
5897 uint16_t fnum;
5898 struct timeval core_start;
5899 bool correct = True;
5900 int matched;
5902 printf("starting directory test\n");
5904 if (!torture_open_connection(&cli, 0)) {
5905 return False;
5908 smbXcli_conn_set_sockopt(cli->conn, sockops);
5910 srandom(0);
5911 for (i=0;i<torture_numops;i++) {
5912 fstring fname;
5913 slprintf(fname, sizeof(fname), "\\%x", (int)random());
5914 if (!NT_STATUS_IS_OK(cli_openx(cli, fname, O_RDWR|O_CREAT, DENY_NONE, &fnum))) {
5915 fprintf(stderr,"Failed to open %s\n", fname);
5916 return False;
5918 cli_close(cli, fnum);
5921 core_start = timeval_current();
5923 matched = 0;
5924 cli_list(cli, "a*.*", 0, list_fn, &matched);
5925 printf("Matched %d\n", matched);
5927 matched = 0;
5928 cli_list(cli, "b*.*", 0, list_fn, &matched);
5929 printf("Matched %d\n", matched);
5931 matched = 0;
5932 cli_list(cli, "xyzabc", 0, list_fn, &matched);
5933 printf("Matched %d\n", matched);
5935 printf("dirtest core %g seconds\n", timeval_elapsed(&core_start));
5937 srandom(0);
5938 for (i=0;i<torture_numops;i++) {
5939 fstring fname;
5940 slprintf(fname, sizeof(fname), "\\%x", (int)random());
5941 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5944 if (!torture_close_connection(cli)) {
5945 correct = False;
5948 printf("finished dirtest\n");
5950 return correct;
5953 static NTSTATUS del_fn(const char *mnt, struct file_info *finfo, const char *mask,
5954 void *state)
5956 struct cli_state *pcli = (struct cli_state *)state;
5957 fstring fname;
5958 slprintf(fname, sizeof(fname), "\\LISTDIR\\%s", finfo->name);
5960 if (strcmp(finfo->name, ".") == 0 || strcmp(finfo->name, "..") == 0)
5961 return NT_STATUS_OK;
5963 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
5964 if (!NT_STATUS_IS_OK(cli_rmdir(pcli, fname)))
5965 printf("del_fn: failed to rmdir %s\n,", fname );
5966 } else {
5967 if (!NT_STATUS_IS_OK(cli_unlink(pcli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN)))
5968 printf("del_fn: failed to unlink %s\n,", fname );
5970 return NT_STATUS_OK;
5975 sees what IOCTLs are supported
5977 bool torture_ioctl_test(int dummy)
5979 static struct cli_state *cli;
5980 uint16_t device, function;
5981 uint16_t fnum;
5982 const char *fname = "\\ioctl.dat";
5983 DATA_BLOB blob;
5984 NTSTATUS status;
5986 if (!torture_open_connection(&cli, 0)) {
5987 return False;
5990 printf("starting ioctl test\n");
5992 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
5994 status = cli_openx(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum);
5995 if (!NT_STATUS_IS_OK(status)) {
5996 printf("open of %s failed (%s)\n", fname, nt_errstr(status));
5997 return False;
6000 status = cli_raw_ioctl(cli, fnum, 0x2d0000 | (0x0420<<2), &blob);
6001 printf("ioctl device info: %s\n", nt_errstr(status));
6003 status = cli_raw_ioctl(cli, fnum, IOCTL_QUERY_JOB_INFO, &blob);
6004 printf("ioctl job info: %s\n", nt_errstr(status));
6006 for (device=0;device<0x100;device++) {
6007 printf("ioctl test with device = 0x%x\n", device);
6008 for (function=0;function<0x100;function++) {
6009 uint32 code = (device<<16) | function;
6011 status = cli_raw_ioctl(cli, fnum, code, &blob);
6013 if (NT_STATUS_IS_OK(status)) {
6014 printf("ioctl 0x%x OK : %d bytes\n", (int)code,
6015 (int)blob.length);
6016 data_blob_free(&blob);
6021 if (!torture_close_connection(cli)) {
6022 return False;
6025 return True;
6030 tries varients of chkpath
6032 bool torture_chkpath_test(int dummy)
6034 static struct cli_state *cli;
6035 uint16_t fnum;
6036 bool ret;
6037 NTSTATUS status;
6039 if (!torture_open_connection(&cli, 0)) {
6040 return False;
6043 printf("starting chkpath test\n");
6045 /* cleanup from an old run */
6046 cli_rmdir(cli, "\\chkpath.dir\\dir2");
6047 cli_unlink(cli, "\\chkpath.dir\\*", FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
6048 cli_rmdir(cli, "\\chkpath.dir");
6050 status = cli_mkdir(cli, "\\chkpath.dir");
6051 if (!NT_STATUS_IS_OK(status)) {
6052 printf("mkdir1 failed : %s\n", nt_errstr(status));
6053 return False;
6056 status = cli_mkdir(cli, "\\chkpath.dir\\dir2");
6057 if (!NT_STATUS_IS_OK(status)) {
6058 printf("mkdir2 failed : %s\n", nt_errstr(status));
6059 return False;
6062 status = cli_openx(cli, "\\chkpath.dir\\foo.txt", O_RDWR|O_CREAT|O_EXCL,
6063 DENY_NONE, &fnum);
6064 if (!NT_STATUS_IS_OK(status)) {
6065 printf("open1 failed (%s)\n", nt_errstr(status));
6066 return False;
6068 cli_close(cli, fnum);
6070 status = cli_chkpath(cli, "\\chkpath.dir");
6071 if (!NT_STATUS_IS_OK(status)) {
6072 printf("chkpath1 failed: %s\n", nt_errstr(status));
6073 ret = False;
6076 status = cli_chkpath(cli, "\\chkpath.dir\\dir2");
6077 if (!NT_STATUS_IS_OK(status)) {
6078 printf("chkpath2 failed: %s\n", nt_errstr(status));
6079 ret = False;
6082 status = cli_chkpath(cli, "\\chkpath.dir\\foo.txt");
6083 if (!NT_STATUS_IS_OK(status)) {
6084 ret = check_error(__LINE__, status, ERRDOS, ERRbadpath,
6085 NT_STATUS_NOT_A_DIRECTORY);
6086 } else {
6087 printf("* chkpath on a file should fail\n");
6088 ret = False;
6091 status = cli_chkpath(cli, "\\chkpath.dir\\bar.txt");
6092 if (!NT_STATUS_IS_OK(status)) {
6093 ret = check_error(__LINE__, status, ERRDOS, ERRbadfile,
6094 NT_STATUS_OBJECT_NAME_NOT_FOUND);
6095 } else {
6096 printf("* chkpath on a non existent file should fail\n");
6097 ret = False;
6100 status = cli_chkpath(cli, "\\chkpath.dir\\dirxx\\bar.txt");
6101 if (!NT_STATUS_IS_OK(status)) {
6102 ret = check_error(__LINE__, status, ERRDOS, ERRbadpath,
6103 NT_STATUS_OBJECT_PATH_NOT_FOUND);
6104 } else {
6105 printf("* chkpath on a non existent component should fail\n");
6106 ret = False;
6109 cli_rmdir(cli, "\\chkpath.dir\\dir2");
6110 cli_unlink(cli, "\\chkpath.dir\\*", FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
6111 cli_rmdir(cli, "\\chkpath.dir");
6113 if (!torture_close_connection(cli)) {
6114 return False;
6117 return ret;
6120 static bool run_eatest(int dummy)
6122 static struct cli_state *cli;
6123 const char *fname = "\\eatest.txt";
6124 bool correct = True;
6125 uint16_t fnum;
6126 int i;
6127 size_t num_eas;
6128 struct ea_struct *ea_list = NULL;
6129 TALLOC_CTX *mem_ctx = talloc_init("eatest");
6130 NTSTATUS status;
6132 printf("starting eatest\n");
6134 if (!torture_open_connection(&cli, 0)) {
6135 talloc_destroy(mem_ctx);
6136 return False;
6139 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
6141 status = cli_ntcreate(cli, fname, 0,
6142 FIRST_DESIRED_ACCESS, FILE_ATTRIBUTE_ARCHIVE,
6143 FILE_SHARE_NONE, FILE_OVERWRITE_IF,
6144 0x4044, 0, &fnum);
6145 if (!NT_STATUS_IS_OK(status)) {
6146 printf("open failed - %s\n", nt_errstr(status));
6147 talloc_destroy(mem_ctx);
6148 return False;
6151 for (i = 0; i < 10; i++) {
6152 fstring ea_name, ea_val;
6154 slprintf(ea_name, sizeof(ea_name), "EA_%d", i);
6155 memset(ea_val, (char)i+1, i+1);
6156 status = cli_set_ea_fnum(cli, fnum, ea_name, ea_val, i+1);
6157 if (!NT_STATUS_IS_OK(status)) {
6158 printf("ea_set of name %s failed - %s\n", ea_name,
6159 nt_errstr(status));
6160 talloc_destroy(mem_ctx);
6161 return False;
6165 cli_close(cli, fnum);
6166 for (i = 0; i < 10; i++) {
6167 fstring ea_name, ea_val;
6169 slprintf(ea_name, sizeof(ea_name), "EA_%d", i+10);
6170 memset(ea_val, (char)i+1, i+1);
6171 status = cli_set_ea_path(cli, fname, ea_name, ea_val, i+1);
6172 if (!NT_STATUS_IS_OK(status)) {
6173 printf("ea_set of name %s failed - %s\n", ea_name,
6174 nt_errstr(status));
6175 talloc_destroy(mem_ctx);
6176 return False;
6180 status = cli_get_ea_list_path(cli, fname, mem_ctx, &num_eas, &ea_list);
6181 if (!NT_STATUS_IS_OK(status)) {
6182 printf("ea_get list failed - %s\n", nt_errstr(status));
6183 correct = False;
6186 printf("num_eas = %d\n", (int)num_eas);
6188 if (num_eas != 20) {
6189 printf("Should be 20 EA's stored... failing.\n");
6190 correct = False;
6193 for (i = 0; i < num_eas; i++) {
6194 printf("%d: ea_name = %s. Val = ", i, ea_list[i].name);
6195 dump_data(0, ea_list[i].value.data,
6196 ea_list[i].value.length);
6199 /* Setting EA's to zero length deletes them. Test this */
6200 printf("Now deleting all EA's - case indepenent....\n");
6202 #if 1
6203 cli_set_ea_path(cli, fname, "", "", 0);
6204 #else
6205 for (i = 0; i < 20; i++) {
6206 fstring ea_name;
6207 slprintf(ea_name, sizeof(ea_name), "ea_%d", i);
6208 status = cli_set_ea_path(cli, fname, ea_name, "", 0);
6209 if (!NT_STATUS_IS_OK(status)) {
6210 printf("ea_set of name %s failed - %s\n", ea_name,
6211 nt_errstr(status));
6212 talloc_destroy(mem_ctx);
6213 return False;
6216 #endif
6218 status = cli_get_ea_list_path(cli, fname, mem_ctx, &num_eas, &ea_list);
6219 if (!NT_STATUS_IS_OK(status)) {
6220 printf("ea_get list failed - %s\n", nt_errstr(status));
6221 correct = False;
6224 printf("num_eas = %d\n", (int)num_eas);
6225 for (i = 0; i < num_eas; i++) {
6226 printf("%d: ea_name = %s. Val = ", i, ea_list[i].name);
6227 dump_data(0, ea_list[i].value.data,
6228 ea_list[i].value.length);
6231 if (num_eas != 0) {
6232 printf("deleting EA's failed.\n");
6233 correct = False;
6236 /* Try and delete a non existent EA. */
6237 status = cli_set_ea_path(cli, fname, "foo", "", 0);
6238 if (!NT_STATUS_IS_OK(status)) {
6239 printf("deleting non-existent EA 'foo' should succeed. %s\n",
6240 nt_errstr(status));
6241 correct = False;
6244 talloc_destroy(mem_ctx);
6245 if (!torture_close_connection(cli)) {
6246 correct = False;
6249 return correct;
6252 static bool run_dirtest1(int dummy)
6254 int i;
6255 static struct cli_state *cli;
6256 uint16_t fnum;
6257 int num_seen;
6258 bool correct = True;
6260 printf("starting directory test\n");
6262 if (!torture_open_connection(&cli, 0)) {
6263 return False;
6266 smbXcli_conn_set_sockopt(cli->conn, sockops);
6268 cli_list(cli, "\\LISTDIR\\*", 0, del_fn, cli);
6269 cli_list(cli, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY, del_fn, cli);
6270 cli_rmdir(cli, "\\LISTDIR");
6271 cli_mkdir(cli, "\\LISTDIR");
6273 /* Create 1000 files and 1000 directories. */
6274 for (i=0;i<1000;i++) {
6275 fstring fname;
6276 slprintf(fname, sizeof(fname), "\\LISTDIR\\f%d", i);
6277 if (!NT_STATUS_IS_OK(cli_ntcreate(cli, fname, 0, GENERIC_ALL_ACCESS, FILE_ATTRIBUTE_ARCHIVE,
6278 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OVERWRITE_IF, 0, 0, &fnum))) {
6279 fprintf(stderr,"Failed to open %s\n", fname);
6280 return False;
6282 cli_close(cli, fnum);
6284 for (i=0;i<1000;i++) {
6285 fstring fname;
6286 slprintf(fname, sizeof(fname), "\\LISTDIR\\d%d", i);
6287 if (!NT_STATUS_IS_OK(cli_mkdir(cli, fname))) {
6288 fprintf(stderr,"Failed to open %s\n", fname);
6289 return False;
6293 /* Now ensure that doing an old list sees both files and directories. */
6294 num_seen = 0;
6295 cli_list_old(cli, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY, list_fn, &num_seen);
6296 printf("num_seen = %d\n", num_seen );
6297 /* We should see 100 files + 1000 directories + . and .. */
6298 if (num_seen != 2002)
6299 correct = False;
6301 /* Ensure if we have the "must have" bits we only see the
6302 * relevent entries.
6304 num_seen = 0;
6305 cli_list_old(cli, "\\LISTDIR\\*", (FILE_ATTRIBUTE_DIRECTORY<<8)|FILE_ATTRIBUTE_DIRECTORY, list_fn, &num_seen);
6306 printf("num_seen = %d\n", num_seen );
6307 if (num_seen != 1002)
6308 correct = False;
6310 num_seen = 0;
6311 cli_list_old(cli, "\\LISTDIR\\*", (FILE_ATTRIBUTE_ARCHIVE<<8)|FILE_ATTRIBUTE_DIRECTORY, list_fn, &num_seen);
6312 printf("num_seen = %d\n", num_seen );
6313 if (num_seen != 1000)
6314 correct = False;
6316 /* Delete everything. */
6317 cli_list(cli, "\\LISTDIR\\*", 0, del_fn, cli);
6318 cli_list(cli, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY, del_fn, cli);
6319 cli_rmdir(cli, "\\LISTDIR");
6321 #if 0
6322 printf("Matched %d\n", cli_list(cli, "a*.*", 0, list_fn, NULL));
6323 printf("Matched %d\n", cli_list(cli, "b*.*", 0, list_fn, NULL));
6324 printf("Matched %d\n", cli_list(cli, "xyzabc", 0, list_fn, NULL));
6325 #endif
6327 if (!torture_close_connection(cli)) {
6328 correct = False;
6331 printf("finished dirtest1\n");
6333 return correct;
6336 static bool run_error_map_extract(int dummy) {
6338 static struct cli_state *c_dos;
6339 static struct cli_state *c_nt;
6340 NTSTATUS status;
6342 uint32 error;
6344 uint32 errnum;
6345 uint8 errclass;
6347 NTSTATUS nt_status;
6349 fstring user;
6351 /* NT-Error connection */
6353 disable_spnego = true;
6354 if (!(c_nt = open_nbt_connection())) {
6355 disable_spnego = false;
6356 return False;
6358 disable_spnego = false;
6360 status = smbXcli_negprot(c_nt->conn, c_nt->timeout, PROTOCOL_CORE,
6361 PROTOCOL_NT1);
6363 if (!NT_STATUS_IS_OK(status)) {
6364 printf("%s rejected the NT-error negprot (%s)\n", host,
6365 nt_errstr(status));
6366 cli_shutdown(c_nt);
6367 return False;
6370 status = cli_session_setup(c_nt, "", "", 0, "", 0, workgroup);
6371 if (!NT_STATUS_IS_OK(status)) {
6372 printf("%s rejected the NT-error initial session setup (%s)\n",host, nt_errstr(status));
6373 return False;
6376 /* DOS-Error connection */
6378 disable_spnego = true;
6379 force_dos_errors = true;
6380 if (!(c_dos = open_nbt_connection())) {
6381 disable_spnego = false;
6382 force_dos_errors = false;
6383 return False;
6385 disable_spnego = false;
6386 force_dos_errors = false;
6388 status = smbXcli_negprot(c_dos->conn, c_dos->timeout, PROTOCOL_CORE,
6389 PROTOCOL_NT1);
6390 if (!NT_STATUS_IS_OK(status)) {
6391 printf("%s rejected the DOS-error negprot (%s)\n", host,
6392 nt_errstr(status));
6393 cli_shutdown(c_dos);
6394 return False;
6397 status = cli_session_setup(c_dos, "", "", 0, "", 0, workgroup);
6398 if (!NT_STATUS_IS_OK(status)) {
6399 printf("%s rejected the DOS-error initial session setup (%s)\n",
6400 host, nt_errstr(status));
6401 return False;
6404 c_nt->map_dos_errors = false;
6405 c_dos->map_dos_errors = false;
6407 for (error=(0xc0000000 | 0x1); error < (0xc0000000| 0xFFF); error++) {
6408 fstr_sprintf(user, "%X", error);
6410 status = cli_session_setup(c_nt, user,
6411 password, strlen(password),
6412 password, strlen(password),
6413 workgroup);
6414 if (NT_STATUS_IS_OK(status)) {
6415 printf("/** Session setup succeeded. This shouldn't happen...*/\n");
6418 /* Case #1: 32-bit NT errors */
6419 if (!NT_STATUS_IS_DOS(status)) {
6420 nt_status = status;
6421 } else {
6422 printf("/** Dos error on NT connection! (%s) */\n",
6423 nt_errstr(status));
6424 nt_status = NT_STATUS(0xc0000000);
6427 status = cli_session_setup(c_dos, user,
6428 password, strlen(password),
6429 password, strlen(password),
6430 workgroup);
6431 if (NT_STATUS_IS_OK(status)) {
6432 printf("/** Session setup succeeded. This shouldn't happen...*/\n");
6435 /* Case #1: 32-bit NT errors */
6436 if (NT_STATUS_IS_DOS(status)) {
6437 printf("/** NT error on DOS connection! (%s) */\n",
6438 nt_errstr(status));
6439 errnum = errclass = 0;
6440 } else {
6441 errclass = NT_STATUS_DOS_CLASS(status);
6442 errnum = NT_STATUS_DOS_CODE(status);
6445 if (NT_STATUS_V(nt_status) != error) {
6446 printf("/*\t{ This NT error code was 'sqashed'\n\t from %s to %s \n\t during the session setup }\n*/\n",
6447 get_nt_error_c_code(talloc_tos(), NT_STATUS(error)),
6448 get_nt_error_c_code(talloc_tos(), nt_status));
6451 printf("\t{%s,\t%s,\t%s},\n",
6452 smb_dos_err_class(errclass),
6453 smb_dos_err_name(errclass, errnum),
6454 get_nt_error_c_code(talloc_tos(), NT_STATUS(error)));
6456 return True;
6459 static bool run_sesssetup_bench(int dummy)
6461 static struct cli_state *c;
6462 const char *fname = "\\file.dat";
6463 uint16_t fnum;
6464 NTSTATUS status;
6465 int i;
6467 if (!torture_open_connection(&c, 0)) {
6468 return false;
6471 status = cli_ntcreate(c, fname, 0, GENERIC_ALL_ACCESS|DELETE_ACCESS,
6472 FILE_ATTRIBUTE_NORMAL, 0, FILE_OVERWRITE_IF,
6473 FILE_DELETE_ON_CLOSE, 0, &fnum);
6474 if (!NT_STATUS_IS_OK(status)) {
6475 d_printf("open %s failed: %s\n", fname, nt_errstr(status));
6476 return false;
6479 for (i=0; i<torture_numops; i++) {
6480 status = cli_session_setup(
6481 c, username,
6482 password, strlen(password),
6483 password, strlen(password),
6484 workgroup);
6485 if (!NT_STATUS_IS_OK(status)) {
6486 d_printf("(%s) cli_session_setup failed: %s\n",
6487 __location__, nt_errstr(status));
6488 return false;
6491 d_printf("\r%d ", (int)cli_state_get_uid(c));
6493 status = cli_ulogoff(c);
6494 if (!NT_STATUS_IS_OK(status)) {
6495 d_printf("(%s) cli_ulogoff failed: %s\n",
6496 __location__, nt_errstr(status));
6497 return false;
6501 return true;
6504 static bool subst_test(const char *str, const char *user, const char *domain,
6505 uid_t uid, gid_t gid, const char *expected)
6507 char *subst;
6508 bool result = true;
6510 subst = talloc_sub_specified(talloc_tos(), str, user, domain, uid, gid);
6512 if (strcmp(subst, expected) != 0) {
6513 printf("sub_specified(%s, %s, %s, %d, %d) returned [%s], expected "
6514 "[%s]\n", str, user, domain, (int)uid, (int)gid, subst,
6515 expected);
6516 result = false;
6519 TALLOC_FREE(subst);
6520 return result;
6523 static void chain1_open_completion(struct tevent_req *req)
6525 uint16_t fnum;
6526 NTSTATUS status;
6527 status = cli_openx_recv(req, &fnum);
6528 TALLOC_FREE(req);
6530 d_printf("cli_openx_recv returned %s: %d\n",
6531 nt_errstr(status),
6532 NT_STATUS_IS_OK(status) ? fnum : -1);
6535 static void chain1_write_completion(struct tevent_req *req)
6537 size_t written;
6538 NTSTATUS status;
6539 status = cli_write_andx_recv(req, &written);
6540 TALLOC_FREE(req);
6542 d_printf("cli_write_andx_recv returned %s: %d\n",
6543 nt_errstr(status),
6544 NT_STATUS_IS_OK(status) ? (int)written : -1);
6547 static void chain1_close_completion(struct tevent_req *req)
6549 NTSTATUS status;
6550 bool *done = (bool *)tevent_req_callback_data_void(req);
6552 status = cli_close_recv(req);
6553 *done = true;
6555 TALLOC_FREE(req);
6557 d_printf("cli_close returned %s\n", nt_errstr(status));
6560 static bool run_chain1(int dummy)
6562 struct cli_state *cli1;
6563 struct event_context *evt = event_context_init(NULL);
6564 struct tevent_req *reqs[3], *smbreqs[3];
6565 bool done = false;
6566 const char *str = "foobar";
6567 NTSTATUS status;
6569 printf("starting chain1 test\n");
6570 if (!torture_open_connection(&cli1, 0)) {
6571 return False;
6574 smbXcli_conn_set_sockopt(cli1->conn, sockops);
6576 reqs[0] = cli_openx_create(talloc_tos(), evt, cli1, "\\test",
6577 O_CREAT|O_RDWR, 0, &smbreqs[0]);
6578 if (reqs[0] == NULL) return false;
6579 tevent_req_set_callback(reqs[0], chain1_open_completion, NULL);
6582 reqs[1] = cli_write_andx_create(talloc_tos(), evt, cli1, 0, 0,
6583 (const uint8_t *)str, 0, strlen(str)+1,
6584 smbreqs, 1, &smbreqs[1]);
6585 if (reqs[1] == NULL) return false;
6586 tevent_req_set_callback(reqs[1], chain1_write_completion, NULL);
6588 reqs[2] = cli_close_create(talloc_tos(), evt, cli1, 0, &smbreqs[2]);
6589 if (reqs[2] == NULL) return false;
6590 tevent_req_set_callback(reqs[2], chain1_close_completion, &done);
6592 status = smb1cli_req_chain_submit(smbreqs, ARRAY_SIZE(smbreqs));
6593 if (!NT_STATUS_IS_OK(status)) {
6594 return false;
6597 while (!done) {
6598 tevent_loop_once(evt);
6601 torture_close_connection(cli1);
6602 return True;
6605 static void chain2_sesssetup_completion(struct tevent_req *req)
6607 NTSTATUS status;
6608 status = cli_session_setup_guest_recv(req);
6609 d_printf("sesssetup returned %s\n", nt_errstr(status));
6612 static void chain2_tcon_completion(struct tevent_req *req)
6614 bool *done = (bool *)tevent_req_callback_data_void(req);
6615 NTSTATUS status;
6616 status = cli_tcon_andx_recv(req);
6617 d_printf("tcon_and_x returned %s\n", nt_errstr(status));
6618 *done = true;
6621 static bool run_chain2(int dummy)
6623 struct cli_state *cli1;
6624 struct event_context *evt = event_context_init(NULL);
6625 struct tevent_req *reqs[2], *smbreqs[2];
6626 bool done = false;
6627 NTSTATUS status;
6629 printf("starting chain2 test\n");
6630 status = cli_start_connection(&cli1, lp_netbios_name(), host, NULL,
6631 port_to_use, SMB_SIGNING_DEFAULT, 0);
6632 if (!NT_STATUS_IS_OK(status)) {
6633 return False;
6636 smbXcli_conn_set_sockopt(cli1->conn, sockops);
6638 reqs[0] = cli_session_setup_guest_create(talloc_tos(), evt, cli1,
6639 &smbreqs[0]);
6640 if (reqs[0] == NULL) return false;
6641 tevent_req_set_callback(reqs[0], chain2_sesssetup_completion, NULL);
6643 reqs[1] = cli_tcon_andx_create(talloc_tos(), evt, cli1, "IPC$",
6644 "?????", NULL, 0, &smbreqs[1]);
6645 if (reqs[1] == NULL) return false;
6646 tevent_req_set_callback(reqs[1], chain2_tcon_completion, &done);
6648 status = smb1cli_req_chain_submit(smbreqs, ARRAY_SIZE(smbreqs));
6649 if (!NT_STATUS_IS_OK(status)) {
6650 return false;
6653 while (!done) {
6654 tevent_loop_once(evt);
6657 torture_close_connection(cli1);
6658 return True;
6662 struct torture_createdel_state {
6663 struct tevent_context *ev;
6664 struct cli_state *cli;
6667 static void torture_createdel_created(struct tevent_req *subreq);
6668 static void torture_createdel_closed(struct tevent_req *subreq);
6670 static struct tevent_req *torture_createdel_send(TALLOC_CTX *mem_ctx,
6671 struct tevent_context *ev,
6672 struct cli_state *cli,
6673 const char *name)
6675 struct tevent_req *req, *subreq;
6676 struct torture_createdel_state *state;
6678 req = tevent_req_create(mem_ctx, &state,
6679 struct torture_createdel_state);
6680 if (req == NULL) {
6681 return NULL;
6683 state->ev = ev;
6684 state->cli = cli;
6686 subreq = cli_ntcreate_send(
6687 state, ev, cli, name, 0,
6688 FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
6689 FILE_ATTRIBUTE_NORMAL,
6690 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
6691 FILE_OPEN_IF, FILE_DELETE_ON_CLOSE, 0);
6693 if (tevent_req_nomem(subreq, req)) {
6694 return tevent_req_post(req, ev);
6696 tevent_req_set_callback(subreq, torture_createdel_created, req);
6697 return req;
6700 static void torture_createdel_created(struct tevent_req *subreq)
6702 struct tevent_req *req = tevent_req_callback_data(
6703 subreq, struct tevent_req);
6704 struct torture_createdel_state *state = tevent_req_data(
6705 req, struct torture_createdel_state);
6706 NTSTATUS status;
6707 uint16_t fnum;
6709 status = cli_ntcreate_recv(subreq, &fnum);
6710 TALLOC_FREE(subreq);
6711 if (!NT_STATUS_IS_OK(status)) {
6712 DEBUG(10, ("cli_ntcreate_recv returned %s\n",
6713 nt_errstr(status)));
6714 tevent_req_nterror(req, status);
6715 return;
6718 subreq = cli_close_send(state, state->ev, state->cli, fnum);
6719 if (tevent_req_nomem(subreq, req)) {
6720 return;
6722 tevent_req_set_callback(subreq, torture_createdel_closed, req);
6725 static void torture_createdel_closed(struct tevent_req *subreq)
6727 struct tevent_req *req = tevent_req_callback_data(
6728 subreq, struct tevent_req);
6729 NTSTATUS status;
6731 status = cli_close_recv(subreq);
6732 if (!NT_STATUS_IS_OK(status)) {
6733 DEBUG(10, ("cli_close_recv returned %s\n", nt_errstr(status)));
6734 tevent_req_nterror(req, status);
6735 return;
6737 tevent_req_done(req);
6740 static NTSTATUS torture_createdel_recv(struct tevent_req *req)
6742 return tevent_req_simple_recv_ntstatus(req);
6745 struct torture_createdels_state {
6746 struct tevent_context *ev;
6747 struct cli_state *cli;
6748 const char *base_name;
6749 int sent;
6750 int received;
6751 int num_files;
6752 struct tevent_req **reqs;
6755 static void torture_createdels_done(struct tevent_req *subreq);
6757 static struct tevent_req *torture_createdels_send(TALLOC_CTX *mem_ctx,
6758 struct tevent_context *ev,
6759 struct cli_state *cli,
6760 const char *base_name,
6761 int num_parallel,
6762 int num_files)
6764 struct tevent_req *req;
6765 struct torture_createdels_state *state;
6766 int i;
6768 req = tevent_req_create(mem_ctx, &state,
6769 struct torture_createdels_state);
6770 if (req == NULL) {
6771 return NULL;
6773 state->ev = ev;
6774 state->cli = cli;
6775 state->base_name = talloc_strdup(state, base_name);
6776 if (tevent_req_nomem(state->base_name, req)) {
6777 return tevent_req_post(req, ev);
6779 state->num_files = MAX(num_parallel, num_files);
6780 state->sent = 0;
6781 state->received = 0;
6783 state->reqs = talloc_array(state, struct tevent_req *, num_parallel);
6784 if (tevent_req_nomem(state->reqs, req)) {
6785 return tevent_req_post(req, ev);
6788 for (i=0; i<num_parallel; i++) {
6789 char *name;
6791 name = talloc_asprintf(state, "%s%8.8d", state->base_name,
6792 state->sent);
6793 if (tevent_req_nomem(name, req)) {
6794 return tevent_req_post(req, ev);
6796 state->reqs[i] = torture_createdel_send(
6797 state->reqs, state->ev, state->cli, name);
6798 if (tevent_req_nomem(state->reqs[i], req)) {
6799 return tevent_req_post(req, ev);
6801 name = talloc_move(state->reqs[i], &name);
6802 tevent_req_set_callback(state->reqs[i],
6803 torture_createdels_done, req);
6804 state->sent += 1;
6806 return req;
6809 static void torture_createdels_done(struct tevent_req *subreq)
6811 struct tevent_req *req = tevent_req_callback_data(
6812 subreq, struct tevent_req);
6813 struct torture_createdels_state *state = tevent_req_data(
6814 req, struct torture_createdels_state);
6815 size_t num_parallel = talloc_array_length(state->reqs);
6816 NTSTATUS status;
6817 char *name;
6818 int i;
6820 status = torture_createdel_recv(subreq);
6821 if (!NT_STATUS_IS_OK(status)){
6822 DEBUG(10, ("torture_createdel_recv returned %s\n",
6823 nt_errstr(status)));
6824 TALLOC_FREE(subreq);
6825 tevent_req_nterror(req, status);
6826 return;
6829 for (i=0; i<num_parallel; i++) {
6830 if (subreq == state->reqs[i]) {
6831 break;
6834 if (i == num_parallel) {
6835 DEBUG(10, ("received something we did not send\n"));
6836 tevent_req_nterror(req, NT_STATUS_INTERNAL_ERROR);
6837 return;
6839 TALLOC_FREE(state->reqs[i]);
6841 if (state->sent >= state->num_files) {
6842 tevent_req_done(req);
6843 return;
6846 name = talloc_asprintf(state, "%s%8.8d", state->base_name,
6847 state->sent);
6848 if (tevent_req_nomem(name, req)) {
6849 return;
6851 state->reqs[i] = torture_createdel_send(state->reqs, state->ev,
6852 state->cli, name);
6853 if (tevent_req_nomem(state->reqs[i], req)) {
6854 return;
6856 name = talloc_move(state->reqs[i], &name);
6857 tevent_req_set_callback(state->reqs[i], torture_createdels_done, req);
6858 state->sent += 1;
6861 static NTSTATUS torture_createdels_recv(struct tevent_req *req)
6863 return tevent_req_simple_recv_ntstatus(req);
6866 struct swallow_notify_state {
6867 struct tevent_context *ev;
6868 struct cli_state *cli;
6869 uint16_t fnum;
6870 uint32_t completion_filter;
6871 bool recursive;
6872 bool (*fn)(uint32_t action, const char *name, void *priv);
6873 void *priv;
6876 static void swallow_notify_done(struct tevent_req *subreq);
6878 static struct tevent_req *swallow_notify_send(TALLOC_CTX *mem_ctx,
6879 struct tevent_context *ev,
6880 struct cli_state *cli,
6881 uint16_t fnum,
6882 uint32_t completion_filter,
6883 bool recursive,
6884 bool (*fn)(uint32_t action,
6885 const char *name,
6886 void *priv),
6887 void *priv)
6889 struct tevent_req *req, *subreq;
6890 struct swallow_notify_state *state;
6892 req = tevent_req_create(mem_ctx, &state,
6893 struct swallow_notify_state);
6894 if (req == NULL) {
6895 return NULL;
6897 state->ev = ev;
6898 state->cli = cli;
6899 state->fnum = fnum;
6900 state->completion_filter = completion_filter;
6901 state->recursive = recursive;
6902 state->fn = fn;
6903 state->priv = priv;
6905 subreq = cli_notify_send(state, state->ev, state->cli, state->fnum,
6906 0xffff, state->completion_filter,
6907 state->recursive);
6908 if (tevent_req_nomem(subreq, req)) {
6909 return tevent_req_post(req, ev);
6911 tevent_req_set_callback(subreq, swallow_notify_done, req);
6912 return req;
6915 static void swallow_notify_done(struct tevent_req *subreq)
6917 struct tevent_req *req = tevent_req_callback_data(
6918 subreq, struct tevent_req);
6919 struct swallow_notify_state *state = tevent_req_data(
6920 req, struct swallow_notify_state);
6921 NTSTATUS status;
6922 uint32_t i, num_changes;
6923 struct notify_change *changes;
6925 status = cli_notify_recv(subreq, state, &num_changes, &changes);
6926 TALLOC_FREE(subreq);
6927 if (!NT_STATUS_IS_OK(status)) {
6928 DEBUG(10, ("cli_notify_recv returned %s\n",
6929 nt_errstr(status)));
6930 tevent_req_nterror(req, status);
6931 return;
6934 for (i=0; i<num_changes; i++) {
6935 state->fn(changes[i].action, changes[i].name, state->priv);
6937 TALLOC_FREE(changes);
6939 subreq = cli_notify_send(state, state->ev, state->cli, state->fnum,
6940 0xffff, state->completion_filter,
6941 state->recursive);
6942 if (tevent_req_nomem(subreq, req)) {
6943 return;
6945 tevent_req_set_callback(subreq, swallow_notify_done, req);
6948 static bool print_notifies(uint32_t action, const char *name, void *priv)
6950 if (DEBUGLEVEL > 5) {
6951 d_printf("%d %s\n", (int)action, name);
6953 return true;
6956 static void notify_bench_done(struct tevent_req *req)
6958 int *num_finished = (int *)tevent_req_callback_data_void(req);
6959 *num_finished += 1;
6962 static bool run_notify_bench(int dummy)
6964 const char *dname = "\\notify-bench";
6965 struct tevent_context *ev;
6966 NTSTATUS status;
6967 uint16_t dnum;
6968 struct tevent_req *req1;
6969 struct tevent_req *req2 = NULL;
6970 int i, num_unc_names;
6971 int num_finished = 0;
6973 printf("starting notify-bench test\n");
6975 if (use_multishare_conn) {
6976 char **unc_list;
6977 unc_list = file_lines_load(multishare_conn_fname,
6978 &num_unc_names, 0, NULL);
6979 if (!unc_list || num_unc_names <= 0) {
6980 d_printf("Failed to load unc names list from '%s'\n",
6981 multishare_conn_fname);
6982 return false;
6984 TALLOC_FREE(unc_list);
6985 } else {
6986 num_unc_names = 1;
6989 ev = tevent_context_init(talloc_tos());
6990 if (ev == NULL) {
6991 d_printf("tevent_context_init failed\n");
6992 return false;
6995 for (i=0; i<num_unc_names; i++) {
6996 struct cli_state *cli;
6997 char *base_fname;
6999 base_fname = talloc_asprintf(talloc_tos(), "%s\\file%3.3d.",
7000 dname, i);
7001 if (base_fname == NULL) {
7002 return false;
7005 if (!torture_open_connection(&cli, i)) {
7006 return false;
7009 status = cli_ntcreate(cli, dname, 0,
7010 MAXIMUM_ALLOWED_ACCESS,
7011 0, FILE_SHARE_READ|FILE_SHARE_WRITE|
7012 FILE_SHARE_DELETE,
7013 FILE_OPEN_IF, FILE_DIRECTORY_FILE, 0,
7014 &dnum);
7016 if (!NT_STATUS_IS_OK(status)) {
7017 d_printf("Could not create %s: %s\n", dname,
7018 nt_errstr(status));
7019 return false;
7022 req1 = swallow_notify_send(talloc_tos(), ev, cli, dnum,
7023 FILE_NOTIFY_CHANGE_FILE_NAME |
7024 FILE_NOTIFY_CHANGE_DIR_NAME |
7025 FILE_NOTIFY_CHANGE_ATTRIBUTES |
7026 FILE_NOTIFY_CHANGE_LAST_WRITE,
7027 false, print_notifies, NULL);
7028 if (req1 == NULL) {
7029 d_printf("Could not create notify request\n");
7030 return false;
7033 req2 = torture_createdels_send(talloc_tos(), ev, cli,
7034 base_fname, 10, torture_numops);
7035 if (req2 == NULL) {
7036 d_printf("Could not create createdels request\n");
7037 return false;
7039 TALLOC_FREE(base_fname);
7041 tevent_req_set_callback(req2, notify_bench_done,
7042 &num_finished);
7045 while (num_finished < num_unc_names) {
7046 int ret;
7047 ret = tevent_loop_once(ev);
7048 if (ret != 0) {
7049 d_printf("tevent_loop_once failed\n");
7050 return false;
7054 if (!tevent_req_poll(req2, ev)) {
7055 d_printf("tevent_req_poll failed\n");
7058 status = torture_createdels_recv(req2);
7059 d_printf("torture_createdels_recv returned %s\n", nt_errstr(status));
7061 return true;
7064 static bool run_mangle1(int dummy)
7066 struct cli_state *cli;
7067 const char *fname = "this_is_a_long_fname_to_be_mangled.txt";
7068 uint16_t fnum;
7069 fstring alt_name;
7070 NTSTATUS status;
7071 time_t change_time, access_time, write_time;
7072 off_t size;
7073 uint16_t mode;
7075 printf("starting mangle1 test\n");
7076 if (!torture_open_connection(&cli, 0)) {
7077 return False;
7080 smbXcli_conn_set_sockopt(cli->conn, sockops);
7082 status = cli_ntcreate(cli, fname, 0, GENERIC_ALL_ACCESS|DELETE_ACCESS,
7083 FILE_ATTRIBUTE_NORMAL, 0, FILE_OVERWRITE_IF,
7084 0, 0, &fnum);
7085 if (!NT_STATUS_IS_OK(status)) {
7086 d_printf("open %s failed: %s\n", fname, nt_errstr(status));
7087 return false;
7089 cli_close(cli, fnum);
7091 status = cli_qpathinfo_alt_name(cli, fname, alt_name);
7092 if (!NT_STATUS_IS_OK(status)) {
7093 d_printf("cli_qpathinfo_alt_name failed: %s\n",
7094 nt_errstr(status));
7095 return false;
7097 d_printf("alt_name: %s\n", alt_name);
7099 status = cli_openx(cli, alt_name, O_RDONLY, DENY_NONE, &fnum);
7100 if (!NT_STATUS_IS_OK(status)) {
7101 d_printf("cli_openx(%s) failed: %s\n", alt_name,
7102 nt_errstr(status));
7103 return false;
7105 cli_close(cli, fnum);
7107 status = cli_qpathinfo1(cli, alt_name, &change_time, &access_time,
7108 &write_time, &size, &mode);
7109 if (!NT_STATUS_IS_OK(status)) {
7110 d_printf("cli_qpathinfo1(%s) failed: %s\n", alt_name,
7111 nt_errstr(status));
7112 return false;
7115 return true;
7118 static size_t null_source(uint8_t *buf, size_t n, void *priv)
7120 size_t *to_pull = (size_t *)priv;
7121 size_t thistime = *to_pull;
7123 thistime = MIN(thistime, n);
7124 if (thistime == 0) {
7125 return 0;
7128 memset(buf, 0, thistime);
7129 *to_pull -= thistime;
7130 return thistime;
7133 static bool run_windows_write(int dummy)
7135 struct cli_state *cli1;
7136 uint16_t fnum;
7137 int i;
7138 bool ret = false;
7139 const char *fname = "\\writetest.txt";
7140 struct timeval start_time;
7141 double seconds;
7142 double kbytes;
7143 NTSTATUS status;
7145 printf("starting windows_write test\n");
7146 if (!torture_open_connection(&cli1, 0)) {
7147 return False;
7150 status = cli_openx(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum);
7151 if (!NT_STATUS_IS_OK(status)) {
7152 printf("open failed (%s)\n", nt_errstr(status));
7153 return False;
7156 smbXcli_conn_set_sockopt(cli1->conn, sockops);
7158 start_time = timeval_current();
7160 for (i=0; i<torture_numops; i++) {
7161 uint8_t c = 0;
7162 off_t start = i * torture_blocksize;
7163 size_t to_pull = torture_blocksize - 1;
7165 status = cli_writeall(cli1, fnum, 0, &c,
7166 start + torture_blocksize - 1, 1, NULL);
7167 if (!NT_STATUS_IS_OK(status)) {
7168 printf("cli_write failed: %s\n", nt_errstr(status));
7169 goto fail;
7172 status = cli_push(cli1, fnum, 0, i * torture_blocksize, torture_blocksize,
7173 null_source, &to_pull);
7174 if (!NT_STATUS_IS_OK(status)) {
7175 printf("cli_push returned: %s\n", nt_errstr(status));
7176 goto fail;
7180 seconds = timeval_elapsed(&start_time);
7181 kbytes = (double)torture_blocksize * torture_numops;
7182 kbytes /= 1024;
7184 printf("Wrote %d kbytes in %.2f seconds: %d kb/sec\n", (int)kbytes,
7185 (double)seconds, (int)(kbytes/seconds));
7187 ret = true;
7188 fail:
7189 cli_close(cli1, fnum);
7190 cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
7191 torture_close_connection(cli1);
7192 return ret;
7195 static bool run_cli_echo(int dummy)
7197 struct cli_state *cli;
7198 NTSTATUS status;
7200 printf("starting cli_echo test\n");
7201 if (!torture_open_connection(&cli, 0)) {
7202 return false;
7204 smbXcli_conn_set_sockopt(cli->conn, sockops);
7206 status = cli_echo(cli, 5, data_blob_const("hello", 5));
7208 d_printf("cli_echo returned %s\n", nt_errstr(status));
7210 torture_close_connection(cli);
7211 return NT_STATUS_IS_OK(status);
7214 static bool run_uid_regression_test(int dummy)
7216 static struct cli_state *cli;
7217 int16_t old_vuid;
7218 int16_t old_cnum;
7219 bool correct = True;
7220 NTSTATUS status;
7222 printf("starting uid regression test\n");
7224 if (!torture_open_connection(&cli, 0)) {
7225 return False;
7228 smbXcli_conn_set_sockopt(cli->conn, sockops);
7230 /* Ok - now save then logoff our current user. */
7231 old_vuid = cli_state_get_uid(cli);
7233 status = cli_ulogoff(cli);
7234 if (!NT_STATUS_IS_OK(status)) {
7235 d_printf("(%s) cli_ulogoff failed: %s\n",
7236 __location__, nt_errstr(status));
7237 correct = false;
7238 goto out;
7241 cli_state_set_uid(cli, old_vuid);
7243 /* Try an operation. */
7244 status = cli_mkdir(cli, "\\uid_reg_test");
7245 if (NT_STATUS_IS_OK(status)) {
7246 d_printf("(%s) cli_mkdir succeeded\n",
7247 __location__);
7248 correct = false;
7249 goto out;
7250 } else {
7251 /* Should be bad uid. */
7252 if (!check_error(__LINE__, status, ERRSRV, ERRbaduid,
7253 NT_STATUS_USER_SESSION_DELETED)) {
7254 correct = false;
7255 goto out;
7259 old_cnum = cli_state_get_tid(cli);
7261 /* Now try a SMBtdis with the invald vuid set to zero. */
7262 cli_state_set_uid(cli, 0);
7264 /* This should succeed. */
7265 status = cli_tdis(cli);
7267 if (NT_STATUS_IS_OK(status)) {
7268 d_printf("First tdis with invalid vuid should succeed.\n");
7269 } else {
7270 d_printf("First tdis failed (%s)\n", nt_errstr(status));
7271 correct = false;
7272 goto out;
7275 cli_state_set_uid(cli, old_vuid);
7276 cli_state_set_tid(cli, old_cnum);
7278 /* This should fail. */
7279 status = cli_tdis(cli);
7280 if (NT_STATUS_IS_OK(status)) {
7281 d_printf("Second tdis with invalid vuid should fail - succeeded instead !.\n");
7282 correct = false;
7283 goto out;
7284 } else {
7285 /* Should be bad tid. */
7286 if (!check_error(__LINE__, status, ERRSRV, ERRinvnid,
7287 NT_STATUS_NETWORK_NAME_DELETED)) {
7288 correct = false;
7289 goto out;
7293 cli_rmdir(cli, "\\uid_reg_test");
7295 out:
7297 cli_shutdown(cli);
7298 return correct;
7302 static const char *illegal_chars = "*\\/?<>|\":";
7303 static char force_shortname_chars[] = " +,.[];=\177";
7305 static NTSTATUS shortname_del_fn(const char *mnt, struct file_info *finfo,
7306 const char *mask, void *state)
7308 struct cli_state *pcli = (struct cli_state *)state;
7309 fstring fname;
7310 NTSTATUS status = NT_STATUS_OK;
7312 slprintf(fname, sizeof(fname), "\\shortname\\%s", finfo->name);
7314 if (strcmp(finfo->name, ".") == 0 || strcmp(finfo->name, "..") == 0)
7315 return NT_STATUS_OK;
7317 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
7318 status = cli_rmdir(pcli, fname);
7319 if (!NT_STATUS_IS_OK(status)) {
7320 printf("del_fn: failed to rmdir %s\n,", fname );
7322 } else {
7323 status = cli_unlink(pcli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
7324 if (!NT_STATUS_IS_OK(status)) {
7325 printf("del_fn: failed to unlink %s\n,", fname );
7328 return status;
7331 struct sn_state {
7332 int matched;
7333 int i;
7334 bool val;
7337 static NTSTATUS shortname_list_fn(const char *mnt, struct file_info *finfo,
7338 const char *name, void *state)
7340 struct sn_state *s = (struct sn_state *)state;
7341 int i = s->i;
7343 #if 0
7344 printf("shortname list: i = %d, name = |%s|, shortname = |%s|\n",
7345 i, finfo->name, finfo->short_name);
7346 #endif
7348 if (strchr(force_shortname_chars, i)) {
7349 if (!finfo->short_name) {
7350 /* Shortname not created when it should be. */
7351 d_printf("(%s) ERROR: Shortname was not created for file %s containing %d\n",
7352 __location__, finfo->name, i);
7353 s->val = true;
7355 } else if (finfo->short_name){
7356 /* Shortname created when it should not be. */
7357 d_printf("(%s) ERROR: Shortname %s was created for file %s\n",
7358 __location__, finfo->short_name, finfo->name);
7359 s->val = true;
7361 s->matched += 1;
7362 return NT_STATUS_OK;
7365 static bool run_shortname_test(int dummy)
7367 static struct cli_state *cli;
7368 bool correct = True;
7369 int i;
7370 struct sn_state s;
7371 char fname[40];
7372 NTSTATUS status;
7374 printf("starting shortname test\n");
7376 if (!torture_open_connection(&cli, 0)) {
7377 return False;
7380 smbXcli_conn_set_sockopt(cli->conn, sockops);
7382 cli_list(cli, "\\shortname\\*", 0, shortname_del_fn, cli);
7383 cli_list(cli, "\\shortname\\*", FILE_ATTRIBUTE_DIRECTORY, shortname_del_fn, cli);
7384 cli_rmdir(cli, "\\shortname");
7386 status = cli_mkdir(cli, "\\shortname");
7387 if (!NT_STATUS_IS_OK(status)) {
7388 d_printf("(%s) cli_mkdir of \\shortname failed: %s\n",
7389 __location__, nt_errstr(status));
7390 correct = false;
7391 goto out;
7394 if (strlcpy(fname, "\\shortname\\", sizeof(fname)) >= sizeof(fname)) {
7395 correct = false;
7396 goto out;
7398 if (strlcat(fname, "test .txt", sizeof(fname)) >= sizeof(fname)) {
7399 correct = false;
7400 goto out;
7403 s.val = false;
7405 for (i = 32; i < 128; i++) {
7406 uint16_t fnum = (uint16_t)-1;
7408 s.i = i;
7410 if (strchr(illegal_chars, i)) {
7411 continue;
7413 fname[15] = i;
7415 status = cli_ntcreate(cli, fname, 0, GENERIC_ALL_ACCESS, FILE_ATTRIBUTE_NORMAL,
7416 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OVERWRITE_IF, 0, 0, &fnum);
7417 if (!NT_STATUS_IS_OK(status)) {
7418 d_printf("(%s) cli_nt_create of %s failed: %s\n",
7419 __location__, fname, nt_errstr(status));
7420 correct = false;
7421 goto out;
7423 cli_close(cli, fnum);
7425 s.matched = 0;
7426 status = cli_list(cli, "\\shortname\\test*.*", 0,
7427 shortname_list_fn, &s);
7428 if (s.matched != 1) {
7429 d_printf("(%s) failed to list %s: %s\n",
7430 __location__, fname, nt_errstr(status));
7431 correct = false;
7432 goto out;
7435 status = cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
7436 if (!NT_STATUS_IS_OK(status)) {
7437 d_printf("(%s) failed to delete %s: %s\n",
7438 __location__, fname, nt_errstr(status));
7439 correct = false;
7440 goto out;
7443 if (s.val) {
7444 correct = false;
7445 goto out;
7449 out:
7451 cli_list(cli, "\\shortname\\*", 0, shortname_del_fn, cli);
7452 cli_list(cli, "\\shortname\\*", FILE_ATTRIBUTE_DIRECTORY, shortname_del_fn, cli);
7453 cli_rmdir(cli, "\\shortname");
7454 torture_close_connection(cli);
7455 return correct;
7458 static void pagedsearch_cb(struct tevent_req *req)
7460 int rc;
7461 struct tldap_message *msg;
7462 char *dn;
7464 rc = tldap_search_paged_recv(req, talloc_tos(), &msg);
7465 if (rc != TLDAP_SUCCESS) {
7466 d_printf("tldap_search_paged_recv failed: %s\n",
7467 tldap_err2string(rc));
7468 return;
7470 if (tldap_msg_type(msg) != TLDAP_RES_SEARCH_ENTRY) {
7471 TALLOC_FREE(msg);
7472 return;
7474 if (!tldap_entry_dn(msg, &dn)) {
7475 d_printf("tldap_entry_dn failed\n");
7476 return;
7478 d_printf("%s\n", dn);
7479 TALLOC_FREE(msg);
7482 static bool run_tldap(int dummy)
7484 struct tldap_context *ld;
7485 int fd, rc;
7486 NTSTATUS status;
7487 struct sockaddr_storage addr;
7488 struct tevent_context *ev;
7489 struct tevent_req *req;
7490 char *basedn;
7491 const char *filter;
7493 if (!resolve_name(host, &addr, 0, false)) {
7494 d_printf("could not find host %s\n", host);
7495 return false;
7497 status = open_socket_out(&addr, 389, 9999, &fd);
7498 if (!NT_STATUS_IS_OK(status)) {
7499 d_printf("open_socket_out failed: %s\n", nt_errstr(status));
7500 return false;
7503 ld = tldap_context_create(talloc_tos(), fd);
7504 if (ld == NULL) {
7505 close(fd);
7506 d_printf("tldap_context_create failed\n");
7507 return false;
7510 rc = tldap_fetch_rootdse(ld);
7511 if (rc != TLDAP_SUCCESS) {
7512 d_printf("tldap_fetch_rootdse failed: %s\n",
7513 tldap_errstr(talloc_tos(), ld, rc));
7514 return false;
7517 basedn = tldap_talloc_single_attribute(
7518 tldap_rootdse(ld), "defaultNamingContext", talloc_tos());
7519 if (basedn == NULL) {
7520 d_printf("no defaultNamingContext\n");
7521 return false;
7523 d_printf("defaultNamingContext: %s\n", basedn);
7525 ev = tevent_context_init(talloc_tos());
7526 if (ev == NULL) {
7527 d_printf("tevent_context_init failed\n");
7528 return false;
7531 req = tldap_search_paged_send(talloc_tos(), ev, ld, basedn,
7532 TLDAP_SCOPE_SUB, "(objectclass=*)",
7533 NULL, 0, 0,
7534 NULL, 0, NULL, 0, 0, 0, 0, 5);
7535 if (req == NULL) {
7536 d_printf("tldap_search_paged_send failed\n");
7537 return false;
7539 tevent_req_set_callback(req, pagedsearch_cb, NULL);
7541 tevent_req_poll(req, ev);
7543 TALLOC_FREE(req);
7545 /* test search filters against rootDSE */
7546 filter = "(&(|(name=samba)(nextRid<=10000000)(usnChanged>=10)(samba~=ambas)(!(name=s*m*a)))"
7547 "(|(name:=samba)(name:dn:2.5.13.5:=samba)(:dn:2.5.13.5:=samba)(!(name=*samba))))";
7549 rc = tldap_search(ld, "", TLDAP_SCOPE_BASE, filter,
7550 NULL, 0, 0, NULL, 0, NULL, 0, 0, 0, 0,
7551 talloc_tos(), NULL, NULL);
7552 if (rc != TLDAP_SUCCESS) {
7553 d_printf("tldap_search with complex filter failed: %s\n",
7554 tldap_errstr(talloc_tos(), ld, rc));
7555 return false;
7558 TALLOC_FREE(ld);
7559 return true;
7562 /* Torture test to ensure no regression of :
7563 https://bugzilla.samba.org/show_bug.cgi?id=7084
7566 static bool run_dir_createtime(int dummy)
7568 struct cli_state *cli;
7569 const char *dname = "\\testdir";
7570 const char *fname = "\\testdir\\testfile";
7571 NTSTATUS status;
7572 struct timespec create_time;
7573 struct timespec create_time1;
7574 uint16_t fnum;
7575 bool ret = false;
7577 if (!torture_open_connection(&cli, 0)) {
7578 return false;
7581 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
7582 cli_rmdir(cli, dname);
7584 status = cli_mkdir(cli, dname);
7585 if (!NT_STATUS_IS_OK(status)) {
7586 printf("mkdir failed: %s\n", nt_errstr(status));
7587 goto out;
7590 status = cli_qpathinfo2(cli, dname, &create_time, NULL, NULL, NULL,
7591 NULL, NULL, NULL);
7592 if (!NT_STATUS_IS_OK(status)) {
7593 printf("cli_qpathinfo2 returned %s\n",
7594 nt_errstr(status));
7595 goto out;
7598 /* Sleep 3 seconds, then create a file. */
7599 sleep(3);
7601 status = cli_openx(cli, fname, O_RDWR | O_CREAT | O_EXCL,
7602 DENY_NONE, &fnum);
7603 if (!NT_STATUS_IS_OK(status)) {
7604 printf("cli_openx failed: %s\n", nt_errstr(status));
7605 goto out;
7608 status = cli_qpathinfo2(cli, dname, &create_time1, NULL, NULL, NULL,
7609 NULL, NULL, NULL);
7610 if (!NT_STATUS_IS_OK(status)) {
7611 printf("cli_qpathinfo2 (2) returned %s\n",
7612 nt_errstr(status));
7613 goto out;
7616 if (timespec_compare(&create_time1, &create_time)) {
7617 printf("run_dir_createtime: create time was updated (error)\n");
7618 } else {
7619 printf("run_dir_createtime: create time was not updated (correct)\n");
7620 ret = true;
7623 out:
7625 cli_unlink(cli, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
7626 cli_rmdir(cli, dname);
7627 if (!torture_close_connection(cli)) {
7628 ret = false;
7630 return ret;
7634 static bool run_streamerror(int dummy)
7636 struct cli_state *cli;
7637 const char *dname = "\\testdir";
7638 const char *streamname =
7639 "testdir:{4c8cc155-6c1e-11d1-8e41-00c04fb9386d}:$DATA";
7640 NTSTATUS status;
7641 time_t change_time, access_time, write_time;
7642 off_t size;
7643 uint16_t mode, fnum;
7644 bool ret = true;
7646 if (!torture_open_connection(&cli, 0)) {
7647 return false;
7650 cli_unlink(cli, "\\testdir\\*", FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
7651 cli_rmdir(cli, dname);
7653 status = cli_mkdir(cli, dname);
7654 if (!NT_STATUS_IS_OK(status)) {
7655 printf("mkdir failed: %s\n", nt_errstr(status));
7656 return false;
7659 status = cli_qpathinfo1(cli, streamname, &change_time, &access_time,
7660 &write_time, &size, &mode);
7661 if (!NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
7662 printf("pathinfo returned %s, expected "
7663 "NT_STATUS_OBJECT_NAME_NOT_FOUND\n",
7664 nt_errstr(status));
7665 ret = false;
7668 status = cli_ntcreate(cli, streamname, 0x16,
7669 FILE_READ_DATA|FILE_READ_EA|
7670 FILE_READ_ATTRIBUTES|READ_CONTROL_ACCESS,
7671 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_READ,
7672 FILE_OPEN, 0, 0, &fnum);
7674 if (!NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
7675 printf("ntcreate returned %s, expected "
7676 "NT_STATUS_OBJECT_NAME_NOT_FOUND\n",
7677 nt_errstr(status));
7678 ret = false;
7682 cli_rmdir(cli, dname);
7683 return ret;
7686 static bool run_local_substitute(int dummy)
7688 bool ok = true;
7690 ok &= subst_test("%U", "bla", "", -1, -1, "bla");
7691 ok &= subst_test("%u%U", "bla", "", -1, -1, "blabla");
7692 ok &= subst_test("%g", "", "", -1, -1, "NO_GROUP");
7693 ok &= subst_test("%G", "", "", -1, -1, "NO_GROUP");
7694 ok &= subst_test("%g", "", "", -1, 0, gidtoname(0));
7695 ok &= subst_test("%G", "", "", -1, 0, gidtoname(0));
7696 ok &= subst_test("%D%u", "u", "dom", -1, 0, "domu");
7697 ok &= subst_test("%i %I", "", "", -1, -1, "0.0.0.0 0.0.0.0");
7699 /* Different captialization rules in sub_basic... */
7701 ok &= (strcmp(talloc_sub_basic(talloc_tos(), "BLA", "dom", "%U%D"),
7702 "blaDOM") == 0);
7704 return ok;
7707 static bool run_local_base64(int dummy)
7709 int i;
7710 bool ret = true;
7712 for (i=1; i<2000; i++) {
7713 DATA_BLOB blob1, blob2;
7714 char *b64;
7716 blob1.data = talloc_array(talloc_tos(), uint8_t, i);
7717 blob1.length = i;
7718 generate_random_buffer(blob1.data, blob1.length);
7720 b64 = base64_encode_data_blob(talloc_tos(), blob1);
7721 if (b64 == NULL) {
7722 d_fprintf(stderr, "base64_encode_data_blob failed "
7723 "for %d bytes\n", i);
7724 ret = false;
7726 blob2 = base64_decode_data_blob(b64);
7727 TALLOC_FREE(b64);
7729 if (data_blob_cmp(&blob1, &blob2)) {
7730 d_fprintf(stderr, "data_blob_cmp failed for %d "
7731 "bytes\n", i);
7732 ret = false;
7734 TALLOC_FREE(blob1.data);
7735 data_blob_free(&blob2);
7737 return ret;
7740 static bool run_local_gencache(int dummy)
7742 char *val;
7743 time_t tm;
7744 DATA_BLOB blob;
7746 if (!gencache_set("foo", "bar", time(NULL) + 1000)) {
7747 d_printf("%s: gencache_set() failed\n", __location__);
7748 return False;
7751 if (!gencache_get("foo", NULL, NULL)) {
7752 d_printf("%s: gencache_get() failed\n", __location__);
7753 return False;
7756 if (!gencache_get("foo", &val, &tm)) {
7757 d_printf("%s: gencache_get() failed\n", __location__);
7758 return False;
7761 if (strcmp(val, "bar") != 0) {
7762 d_printf("%s: gencache_get() returned %s, expected %s\n",
7763 __location__, val, "bar");
7764 SAFE_FREE(val);
7765 return False;
7768 SAFE_FREE(val);
7770 if (!gencache_del("foo")) {
7771 d_printf("%s: gencache_del() failed\n", __location__);
7772 return False;
7774 if (gencache_del("foo")) {
7775 d_printf("%s: second gencache_del() succeeded\n",
7776 __location__);
7777 return False;
7780 if (gencache_get("foo", &val, &tm)) {
7781 d_printf("%s: gencache_get() on deleted entry "
7782 "succeeded\n", __location__);
7783 return False;
7786 blob = data_blob_string_const_null("bar");
7787 tm = time(NULL) + 60;
7789 if (!gencache_set_data_blob("foo", &blob, tm)) {
7790 d_printf("%s: gencache_set_data_blob() failed\n", __location__);
7791 return False;
7794 if (!gencache_get_data_blob("foo", &blob, NULL, NULL)) {
7795 d_printf("%s: gencache_get_data_blob() failed\n", __location__);
7796 return False;
7799 if (strcmp((const char *)blob.data, "bar") != 0) {
7800 d_printf("%s: gencache_get_data_blob() returned %s, expected %s\n",
7801 __location__, (const char *)blob.data, "bar");
7802 data_blob_free(&blob);
7803 return False;
7806 data_blob_free(&blob);
7808 if (!gencache_del("foo")) {
7809 d_printf("%s: gencache_del() failed\n", __location__);
7810 return False;
7812 if (gencache_del("foo")) {
7813 d_printf("%s: second gencache_del() succeeded\n",
7814 __location__);
7815 return False;
7818 if (gencache_get_data_blob("foo", &blob, NULL, NULL)) {
7819 d_printf("%s: gencache_get_data_blob() on deleted entry "
7820 "succeeded\n", __location__);
7821 return False;
7824 return True;
7827 static bool rbt_testval(struct db_context *db, const char *key,
7828 const char *value)
7830 struct db_record *rec;
7831 TDB_DATA data = string_tdb_data(value);
7832 bool ret = false;
7833 NTSTATUS status;
7834 TDB_DATA dbvalue;
7836 rec = dbwrap_fetch_locked(db, db, string_tdb_data(key));
7837 if (rec == NULL) {
7838 d_fprintf(stderr, "fetch_locked failed\n");
7839 goto done;
7841 status = dbwrap_record_store(rec, data, 0);
7842 if (!NT_STATUS_IS_OK(status)) {
7843 d_fprintf(stderr, "store failed: %s\n", nt_errstr(status));
7844 goto done;
7846 TALLOC_FREE(rec);
7848 rec = dbwrap_fetch_locked(db, db, string_tdb_data(key));
7849 if (rec == NULL) {
7850 d_fprintf(stderr, "second fetch_locked failed\n");
7851 goto done;
7854 dbvalue = dbwrap_record_get_value(rec);
7855 if ((dbvalue.dsize != data.dsize)
7856 || (memcmp(dbvalue.dptr, data.dptr, data.dsize) != 0)) {
7857 d_fprintf(stderr, "Got wrong data back\n");
7858 goto done;
7861 ret = true;
7862 done:
7863 TALLOC_FREE(rec);
7864 return ret;
7867 static bool run_local_rbtree(int dummy)
7869 struct db_context *db;
7870 bool ret = false;
7871 int i;
7873 db = db_open_rbt(NULL);
7875 if (db == NULL) {
7876 d_fprintf(stderr, "db_open_rbt failed\n");
7877 return false;
7880 for (i=0; i<1000; i++) {
7881 char *key, *value;
7883 if (asprintf(&key, "key%ld", random()) == -1) {
7884 goto done;
7886 if (asprintf(&value, "value%ld", random()) == -1) {
7887 SAFE_FREE(key);
7888 goto done;
7891 if (!rbt_testval(db, key, value)) {
7892 SAFE_FREE(key);
7893 SAFE_FREE(value);
7894 goto done;
7897 SAFE_FREE(value);
7898 if (asprintf(&value, "value%ld", random()) == -1) {
7899 SAFE_FREE(key);
7900 goto done;
7903 if (!rbt_testval(db, key, value)) {
7904 SAFE_FREE(key);
7905 SAFE_FREE(value);
7906 goto done;
7909 SAFE_FREE(key);
7910 SAFE_FREE(value);
7913 ret = true;
7915 done:
7916 TALLOC_FREE(db);
7917 return ret;
7922 local test for character set functions
7924 This is a very simple test for the functionality in convert_string_error()
7926 static bool run_local_convert_string(int dummy)
7928 TALLOC_CTX *tmp_ctx = talloc_new(NULL);
7929 const char *test_strings[2] = { "March", "M\303\244rz" };
7930 char dst[7];
7931 int i;
7933 for (i=0; i<2; i++) {
7934 const char *str = test_strings[i];
7935 int len = strlen(str);
7936 size_t converted_size;
7937 bool ret;
7939 memset(dst, 'X', sizeof(dst));
7941 /* first try with real source length */
7942 ret = convert_string_error(CH_UNIX, CH_UTF8,
7943 str, len,
7944 dst, sizeof(dst),
7945 &converted_size);
7946 if (ret != true) {
7947 d_fprintf(stderr, "Failed to convert '%s' to CH_DISPLAY\n", str);
7948 goto failed;
7951 if (converted_size != len) {
7952 d_fprintf(stderr, "Converted size of '%s' should be %d - got %d\n",
7953 str, len, (int)converted_size);
7954 goto failed;
7957 if (strncmp(str, dst, converted_size) != 0) {
7958 d_fprintf(stderr, "Expected '%s' to match '%s'\n", str, dst);
7959 goto failed;
7962 if (strlen(str) != converted_size) {
7963 d_fprintf(stderr, "Expected '%s' length %d - got %d\n", str,
7964 (int)strlen(str), (int)converted_size);
7965 goto failed;
7968 if (dst[converted_size] != 'X') {
7969 d_fprintf(stderr, "Expected no termination of '%s'\n", dst);
7970 goto failed;
7973 /* now with srclen==-1, this causes the nul to be
7974 * converted too */
7975 ret = convert_string_error(CH_UNIX, CH_UTF8,
7976 str, -1,
7977 dst, sizeof(dst),
7978 &converted_size);
7979 if (ret != true) {
7980 d_fprintf(stderr, "Failed to convert '%s' to CH_DISPLAY\n", str);
7981 goto failed;
7984 if (converted_size != len+1) {
7985 d_fprintf(stderr, "Converted size of '%s' should be %d - got %d\n",
7986 str, len, (int)converted_size);
7987 goto failed;
7990 if (strncmp(str, dst, converted_size) != 0) {
7991 d_fprintf(stderr, "Expected '%s' to match '%s'\n", str, dst);
7992 goto failed;
7995 if (len+1 != converted_size) {
7996 d_fprintf(stderr, "Expected '%s' length %d - got %d\n", str,
7997 len+1, (int)converted_size);
7998 goto failed;
8001 if (dst[converted_size] != 'X') {
8002 d_fprintf(stderr, "Expected no termination of '%s'\n", dst);
8003 goto failed;
8009 TALLOC_FREE(tmp_ctx);
8010 return true;
8011 failed:
8012 TALLOC_FREE(tmp_ctx);
8013 return false;
8017 struct talloc_dict_test {
8018 int content;
8021 static int talloc_dict_traverse_fn(DATA_BLOB key, void *data, void *priv)
8023 int *count = (int *)priv;
8024 *count += 1;
8025 return 0;
8028 static bool run_local_talloc_dict(int dummy)
8030 struct talloc_dict *dict;
8031 struct talloc_dict_test *t;
8032 int key, count, res;
8033 bool ok;
8035 dict = talloc_dict_init(talloc_tos());
8036 if (dict == NULL) {
8037 return false;
8040 t = talloc(talloc_tos(), struct talloc_dict_test);
8041 if (t == NULL) {
8042 return false;
8045 key = 1;
8046 t->content = 1;
8047 ok = talloc_dict_set(dict, data_blob_const(&key, sizeof(key)), &t);
8048 if (!ok) {
8049 return false;
8052 count = 0;
8053 res = talloc_dict_traverse(dict, talloc_dict_traverse_fn, &count);
8054 if (res == -1) {
8055 return false;
8058 if (count != 1) {
8059 return false;
8062 if (count != res) {
8063 return false;
8066 TALLOC_FREE(dict);
8068 return true;
8071 static bool run_local_string_to_sid(int dummy) {
8072 struct dom_sid sid;
8074 if (string_to_sid(&sid, "S--1-5-32-545")) {
8075 printf("allowing S--1-5-32-545\n");
8076 return false;
8078 if (string_to_sid(&sid, "S-1-5-32-+545")) {
8079 printf("allowing S-1-5-32-+545\n");
8080 return false;
8082 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")) {
8083 printf("allowing S-1-2-3-4-5-6-7-8-9-0-1-2-3-4-5-6-7-8-9-0\n");
8084 return false;
8086 if (string_to_sid(&sid, "S-1-5-32-545-abc")) {
8087 printf("allowing S-1-5-32-545-abc\n");
8088 return false;
8090 if (!string_to_sid(&sid, "S-1-5-32-545")) {
8091 printf("could not parse S-1-5-32-545\n");
8092 return false;
8094 if (!dom_sid_equal(&sid, &global_sid_Builtin_Users)) {
8095 printf("mis-parsed S-1-5-32-545 as %s\n",
8096 sid_string_tos(&sid));
8097 return false;
8099 return true;
8102 static bool run_local_binary_to_sid(int dummy) {
8103 struct dom_sid *sid = talloc(NULL, struct dom_sid);
8104 static const char good_binary_sid[] = {
8105 0x1, /* revision number */
8106 15, /* num auths */
8107 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8108 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8109 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8110 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8111 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8112 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8113 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8114 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8115 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8116 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8117 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8118 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8119 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8120 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8121 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8122 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8125 static const char long_binary_sid[] = {
8126 0x1, /* revision number */
8127 15, /* num auths */
8128 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8129 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8130 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8131 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8132 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8133 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8134 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8135 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8136 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8137 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8138 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8139 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8140 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8141 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8142 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8143 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8144 0x1, 0x1, 0x1, 0x1, /* auth[15] */
8145 0x1, 0x1, 0x1, 0x1, /* auth[16] */
8146 0x1, 0x1, 0x1, 0x1, /* auth[17] */
8149 static const char long_binary_sid2[] = {
8150 0x1, /* revision number */
8151 32, /* num auths */
8152 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8153 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8154 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8155 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8156 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8157 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8158 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8159 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8160 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8161 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8162 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8163 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8164 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8165 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8166 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8167 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8168 0x1, 0x1, 0x1, 0x1, /* auth[15] */
8169 0x1, 0x1, 0x1, 0x1, /* auth[16] */
8170 0x1, 0x1, 0x1, 0x1, /* auth[17] */
8171 0x1, 0x1, 0x1, 0x1, /* auth[18] */
8172 0x1, 0x1, 0x1, 0x1, /* auth[19] */
8173 0x1, 0x1, 0x1, 0x1, /* auth[20] */
8174 0x1, 0x1, 0x1, 0x1, /* auth[21] */
8175 0x1, 0x1, 0x1, 0x1, /* auth[22] */
8176 0x1, 0x1, 0x1, 0x1, /* auth[23] */
8177 0x1, 0x1, 0x1, 0x1, /* auth[24] */
8178 0x1, 0x1, 0x1, 0x1, /* auth[25] */
8179 0x1, 0x1, 0x1, 0x1, /* auth[26] */
8180 0x1, 0x1, 0x1, 0x1, /* auth[27] */
8181 0x1, 0x1, 0x1, 0x1, /* auth[28] */
8182 0x1, 0x1, 0x1, 0x1, /* auth[29] */
8183 0x1, 0x1, 0x1, 0x1, /* auth[30] */
8184 0x1, 0x1, 0x1, 0x1, /* auth[31] */
8187 if (!sid_parse(good_binary_sid, sizeof(good_binary_sid), sid)) {
8188 return false;
8190 if (sid_parse(long_binary_sid2, sizeof(long_binary_sid2), sid)) {
8191 return false;
8193 if (sid_parse(long_binary_sid, sizeof(long_binary_sid), sid)) {
8194 return false;
8196 return true;
8199 /* Split a path name into filename and stream name components. Canonicalise
8200 * such that an implicit $DATA token is always explicit.
8202 * The "specification" of this function can be found in the
8203 * run_local_stream_name() function in torture.c, I've tried those
8204 * combinations against a W2k3 server.
8207 static NTSTATUS split_ntfs_stream_name(TALLOC_CTX *mem_ctx, const char *fname,
8208 char **pbase, char **pstream)
8210 char *base = NULL;
8211 char *stream = NULL;
8212 char *sname; /* stream name */
8213 const char *stype; /* stream type */
8215 DEBUG(10, ("split_ntfs_stream_name called for [%s]\n", fname));
8217 sname = strchr_m(fname, ':');
8219 if (lp_posix_pathnames() || (sname == NULL)) {
8220 if (pbase != NULL) {
8221 base = talloc_strdup(mem_ctx, fname);
8222 NT_STATUS_HAVE_NO_MEMORY(base);
8224 goto done;
8227 if (pbase != NULL) {
8228 base = talloc_strndup(mem_ctx, fname, PTR_DIFF(sname, fname));
8229 NT_STATUS_HAVE_NO_MEMORY(base);
8232 sname += 1;
8234 stype = strchr_m(sname, ':');
8236 if (stype == NULL) {
8237 sname = talloc_strdup(mem_ctx, sname);
8238 stype = "$DATA";
8240 else {
8241 if (strcasecmp_m(stype, ":$DATA") != 0) {
8243 * If there is an explicit stream type, so far we only
8244 * allow $DATA. Is there anything else allowed? -- vl
8246 DEBUG(10, ("[%s] is an invalid stream type\n", stype));
8247 TALLOC_FREE(base);
8248 return NT_STATUS_OBJECT_NAME_INVALID;
8250 sname = talloc_strndup(mem_ctx, sname, PTR_DIFF(stype, sname));
8251 stype += 1;
8254 if (sname == NULL) {
8255 TALLOC_FREE(base);
8256 return NT_STATUS_NO_MEMORY;
8259 if (sname[0] == '\0') {
8261 * no stream name, so no stream
8263 goto done;
8266 if (pstream != NULL) {
8267 stream = talloc_asprintf(mem_ctx, "%s:%s", sname, stype);
8268 if (stream == NULL) {
8269 TALLOC_FREE(sname);
8270 TALLOC_FREE(base);
8271 return NT_STATUS_NO_MEMORY;
8274 * upper-case the type field
8276 (void)strupper_m(strchr_m(stream, ':')+1);
8279 done:
8280 if (pbase != NULL) {
8281 *pbase = base;
8283 if (pstream != NULL) {
8284 *pstream = stream;
8286 return NT_STATUS_OK;
8289 static bool test_stream_name(const char *fname, const char *expected_base,
8290 const char *expected_stream,
8291 NTSTATUS expected_status)
8293 NTSTATUS status;
8294 char *base = NULL;
8295 char *stream = NULL;
8297 status = split_ntfs_stream_name(talloc_tos(), fname, &base, &stream);
8298 if (!NT_STATUS_EQUAL(status, expected_status)) {
8299 goto error;
8302 if (!NT_STATUS_IS_OK(status)) {
8303 return true;
8306 if (base == NULL) goto error;
8308 if (strcmp(expected_base, base) != 0) goto error;
8310 if ((expected_stream != NULL) && (stream == NULL)) goto error;
8311 if ((expected_stream == NULL) && (stream != NULL)) goto error;
8313 if ((stream != NULL) && (strcmp(expected_stream, stream) != 0))
8314 goto error;
8316 TALLOC_FREE(base);
8317 TALLOC_FREE(stream);
8318 return true;
8320 error:
8321 d_fprintf(stderr, "Do test_stream(%s, %s, %s, %s)\n",
8322 fname, expected_base ? expected_base : "<NULL>",
8323 expected_stream ? expected_stream : "<NULL>",
8324 nt_errstr(expected_status));
8325 d_fprintf(stderr, "-> base=%s, stream=%s, status=%s\n",
8326 base ? base : "<NULL>", stream ? stream : "<NULL>",
8327 nt_errstr(status));
8328 TALLOC_FREE(base);
8329 TALLOC_FREE(stream);
8330 return false;
8333 static bool run_local_stream_name(int dummy)
8335 bool ret = true;
8337 ret &= test_stream_name(
8338 "bla", "bla", NULL, NT_STATUS_OK);
8339 ret &= test_stream_name(
8340 "bla::$DATA", "bla", NULL, NT_STATUS_OK);
8341 ret &= test_stream_name(
8342 "bla:blub:", "bla", NULL, NT_STATUS_OBJECT_NAME_INVALID);
8343 ret &= test_stream_name(
8344 "bla::", NULL, NULL, NT_STATUS_OBJECT_NAME_INVALID);
8345 ret &= test_stream_name(
8346 "bla::123", "bla", NULL, NT_STATUS_OBJECT_NAME_INVALID);
8347 ret &= test_stream_name(
8348 "bla:$DATA", "bla", "$DATA:$DATA", NT_STATUS_OK);
8349 ret &= test_stream_name(
8350 "bla:x:$DATA", "bla", "x:$DATA", NT_STATUS_OK);
8351 ret &= test_stream_name(
8352 "bla:x", "bla", "x:$DATA", NT_STATUS_OK);
8354 return ret;
8357 static bool data_blob_equal(DATA_BLOB a, DATA_BLOB b)
8359 if (a.length != b.length) {
8360 printf("a.length=%d != b.length=%d\n",
8361 (int)a.length, (int)b.length);
8362 return false;
8364 if (memcmp(a.data, b.data, a.length) != 0) {
8365 printf("a.data and b.data differ\n");
8366 return false;
8368 return true;
8371 static bool run_local_memcache(int dummy)
8373 struct memcache *cache;
8374 DATA_BLOB k1, k2;
8375 DATA_BLOB d1, d2, d3;
8376 DATA_BLOB v1, v2, v3;
8378 TALLOC_CTX *mem_ctx;
8379 char *str1, *str2;
8380 size_t size1, size2;
8381 bool ret = false;
8383 cache = memcache_init(NULL, sizeof(void *) == 8 ? 200 : 100);
8385 if (cache == NULL) {
8386 printf("memcache_init failed\n");
8387 return false;
8390 d1 = data_blob_const("d1", 2);
8391 d2 = data_blob_const("d2", 2);
8392 d3 = data_blob_const("d3", 2);
8394 k1 = data_blob_const("d1", 2);
8395 k2 = data_blob_const("d2", 2);
8397 memcache_add(cache, STAT_CACHE, k1, d1);
8398 memcache_add(cache, GETWD_CACHE, k2, d2);
8400 if (!memcache_lookup(cache, STAT_CACHE, k1, &v1)) {
8401 printf("could not find k1\n");
8402 return false;
8404 if (!data_blob_equal(d1, v1)) {
8405 return false;
8408 if (!memcache_lookup(cache, GETWD_CACHE, k2, &v2)) {
8409 printf("could not find k2\n");
8410 return false;
8412 if (!data_blob_equal(d2, v2)) {
8413 return false;
8416 memcache_add(cache, STAT_CACHE, k1, d3);
8418 if (!memcache_lookup(cache, STAT_CACHE, k1, &v3)) {
8419 printf("could not find replaced k1\n");
8420 return false;
8422 if (!data_blob_equal(d3, v3)) {
8423 return false;
8426 memcache_add(cache, GETWD_CACHE, k1, d1);
8428 if (memcache_lookup(cache, GETWD_CACHE, k2, &v2)) {
8429 printf("Did find k2, should have been purged\n");
8430 return false;
8433 TALLOC_FREE(cache);
8435 cache = memcache_init(NULL, 0);
8437 mem_ctx = talloc_init("foo");
8439 str1 = talloc_strdup(mem_ctx, "string1");
8440 str2 = talloc_strdup(mem_ctx, "string2");
8442 memcache_add_talloc(cache, SINGLETON_CACHE_TALLOC,
8443 data_blob_string_const("torture"), &str1);
8444 size1 = talloc_total_size(cache);
8446 memcache_add_talloc(cache, SINGLETON_CACHE_TALLOC,
8447 data_blob_string_const("torture"), &str2);
8448 size2 = talloc_total_size(cache);
8450 printf("size1=%d, size2=%d\n", (int)size1, (int)size2);
8452 if (size2 > size1) {
8453 printf("memcache leaks memory!\n");
8454 goto fail;
8457 ret = true;
8458 fail:
8459 TALLOC_FREE(cache);
8460 return ret;
8463 static void wbclient_done(struct tevent_req *req)
8465 wbcErr wbc_err;
8466 struct winbindd_response *wb_resp;
8467 int *i = (int *)tevent_req_callback_data_void(req);
8469 wbc_err = wb_trans_recv(req, req, &wb_resp);
8470 TALLOC_FREE(req);
8471 *i += 1;
8472 d_printf("wb_trans_recv %d returned %s\n", *i, wbcErrorString(wbc_err));
8475 static bool run_local_wbclient(int dummy)
8477 struct event_context *ev;
8478 struct wb_context **wb_ctx;
8479 struct winbindd_request wb_req;
8480 bool result = false;
8481 int i, j;
8483 BlockSignals(True, SIGPIPE);
8485 ev = tevent_context_init_byname(talloc_tos(), "epoll");
8486 if (ev == NULL) {
8487 goto fail;
8490 wb_ctx = talloc_array(ev, struct wb_context *, torture_nprocs);
8491 if (wb_ctx == NULL) {
8492 goto fail;
8495 ZERO_STRUCT(wb_req);
8496 wb_req.cmd = WINBINDD_PING;
8498 d_printf("torture_nprocs=%d, numops=%d\n", (int)torture_nprocs, (int)torture_numops);
8500 for (i=0; i<torture_nprocs; i++) {
8501 wb_ctx[i] = wb_context_init(ev, NULL);
8502 if (wb_ctx[i] == NULL) {
8503 goto fail;
8505 for (j=0; j<torture_numops; j++) {
8506 struct tevent_req *req;
8507 req = wb_trans_send(ev, ev, wb_ctx[i],
8508 (j % 2) == 0, &wb_req);
8509 if (req == NULL) {
8510 goto fail;
8512 tevent_req_set_callback(req, wbclient_done, &i);
8516 i = 0;
8518 while (i < torture_nprocs * torture_numops) {
8519 tevent_loop_once(ev);
8522 result = true;
8523 fail:
8524 TALLOC_FREE(ev);
8525 return result;
8528 static void getaddrinfo_finished(struct tevent_req *req)
8530 char *name = (char *)tevent_req_callback_data_void(req);
8531 struct addrinfo *ainfo;
8532 int res;
8534 res = getaddrinfo_recv(req, &ainfo);
8535 if (res != 0) {
8536 d_printf("gai(%s) returned %s\n", name, gai_strerror(res));
8537 return;
8539 d_printf("gai(%s) succeeded\n", name);
8540 freeaddrinfo(ainfo);
8543 static bool run_getaddrinfo_send(int dummy)
8545 TALLOC_CTX *frame = talloc_stackframe();
8546 struct fncall_context *ctx;
8547 struct tevent_context *ev;
8548 bool result = false;
8549 const char *names[4] = { "www.samba.org", "notfound.samba.org",
8550 "www.slashdot.org", "heise.de" };
8551 struct tevent_req *reqs[4];
8552 int i;
8554 ev = event_context_init(frame);
8555 if (ev == NULL) {
8556 goto fail;
8559 ctx = fncall_context_init(frame, 4);
8561 for (i=0; i<ARRAY_SIZE(names); i++) {
8562 reqs[i] = getaddrinfo_send(frame, ev, ctx, names[i], NULL,
8563 NULL);
8564 if (reqs[i] == NULL) {
8565 goto fail;
8567 tevent_req_set_callback(reqs[i], getaddrinfo_finished,
8568 discard_const_p(void, names[i]));
8571 for (i=0; i<ARRAY_SIZE(reqs); i++) {
8572 tevent_loop_once(ev);
8575 result = true;
8576 fail:
8577 TALLOC_FREE(frame);
8578 return result;
8581 static bool dbtrans_inc(struct db_context *db)
8583 struct db_record *rec;
8584 uint32_t val;
8585 bool ret = false;
8586 NTSTATUS status;
8587 TDB_DATA value;
8589 rec = dbwrap_fetch_locked(db, db, string_term_tdb_data("transtest"));
8590 if (rec == NULL) {
8591 printf(__location__ "fetch_lock failed\n");
8592 return false;
8595 value = dbwrap_record_get_value(rec);
8597 if (value.dsize != sizeof(uint32_t)) {
8598 printf(__location__ "value.dsize = %d\n",
8599 (int)value.dsize);
8600 goto fail;
8603 memcpy(&val, value.dptr, sizeof(val));
8604 val += 1;
8606 status = dbwrap_record_store(
8607 rec, make_tdb_data((uint8_t *)&val, sizeof(val)), 0);
8608 if (!NT_STATUS_IS_OK(status)) {
8609 printf(__location__ "store failed: %s\n",
8610 nt_errstr(status));
8611 goto fail;
8614 ret = true;
8615 fail:
8616 TALLOC_FREE(rec);
8617 return ret;
8620 static bool run_local_dbtrans(int dummy)
8622 struct db_context *db;
8623 struct db_record *rec;
8624 NTSTATUS status;
8625 uint32_t initial;
8626 int res;
8627 TDB_DATA value;
8629 db = db_open(talloc_tos(), "transtest.tdb", 0, TDB_DEFAULT,
8630 O_RDWR|O_CREAT, 0600, DBWRAP_LOCK_ORDER_1);
8631 if (db == NULL) {
8632 printf("Could not open transtest.db\n");
8633 return false;
8636 res = dbwrap_transaction_start(db);
8637 if (res != 0) {
8638 printf(__location__ "transaction_start failed\n");
8639 return false;
8642 rec = dbwrap_fetch_locked(db, db, string_term_tdb_data("transtest"));
8643 if (rec == NULL) {
8644 printf(__location__ "fetch_lock failed\n");
8645 return false;
8648 value = dbwrap_record_get_value(rec);
8650 if (value.dptr == NULL) {
8651 initial = 0;
8652 status = dbwrap_record_store(
8653 rec, make_tdb_data((uint8_t *)&initial,
8654 sizeof(initial)),
8656 if (!NT_STATUS_IS_OK(status)) {
8657 printf(__location__ "store returned %s\n",
8658 nt_errstr(status));
8659 return false;
8663 TALLOC_FREE(rec);
8665 res = dbwrap_transaction_commit(db);
8666 if (res != 0) {
8667 printf(__location__ "transaction_commit failed\n");
8668 return false;
8671 while (true) {
8672 uint32_t val, val2;
8673 int i;
8675 res = dbwrap_transaction_start(db);
8676 if (res != 0) {
8677 printf(__location__ "transaction_start failed\n");
8678 break;
8681 status = dbwrap_fetch_uint32_bystring(db, "transtest", &val);
8682 if (!NT_STATUS_IS_OK(status)) {
8683 printf(__location__ "dbwrap_fetch_uint32 failed: %s\n",
8684 nt_errstr(status));
8685 break;
8688 for (i=0; i<10; i++) {
8689 if (!dbtrans_inc(db)) {
8690 return false;
8694 status = dbwrap_fetch_uint32_bystring(db, "transtest", &val2);
8695 if (!NT_STATUS_IS_OK(status)) {
8696 printf(__location__ "dbwrap_fetch_uint32 failed: %s\n",
8697 nt_errstr(status));
8698 break;
8701 if (val2 != val + 10) {
8702 printf(__location__ "val=%d, val2=%d\n",
8703 (int)val, (int)val2);
8704 break;
8707 printf("val2=%d\r", val2);
8709 res = dbwrap_transaction_commit(db);
8710 if (res != 0) {
8711 printf(__location__ "transaction_commit failed\n");
8712 break;
8716 TALLOC_FREE(db);
8717 return true;
8721 * Just a dummy test to be run under a debugger. There's no real way
8722 * to inspect the tevent_select specific function from outside of
8723 * tevent_select.c.
8726 static bool run_local_tevent_select(int dummy)
8728 struct tevent_context *ev;
8729 struct tevent_fd *fd1, *fd2;
8730 bool result = false;
8732 ev = tevent_context_init_byname(NULL, "select");
8733 if (ev == NULL) {
8734 d_fprintf(stderr, "tevent_context_init_byname failed\n");
8735 goto fail;
8738 fd1 = tevent_add_fd(ev, ev, 2, 0, NULL, NULL);
8739 if (fd1 == NULL) {
8740 d_fprintf(stderr, "tevent_add_fd failed\n");
8741 goto fail;
8743 fd2 = tevent_add_fd(ev, ev, 3, 0, NULL, NULL);
8744 if (fd2 == NULL) {
8745 d_fprintf(stderr, "tevent_add_fd failed\n");
8746 goto fail;
8748 TALLOC_FREE(fd2);
8750 fd2 = tevent_add_fd(ev, ev, 1, 0, NULL, NULL);
8751 if (fd2 == NULL) {
8752 d_fprintf(stderr, "tevent_add_fd failed\n");
8753 goto fail;
8756 result = true;
8757 fail:
8758 TALLOC_FREE(ev);
8759 return result;
8762 static bool run_local_hex_encode_buf(int dummy)
8764 char buf[17];
8765 uint8_t src[8];
8766 int i;
8768 for (i=0; i<sizeof(src); i++) {
8769 src[i] = i;
8771 hex_encode_buf(buf, src, sizeof(src));
8772 if (strcmp(buf, "0001020304050607") != 0) {
8773 return false;
8775 hex_encode_buf(buf, NULL, 0);
8776 if (buf[0] != '\0') {
8777 return false;
8779 return true;
8782 static const char *remove_duplicate_addrs2_test_strings_vector[] = {
8783 "0.0.0.0",
8784 "::0",
8785 "1.2.3.1",
8786 "0.0.0.0",
8787 "0.0.0.0",
8788 "1.2.3.2",
8789 "1.2.3.3",
8790 "1.2.3.4",
8791 "1.2.3.5",
8792 "::0",
8793 "1.2.3.6",
8794 "1.2.3.7",
8795 "::0",
8796 "::0",
8797 "::0",
8798 "1.2.3.8",
8799 "1.2.3.9",
8800 "1.2.3.10",
8801 "1.2.3.11",
8802 "1.2.3.12",
8803 "1.2.3.13",
8804 "1001:1111:1111:1000:0:1111:1111:1111",
8805 "1.2.3.1",
8806 "1.2.3.2",
8807 "1.2.3.3",
8808 "1.2.3.12",
8809 "::0",
8810 "::0"
8813 static const char *remove_duplicate_addrs2_test_strings_result[] = {
8814 "1.2.3.1",
8815 "1.2.3.2",
8816 "1.2.3.3",
8817 "1.2.3.4",
8818 "1.2.3.5",
8819 "1.2.3.6",
8820 "1.2.3.7",
8821 "1.2.3.8",
8822 "1.2.3.9",
8823 "1.2.3.10",
8824 "1.2.3.11",
8825 "1.2.3.12",
8826 "1.2.3.13",
8827 "1001:1111:1111:1000:0:1111:1111:1111"
8830 static bool run_local_remove_duplicate_addrs2(int dummy)
8832 struct ip_service test_vector[28];
8833 int count, i;
8835 /* Construct the sockaddr_storage test vector. */
8836 for (i = 0; i < 28; i++) {
8837 struct addrinfo hints;
8838 struct addrinfo *res = NULL;
8839 int ret;
8841 memset(&hints, '\0', sizeof(hints));
8842 hints.ai_flags = AI_NUMERICHOST;
8843 ret = getaddrinfo(remove_duplicate_addrs2_test_strings_vector[i],
8844 NULL,
8845 &hints,
8846 &res);
8847 if (ret) {
8848 fprintf(stderr, "getaddrinfo failed on [%s]\n",
8849 remove_duplicate_addrs2_test_strings_vector[i]);
8850 return false;
8852 memset(&test_vector[i], '\0', sizeof(test_vector[i]));
8853 memcpy(&test_vector[i].ss,
8854 res->ai_addr,
8855 res->ai_addrlen);
8856 freeaddrinfo(res);
8859 count = remove_duplicate_addrs2(test_vector, i);
8861 if (count != 14) {
8862 fprintf(stderr, "count wrong (%d) should be 14\n",
8863 count);
8864 return false;
8867 for (i = 0; i < count; i++) {
8868 char addr[INET6_ADDRSTRLEN];
8870 print_sockaddr(addr, sizeof(addr), &test_vector[i].ss);
8872 if (strcmp(addr, remove_duplicate_addrs2_test_strings_result[i]) != 0) {
8873 fprintf(stderr, "mismatch on [%d] [%s] [%s]\n",
8875 addr,
8876 remove_duplicate_addrs2_test_strings_result[i]);
8877 return false;
8881 printf("run_local_remove_duplicate_addrs2: success\n");
8882 return true;
8885 static bool run_local_tdb_opener(int dummy)
8887 TDB_CONTEXT *t;
8888 unsigned v = 0;
8890 while (1) {
8891 t = tdb_open("test.tdb", 1000, TDB_CLEAR_IF_FIRST,
8892 O_RDWR|O_CREAT, 0755);
8893 if (t == NULL) {
8894 perror("tdb_open failed");
8895 return false;
8897 tdb_close(t);
8899 v += 1;
8900 printf("\r%u", v);
8902 return true;
8905 static bool run_local_tdb_writer(int dummy)
8907 TDB_CONTEXT *t;
8908 unsigned v = 0;
8909 TDB_DATA val;
8911 t = tdb_open("test.tdb", 1000, 0, O_RDWR|O_CREAT, 0755);
8912 if (t == 0) {
8913 perror("tdb_open failed");
8914 return 1;
8917 val.dptr = (uint8_t *)&v;
8918 val.dsize = sizeof(v);
8920 while (1) {
8921 TDB_DATA data;
8922 int ret;
8924 ret = tdb_store(t, val, val, 0);
8925 if (ret != 0) {
8926 printf("%s\n", tdb_errorstr(t));
8928 v += 1;
8929 printf("\r%u", v);
8931 data = tdb_fetch(t, val);
8932 if (data.dptr != NULL) {
8933 SAFE_FREE(data.dptr);
8936 return true;
8939 static double create_procs(bool (*fn)(int), bool *result)
8941 int i, status;
8942 volatile pid_t *child_status;
8943 volatile bool *child_status_out;
8944 int synccount;
8945 int tries = 8;
8946 struct timeval start;
8948 synccount = 0;
8950 child_status = (volatile pid_t *)anonymous_shared_allocate(sizeof(pid_t)*torture_nprocs);
8951 if (!child_status) {
8952 printf("Failed to setup shared memory\n");
8953 return -1;
8956 child_status_out = (volatile bool *)anonymous_shared_allocate(sizeof(bool)*torture_nprocs);
8957 if (!child_status_out) {
8958 printf("Failed to setup result status shared memory\n");
8959 return -1;
8962 for (i = 0; i < torture_nprocs; i++) {
8963 child_status[i] = 0;
8964 child_status_out[i] = True;
8967 start = timeval_current();
8969 for (i=0;i<torture_nprocs;i++) {
8970 procnum = i;
8971 if (fork() == 0) {
8972 pid_t mypid = getpid();
8973 sys_srandom(((int)mypid) ^ ((int)time(NULL)));
8975 slprintf(myname,sizeof(myname),"CLIENT%d", i);
8977 while (1) {
8978 if (torture_open_connection(&current_cli, i)) break;
8979 if (tries-- == 0) {
8980 printf("pid %d failed to start\n", (int)getpid());
8981 _exit(1);
8983 smb_msleep(10);
8986 child_status[i] = getpid();
8988 while (child_status[i] && timeval_elapsed(&start) < 5) smb_msleep(2);
8990 child_status_out[i] = fn(i);
8991 _exit(0);
8995 do {
8996 synccount = 0;
8997 for (i=0;i<torture_nprocs;i++) {
8998 if (child_status[i]) synccount++;
9000 if (synccount == torture_nprocs) break;
9001 smb_msleep(10);
9002 } while (timeval_elapsed(&start) < 30);
9004 if (synccount != torture_nprocs) {
9005 printf("FAILED TO START %d CLIENTS (started %d)\n", torture_nprocs, synccount);
9006 *result = False;
9007 return timeval_elapsed(&start);
9010 /* start the client load */
9011 start = timeval_current();
9013 for (i=0;i<torture_nprocs;i++) {
9014 child_status[i] = 0;
9017 printf("%d clients started\n", torture_nprocs);
9019 for (i=0;i<torture_nprocs;i++) {
9020 while (waitpid(0, &status, 0) == -1 && errno == EINTR) /* noop */ ;
9023 printf("\n");
9025 for (i=0;i<torture_nprocs;i++) {
9026 if (!child_status_out[i]) {
9027 *result = False;
9030 return timeval_elapsed(&start);
9033 #define FLAG_MULTIPROC 1
9035 static struct {
9036 const char *name;
9037 bool (*fn)(int);
9038 unsigned flags;
9039 } torture_ops[] = {
9040 {"FDPASS", run_fdpasstest, 0},
9041 {"LOCK1", run_locktest1, 0},
9042 {"LOCK2", run_locktest2, 0},
9043 {"LOCK3", run_locktest3, 0},
9044 {"LOCK4", run_locktest4, 0},
9045 {"LOCK5", run_locktest5, 0},
9046 {"LOCK6", run_locktest6, 0},
9047 {"LOCK7", run_locktest7, 0},
9048 {"LOCK8", run_locktest8, 0},
9049 {"LOCK9", run_locktest9, 0},
9050 {"UNLINK", run_unlinktest, 0},
9051 {"BROWSE", run_browsetest, 0},
9052 {"ATTR", run_attrtest, 0},
9053 {"TRANS2", run_trans2test, 0},
9054 {"MAXFID", run_maxfidtest, FLAG_MULTIPROC},
9055 {"TORTURE",run_torture, FLAG_MULTIPROC},
9056 {"RANDOMIPC", run_randomipc, 0},
9057 {"NEGNOWAIT", run_negprot_nowait, 0},
9058 {"NBENCH", run_nbench, 0},
9059 {"NBENCH2", run_nbench2, 0},
9060 {"OPLOCK1", run_oplock1, 0},
9061 {"OPLOCK2", run_oplock2, 0},
9062 {"OPLOCK4", run_oplock4, 0},
9063 {"DIR", run_dirtest, 0},
9064 {"DIR1", run_dirtest1, 0},
9065 {"DIR-CREATETIME", run_dir_createtime, 0},
9066 {"DENY1", torture_denytest1, 0},
9067 {"DENY2", torture_denytest2, 0},
9068 {"TCON", run_tcon_test, 0},
9069 {"TCONDEV", run_tcon_devtype_test, 0},
9070 {"RW1", run_readwritetest, 0},
9071 {"RW2", run_readwritemulti, FLAG_MULTIPROC},
9072 {"RW3", run_readwritelarge, 0},
9073 {"RW-SIGNING", run_readwritelarge_signtest, 0},
9074 {"OPEN", run_opentest, 0},
9075 {"POSIX", run_simple_posix_open_test, 0},
9076 {"POSIX-APPEND", run_posix_append, 0},
9077 {"CASE-INSENSITIVE-CREATE", run_case_insensitive_create, 0},
9078 {"ASYNC-ECHO", run_async_echo, 0},
9079 { "UID-REGRESSION-TEST", run_uid_regression_test, 0},
9080 { "SHORTNAME-TEST", run_shortname_test, 0},
9081 { "ADDRCHANGE", run_addrchange, 0},
9082 #if 1
9083 {"OPENATTR", run_openattrtest, 0},
9084 #endif
9085 {"XCOPY", run_xcopy, 0},
9086 {"RENAME", run_rename, 0},
9087 {"DELETE", run_deletetest, 0},
9088 {"DELETE-LN", run_deletetest_ln, 0},
9089 {"PROPERTIES", run_properties, 0},
9090 {"MANGLE", torture_mangle, 0},
9091 {"MANGLE1", run_mangle1, 0},
9092 {"W2K", run_w2ktest, 0},
9093 {"TRANS2SCAN", torture_trans2_scan, 0},
9094 {"NTTRANSSCAN", torture_nttrans_scan, 0},
9095 {"UTABLE", torture_utable, 0},
9096 {"CASETABLE", torture_casetable, 0},
9097 {"ERRMAPEXTRACT", run_error_map_extract, 0},
9098 {"PIPE_NUMBER", run_pipe_number, 0},
9099 {"TCON2", run_tcon2_test, 0},
9100 {"IOCTL", torture_ioctl_test, 0},
9101 {"CHKPATH", torture_chkpath_test, 0},
9102 {"FDSESS", run_fdsesstest, 0},
9103 { "EATEST", run_eatest, 0},
9104 { "SESSSETUP_BENCH", run_sesssetup_bench, 0},
9105 { "CHAIN1", run_chain1, 0},
9106 { "CHAIN2", run_chain2, 0},
9107 { "CHAIN3", run_chain3, 0},
9108 { "WINDOWS-WRITE", run_windows_write, 0},
9109 { "NTTRANS-CREATE", run_nttrans_create, 0},
9110 { "NTTRANS-FSCTL", run_nttrans_fsctl, 0},
9111 { "CLI_ECHO", run_cli_echo, 0},
9112 { "GETADDRINFO", run_getaddrinfo_send, 0},
9113 { "TLDAP", run_tldap },
9114 { "STREAMERROR", run_streamerror },
9115 { "NOTIFY-BENCH", run_notify_bench },
9116 { "NOTIFY-BENCH2", run_notify_bench2 },
9117 { "NOTIFY-BENCH3", run_notify_bench3 },
9118 { "BAD-NBT-SESSION", run_bad_nbt_session },
9119 { "SMB-ANY-CONNECT", run_smb_any_connect },
9120 { "NOTIFY-ONLINE", run_notify_online },
9121 { "SMB2-BASIC", run_smb2_basic },
9122 { "SMB2-NEGPROT", run_smb2_negprot },
9123 { "SMB2-SESSION-RECONNECT", run_smb2_session_reconnect },
9124 { "SMB2-TCON-DEPENDENCE", run_smb2_tcon_dependence },
9125 { "SMB2-MULTI-CHANNEL", run_smb2_multi_channel },
9126 { "SMB2-SESSION-REAUTH", run_smb2_session_reauth },
9127 { "CLEANUP1", run_cleanup1 },
9128 { "CLEANUP2", run_cleanup2 },
9129 { "CLEANUP3", run_cleanup3 },
9130 { "LOCAL-SUBSTITUTE", run_local_substitute, 0},
9131 { "LOCAL-GENCACHE", run_local_gencache, 0},
9132 { "LOCAL-TALLOC-DICT", run_local_talloc_dict, 0},
9133 { "LOCAL-CTDB-CONN", run_ctdb_conn, 0},
9134 { "LOCAL-MSG", run_msg_test, 0},
9135 { "LOCAL-DBWRAP-WATCH1", run_dbwrap_watch1, 0 },
9136 { "LOCAL-BASE64", run_local_base64, 0},
9137 { "LOCAL-RBTREE", run_local_rbtree, 0},
9138 { "LOCAL-MEMCACHE", run_local_memcache, 0},
9139 { "LOCAL-STREAM-NAME", run_local_stream_name, 0},
9140 { "LOCAL-WBCLIENT", run_local_wbclient, 0},
9141 { "LOCAL-string_to_sid", run_local_string_to_sid, 0},
9142 { "LOCAL-binary_to_sid", run_local_binary_to_sid, 0},
9143 { "LOCAL-DBTRANS", run_local_dbtrans, 0},
9144 { "LOCAL-TEVENT-SELECT", run_local_tevent_select, 0},
9145 { "LOCAL-CONVERT-STRING", run_local_convert_string, 0},
9146 { "LOCAL-CONV-AUTH-INFO", run_local_conv_auth_info, 0},
9147 { "LOCAL-sprintf_append", run_local_sprintf_append, 0},
9148 { "LOCAL-hex_encode_buf", run_local_hex_encode_buf, 0},
9149 { "LOCAL-IDMAP-TDB-COMMON", run_idmap_tdb_common_test, 0},
9150 { "LOCAL-remove_duplicate_addrs2", run_local_remove_duplicate_addrs2, 0},
9151 { "local-tdb-opener", run_local_tdb_opener, 0 },
9152 { "local-tdb-writer", run_local_tdb_writer, 0 },
9153 { "LOCAL-DBWRAP-CTDB", run_local_dbwrap_ctdb, 0 },
9154 {NULL, NULL, 0}};
9158 /****************************************************************************
9159 run a specified test or "ALL"
9160 ****************************************************************************/
9161 static bool run_test(const char *name)
9163 bool ret = True;
9164 bool result = True;
9165 bool found = False;
9166 int i;
9167 double t;
9168 if (strequal(name,"ALL")) {
9169 for (i=0;torture_ops[i].name;i++) {
9170 run_test(torture_ops[i].name);
9172 found = True;
9175 for (i=0;torture_ops[i].name;i++) {
9176 fstr_sprintf(randomfname, "\\XX%x",
9177 (unsigned)random());
9179 if (strequal(name, torture_ops[i].name)) {
9180 found = True;
9181 printf("Running %s\n", name);
9182 if (torture_ops[i].flags & FLAG_MULTIPROC) {
9183 t = create_procs(torture_ops[i].fn, &result);
9184 if (!result) {
9185 ret = False;
9186 printf("TEST %s FAILED!\n", name);
9188 } else {
9189 struct timeval start;
9190 start = timeval_current();
9191 if (!torture_ops[i].fn(0)) {
9192 ret = False;
9193 printf("TEST %s FAILED!\n", name);
9195 t = timeval_elapsed(&start);
9197 printf("%s took %g secs\n\n", name, t);
9201 if (!found) {
9202 printf("Did not find a test named %s\n", name);
9203 ret = False;
9206 return ret;
9210 static void usage(void)
9212 int i;
9214 printf("WARNING samba4 test suite is much more complete nowadays.\n");
9215 printf("Please use samba4 torture.\n\n");
9217 printf("Usage: smbtorture //server/share <options> TEST1 TEST2 ...\n");
9219 printf("\t-d debuglevel\n");
9220 printf("\t-U user%%pass\n");
9221 printf("\t-k use kerberos\n");
9222 printf("\t-N numprocs\n");
9223 printf("\t-n my_netbios_name\n");
9224 printf("\t-W workgroup\n");
9225 printf("\t-o num_operations\n");
9226 printf("\t-O socket_options\n");
9227 printf("\t-m maximum protocol\n");
9228 printf("\t-L use oplocks\n");
9229 printf("\t-c CLIENT.TXT specify client load file for NBENCH\n");
9230 printf("\t-A showall\n");
9231 printf("\t-p port\n");
9232 printf("\t-s seed\n");
9233 printf("\t-b unclist_filename specify multiple shares for multiple connections\n");
9234 printf("\t-f filename filename to test\n");
9235 printf("\n\n");
9237 printf("tests are:");
9238 for (i=0;torture_ops[i].name;i++) {
9239 printf(" %s", torture_ops[i].name);
9241 printf("\n");
9243 printf("default test is ALL\n");
9245 exit(1);
9248 /****************************************************************************
9249 main program
9250 ****************************************************************************/
9251 int main(int argc,char *argv[])
9253 int opt, i;
9254 char *p;
9255 int gotuser = 0;
9256 int gotpass = 0;
9257 bool correct = True;
9258 TALLOC_CTX *frame = talloc_stackframe();
9259 int seed = time(NULL);
9261 #ifdef HAVE_SETBUFFER
9262 setbuffer(stdout, NULL, 0);
9263 #endif
9265 setup_logging("smbtorture", DEBUG_STDOUT);
9267 load_case_tables();
9269 if (is_default_dyn_CONFIGFILE()) {
9270 if(getenv("SMB_CONF_PATH")) {
9271 set_dyn_CONFIGFILE(getenv("SMB_CONF_PATH"));
9274 lp_load_global(get_dyn_CONFIGFILE());
9275 load_interfaces();
9277 if (argc < 2) {
9278 usage();
9281 for(p = argv[1]; *p; p++)
9282 if(*p == '\\')
9283 *p = '/';
9285 if (strncmp(argv[1], "//", 2)) {
9286 usage();
9289 fstrcpy(host, &argv[1][2]);
9290 p = strchr_m(&host[2],'/');
9291 if (!p) {
9292 usage();
9294 *p = 0;
9295 fstrcpy(share, p+1);
9297 fstrcpy(myname, get_myname(talloc_tos()));
9298 if (!*myname) {
9299 fprintf(stderr, "Failed to get my hostname.\n");
9300 return 1;
9303 if (*username == 0 && getenv("LOGNAME")) {
9304 fstrcpy(username,getenv("LOGNAME"));
9307 argc--;
9308 argv++;
9310 fstrcpy(workgroup, lp_workgroup());
9312 while ((opt = getopt(argc, argv, "p:hW:U:n:N:O:o:m:Ll:d:Aec:ks:b:B:f:"))
9313 != EOF) {
9314 switch (opt) {
9315 case 'p':
9316 port_to_use = atoi(optarg);
9317 break;
9318 case 's':
9319 seed = atoi(optarg);
9320 break;
9321 case 'W':
9322 fstrcpy(workgroup,optarg);
9323 break;
9324 case 'm':
9325 max_protocol = interpret_protocol(optarg, max_protocol);
9326 break;
9327 case 'N':
9328 torture_nprocs = atoi(optarg);
9329 break;
9330 case 'o':
9331 torture_numops = atoi(optarg);
9332 break;
9333 case 'd':
9334 lp_set_cmdline("log level", optarg);
9335 break;
9336 case 'O':
9337 sockops = optarg;
9338 break;
9339 case 'L':
9340 use_oplocks = True;
9341 break;
9342 case 'l':
9343 local_path = optarg;
9344 break;
9345 case 'A':
9346 torture_showall = True;
9347 break;
9348 case 'n':
9349 fstrcpy(myname, optarg);
9350 break;
9351 case 'c':
9352 client_txt = optarg;
9353 break;
9354 case 'e':
9355 do_encrypt = true;
9356 break;
9357 case 'k':
9358 #ifdef HAVE_KRB5
9359 use_kerberos = True;
9360 #else
9361 d_printf("No kerberos support compiled in\n");
9362 exit(1);
9363 #endif
9364 break;
9365 case 'U':
9366 gotuser = 1;
9367 fstrcpy(username,optarg);
9368 p = strchr_m(username,'%');
9369 if (p) {
9370 *p = 0;
9371 fstrcpy(password, p+1);
9372 gotpass = 1;
9374 break;
9375 case 'b':
9376 fstrcpy(multishare_conn_fname, optarg);
9377 use_multishare_conn = True;
9378 break;
9379 case 'B':
9380 torture_blocksize = atoi(optarg);
9381 break;
9382 case 'f':
9383 test_filename = SMB_STRDUP(optarg);
9384 break;
9385 default:
9386 printf("Unknown option %c (%d)\n", (char)opt, opt);
9387 usage();
9391 d_printf("using seed %d\n", seed);
9393 srandom(seed);
9395 if(use_kerberos && !gotuser) gotpass = True;
9397 while (!gotpass) {
9398 p = getpass("Password:");
9399 if (p) {
9400 fstrcpy(password, p);
9401 gotpass = 1;
9405 printf("host=%s share=%s user=%s myname=%s\n",
9406 host, share, username, myname);
9408 if (argc == optind) {
9409 correct = run_test("ALL");
9410 } else {
9411 for (i=optind;i<argc;i++) {
9412 if (!run_test(argv[i])) {
9413 correct = False;
9418 TALLOC_FREE(frame);
9420 if (correct) {
9421 return(0);
9422 } else {
9423 return(1);