2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1997-1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "wbc_async.h"
26 static fstring host, workgroup, share, password, username, myname;
27 static int max_protocol = PROTOCOL_NT1;
28 static const char *sockops="TCP_NODELAY";
30 static int port_to_use=0;
31 int torture_numops=100;
32 int torture_blocksize=1024*1024;
33 static int procnum; /* records process count number when forking */
34 static struct cli_state *current_cli;
35 static fstring randomfname;
36 static bool use_oplocks;
37 static bool use_level_II_oplocks;
38 static const char *client_txt = "client_oplocks.txt";
39 static bool use_kerberos;
40 static fstring multishare_conn_fname;
41 static bool use_multishare_conn = False;
42 static bool do_encrypt;
44 bool torture_showall = False;
46 static double create_procs(bool (*fn)(int), bool *result);
49 static struct timeval tp1,tp2;
52 void start_timer(void)
57 double end_timer(void)
60 return((tp2.tv_sec - tp1.tv_sec) +
61 (tp2.tv_usec - tp1.tv_usec)*1.0e-6);
65 /* return a pointer to a anonymous shared memory segment of size "size"
66 which will persist across fork() but will disappear when all processes
69 The memory is not zeroed
71 This function uses system5 shared memory. It takes advantage of a property
72 that the memory is not destroyed if it is attached when the id is removed
74 void *shm_setup(int size)
79 shmid = shmget(IPC_PRIVATE, size, S_IRUSR | S_IWUSR);
81 printf("can't get shared memory\n");
84 ret = (void *)shmat(shmid, 0, 0);
85 if (!ret || ret == (void *)-1) {
86 printf("can't attach to shared memory\n");
89 /* the following releases the ipc, but note that this process
90 and all its children will still have access to the memory, its
91 just that the shmid is no longer valid for other shm calls. This
92 means we don't leave behind lots of shm segments after we exit
94 See Stevens "advanced programming in unix env" for details
96 shmctl(shmid, IPC_RMID, 0);
101 /********************************************************************
102 Ensure a connection is encrypted.
103 ********************************************************************/
105 static bool force_cli_encryption(struct cli_state *c,
106 const char *sharename)
109 uint32 caplow, caphigh;
112 if (!SERVER_HAS_UNIX_CIFS(c)) {
113 d_printf("Encryption required and "
114 "server that doesn't support "
115 "UNIX extensions - failing connect\n");
119 if (!cli_unix_extensions_version(c, &major, &minor, &caplow, &caphigh)) {
120 d_printf("Encryption required and "
121 "can't get UNIX CIFS extensions "
122 "version from server.\n");
126 if (!(caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)) {
127 d_printf("Encryption required and "
128 "share %s doesn't support "
129 "encryption.\n", sharename);
133 if (c->use_kerberos) {
134 status = cli_gss_smb_encryption_start(c);
136 status = cli_raw_ntlm_smb_encryption_start(c,
142 if (!NT_STATUS_IS_OK(status)) {
143 d_printf("Encryption required and "
144 "setup failed with error %s.\n",
153 static struct cli_state *open_nbt_connection(void)
155 struct nmb_name called, calling;
156 struct sockaddr_storage ss;
160 make_nmb_name(&calling, myname, 0x0);
161 make_nmb_name(&called , host, 0x20);
165 if (!(c = cli_initialise())) {
166 printf("Failed initialize cli_struct to connect with %s\n", host);
170 c->port = port_to_use;
172 status = cli_connect(c, host, &ss);
173 if (!NT_STATUS_IS_OK(status)) {
174 printf("Failed to connect with %s. Error %s\n", host, nt_errstr(status) );
178 c->use_kerberos = use_kerberos;
180 c->timeout = 120000; /* set a really long timeout (2 minutes) */
181 if (use_oplocks) c->use_oplocks = True;
182 if (use_level_II_oplocks) c->use_level_II_oplocks = True;
184 if (!cli_session_request(c, &calling, &called)) {
186 * Well, that failed, try *SMBSERVER ...
187 * However, we must reconnect as well ...
189 status = cli_connect(c, host, &ss);
190 if (!NT_STATUS_IS_OK(status)) {
191 printf("Failed to connect with %s. Error %s\n", host, nt_errstr(status) );
195 make_nmb_name(&called, "*SMBSERVER", 0x20);
196 if (!cli_session_request(c, &calling, &called)) {
197 printf("%s rejected the session\n",host);
198 printf("We tried with a called name of %s & %s\n",
208 /* Insert a NULL at the first separator of the given path and return a pointer
209 * to the remainder of the string.
212 terminate_path_at_separator(char * path)
220 if ((p = strchr_m(path, '/'))) {
225 if ((p = strchr_m(path, '\\'))) {
235 parse a //server/share type UNC name
237 bool smbcli_parse_unc(const char *unc_name, TALLOC_CTX *mem_ctx,
238 char **hostname, char **sharename)
242 *hostname = *sharename = NULL;
244 if (strncmp(unc_name, "\\\\", 2) &&
245 strncmp(unc_name, "//", 2)) {
249 *hostname = talloc_strdup(mem_ctx, &unc_name[2]);
250 p = terminate_path_at_separator(*hostname);
253 *sharename = talloc_strdup(mem_ctx, p);
254 terminate_path_at_separator(*sharename);
257 if (*hostname && *sharename) {
261 TALLOC_FREE(*hostname);
262 TALLOC_FREE(*sharename);
266 static bool torture_open_connection_share(struct cli_state **c,
267 const char *hostname,
268 const char *sharename)
275 flags |= CLI_FULL_CONNECTION_USE_KERBEROS;
277 flags |= CLI_FULL_CONNECTION_OPLOCKS;
278 if (use_level_II_oplocks)
279 flags |= CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS;
281 status = cli_full_connection(c, myname,
282 hostname, NULL, port_to_use,
285 password, flags, Undefined, &retry);
286 if (!NT_STATUS_IS_OK(status)) {
287 printf("failed to open share connection: //%s/%s port:%d - %s\n",
288 hostname, sharename, port_to_use, nt_errstr(status));
292 (*c)->timeout = 120000; /* set a really long timeout (2 minutes) */
295 return force_cli_encryption(*c,
301 bool torture_open_connection(struct cli_state **c, int conn_index)
303 char **unc_list = NULL;
304 int num_unc_names = 0;
307 if (use_multishare_conn==True) {
309 unc_list = file_lines_load(multishare_conn_fname, &num_unc_names, 0, NULL);
310 if (!unc_list || num_unc_names <= 0) {
311 printf("Failed to load unc names list from '%s'\n", multishare_conn_fname);
315 if (!smbcli_parse_unc(unc_list[conn_index % num_unc_names],
317 printf("Failed to parse UNC name %s\n",
318 unc_list[conn_index % num_unc_names]);
319 TALLOC_FREE(unc_list);
323 result = torture_open_connection_share(c, h, s);
325 /* h, s were copied earlier */
326 TALLOC_FREE(unc_list);
330 return torture_open_connection_share(c, host, share);
333 bool torture_cli_session_setup2(struct cli_state *cli, uint16 *new_vuid)
335 uint16 old_vuid = cli->vuid;
336 fstring old_user_name;
337 size_t passlen = strlen(password);
341 fstrcpy(old_user_name, cli->user_name);
343 ret = NT_STATUS_IS_OK(cli_session_setup(cli, username,
347 *new_vuid = cli->vuid;
348 cli->vuid = old_vuid;
349 status = cli_set_username(cli, old_user_name);
350 if (!NT_STATUS_IS_OK(status)) {
357 bool torture_close_connection(struct cli_state *c)
361 printf("tdis failed (%s)\n", cli_errstr(c));
371 /* check if the server produced the expected error code */
372 static bool check_error(int line, struct cli_state *c,
373 uint8 eclass, uint32 ecode, NTSTATUS nterr)
375 if (cli_is_dos_error(c)) {
379 /* Check DOS error */
381 cli_dos_error(c, &cclass, &num);
383 if (eclass != cclass || ecode != num) {
384 printf("unexpected error code class=%d code=%d\n",
385 (int)cclass, (int)num);
386 printf(" expected %d/%d %s (line=%d)\n",
387 (int)eclass, (int)ecode, nt_errstr(nterr), line);
396 status = cli_nt_error(c);
398 if (NT_STATUS_V(nterr) != NT_STATUS_V(status)) {
399 printf("unexpected error code %s\n", nt_errstr(status));
400 printf(" expected %s (line=%d)\n", nt_errstr(nterr), line);
409 static bool wait_lock(struct cli_state *c, int fnum, uint32 offset, uint32 len)
411 while (!cli_lock(c, fnum, offset, len, -1, WRITE_LOCK)) {
412 if (!check_error(__LINE__, c, ERRDOS, ERRlock, NT_STATUS_LOCK_NOT_GRANTED)) return False;
418 static bool rw_torture(struct cli_state *c)
420 const char *lockfname = "\\torture.lck";
424 pid_t pid2, pid = getpid();
430 memset(buf, '\0', sizeof(buf));
432 status = cli_open(c, lockfname, O_RDWR | O_CREAT | O_EXCL,
434 if (!NT_STATUS_IS_OK(status)) {
435 status = cli_open(c, lockfname, O_RDWR, DENY_NONE, &fnum2);
437 if (!NT_STATUS_IS_OK(status)) {
438 printf("open of %s failed (%s)\n", lockfname, cli_errstr(c));
442 for (i=0;i<torture_numops;i++) {
443 unsigned n = (unsigned)sys_random()%10;
445 printf("%d\r", i); fflush(stdout);
447 slprintf(fname, sizeof(fstring) - 1, "\\torture.%u", n);
449 if (!wait_lock(c, fnum2, n*sizeof(int), sizeof(int))) {
453 if (!NT_STATUS_IS_OK(cli_open(c, fname, O_RDWR | O_CREAT | O_TRUNC, DENY_ALL, &fnum))) {
454 printf("open failed (%s)\n", cli_errstr(c));
459 if (cli_write(c, fnum, 0, (char *)&pid, 0, sizeof(pid)) != sizeof(pid)) {
460 printf("write failed (%s)\n", cli_errstr(c));
465 if (cli_write(c, fnum, 0, (char *)buf,
466 sizeof(pid)+(j*sizeof(buf)),
467 sizeof(buf)) != sizeof(buf)) {
468 printf("write failed (%s)\n", cli_errstr(c));
475 if (cli_read(c, fnum, (char *)&pid2, 0, sizeof(pid)) != sizeof(pid)) {
476 printf("read failed (%s)\n", cli_errstr(c));
481 printf("data corruption!\n");
485 if (!NT_STATUS_IS_OK(cli_close(c, fnum))) {
486 printf("close failed (%s)\n", cli_errstr(c));
490 if (!NT_STATUS_IS_OK(cli_unlink(c, fname, aSYSTEM | aHIDDEN))) {
491 printf("unlink failed (%s)\n", cli_errstr(c));
495 if (!cli_unlock(c, fnum2, n*sizeof(int), sizeof(int))) {
496 printf("unlock failed (%s)\n", cli_errstr(c));
502 cli_unlink(c, lockfname, aSYSTEM | aHIDDEN);
509 static bool run_torture(int dummy)
511 struct cli_state *cli;
516 cli_sockopt(cli, sockops);
518 ret = rw_torture(cli);
520 if (!torture_close_connection(cli)) {
527 static bool rw_torture3(struct cli_state *c, char *lockfname)
529 uint16_t fnum = (uint16_t)-1;
534 unsigned countprev = 0;
540 for (i = 0; i < sizeof(buf); i += sizeof(uint32))
542 SIVAL(buf, i, sys_random());
547 if (!NT_STATUS_IS_OK(cli_open(c, lockfname, O_RDWR | O_CREAT | O_EXCL,
548 DENY_NONE, &fnum))) {
549 printf("first open read/write of %s failed (%s)\n",
550 lockfname, cli_errstr(c));
556 for (i = 0; i < 500 && fnum == (uint16_t)-1; i++)
558 status = cli_open(c, lockfname, O_RDONLY,
560 if (!NT_STATUS_IS_OK(status)) {
565 if (!NT_STATUS_IS_OK(status)) {
566 printf("second open read-only of %s failed (%s)\n",
567 lockfname, cli_errstr(c));
573 for (count = 0; count < sizeof(buf); count += sent)
575 if (count >= countprev) {
576 printf("%d %8d\r", i, count);
579 countprev += (sizeof(buf) / 20);
584 sent = ((unsigned)sys_random()%(20))+ 1;
585 if (sent > sizeof(buf) - count)
587 sent = sizeof(buf) - count;
590 if (cli_write(c, fnum, 0, buf+count, count, (size_t)sent) != sent) {
591 printf("write failed (%s)\n", cli_errstr(c));
597 sent = cli_read(c, fnum, buf_rd+count, count,
601 printf("read failed offset:%d size:%ld (%s)\n",
602 count, (unsigned long)sizeof(buf)-count,
609 if (memcmp(buf_rd+count, buf+count, sent) != 0)
611 printf("read/write compare failed\n");
612 printf("offset: %d req %ld recvd %ld\n", count, (unsigned long)sizeof(buf)-count, (unsigned long)sent);
621 if (!NT_STATUS_IS_OK(cli_close(c, fnum))) {
622 printf("close failed (%s)\n", cli_errstr(c));
629 static bool rw_torture2(struct cli_state *c1, struct cli_state *c2)
631 const char *lockfname = "\\torture2.lck";
640 if (!NT_STATUS_IS_OK(cli_unlink(c1, lockfname, aSYSTEM | aHIDDEN))) {
641 printf("unlink failed (%s) (normal, this file should not exist)\n", cli_errstr(c1));
644 if (!NT_STATUS_IS_OK(cli_open(c1, lockfname, O_RDWR | O_CREAT | O_EXCL,
645 DENY_NONE, &fnum1))) {
646 printf("first open read/write of %s failed (%s)\n",
647 lockfname, cli_errstr(c1));
650 if (!NT_STATUS_IS_OK(cli_open(c2, lockfname, O_RDONLY,
651 DENY_NONE, &fnum2))) {
652 printf("second open read-only of %s failed (%s)\n",
653 lockfname, cli_errstr(c2));
654 cli_close(c1, fnum1);
658 for (i=0;i<torture_numops;i++)
660 size_t buf_size = ((unsigned)sys_random()%(sizeof(buf)-1))+ 1;
662 printf("%d\r", i); fflush(stdout);
665 generate_random_buffer((unsigned char *)buf, buf_size);
667 if (cli_write(c1, fnum1, 0, buf, 0, buf_size) != buf_size) {
668 printf("write failed (%s)\n", cli_errstr(c1));
673 if ((bytes_read = cli_read(c2, fnum2, buf_rd, 0, buf_size)) != buf_size) {
674 printf("read failed (%s)\n", cli_errstr(c2));
675 printf("read %d, expected %ld\n", (int)bytes_read,
676 (unsigned long)buf_size);
681 if (memcmp(buf_rd, buf, buf_size) != 0)
683 printf("read/write compare failed\n");
689 if (!NT_STATUS_IS_OK(cli_close(c2, fnum2))) {
690 printf("close failed (%s)\n", cli_errstr(c2));
693 if (!NT_STATUS_IS_OK(cli_close(c1, fnum1))) {
694 printf("close failed (%s)\n", cli_errstr(c1));
698 if (!NT_STATUS_IS_OK(cli_unlink(c1, lockfname, aSYSTEM | aHIDDEN))) {
699 printf("unlink failed (%s)\n", cli_errstr(c1));
706 static bool run_readwritetest(int dummy)
708 static struct cli_state *cli1, *cli2;
709 bool test1, test2 = False;
711 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
714 cli_sockopt(cli1, sockops);
715 cli_sockopt(cli2, sockops);
717 printf("starting readwritetest\n");
719 test1 = rw_torture2(cli1, cli2);
720 printf("Passed readwritetest v1: %s\n", BOOLSTR(test1));
723 test2 = rw_torture2(cli1, cli1);
724 printf("Passed readwritetest v2: %s\n", BOOLSTR(test2));
727 if (!torture_close_connection(cli1)) {
731 if (!torture_close_connection(cli2)) {
735 return (test1 && test2);
738 static bool run_readwritemulti(int dummy)
740 struct cli_state *cli;
745 cli_sockopt(cli, sockops);
747 printf("run_readwritemulti: fname %s\n", randomfname);
748 test = rw_torture3(cli, randomfname);
750 if (!torture_close_connection(cli)) {
757 static bool run_readwritelarge(int dummy)
759 static struct cli_state *cli1;
761 const char *lockfname = "\\large.dat";
766 if (!torture_open_connection(&cli1, 0)) {
769 cli_sockopt(cli1, sockops);
770 memset(buf,'\0',sizeof(buf));
772 cli1->max_xmit = 128*1024;
774 printf("starting readwritelarge\n");
776 cli_unlink(cli1, lockfname, aSYSTEM | aHIDDEN);
778 if (!NT_STATUS_IS_OK(cli_open(cli1, lockfname, O_RDWR | O_CREAT | O_EXCL, DENY_NONE, &fnum1))) {
779 printf("open read/write of %s failed (%s)\n", lockfname, cli_errstr(cli1));
783 cli_write(cli1, fnum1, 0, buf, 0, sizeof(buf));
785 if (!cli_qfileinfo(cli1, fnum1, NULL, &fsize, NULL, NULL, NULL, NULL, NULL)) {
786 printf("qfileinfo failed (%s)\n", cli_errstr(cli1));
790 if (fsize == sizeof(buf))
791 printf("readwritelarge test 1 succeeded (size = %lx)\n",
792 (unsigned long)fsize);
794 printf("readwritelarge test 1 failed (size = %lx)\n",
795 (unsigned long)fsize);
799 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
800 printf("close failed (%s)\n", cli_errstr(cli1));
804 if (!NT_STATUS_IS_OK(cli_unlink(cli1, lockfname, aSYSTEM | aHIDDEN))) {
805 printf("unlink failed (%s)\n", cli_errstr(cli1));
809 if (!NT_STATUS_IS_OK(cli_open(cli1, lockfname, O_RDWR | O_CREAT | O_EXCL, DENY_NONE, &fnum1))) {
810 printf("open read/write of %s failed (%s)\n", lockfname, cli_errstr(cli1));
814 cli1->max_xmit = 4*1024;
816 cli_smbwrite(cli1, fnum1, buf, 0, sizeof(buf));
818 if (!cli_qfileinfo(cli1, fnum1, NULL, &fsize, NULL, NULL, NULL, NULL, NULL)) {
819 printf("qfileinfo failed (%s)\n", cli_errstr(cli1));
823 if (fsize == sizeof(buf))
824 printf("readwritelarge test 2 succeeded (size = %lx)\n",
825 (unsigned long)fsize);
827 printf("readwritelarge test 2 failed (size = %lx)\n",
828 (unsigned long)fsize);
833 /* ToDo - set allocation. JRA */
834 if(!cli_set_allocation_size(cli1, fnum1, 0)) {
835 printf("set allocation size to zero failed (%s)\n", cli_errstr(&cli1));
838 if (!cli_qfileinfo(cli1, fnum1, NULL, &fsize, NULL, NULL, NULL, NULL, NULL)) {
839 printf("qfileinfo failed (%s)\n", cli_errstr(cli1));
843 printf("readwritelarge test 3 (truncate test) succeeded (size = %x)\n", fsize);
846 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
847 printf("close failed (%s)\n", cli_errstr(cli1));
851 if (!torture_close_connection(cli1)) {
860 #define ival(s) strtol(s, NULL, 0)
862 /* run a test that simulates an approximate netbench client load */
863 static bool run_netbench(int client)
865 struct cli_state *cli;
870 const char *params[20];
877 cli_sockopt(cli, sockops);
881 slprintf(cname,sizeof(cname)-1, "client%d", client);
883 f = fopen(client_txt, "r");
890 while (fgets(line, sizeof(line)-1, f)) {
894 line[strlen(line)-1] = 0;
896 /* printf("[%d] %s\n", line_count, line); */
898 all_string_sub(line,"client1", cname, sizeof(line));
900 /* parse the command parameters */
901 params[0] = strtok_r(line, " ", &saveptr);
903 while (params[i]) params[++i] = strtok_r(NULL, " ", &saveptr);
909 if (!strncmp(params[0],"SMB", 3)) {
910 printf("ERROR: You are using a dbench 1 load file\n");
914 if (!strcmp(params[0],"NTCreateX")) {
915 nb_createx(params[1], ival(params[2]), ival(params[3]),
917 } else if (!strcmp(params[0],"Close")) {
918 nb_close(ival(params[1]));
919 } else if (!strcmp(params[0],"Rename")) {
920 nb_rename(params[1], params[2]);
921 } else if (!strcmp(params[0],"Unlink")) {
922 nb_unlink(params[1]);
923 } else if (!strcmp(params[0],"Deltree")) {
924 nb_deltree(params[1]);
925 } else if (!strcmp(params[0],"Rmdir")) {
927 } else if (!strcmp(params[0],"QUERY_PATH_INFORMATION")) {
928 nb_qpathinfo(params[1]);
929 } else if (!strcmp(params[0],"QUERY_FILE_INFORMATION")) {
930 nb_qfileinfo(ival(params[1]));
931 } else if (!strcmp(params[0],"QUERY_FS_INFORMATION")) {
932 nb_qfsinfo(ival(params[1]));
933 } else if (!strcmp(params[0],"FIND_FIRST")) {
934 nb_findfirst(params[1]);
935 } else if (!strcmp(params[0],"WriteX")) {
936 nb_writex(ival(params[1]),
937 ival(params[2]), ival(params[3]), ival(params[4]));
938 } else if (!strcmp(params[0],"ReadX")) {
939 nb_readx(ival(params[1]),
940 ival(params[2]), ival(params[3]), ival(params[4]));
941 } else if (!strcmp(params[0],"Flush")) {
942 nb_flush(ival(params[1]));
944 printf("Unknown operation %s\n", params[0]);
952 if (!torture_close_connection(cli)) {
960 /* run a test that simulates an approximate netbench client load */
961 static bool run_nbench(int dummy)
970 signal(SIGALRM, nb_alarm);
972 t = create_procs(run_netbench, &correct);
975 printf("\nThroughput %g MB/sec\n",
976 1.0e-6 * nbio_total() / t);
982 This test checks for two things:
984 1) correct support for retaining locks over a close (ie. the server
985 must not use posix semantics)
986 2) support for lock timeouts
988 static bool run_locktest1(int dummy)
990 struct cli_state *cli1, *cli2;
991 const char *fname = "\\lockt1.lck";
992 uint16_t fnum1, fnum2, fnum3;
994 unsigned lock_timeout;
996 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
999 cli_sockopt(cli1, sockops);
1000 cli_sockopt(cli2, sockops);
1002 printf("starting locktest1\n");
1004 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
1006 if (!NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1))) {
1007 printf("open of %s failed (%s)\n", fname, cli_errstr(cli1));
1010 if (!NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDWR, DENY_NONE, &fnum2))) {
1011 printf("open2 of %s failed (%s)\n", fname, cli_errstr(cli1));
1014 if (!NT_STATUS_IS_OK(cli_open(cli2, fname, O_RDWR, DENY_NONE, &fnum3))) {
1015 printf("open3 of %s failed (%s)\n", fname, cli_errstr(cli2));
1019 if (!cli_lock(cli1, fnum1, 0, 4, 0, WRITE_LOCK)) {
1020 printf("lock1 failed (%s)\n", cli_errstr(cli1));
1025 if (cli_lock(cli2, fnum3, 0, 4, 0, WRITE_LOCK)) {
1026 printf("lock2 succeeded! This is a locking bug\n");
1029 if (!check_error(__LINE__, cli2, ERRDOS, ERRlock,
1030 NT_STATUS_LOCK_NOT_GRANTED)) return False;
1034 lock_timeout = (1 + (random() % 20));
1035 printf("Testing lock timeout with timeout=%u\n", lock_timeout);
1037 if (cli_lock(cli2, fnum3, 0, 4, lock_timeout * 1000, WRITE_LOCK)) {
1038 printf("lock3 succeeded! This is a locking bug\n");
1041 if (!check_error(__LINE__, cli2, ERRDOS, ERRlock,
1042 NT_STATUS_FILE_LOCK_CONFLICT)) return False;
1046 if (ABS(t2 - t1) < lock_timeout-1) {
1047 printf("error: This server appears not to support timed lock requests\n");
1050 printf("server slept for %u seconds for a %u second timeout\n",
1051 (unsigned int)(t2-t1), lock_timeout);
1053 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum2))) {
1054 printf("close1 failed (%s)\n", cli_errstr(cli1));
1058 if (cli_lock(cli2, fnum3, 0, 4, 0, WRITE_LOCK)) {
1059 printf("lock4 succeeded! This is a locking bug\n");
1062 if (!check_error(__LINE__, cli2, ERRDOS, ERRlock,
1063 NT_STATUS_FILE_LOCK_CONFLICT)) return False;
1066 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
1067 printf("close2 failed (%s)\n", cli_errstr(cli1));
1071 if (!NT_STATUS_IS_OK(cli_close(cli2, fnum3))) {
1072 printf("close3 failed (%s)\n", cli_errstr(cli2));
1076 if (!NT_STATUS_IS_OK(cli_unlink(cli1, fname, aSYSTEM | aHIDDEN))) {
1077 printf("unlink failed (%s)\n", cli_errstr(cli1));
1082 if (!torture_close_connection(cli1)) {
1086 if (!torture_close_connection(cli2)) {
1090 printf("Passed locktest1\n");
1095 this checks to see if a secondary tconx can use open files from an
1098 static bool run_tcon_test(int dummy)
1100 static struct cli_state *cli;
1101 const char *fname = "\\tcontest.tmp";
1103 uint16 cnum1, cnum2, cnum3;
1104 uint16 vuid1, vuid2;
1109 memset(buf, '\0', sizeof(buf));
1111 if (!torture_open_connection(&cli, 0)) {
1114 cli_sockopt(cli, sockops);
1116 printf("starting tcontest\n");
1118 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
1120 if (!NT_STATUS_IS_OK(cli_open(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1))) {
1121 printf("open of %s failed (%s)\n", fname, cli_errstr(cli));
1128 if (cli_write(cli, fnum1, 0, buf, 130, 4) != 4) {
1129 printf("initial write failed (%s)", cli_errstr(cli));
1133 status = cli_tcon_andx(cli, share, "?????",
1134 password, strlen(password)+1);
1135 if (!NT_STATUS_IS_OK(status)) {
1136 printf("%s refused 2nd tree connect (%s)\n", host,
1143 cnum3 = MAX(cnum1, cnum2) + 1; /* any invalid number */
1144 vuid2 = cli->vuid + 1;
1146 /* try a write with the wrong tid */
1149 if (cli_write(cli, fnum1, 0, buf, 130, 4) == 4) {
1150 printf("* server allows write with wrong TID\n");
1153 printf("server fails write with wrong TID : %s\n", cli_errstr(cli));
1157 /* try a write with an invalid tid */
1160 if (cli_write(cli, fnum1, 0, buf, 130, 4) == 4) {
1161 printf("* server allows write with invalid TID\n");
1164 printf("server fails write with invalid TID : %s\n", cli_errstr(cli));
1167 /* try a write with an invalid vuid */
1171 if (cli_write(cli, fnum1, 0, buf, 130, 4) == 4) {
1172 printf("* server allows write with invalid VUID\n");
1175 printf("server fails write with invalid VUID : %s\n", cli_errstr(cli));
1181 if (!NT_STATUS_IS_OK(cli_close(cli, fnum1))) {
1182 printf("close failed (%s)\n", cli_errstr(cli));
1188 if (!cli_tdis(cli)) {
1189 printf("secondary tdis failed (%s)\n", cli_errstr(cli));
1195 if (!torture_close_connection(cli)) {
1204 checks for old style tcon support
1206 static bool run_tcon2_test(int dummy)
1208 static struct cli_state *cli;
1209 uint16 cnum, max_xmit;
1213 if (!torture_open_connection(&cli, 0)) {
1216 cli_sockopt(cli, sockops);
1218 printf("starting tcon2 test\n");
1220 if (asprintf(&service, "\\\\%s\\%s", host, share) == -1) {
1224 status = cli_raw_tcon(cli, service, password, "?????", &max_xmit, &cnum);
1226 if (!NT_STATUS_IS_OK(status)) {
1227 printf("tcon2 failed : %s\n", cli_errstr(cli));
1229 printf("tcon OK : max_xmit=%d cnum=%d tid=%d\n",
1230 (int)max_xmit, (int)cnum, SVAL(cli->inbuf, smb_tid));
1233 if (!torture_close_connection(cli)) {
1237 printf("Passed tcon2 test\n");
1241 static bool tcon_devtest(struct cli_state *cli,
1242 const char *myshare, const char *devtype,
1243 const char *return_devtype,
1244 NTSTATUS expected_error)
1249 status = cli_tcon_andx(cli, myshare, devtype,
1250 password, strlen(password)+1);
1252 if (NT_STATUS_IS_OK(expected_error)) {
1253 if (NT_STATUS_IS_OK(status)) {
1254 if (strcmp(cli->dev, return_devtype) == 0) {
1257 printf("tconX to share %s with type %s "
1258 "succeeded but returned the wrong "
1259 "device type (got [%s] but should have got [%s])\n",
1260 myshare, devtype, cli->dev, return_devtype);
1264 printf("tconX to share %s with type %s "
1265 "should have succeeded but failed\n",
1271 if (NT_STATUS_IS_OK(status)) {
1272 printf("tconx to share %s with type %s "
1273 "should have failed but succeeded\n",
1277 if (NT_STATUS_EQUAL(cli_nt_error(cli),
1281 printf("Returned unexpected error\n");
1290 checks for correct tconX support
1292 static bool run_tcon_devtype_test(int dummy)
1294 static struct cli_state *cli1 = NULL;
1300 status = cli_full_connection(&cli1, myname,
1301 host, NULL, port_to_use,
1303 username, workgroup,
1304 password, flags, Undefined, &retry);
1306 if (!NT_STATUS_IS_OK(status)) {
1307 printf("could not open connection\n");
1311 if (!tcon_devtest(cli1, "IPC$", "A:", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1314 if (!tcon_devtest(cli1, "IPC$", "?????", "IPC", NT_STATUS_OK))
1317 if (!tcon_devtest(cli1, "IPC$", "LPT:", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1320 if (!tcon_devtest(cli1, "IPC$", "IPC", "IPC", NT_STATUS_OK))
1323 if (!tcon_devtest(cli1, "IPC$", "FOOBA", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1326 if (!tcon_devtest(cli1, share, "A:", "A:", NT_STATUS_OK))
1329 if (!tcon_devtest(cli1, share, "?????", "A:", NT_STATUS_OK))
1332 if (!tcon_devtest(cli1, share, "LPT:", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1335 if (!tcon_devtest(cli1, share, "IPC", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1338 if (!tcon_devtest(cli1, share, "FOOBA", NULL, NT_STATUS_BAD_DEVICE_TYPE))
1344 printf("Passed tcondevtest\n");
1351 This test checks that
1353 1) the server supports multiple locking contexts on the one SMB
1354 connection, distinguished by PID.
1356 2) the server correctly fails overlapping locks made by the same PID (this
1357 goes against POSIX behaviour, which is why it is tricky to implement)
1359 3) the server denies unlock requests by an incorrect client PID
1361 static bool run_locktest2(int dummy)
1363 static struct cli_state *cli;
1364 const char *fname = "\\lockt2.lck";
1365 uint16_t fnum1, fnum2, fnum3;
1366 bool correct = True;
1368 if (!torture_open_connection(&cli, 0)) {
1372 cli_sockopt(cli, sockops);
1374 printf("starting locktest2\n");
1376 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
1380 if (!NT_STATUS_IS_OK(cli_open(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1))) {
1381 printf("open of %s failed (%s)\n", fname, cli_errstr(cli));
1385 if (!NT_STATUS_IS_OK(cli_open(cli, fname, O_RDWR, DENY_NONE, &fnum2))) {
1386 printf("open2 of %s failed (%s)\n", fname, cli_errstr(cli));
1392 if (!NT_STATUS_IS_OK(cli_open(cli, fname, O_RDWR, DENY_NONE, &fnum3))) {
1393 printf("open3 of %s failed (%s)\n", fname, cli_errstr(cli));
1399 if (!cli_lock(cli, fnum1, 0, 4, 0, WRITE_LOCK)) {
1400 printf("lock1 failed (%s)\n", cli_errstr(cli));
1404 if (cli_lock(cli, fnum1, 0, 4, 0, WRITE_LOCK)) {
1405 printf("WRITE lock1 succeeded! This is a locking bug\n");
1408 if (!check_error(__LINE__, cli, ERRDOS, ERRlock,
1409 NT_STATUS_LOCK_NOT_GRANTED)) return False;
1412 if (cli_lock(cli, fnum2, 0, 4, 0, WRITE_LOCK)) {
1413 printf("WRITE lock2 succeeded! This is a locking bug\n");
1416 if (!check_error(__LINE__, cli, ERRDOS, ERRlock,
1417 NT_STATUS_LOCK_NOT_GRANTED)) return False;
1420 if (cli_lock(cli, fnum2, 0, 4, 0, READ_LOCK)) {
1421 printf("READ lock2 succeeded! This is a locking bug\n");
1424 if (!check_error(__LINE__, cli, ERRDOS, ERRlock,
1425 NT_STATUS_FILE_LOCK_CONFLICT)) return False;
1428 if (!cli_lock(cli, fnum1, 100, 4, 0, WRITE_LOCK)) {
1429 printf("lock at 100 failed (%s)\n", cli_errstr(cli));
1432 if (cli_unlock(cli, fnum1, 100, 4)) {
1433 printf("unlock at 100 succeeded! This is a locking bug\n");
1437 if (cli_unlock(cli, fnum1, 0, 4)) {
1438 printf("unlock1 succeeded! This is a locking bug\n");
1441 if (!check_error(__LINE__, cli,
1443 NT_STATUS_RANGE_NOT_LOCKED)) return False;
1446 if (cli_unlock(cli, fnum1, 0, 8)) {
1447 printf("unlock2 succeeded! This is a locking bug\n");
1450 if (!check_error(__LINE__, cli,
1452 NT_STATUS_RANGE_NOT_LOCKED)) return False;
1455 if (cli_lock(cli, fnum3, 0, 4, 0, WRITE_LOCK)) {
1456 printf("lock3 succeeded! This is a locking bug\n");
1459 if (!check_error(__LINE__, cli, ERRDOS, ERRlock, NT_STATUS_LOCK_NOT_GRANTED)) return False;
1464 if (!NT_STATUS_IS_OK(cli_close(cli, fnum1))) {
1465 printf("close1 failed (%s)\n", cli_errstr(cli));
1469 if (!NT_STATUS_IS_OK(cli_close(cli, fnum2))) {
1470 printf("close2 failed (%s)\n", cli_errstr(cli));
1474 if (!NT_STATUS_IS_OK(cli_close(cli, fnum3))) {
1475 printf("close3 failed (%s)\n", cli_errstr(cli));
1479 if (!torture_close_connection(cli)) {
1483 printf("locktest2 finished\n");
1490 This test checks that
1492 1) the server supports the full offset range in lock requests
1494 static bool run_locktest3(int dummy)
1496 static struct cli_state *cli1, *cli2;
1497 const char *fname = "\\lockt3.lck";
1498 uint16_t fnum1, fnum2;
1501 bool correct = True;
1503 #define NEXT_OFFSET offset += (~(uint32)0) / torture_numops
1505 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
1508 cli_sockopt(cli1, sockops);
1509 cli_sockopt(cli2, sockops);
1511 printf("starting locktest3\n");
1513 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
1515 if (!NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1))) {
1516 printf("open of %s failed (%s)\n", fname, cli_errstr(cli1));
1519 if (!NT_STATUS_IS_OK(cli_open(cli2, fname, O_RDWR, DENY_NONE, &fnum2))) {
1520 printf("open2 of %s failed (%s)\n", fname, cli_errstr(cli2));
1524 for (offset=i=0;i<torture_numops;i++) {
1526 if (!cli_lock(cli1, fnum1, offset-1, 1, 0, WRITE_LOCK)) {
1527 printf("lock1 %d failed (%s)\n",
1533 if (!cli_lock(cli2, fnum2, offset-2, 1, 0, WRITE_LOCK)) {
1534 printf("lock2 %d failed (%s)\n",
1541 for (offset=i=0;i<torture_numops;i++) {
1544 if (cli_lock(cli1, fnum1, offset-2, 1, 0, WRITE_LOCK)) {
1545 printf("error: lock1 %d succeeded!\n", i);
1549 if (cli_lock(cli2, fnum2, offset-1, 1, 0, WRITE_LOCK)) {
1550 printf("error: lock2 %d succeeded!\n", i);
1554 if (cli_lock(cli1, fnum1, offset-1, 1, 0, WRITE_LOCK)) {
1555 printf("error: lock3 %d succeeded!\n", i);
1559 if (cli_lock(cli2, fnum2, offset-2, 1, 0, WRITE_LOCK)) {
1560 printf("error: lock4 %d succeeded!\n", i);
1565 for (offset=i=0;i<torture_numops;i++) {
1568 if (!cli_unlock(cli1, fnum1, offset-1, 1)) {
1569 printf("unlock1 %d failed (%s)\n",
1575 if (!cli_unlock(cli2, fnum2, offset-2, 1)) {
1576 printf("unlock2 %d failed (%s)\n",
1583 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
1584 printf("close1 failed (%s)\n", cli_errstr(cli1));
1588 if (!NT_STATUS_IS_OK(cli_close(cli2, fnum2))) {
1589 printf("close2 failed (%s)\n", cli_errstr(cli2));
1593 if (!NT_STATUS_IS_OK(cli_unlink(cli1, fname, aSYSTEM | aHIDDEN))) {
1594 printf("unlink failed (%s)\n", cli_errstr(cli1));
1598 if (!torture_close_connection(cli1)) {
1602 if (!torture_close_connection(cli2)) {
1606 printf("finished locktest3\n");
1611 #define EXPECTED(ret, v) if ((ret) != (v)) { \
1612 printf("** "); correct = False; \
1616 looks at overlapping locks
1618 static bool run_locktest4(int dummy)
1620 static struct cli_state *cli1, *cli2;
1621 const char *fname = "\\lockt4.lck";
1622 uint16_t fnum1, fnum2, f;
1625 bool correct = True;
1627 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
1631 cli_sockopt(cli1, sockops);
1632 cli_sockopt(cli2, sockops);
1634 printf("starting locktest4\n");
1636 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
1638 cli_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
1639 cli_open(cli2, fname, O_RDWR, DENY_NONE, &fnum2);
1641 memset(buf, 0, sizeof(buf));
1643 if (cli_write(cli1, fnum1, 0, buf, 0, sizeof(buf)) != sizeof(buf)) {
1644 printf("Failed to create file\n");
1649 ret = cli_lock(cli1, fnum1, 0, 4, 0, WRITE_LOCK) &&
1650 cli_lock(cli1, fnum1, 2, 4, 0, WRITE_LOCK);
1651 EXPECTED(ret, False);
1652 printf("the same process %s set overlapping write locks\n", ret?"can":"cannot");
1654 ret = cli_lock(cli1, fnum1, 10, 4, 0, READ_LOCK) &&
1655 cli_lock(cli1, fnum1, 12, 4, 0, READ_LOCK);
1656 EXPECTED(ret, True);
1657 printf("the same process %s set overlapping read locks\n", ret?"can":"cannot");
1659 ret = cli_lock(cli1, fnum1, 20, 4, 0, WRITE_LOCK) &&
1660 cli_lock(cli2, fnum2, 22, 4, 0, WRITE_LOCK);
1661 EXPECTED(ret, False);
1662 printf("a different connection %s set overlapping write locks\n", ret?"can":"cannot");
1664 ret = cli_lock(cli1, fnum1, 30, 4, 0, READ_LOCK) &&
1665 cli_lock(cli2, fnum2, 32, 4, 0, READ_LOCK);
1666 EXPECTED(ret, True);
1667 printf("a different connection %s set overlapping read locks\n", ret?"can":"cannot");
1669 ret = (cli_setpid(cli1, 1), cli_lock(cli1, fnum1, 40, 4, 0, WRITE_LOCK)) &&
1670 (cli_setpid(cli1, 2), cli_lock(cli1, fnum1, 42, 4, 0, WRITE_LOCK));
1671 EXPECTED(ret, False);
1672 printf("a different pid %s set overlapping write locks\n", ret?"can":"cannot");
1674 ret = (cli_setpid(cli1, 1), cli_lock(cli1, fnum1, 50, 4, 0, READ_LOCK)) &&
1675 (cli_setpid(cli1, 2), cli_lock(cli1, fnum1, 52, 4, 0, READ_LOCK));
1676 EXPECTED(ret, True);
1677 printf("a different pid %s set overlapping read locks\n", ret?"can":"cannot");
1679 ret = cli_lock(cli1, fnum1, 60, 4, 0, READ_LOCK) &&
1680 cli_lock(cli1, fnum1, 60, 4, 0, READ_LOCK);
1681 EXPECTED(ret, True);
1682 printf("the same process %s set the same read lock twice\n", ret?"can":"cannot");
1684 ret = cli_lock(cli1, fnum1, 70, 4, 0, WRITE_LOCK) &&
1685 cli_lock(cli1, fnum1, 70, 4, 0, WRITE_LOCK);
1686 EXPECTED(ret, False);
1687 printf("the same process %s set the same write lock twice\n", ret?"can":"cannot");
1689 ret = cli_lock(cli1, fnum1, 80, 4, 0, READ_LOCK) &&
1690 cli_lock(cli1, fnum1, 80, 4, 0, WRITE_LOCK);
1691 EXPECTED(ret, False);
1692 printf("the same process %s overlay a read lock with a write lock\n", ret?"can":"cannot");
1694 ret = cli_lock(cli1, fnum1, 90, 4, 0, WRITE_LOCK) &&
1695 cli_lock(cli1, fnum1, 90, 4, 0, READ_LOCK);
1696 EXPECTED(ret, True);
1697 printf("the same process %s overlay a write lock with a read lock\n", ret?"can":"cannot");
1699 ret = (cli_setpid(cli1, 1), cli_lock(cli1, fnum1, 100, 4, 0, WRITE_LOCK)) &&
1700 (cli_setpid(cli1, 2), cli_lock(cli1, fnum1, 100, 4, 0, READ_LOCK));
1701 EXPECTED(ret, False);
1702 printf("a different pid %s overlay a write lock with a read lock\n", ret?"can":"cannot");
1704 ret = cli_lock(cli1, fnum1, 110, 4, 0, READ_LOCK) &&
1705 cli_lock(cli1, fnum1, 112, 4, 0, READ_LOCK) &&
1706 cli_unlock(cli1, fnum1, 110, 6);
1707 EXPECTED(ret, False);
1708 printf("the same process %s coalesce read locks\n", ret?"can":"cannot");
1711 ret = cli_lock(cli1, fnum1, 120, 4, 0, WRITE_LOCK) &&
1712 (cli_read(cli2, fnum2, buf, 120, 4) == 4);
1713 EXPECTED(ret, False);
1714 printf("this server %s strict write locking\n", ret?"doesn't do":"does");
1716 ret = cli_lock(cli1, fnum1, 130, 4, 0, READ_LOCK) &&
1717 (cli_write(cli2, fnum2, 0, buf, 130, 4) == 4);
1718 EXPECTED(ret, False);
1719 printf("this server %s strict read locking\n", ret?"doesn't do":"does");
1722 ret = cli_lock(cli1, fnum1, 140, 4, 0, READ_LOCK) &&
1723 cli_lock(cli1, fnum1, 140, 4, 0, READ_LOCK) &&
1724 cli_unlock(cli1, fnum1, 140, 4) &&
1725 cli_unlock(cli1, fnum1, 140, 4);
1726 EXPECTED(ret, True);
1727 printf("this server %s do recursive read locking\n", ret?"does":"doesn't");
1730 ret = cli_lock(cli1, fnum1, 150, 4, 0, WRITE_LOCK) &&
1731 cli_lock(cli1, fnum1, 150, 4, 0, READ_LOCK) &&
1732 cli_unlock(cli1, fnum1, 150, 4) &&
1733 (cli_read(cli2, fnum2, buf, 150, 4) == 4) &&
1734 !(cli_write(cli2, fnum2, 0, buf, 150, 4) == 4) &&
1735 cli_unlock(cli1, fnum1, 150, 4);
1736 EXPECTED(ret, True);
1737 printf("this server %s do recursive lock overlays\n", ret?"does":"doesn't");
1739 ret = cli_lock(cli1, fnum1, 160, 4, 0, READ_LOCK) &&
1740 cli_unlock(cli1, fnum1, 160, 4) &&
1741 (cli_write(cli2, fnum2, 0, buf, 160, 4) == 4) &&
1742 (cli_read(cli2, fnum2, buf, 160, 4) == 4);
1743 EXPECTED(ret, True);
1744 printf("the same process %s remove a read lock using write locking\n", ret?"can":"cannot");
1746 ret = cli_lock(cli1, fnum1, 170, 4, 0, WRITE_LOCK) &&
1747 cli_unlock(cli1, fnum1, 170, 4) &&
1748 (cli_write(cli2, fnum2, 0, buf, 170, 4) == 4) &&
1749 (cli_read(cli2, fnum2, buf, 170, 4) == 4);
1750 EXPECTED(ret, True);
1751 printf("the same process %s remove a write lock using read locking\n", ret?"can":"cannot");
1753 ret = cli_lock(cli1, fnum1, 190, 4, 0, WRITE_LOCK) &&
1754 cli_lock(cli1, fnum1, 190, 4, 0, READ_LOCK) &&
1755 cli_unlock(cli1, fnum1, 190, 4) &&
1756 !(cli_write(cli2, fnum2, 0, buf, 190, 4) == 4) &&
1757 (cli_read(cli2, fnum2, buf, 190, 4) == 4);
1758 EXPECTED(ret, True);
1759 printf("the same process %s remove the first lock first\n", ret?"does":"doesn't");
1761 cli_close(cli1, fnum1);
1762 cli_close(cli2, fnum2);
1763 cli_open(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
1764 cli_open(cli1, fname, O_RDWR, DENY_NONE, &f);
1765 ret = cli_lock(cli1, fnum1, 0, 8, 0, READ_LOCK) &&
1766 cli_lock(cli1, f, 0, 1, 0, READ_LOCK) &&
1767 NT_STATUS_IS_OK(cli_close(cli1, fnum1)) &&
1768 NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDWR, DENY_NONE, &fnum1)) &&
1769 cli_lock(cli1, fnum1, 7, 1, 0, WRITE_LOCK);
1771 cli_close(cli1, fnum1);
1772 EXPECTED(ret, True);
1773 printf("the server %s have the NT byte range lock bug\n", !ret?"does":"doesn't");
1776 cli_close(cli1, fnum1);
1777 cli_close(cli2, fnum2);
1778 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
1779 torture_close_connection(cli1);
1780 torture_close_connection(cli2);
1782 printf("finished locktest4\n");
1787 looks at lock upgrade/downgrade.
1789 static bool run_locktest5(int dummy)
1791 static struct cli_state *cli1, *cli2;
1792 const char *fname = "\\lockt5.lck";
1793 uint16_t fnum1, fnum2, fnum3;
1796 bool correct = True;
1798 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
1802 cli_sockopt(cli1, sockops);
1803 cli_sockopt(cli2, sockops);
1805 printf("starting locktest5\n");
1807 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
1809 cli_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
1810 cli_open(cli2, fname, O_RDWR, DENY_NONE, &fnum2);
1811 cli_open(cli1, fname, O_RDWR, DENY_NONE, &fnum3);
1813 memset(buf, 0, sizeof(buf));
1815 if (cli_write(cli1, fnum1, 0, buf, 0, sizeof(buf)) != sizeof(buf)) {
1816 printf("Failed to create file\n");
1821 /* Check for NT bug... */
1822 ret = cli_lock(cli1, fnum1, 0, 8, 0, READ_LOCK) &&
1823 cli_lock(cli1, fnum3, 0, 1, 0, READ_LOCK);
1824 cli_close(cli1, fnum1);
1825 cli_open(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
1826 ret = cli_lock(cli1, fnum1, 7, 1, 0, WRITE_LOCK);
1827 EXPECTED(ret, True);
1828 printf("this server %s the NT locking bug\n", ret ? "doesn't have" : "has");
1829 cli_close(cli1, fnum1);
1830 cli_open(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
1831 cli_unlock(cli1, fnum3, 0, 1);
1833 ret = cli_lock(cli1, fnum1, 0, 4, 0, WRITE_LOCK) &&
1834 cli_lock(cli1, fnum1, 1, 1, 0, READ_LOCK);
1835 EXPECTED(ret, True);
1836 printf("the same process %s overlay a write with a read lock\n", ret?"can":"cannot");
1838 ret = cli_lock(cli2, fnum2, 0, 4, 0, READ_LOCK);
1839 EXPECTED(ret, False);
1841 printf("a different processs %s get a read lock on the first process lock stack\n", ret?"can":"cannot");
1843 /* Unlock the process 2 lock. */
1844 cli_unlock(cli2, fnum2, 0, 4);
1846 ret = cli_lock(cli1, fnum3, 0, 4, 0, READ_LOCK);
1847 EXPECTED(ret, False);
1849 printf("the same processs on a different fnum %s get a read lock\n", ret?"can":"cannot");
1851 /* Unlock the process 1 fnum3 lock. */
1852 cli_unlock(cli1, fnum3, 0, 4);
1854 /* Stack 2 more locks here. */
1855 ret = cli_lock(cli1, fnum1, 0, 4, 0, READ_LOCK) &&
1856 cli_lock(cli1, fnum1, 0, 4, 0, READ_LOCK);
1858 EXPECTED(ret, True);
1859 printf("the same process %s stack read locks\n", ret?"can":"cannot");
1861 /* Unlock the first process lock, then check this was the WRITE lock that was
1864 ret = cli_unlock(cli1, fnum1, 0, 4) &&
1865 cli_lock(cli2, fnum2, 0, 4, 0, READ_LOCK);
1867 EXPECTED(ret, True);
1868 printf("the first unlock removes the %s lock\n", ret?"WRITE":"READ");
1870 /* Unlock the process 2 lock. */
1871 cli_unlock(cli2, fnum2, 0, 4);
1873 /* We should have 3 stacked locks here. Ensure we need to do 3 unlocks. */
1875 ret = cli_unlock(cli1, fnum1, 1, 1) &&
1876 cli_unlock(cli1, fnum1, 0, 4) &&
1877 cli_unlock(cli1, fnum1, 0, 4);
1879 EXPECTED(ret, True);
1880 printf("the same process %s unlock the stack of 4 locks\n", ret?"can":"cannot");
1882 /* Ensure the next unlock fails. */
1883 ret = cli_unlock(cli1, fnum1, 0, 4);
1884 EXPECTED(ret, False);
1885 printf("the same process %s count the lock stack\n", !ret?"can":"cannot");
1887 /* Ensure connection 2 can get a write lock. */
1888 ret = cli_lock(cli2, fnum2, 0, 4, 0, WRITE_LOCK);
1889 EXPECTED(ret, True);
1891 printf("a different processs %s get a write lock on the unlocked stack\n", ret?"can":"cannot");
1895 cli_close(cli1, fnum1);
1896 cli_close(cli2, fnum2);
1897 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
1898 if (!torture_close_connection(cli1)) {
1901 if (!torture_close_connection(cli2)) {
1905 printf("finished locktest5\n");
1911 tries the unusual lockingX locktype bits
1913 static bool run_locktest6(int dummy)
1915 static struct cli_state *cli;
1916 const char *fname[1] = { "\\lock6.txt" };
1921 if (!torture_open_connection(&cli, 0)) {
1925 cli_sockopt(cli, sockops);
1927 printf("starting locktest6\n");
1930 printf("Testing %s\n", fname[i]);
1932 cli_unlink(cli, fname[i], aSYSTEM | aHIDDEN);
1934 cli_open(cli, fname[i], O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum);
1935 status = cli_locktype(cli, fnum, 0, 8, 0, LOCKING_ANDX_CHANGE_LOCKTYPE);
1936 cli_close(cli, fnum);
1937 printf("CHANGE_LOCKTYPE gave %s\n", nt_errstr(status));
1939 cli_open(cli, fname[i], O_RDWR, DENY_NONE, &fnum);
1940 status = cli_locktype(cli, fnum, 0, 8, 0, LOCKING_ANDX_CANCEL_LOCK);
1941 cli_close(cli, fnum);
1942 printf("CANCEL_LOCK gave %s\n", nt_errstr(status));
1944 cli_unlink(cli, fname[i], aSYSTEM | aHIDDEN);
1947 torture_close_connection(cli);
1949 printf("finished locktest6\n");
1953 static bool run_locktest7(int dummy)
1955 struct cli_state *cli1;
1956 const char *fname = "\\lockt7.lck";
1959 bool correct = False;
1961 if (!torture_open_connection(&cli1, 0)) {
1965 cli_sockopt(cli1, sockops);
1967 printf("starting locktest7\n");
1969 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
1971 cli_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1);
1973 memset(buf, 0, sizeof(buf));
1975 if (cli_write(cli1, fnum1, 0, buf, 0, sizeof(buf)) != sizeof(buf)) {
1976 printf("Failed to create file\n");
1980 cli_setpid(cli1, 1);
1982 if (!cli_lock(cli1, fnum1, 130, 4, 0, READ_LOCK)) {
1983 printf("Unable to apply read lock on range 130:4, error was %s\n", cli_errstr(cli1));
1986 printf("pid1 successfully locked range 130:4 for READ\n");
1989 if (cli_read(cli1, fnum1, buf, 130, 4) != 4) {
1990 printf("pid1 unable to read the range 130:4, error was %s\n", cli_errstr(cli1));
1993 printf("pid1 successfully read the range 130:4\n");
1996 if (cli_write(cli1, fnum1, 0, buf, 130, 4) != 4) {
1997 printf("pid1 unable to write to the range 130:4, error was %s\n", cli_errstr(cli1));
1998 if (NT_STATUS_V(cli_nt_error(cli1)) != NT_STATUS_V(NT_STATUS_FILE_LOCK_CONFLICT)) {
1999 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2003 printf("pid1 successfully wrote to the range 130:4 (should be denied)\n");
2007 cli_setpid(cli1, 2);
2009 if (cli_read(cli1, fnum1, buf, 130, 4) != 4) {
2010 printf("pid2 unable to read the range 130:4, error was %s\n", cli_errstr(cli1));
2012 printf("pid2 successfully read the range 130:4\n");
2015 if (cli_write(cli1, fnum1, 0, buf, 130, 4) != 4) {
2016 printf("pid2 unable to write to the range 130:4, error was %s\n", cli_errstr(cli1));
2017 if (NT_STATUS_V(cli_nt_error(cli1)) != NT_STATUS_V(NT_STATUS_FILE_LOCK_CONFLICT)) {
2018 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2022 printf("pid2 successfully wrote to the range 130:4 (should be denied)\n");
2026 cli_setpid(cli1, 1);
2027 cli_unlock(cli1, fnum1, 130, 4);
2029 if (!cli_lock(cli1, fnum1, 130, 4, 0, WRITE_LOCK)) {
2030 printf("Unable to apply write lock on range 130:4, error was %s\n", cli_errstr(cli1));
2033 printf("pid1 successfully locked range 130:4 for WRITE\n");
2036 if (cli_read(cli1, fnum1, buf, 130, 4) != 4) {
2037 printf("pid1 unable to read the range 130:4, error was %s\n", cli_errstr(cli1));
2040 printf("pid1 successfully read the range 130:4\n");
2043 if (cli_write(cli1, fnum1, 0, buf, 130, 4) != 4) {
2044 printf("pid1 unable to write to the range 130:4, error was %s\n", cli_errstr(cli1));
2047 printf("pid1 successfully wrote to the range 130:4\n");
2050 cli_setpid(cli1, 2);
2052 if (cli_read(cli1, fnum1, buf, 130, 4) != 4) {
2053 printf("pid2 unable to read the range 130:4, error was %s\n", cli_errstr(cli1));
2054 if (NT_STATUS_V(cli_nt_error(cli1)) != NT_STATUS_V(NT_STATUS_FILE_LOCK_CONFLICT)) {
2055 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2059 printf("pid2 successfully read the range 130:4 (should be denied)\n");
2063 if (cli_write(cli1, fnum1, 0, buf, 130, 4) != 4) {
2064 printf("pid2 unable to write to the range 130:4, error was %s\n", cli_errstr(cli1));
2065 if (NT_STATUS_V(cli_nt_error(cli1)) != NT_STATUS_V(NT_STATUS_FILE_LOCK_CONFLICT)) {
2066 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2070 printf("pid2 successfully wrote to the range 130:4 (should be denied)\n");
2074 cli_unlock(cli1, fnum1, 130, 0);
2078 cli_close(cli1, fnum1);
2079 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
2080 torture_close_connection(cli1);
2082 printf("finished locktest7\n");
2087 * This demonstrates a problem with our use of GPFS share modes: A file
2088 * descriptor sitting in the pending close queue holding a GPFS share mode
2089 * blocks opening a file another time. Happens with Word 2007 temp files.
2090 * With "posix locking = yes" and "gpfs:sharemodes = yes" enabled, the third
2091 * open is denied with NT_STATUS_SHARING_VIOLATION.
2094 static bool run_locktest8(int dummy)
2096 struct cli_state *cli1;
2097 const char *fname = "\\lockt8.lck";
2098 uint16_t fnum1, fnum2;
2100 bool correct = False;
2103 if (!torture_open_connection(&cli1, 0)) {
2107 cli_sockopt(cli1, sockops);
2109 printf("starting locktest8\n");
2111 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
2113 status = cli_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_WRITE,
2115 if (!NT_STATUS_IS_OK(status)) {
2116 d_fprintf(stderr, "cli_open returned %s\n", cli_errstr(cli1));
2120 memset(buf, 0, sizeof(buf));
2122 status = cli_open(cli1, fname, O_RDONLY, DENY_NONE, &fnum2);
2123 if (!NT_STATUS_IS_OK(status)) {
2124 d_fprintf(stderr, "cli_open second time returned %s\n",
2129 if (!cli_lock(cli1, fnum2, 1, 1, 0, READ_LOCK)) {
2130 printf("Unable to apply read lock on range 1:1, error was "
2131 "%s\n", cli_errstr(cli1));
2135 status = cli_close(cli1, fnum1);
2136 if (!NT_STATUS_IS_OK(status)) {
2137 d_fprintf(stderr, "cli_close(fnum1) %s\n", cli_errstr(cli1));
2141 status = cli_open(cli1, fname, O_RDWR, DENY_NONE, &fnum1);
2142 if (!NT_STATUS_IS_OK(status)) {
2143 d_fprintf(stderr, "cli_open third time returned %s\n",
2151 cli_close(cli1, fnum1);
2152 cli_close(cli1, fnum2);
2153 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
2154 torture_close_connection(cli1);
2156 printf("finished locktest8\n");
2161 test whether fnums and tids open on one VC are available on another (a major
2164 static bool run_fdpasstest(int dummy)
2166 struct cli_state *cli1, *cli2;
2167 const char *fname = "\\fdpass.tst";
2171 if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {
2174 cli_sockopt(cli1, sockops);
2175 cli_sockopt(cli2, sockops);
2177 printf("starting fdpasstest\n");
2179 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
2181 if (!NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1))) {
2182 printf("open of %s failed (%s)\n", fname, cli_errstr(cli1));
2186 if (cli_write(cli1, fnum1, 0, "hello world\n", 0, 13) != 13) {
2187 printf("write failed (%s)\n", cli_errstr(cli1));
2191 cli2->vuid = cli1->vuid;
2192 cli2->cnum = cli1->cnum;
2193 cli2->pid = cli1->pid;
2195 if (cli_read(cli2, fnum1, buf, 0, 13) == 13) {
2196 printf("read succeeded! nasty security hole [%s]\n",
2201 cli_close(cli1, fnum1);
2202 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
2204 torture_close_connection(cli1);
2205 torture_close_connection(cli2);
2207 printf("finished fdpasstest\n");
2211 static bool run_fdsesstest(int dummy)
2213 struct cli_state *cli;
2218 const char *fname = "\\fdsess.tst";
2219 const char *fname1 = "\\fdsess1.tst";
2225 if (!torture_open_connection(&cli, 0))
2227 cli_sockopt(cli, sockops);
2229 if (!torture_cli_session_setup2(cli, &new_vuid))
2232 saved_cnum = cli->cnum;
2233 if (!NT_STATUS_IS_OK(cli_tcon_andx(cli, share, "?????", "", 1)))
2235 new_cnum = cli->cnum;
2236 cli->cnum = saved_cnum;
2238 printf("starting fdsesstest\n");
2240 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
2241 cli_unlink(cli, fname1, aSYSTEM | aHIDDEN);
2243 if (!NT_STATUS_IS_OK(cli_open(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1))) {
2244 printf("open of %s failed (%s)\n", fname, cli_errstr(cli));
2248 if (cli_write(cli, fnum1, 0, "hello world\n", 0, 13) != 13) {
2249 printf("write failed (%s)\n", cli_errstr(cli));
2253 saved_vuid = cli->vuid;
2254 cli->vuid = new_vuid;
2256 if (cli_read(cli, fnum1, buf, 0, 13) == 13) {
2257 printf("read succeeded with different vuid! nasty security hole [%s]\n",
2261 /* Try to open a file with different vuid, samba cnum. */
2262 if (NT_STATUS_IS_OK(cli_open(cli, fname1, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum2))) {
2263 printf("create with different vuid, same cnum succeeded.\n");
2264 cli_close(cli, fnum2);
2265 cli_unlink(cli, fname1, aSYSTEM | aHIDDEN);
2267 printf("create with different vuid, same cnum failed.\n");
2268 printf("This will cause problems with service clients.\n");
2272 cli->vuid = saved_vuid;
2274 /* Try with same vuid, different cnum. */
2275 cli->cnum = new_cnum;
2277 if (cli_read(cli, fnum1, buf, 0, 13) == 13) {
2278 printf("read succeeded with different cnum![%s]\n",
2283 cli->cnum = saved_cnum;
2284 cli_close(cli, fnum1);
2285 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
2287 torture_close_connection(cli);
2289 printf("finished fdsesstest\n");
2294 This test checks that
2296 1) the server does not allow an unlink on a file that is open
2298 static bool run_unlinktest(int dummy)
2300 struct cli_state *cli;
2301 const char *fname = "\\unlink.tst";
2303 bool correct = True;
2305 if (!torture_open_connection(&cli, 0)) {
2309 cli_sockopt(cli, sockops);
2311 printf("starting unlink test\n");
2313 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
2317 if (!NT_STATUS_IS_OK(cli_open(cli, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum))) {
2318 printf("open of %s failed (%s)\n", fname, cli_errstr(cli));
2322 if (NT_STATUS_IS_OK(cli_unlink(cli, fname, aSYSTEM | aHIDDEN))) {
2323 printf("error: server allowed unlink on an open file\n");
2326 correct = check_error(__LINE__, cli, ERRDOS, ERRbadshare,
2327 NT_STATUS_SHARING_VIOLATION);
2330 cli_close(cli, fnum);
2331 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
2333 if (!torture_close_connection(cli)) {
2337 printf("unlink test finished\n");
2344 test how many open files this server supports on the one socket
2346 static bool run_maxfidtest(int dummy)
2348 struct cli_state *cli;
2349 const char *ftemplate = "\\maxfid.%d.%d";
2351 uint16_t fnums[0x11000];
2354 bool correct = True;
2359 printf("failed to connect\n");
2363 cli_sockopt(cli, sockops);
2365 for (i=0; i<0x11000; i++) {
2366 slprintf(fname,sizeof(fname)-1,ftemplate, i,(int)getpid());
2367 if (!NT_STATUS_IS_OK(cli_open(cli, fname,
2368 O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnums[i]))) {
2369 printf("open of %s failed (%s)\n",
2370 fname, cli_errstr(cli));
2371 printf("maximum fnum is %d\n", i);
2379 printf("cleaning up\n");
2381 slprintf(fname,sizeof(fname)-1,ftemplate, i,(int)getpid());
2382 cli_close(cli, fnums[i]);
2383 if (!NT_STATUS_IS_OK(cli_unlink(cli, fname, aSYSTEM | aHIDDEN))) {
2384 printf("unlink of %s failed (%s)\n",
2385 fname, cli_errstr(cli));
2392 printf("maxfid test finished\n");
2393 if (!torture_close_connection(cli)) {
2399 /* generate a random buffer */
2400 static void rand_buf(char *buf, int len)
2403 *buf = (char)sys_random();
2408 /* send smb negprot commands, not reading the response */
2409 static bool run_negprot_nowait(int dummy)
2412 static struct cli_state *cli;
2413 bool correct = True;
2415 printf("starting negprot nowait test\n");
2417 if (!(cli = open_nbt_connection())) {
2421 for (i=0;i<50000;i++) {
2422 cli_negprot_sendsync(cli);
2425 if (!torture_close_connection(cli)) {
2429 printf("finished negprot nowait test\n");
2435 /* send random IPC commands */
2436 static bool run_randomipc(int dummy)
2438 char *rparam = NULL;
2440 unsigned int rdrcnt,rprcnt;
2442 int api, param_len, i;
2443 struct cli_state *cli;
2444 bool correct = True;
2447 printf("starting random ipc test\n");
2449 if (!torture_open_connection(&cli, 0)) {
2453 for (i=0;i<count;i++) {
2454 api = sys_random() % 500;
2455 param_len = (sys_random() % 64);
2457 rand_buf(param, param_len);
2462 param, param_len, 8,
2463 NULL, 0, BUFFER_SIZE,
2467 printf("%d/%d\r", i,count);
2470 printf("%d/%d\n", i, count);
2472 if (!torture_close_connection(cli)) {
2476 printf("finished random ipc test\n");
2483 static void browse_callback(const char *sname, uint32 stype,
2484 const char *comment, void *state)
2486 printf("\t%20.20s %08x %s\n", sname, stype, comment);
2492 This test checks the browse list code
2495 static bool run_browsetest(int dummy)
2497 static struct cli_state *cli;
2498 bool correct = True;
2500 printf("starting browse test\n");
2502 if (!torture_open_connection(&cli, 0)) {
2506 printf("domain list:\n");
2507 cli_NetServerEnum(cli, cli->server_domain,
2508 SV_TYPE_DOMAIN_ENUM,
2509 browse_callback, NULL);
2511 printf("machine list:\n");
2512 cli_NetServerEnum(cli, cli->server_domain,
2514 browse_callback, NULL);
2516 if (!torture_close_connection(cli)) {
2520 printf("browse test finished\n");
2528 This checks how the getatr calls works
2530 static bool run_attrtest(int dummy)
2532 struct cli_state *cli;
2535 const char *fname = "\\attrib123456789.tst";
2536 bool correct = True;
2538 printf("starting attrib test\n");
2540 if (!torture_open_connection(&cli, 0)) {
2544 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
2545 cli_open(cli, fname,
2546 O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
2547 cli_close(cli, fnum);
2548 if (!NT_STATUS_IS_OK(cli_getatr(cli, fname, NULL, NULL, &t))) {
2549 printf("getatr failed (%s)\n", cli_errstr(cli));
2553 if (abs(t - time(NULL)) > 60*60*24*10) {
2554 printf("ERROR: SMBgetatr bug. time is %s",
2560 t2 = t-60*60*24; /* 1 day ago */
2562 if (!NT_STATUS_IS_OK(cli_setatr(cli, fname, 0, t2))) {
2563 printf("setatr failed (%s)\n", cli_errstr(cli));
2567 if (!NT_STATUS_IS_OK(cli_getatr(cli, fname, NULL, NULL, &t))) {
2568 printf("getatr failed (%s)\n", cli_errstr(cli));
2573 printf("ERROR: getatr/setatr bug. times are\n%s",
2575 printf("%s", ctime(&t2));
2579 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
2581 if (!torture_close_connection(cli)) {
2585 printf("attrib test finished\n");
2592 This checks a couple of trans2 calls
2594 static bool run_trans2test(int dummy)
2596 struct cli_state *cli;
2599 time_t c_time, a_time, m_time;
2600 struct timespec c_time_ts, a_time_ts, m_time_ts, w_time_ts, m_time2_ts;
2601 const char *fname = "\\trans2.tst";
2602 const char *dname = "\\trans2";
2603 const char *fname2 = "\\trans2\\trans2.tst";
2605 bool correct = True;
2607 printf("starting trans2 test\n");
2609 if (!torture_open_connection(&cli, 0)) {
2613 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
2614 cli_open(cli, fname,
2615 O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
2616 if (!cli_qfileinfo(cli, fnum, NULL, &size, &c_time_ts, &a_time_ts, &w_time_ts,
2617 &m_time_ts, NULL)) {
2618 printf("ERROR: qfileinfo failed (%s)\n", cli_errstr(cli));
2622 if (!cli_qfilename(cli, fnum, pname, sizeof(pname))) {
2623 printf("ERROR: qfilename failed (%s)\n", cli_errstr(cli));
2627 if (strcmp(pname, fname)) {
2628 printf("qfilename gave different name? [%s] [%s]\n",
2633 cli_close(cli, fnum);
2637 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
2638 if (!NT_STATUS_IS_OK(cli_open(cli, fname,
2639 O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum))) {
2640 printf("open of %s failed (%s)\n", fname, cli_errstr(cli));
2643 cli_close(cli, fnum);
2645 if (!cli_qpathinfo(cli, fname, &c_time, &a_time, &m_time, &size, NULL)) {
2646 printf("ERROR: qpathinfo failed (%s)\n", cli_errstr(cli));
2649 if (c_time != m_time) {
2650 printf("create time=%s", ctime(&c_time));
2651 printf("modify time=%s", ctime(&m_time));
2652 printf("This system appears to have sticky create times\n");
2654 if (a_time % (60*60) == 0) {
2655 printf("access time=%s", ctime(&a_time));
2656 printf("This system appears to set a midnight access time\n");
2660 if (abs(m_time - time(NULL)) > 60*60*24*7) {
2661 printf("ERROR: totally incorrect times - maybe word reversed? mtime=%s", ctime(&m_time));
2667 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
2668 cli_open(cli, fname,
2669 O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
2670 cli_close(cli, fnum);
2671 if (!cli_qpathinfo2(cli, fname, &c_time_ts, &a_time_ts, &w_time_ts,
2672 &m_time_ts, &size, NULL, NULL)) {
2673 printf("ERROR: qpathinfo2 failed (%s)\n", cli_errstr(cli));
2676 if (w_time_ts.tv_sec < 60*60*24*2) {
2677 printf("write time=%s", ctime(&w_time_ts.tv_sec));
2678 printf("This system appears to set a initial 0 write time\n");
2683 cli_unlink(cli, fname, aSYSTEM | aHIDDEN);
2686 /* check if the server updates the directory modification time
2687 when creating a new file */
2688 if (!NT_STATUS_IS_OK(cli_mkdir(cli, dname))) {
2689 printf("ERROR: mkdir failed (%s)\n", cli_errstr(cli));
2693 if (!cli_qpathinfo2(cli, "\\trans2\\", &c_time_ts, &a_time_ts, &w_time_ts,
2694 &m_time_ts, &size, NULL, NULL)) {
2695 printf("ERROR: qpathinfo2 failed (%s)\n", cli_errstr(cli));
2699 cli_open(cli, fname2,
2700 O_RDWR | O_CREAT | O_TRUNC, DENY_NONE, &fnum);
2701 cli_write(cli, fnum, 0, (char *)&fnum, 0, sizeof(fnum));
2702 cli_close(cli, fnum);
2703 if (!cli_qpathinfo2(cli, "\\trans2\\", &c_time_ts, &a_time_ts, &w_time_ts,
2704 &m_time2_ts, &size, NULL, NULL)) {
2705 printf("ERROR: qpathinfo2 failed (%s)\n", cli_errstr(cli));
2708 if (memcmp(&m_time_ts, &m_time2_ts, sizeof(struct timespec))
2710 printf("This system does not update directory modification times\n");
2714 cli_unlink(cli, fname2, aSYSTEM | aHIDDEN);
2715 cli_rmdir(cli, dname);
2717 if (!torture_close_connection(cli)) {
2721 printf("trans2 test finished\n");
2727 This checks new W2K calls.
2730 static bool new_trans(struct cli_state *pcli, int fnum, int level)
2734 bool correct = True;
2736 if (!cli_qfileinfo_test(pcli, fnum, level, &buf, &len)) {
2737 printf("ERROR: qfileinfo (%d) failed (%s)\n", level, cli_errstr(pcli));
2740 printf("qfileinfo: level %d, len = %u\n", level, len);
2741 dump_data(0, (uint8 *)buf, len);
2748 static bool run_w2ktest(int dummy)
2750 struct cli_state *cli;
2752 const char *fname = "\\w2ktest\\w2k.tst";
2754 bool correct = True;
2756 printf("starting w2k test\n");
2758 if (!torture_open_connection(&cli, 0)) {
2762 cli_open(cli, fname,
2763 O_RDWR | O_CREAT , DENY_NONE, &fnum);
2765 for (level = 1004; level < 1040; level++) {
2766 new_trans(cli, fnum, level);
2769 cli_close(cli, fnum);
2771 if (!torture_close_connection(cli)) {
2775 printf("w2k test finished\n");
2782 this is a harness for some oplock tests
2784 static bool run_oplock1(int dummy)
2786 struct cli_state *cli1;
2787 const char *fname = "\\lockt1.lck";
2789 bool correct = True;
2791 printf("starting oplock test 1\n");
2793 if (!torture_open_connection(&cli1, 0)) {
2797 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
2799 cli_sockopt(cli1, sockops);
2801 cli1->use_oplocks = True;
2803 if (!NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1))) {
2804 printf("open of %s failed (%s)\n", fname, cli_errstr(cli1));
2808 cli1->use_oplocks = False;
2810 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
2811 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
2813 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
2814 printf("close2 failed (%s)\n", cli_errstr(cli1));
2818 if (!NT_STATUS_IS_OK(cli_unlink(cli1, fname, aSYSTEM | aHIDDEN))) {
2819 printf("unlink failed (%s)\n", cli_errstr(cli1));
2823 if (!torture_close_connection(cli1)) {
2827 printf("finished oplock test 1\n");
2832 static bool run_oplock2(int dummy)
2834 struct cli_state *cli1, *cli2;
2835 const char *fname = "\\lockt2.lck";
2836 uint16_t fnum1, fnum2;
2837 int saved_use_oplocks = use_oplocks;
2839 bool correct = True;
2840 volatile bool *shared_correct;
2842 shared_correct = (volatile bool *)shm_setup(sizeof(bool));
2843 *shared_correct = True;
2845 use_level_II_oplocks = True;
2848 printf("starting oplock test 2\n");
2850 if (!torture_open_connection(&cli1, 0)) {
2851 use_level_II_oplocks = False;
2852 use_oplocks = saved_use_oplocks;
2856 cli1->use_oplocks = True;
2857 cli1->use_level_II_oplocks = True;
2859 if (!torture_open_connection(&cli2, 1)) {
2860 use_level_II_oplocks = False;
2861 use_oplocks = saved_use_oplocks;
2865 cli2->use_oplocks = True;
2866 cli2->use_level_II_oplocks = True;
2868 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
2870 cli_sockopt(cli1, sockops);
2871 cli_sockopt(cli2, sockops);
2873 if (!NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE, &fnum1))) {
2874 printf("open of %s failed (%s)\n", fname, cli_errstr(cli1));
2878 /* Don't need the globals any more. */
2879 use_level_II_oplocks = False;
2880 use_oplocks = saved_use_oplocks;
2884 if (!NT_STATUS_IS_OK(cli_open(cli2, fname, O_RDWR, DENY_NONE, &fnum2))) {
2885 printf("second open of %s failed (%s)\n", fname, cli_errstr(cli1));
2886 *shared_correct = False;
2892 if (!NT_STATUS_IS_OK(cli_close(cli2, fnum2))) {
2893 printf("close2 failed (%s)\n", cli_errstr(cli1));
2894 *shared_correct = False;
2902 /* Ensure cli1 processes the break. Empty file should always return 0
2905 if (cli_read(cli1, fnum1, buf, 0, 4) != 0) {
2906 printf("read on fnum1 failed (%s)\n", cli_errstr(cli1));
2910 /* Should now be at level II. */
2911 /* Test if sending a write locks causes a break to none. */
2913 if (!cli_lock(cli1, fnum1, 0, 4, 0, READ_LOCK)) {
2914 printf("lock failed (%s)\n", cli_errstr(cli1));
2918 cli_unlock(cli1, fnum1, 0, 4);
2922 if (!cli_lock(cli1, fnum1, 0, 4, 0, WRITE_LOCK)) {
2923 printf("lock failed (%s)\n", cli_errstr(cli1));
2927 cli_unlock(cli1, fnum1, 0, 4);
2931 cli_read(cli1, fnum1, buf, 0, 4);
2934 if (cli_write(cli1, fnum1, 0, buf, 0, 4) != 4) {
2935 printf("write on fnum1 failed (%s)\n", cli_errstr(cli1));
2940 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
2941 printf("close1 failed (%s)\n", cli_errstr(cli1));
2947 if (!NT_STATUS_IS_OK(cli_unlink(cli1, fname, aSYSTEM | aHIDDEN))) {
2948 printf("unlink failed (%s)\n", cli_errstr(cli1));
2952 if (!torture_close_connection(cli1)) {
2956 if (!*shared_correct) {
2960 printf("finished oplock test 2\n");
2965 /* handler for oplock 3 tests */
2966 static NTSTATUS oplock3_handler(struct cli_state *cli, uint16_t fnum, unsigned char level)
2968 printf("got oplock break fnum=%d level=%d\n",
2970 return cli_oplock_ack(cli, fnum, level);
2973 static bool run_oplock3(int dummy)
2975 struct cli_state *cli;
2976 const char *fname = "\\oplockt3.dat";
2978 char buf[4] = "abcd";
2979 bool correct = True;
2980 volatile bool *shared_correct;
2982 shared_correct = (volatile bool *)shm_setup(sizeof(bool));
2983 *shared_correct = True;
2985 printf("starting oplock test 3\n");
2990 use_level_II_oplocks = True;
2991 if (!torture_open_connection(&cli, 0)) {
2992 *shared_correct = False;
2996 /* try to trigger a oplock break in parent */
2997 cli_open(cli, fname, O_RDWR, DENY_NONE, &fnum);
2998 cli_write(cli, fnum, 0, buf, 0, 4);
3004 use_level_II_oplocks = True;
3005 if (!torture_open_connection(&cli, 1)) { /* other is forked */
3008 cli_oplock_handler(cli, oplock3_handler);
3009 cli_open(cli, fname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
3010 cli_write(cli, fnum, 0, buf, 0, 4);
3011 cli_close(cli, fnum);
3012 cli_open(cli, fname, O_RDWR, DENY_NONE, &fnum);
3013 cli->timeout = 20000;
3014 cli_receive_smb(cli);
3015 printf("finished oplock test 3\n");
3017 return (correct && *shared_correct);
3019 /* What are we looking for here? What's sucess and what's FAILURE? */
3025 Test delete on close semantics.
3027 static bool run_deletetest(int dummy)
3029 struct cli_state *cli1 = NULL;
3030 struct cli_state *cli2 = NULL;
3031 const char *fname = "\\delete.file";
3032 uint16_t fnum1 = (uint16_t)-1;
3033 uint16_t fnum2 = (uint16_t)-1;
3034 bool correct = True;
3036 printf("starting delete test\n");
3038 if (!torture_open_connection(&cli1, 0)) {
3042 cli_sockopt(cli1, sockops);
3044 /* Test 1 - this should delete the file on close. */
3046 cli_setatr(cli1, fname, 0, 0);
3047 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
3049 if (!NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, GENERIC_ALL_ACCESS|DELETE_ACCESS, FILE_ATTRIBUTE_NORMAL,
3050 0, FILE_OVERWRITE_IF,
3051 FILE_DELETE_ON_CLOSE, 0, &fnum1))) {
3052 printf("[1] open of %s failed (%s)\n", fname, cli_errstr(cli1));
3059 uint32 *accinfo = NULL;
3061 cli_qfileinfo_test(cli1, fnum1, SMB_FILE_ACCESS_INFORMATION, (char **)&accinfo, &len);
3063 printf("access mode = 0x%lx\n", *accinfo);
3068 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
3069 printf("[1] close failed (%s)\n", cli_errstr(cli1));
3074 if (NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDWR, DENY_NONE, &fnum1))) {
3075 printf("[1] open of %s succeeded (should fail)\n", fname);
3080 printf("first delete on close test succeeded.\n");
3082 /* Test 2 - this should delete the file on close. */
3084 cli_setatr(cli1, fname, 0, 0);
3085 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
3087 if (!NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, GENERIC_ALL_ACCESS,
3088 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_NONE,
3089 FILE_OVERWRITE_IF, 0, 0, &fnum1))) {
3090 printf("[2] open of %s failed (%s)\n", fname, cli_errstr(cli1));
3095 if (!cli_nt_delete_on_close(cli1, fnum1, True)) {
3096 printf("[2] setting delete_on_close failed (%s)\n", cli_errstr(cli1));
3101 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
3102 printf("[2] close failed (%s)\n", cli_errstr(cli1));
3107 if (NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDONLY, DENY_NONE, &fnum1))) {
3108 printf("[2] open of %s succeeded should have been deleted on close !\n", fname);
3109 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
3110 printf("[2] close failed (%s)\n", cli_errstr(cli1));
3114 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
3116 printf("second delete on close test succeeded.\n");
3119 cli_setatr(cli1, fname, 0, 0);
3120 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
3122 if (!NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, GENERIC_ALL_ACCESS, FILE_ATTRIBUTE_NORMAL,
3123 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OVERWRITE_IF, 0, 0, &fnum1))) {
3124 printf("[3] open - 1 of %s failed (%s)\n", fname, cli_errstr(cli1));
3129 /* This should fail with a sharing violation - open for delete is only compatible
3130 with SHARE_DELETE. */
3132 if (NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS, FILE_ATTRIBUTE_NORMAL,
3133 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0, 0, &fnum2))) {
3134 printf("[3] open - 2 of %s succeeded - should have failed.\n", fname);
3139 /* This should succeed. */
3141 if (!NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS, FILE_ATTRIBUTE_NORMAL,
3142 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE, FILE_OPEN, 0, 0, &fnum2))) {
3143 printf("[3] open - 2 of %s failed (%s)\n", fname, cli_errstr(cli1));
3148 if (!cli_nt_delete_on_close(cli1, fnum1, True)) {
3149 printf("[3] setting delete_on_close failed (%s)\n", cli_errstr(cli1));
3154 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
3155 printf("[3] close 1 failed (%s)\n", cli_errstr(cli1));
3160 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum2))) {
3161 printf("[3] close 2 failed (%s)\n", cli_errstr(cli1));
3166 /* This should fail - file should no longer be there. */
3168 if (NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDONLY, DENY_NONE, &fnum1))) {
3169 printf("[3] open of %s succeeded should have been deleted on close !\n", fname);
3170 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
3171 printf("[3] close failed (%s)\n", cli_errstr(cli1));
3173 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
3177 printf("third delete on close test succeeded.\n");
3180 cli_setatr(cli1, fname, 0, 0);
3181 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
3183 if (!NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
3184 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OVERWRITE_IF, 0, 0, &fnum1))) {
3185 printf("[4] open of %s failed (%s)\n", fname, cli_errstr(cli1));
3190 /* This should succeed. */
3191 if (!NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
3192 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE, FILE_OPEN, 0, 0, &fnum2))) {
3193 printf("[4] open - 2 of %s failed (%s)\n", fname, cli_errstr(cli1));
3198 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum2))) {
3199 printf("[4] close - 1 failed (%s)\n", cli_errstr(cli1));
3204 if (!cli_nt_delete_on_close(cli1, fnum1, True)) {
3205 printf("[4] setting delete_on_close failed (%s)\n", cli_errstr(cli1));
3210 /* This should fail - no more opens once delete on close set. */
3211 if (NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS,
3212 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
3213 FILE_OPEN, 0, 0, &fnum2))) {
3214 printf("[4] open - 3 of %s succeeded ! Should have failed.\n", fname );
3218 printf("fourth delete on close test succeeded.\n");
3220 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
3221 printf("[4] close - 2 failed (%s)\n", cli_errstr(cli1));
3227 cli_setatr(cli1, fname, 0, 0);
3228 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
3230 if (!NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDWR|O_CREAT, DENY_NONE, &fnum1))) {
3231 printf("[5] open of %s failed (%s)\n", fname, cli_errstr(cli1));
3236 /* This should fail - only allowed on NT opens with DELETE access. */
3238 if (cli_nt_delete_on_close(cli1, fnum1, True)) {
3239 printf("[5] setting delete_on_close on OpenX file succeeded - should fail !\n");
3244 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
3245 printf("[5] close - 2 failed (%s)\n", cli_errstr(cli1));
3250 printf("fifth delete on close test succeeded.\n");
3253 cli_setatr(cli1, fname, 0, 0);
3254 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
3256 if (!NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, FILE_READ_DATA|FILE_WRITE_DATA,
3257 FILE_ATTRIBUTE_NORMAL, FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
3258 FILE_OVERWRITE_IF, 0, 0, &fnum1))) {
3259 printf("[6] open of %s failed (%s)\n", fname, cli_errstr(cli1));
3264 /* This should fail - only allowed on NT opens with DELETE access. */
3266 if (cli_nt_delete_on_close(cli1, fnum1, True)) {
3267 printf("[6] setting delete_on_close on file with no delete access succeeded - should fail !\n");
3272 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
3273 printf("[6] close - 2 failed (%s)\n", cli_errstr(cli1));
3278 printf("sixth delete on close test succeeded.\n");
3281 cli_setatr(cli1, fname, 0, 0);
3282 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);
3284 if (!NT_STATUS_IS_OK(cli_ntcreate(cli1, fname, 0, FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS,
3285 FILE_ATTRIBUTE_NORMAL, 0, FILE_OVERWRITE_IF, 0, 0, &fnum1))) {
3286 printf("[7] open of %s failed (%s)\n", fname, cli_errstr(cli1));
3291 if (!cli_nt_delete_on_close(cli1, fnum1, True)) {
3292 printf("[7] setting delete_on_close on file failed !\n");
3297 if (!cli_nt_delete_on_close(cli1, fnum1, False)) {
3298 printf("[7] unsetting delete_on_close on file failed !\n");
3303 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
3304 printf("[7] close - 2 failed (%s)\n", cli_errstr(cli1));
3309 /* This next open should succeed - we reset the flag. */
3311 if (!NT_STATUS_IS_OK(cli_open(cli1, fname, O_RDONLY, DENY_NONE, &fnum1))) {
3312 printf("[5] open of %s failed (%s)\n", fname, cli_errstr(cli1));
3317 if (!NT_STATUS_IS_OK(cli_close(cli1, fnum1))) {
3318 printf("[7] close - 2 failed (%s)\n", cli_errstr(cli1));
3323 printf("seventh delete on close test succeeded.\n");
3326 cli_setatr(cli1, fname, 0, 0);
3327 cli_unlink(cli1, fname, aSYSTEM | aHIDDEN);