2 Unix SMB/CIFS implementation.
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/>.
22 #include "system/shmem.h"
23 #include "wbc_async.h"
24 #include "torture/proto.h"
25 #include "libcli/security/security.h"
27 #include "tldap_util.h"
28 #include "../librpc/gen_ndr/svcctl.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"
39 #include "libsmb/nmblib.h"
40 #include "../lib/util/tevent_ntstatus.h"
42 #include "../libcli/smb/read_smb.h"
43 #include "../libcli/smb/smbXcli_base.h"
48 fstring host
, workgroup
, share
, password
, username
, myname
;
49 static int max_protocol
= PROTOCOL_NT1
;
50 static const char *sockops
="TCP_NODELAY";
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
;
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
)
83 uint32 caplow
, caphigh
;
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");
93 status
= cli_unix_extensions_version(c
, &major
, &minor
, &caplow
,
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
));
102 if (!(caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
)) {
103 d_printf("Encryption required and "
104 "share %s doesn't support "
105 "encryption.\n", sharename
);
109 if (c
->use_kerberos
) {
110 status
= cli_gss_smb_encryption_start(c
);
112 status
= cli_raw_ntlm_smb_encryption_start(c
,
118 if (!NT_STATUS_IS_OK(status
)) {
119 d_printf("Encryption required and "
120 "setup failed with error %s.\n",
129 static struct cli_state
*open_nbt_connection(void)
135 if (disable_spnego
) {
136 flags
|= CLI_FULL_CONNECTION_DONT_SPNEGO
;
140 flags
|= CLI_FULL_CONNECTION_OPLOCKS
;
143 if (use_level_II_oplocks
) {
144 flags
|= CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS
;
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
) );
162 cli_set_timeout(c
, 120000); /* set a really long timeout (2 minutes) */
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
)
181 uint8_t message_type
;
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
,
195 if (iov
[1].iov_base
== NULL
) {
198 iov
[1].iov_len
= name_len((unsigned char *)iov
[1].iov_base
,
199 talloc_get_size(iov
[1].iov_base
));
203 iov
[2].iov_base
= name_mangle(talloc_tos(), calling
->name
,
205 if (iov
[2].iov_base
== NULL
) {
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.
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);
231 ev
= event_context_init(frame
);
235 req
= read_smb_send(frame
, ev
, fd
);
239 if (!tevent_req_poll(req
, ev
)) {
242 len
= read_smb_recv(req
, talloc_tos(), &inbuf
, &err
);
249 message_type
= CVAL(inbuf
, 0);
250 if (message_type
!= 0x83) {
251 d_fprintf(stderr
, "Expected msg type 0x83, got 0x%2.2x\n",
256 if (smb_len(inbuf
) != 1) {
257 d_fprintf(stderr
, "Expected smb_len 1, got %d\n",
258 (int)smb_len(inbuf
));
262 error
= CVAL(inbuf
, 4);
264 d_fprintf(stderr
, "Expected error 0x82, got %d\n",
275 /* Insert a NULL at the first separator of the given path and return a pointer
276 * to the remainder of the string.
279 terminate_path_at_separator(char * path
)
287 if ((p
= strchr_m(path
, '/'))) {
292 if ((p
= strchr_m(path
, '\\'))) {
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
)
309 *hostname
= *sharename
= NULL
;
311 if (strncmp(unc_name
, "\\\\", 2) &&
312 strncmp(unc_name
, "//", 2)) {
316 *hostname
= talloc_strdup(mem_ctx
, &unc_name
[2]);
317 p
= terminate_path_at_separator(*hostname
);
320 *sharename
= talloc_strdup(mem_ctx
, p
);
321 terminate_path_at_separator(*sharename
);
324 if (*hostname
&& *sharename
) {
328 TALLOC_FREE(*hostname
);
329 TALLOC_FREE(*sharename
);
333 static bool torture_open_connection_share(struct cli_state
**c
,
334 const char *hostname
,
335 const char *sharename
)
341 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
;
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
,
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
));
358 cli_set_timeout(*c
, 120000); /* set a really long timeout (2 minutes) */
361 return force_cli_encryption(*c
,
367 bool torture_open_connection(struct cli_state
**c
, int conn_index
)
369 char **unc_list
= NULL
;
370 int num_unc_names
= 0;
373 if (use_multishare_conn
==True
) {
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
);
381 if (!smbcli_parse_unc(unc_list
[conn_index
% num_unc_names
],
383 printf("Failed to parse UNC name %s\n",
384 unc_list
[conn_index
% num_unc_names
]);
385 TALLOC_FREE(unc_list
);
389 result
= torture_open_connection_share(c
, h
, s
);
391 /* h, s were copied earlier */
392 TALLOC_FREE(unc_list
);
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();
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
);
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
,
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
)) {
436 bool torture_close_connection(struct cli_state
*c
)
441 status
= cli_tdis(c
);
442 if (!NT_STATUS_IS_OK(status
)) {
443 printf("tdis failed (%s)\n", nt_errstr(status
));
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
)) {
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
);
474 if (!NT_STATUS_EQUAL(nterr
, status
)) {
475 printf("unexpected error code %s\n",
477 printf(" expected %s (line=%d)\n",
478 nt_errstr(nterr
), line
);
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
)) {
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
),
512 if (NT_STATUS_V(nterr
) != NT_STATUS_V(status
)) {
513 printf("unexpected error code %s\n",
515 printf(" expected %s (line=%d)\n", nt_errstr(nterr
),
525 static bool wait_lock(struct cli_state
*c
, int fnum
, uint32 offset
, uint32 len
)
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
)) {
537 status
= cli_lock32(c
, fnum
, offset
, len
, -1, WRITE_LOCK
);
544 static bool rw_torture(struct cli_state
*c
)
546 const char *lockfname
= "\\torture.lck";
550 pid_t pid2
, pid
= getpid();
557 memset(buf
, '\0', sizeof(buf
));
559 status
= cli_openx(c
, lockfname
, O_RDWR
| O_CREAT
| O_EXCL
,
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
));
570 for (i
=0;i
<torture_numops
;i
++) {
571 unsigned n
= (unsigned)sys_random()%10;
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))) {
582 status
= cli_openx(c
, fname
, O_RDWR
| O_CREAT
| O_TRUNC
,
584 if (!NT_STATUS_IS_OK(status
)) {
585 printf("open failed (%s)\n", nt_errstr(status
));
590 status
= cli_writeall(c
, fnum
, 0, (uint8_t *)&pid
, 0,
592 if (!NT_STATUS_IS_OK(status
)) {
593 printf("write failed (%s)\n", nt_errstr(status
));
598 status
= cli_writeall(c
, fnum
, 0, (uint8_t *)buf
,
599 sizeof(pid
)+(j
*sizeof(buf
)),
601 if (!NT_STATUS_IS_OK(status
)) {
602 printf("write failed (%s)\n",
610 status
= cli_read(c
, fnum
, (char *)&pid2
, 0, sizeof(pid
),
612 if (!NT_STATUS_IS_OK(status
)) {
613 printf("read failed (%s)\n", nt_errstr(status
));
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
));
623 printf("data corruption!\n");
627 status
= cli_close(c
, fnum
);
628 if (!NT_STATUS_IS_OK(status
)) {
629 printf("close failed (%s)\n", nt_errstr(status
));
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
));
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
));
647 cli_unlink(c
, lockfname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
654 static bool run_torture(int dummy
)
656 struct cli_state
*cli
;
661 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
663 ret
= rw_torture(cli
);
665 if (!torture_close_connection(cli
)) {
672 static bool rw_torture3(struct cli_state
*c
, char *lockfname
)
674 uint16_t fnum
= (uint16_t)-1;
679 unsigned countprev
= 0;
682 NTSTATUS status
= NT_STATUS_OK
;
685 for (i
= 0; i
< sizeof(buf
); i
+= sizeof(uint32
))
687 SIVAL(buf
, i
, sys_random());
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
,
702 if (!NT_STATUS_IS_OK(status
)) {
703 printf("first open read/write of %s failed (%s)\n",
704 lockfname
, nt_errstr(status
));
710 for (i
= 0; i
< 500 && fnum
== (uint16_t)-1; i
++)
712 status
= cli_openx(c
, lockfname
, O_RDONLY
,
714 if (!NT_STATUS_IS_OK(status
)) {
719 if (!NT_STATUS_IS_OK(status
)) {
720 printf("second open read-only of %s failed (%s)\n",
721 lockfname
, nt_errstr(status
));
727 for (count
= 0; count
< sizeof(buf
); count
+= sent
)
729 if (count
>= countprev
) {
730 printf("%d %8d\r", i
, count
);
733 countprev
+= (sizeof(buf
) / 20);
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
,
746 if (!NT_STATUS_IS_OK(status
)) {
747 printf("write failed (%s)\n",
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
,
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
);
775 status
= cli_close(c
, fnum
);
776 if (!NT_STATUS_IS_OK(status
)) {
777 printf("close failed (%s)\n", nt_errstr(status
));
784 static bool rw_torture2(struct cli_state
*c1
, struct cli_state
*c2
)
786 const char *lockfname
= "\\torture2.lck";
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
,
803 if (!NT_STATUS_IS_OK(status
)) {
804 printf("first open read/write of %s failed (%s)\n",
805 lockfname
, nt_errstr(status
));
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
);
817 for (i
= 0; i
< torture_numops
; i
++)
819 size_t buf_size
= ((unsigned)sys_random()%(sizeof(buf
)-1))+ 1;
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,
828 if (!NT_STATUS_IS_OK(status
)) {
829 printf("write failed (%s)\n", nt_errstr(status
));
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
));
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
);
848 if (memcmp(buf_rd
, buf
, buf_size
) != 0)
850 printf("read/write compare failed\n");
856 status
= cli_close(c2
, fnum2
);
857 if (!NT_STATUS_IS_OK(status
)) {
858 printf("close failed (%s)\n", nt_errstr(status
));
862 status
= cli_close(c1
, fnum1
);
863 if (!NT_STATUS_IS_OK(status
)) {
864 printf("close failed (%s)\n", nt_errstr(status
));
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
));
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)) {
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
));
894 test2
= rw_torture2(cli1
, cli1
);
895 printf("Passed readwritetest v2: %s\n", BOOLSTR(test2
));
898 if (!torture_close_connection(cli1
)) {
902 if (!torture_close_connection(cli2
)) {
906 return (test1
&& test2
);
909 static bool run_readwritemulti(int dummy
)
911 struct cli_state
*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
)) {
928 static bool run_readwritelarge_internal(void)
930 static struct cli_state
*cli1
;
932 const char *lockfname
= "\\large.dat";
938 if (!torture_open_connection(&cli1
, 0)) {
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
,
950 if (!NT_STATUS_IS_OK(status
)) {
951 printf("open read/write of %s failed (%s)\n", lockfname
, nt_errstr(status
));
955 cli_writeall(cli1
, fnum1
, 0, (uint8_t *)buf
, 0, sizeof(buf
), NULL
);
957 status
= cli_qfileinfo_basic(cli1
, fnum1
, NULL
, &fsize
, NULL
, NULL
,
959 if (!NT_STATUS_IS_OK(status
)) {
960 printf("qfileinfo failed (%s)\n", nt_errstr(status
));
964 if (fsize
== sizeof(buf
))
965 printf("readwritelarge_internal test 1 succeeded (size = %lx)\n",
966 (unsigned long)fsize
);
968 printf("readwritelarge_internal test 1 failed (size = %lx)\n",
969 (unsigned long)fsize
);
973 status
= cli_close(cli1
, fnum1
);
974 if (!NT_STATUS_IS_OK(status
)) {
975 printf("close failed (%s)\n", nt_errstr(status
));
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
));
985 status
= cli_openx(cli1
, lockfname
, O_RDWR
| O_CREAT
| O_EXCL
,
987 if (!NT_STATUS_IS_OK(status
)) {
988 printf("open read/write of %s failed (%s)\n", lockfname
, nt_errstr(status
));
992 cli_smbwrite(cli1
, fnum1
, buf
, 0, sizeof(buf
), NULL
);
994 status
= cli_qfileinfo_basic(cli1
, fnum1
, NULL
, &fsize
, NULL
, NULL
,
996 if (!NT_STATUS_IS_OK(status
)) {
997 printf("qfileinfo failed (%s)\n", nt_errstr(status
));
1001 if (fsize
== sizeof(buf
))
1002 printf("readwritelarge_internal test 2 succeeded (size = %lx)\n",
1003 (unsigned long)fsize
);
1005 printf("readwritelarge_internal test 2 failed (size = %lx)\n",
1006 (unsigned long)fsize
);
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
));
1016 if (!cli_qfileinfo_basic(cli1
, fnum1
, NULL
, &fsize
, NULL
, NULL
, NULL
,
1018 printf("qfileinfo failed (%s)\n", cli_errstr(cli1
));
1022 printf("readwritelarge test 3 (truncate test) succeeded (size = %x)\n", fsize
);
1025 status
= cli_close(cli1
, fnum1
);
1026 if (!NT_STATUS_IS_OK(status
)) {
1027 printf("close failed (%s)\n", nt_errstr(status
));
1031 if (!torture_close_connection(cli1
)) {
1037 static bool run_readwritelarge(int dummy
)
1039 return run_readwritelarge_internal();
1042 static bool run_readwritelarge_signtest(int dummy
)
1045 signing_state
= SMB_SIGNING_REQUIRED
;
1046 ret
= run_readwritelarge_internal();
1047 signing_state
= SMB_SIGNING_DEFAULT
;
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
;
1064 const char *params
[20];
1065 bool correct
= True
;
1071 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
1075 slprintf(cname
,sizeof(cname
)-1, "client%d", client
);
1077 f
= fopen(client_txt
, "r");
1084 while (fgets(line
, sizeof(line
)-1, f
)) {
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
);
1097 while (params
[i
]) params
[++i
] = strtok_r(NULL
, " ", &saveptr
);
1101 if (i
< 2) continue;
1103 if (!strncmp(params
[0],"SMB", 3)) {
1104 printf("ERROR: You are using a dbench 1 load file\n");
1108 if (!strcmp(params
[0],"NTCreateX")) {
1109 nb_createx(params
[1], ival(params
[2]), ival(params
[3]),
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]));
1138 printf("Unknown operation %s\n", params
[0]);
1146 if (!torture_close_connection(cli
)) {
1154 /* run a test that simulates an approximate netbench client load */
1155 static bool run_nbench(int dummy
)
1158 bool correct
= True
;
1160 nbio_shmem(torture_nprocs
);
1164 signal(SIGALRM
, nb_alarm
);
1166 t
= create_procs(run_netbench
, &correct
);
1169 printf("\nThroughput %g MB/sec\n",
1170 1.0e-6 * nbio_total() / t
);
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
;
1188 unsigned lock_timeout
;
1191 if (!torture_open_connection(&cli1
, 0) || !torture_open_connection(&cli2
, 1)) {
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
,
1203 if (!NT_STATUS_IS_OK(status
)) {
1204 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
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
));
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
));
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
));
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");
1231 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1232 NT_STATUS_LOCK_NOT_GRANTED
)) {
1237 lock_timeout
= (1 + (random() % 20));
1238 printf("Testing lock timeout with timeout=%u\n", lock_timeout
);
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");
1245 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1246 NT_STATUS_FILE_LOCK_CONFLICT
)) {
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
));
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");
1270 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1271 NT_STATUS_FILE_LOCK_CONFLICT
)) {
1276 status
= cli_close(cli1
, fnum1
);
1277 if (!NT_STATUS_IS_OK(status
)) {
1278 printf("close2 failed (%s)\n", nt_errstr(status
));
1282 status
= cli_close(cli2
, fnum3
);
1283 if (!NT_STATUS_IS_OK(status
)) {
1284 printf("close3 failed (%s)\n", nt_errstr(status
));
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
));
1295 if (!torture_close_connection(cli1
)) {
1299 if (!torture_close_connection(cli2
)) {
1303 printf("Passed locktest1\n");
1308 this checks to see if a secondary tconx can use open files from an
1311 static bool run_tcon_test(int dummy
)
1313 static struct cli_state
*cli
;
1314 const char *fname
= "\\tcontest.tmp";
1316 uint16 cnum1
, cnum2
, cnum3
;
1317 uint16 vuid1
, vuid2
;
1322 memset(buf
, '\0', sizeof(buf
));
1324 if (!torture_open_connection(&cli
, 0)) {
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
));
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
));
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
,
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");
1369 printf("server fails write with wrong TID : %s\n",
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");
1382 printf("server fails write with invalid TID : %s\n",
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");
1395 printf("server fails write with invalid VUID : %s\n",
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
));
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
));
1416 cli_state_set_tid(cli
, cnum1
);
1418 if (!torture_close_connection(cli
)) {
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
;
1436 if (!torture_open_connection(&cli
, 0)) {
1439 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
1441 printf("starting tcon2 test\n");
1443 if (asprintf(&service
, "\\\\%s\\%s", host
, share
) == -1) {
1447 status
= cli_raw_tcon(cli
, service
, password
, "?????", &max_xmit
, &cnum
);
1451 if (!NT_STATUS_IS_OK(status
)) {
1452 printf("tcon2 failed : %s\n", nt_errstr(status
));
1454 printf("tcon OK : max_xmit=%d cnum=%d\n",
1455 (int)max_xmit
, (int)cnum
);
1458 if (!torture_close_connection(cli
)) {
1462 printf("Passed tcon2 test\n");
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
)
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) {
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
);
1489 printf("tconX to share %s with type %s "
1490 "should have succeeded but failed\n",
1496 if (NT_STATUS_IS_OK(status
)) {
1497 printf("tconx to share %s with type %s "
1498 "should have failed but succeeded\n",
1502 if (NT_STATUS_EQUAL(status
, expected_error
)) {
1505 printf("Returned unexpected error\n");
1514 checks for correct tconX support
1516 static bool run_tcon_devtype_test(int dummy
)
1518 static struct cli_state
*cli1
= NULL
;
1523 status
= cli_full_connection(&cli1
, myname
,
1524 host
, NULL
, port_to_use
,
1526 username
, workgroup
,
1527 password
, flags
, signing_state
);
1529 if (!NT_STATUS_IS_OK(status
)) {
1530 printf("could not open connection\n");
1534 if (!tcon_devtest(cli1
, "IPC$", "A:", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1537 if (!tcon_devtest(cli1
, "IPC$", "?????", "IPC", NT_STATUS_OK
))
1540 if (!tcon_devtest(cli1
, "IPC$", "LPT:", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1543 if (!tcon_devtest(cli1
, "IPC$", "IPC", "IPC", NT_STATUS_OK
))
1546 if (!tcon_devtest(cli1
, "IPC$", "FOOBA", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1549 if (!tcon_devtest(cli1
, share
, "A:", "A:", NT_STATUS_OK
))
1552 if (!tcon_devtest(cli1
, share
, "?????", "A:", NT_STATUS_OK
))
1555 if (!tcon_devtest(cli1
, share
, "LPT:", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1558 if (!tcon_devtest(cli1
, share
, "IPC", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1561 if (!tcon_devtest(cli1
, share
, "FOOBA", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1567 printf("Passed tcondevtest\n");
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
;
1592 if (!torture_open_connection(&cli
, 0)) {
1596 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
1598 printf("starting locktest2\n");
1600 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
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
));
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
));
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
));
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
));
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");
1637 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1638 NT_STATUS_LOCK_NOT_GRANTED
)) {
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");
1648 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1649 NT_STATUS_LOCK_NOT_GRANTED
)) {
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");
1659 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1660 NT_STATUS_FILE_LOCK_CONFLICT
)) {
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
));
1670 if (NT_STATUS_IS_OK(cli_unlock(cli
, fnum1
, 100, 4))) {
1671 printf("unlock at 100 succeeded! This is a locking bug\n");
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");
1680 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1681 NT_STATUS_RANGE_NOT_LOCKED
)) {
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");
1691 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1692 NT_STATUS_RANGE_NOT_LOCKED
)) {
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");
1702 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1703 NT_STATUS_LOCK_NOT_GRANTED
)) {
1710 status
= cli_close(cli
, fnum1
);
1711 if (!NT_STATUS_IS_OK(status
)) {
1712 printf("close1 failed (%s)\n", nt_errstr(status
));
1716 status
= cli_close(cli
, fnum2
);
1717 if (!NT_STATUS_IS_OK(status
)) {
1718 printf("close2 failed (%s)\n", nt_errstr(status
));
1722 status
= cli_close(cli
, fnum3
);
1723 if (!NT_STATUS_IS_OK(status
)) {
1724 printf("close3 failed (%s)\n", nt_errstr(status
));
1728 if (!torture_close_connection(cli
)) {
1732 printf("locktest2 finished\n");
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
;
1750 bool correct
= True
;
1753 #define NEXT_OFFSET offset += (~(uint32)0) / torture_numops
1755 if (!torture_open_connection(&cli1
, 0) || !torture_open_connection(&cli2
, 1)) {
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
,
1767 if (!NT_STATUS_IS_OK(status
)) {
1768 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
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
));
1778 for (offset
=i
=0;i
<torture_numops
;i
++) {
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",
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",
1798 for (offset
=i
=0;i
<torture_numops
;i
++) {
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
);
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
);
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
);
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
);
1826 for (offset
=i
=0;i
<torture_numops
;i
++) {
1829 status
= cli_unlock(cli1
, fnum1
, offset
-1, 1);
1830 if (!NT_STATUS_IS_OK(status
)) {
1831 printf("unlock1 %d failed (%s)\n",
1837 status
= cli_unlock(cli2
, fnum2
, offset
-2, 1);
1838 if (!NT_STATUS_IS_OK(status
)) {
1839 printf("unlock2 %d failed (%s)\n",
1846 status
= cli_close(cli1
, fnum1
);
1847 if (!NT_STATUS_IS_OK(status
)) {
1848 printf("close1 failed (%s)\n", nt_errstr(status
));
1852 status
= cli_close(cli2
, fnum2
);
1853 if (!NT_STATUS_IS_OK(status
)) {
1854 printf("close2 failed (%s)\n", nt_errstr(status
));
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
));
1864 if (!torture_close_connection(cli1
)) {
1868 if (!torture_close_connection(cli2
)) {
1872 printf("finished locktest3\n");
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
)
1884 status
= cli_read(cli
, fnum
, buf
, offset
, size
, &l_nread
);
1886 if(!NT_STATUS_IS_OK(status
)) {
1888 } else if (l_nread
!= expect
) {
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
;
1913 bool correct
= True
;
1916 if (!torture_open_connection(&cli1
, 0) || !torture_open_connection(&cli2
, 1)) {
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
),
1934 if (!NT_STATUS_IS_OK(status
)) {
1935 printf("Failed to create file: %s\n", nt_errstr(status
));
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
);
2016 status
= cli_writeall(cli2
, fnum2
, 0, (uint8_t *)buf
, 130, 4,
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
,
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
,
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
,
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
,
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
));
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");
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");
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
;
2102 bool correct
= True
;
2105 if (!torture_open_connection(&cli1
, 0) || !torture_open_connection(&cli2
, 1)) {
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
),
2124 if (!NT_STATUS_IS_OK(status
)) {
2125 printf("Failed to create file: %s\n", nt_errstr(status
));
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
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");
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
)) {
2214 if (!torture_close_connection(cli2
)) {
2218 printf("finished locktest5\n");
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" };
2234 if (!torture_open_connection(&cli
, 0)) {
2238 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
2240 printf("starting locktest6\n");
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");
2266 static bool run_locktest7(int dummy
)
2268 struct cli_state
*cli1
;
2269 const char *fname
= "\\lockt7.lck";
2272 bool correct
= False
;
2276 if (!torture_open_connection(&cli1
, 0)) {
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
),
2292 if (!NT_STATUS_IS_OK(status
)) {
2293 printf("Failed to create file: %s\n", nt_errstr(status
));
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
));
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",
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);
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");
2330 printf("pid1 successfully wrote to the range 130:4 (should be denied)\n");
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",
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);
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");
2358 printf("pid2 successfully wrote to the range 130:4 (should be denied)\n");
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
));
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",
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);
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
));
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");
2406 printf("pid2 successfully read the range 130:4 (should be denied) recv %ld\n",
2407 (unsigned long)nread
);
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");
2420 printf("pid2 successfully wrote to the range 130:4 (should be denied)\n");
2424 cli_unlock(cli1
, fnum1
, 130, 0);
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");
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
;
2450 bool correct
= False
;
2453 if (!torture_open_connection(&cli1
, 0)) {
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
,
2465 if (!NT_STATUS_IS_OK(status
)) {
2466 d_fprintf(stderr
, "cli_openx returned %s\n", nt_errstr(status
));
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",
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
));
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
));
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",
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");
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
)
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
)
2536 const char *local_pathname
= NULL
;
2539 local_pathname
= talloc_asprintf(talloc_tos(),
2540 "%s/lockt9.lck", local_path
);
2541 if (!local_pathname
) {
2542 printf("child: alloc fail\n");
2546 unlink(local_pathname
);
2547 fd
= open(local_pathname
, O_RDWR
|O_CREAT
, 0666);
2549 printf("child: open of %s failed %s.\n",
2550 local_pathname
, strerror(errno
));
2554 /* Now take a fcntl lock. */
2555 lock
.l_type
= F_WRLCK
;
2556 lock
.l_whence
= SEEK_SET
;
2559 lock
.l_pid
= getpid();
2561 ret
= fcntl(fd
,F_SETLK
,&lock
);
2563 printf("child: failed to get lock 0:4 on file %s. Error %s\n",
2564 local_pathname
, strerror(errno
));
2567 printf("child: got lock 0:4 on file %s.\n",
2572 CatchSignal(SIGALRM
, alarm_handler
);
2574 /* Signal the parent. */
2575 if (write(write_fd
, &c
, 1) != 1) {
2576 printf("child: start signal fail %s.\n",
2583 /* Wait for the parent to be ready. */
2584 if (read(read_fd
, &c
, 1) != 1) {
2585 printf("child: reply signal fail %s.\n",
2593 printf("child: released lock 0:4 on file %s.\n",
2599 static bool run_locktest9(int dummy
)
2601 struct cli_state
*cli1
;
2602 const char *fname
= "\\lockt9.lck";
2604 bool correct
= False
;
2605 int pipe_in
[2], pipe_out
[2];
2609 struct timeval start
;
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");
2620 if (pipe(pipe_in
) == -1 || pipe(pipe_out
) == -1) {
2625 if (child_pid
== -1) {
2629 if (child_pid
== 0) {
2631 do_local_lock(pipe_out
[0], pipe_in
[1]);
2641 ret
= read(pipe_in
[0], &c
, 1);
2643 d_fprintf(stderr
, "failed to read start signal from child. %s\n",
2648 if (!torture_open_connection(&cli1
, 0)) {
2652 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
2654 status
= cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
,
2656 if (!NT_STATUS_IS_OK(status
)) {
2657 d_fprintf(stderr
, "cli_openx returned %s\n", nt_errstr(status
));
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");
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);
2673 d_fprintf(stderr
, "failed to send exit signal to child. %s\n",
2678 /* Wait 20 seconds for the lock. */
2680 CatchSignal(SIGALRM
, alarm_handler_parent
);
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
));
2693 seconds
= timeval_elapsed(&start
);
2695 printf("Parent got the lock after %.2f seconds.\n",
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
));
2707 cli_close(cli1
, fnum
);
2708 torture_close_connection(cli1
);
2712 printf("finished locktest9\n");
2717 test whether fnums and tids open on one VC are available on another (a major
2720 static bool run_fdpasstest(int dummy
)
2722 struct cli_state
*cli1
, *cli2
;
2723 const char *fname
= "\\fdpass.tst";
2728 if (!torture_open_connection(&cli1
, 0) || !torture_open_connection(&cli2
, 1)) {
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
,
2740 if (!NT_STATUS_IS_OK(status
)) {
2741 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
2745 status
= cli_writeall(cli1
, fnum1
, 0, (const uint8_t *)"hello world\n", 0,
2747 if (!NT_STATUS_IS_OK(status
)) {
2748 printf("write failed (%s)\n", nt_errstr(status
));
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
);
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");
2771 static bool run_fdsesstest(int dummy
)
2773 struct cli_state
*cli
;
2778 const char *fname
= "\\fdsess.tst";
2779 const char *fname1
= "\\fdsess1.tst";
2786 if (!torture_open_connection(&cli
, 0))
2788 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
2790 if (!torture_cli_session_setup2(cli
, &new_vuid
))
2793 saved_cnum
= cli_state_get_tid(cli
);
2794 if (!NT_STATUS_IS_OK(cli_tree_connect(cli
, share
, "?????", "", 1)))
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
));
2810 status
= cli_writeall(cli
, fnum1
, 0, (const uint8_t *)"hello world\n", 0, 13,
2812 if (!NT_STATUS_IS_OK(status
)) {
2813 printf("write failed (%s)\n", nt_errstr(status
));
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
);
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
);
2831 printf("create with different vuid, same cnum failed.\n");
2832 printf("This will cause problems with service clients.\n");
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
);
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");
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";
2866 bool correct
= True
;
2869 if (!torture_open_connection(&cli
, 0)) {
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
);
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
));
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");
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
)) {
2904 printf("unlink test finished\n");
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
;
2917 uint16_t fnums
[0x11000];
2920 bool correct
= True
;
2926 printf("failed to connect\n");
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
,
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
);
2947 printf("cleaning up\n");
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
));
2962 printf("maxfid test finished\n");
2963 if (!torture_close_connection(cli
)) {
2969 /* generate a random buffer */
2970 static void rand_buf(char *buf
, int len
)
2973 *buf
= (char)sys_random();
2978 /* send smb negprot commands, not reading the response */
2979 static bool run_negprot_nowait(int dummy
)
2981 struct tevent_context
*ev
;
2983 struct cli_state
*cli
;
2984 bool correct
= True
;
2986 printf("starting negprot nowait test\n");
2988 ev
= tevent_context_init(talloc_tos());
2993 if (!(cli
= open_nbt_connection())) {
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
);
3007 if (!tevent_req_poll(req
, ev
)) {
3008 d_fprintf(stderr
, "tevent_req_poll failed: %s\n",
3016 if (torture_close_connection(cli
)) {
3020 printf("finished negprot nowait test\n");
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
;
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
);
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",
3051 ret
= cli_bad_session_request(fd
, &calling
, &called
);
3054 d_fprintf(stderr
, "open_socket_out failed: %s\n",
3059 printf("finished bad nbt session test\n");
3063 /* send random IPC commands */
3064 static bool run_randomipc(int dummy
)
3066 char *rparam
= NULL
;
3068 unsigned int rdrcnt
,rprcnt
;
3070 int api
, param_len
, i
;
3071 struct cli_state
*cli
;
3072 bool correct
= True
;
3075 printf("starting random ipc test\n");
3077 if (!torture_open_connection(&cli
, 0)) {
3081 for (i
=0;i
<count
;i
++) {
3082 api
= sys_random() % 500;
3083 param_len
= (sys_random() % 64);
3085 rand_buf(param
, param_len
);
3090 param
, param_len
, 8,
3091 NULL
, 0, BUFFER_SIZE
,
3095 printf("%d/%d\r", i
,count
);
3098 printf("%d/%d\n", i
, count
);
3100 if (!torture_close_connection(cli
)) {
3104 printf("finished random ipc test\n");
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)) {
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
,
3142 browse_callback
, NULL
);
3144 if (!torture_close_connection(cli
)) {
3148 printf("browse test finished\n");
3156 This checks how the getatr calls works
3158 static bool run_attrtest(int dummy
)
3160 struct cli_state
*cli
;
3163 const char *fname
= "\\attrib123456789.tst";
3164 bool correct
= True
;
3167 printf("starting attrib test\n");
3169 if (!torture_open_connection(&cli
, 0)) {
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
));
3184 if (abs(t
- time(NULL
)) > 60*60*24*10) {
3185 printf("ERROR: SMBgetatr bug. time is %s",
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
));
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
));
3206 printf("ERROR: getatr/setatr bug. times are\n%s",
3208 printf("%s", ctime(&t2
));
3212 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3214 if (!torture_close_connection(cli
)) {
3218 printf("attrib test finished\n");
3225 This checks a couple of trans2 calls
3227 static bool run_trans2test(int dummy
)
3229 struct cli_state
*cli
;
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";
3238 bool correct
= True
;
3242 printf("starting trans2 test\n");
3244 if (!torture_open_connection(&cli
, 0)) {
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",
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
));
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
));
3270 if (strcmp(pname
, fname
)) {
3271 printf("qfilename gave different name? [%s] [%s]\n",
3276 cli_close(cli
, fnum
);
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
,
3283 if (!NT_STATUS_IS_OK(status
)) {
3284 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
3287 cli_close(cli
, fnum
);
3289 status
= cli_qpathinfo1(cli
, fname
, &c_time
, &a_time
, &m_time
, &size
,
3291 if (!NT_STATUS_IS_OK(status
)) {
3292 printf("ERROR: qpathinfo failed (%s)\n", nt_errstr(status
));
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");
3308 if (abs(m_time
- t
) > 60*60*24*7) {
3309 printf("ERROR: totally incorrect times - maybe word reversed? mtime=%s", ctime(&m_time
));
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
));
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");
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
));
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
));
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
));
3360 if (memcmp(&m_time_ts
, &m_time2_ts
, sizeof(struct timespec
))
3362 printf("This system does not update directory modification times\n");
3366 cli_unlink(cli
, fname2
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3367 cli_rmdir(cli
, dname
);
3369 if (!torture_close_connection(cli
)) {
3373 printf("trans2 test finished\n");
3379 This checks new W2K calls.
3382 static NTSTATUS
new_trans(struct cli_state
*pcli
, int fnum
, int level
)
3384 uint8_t *buf
= NULL
;
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
,
3394 printf("qfileinfo: level %d, len = %u\n", level
, len
);
3395 dump_data(0, (uint8
*)buf
, len
);
3402 static bool run_w2ktest(int dummy
)
3404 struct cli_state
*cli
;
3406 const char *fname
= "\\w2ktest\\w2k.tst";
3408 bool correct
= True
;
3410 printf("starting w2k test\n");
3412 if (!torture_open_connection(&cli
, 0)) {
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
)) {
3429 printf("w2k test finished\n");
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";
3443 bool correct
= True
;
3446 printf("starting oplock test 1\n");
3448 if (!torture_open_connection(&cli1
, 0)) {
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
,
3460 if (!NT_STATUS_IS_OK(status
)) {
3461 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
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
));
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
));
3482 if (!torture_close_connection(cli1
)) {
3486 printf("finished oplock test 1\n");
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
;
3498 bool correct
= True
;
3499 volatile bool *shared_correct
;
3503 shared_correct
= (volatile bool *)anonymous_shared_allocate(sizeof(bool));
3504 *shared_correct
= True
;
3506 use_level_II_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
;
3517 if (!torture_open_connection(&cli2
, 1)) {
3518 use_level_II_oplocks
= False
;
3519 use_oplocks
= saved_use_oplocks
;
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
,
3530 if (!NT_STATUS_IS_OK(status
)) {
3531 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
3535 /* Don't need the globals any more. */
3536 use_level_II_oplocks
= False
;
3537 use_oplocks
= saved_use_oplocks
;
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
;
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
;
3561 /* Ensure cli1 processes the break. Empty file should always return 0
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
));
3567 } else if (nread
!= 0) {
3568 printf("read on empty fnum1 failed. recv %ld expected %d\n",
3569 (unsigned long)nread
, 0);
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
));
3581 cli_unlock(cli1
, fnum1
, 0, 4);
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
));
3591 cli_unlock(cli1
, fnum1
, 0, 4);
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
));
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
));
3611 if (!torture_close_connection(cli1
)) {
3615 if (!*shared_correct
) {
3619 printf("finished oplock test 2\n");
3624 struct oplock4_state
{
3625 struct tevent_context
*ev
;
3626 struct cli_state
*cli
;
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
;
3644 bool correct
= true;
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
;
3658 if (!torture_open_connection(&cli2
, 1)) {
3659 use_level_II_oplocks
= false;
3660 use_oplocks
= saved_use_oplocks
;
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
,
3673 if (!NT_STATUS_IS_OK(status
)) {
3674 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
3678 status
= cli_close(cli1
, fnum1
);
3679 if (!NT_STATUS_IS_OK(status
)) {
3680 printf("close1 failed (%s)\n", nt_errstr(status
));
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
));
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
));
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",
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
));
3711 status
= cli_close(cli1
, fnum1
);
3712 if (!NT_STATUS_IS_OK(status
)) {
3713 printf("close1 failed (%s)\n", nt_errstr(status
));
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
));
3726 ev
= tevent_context_init(talloc_tos());
3728 printf("tevent_context_init failed\n");
3732 state
= talloc(ev
, struct oplock4_state
);
3733 if (state
== NULL
) {
3734 printf("talloc failed\n");
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");
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");
3756 tevent_req_set_callback(open_req
, oplock4_got_open
, state
);
3761 while (!got_break
|| fnum2
== 0xffff) {
3763 ret
= tevent_loop_once(ev
);
3765 printf("tevent_loop_once failed: %s\n",
3771 status
= cli_close(cli2
, fnum2
);
3772 if (!NT_STATUS_IS_OK(status
)) {
3773 printf("close2 failed (%s)\n", nt_errstr(status
));
3777 status
= cli_close(cli1
, fnum1
);
3778 if (!NT_STATUS_IS_OK(status
)) {
3779 printf("close1 failed (%s)\n", nt_errstr(status
));
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
));
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
));
3795 if (!torture_close_connection(cli1
)) {
3803 printf("finished oplock test 4\n");
3808 static void oplock4_got_break(struct tevent_req
*req
)
3810 struct oplock4_state
*state
= tevent_req_callback_data(
3811 req
, struct oplock4_state
);
3816 status
= cli_smb_oplock_break_waiter_recv(req
, &fnum
, &level
);
3818 if (!NT_STATUS_IS_OK(status
)) {
3819 printf("cli_smb_oplock_break_waiter_recv returned %s\n",
3823 *state
->got_break
= true;
3825 req
= cli_oplock_ack_send(state
, state
->ev
, state
->cli
, fnum
,
3828 printf("cli_oplock_ack_send failed\n");
3833 static void oplock4_got_open(struct tevent_req
*req
)
3835 struct oplock4_state
*state
= tevent_req_callback_data(
3836 req
, struct oplock4_state
);
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
= True
;
3859 printf("starting delete test\n");
3861 if (!torture_open_connection(&cli1
, 0)) {
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
));
3881 status
= cli_close(cli1
, fnum1
);
3882 if (!NT_STATUS_IS_OK(status
)) {
3883 printf("[1] close failed (%s)\n", nt_errstr(status
));
3888 status
= cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
, &fnum1
);
3889 if (NT_STATUS_IS_OK(status
)) {
3890 printf("[1] open of %s succeeded (should fail)\n", fname
);
3895 printf("first delete on close test succeeded.\n");
3897 /* Test 2 - this should delete the file on close. */
3899 cli_setatr(cli1
, fname
, 0, 0);
3900 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3902 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_ALL_ACCESS
,
3903 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
3904 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
3905 if (!NT_STATUS_IS_OK(status
)) {
3906 printf("[2] open of %s failed (%s)\n", fname
, nt_errstr(status
));
3911 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
3912 if (!NT_STATUS_IS_OK(status
)) {
3913 printf("[2] setting delete_on_close failed (%s)\n", nt_errstr(status
));
3918 status
= cli_close(cli1
, fnum1
);
3919 if (!NT_STATUS_IS_OK(status
)) {
3920 printf("[2] close failed (%s)\n", nt_errstr(status
));
3925 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_NONE
, &fnum1
);
3926 if (NT_STATUS_IS_OK(status
)) {
3927 printf("[2] open of %s succeeded should have been deleted on close !\n", fname
);
3928 status
= cli_close(cli1
, fnum1
);
3929 if (!NT_STATUS_IS_OK(status
)) {
3930 printf("[2] close failed (%s)\n", nt_errstr(status
));
3932 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3937 printf("second delete on close test succeeded.\n");
3940 cli_setatr(cli1
, fname
, 0, 0);
3941 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3943 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_ALL_ACCESS
,
3944 FILE_ATTRIBUTE_NORMAL
,
3945 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
3946 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
3947 if (!NT_STATUS_IS_OK(status
)) {
3948 printf("[3] open - 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
3953 /* This should fail with a sharing violation - open for delete is only compatible
3954 with SHARE_DELETE. */
3956 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
3957 FILE_ATTRIBUTE_NORMAL
,
3958 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
3959 FILE_OPEN
, 0, 0, &fnum2
);
3960 if (NT_STATUS_IS_OK(status
)) {
3961 printf("[3] open - 2 of %s succeeded - should have failed.\n", fname
);
3966 /* This should succeed. */
3967 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
3968 FILE_ATTRIBUTE_NORMAL
,
3969 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
3970 FILE_OPEN
, 0, 0, &fnum2
);
3971 if (!NT_STATUS_IS_OK(status
)) {
3972 printf("[3] open - 3 of %s failed (%s)\n", fname
, nt_errstr(status
));
3977 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
3978 if (!NT_STATUS_IS_OK(status
)) {
3979 printf("[3] setting delete_on_close failed (%s)\n", nt_errstr(status
));
3984 status
= cli_close(cli1
, fnum1
);
3985 if (!NT_STATUS_IS_OK(status
)) {
3986 printf("[3] close 1 failed (%s)\n", nt_errstr(status
));
3991 status
= cli_close(cli1
, fnum2
);
3992 if (!NT_STATUS_IS_OK(status
)) {
3993 printf("[3] close 2 failed (%s)\n", nt_errstr(status
));
3998 /* This should fail - file should no longer be there. */
4000 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_NONE
, &fnum1
);
4001 if (NT_STATUS_IS_OK(status
)) {
4002 printf("[3] open of %s succeeded should have been deleted on close !\n", fname
);
4003 status
= cli_close(cli1
, fnum1
);
4004 if (!NT_STATUS_IS_OK(status
)) {
4005 printf("[3] close failed (%s)\n", nt_errstr(status
));
4007 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4012 printf("third delete on close test succeeded.\n");
4015 cli_setatr(cli1
, fname
, 0, 0);
4016 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4018 status
= cli_ntcreate(cli1
, fname
, 0,
4019 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
4020 FILE_ATTRIBUTE_NORMAL
,
4021 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
4022 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4023 if (!NT_STATUS_IS_OK(status
)) {
4024 printf("[4] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4029 /* This should succeed. */
4030 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4031 FILE_ATTRIBUTE_NORMAL
,
4032 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4033 FILE_OPEN
, 0, 0, &fnum2
);
4034 if (!NT_STATUS_IS_OK(status
)) {
4035 printf("[4] open - 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
4040 status
= cli_close(cli1
, fnum2
);
4041 if (!NT_STATUS_IS_OK(status
)) {
4042 printf("[4] close - 1 failed (%s)\n", nt_errstr(status
));
4047 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
4048 if (!NT_STATUS_IS_OK(status
)) {
4049 printf("[4] setting delete_on_close failed (%s)\n", nt_errstr(status
));
4054 /* This should fail - no more opens once delete on close set. */
4055 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4056 FILE_ATTRIBUTE_NORMAL
,
4057 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4058 FILE_OPEN
, 0, 0, &fnum2
);
4059 if (NT_STATUS_IS_OK(status
)) {
4060 printf("[4] open - 3 of %s succeeded ! Should have failed.\n", fname
);
4065 status
= cli_close(cli1
, fnum1
);
4066 if (!NT_STATUS_IS_OK(status
)) {
4067 printf("[4] close - 2 failed (%s)\n", nt_errstr(status
));
4072 printf("fourth delete on close test succeeded.\n");
4075 cli_setatr(cli1
, fname
, 0, 0);
4076 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4078 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum1
);
4079 if (!NT_STATUS_IS_OK(status
)) {
4080 printf("[5] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4085 /* This should fail - only allowed on NT opens with DELETE access. */
4087 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
4088 if (NT_STATUS_IS_OK(status
)) {
4089 printf("[5] setting delete_on_close on OpenX file succeeded - should fail !\n");
4094 status
= cli_close(cli1
, fnum1
);
4095 if (!NT_STATUS_IS_OK(status
)) {
4096 printf("[5] close failed (%s)\n", nt_errstr(status
));
4101 printf("fifth delete on close test succeeded.\n");
4104 cli_setatr(cli1
, fname
, 0, 0);
4105 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4107 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_DATA
|FILE_WRITE_DATA
,
4108 FILE_ATTRIBUTE_NORMAL
,
4109 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4110 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4111 if (!NT_STATUS_IS_OK(status
)) {
4112 printf("[6] open of %s failed (%s)\n", fname
,
4118 /* This should fail - only allowed on NT opens with DELETE access. */
4120 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
4121 if (NT_STATUS_IS_OK(status
)) {
4122 printf("[6] setting delete_on_close on file with no delete access succeeded - should fail !\n");
4127 status
= cli_close(cli1
, fnum1
);
4128 if (!NT_STATUS_IS_OK(status
)) {
4129 printf("[6] close failed (%s)\n", nt_errstr(status
));
4134 printf("sixth delete on close test succeeded.\n");
4137 cli_setatr(cli1
, fname
, 0, 0);
4138 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4140 status
= cli_ntcreate(cli1
, fname
, 0,
4141 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
4142 FILE_ATTRIBUTE_NORMAL
, 0, FILE_OVERWRITE_IF
,
4144 if (!NT_STATUS_IS_OK(status
)) {
4145 printf("[7] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4150 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
4151 if (!NT_STATUS_IS_OK(status
)) {
4152 printf("[7] setting delete_on_close on file failed !\n");
4157 status
= cli_nt_delete_on_close(cli1
, fnum1
, false);
4158 if (!NT_STATUS_IS_OK(status
)) {
4159 printf("[7] unsetting delete_on_close on file failed !\n");
4164 status
= cli_close(cli1
, fnum1
);
4165 if (!NT_STATUS_IS_OK(status
)) {
4166 printf("[7] close - 1 failed (%s)\n", nt_errstr(status
));
4171 /* This next open should succeed - we reset the flag. */
4172 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_NONE
, &fnum1
);
4173 if (!NT_STATUS_IS_OK(status
)) {
4174 printf("[7] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4179 status
= cli_close(cli1
, fnum1
);
4180 if (!NT_STATUS_IS_OK(status
)) {
4181 printf("[7] close - 2 failed (%s)\n", nt_errstr(status
));
4186 printf("seventh delete on close test succeeded.\n");
4189 cli_setatr(cli1
, fname
, 0, 0);
4190 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4192 if (!torture_open_connection(&cli2
, 1)) {
4193 printf("[8] failed to open second connection.\n");
4198 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
4200 status
= cli_ntcreate(cli1
, fname
, 0,
4201 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
4202 FILE_ATTRIBUTE_NORMAL
,
4203 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4204 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4205 if (!NT_STATUS_IS_OK(status
)) {
4206 printf("[8] open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
4211 status
= cli_ntcreate(cli2
, fname
, 0,
4212 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
4213 FILE_ATTRIBUTE_NORMAL
,
4214 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4215 FILE_OPEN
, 0, 0, &fnum2
);
4216 if (!NT_STATUS_IS_OK(status
)) {
4217 printf("[8] open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
4222 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
4223 if (!NT_STATUS_IS_OK(status
)) {
4224 printf("[8] setting delete_on_close on file failed !\n");
4229 status
= cli_close(cli1
, fnum1
);
4230 if (!NT_STATUS_IS_OK(status
)) {
4231 printf("[8] close - 1 failed (%s)\n", nt_errstr(status
));
4236 status
= cli_close(cli2
, fnum2
);
4237 if (!NT_STATUS_IS_OK(status
)) {
4238 printf("[8] close - 2 failed (%s)\n", nt_errstr(status
));
4243 /* This should fail.. */
4244 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_NONE
, &fnum1
);
4245 if (NT_STATUS_IS_OK(status
)) {
4246 printf("[8] open of %s succeeded should have been deleted on close !\n", fname
);
4251 printf("eighth delete on close test succeeded.\n");
4255 /* This should fail - we need to set DELETE_ACCESS. */
4256 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_DATA
|FILE_WRITE_DATA
,
4257 FILE_ATTRIBUTE_NORMAL
,
4260 FILE_DELETE_ON_CLOSE
, 0, &fnum1
);
4261 if (NT_STATUS_IS_OK(status
)) {
4262 printf("[9] open of %s succeeded should have failed!\n", fname
);
4267 printf("ninth delete on close test succeeded.\n");
4271 status
= cli_ntcreate(cli1
, fname
, 0,
4272 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
4273 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
4274 FILE_OVERWRITE_IF
, FILE_DELETE_ON_CLOSE
,
4276 if (!NT_STATUS_IS_OK(status
)) {
4277 printf("[10] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4282 /* This should delete the file. */
4283 status
= cli_close(cli1
, fnum1
);
4284 if (!NT_STATUS_IS_OK(status
)) {
4285 printf("[10] close failed (%s)\n", nt_errstr(status
));
4290 /* This should fail.. */
4291 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_NONE
, &fnum1
);
4292 if (NT_STATUS_IS_OK(status
)) {
4293 printf("[10] open of %s succeeded should have been deleted on close !\n", fname
);
4298 printf("tenth delete on close test succeeded.\n");
4300 cli_setatr(cli1
, fname
, 0, 0);
4301 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4303 /* What error do we get when attempting to open a read-only file with
4306 /* Create a readonly file. */
4307 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_DATA
|FILE_WRITE_DATA
,
4308 FILE_ATTRIBUTE_READONLY
, FILE_SHARE_NONE
,
4309 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4310 if (!NT_STATUS_IS_OK(status
)) {
4311 printf("[11] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4316 status
= cli_close(cli1
, fnum1
);
4317 if (!NT_STATUS_IS_OK(status
)) {
4318 printf("[11] close failed (%s)\n", nt_errstr(status
));
4323 /* Now try open for delete access. */
4324 status
= cli_ntcreate(cli1
, fname
, 0,
4325 FILE_READ_ATTRIBUTES
|DELETE_ACCESS
,
4327 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4328 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4329 if (NT_STATUS_IS_OK(status
)) {
4330 printf("[11] open of %s succeeded should have been denied with ACCESS_DENIED!\n", fname
);
4331 cli_close(cli1
, fnum1
);
4335 if (!NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
4336 printf("[11] open of %s should have been denied with ACCESS_DENIED! Got error %s\n", fname
, nt_errstr(status
));
4340 printf("eleventh delete on close test succeeded.\n");
4344 printf("finished delete test\n");
4347 /* FIXME: This will crash if we aborted before cli2 got
4348 * intialized, because these functions don't handle
4349 * uninitialized connections. */
4351 if (fnum1
!= (uint16_t)-1) cli_close(cli1
, fnum1
);
4352 if (fnum2
!= (uint16_t)-1) cli_close(cli1
, fnum2
);
4353 cli_setatr(cli1
, fname
, 0, 0);
4354 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4356 if (cli1
&& !torture_close_connection(cli1
)) {
4359 if (cli2
&& !torture_close_connection(cli2
)) {
4365 static bool run_deletetest_ln(int dummy
)
4367 struct cli_state
*cli
;
4368 const char *fname
= "\\delete1";
4369 const char *fname_ln
= "\\delete1_ln";
4373 bool correct
= true;
4376 printf("starting deletetest-ln\n");
4378 if (!torture_open_connection(&cli
, 0)) {
4382 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4383 cli_unlink(cli
, fname_ln
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4385 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
4387 /* Create the file. */
4388 status
= cli_openx(cli
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum
);
4389 if (!NT_STATUS_IS_OK(status
)) {
4390 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
4394 status
= cli_close(cli
, fnum
);
4395 if (!NT_STATUS_IS_OK(status
)) {
4396 printf("close1 failed (%s)\n", nt_errstr(status
));
4400 /* Now create a hardlink. */
4401 status
= cli_nt_hardlink(cli
, fname
, fname_ln
);
4402 if (!NT_STATUS_IS_OK(status
)) {
4403 printf("nt hardlink failed (%s)\n", nt_errstr(status
));
4407 /* Open the original file. */
4408 status
= cli_ntcreate(cli
, fname
, 0, FILE_READ_DATA
,
4409 FILE_ATTRIBUTE_NORMAL
,
4410 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4411 FILE_OPEN_IF
, 0, 0, &fnum
);
4412 if (!NT_STATUS_IS_OK(status
)) {
4413 printf("ntcreate of %s failed (%s)\n", fname
, nt_errstr(status
));
4417 /* Unlink the hard link path. */
4418 status
= cli_ntcreate(cli
, fname_ln
, 0, DELETE_ACCESS
,
4419 FILE_ATTRIBUTE_NORMAL
,
4420 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4421 FILE_OPEN_IF
, 0, 0, &fnum1
);
4422 if (!NT_STATUS_IS_OK(status
)) {
4423 printf("ntcreate of %s failed (%s)\n", fname_ln
, nt_errstr(status
));
4426 status
= cli_nt_delete_on_close(cli
, fnum1
, true);
4427 if (!NT_STATUS_IS_OK(status
)) {
4428 d_printf("(%s) failed to set delete_on_close %s: %s\n",
4429 __location__
, fname_ln
, nt_errstr(status
));
4433 status
= cli_close(cli
, fnum1
);
4434 if (!NT_STATUS_IS_OK(status
)) {
4435 printf("close %s failed (%s)\n",
4436 fname_ln
, nt_errstr(status
));
4440 status
= cli_close(cli
, fnum
);
4441 if (!NT_STATUS_IS_OK(status
)) {
4442 printf("close %s failed (%s)\n",
4443 fname
, nt_errstr(status
));
4447 /* Ensure the original file is still there. */
4448 status
= cli_getatr(cli
, fname
, NULL
, NULL
, &t
);
4449 if (!NT_STATUS_IS_OK(status
)) {
4450 printf("%s getatr on file %s failed (%s)\n",
4457 /* Ensure the link path is gone. */
4458 status
= cli_getatr(cli
, fname_ln
, NULL
, NULL
, &t
);
4459 if (!NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
4460 printf("%s, getatr for file %s returned wrong error code %s "
4461 "- should have been deleted\n",
4463 fname_ln
, nt_errstr(status
));
4467 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4468 cli_unlink(cli
, fname_ln
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4470 if (!torture_close_connection(cli
)) {
4474 printf("finished deletetest-ln\n");
4480 print out server properties
4482 static bool run_properties(int dummy
)
4484 struct cli_state
*cli
;
4485 bool correct
= True
;
4487 printf("starting properties test\n");
4491 if (!torture_open_connection(&cli
, 0)) {
4495 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
4497 d_printf("Capabilities 0x%08x\n", smb1cli_conn_capabilities(cli
->conn
));
4499 if (!torture_close_connection(cli
)) {
4508 /* FIRST_DESIRED_ACCESS 0xf019f */
4509 #define FIRST_DESIRED_ACCESS FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|\
4510 FILE_READ_EA| /* 0xf */ \
4511 FILE_WRITE_EA|FILE_READ_ATTRIBUTES| /* 0x90 */ \
4512 FILE_WRITE_ATTRIBUTES| /* 0x100 */ \
4513 DELETE_ACCESS|READ_CONTROL_ACCESS|\
4514 WRITE_DAC_ACCESS|WRITE_OWNER_ACCESS /* 0xf0000 */
4515 /* SECOND_DESIRED_ACCESS 0xe0080 */
4516 #define SECOND_DESIRED_ACCESS FILE_READ_ATTRIBUTES| /* 0x80 */ \
4517 READ_CONTROL_ACCESS|WRITE_DAC_ACCESS|\
4518 WRITE_OWNER_ACCESS /* 0xe0000 */
4521 #define THIRD_DESIRED_ACCESS FILE_READ_ATTRIBUTES| /* 0x80 */ \
4522 READ_CONTROL_ACCESS|WRITE_DAC_ACCESS|\
4524 WRITE_OWNER_ACCESS /* */
4528 Test ntcreate calls made by xcopy
4530 static bool run_xcopy(int dummy
)
4532 static struct cli_state
*cli1
;
4533 const char *fname
= "\\test.txt";
4534 bool correct
= True
;
4535 uint16_t fnum1
, fnum2
;
4538 printf("starting xcopy test\n");
4540 if (!torture_open_connection(&cli1
, 0)) {
4544 status
= cli_ntcreate(cli1
, fname
, 0, FIRST_DESIRED_ACCESS
,
4545 FILE_ATTRIBUTE_ARCHIVE
, FILE_SHARE_NONE
,
4546 FILE_OVERWRITE_IF
, 0x4044, 0, &fnum1
);
4547 if (!NT_STATUS_IS_OK(status
)) {
4548 printf("First open failed - %s\n", nt_errstr(status
));
4552 status
= cli_ntcreate(cli1
, fname
, 0, SECOND_DESIRED_ACCESS
, 0,
4553 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4554 FILE_OPEN
, 0x200000, 0, &fnum2
);
4555 if (!NT_STATUS_IS_OK(status
)) {
4556 printf("second open failed - %s\n", nt_errstr(status
));
4560 if (!torture_close_connection(cli1
)) {
4568 Test rename on files open with share delete and no share delete.
4570 static bool run_rename(int dummy
)
4572 static struct cli_state
*cli1
;
4573 const char *fname
= "\\test.txt";
4574 const char *fname1
= "\\test1.txt";
4575 bool correct
= True
;
4580 printf("starting rename test\n");
4582 if (!torture_open_connection(&cli1
, 0)) {
4586 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4587 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4589 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4590 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_READ
,
4591 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4592 if (!NT_STATUS_IS_OK(status
)) {
4593 printf("First open failed - %s\n", nt_errstr(status
));
4597 status
= cli_rename(cli1
, fname
, fname1
);
4598 if (!NT_STATUS_IS_OK(status
)) {
4599 printf("First rename failed (SHARE_READ) (this is correct) - %s\n", nt_errstr(status
));
4601 printf("First rename succeeded (SHARE_READ) - this should have failed !\n");
4605 status
= cli_close(cli1
, fnum1
);
4606 if (!NT_STATUS_IS_OK(status
)) {
4607 printf("close - 1 failed (%s)\n", nt_errstr(status
));
4611 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4612 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4613 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
, FILE_ATTRIBUTE_NORMAL
,
4615 FILE_SHARE_DELETE
|FILE_SHARE_NONE
,
4617 FILE_SHARE_DELETE
|FILE_SHARE_READ
,
4619 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4620 if (!NT_STATUS_IS_OK(status
)) {
4621 printf("Second open failed - %s\n", nt_errstr(status
));
4625 status
= cli_rename(cli1
, fname
, fname1
);
4626 if (!NT_STATUS_IS_OK(status
)) {
4627 printf("Second rename failed (SHARE_DELETE | SHARE_READ) - this should have succeeded - %s\n", nt_errstr(status
));
4630 printf("Second rename succeeded (SHARE_DELETE | SHARE_READ)\n");
4633 status
= cli_close(cli1
, fnum1
);
4634 if (!NT_STATUS_IS_OK(status
)) {
4635 printf("close - 2 failed (%s)\n", nt_errstr(status
));
4639 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4640 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4642 status
= cli_ntcreate(cli1
, fname
, 0, READ_CONTROL_ACCESS
,
4643 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
4644 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4645 if (!NT_STATUS_IS_OK(status
)) {
4646 printf("Third open failed - %s\n", nt_errstr(status
));
4655 if (!NT_STATUS_IS_OK(cli_ntcreate(cli1
, fname
, 0, DELETE_ACCESS
, FILE_ATTRIBUTE_NORMAL
,
4656 FILE_SHARE_NONE
, FILE_OVERWRITE_IF
, 0, 0, &fnum2
))) {
4657 printf("Fourth open failed - %s\n", cli_errstr(cli1
));
4660 if (!NT_STATUS_IS_OK(cli_nt_delete_on_close(cli1
, fnum2
, true))) {
4661 printf("[8] setting delete_on_close on file failed !\n");
4665 if (!NT_STATUS_IS_OK(cli_close(cli1
, fnum2
))) {
4666 printf("close - 4 failed (%s)\n", cli_errstr(cli1
));
4672 status
= cli_rename(cli1
, fname
, fname1
);
4673 if (!NT_STATUS_IS_OK(status
)) {
4674 printf("Third rename failed (SHARE_NONE) - this should have succeeded - %s\n", nt_errstr(status
));
4677 printf("Third rename succeeded (SHARE_NONE)\n");
4680 status
= cli_close(cli1
, fnum1
);
4681 if (!NT_STATUS_IS_OK(status
)) {
4682 printf("close - 3 failed (%s)\n", nt_errstr(status
));
4686 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4687 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4691 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4692 FILE_ATTRIBUTE_NORMAL
,
4693 FILE_SHARE_READ
| FILE_SHARE_WRITE
,
4694 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4695 if (!NT_STATUS_IS_OK(status
)) {
4696 printf("Fourth open failed - %s\n", nt_errstr(status
));
4700 status
= cli_rename(cli1
, fname
, fname1
);
4701 if (!NT_STATUS_IS_OK(status
)) {
4702 printf("Fourth rename failed (SHARE_READ | SHARE_WRITE) (this is correct) - %s\n", nt_errstr(status
));
4704 printf("Fourth rename succeeded (SHARE_READ | SHARE_WRITE) - this should have failed !\n");
4708 status
= cli_close(cli1
, fnum1
);
4709 if (!NT_STATUS_IS_OK(status
)) {
4710 printf("close - 4 failed (%s)\n", nt_errstr(status
));
4714 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4715 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4719 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4720 FILE_ATTRIBUTE_NORMAL
,
4721 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
4722 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4723 if (!NT_STATUS_IS_OK(status
)) {
4724 printf("Fifth open failed - %s\n", nt_errstr(status
));
4728 status
= cli_rename(cli1
, fname
, fname1
);
4729 if (!NT_STATUS_IS_OK(status
)) {
4730 printf("Fifth rename failed (SHARE_READ | SHARE_WRITE | SHARE_DELETE) - this should have succeeded - %s ! \n", nt_errstr(status
));
4733 printf("Fifth rename succeeded (SHARE_READ | SHARE_WRITE | SHARE_DELETE) (this is correct) - %s\n", nt_errstr(status
));
4737 * Now check if the first name still exists ...
4740 /* if (!NT_STATUS_OP(cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS, FILE_ATTRIBUTE_NORMAL,
4741 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, FILE_OVERWRITE_IF, 0, 0, &fnum2))) {
4742 printf("Opening original file after rename of open file fails: %s\n",
4746 printf("Opening original file after rename of open file works ...\n");
4747 (void)cli_close(cli1, fnum2);
4751 status
= cli_close(cli1
, fnum1
);
4752 if (!NT_STATUS_IS_OK(status
)) {
4753 printf("close - 5 failed (%s)\n", nt_errstr(status
));
4757 /* Check that the renamed file has FILE_ATTRIBUTE_ARCHIVE. */
4758 status
= cli_getatr(cli1
, fname1
, &attr
, NULL
, NULL
);
4759 if (!NT_STATUS_IS_OK(status
)) {
4760 printf("getatr on file %s failed - %s ! \n",
4761 fname1
, nt_errstr(status
));
4764 if (attr
!= FILE_ATTRIBUTE_ARCHIVE
) {
4765 printf("Renamed file %s has wrong attr 0x%x "
4766 "(should be 0x%x)\n",
4769 (unsigned int)FILE_ATTRIBUTE_ARCHIVE
);
4772 printf("Renamed file %s has archive bit set\n", fname1
);
4776 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4777 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4779 if (!torture_close_connection(cli1
)) {
4786 static bool run_pipe_number(int dummy
)
4788 struct cli_state
*cli1
;
4789 const char *pipe_name
= "\\SPOOLSS";
4794 printf("starting pipenumber test\n");
4795 if (!torture_open_connection(&cli1
, 0)) {
4799 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
4801 status
= cli_ntcreate(cli1
, pipe_name
, 0, FILE_READ_DATA
,
4802 FILE_ATTRIBUTE_NORMAL
,
4803 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
4804 FILE_OPEN_IF
, 0, 0, &fnum
);
4805 if (!NT_STATUS_IS_OK(status
)) {
4806 printf("Open of pipe %s failed with error (%s)\n", pipe_name
, nt_errstr(status
));
4810 printf("\r%6d", num_pipes
);
4813 printf("pipe_number test - we can open %d %s pipes.\n", num_pipes
, pipe_name
);
4814 torture_close_connection(cli1
);
4819 Test open mode returns on read-only files.
4821 static bool run_opentest(int dummy
)
4823 static struct cli_state
*cli1
;
4824 static struct cli_state
*cli2
;
4825 const char *fname
= "\\readonly.file";
4826 uint16_t fnum1
, fnum2
;
4829 bool correct
= True
;
4833 printf("starting open test\n");
4835 if (!torture_open_connection(&cli1
, 0)) {
4839 cli_setatr(cli1
, fname
, 0, 0);
4840 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4842 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
4844 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum1
);
4845 if (!NT_STATUS_IS_OK(status
)) {
4846 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
4850 status
= cli_close(cli1
, fnum1
);
4851 if (!NT_STATUS_IS_OK(status
)) {
4852 printf("close2 failed (%s)\n", nt_errstr(status
));
4856 status
= cli_setatr(cli1
, fname
, FILE_ATTRIBUTE_READONLY
, 0);
4857 if (!NT_STATUS_IS_OK(status
)) {
4858 printf("cli_setatr failed (%s)\n", nt_errstr(status
));
4862 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_WRITE
, &fnum1
);
4863 if (!NT_STATUS_IS_OK(status
)) {
4864 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
4868 /* This will fail - but the error should be ERRnoaccess, not ERRbadshare. */
4869 status
= cli_openx(cli1
, fname
, O_RDWR
, DENY_ALL
, &fnum2
);
4871 if (check_error(__LINE__
, status
, ERRDOS
, ERRnoaccess
,
4872 NT_STATUS_ACCESS_DENIED
)) {
4873 printf("correct error code ERRDOS/ERRnoaccess returned\n");
4876 printf("finished open test 1\n");
4878 cli_close(cli1
, fnum1
);
4880 /* Now try not readonly and ensure ERRbadshare is returned. */
4882 cli_setatr(cli1
, fname
, 0, 0);
4884 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_WRITE
, &fnum1
);
4885 if (!NT_STATUS_IS_OK(status
)) {
4886 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
4890 /* This will fail - but the error should be ERRshare. */
4891 status
= cli_openx(cli1
, fname
, O_RDWR
, DENY_ALL
, &fnum2
);
4893 if (check_error(__LINE__
, status
, ERRDOS
, ERRbadshare
,
4894 NT_STATUS_SHARING_VIOLATION
)) {
4895 printf("correct error code ERRDOS/ERRbadshare returned\n");
4898 status
= cli_close(cli1
, fnum1
);
4899 if (!NT_STATUS_IS_OK(status
)) {
4900 printf("close2 failed (%s)\n", nt_errstr(status
));
4904 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4906 printf("finished open test 2\n");
4908 /* Test truncate open disposition on file opened for read. */
4909 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum1
);
4910 if (!NT_STATUS_IS_OK(status
)) {
4911 printf("(3) open (1) of %s failed (%s)\n", fname
, nt_errstr(status
));
4915 /* write 20 bytes. */
4917 memset(buf
, '\0', 20);
4919 status
= cli_writeall(cli1
, fnum1
, 0, (uint8_t *)buf
, 0, 20, NULL
);
4920 if (!NT_STATUS_IS_OK(status
)) {
4921 printf("write failed (%s)\n", nt_errstr(status
));
4925 status
= cli_close(cli1
, fnum1
);
4926 if (!NT_STATUS_IS_OK(status
)) {
4927 printf("(3) close1 failed (%s)\n", nt_errstr(status
));
4931 /* Ensure size == 20. */
4932 status
= cli_getatr(cli1
, fname
, NULL
, &fsize
, NULL
);
4933 if (!NT_STATUS_IS_OK(status
)) {
4934 printf("(3) getatr failed (%s)\n", nt_errstr(status
));
4939 printf("(3) file size != 20\n");
4943 /* Now test if we can truncate a file opened for readonly. */
4944 status
= cli_openx(cli1
, fname
, O_RDONLY
|O_TRUNC
, DENY_NONE
, &fnum1
);
4945 if (!NT_STATUS_IS_OK(status
)) {
4946 printf("(3) open (2) of %s failed (%s)\n", fname
, nt_errstr(status
));
4950 status
= cli_close(cli1
, fnum1
);
4951 if (!NT_STATUS_IS_OK(status
)) {
4952 printf("close2 failed (%s)\n", nt_errstr(status
));
4956 /* Ensure size == 0. */
4957 status
= cli_getatr(cli1
, fname
, NULL
, &fsize
, NULL
);
4958 if (!NT_STATUS_IS_OK(status
)) {
4959 printf("(3) getatr failed (%s)\n", nt_errstr(status
));
4964 printf("(3) file size != 0\n");
4967 printf("finished open test 3\n");
4969 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4971 printf("Do ctemp tests\n");
4972 status
= cli_ctemp(cli1
, talloc_tos(), "\\", &fnum1
, &tmp_path
);
4973 if (!NT_STATUS_IS_OK(status
)) {
4974 printf("ctemp failed (%s)\n", nt_errstr(status
));
4978 printf("ctemp gave path %s\n", tmp_path
);
4979 status
= cli_close(cli1
, fnum1
);
4980 if (!NT_STATUS_IS_OK(status
)) {
4981 printf("close of temp failed (%s)\n", nt_errstr(status
));
4984 status
= cli_unlink(cli1
, tmp_path
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4985 if (!NT_STATUS_IS_OK(status
)) {
4986 printf("unlink of temp failed (%s)\n", nt_errstr(status
));
4989 /* Test the non-io opens... */
4991 if (!torture_open_connection(&cli2
, 1)) {
4995 cli_setatr(cli2
, fname
, 0, 0);
4996 cli_unlink(cli2
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4998 smbXcli_conn_set_sockopt(cli2
->conn
, sockops
);
5000 printf("TEST #1 testing 2 non-io opens (no delete)\n");
5001 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_ATTRIBUTES
,
5002 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5003 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5004 if (!NT_STATUS_IS_OK(status
)) {
5005 printf("TEST #1 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5009 status
= cli_ntcreate(cli2
, fname
, 0, FILE_READ_ATTRIBUTES
,
5010 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5011 FILE_OPEN_IF
, 0, 0, &fnum2
);
5012 if (!NT_STATUS_IS_OK(status
)) {
5013 printf("TEST #1 open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5017 status
= cli_close(cli1
, fnum1
);
5018 if (!NT_STATUS_IS_OK(status
)) {
5019 printf("TEST #1 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5023 status
= cli_close(cli2
, fnum2
);
5024 if (!NT_STATUS_IS_OK(status
)) {
5025 printf("TEST #1 close 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5029 printf("non-io open test #1 passed.\n");
5031 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5033 printf("TEST #2 testing 2 non-io opens (first with delete)\n");
5035 status
= cli_ntcreate(cli1
, fname
, 0,
5036 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5037 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5038 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5039 if (!NT_STATUS_IS_OK(status
)) {
5040 printf("TEST #2 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5044 status
= cli_ntcreate(cli2
, fname
, 0, FILE_READ_ATTRIBUTES
,
5045 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5046 FILE_OPEN_IF
, 0, 0, &fnum2
);
5047 if (!NT_STATUS_IS_OK(status
)) {
5048 printf("TEST #2 open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5052 status
= cli_close(cli1
, fnum1
);
5053 if (!NT_STATUS_IS_OK(status
)) {
5054 printf("TEST #2 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5058 status
= cli_close(cli2
, fnum2
);
5059 if (!NT_STATUS_IS_OK(status
)) {
5060 printf("TEST #2 close 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5064 printf("non-io open test #2 passed.\n");
5066 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5068 printf("TEST #3 testing 2 non-io opens (second with delete)\n");
5070 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_ATTRIBUTES
,
5071 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5072 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5073 if (!NT_STATUS_IS_OK(status
)) {
5074 printf("TEST #3 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5078 status
= cli_ntcreate(cli2
, fname
, 0,
5079 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5080 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5081 FILE_OPEN_IF
, 0, 0, &fnum2
);
5082 if (!NT_STATUS_IS_OK(status
)) {
5083 printf("TEST #3 open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5087 status
= cli_close(cli1
, fnum1
);
5088 if (!NT_STATUS_IS_OK(status
)) {
5089 printf("TEST #3 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5093 status
= cli_close(cli2
, fnum2
);
5094 if (!NT_STATUS_IS_OK(status
)) {
5095 printf("TEST #3 close 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5099 printf("non-io open test #3 passed.\n");
5101 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5103 printf("TEST #4 testing 2 non-io opens (both with delete)\n");
5105 status
= cli_ntcreate(cli1
, fname
, 0,
5106 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5107 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5108 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5109 if (!NT_STATUS_IS_OK(status
)) {
5110 printf("TEST #4 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5114 status
= cli_ntcreate(cli2
, fname
, 0,
5115 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5116 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5117 FILE_OPEN_IF
, 0, 0, &fnum2
);
5118 if (NT_STATUS_IS_OK(status
)) {
5119 printf("TEST #4 open 2 of %s SUCCEEDED - should have failed (%s)\n", fname
, nt_errstr(status
));
5123 printf("TEST #4 open 2 of %s gave %s (correct error should be %s)\n", fname
, nt_errstr(status
), "sharing violation");
5125 status
= cli_close(cli1
, fnum1
);
5126 if (!NT_STATUS_IS_OK(status
)) {
5127 printf("TEST #4 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5131 printf("non-io open test #4 passed.\n");
5133 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5135 printf("TEST #5 testing 2 non-io opens (both with delete - both with file share delete)\n");
5137 status
= cli_ntcreate(cli1
, fname
, 0,
5138 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5139 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_DELETE
,
5140 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5141 if (!NT_STATUS_IS_OK(status
)) {
5142 printf("TEST #5 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5146 status
= cli_ntcreate(cli2
, fname
, 0,
5147 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5148 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_DELETE
,
5149 FILE_OPEN_IF
, 0, 0, &fnum2
);
5150 if (!NT_STATUS_IS_OK(status
)) {
5151 printf("TEST #5 open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5155 status
= cli_close(cli1
, fnum1
);
5156 if (!NT_STATUS_IS_OK(status
)) {
5157 printf("TEST #5 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5161 status
= cli_close(cli2
, fnum2
);
5162 if (!NT_STATUS_IS_OK(status
)) {
5163 printf("TEST #5 close 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5167 printf("non-io open test #5 passed.\n");
5169 printf("TEST #6 testing 1 non-io open, one io open\n");
5171 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5173 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_DATA
,
5174 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5175 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5176 if (!NT_STATUS_IS_OK(status
)) {
5177 printf("TEST #6 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5181 status
= cli_ntcreate(cli2
, fname
, 0, FILE_READ_ATTRIBUTES
,
5182 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_READ
,
5183 FILE_OPEN_IF
, 0, 0, &fnum2
);
5184 if (!NT_STATUS_IS_OK(status
)) {
5185 printf("TEST #6 open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5189 status
= cli_close(cli1
, fnum1
);
5190 if (!NT_STATUS_IS_OK(status
)) {
5191 printf("TEST #6 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5195 status
= cli_close(cli2
, fnum2
);
5196 if (!NT_STATUS_IS_OK(status
)) {
5197 printf("TEST #6 close 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5201 printf("non-io open test #6 passed.\n");
5203 printf("TEST #7 testing 1 non-io open, one io open with delete\n");
5205 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5207 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_DATA
,
5208 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5209 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5210 if (!NT_STATUS_IS_OK(status
)) {
5211 printf("TEST #7 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5215 status
= cli_ntcreate(cli2
, fname
, 0,
5216 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5217 FILE_ATTRIBUTE_NORMAL
,
5218 FILE_SHARE_READ
|FILE_SHARE_DELETE
,
5219 FILE_OPEN_IF
, 0, 0, &fnum2
);
5220 if (NT_STATUS_IS_OK(status
)) {
5221 printf("TEST #7 open 2 of %s SUCCEEDED - should have failed (%s)\n", fname
, nt_errstr(status
));
5225 printf("TEST #7 open 2 of %s gave %s (correct error should be %s)\n", fname
, nt_errstr(status
), "sharing violation");
5227 status
= cli_close(cli1
, fnum1
);
5228 if (!NT_STATUS_IS_OK(status
)) {
5229 printf("TEST #7 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5233 printf("non-io open test #7 passed.\n");
5235 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5237 printf("TEST #8 testing open without WRITE_ATTRIBUTES, updating close write time.\n");
5238 status
= cli_ntcreate(cli1
, fname
, 0, FILE_WRITE_DATA
, FILE_ATTRIBUTE_NORMAL
,
5239 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
5240 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5241 if (!NT_STATUS_IS_OK(status
)) {
5242 printf("TEST #8 open of %s failed (%s)\n", fname
, nt_errstr(status
));
5247 /* Write to ensure we have to update the file time. */
5248 status
= cli_writeall(cli1
, fnum1
, 0, (const uint8_t *)"TEST DATA\n", 0, 10,
5250 if (!NT_STATUS_IS_OK(status
)) {
5251 printf("TEST #8 cli_write failed: %s\n", nt_errstr(status
));
5256 status
= cli_close(cli1
, fnum1
);
5257 if (!NT_STATUS_IS_OK(status
)) {
5258 printf("TEST #8 close of %s failed (%s)\n", fname
, nt_errstr(status
));
5264 if (!torture_close_connection(cli1
)) {
5267 if (!torture_close_connection(cli2
)) {
5274 NTSTATUS
torture_setup_unix_extensions(struct cli_state
*cli
)
5276 uint16 major
, minor
;
5277 uint32 caplow
, caphigh
;
5280 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
5281 printf("Server doesn't support UNIX CIFS extensions.\n");
5282 return NT_STATUS_NOT_SUPPORTED
;
5285 status
= cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
,
5287 if (!NT_STATUS_IS_OK(status
)) {
5288 printf("Server didn't return UNIX CIFS extensions: %s\n",
5293 status
= cli_set_unix_extensions_capabilities(cli
, major
, minor
,
5295 if (!NT_STATUS_IS_OK(status
)) {
5296 printf("Server doesn't support setting UNIX CIFS extensions: "
5297 "%s.\n", nt_errstr(status
));
5301 return NT_STATUS_OK
;
5305 Test POSIX open /mkdir calls.
5307 static bool run_simple_posix_open_test(int dummy
)
5309 static struct cli_state
*cli1
;
5310 const char *fname
= "posix:file";
5311 const char *hname
= "posix:hlink";
5312 const char *sname
= "posix:symlink";
5313 const char *dname
= "posix:dir";
5316 uint16_t fnum1
= (uint16_t)-1;
5317 SMB_STRUCT_STAT sbuf
;
5318 bool correct
= false;
5322 printf("Starting simple POSIX open test\n");
5324 if (!torture_open_connection(&cli1
, 0)) {
5328 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
5330 status
= torture_setup_unix_extensions(cli1
);
5331 if (!NT_STATUS_IS_OK(status
)) {
5335 cli_setatr(cli1
, fname
, 0, 0);
5336 cli_posix_unlink(cli1
, fname
);
5337 cli_setatr(cli1
, dname
, 0, 0);
5338 cli_posix_rmdir(cli1
, dname
);
5339 cli_setatr(cli1
, hname
, 0, 0);
5340 cli_posix_unlink(cli1
, hname
);
5341 cli_setatr(cli1
, sname
, 0, 0);
5342 cli_posix_unlink(cli1
, sname
);
5344 /* Create a directory. */
5345 status
= cli_posix_mkdir(cli1
, dname
, 0777);
5346 if (!NT_STATUS_IS_OK(status
)) {
5347 printf("POSIX mkdir of %s failed (%s)\n", dname
, nt_errstr(status
));
5351 status
= cli_posix_open(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
,
5353 if (!NT_STATUS_IS_OK(status
)) {
5354 printf("POSIX create of %s failed (%s)\n", fname
, nt_errstr(status
));
5358 /* Test ftruncate - set file size. */
5359 status
= cli_ftruncate(cli1
, fnum1
, 1000);
5360 if (!NT_STATUS_IS_OK(status
)) {
5361 printf("ftruncate failed (%s)\n", nt_errstr(status
));
5365 /* Ensure st_size == 1000 */
5366 status
= cli_posix_stat(cli1
, fname
, &sbuf
);
5367 if (!NT_STATUS_IS_OK(status
)) {
5368 printf("stat failed (%s)\n", nt_errstr(status
));
5372 if (sbuf
.st_ex_size
!= 1000) {
5373 printf("ftruncate - stat size (%u) != 1000\n", (unsigned int)sbuf
.st_ex_size
);
5377 /* Ensure st_mode == 0600 */
5378 if ((sbuf
.st_ex_mode
& 07777) != 0600) {
5379 printf("posix_open - bad permissions 0%o != 0600\n",
5380 (unsigned int)(sbuf
.st_ex_mode
& 07777));
5384 /* Test ftruncate - set file size back to zero. */
5385 status
= cli_ftruncate(cli1
, fnum1
, 0);
5386 if (!NT_STATUS_IS_OK(status
)) {
5387 printf("ftruncate failed (%s)\n", nt_errstr(status
));
5391 status
= cli_close(cli1
, fnum1
);
5392 if (!NT_STATUS_IS_OK(status
)) {
5393 printf("close failed (%s)\n", nt_errstr(status
));
5397 /* Now open the file again for read only. */
5398 status
= cli_posix_open(cli1
, fname
, O_RDONLY
, 0, &fnum1
);
5399 if (!NT_STATUS_IS_OK(status
)) {
5400 printf("POSIX open of %s failed (%s)\n", fname
, nt_errstr(status
));
5404 /* Now unlink while open. */
5405 status
= cli_posix_unlink(cli1
, fname
);
5406 if (!NT_STATUS_IS_OK(status
)) {
5407 printf("POSIX unlink of %s failed (%s)\n", fname
, nt_errstr(status
));
5411 status
= cli_close(cli1
, fnum1
);
5412 if (!NT_STATUS_IS_OK(status
)) {
5413 printf("close(2) failed (%s)\n", nt_errstr(status
));
5417 /* Ensure the file has gone. */
5418 status
= cli_posix_open(cli1
, fname
, O_RDONLY
, 0, &fnum1
);
5419 if (NT_STATUS_IS_OK(status
)) {
5420 printf("POSIX open of %s succeeded, should have been deleted.\n", fname
);
5424 /* Create again to test open with O_TRUNC. */
5425 status
= cli_posix_open(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, 0600, &fnum1
);
5426 if (!NT_STATUS_IS_OK(status
)) {
5427 printf("POSIX create of %s failed (%s)\n", fname
, nt_errstr(status
));
5431 /* Test ftruncate - set file size. */
5432 status
= cli_ftruncate(cli1
, fnum1
, 1000);
5433 if (!NT_STATUS_IS_OK(status
)) {
5434 printf("ftruncate failed (%s)\n", nt_errstr(status
));
5438 /* Ensure st_size == 1000 */
5439 status
= cli_posix_stat(cli1
, fname
, &sbuf
);
5440 if (!NT_STATUS_IS_OK(status
)) {
5441 printf("stat failed (%s)\n", nt_errstr(status
));
5445 if (sbuf
.st_ex_size
!= 1000) {
5446 printf("ftruncate - stat size (%u) != 1000\n", (unsigned int)sbuf
.st_ex_size
);
5450 status
= cli_close(cli1
, fnum1
);
5451 if (!NT_STATUS_IS_OK(status
)) {
5452 printf("close(2) failed (%s)\n", nt_errstr(status
));
5456 /* Re-open with O_TRUNC. */
5457 status
= cli_posix_open(cli1
, fname
, O_WRONLY
|O_TRUNC
, 0600, &fnum1
);
5458 if (!NT_STATUS_IS_OK(status
)) {
5459 printf("POSIX create of %s failed (%s)\n", fname
, nt_errstr(status
));
5463 /* Ensure st_size == 0 */
5464 status
= cli_posix_stat(cli1
, fname
, &sbuf
);
5465 if (!NT_STATUS_IS_OK(status
)) {
5466 printf("stat failed (%s)\n", nt_errstr(status
));
5470 if (sbuf
.st_ex_size
!= 0) {
5471 printf("O_TRUNC - stat size (%u) != 0\n", (unsigned int)sbuf
.st_ex_size
);
5475 status
= cli_close(cli1
, fnum1
);
5476 if (!NT_STATUS_IS_OK(status
)) {
5477 printf("close failed (%s)\n", nt_errstr(status
));
5481 status
= cli_posix_unlink(cli1
, fname
);
5482 if (!NT_STATUS_IS_OK(status
)) {
5483 printf("POSIX unlink of %s failed (%s)\n", fname
, nt_errstr(status
));
5487 status
= cli_posix_open(cli1
, dname
, O_RDONLY
, 0, &fnum1
);
5488 if (!NT_STATUS_IS_OK(status
)) {
5489 printf("POSIX open directory O_RDONLY of %s failed (%s)\n",
5490 dname
, nt_errstr(status
));
5494 cli_close(cli1
, fnum1
);
5496 /* What happens when we try and POSIX open a directory for write ? */
5497 status
= cli_posix_open(cli1
, dname
, O_RDWR
, 0, &fnum1
);
5498 if (NT_STATUS_IS_OK(status
)) {
5499 printf("POSIX open of directory %s succeeded, should have failed.\n", fname
);
5502 if (!check_both_error(__LINE__
, status
, ERRDOS
, EISDIR
,
5503 NT_STATUS_FILE_IS_A_DIRECTORY
)) {
5508 /* Create the file. */
5509 status
= cli_posix_open(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
,
5511 if (!NT_STATUS_IS_OK(status
)) {
5512 printf("POSIX create of %s failed (%s)\n", fname
, nt_errstr(status
));
5516 /* Write some data into it. */
5517 status
= cli_writeall(cli1
, fnum1
, 0, (const uint8_t *)"TEST DATA\n", 0, 10,
5519 if (!NT_STATUS_IS_OK(status
)) {
5520 printf("cli_write failed: %s\n", nt_errstr(status
));
5524 cli_close(cli1
, fnum1
);
5526 /* Now create a hardlink. */
5527 status
= cli_posix_hardlink(cli1
, fname
, hname
);
5528 if (!NT_STATUS_IS_OK(status
)) {
5529 printf("POSIX hardlink of %s failed (%s)\n", hname
, nt_errstr(status
));
5533 /* Now create a symlink. */
5534 status
= cli_posix_symlink(cli1
, fname
, sname
);
5535 if (!NT_STATUS_IS_OK(status
)) {
5536 printf("POSIX symlink of %s failed (%s)\n", sname
, nt_errstr(status
));
5540 /* Open the hardlink for read. */
5541 status
= cli_posix_open(cli1
, hname
, O_RDONLY
, 0, &fnum1
);
5542 if (!NT_STATUS_IS_OK(status
)) {
5543 printf("POSIX open of %s failed (%s)\n", hname
, nt_errstr(status
));
5547 status
= cli_read(cli1
, fnum1
, buf
, 0, 10, &nread
);
5548 if (!NT_STATUS_IS_OK(status
)) {
5549 printf("POSIX read of %s failed (%s)\n", hname
,
5552 } else if (nread
!= 10) {
5553 printf("POSIX read of %s failed. Received %ld, expected %d\n",
5554 hname
, (unsigned long)nread
, 10);
5558 if (memcmp(buf
, "TEST DATA\n", 10)) {
5559 printf("invalid data read from hardlink\n");
5563 /* Do a POSIX lock/unlock. */
5564 status
= cli_posix_lock(cli1
, fnum1
, 0, 100, true, READ_LOCK
);
5565 if (!NT_STATUS_IS_OK(status
)) {
5566 printf("POSIX lock failed %s\n", nt_errstr(status
));
5570 /* Punch a hole in the locked area. */
5571 status
= cli_posix_unlock(cli1
, fnum1
, 10, 80);
5572 if (!NT_STATUS_IS_OK(status
)) {
5573 printf("POSIX unlock failed %s\n", nt_errstr(status
));
5577 cli_close(cli1
, fnum1
);
5579 /* Open the symlink for read - this should fail. A POSIX
5580 client should not be doing opens on a symlink. */
5581 status
= cli_posix_open(cli1
, sname
, O_RDONLY
, 0, &fnum1
);
5582 if (NT_STATUS_IS_OK(status
)) {
5583 printf("POSIX open of %s succeeded (should have failed)\n", sname
);
5586 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRbadpath
,
5587 NT_STATUS_OBJECT_PATH_NOT_FOUND
)) {
5588 printf("POSIX open of %s should have failed "
5589 "with NT_STATUS_OBJECT_PATH_NOT_FOUND, "
5590 "failed with %s instead.\n",
5591 sname
, nt_errstr(status
));
5596 status
= cli_posix_readlink(cli1
, sname
, namebuf
, sizeof(namebuf
));
5597 if (!NT_STATUS_IS_OK(status
)) {
5598 printf("POSIX readlink on %s failed (%s)\n", sname
, nt_errstr(status
));
5602 if (strcmp(namebuf
, fname
) != 0) {
5603 printf("POSIX readlink on %s failed to match name %s (read %s)\n",
5604 sname
, fname
, namebuf
);
5608 status
= cli_posix_rmdir(cli1
, dname
);
5609 if (!NT_STATUS_IS_OK(status
)) {
5610 printf("POSIX rmdir failed (%s)\n", nt_errstr(status
));
5614 /* Check directory opens with a specific permission. */
5615 status
= cli_posix_mkdir(cli1
, dname
, 0700);
5616 if (!NT_STATUS_IS_OK(status
)) {
5617 printf("POSIX mkdir of %s failed (%s)\n", dname
, nt_errstr(status
));
5621 /* Ensure st_mode == 0700 */
5622 status
= cli_posix_stat(cli1
, dname
, &sbuf
);
5623 if (!NT_STATUS_IS_OK(status
)) {
5624 printf("stat failed (%s)\n", nt_errstr(status
));
5628 if ((sbuf
.st_ex_mode
& 07777) != 0700) {
5629 printf("posix_mkdir - bad permissions 0%o != 0700\n",
5630 (unsigned int)(sbuf
.st_ex_mode
& 07777));
5634 printf("Simple POSIX open test passed\n");
5639 if (fnum1
!= (uint16_t)-1) {
5640 cli_close(cli1
, fnum1
);
5641 fnum1
= (uint16_t)-1;
5644 cli_setatr(cli1
, sname
, 0, 0);
5645 cli_posix_unlink(cli1
, sname
);
5646 cli_setatr(cli1
, hname
, 0, 0);
5647 cli_posix_unlink(cli1
, hname
);
5648 cli_setatr(cli1
, fname
, 0, 0);
5649 cli_posix_unlink(cli1
, fname
);
5650 cli_setatr(cli1
, dname
, 0, 0);
5651 cli_posix_rmdir(cli1
, dname
);
5653 if (!torture_close_connection(cli1
)) {
5661 static uint32 open_attrs_table
[] = {
5662 FILE_ATTRIBUTE_NORMAL
,
5663 FILE_ATTRIBUTE_ARCHIVE
,
5664 FILE_ATTRIBUTE_READONLY
,
5665 FILE_ATTRIBUTE_HIDDEN
,
5666 FILE_ATTRIBUTE_SYSTEM
,
5668 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
,
5669 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
,
5670 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
,
5671 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
,
5672 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
,
5673 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
|FILE_ATTRIBUTE_SYSTEM
,
5675 FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
,
5676 FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
,
5677 FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
|FILE_ATTRIBUTE_SYSTEM
,
5678 FILE_ATTRIBUTE_HIDDEN
,FILE_ATTRIBUTE_SYSTEM
,
5681 struct trunc_open_results
{
5688 static struct trunc_open_results attr_results
[] = {
5689 { 0, FILE_ATTRIBUTE_NORMAL
, FILE_ATTRIBUTE_NORMAL
, FILE_ATTRIBUTE_ARCHIVE
},
5690 { 1, FILE_ATTRIBUTE_NORMAL
, FILE_ATTRIBUTE_ARCHIVE
, FILE_ATTRIBUTE_ARCHIVE
},
5691 { 2, FILE_ATTRIBUTE_NORMAL
, FILE_ATTRIBUTE_READONLY
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
},
5692 { 16, FILE_ATTRIBUTE_ARCHIVE
, FILE_ATTRIBUTE_NORMAL
, FILE_ATTRIBUTE_ARCHIVE
},
5693 { 17, FILE_ATTRIBUTE_ARCHIVE
, FILE_ATTRIBUTE_ARCHIVE
, FILE_ATTRIBUTE_ARCHIVE
},
5694 { 18, FILE_ATTRIBUTE_ARCHIVE
, FILE_ATTRIBUTE_READONLY
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
},
5695 { 51, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5696 { 54, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5697 { 56, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
},
5698 { 68, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5699 { 71, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5700 { 73, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
},
5701 { 99, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_HIDDEN
,FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5702 { 102, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5703 { 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
},
5704 { 116, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5705 { 119, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5706 { 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
},
5707 { 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
},
5708 { 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
},
5709 { 227, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5710 { 230, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5711 { 232, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
},
5712 { 244, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5713 { 247, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5714 { 249, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
}
5717 static bool run_openattrtest(int dummy
)
5719 static struct cli_state
*cli1
;
5720 const char *fname
= "\\openattr.file";
5722 bool correct
= True
;
5724 unsigned int i
, j
, k
, l
;
5727 printf("starting open attr test\n");
5729 if (!torture_open_connection(&cli1
, 0)) {
5733 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
5735 for (k
= 0, i
= 0; i
< sizeof(open_attrs_table
)/sizeof(uint32
); i
++) {
5736 cli_setatr(cli1
, fname
, 0, 0);
5737 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5739 status
= cli_ntcreate(cli1
, fname
, 0, FILE_WRITE_DATA
,
5740 open_attrs_table
[i
], FILE_SHARE_NONE
,
5741 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5742 if (!NT_STATUS_IS_OK(status
)) {
5743 printf("open %d (1) of %s failed (%s)\n", i
, fname
, nt_errstr(status
));
5747 status
= cli_close(cli1
, fnum1
);
5748 if (!NT_STATUS_IS_OK(status
)) {
5749 printf("close %d (1) of %s failed (%s)\n", i
, fname
, nt_errstr(status
));
5753 for (j
= 0; j
< sizeof(open_attrs_table
)/sizeof(uint32
); j
++) {
5754 status
= cli_ntcreate(cli1
, fname
, 0,
5755 FILE_READ_DATA
|FILE_WRITE_DATA
,
5756 open_attrs_table
[j
],
5757 FILE_SHARE_NONE
, FILE_OVERWRITE
,
5759 if (!NT_STATUS_IS_OK(status
)) {
5760 for (l
= 0; l
< sizeof(attr_results
)/sizeof(struct trunc_open_results
); l
++) {
5761 if (attr_results
[l
].num
== k
) {
5762 printf("[%d] trunc open 0x%x -> 0x%x of %s failed - should have succeeded !(0x%x:%s)\n",
5763 k
, open_attrs_table
[i
],
5764 open_attrs_table
[j
],
5765 fname
, NT_STATUS_V(status
), nt_errstr(status
));
5770 if (!NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
5771 printf("[%d] trunc open 0x%x -> 0x%x failed with wrong error code %s\n",
5772 k
, open_attrs_table
[i
], open_attrs_table
[j
],
5777 printf("[%d] trunc open 0x%x -> 0x%x failed\n", k
, open_attrs_table
[i
], open_attrs_table
[j
]);
5783 status
= cli_close(cli1
, fnum1
);
5784 if (!NT_STATUS_IS_OK(status
)) {
5785 printf("close %d (2) of %s failed (%s)\n", j
, fname
, nt_errstr(status
));
5789 status
= cli_getatr(cli1
, fname
, &attr
, NULL
, NULL
);
5790 if (!NT_STATUS_IS_OK(status
)) {
5791 printf("getatr(2) failed (%s)\n", nt_errstr(status
));
5796 printf("[%d] getatr check [0x%x] trunc [0x%x] got attr 0x%x\n",
5797 k
, open_attrs_table
[i
], open_attrs_table
[j
], attr
);
5800 for (l
= 0; l
< sizeof(attr_results
)/sizeof(struct trunc_open_results
); l
++) {
5801 if (attr_results
[l
].num
== k
) {
5802 if (attr
!= attr_results
[l
].result_attr
||
5803 open_attrs_table
[i
] != attr_results
[l
].init_attr
||
5804 open_attrs_table
[j
] != attr_results
[l
].trunc_attr
) {
5805 printf("getatr check failed. [0x%x] trunc [0x%x] got attr 0x%x, should be 0x%x\n",
5806 open_attrs_table
[i
],
5807 open_attrs_table
[j
],
5809 attr_results
[l
].result_attr
);
5819 cli_setatr(cli1
, fname
, 0, 0);
5820 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5822 printf("open attr test %s.\n", correct
? "passed" : "failed");
5824 if (!torture_close_connection(cli1
)) {
5830 static NTSTATUS
list_fn(const char *mnt
, struct file_info
*finfo
,
5831 const char *name
, void *state
)
5833 int *matched
= (int *)state
;
5834 if (matched
!= NULL
) {
5837 return NT_STATUS_OK
;
5841 test directory listing speed
5843 static bool run_dirtest(int dummy
)
5846 static struct cli_state
*cli
;
5848 struct timeval core_start
;
5849 bool correct
= True
;
5852 printf("starting directory test\n");
5854 if (!torture_open_connection(&cli
, 0)) {
5858 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
5861 for (i
=0;i
<torture_numops
;i
++) {
5863 slprintf(fname
, sizeof(fname
), "\\%x", (int)random());
5864 if (!NT_STATUS_IS_OK(cli_openx(cli
, fname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum
))) {
5865 fprintf(stderr
,"Failed to open %s\n", fname
);
5868 cli_close(cli
, fnum
);
5871 core_start
= timeval_current();
5874 cli_list(cli
, "a*.*", 0, list_fn
, &matched
);
5875 printf("Matched %d\n", matched
);
5878 cli_list(cli
, "b*.*", 0, list_fn
, &matched
);
5879 printf("Matched %d\n", matched
);
5882 cli_list(cli
, "xyzabc", 0, list_fn
, &matched
);
5883 printf("Matched %d\n", matched
);
5885 printf("dirtest core %g seconds\n", timeval_elapsed(&core_start
));
5888 for (i
=0;i
<torture_numops
;i
++) {
5890 slprintf(fname
, sizeof(fname
), "\\%x", (int)random());
5891 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5894 if (!torture_close_connection(cli
)) {
5898 printf("finished dirtest\n");
5903 static NTSTATUS
del_fn(const char *mnt
, struct file_info
*finfo
, const char *mask
,
5906 struct cli_state
*pcli
= (struct cli_state
*)state
;
5908 slprintf(fname
, sizeof(fname
), "\\LISTDIR\\%s", finfo
->name
);
5910 if (strcmp(finfo
->name
, ".") == 0 || strcmp(finfo
->name
, "..") == 0)
5911 return NT_STATUS_OK
;
5913 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
5914 if (!NT_STATUS_IS_OK(cli_rmdir(pcli
, fname
)))
5915 printf("del_fn: failed to rmdir %s\n,", fname
);
5917 if (!NT_STATUS_IS_OK(cli_unlink(pcli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
)))
5918 printf("del_fn: failed to unlink %s\n,", fname
);
5920 return NT_STATUS_OK
;
5925 sees what IOCTLs are supported
5927 bool torture_ioctl_test(int dummy
)
5929 static struct cli_state
*cli
;
5930 uint16_t device
, function
;
5932 const char *fname
= "\\ioctl.dat";
5936 if (!torture_open_connection(&cli
, 0)) {
5940 printf("starting ioctl test\n");
5942 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5944 status
= cli_openx(cli
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum
);
5945 if (!NT_STATUS_IS_OK(status
)) {
5946 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
5950 status
= cli_raw_ioctl(cli
, fnum
, 0x2d0000 | (0x0420<<2), &blob
);
5951 printf("ioctl device info: %s\n", nt_errstr(status
));
5953 status
= cli_raw_ioctl(cli
, fnum
, IOCTL_QUERY_JOB_INFO
, &blob
);
5954 printf("ioctl job info: %s\n", nt_errstr(status
));
5956 for (device
=0;device
<0x100;device
++) {
5957 printf("ioctl test with device = 0x%x\n", device
);
5958 for (function
=0;function
<0x100;function
++) {
5959 uint32 code
= (device
<<16) | function
;
5961 status
= cli_raw_ioctl(cli
, fnum
, code
, &blob
);
5963 if (NT_STATUS_IS_OK(status
)) {
5964 printf("ioctl 0x%x OK : %d bytes\n", (int)code
,
5966 data_blob_free(&blob
);
5971 if (!torture_close_connection(cli
)) {
5980 tries varients of chkpath
5982 bool torture_chkpath_test(int dummy
)
5984 static struct cli_state
*cli
;
5989 if (!torture_open_connection(&cli
, 0)) {
5993 printf("starting chkpath test\n");
5995 /* cleanup from an old run */
5996 cli_rmdir(cli
, "\\chkpath.dir\\dir2");
5997 cli_unlink(cli
, "\\chkpath.dir\\*", FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5998 cli_rmdir(cli
, "\\chkpath.dir");
6000 status
= cli_mkdir(cli
, "\\chkpath.dir");
6001 if (!NT_STATUS_IS_OK(status
)) {
6002 printf("mkdir1 failed : %s\n", nt_errstr(status
));
6006 status
= cli_mkdir(cli
, "\\chkpath.dir\\dir2");
6007 if (!NT_STATUS_IS_OK(status
)) {
6008 printf("mkdir2 failed : %s\n", nt_errstr(status
));
6012 status
= cli_openx(cli
, "\\chkpath.dir\\foo.txt", O_RDWR
|O_CREAT
|O_EXCL
,
6014 if (!NT_STATUS_IS_OK(status
)) {
6015 printf("open1 failed (%s)\n", nt_errstr(status
));
6018 cli_close(cli
, fnum
);
6020 status
= cli_chkpath(cli
, "\\chkpath.dir");
6021 if (!NT_STATUS_IS_OK(status
)) {
6022 printf("chkpath1 failed: %s\n", nt_errstr(status
));
6026 status
= cli_chkpath(cli
, "\\chkpath.dir\\dir2");
6027 if (!NT_STATUS_IS_OK(status
)) {
6028 printf("chkpath2 failed: %s\n", nt_errstr(status
));
6032 status
= cli_chkpath(cli
, "\\chkpath.dir\\foo.txt");
6033 if (!NT_STATUS_IS_OK(status
)) {
6034 ret
= check_error(__LINE__
, status
, ERRDOS
, ERRbadpath
,
6035 NT_STATUS_NOT_A_DIRECTORY
);
6037 printf("* chkpath on a file should fail\n");
6041 status
= cli_chkpath(cli
, "\\chkpath.dir\\bar.txt");
6042 if (!NT_STATUS_IS_OK(status
)) {
6043 ret
= check_error(__LINE__
, status
, ERRDOS
, ERRbadfile
,
6044 NT_STATUS_OBJECT_NAME_NOT_FOUND
);
6046 printf("* chkpath on a non existent file should fail\n");
6050 status
= cli_chkpath(cli
, "\\chkpath.dir\\dirxx\\bar.txt");
6051 if (!NT_STATUS_IS_OK(status
)) {
6052 ret
= check_error(__LINE__
, status
, ERRDOS
, ERRbadpath
,
6053 NT_STATUS_OBJECT_PATH_NOT_FOUND
);
6055 printf("* chkpath on a non existent component should fail\n");
6059 cli_rmdir(cli
, "\\chkpath.dir\\dir2");
6060 cli_unlink(cli
, "\\chkpath.dir\\*", FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
6061 cli_rmdir(cli
, "\\chkpath.dir");
6063 if (!torture_close_connection(cli
)) {
6070 static bool run_eatest(int dummy
)
6072 static struct cli_state
*cli
;
6073 const char *fname
= "\\eatest.txt";
6074 bool correct
= True
;
6078 struct ea_struct
*ea_list
= NULL
;
6079 TALLOC_CTX
*mem_ctx
= talloc_init("eatest");
6082 printf("starting eatest\n");
6084 if (!torture_open_connection(&cli
, 0)) {
6085 talloc_destroy(mem_ctx
);
6089 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
6091 status
= cli_ntcreate(cli
, fname
, 0,
6092 FIRST_DESIRED_ACCESS
, FILE_ATTRIBUTE_ARCHIVE
,
6093 FILE_SHARE_NONE
, FILE_OVERWRITE_IF
,
6095 if (!NT_STATUS_IS_OK(status
)) {
6096 printf("open failed - %s\n", nt_errstr(status
));
6097 talloc_destroy(mem_ctx
);
6101 for (i
= 0; i
< 10; i
++) {
6102 fstring ea_name
, ea_val
;
6104 slprintf(ea_name
, sizeof(ea_name
), "EA_%d", i
);
6105 memset(ea_val
, (char)i
+1, i
+1);
6106 status
= cli_set_ea_fnum(cli
, fnum
, ea_name
, ea_val
, i
+1);
6107 if (!NT_STATUS_IS_OK(status
)) {
6108 printf("ea_set of name %s failed - %s\n", ea_name
,
6110 talloc_destroy(mem_ctx
);
6115 cli_close(cli
, fnum
);
6116 for (i
= 0; i
< 10; i
++) {
6117 fstring ea_name
, ea_val
;
6119 slprintf(ea_name
, sizeof(ea_name
), "EA_%d", i
+10);
6120 memset(ea_val
, (char)i
+1, i
+1);
6121 status
= cli_set_ea_path(cli
, fname
, ea_name
, ea_val
, i
+1);
6122 if (!NT_STATUS_IS_OK(status
)) {
6123 printf("ea_set of name %s failed - %s\n", ea_name
,
6125 talloc_destroy(mem_ctx
);
6130 status
= cli_get_ea_list_path(cli
, fname
, mem_ctx
, &num_eas
, &ea_list
);
6131 if (!NT_STATUS_IS_OK(status
)) {
6132 printf("ea_get list failed - %s\n", nt_errstr(status
));
6136 printf("num_eas = %d\n", (int)num_eas
);
6138 if (num_eas
!= 20) {
6139 printf("Should be 20 EA's stored... failing.\n");
6143 for (i
= 0; i
< num_eas
; i
++) {
6144 printf("%d: ea_name = %s. Val = ", i
, ea_list
[i
].name
);
6145 dump_data(0, ea_list
[i
].value
.data
,
6146 ea_list
[i
].value
.length
);
6149 /* Setting EA's to zero length deletes them. Test this */
6150 printf("Now deleting all EA's - case indepenent....\n");
6153 cli_set_ea_path(cli
, fname
, "", "", 0);
6155 for (i
= 0; i
< 20; i
++) {
6157 slprintf(ea_name
, sizeof(ea_name
), "ea_%d", i
);
6158 status
= cli_set_ea_path(cli
, fname
, ea_name
, "", 0);
6159 if (!NT_STATUS_IS_OK(status
)) {
6160 printf("ea_set of name %s failed - %s\n", ea_name
,
6162 talloc_destroy(mem_ctx
);
6168 status
= cli_get_ea_list_path(cli
, fname
, mem_ctx
, &num_eas
, &ea_list
);
6169 if (!NT_STATUS_IS_OK(status
)) {
6170 printf("ea_get list failed - %s\n", nt_errstr(status
));
6174 printf("num_eas = %d\n", (int)num_eas
);
6175 for (i
= 0; i
< num_eas
; i
++) {
6176 printf("%d: ea_name = %s. Val = ", i
, ea_list
[i
].name
);
6177 dump_data(0, ea_list
[i
].value
.data
,
6178 ea_list
[i
].value
.length
);
6182 printf("deleting EA's failed.\n");
6186 /* Try and delete a non existent EA. */
6187 status
= cli_set_ea_path(cli
, fname
, "foo", "", 0);
6188 if (!NT_STATUS_IS_OK(status
)) {
6189 printf("deleting non-existent EA 'foo' should succeed. %s\n",
6194 talloc_destroy(mem_ctx
);
6195 if (!torture_close_connection(cli
)) {
6202 static bool run_dirtest1(int dummy
)
6205 static struct cli_state
*cli
;
6208 bool correct
= True
;
6210 printf("starting directory test\n");
6212 if (!torture_open_connection(&cli
, 0)) {
6216 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
6218 cli_list(cli
, "\\LISTDIR\\*", 0, del_fn
, cli
);
6219 cli_list(cli
, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY
, del_fn
, cli
);
6220 cli_rmdir(cli
, "\\LISTDIR");
6221 cli_mkdir(cli
, "\\LISTDIR");
6223 /* Create 1000 files and 1000 directories. */
6224 for (i
=0;i
<1000;i
++) {
6226 slprintf(fname
, sizeof(fname
), "\\LISTDIR\\f%d", i
);
6227 if (!NT_STATUS_IS_OK(cli_ntcreate(cli
, fname
, 0, GENERIC_ALL_ACCESS
, FILE_ATTRIBUTE_ARCHIVE
,
6228 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OVERWRITE_IF
, 0, 0, &fnum
))) {
6229 fprintf(stderr
,"Failed to open %s\n", fname
);
6232 cli_close(cli
, fnum
);
6234 for (i
=0;i
<1000;i
++) {
6236 slprintf(fname
, sizeof(fname
), "\\LISTDIR\\d%d", i
);
6237 if (!NT_STATUS_IS_OK(cli_mkdir(cli
, fname
))) {
6238 fprintf(stderr
,"Failed to open %s\n", fname
);
6243 /* Now ensure that doing an old list sees both files and directories. */
6245 cli_list_old(cli
, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY
, list_fn
, &num_seen
);
6246 printf("num_seen = %d\n", num_seen
);
6247 /* We should see 100 files + 1000 directories + . and .. */
6248 if (num_seen
!= 2002)
6251 /* Ensure if we have the "must have" bits we only see the
6255 cli_list_old(cli
, "\\LISTDIR\\*", (FILE_ATTRIBUTE_DIRECTORY
<<8)|FILE_ATTRIBUTE_DIRECTORY
, list_fn
, &num_seen
);
6256 printf("num_seen = %d\n", num_seen
);
6257 if (num_seen
!= 1002)
6261 cli_list_old(cli
, "\\LISTDIR\\*", (FILE_ATTRIBUTE_ARCHIVE
<<8)|FILE_ATTRIBUTE_DIRECTORY
, list_fn
, &num_seen
);
6262 printf("num_seen = %d\n", num_seen
);
6263 if (num_seen
!= 1000)
6266 /* Delete everything. */
6267 cli_list(cli
, "\\LISTDIR\\*", 0, del_fn
, cli
);
6268 cli_list(cli
, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY
, del_fn
, cli
);
6269 cli_rmdir(cli
, "\\LISTDIR");
6272 printf("Matched %d\n", cli_list(cli
, "a*.*", 0, list_fn
, NULL
));
6273 printf("Matched %d\n", cli_list(cli
, "b*.*", 0, list_fn
, NULL
));
6274 printf("Matched %d\n", cli_list(cli
, "xyzabc", 0, list_fn
, NULL
));
6277 if (!torture_close_connection(cli
)) {
6281 printf("finished dirtest1\n");
6286 static bool run_error_map_extract(int dummy
) {
6288 static struct cli_state
*c_dos
;
6289 static struct cli_state
*c_nt
;
6301 /* NT-Error connection */
6303 disable_spnego
= true;
6304 if (!(c_nt
= open_nbt_connection())) {
6305 disable_spnego
= false;
6308 disable_spnego
= false;
6310 status
= smbXcli_negprot(c_nt
->conn
, c_nt
->timeout
, PROTOCOL_CORE
,
6313 if (!NT_STATUS_IS_OK(status
)) {
6314 printf("%s rejected the NT-error negprot (%s)\n", host
,
6320 status
= cli_session_setup(c_nt
, "", "", 0, "", 0, workgroup
);
6321 if (!NT_STATUS_IS_OK(status
)) {
6322 printf("%s rejected the NT-error initial session setup (%s)\n",host
, nt_errstr(status
));
6326 /* DOS-Error connection */
6328 disable_spnego
= true;
6329 force_dos_errors
= true;
6330 if (!(c_dos
= open_nbt_connection())) {
6331 disable_spnego
= false;
6332 force_dos_errors
= false;
6335 disable_spnego
= false;
6336 force_dos_errors
= false;
6338 status
= smbXcli_negprot(c_dos
->conn
, c_dos
->timeout
, PROTOCOL_CORE
,
6340 if (!NT_STATUS_IS_OK(status
)) {
6341 printf("%s rejected the DOS-error negprot (%s)\n", host
,
6343 cli_shutdown(c_dos
);
6347 status
= cli_session_setup(c_dos
, "", "", 0, "", 0, workgroup
);
6348 if (!NT_STATUS_IS_OK(status
)) {
6349 printf("%s rejected the DOS-error initial session setup (%s)\n",
6350 host
, nt_errstr(status
));
6354 c_nt
->map_dos_errors
= false;
6355 c_dos
->map_dos_errors
= false;
6357 for (error
=(0xc0000000 | 0x1); error
< (0xc0000000| 0xFFF); error
++) {
6358 fstr_sprintf(user
, "%X", error
);
6360 status
= cli_session_setup(c_nt
, user
,
6361 password
, strlen(password
),
6362 password
, strlen(password
),
6364 if (NT_STATUS_IS_OK(status
)) {
6365 printf("/** Session setup succeeded. This shouldn't happen...*/\n");
6368 /* Case #1: 32-bit NT errors */
6369 if (!NT_STATUS_IS_DOS(status
)) {
6372 printf("/** Dos error on NT connection! (%s) */\n",
6374 nt_status
= NT_STATUS(0xc0000000);
6377 status
= cli_session_setup(c_dos
, user
,
6378 password
, strlen(password
),
6379 password
, strlen(password
),
6381 if (NT_STATUS_IS_OK(status
)) {
6382 printf("/** Session setup succeeded. This shouldn't happen...*/\n");
6385 /* Case #1: 32-bit NT errors */
6386 if (NT_STATUS_IS_DOS(status
)) {
6387 printf("/** NT error on DOS connection! (%s) */\n",
6389 errnum
= errclass
= 0;
6391 errclass
= NT_STATUS_DOS_CLASS(status
);
6392 errnum
= NT_STATUS_DOS_CODE(status
);
6395 if (NT_STATUS_V(nt_status
) != error
) {
6396 printf("/*\t{ This NT error code was 'sqashed'\n\t from %s to %s \n\t during the session setup }\n*/\n",
6397 get_nt_error_c_code(talloc_tos(), NT_STATUS(error
)),
6398 get_nt_error_c_code(talloc_tos(), nt_status
));
6401 printf("\t{%s,\t%s,\t%s},\n",
6402 smb_dos_err_class(errclass
),
6403 smb_dos_err_name(errclass
, errnum
),
6404 get_nt_error_c_code(talloc_tos(), NT_STATUS(error
)));
6409 static bool run_sesssetup_bench(int dummy
)
6411 static struct cli_state
*c
;
6412 const char *fname
= "\\file.dat";
6417 if (!torture_open_connection(&c
, 0)) {
6421 status
= cli_ntcreate(c
, fname
, 0, GENERIC_ALL_ACCESS
|DELETE_ACCESS
,
6422 FILE_ATTRIBUTE_NORMAL
, 0, FILE_OVERWRITE_IF
,
6423 FILE_DELETE_ON_CLOSE
, 0, &fnum
);
6424 if (!NT_STATUS_IS_OK(status
)) {
6425 d_printf("open %s failed: %s\n", fname
, nt_errstr(status
));
6429 for (i
=0; i
<torture_numops
; i
++) {
6430 status
= cli_session_setup(
6432 password
, strlen(password
),
6433 password
, strlen(password
),
6435 if (!NT_STATUS_IS_OK(status
)) {
6436 d_printf("(%s) cli_session_setup failed: %s\n",
6437 __location__
, nt_errstr(status
));
6441 d_printf("\r%d ", (int)cli_state_get_uid(c
));
6443 status
= cli_ulogoff(c
);
6444 if (!NT_STATUS_IS_OK(status
)) {
6445 d_printf("(%s) cli_ulogoff failed: %s\n",
6446 __location__
, nt_errstr(status
));
6454 static bool subst_test(const char *str
, const char *user
, const char *domain
,
6455 uid_t uid
, gid_t gid
, const char *expected
)
6460 subst
= talloc_sub_specified(talloc_tos(), str
, user
, domain
, uid
, gid
);
6462 if (strcmp(subst
, expected
) != 0) {
6463 printf("sub_specified(%s, %s, %s, %d, %d) returned [%s], expected "
6464 "[%s]\n", str
, user
, domain
, (int)uid
, (int)gid
, subst
,
6473 static void chain1_open_completion(struct tevent_req
*req
)
6477 status
= cli_openx_recv(req
, &fnum
);
6480 d_printf("cli_openx_recv returned %s: %d\n",
6482 NT_STATUS_IS_OK(status
) ? fnum
: -1);
6485 static void chain1_write_completion(struct tevent_req
*req
)
6489 status
= cli_write_andx_recv(req
, &written
);
6492 d_printf("cli_write_andx_recv returned %s: %d\n",
6494 NT_STATUS_IS_OK(status
) ? (int)written
: -1);
6497 static void chain1_close_completion(struct tevent_req
*req
)
6500 bool *done
= (bool *)tevent_req_callback_data_void(req
);
6502 status
= cli_close_recv(req
);
6507 d_printf("cli_close returned %s\n", nt_errstr(status
));
6510 static bool run_chain1(int dummy
)
6512 struct cli_state
*cli1
;
6513 struct event_context
*evt
= event_context_init(NULL
);
6514 struct tevent_req
*reqs
[3], *smbreqs
[3];
6516 const char *str
= "foobar";
6519 printf("starting chain1 test\n");
6520 if (!torture_open_connection(&cli1
, 0)) {
6524 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
6526 reqs
[0] = cli_openx_create(talloc_tos(), evt
, cli1
, "\\test",
6527 O_CREAT
|O_RDWR
, 0, &smbreqs
[0]);
6528 if (reqs
[0] == NULL
) return false;
6529 tevent_req_set_callback(reqs
[0], chain1_open_completion
, NULL
);
6532 reqs
[1] = cli_write_andx_create(talloc_tos(), evt
, cli1
, 0, 0,
6533 (const uint8_t *)str
, 0, strlen(str
)+1,
6534 smbreqs
, 1, &smbreqs
[1]);
6535 if (reqs
[1] == NULL
) return false;
6536 tevent_req_set_callback(reqs
[1], chain1_write_completion
, NULL
);
6538 reqs
[2] = cli_close_create(talloc_tos(), evt
, cli1
, 0, &smbreqs
[2]);
6539 if (reqs
[2] == NULL
) return false;
6540 tevent_req_set_callback(reqs
[2], chain1_close_completion
, &done
);
6542 status
= smb1cli_req_chain_submit(smbreqs
, ARRAY_SIZE(smbreqs
));
6543 if (!NT_STATUS_IS_OK(status
)) {
6548 tevent_loop_once(evt
);
6551 torture_close_connection(cli1
);
6555 static void chain2_sesssetup_completion(struct tevent_req
*req
)
6558 status
= cli_session_setup_guest_recv(req
);
6559 d_printf("sesssetup returned %s\n", nt_errstr(status
));
6562 static void chain2_tcon_completion(struct tevent_req
*req
)
6564 bool *done
= (bool *)tevent_req_callback_data_void(req
);
6566 status
= cli_tcon_andx_recv(req
);
6567 d_printf("tcon_and_x returned %s\n", nt_errstr(status
));
6571 static bool run_chain2(int dummy
)
6573 struct cli_state
*cli1
;
6574 struct event_context
*evt
= event_context_init(NULL
);
6575 struct tevent_req
*reqs
[2], *smbreqs
[2];
6579 printf("starting chain2 test\n");
6580 status
= cli_start_connection(&cli1
, lp_netbios_name(), host
, NULL
,
6581 port_to_use
, SMB_SIGNING_DEFAULT
, 0);
6582 if (!NT_STATUS_IS_OK(status
)) {
6586 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
6588 reqs
[0] = cli_session_setup_guest_create(talloc_tos(), evt
, cli1
,
6590 if (reqs
[0] == NULL
) return false;
6591 tevent_req_set_callback(reqs
[0], chain2_sesssetup_completion
, NULL
);
6593 reqs
[1] = cli_tcon_andx_create(talloc_tos(), evt
, cli1
, "IPC$",
6594 "?????", NULL
, 0, &smbreqs
[1]);
6595 if (reqs
[1] == NULL
) return false;
6596 tevent_req_set_callback(reqs
[1], chain2_tcon_completion
, &done
);
6598 status
= smb1cli_req_chain_submit(smbreqs
, ARRAY_SIZE(smbreqs
));
6599 if (!NT_STATUS_IS_OK(status
)) {
6604 tevent_loop_once(evt
);
6607 torture_close_connection(cli1
);
6612 struct torture_createdel_state
{
6613 struct tevent_context
*ev
;
6614 struct cli_state
*cli
;
6617 static void torture_createdel_created(struct tevent_req
*subreq
);
6618 static void torture_createdel_closed(struct tevent_req
*subreq
);
6620 static struct tevent_req
*torture_createdel_send(TALLOC_CTX
*mem_ctx
,
6621 struct tevent_context
*ev
,
6622 struct cli_state
*cli
,
6625 struct tevent_req
*req
, *subreq
;
6626 struct torture_createdel_state
*state
;
6628 req
= tevent_req_create(mem_ctx
, &state
,
6629 struct torture_createdel_state
);
6636 subreq
= cli_ntcreate_send(
6637 state
, ev
, cli
, name
, 0,
6638 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
6639 FILE_ATTRIBUTE_NORMAL
,
6640 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
6641 FILE_OPEN_IF
, FILE_DELETE_ON_CLOSE
, 0);
6643 if (tevent_req_nomem(subreq
, req
)) {
6644 return tevent_req_post(req
, ev
);
6646 tevent_req_set_callback(subreq
, torture_createdel_created
, req
);
6650 static void torture_createdel_created(struct tevent_req
*subreq
)
6652 struct tevent_req
*req
= tevent_req_callback_data(
6653 subreq
, struct tevent_req
);
6654 struct torture_createdel_state
*state
= tevent_req_data(
6655 req
, struct torture_createdel_state
);
6659 status
= cli_ntcreate_recv(subreq
, &fnum
);
6660 TALLOC_FREE(subreq
);
6661 if (!NT_STATUS_IS_OK(status
)) {
6662 DEBUG(10, ("cli_ntcreate_recv returned %s\n",
6663 nt_errstr(status
)));
6664 tevent_req_nterror(req
, status
);
6668 subreq
= cli_close_send(state
, state
->ev
, state
->cli
, fnum
);
6669 if (tevent_req_nomem(subreq
, req
)) {
6672 tevent_req_set_callback(subreq
, torture_createdel_closed
, req
);
6675 static void torture_createdel_closed(struct tevent_req
*subreq
)
6677 struct tevent_req
*req
= tevent_req_callback_data(
6678 subreq
, struct tevent_req
);
6681 status
= cli_close_recv(subreq
);
6682 if (!NT_STATUS_IS_OK(status
)) {
6683 DEBUG(10, ("cli_close_recv returned %s\n", nt_errstr(status
)));
6684 tevent_req_nterror(req
, status
);
6687 tevent_req_done(req
);
6690 static NTSTATUS
torture_createdel_recv(struct tevent_req
*req
)
6692 return tevent_req_simple_recv_ntstatus(req
);
6695 struct torture_createdels_state
{
6696 struct tevent_context
*ev
;
6697 struct cli_state
*cli
;
6698 const char *base_name
;
6702 struct tevent_req
**reqs
;
6705 static void torture_createdels_done(struct tevent_req
*subreq
);
6707 static struct tevent_req
*torture_createdels_send(TALLOC_CTX
*mem_ctx
,
6708 struct tevent_context
*ev
,
6709 struct cli_state
*cli
,
6710 const char *base_name
,
6714 struct tevent_req
*req
;
6715 struct torture_createdels_state
*state
;
6718 req
= tevent_req_create(mem_ctx
, &state
,
6719 struct torture_createdels_state
);
6725 state
->base_name
= talloc_strdup(state
, base_name
);
6726 if (tevent_req_nomem(state
->base_name
, req
)) {
6727 return tevent_req_post(req
, ev
);
6729 state
->num_files
= MAX(num_parallel
, num_files
);
6731 state
->received
= 0;
6733 state
->reqs
= talloc_array(state
, struct tevent_req
*, num_parallel
);
6734 if (tevent_req_nomem(state
->reqs
, req
)) {
6735 return tevent_req_post(req
, ev
);
6738 for (i
=0; i
<num_parallel
; i
++) {
6741 name
= talloc_asprintf(state
, "%s%8.8d", state
->base_name
,
6743 if (tevent_req_nomem(name
, req
)) {
6744 return tevent_req_post(req
, ev
);
6746 state
->reqs
[i
] = torture_createdel_send(
6747 state
->reqs
, state
->ev
, state
->cli
, name
);
6748 if (tevent_req_nomem(state
->reqs
[i
], req
)) {
6749 return tevent_req_post(req
, ev
);
6751 name
= talloc_move(state
->reqs
[i
], &name
);
6752 tevent_req_set_callback(state
->reqs
[i
],
6753 torture_createdels_done
, req
);
6759 static void torture_createdels_done(struct tevent_req
*subreq
)
6761 struct tevent_req
*req
= tevent_req_callback_data(
6762 subreq
, struct tevent_req
);
6763 struct torture_createdels_state
*state
= tevent_req_data(
6764 req
, struct torture_createdels_state
);
6765 size_t num_parallel
= talloc_array_length(state
->reqs
);
6770 status
= torture_createdel_recv(subreq
);
6771 if (!NT_STATUS_IS_OK(status
)){
6772 DEBUG(10, ("torture_createdel_recv returned %s\n",
6773 nt_errstr(status
)));
6774 TALLOC_FREE(subreq
);
6775 tevent_req_nterror(req
, status
);
6779 for (i
=0; i
<num_parallel
; i
++) {
6780 if (subreq
== state
->reqs
[i
]) {
6784 if (i
== num_parallel
) {
6785 DEBUG(10, ("received something we did not send\n"));
6786 tevent_req_nterror(req
, NT_STATUS_INTERNAL_ERROR
);
6789 TALLOC_FREE(state
->reqs
[i
]);
6791 if (state
->sent
>= state
->num_files
) {
6792 tevent_req_done(req
);
6796 name
= talloc_asprintf(state
, "%s%8.8d", state
->base_name
,
6798 if (tevent_req_nomem(name
, req
)) {
6801 state
->reqs
[i
] = torture_createdel_send(state
->reqs
, state
->ev
,
6803 if (tevent_req_nomem(state
->reqs
[i
], req
)) {
6806 name
= talloc_move(state
->reqs
[i
], &name
);
6807 tevent_req_set_callback(state
->reqs
[i
], torture_createdels_done
, req
);
6811 static NTSTATUS
torture_createdels_recv(struct tevent_req
*req
)
6813 return tevent_req_simple_recv_ntstatus(req
);
6816 struct swallow_notify_state
{
6817 struct tevent_context
*ev
;
6818 struct cli_state
*cli
;
6820 uint32_t completion_filter
;
6822 bool (*fn
)(uint32_t action
, const char *name
, void *priv
);
6826 static void swallow_notify_done(struct tevent_req
*subreq
);
6828 static struct tevent_req
*swallow_notify_send(TALLOC_CTX
*mem_ctx
,
6829 struct tevent_context
*ev
,
6830 struct cli_state
*cli
,
6832 uint32_t completion_filter
,
6834 bool (*fn
)(uint32_t action
,
6839 struct tevent_req
*req
, *subreq
;
6840 struct swallow_notify_state
*state
;
6842 req
= tevent_req_create(mem_ctx
, &state
,
6843 struct swallow_notify_state
);
6850 state
->completion_filter
= completion_filter
;
6851 state
->recursive
= recursive
;
6855 subreq
= cli_notify_send(state
, state
->ev
, state
->cli
, state
->fnum
,
6856 0xffff, state
->completion_filter
,
6858 if (tevent_req_nomem(subreq
, req
)) {
6859 return tevent_req_post(req
, ev
);
6861 tevent_req_set_callback(subreq
, swallow_notify_done
, req
);
6865 static void swallow_notify_done(struct tevent_req
*subreq
)
6867 struct tevent_req
*req
= tevent_req_callback_data(
6868 subreq
, struct tevent_req
);
6869 struct swallow_notify_state
*state
= tevent_req_data(
6870 req
, struct swallow_notify_state
);
6872 uint32_t i
, num_changes
;
6873 struct notify_change
*changes
;
6875 status
= cli_notify_recv(subreq
, state
, &num_changes
, &changes
);
6876 TALLOC_FREE(subreq
);
6877 if (!NT_STATUS_IS_OK(status
)) {
6878 DEBUG(10, ("cli_notify_recv returned %s\n",
6879 nt_errstr(status
)));
6880 tevent_req_nterror(req
, status
);
6884 for (i
=0; i
<num_changes
; i
++) {
6885 state
->fn(changes
[i
].action
, changes
[i
].name
, state
->priv
);
6887 TALLOC_FREE(changes
);
6889 subreq
= cli_notify_send(state
, state
->ev
, state
->cli
, state
->fnum
,
6890 0xffff, state
->completion_filter
,
6892 if (tevent_req_nomem(subreq
, req
)) {
6895 tevent_req_set_callback(subreq
, swallow_notify_done
, req
);
6898 static bool print_notifies(uint32_t action
, const char *name
, void *priv
)
6900 if (DEBUGLEVEL
> 5) {
6901 d_printf("%d %s\n", (int)action
, name
);
6906 static void notify_bench_done(struct tevent_req
*req
)
6908 int *num_finished
= (int *)tevent_req_callback_data_void(req
);
6912 static bool run_notify_bench(int dummy
)
6914 const char *dname
= "\\notify-bench";
6915 struct tevent_context
*ev
;
6918 struct tevent_req
*req1
;
6919 struct tevent_req
*req2
= NULL
;
6920 int i
, num_unc_names
;
6921 int num_finished
= 0;
6923 printf("starting notify-bench test\n");
6925 if (use_multishare_conn
) {
6927 unc_list
= file_lines_load(multishare_conn_fname
,
6928 &num_unc_names
, 0, NULL
);
6929 if (!unc_list
|| num_unc_names
<= 0) {
6930 d_printf("Failed to load unc names list from '%s'\n",
6931 multishare_conn_fname
);
6934 TALLOC_FREE(unc_list
);
6939 ev
= tevent_context_init(talloc_tos());
6941 d_printf("tevent_context_init failed\n");
6945 for (i
=0; i
<num_unc_names
; i
++) {
6946 struct cli_state
*cli
;
6949 base_fname
= talloc_asprintf(talloc_tos(), "%s\\file%3.3d.",
6951 if (base_fname
== NULL
) {
6955 if (!torture_open_connection(&cli
, i
)) {
6959 status
= cli_ntcreate(cli
, dname
, 0,
6960 MAXIMUM_ALLOWED_ACCESS
,
6961 0, FILE_SHARE_READ
|FILE_SHARE_WRITE
|
6963 FILE_OPEN_IF
, FILE_DIRECTORY_FILE
, 0,
6966 if (!NT_STATUS_IS_OK(status
)) {
6967 d_printf("Could not create %s: %s\n", dname
,
6972 req1
= swallow_notify_send(talloc_tos(), ev
, cli
, dnum
,
6973 FILE_NOTIFY_CHANGE_FILE_NAME
|
6974 FILE_NOTIFY_CHANGE_DIR_NAME
|
6975 FILE_NOTIFY_CHANGE_ATTRIBUTES
|
6976 FILE_NOTIFY_CHANGE_LAST_WRITE
,
6977 false, print_notifies
, NULL
);
6979 d_printf("Could not create notify request\n");
6983 req2
= torture_createdels_send(talloc_tos(), ev
, cli
,
6984 base_fname
, 10, torture_numops
);
6986 d_printf("Could not create createdels request\n");
6989 TALLOC_FREE(base_fname
);
6991 tevent_req_set_callback(req2
, notify_bench_done
,
6995 while (num_finished
< num_unc_names
) {
6997 ret
= tevent_loop_once(ev
);
6999 d_printf("tevent_loop_once failed\n");
7004 if (!tevent_req_poll(req2
, ev
)) {
7005 d_printf("tevent_req_poll failed\n");
7008 status
= torture_createdels_recv(req2
);
7009 d_printf("torture_createdels_recv returned %s\n", nt_errstr(status
));
7014 static bool run_mangle1(int dummy
)
7016 struct cli_state
*cli
;
7017 const char *fname
= "this_is_a_long_fname_to_be_mangled.txt";
7021 time_t change_time
, access_time
, write_time
;
7025 printf("starting mangle1 test\n");
7026 if (!torture_open_connection(&cli
, 0)) {
7030 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
7032 status
= cli_ntcreate(cli
, fname
, 0, GENERIC_ALL_ACCESS
|DELETE_ACCESS
,
7033 FILE_ATTRIBUTE_NORMAL
, 0, FILE_OVERWRITE_IF
,
7035 if (!NT_STATUS_IS_OK(status
)) {
7036 d_printf("open %s failed: %s\n", fname
, nt_errstr(status
));
7039 cli_close(cli
, fnum
);
7041 status
= cli_qpathinfo_alt_name(cli
, fname
, alt_name
);
7042 if (!NT_STATUS_IS_OK(status
)) {
7043 d_printf("cli_qpathinfo_alt_name failed: %s\n",
7047 d_printf("alt_name: %s\n", alt_name
);
7049 status
= cli_openx(cli
, alt_name
, O_RDONLY
, DENY_NONE
, &fnum
);
7050 if (!NT_STATUS_IS_OK(status
)) {
7051 d_printf("cli_openx(%s) failed: %s\n", alt_name
,
7055 cli_close(cli
, fnum
);
7057 status
= cli_qpathinfo1(cli
, alt_name
, &change_time
, &access_time
,
7058 &write_time
, &size
, &mode
);
7059 if (!NT_STATUS_IS_OK(status
)) {
7060 d_printf("cli_qpathinfo1(%s) failed: %s\n", alt_name
,
7068 static size_t null_source(uint8_t *buf
, size_t n
, void *priv
)
7070 size_t *to_pull
= (size_t *)priv
;
7071 size_t thistime
= *to_pull
;
7073 thistime
= MIN(thistime
, n
);
7074 if (thistime
== 0) {
7078 memset(buf
, 0, thistime
);
7079 *to_pull
-= thistime
;
7083 static bool run_windows_write(int dummy
)
7085 struct cli_state
*cli1
;
7089 const char *fname
= "\\writetest.txt";
7090 struct timeval start_time
;
7095 printf("starting windows_write test\n");
7096 if (!torture_open_connection(&cli1
, 0)) {
7100 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum
);
7101 if (!NT_STATUS_IS_OK(status
)) {
7102 printf("open failed (%s)\n", nt_errstr(status
));
7106 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
7108 start_time
= timeval_current();
7110 for (i
=0; i
<torture_numops
; i
++) {
7112 off_t start
= i
* torture_blocksize
;
7113 size_t to_pull
= torture_blocksize
- 1;
7115 status
= cli_writeall(cli1
, fnum
, 0, &c
,
7116 start
+ torture_blocksize
- 1, 1, NULL
);
7117 if (!NT_STATUS_IS_OK(status
)) {
7118 printf("cli_write failed: %s\n", nt_errstr(status
));
7122 status
= cli_push(cli1
, fnum
, 0, i
* torture_blocksize
, torture_blocksize
,
7123 null_source
, &to_pull
);
7124 if (!NT_STATUS_IS_OK(status
)) {
7125 printf("cli_push returned: %s\n", nt_errstr(status
));
7130 seconds
= timeval_elapsed(&start_time
);
7131 kbytes
= (double)torture_blocksize
* torture_numops
;
7134 printf("Wrote %d kbytes in %.2f seconds: %d kb/sec\n", (int)kbytes
,
7135 (double)seconds
, (int)(kbytes
/seconds
));
7139 cli_close(cli1
, fnum
);
7140 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
7141 torture_close_connection(cli1
);
7145 static bool run_cli_echo(int dummy
)
7147 struct cli_state
*cli
;
7150 printf("starting cli_echo test\n");
7151 if (!torture_open_connection(&cli
, 0)) {
7154 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
7156 status
= cli_echo(cli
, 5, data_blob_const("hello", 5));
7158 d_printf("cli_echo returned %s\n", nt_errstr(status
));
7160 torture_close_connection(cli
);
7161 return NT_STATUS_IS_OK(status
);
7164 static bool run_uid_regression_test(int dummy
)
7166 static struct cli_state
*cli
;
7169 bool correct
= True
;
7172 printf("starting uid regression test\n");
7174 if (!torture_open_connection(&cli
, 0)) {
7178 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
7180 /* Ok - now save then logoff our current user. */
7181 old_vuid
= cli_state_get_uid(cli
);
7183 status
= cli_ulogoff(cli
);
7184 if (!NT_STATUS_IS_OK(status
)) {
7185 d_printf("(%s) cli_ulogoff failed: %s\n",
7186 __location__
, nt_errstr(status
));
7191 cli_state_set_uid(cli
, old_vuid
);
7193 /* Try an operation. */
7194 status
= cli_mkdir(cli
, "\\uid_reg_test");
7195 if (NT_STATUS_IS_OK(status
)) {
7196 d_printf("(%s) cli_mkdir succeeded\n",
7201 /* Should be bad uid. */
7202 if (!check_error(__LINE__
, status
, ERRSRV
, ERRbaduid
,
7203 NT_STATUS_USER_SESSION_DELETED
)) {
7209 old_cnum
= cli_state_get_tid(cli
);
7211 /* Now try a SMBtdis with the invald vuid set to zero. */
7212 cli_state_set_uid(cli
, 0);
7214 /* This should succeed. */
7215 status
= cli_tdis(cli
);
7217 if (NT_STATUS_IS_OK(status
)) {
7218 d_printf("First tdis with invalid vuid should succeed.\n");
7220 d_printf("First tdis failed (%s)\n", nt_errstr(status
));
7225 cli_state_set_uid(cli
, old_vuid
);
7226 cli_state_set_tid(cli
, old_cnum
);
7228 /* This should fail. */
7229 status
= cli_tdis(cli
);
7230 if (NT_STATUS_IS_OK(status
)) {
7231 d_printf("Second tdis with invalid vuid should fail - succeeded instead !.\n");
7235 /* Should be bad tid. */
7236 if (!check_error(__LINE__
, status
, ERRSRV
, ERRinvnid
,
7237 NT_STATUS_NETWORK_NAME_DELETED
)) {
7243 cli_rmdir(cli
, "\\uid_reg_test");
7252 static const char *illegal_chars
= "*\\/?<>|\":";
7253 static char force_shortname_chars
[] = " +,.[];=\177";
7255 static NTSTATUS
shortname_del_fn(const char *mnt
, struct file_info
*finfo
,
7256 const char *mask
, void *state
)
7258 struct cli_state
*pcli
= (struct cli_state
*)state
;
7260 NTSTATUS status
= NT_STATUS_OK
;
7262 slprintf(fname
, sizeof(fname
), "\\shortname\\%s", finfo
->name
);
7264 if (strcmp(finfo
->name
, ".") == 0 || strcmp(finfo
->name
, "..") == 0)
7265 return NT_STATUS_OK
;
7267 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
7268 status
= cli_rmdir(pcli
, fname
);
7269 if (!NT_STATUS_IS_OK(status
)) {
7270 printf("del_fn: failed to rmdir %s\n,", fname
);
7273 status
= cli_unlink(pcli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
7274 if (!NT_STATUS_IS_OK(status
)) {
7275 printf("del_fn: failed to unlink %s\n,", fname
);
7287 static NTSTATUS
shortname_list_fn(const char *mnt
, struct file_info
*finfo
,
7288 const char *name
, void *state
)
7290 struct sn_state
*s
= (struct sn_state
*)state
;
7294 printf("shortname list: i = %d, name = |%s|, shortname = |%s|\n",
7295 i
, finfo
->name
, finfo
->short_name
);
7298 if (strchr(force_shortname_chars
, i
)) {
7299 if (!finfo
->short_name
) {
7300 /* Shortname not created when it should be. */
7301 d_printf("(%s) ERROR: Shortname was not created for file %s containing %d\n",
7302 __location__
, finfo
->name
, i
);
7305 } else if (finfo
->short_name
){
7306 /* Shortname created when it should not be. */
7307 d_printf("(%s) ERROR: Shortname %s was created for file %s\n",
7308 __location__
, finfo
->short_name
, finfo
->name
);
7312 return NT_STATUS_OK
;
7315 static bool run_shortname_test(int dummy
)
7317 static struct cli_state
*cli
;
7318 bool correct
= True
;
7324 printf("starting shortname test\n");
7326 if (!torture_open_connection(&cli
, 0)) {
7330 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
7332 cli_list(cli
, "\\shortname\\*", 0, shortname_del_fn
, cli
);
7333 cli_list(cli
, "\\shortname\\*", FILE_ATTRIBUTE_DIRECTORY
, shortname_del_fn
, cli
);
7334 cli_rmdir(cli
, "\\shortname");
7336 status
= cli_mkdir(cli
, "\\shortname");
7337 if (!NT_STATUS_IS_OK(status
)) {
7338 d_printf("(%s) cli_mkdir of \\shortname failed: %s\n",
7339 __location__
, nt_errstr(status
));
7344 if (strlcpy(fname
, "\\shortname\\", sizeof(fname
)) >= sizeof(fname
)) {
7348 if (strlcat(fname
, "test .txt", sizeof(fname
)) >= sizeof(fname
)) {
7355 for (i
= 32; i
< 128; i
++) {
7356 uint16_t fnum
= (uint16_t)-1;
7360 if (strchr(illegal_chars
, i
)) {
7365 status
= cli_ntcreate(cli
, fname
, 0, GENERIC_ALL_ACCESS
, FILE_ATTRIBUTE_NORMAL
,
7366 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OVERWRITE_IF
, 0, 0, &fnum
);
7367 if (!NT_STATUS_IS_OK(status
)) {
7368 d_printf("(%s) cli_nt_create of %s failed: %s\n",
7369 __location__
, fname
, nt_errstr(status
));
7373 cli_close(cli
, fnum
);
7376 status
= cli_list(cli
, "\\shortname\\test*.*", 0,
7377 shortname_list_fn
, &s
);
7378 if (s
.matched
!= 1) {
7379 d_printf("(%s) failed to list %s: %s\n",
7380 __location__
, fname
, nt_errstr(status
));
7385 status
= cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
7386 if (!NT_STATUS_IS_OK(status
)) {
7387 d_printf("(%s) failed to delete %s: %s\n",
7388 __location__
, fname
, nt_errstr(status
));
7401 cli_list(cli
, "\\shortname\\*", 0, shortname_del_fn
, cli
);
7402 cli_list(cli
, "\\shortname\\*", FILE_ATTRIBUTE_DIRECTORY
, shortname_del_fn
, cli
);
7403 cli_rmdir(cli
, "\\shortname");
7404 torture_close_connection(cli
);
7408 static void pagedsearch_cb(struct tevent_req
*req
)
7411 struct tldap_message
*msg
;
7414 rc
= tldap_search_paged_recv(req
, talloc_tos(), &msg
);
7415 if (rc
!= TLDAP_SUCCESS
) {
7416 d_printf("tldap_search_paged_recv failed: %s\n",
7417 tldap_err2string(rc
));
7420 if (tldap_msg_type(msg
) != TLDAP_RES_SEARCH_ENTRY
) {
7424 if (!tldap_entry_dn(msg
, &dn
)) {
7425 d_printf("tldap_entry_dn failed\n");
7428 d_printf("%s\n", dn
);
7432 static bool run_tldap(int dummy
)
7434 struct tldap_context
*ld
;
7437 struct sockaddr_storage addr
;
7438 struct tevent_context
*ev
;
7439 struct tevent_req
*req
;
7443 if (!resolve_name(host
, &addr
, 0, false)) {
7444 d_printf("could not find host %s\n", host
);
7447 status
= open_socket_out(&addr
, 389, 9999, &fd
);
7448 if (!NT_STATUS_IS_OK(status
)) {
7449 d_printf("open_socket_out failed: %s\n", nt_errstr(status
));
7453 ld
= tldap_context_create(talloc_tos(), fd
);
7456 d_printf("tldap_context_create failed\n");
7460 rc
= tldap_fetch_rootdse(ld
);
7461 if (rc
!= TLDAP_SUCCESS
) {
7462 d_printf("tldap_fetch_rootdse failed: %s\n",
7463 tldap_errstr(talloc_tos(), ld
, rc
));
7467 basedn
= tldap_talloc_single_attribute(
7468 tldap_rootdse(ld
), "defaultNamingContext", talloc_tos());
7469 if (basedn
== NULL
) {
7470 d_printf("no defaultNamingContext\n");
7473 d_printf("defaultNamingContext: %s\n", basedn
);
7475 ev
= tevent_context_init(talloc_tos());
7477 d_printf("tevent_context_init failed\n");
7481 req
= tldap_search_paged_send(talloc_tos(), ev
, ld
, basedn
,
7482 TLDAP_SCOPE_SUB
, "(objectclass=*)",
7484 NULL
, 0, NULL
, 0, 0, 0, 0, 5);
7486 d_printf("tldap_search_paged_send failed\n");
7489 tevent_req_set_callback(req
, pagedsearch_cb
, NULL
);
7491 tevent_req_poll(req
, ev
);
7495 /* test search filters against rootDSE */
7496 filter
= "(&(|(name=samba)(nextRid<=10000000)(usnChanged>=10)(samba~=ambas)(!(name=s*m*a)))"
7497 "(|(name:=samba)(name:dn:2.5.13.5:=samba)(:dn:2.5.13.5:=samba)(!(name=*samba))))";
7499 rc
= tldap_search(ld
, "", TLDAP_SCOPE_BASE
, filter
,
7500 NULL
, 0, 0, NULL
, 0, NULL
, 0, 0, 0, 0,
7501 talloc_tos(), NULL
, NULL
);
7502 if (rc
!= TLDAP_SUCCESS
) {
7503 d_printf("tldap_search with complex filter failed: %s\n",
7504 tldap_errstr(talloc_tos(), ld
, rc
));
7512 /* Torture test to ensure no regression of :
7513 https://bugzilla.samba.org/show_bug.cgi?id=7084
7516 static bool run_dir_createtime(int dummy
)
7518 struct cli_state
*cli
;
7519 const char *dname
= "\\testdir";
7520 const char *fname
= "\\testdir\\testfile";
7522 struct timespec create_time
;
7523 struct timespec create_time1
;
7527 if (!torture_open_connection(&cli
, 0)) {
7531 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
7532 cli_rmdir(cli
, dname
);
7534 status
= cli_mkdir(cli
, dname
);
7535 if (!NT_STATUS_IS_OK(status
)) {
7536 printf("mkdir failed: %s\n", nt_errstr(status
));
7540 status
= cli_qpathinfo2(cli
, dname
, &create_time
, NULL
, NULL
, NULL
,
7542 if (!NT_STATUS_IS_OK(status
)) {
7543 printf("cli_qpathinfo2 returned %s\n",
7548 /* Sleep 3 seconds, then create a file. */
7551 status
= cli_openx(cli
, fname
, O_RDWR
| O_CREAT
| O_EXCL
,
7553 if (!NT_STATUS_IS_OK(status
)) {
7554 printf("cli_openx failed: %s\n", nt_errstr(status
));
7558 status
= cli_qpathinfo2(cli
, dname
, &create_time1
, NULL
, NULL
, NULL
,
7560 if (!NT_STATUS_IS_OK(status
)) {
7561 printf("cli_qpathinfo2 (2) returned %s\n",
7566 if (timespec_compare(&create_time1
, &create_time
)) {
7567 printf("run_dir_createtime: create time was updated (error)\n");
7569 printf("run_dir_createtime: create time was not updated (correct)\n");
7575 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
7576 cli_rmdir(cli
, dname
);
7577 if (!torture_close_connection(cli
)) {
7584 static bool run_streamerror(int dummy
)
7586 struct cli_state
*cli
;
7587 const char *dname
= "\\testdir";
7588 const char *streamname
=
7589 "testdir:{4c8cc155-6c1e-11d1-8e41-00c04fb9386d}:$DATA";
7591 time_t change_time
, access_time
, write_time
;
7593 uint16_t mode
, fnum
;
7596 if (!torture_open_connection(&cli
, 0)) {
7600 cli_unlink(cli
, "\\testdir\\*", FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
7601 cli_rmdir(cli
, dname
);
7603 status
= cli_mkdir(cli
, dname
);
7604 if (!NT_STATUS_IS_OK(status
)) {
7605 printf("mkdir failed: %s\n", nt_errstr(status
));
7609 status
= cli_qpathinfo1(cli
, streamname
, &change_time
, &access_time
,
7610 &write_time
, &size
, &mode
);
7611 if (!NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
7612 printf("pathinfo returned %s, expected "
7613 "NT_STATUS_OBJECT_NAME_NOT_FOUND\n",
7618 status
= cli_ntcreate(cli
, streamname
, 0x16,
7619 FILE_READ_DATA
|FILE_READ_EA
|
7620 FILE_READ_ATTRIBUTES
|READ_CONTROL_ACCESS
,
7621 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_READ
,
7622 FILE_OPEN
, 0, 0, &fnum
);
7624 if (!NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
7625 printf("ntcreate returned %s, expected "
7626 "NT_STATUS_OBJECT_NAME_NOT_FOUND\n",
7632 cli_rmdir(cli
, dname
);
7636 static bool run_local_substitute(int dummy
)
7640 ok
&= subst_test("%U", "bla", "", -1, -1, "bla");
7641 ok
&= subst_test("%u%U", "bla", "", -1, -1, "blabla");
7642 ok
&= subst_test("%g", "", "", -1, -1, "NO_GROUP");
7643 ok
&= subst_test("%G", "", "", -1, -1, "NO_GROUP");
7644 ok
&= subst_test("%g", "", "", -1, 0, gidtoname(0));
7645 ok
&= subst_test("%G", "", "", -1, 0, gidtoname(0));
7646 ok
&= subst_test("%D%u", "u", "dom", -1, 0, "domu");
7647 ok
&= subst_test("%i %I", "", "", -1, -1, "0.0.0.0 0.0.0.0");
7649 /* Different captialization rules in sub_basic... */
7651 ok
&= (strcmp(talloc_sub_basic(talloc_tos(), "BLA", "dom", "%U%D"),
7657 static bool run_local_base64(int dummy
)
7662 for (i
=1; i
<2000; i
++) {
7663 DATA_BLOB blob1
, blob2
;
7666 blob1
.data
= talloc_array(talloc_tos(), uint8_t, i
);
7668 generate_random_buffer(blob1
.data
, blob1
.length
);
7670 b64
= base64_encode_data_blob(talloc_tos(), blob1
);
7672 d_fprintf(stderr
, "base64_encode_data_blob failed "
7673 "for %d bytes\n", i
);
7676 blob2
= base64_decode_data_blob(b64
);
7679 if (data_blob_cmp(&blob1
, &blob2
)) {
7680 d_fprintf(stderr
, "data_blob_cmp failed for %d "
7684 TALLOC_FREE(blob1
.data
);
7685 data_blob_free(&blob2
);
7690 static bool run_local_gencache(int dummy
)
7696 if (!gencache_set("foo", "bar", time(NULL
) + 1000)) {
7697 d_printf("%s: gencache_set() failed\n", __location__
);
7701 if (!gencache_get("foo", NULL
, NULL
)) {
7702 d_printf("%s: gencache_get() failed\n", __location__
);
7706 if (!gencache_get("foo", &val
, &tm
)) {
7707 d_printf("%s: gencache_get() failed\n", __location__
);
7711 if (strcmp(val
, "bar") != 0) {
7712 d_printf("%s: gencache_get() returned %s, expected %s\n",
7713 __location__
, val
, "bar");
7720 if (!gencache_del("foo")) {
7721 d_printf("%s: gencache_del() failed\n", __location__
);
7724 if (gencache_del("foo")) {
7725 d_printf("%s: second gencache_del() succeeded\n",
7730 if (gencache_get("foo", &val
, &tm
)) {
7731 d_printf("%s: gencache_get() on deleted entry "
7732 "succeeded\n", __location__
);
7736 blob
= data_blob_string_const_null("bar");
7737 tm
= time(NULL
) + 60;
7739 if (!gencache_set_data_blob("foo", &blob
, tm
)) {
7740 d_printf("%s: gencache_set_data_blob() failed\n", __location__
);
7744 if (!gencache_get_data_blob("foo", &blob
, NULL
, NULL
)) {
7745 d_printf("%s: gencache_get_data_blob() failed\n", __location__
);
7749 if (strcmp((const char *)blob
.data
, "bar") != 0) {
7750 d_printf("%s: gencache_get_data_blob() returned %s, expected %s\n",
7751 __location__
, (const char *)blob
.data
, "bar");
7752 data_blob_free(&blob
);
7756 data_blob_free(&blob
);
7758 if (!gencache_del("foo")) {
7759 d_printf("%s: gencache_del() failed\n", __location__
);
7762 if (gencache_del("foo")) {
7763 d_printf("%s: second gencache_del() succeeded\n",
7768 if (gencache_get_data_blob("foo", &blob
, NULL
, NULL
)) {
7769 d_printf("%s: gencache_get_data_blob() on deleted entry "
7770 "succeeded\n", __location__
);
7777 static bool rbt_testval(struct db_context
*db
, const char *key
,
7780 struct db_record
*rec
;
7781 TDB_DATA data
= string_tdb_data(value
);
7786 rec
= dbwrap_fetch_locked(db
, db
, string_tdb_data(key
));
7788 d_fprintf(stderr
, "fetch_locked failed\n");
7791 status
= dbwrap_record_store(rec
, data
, 0);
7792 if (!NT_STATUS_IS_OK(status
)) {
7793 d_fprintf(stderr
, "store failed: %s\n", nt_errstr(status
));
7798 rec
= dbwrap_fetch_locked(db
, db
, string_tdb_data(key
));
7800 d_fprintf(stderr
, "second fetch_locked failed\n");
7804 dbvalue
= dbwrap_record_get_value(rec
);
7805 if ((dbvalue
.dsize
!= data
.dsize
)
7806 || (memcmp(dbvalue
.dptr
, data
.dptr
, data
.dsize
) != 0)) {
7807 d_fprintf(stderr
, "Got wrong data back\n");
7817 static bool run_local_rbtree(int dummy
)
7819 struct db_context
*db
;
7823 db
= db_open_rbt(NULL
);
7826 d_fprintf(stderr
, "db_open_rbt failed\n");
7830 for (i
=0; i
<1000; i
++) {
7833 if (asprintf(&key
, "key%ld", random()) == -1) {
7836 if (asprintf(&value
, "value%ld", random()) == -1) {
7841 if (!rbt_testval(db
, key
, value
)) {
7848 if (asprintf(&value
, "value%ld", random()) == -1) {
7853 if (!rbt_testval(db
, key
, value
)) {
7872 local test for character set functions
7874 This is a very simple test for the functionality in convert_string_error()
7876 static bool run_local_convert_string(int dummy
)
7878 TALLOC_CTX
*tmp_ctx
= talloc_new(NULL
);
7879 const char *test_strings
[2] = { "March", "M\303\244rz" };
7883 for (i
=0; i
<2; i
++) {
7884 const char *str
= test_strings
[i
];
7885 int len
= strlen(str
);
7886 size_t converted_size
;
7889 memset(dst
, 'X', sizeof(dst
));
7891 /* first try with real source length */
7892 ret
= convert_string_error(CH_UNIX
, CH_UTF8
,
7897 d_fprintf(stderr
, "Failed to convert '%s' to CH_DISPLAY\n", str
);
7901 if (converted_size
!= len
) {
7902 d_fprintf(stderr
, "Converted size of '%s' should be %d - got %d\n",
7903 str
, len
, (int)converted_size
);
7907 if (strncmp(str
, dst
, converted_size
) != 0) {
7908 d_fprintf(stderr
, "Expected '%s' to match '%s'\n", str
, dst
);
7912 if (strlen(str
) != converted_size
) {
7913 d_fprintf(stderr
, "Expected '%s' length %d - got %d\n", str
,
7914 (int)strlen(str
), (int)converted_size
);
7918 if (dst
[converted_size
] != 'X') {
7919 d_fprintf(stderr
, "Expected no termination of '%s'\n", dst
);
7923 /* now with srclen==-1, this causes the nul to be
7925 ret
= convert_string_error(CH_UNIX
, CH_UTF8
,
7930 d_fprintf(stderr
, "Failed to convert '%s' to CH_DISPLAY\n", str
);
7934 if (converted_size
!= len
+1) {
7935 d_fprintf(stderr
, "Converted size of '%s' should be %d - got %d\n",
7936 str
, len
, (int)converted_size
);
7940 if (strncmp(str
, dst
, converted_size
) != 0) {
7941 d_fprintf(stderr
, "Expected '%s' to match '%s'\n", str
, dst
);
7945 if (len
+1 != converted_size
) {
7946 d_fprintf(stderr
, "Expected '%s' length %d - got %d\n", str
,
7947 len
+1, (int)converted_size
);
7951 if (dst
[converted_size
] != 'X') {
7952 d_fprintf(stderr
, "Expected no termination of '%s'\n", dst
);
7959 TALLOC_FREE(tmp_ctx
);
7962 TALLOC_FREE(tmp_ctx
);
7967 struct talloc_dict_test
{
7971 static int talloc_dict_traverse_fn(DATA_BLOB key
, void *data
, void *priv
)
7973 int *count
= (int *)priv
;
7978 static bool run_local_talloc_dict(int dummy
)
7980 struct talloc_dict
*dict
;
7981 struct talloc_dict_test
*t
;
7982 int key
, count
, res
;
7985 dict
= talloc_dict_init(talloc_tos());
7990 t
= talloc(talloc_tos(), struct talloc_dict_test
);
7997 ok
= talloc_dict_set(dict
, data_blob_const(&key
, sizeof(key
)), &t
);
8003 res
= talloc_dict_traverse(dict
, talloc_dict_traverse_fn
, &count
);
8021 static bool run_local_string_to_sid(int dummy
) {
8024 if (string_to_sid(&sid
, "S--1-5-32-545")) {
8025 printf("allowing S--1-5-32-545\n");
8028 if (string_to_sid(&sid
, "S-1-5-32-+545")) {
8029 printf("allowing S-1-5-32-+545\n");
8032 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")) {
8033 printf("allowing S-1-2-3-4-5-6-7-8-9-0-1-2-3-4-5-6-7-8-9-0\n");
8036 if (string_to_sid(&sid
, "S-1-5-32-545-abc")) {
8037 printf("allowing S-1-5-32-545-abc\n");
8040 if (!string_to_sid(&sid
, "S-1-5-32-545")) {
8041 printf("could not parse S-1-5-32-545\n");
8044 if (!dom_sid_equal(&sid
, &global_sid_Builtin_Users
)) {
8045 printf("mis-parsed S-1-5-32-545 as %s\n",
8046 sid_string_tos(&sid
));
8052 static bool run_local_binary_to_sid(int dummy
) {
8053 struct dom_sid
*sid
= talloc(NULL
, struct dom_sid
);
8054 static const char good_binary_sid
[] = {
8055 0x1, /* revision number */
8057 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8058 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8059 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8060 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8061 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8062 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8063 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8064 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8065 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8066 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8067 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8068 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8069 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8070 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8071 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8072 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8075 static const char long_binary_sid
[] = {
8076 0x1, /* revision number */
8078 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8079 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8080 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8081 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8082 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8083 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8084 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8085 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8086 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8087 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8088 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8089 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8090 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8091 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8092 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8093 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8094 0x1, 0x1, 0x1, 0x1, /* auth[15] */
8095 0x1, 0x1, 0x1, 0x1, /* auth[16] */
8096 0x1, 0x1, 0x1, 0x1, /* auth[17] */
8099 static const char long_binary_sid2
[] = {
8100 0x1, /* revision number */
8102 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8103 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8104 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8105 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8106 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8107 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8108 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8109 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8110 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8111 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8112 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8113 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8114 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8115 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8116 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8117 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8118 0x1, 0x1, 0x1, 0x1, /* auth[15] */
8119 0x1, 0x1, 0x1, 0x1, /* auth[16] */
8120 0x1, 0x1, 0x1, 0x1, /* auth[17] */
8121 0x1, 0x1, 0x1, 0x1, /* auth[18] */
8122 0x1, 0x1, 0x1, 0x1, /* auth[19] */
8123 0x1, 0x1, 0x1, 0x1, /* auth[20] */
8124 0x1, 0x1, 0x1, 0x1, /* auth[21] */
8125 0x1, 0x1, 0x1, 0x1, /* auth[22] */
8126 0x1, 0x1, 0x1, 0x1, /* auth[23] */
8127 0x1, 0x1, 0x1, 0x1, /* auth[24] */
8128 0x1, 0x1, 0x1, 0x1, /* auth[25] */
8129 0x1, 0x1, 0x1, 0x1, /* auth[26] */
8130 0x1, 0x1, 0x1, 0x1, /* auth[27] */
8131 0x1, 0x1, 0x1, 0x1, /* auth[28] */
8132 0x1, 0x1, 0x1, 0x1, /* auth[29] */
8133 0x1, 0x1, 0x1, 0x1, /* auth[30] */
8134 0x1, 0x1, 0x1, 0x1, /* auth[31] */
8137 if (!sid_parse(good_binary_sid
, sizeof(good_binary_sid
), sid
)) {
8140 if (sid_parse(long_binary_sid2
, sizeof(long_binary_sid2
), sid
)) {
8143 if (sid_parse(long_binary_sid
, sizeof(long_binary_sid
), sid
)) {
8149 /* Split a path name into filename and stream name components. Canonicalise
8150 * such that an implicit $DATA token is always explicit.
8152 * The "specification" of this function can be found in the
8153 * run_local_stream_name() function in torture.c, I've tried those
8154 * combinations against a W2k3 server.
8157 static NTSTATUS
split_ntfs_stream_name(TALLOC_CTX
*mem_ctx
, const char *fname
,
8158 char **pbase
, char **pstream
)
8161 char *stream
= NULL
;
8162 char *sname
; /* stream name */
8163 const char *stype
; /* stream type */
8165 DEBUG(10, ("split_ntfs_stream_name called for [%s]\n", fname
));
8167 sname
= strchr_m(fname
, ':');
8169 if (lp_posix_pathnames() || (sname
== NULL
)) {
8170 if (pbase
!= NULL
) {
8171 base
= talloc_strdup(mem_ctx
, fname
);
8172 NT_STATUS_HAVE_NO_MEMORY(base
);
8177 if (pbase
!= NULL
) {
8178 base
= talloc_strndup(mem_ctx
, fname
, PTR_DIFF(sname
, fname
));
8179 NT_STATUS_HAVE_NO_MEMORY(base
);
8184 stype
= strchr_m(sname
, ':');
8186 if (stype
== NULL
) {
8187 sname
= talloc_strdup(mem_ctx
, sname
);
8191 if (strcasecmp_m(stype
, ":$DATA") != 0) {
8193 * If there is an explicit stream type, so far we only
8194 * allow $DATA. Is there anything else allowed? -- vl
8196 DEBUG(10, ("[%s] is an invalid stream type\n", stype
));
8198 return NT_STATUS_OBJECT_NAME_INVALID
;
8200 sname
= talloc_strndup(mem_ctx
, sname
, PTR_DIFF(stype
, sname
));
8204 if (sname
== NULL
) {
8206 return NT_STATUS_NO_MEMORY
;
8209 if (sname
[0] == '\0') {
8211 * no stream name, so no stream
8216 if (pstream
!= NULL
) {
8217 stream
= talloc_asprintf(mem_ctx
, "%s:%s", sname
, stype
);
8218 if (stream
== NULL
) {
8221 return NT_STATUS_NO_MEMORY
;
8224 * upper-case the type field
8226 strupper_m(strchr_m(stream
, ':')+1);
8230 if (pbase
!= NULL
) {
8233 if (pstream
!= NULL
) {
8236 return NT_STATUS_OK
;
8239 static bool test_stream_name(const char *fname
, const char *expected_base
,
8240 const char *expected_stream
,
8241 NTSTATUS expected_status
)
8245 char *stream
= NULL
;
8247 status
= split_ntfs_stream_name(talloc_tos(), fname
, &base
, &stream
);
8248 if (!NT_STATUS_EQUAL(status
, expected_status
)) {
8252 if (!NT_STATUS_IS_OK(status
)) {
8256 if (base
== NULL
) goto error
;
8258 if (strcmp(expected_base
, base
) != 0) goto error
;
8260 if ((expected_stream
!= NULL
) && (stream
== NULL
)) goto error
;
8261 if ((expected_stream
== NULL
) && (stream
!= NULL
)) goto error
;
8263 if ((stream
!= NULL
) && (strcmp(expected_stream
, stream
) != 0))
8267 TALLOC_FREE(stream
);
8271 d_fprintf(stderr
, "Do test_stream(%s, %s, %s, %s)\n",
8272 fname
, expected_base
? expected_base
: "<NULL>",
8273 expected_stream
? expected_stream
: "<NULL>",
8274 nt_errstr(expected_status
));
8275 d_fprintf(stderr
, "-> base=%s, stream=%s, status=%s\n",
8276 base
? base
: "<NULL>", stream
? stream
: "<NULL>",
8279 TALLOC_FREE(stream
);
8283 static bool run_local_stream_name(int dummy
)
8287 ret
&= test_stream_name(
8288 "bla", "bla", NULL
, NT_STATUS_OK
);
8289 ret
&= test_stream_name(
8290 "bla::$DATA", "bla", NULL
, NT_STATUS_OK
);
8291 ret
&= test_stream_name(
8292 "bla:blub:", "bla", NULL
, NT_STATUS_OBJECT_NAME_INVALID
);
8293 ret
&= test_stream_name(
8294 "bla::", NULL
, NULL
, NT_STATUS_OBJECT_NAME_INVALID
);
8295 ret
&= test_stream_name(
8296 "bla::123", "bla", NULL
, NT_STATUS_OBJECT_NAME_INVALID
);
8297 ret
&= test_stream_name(
8298 "bla:$DATA", "bla", "$DATA:$DATA", NT_STATUS_OK
);
8299 ret
&= test_stream_name(
8300 "bla:x:$DATA", "bla", "x:$DATA", NT_STATUS_OK
);
8301 ret
&= test_stream_name(
8302 "bla:x", "bla", "x:$DATA", NT_STATUS_OK
);
8307 static bool data_blob_equal(DATA_BLOB a
, DATA_BLOB b
)
8309 if (a
.length
!= b
.length
) {
8310 printf("a.length=%d != b.length=%d\n",
8311 (int)a
.length
, (int)b
.length
);
8314 if (memcmp(a
.data
, b
.data
, a
.length
) != 0) {
8315 printf("a.data and b.data differ\n");
8321 static bool run_local_memcache(int dummy
)
8323 struct memcache
*cache
;
8325 DATA_BLOB d1
, d2
, d3
;
8326 DATA_BLOB v1
, v2
, v3
;
8328 TALLOC_CTX
*mem_ctx
;
8330 size_t size1
, size2
;
8333 cache
= memcache_init(NULL
, sizeof(void *) == 8 ? 200 : 100);
8335 if (cache
== NULL
) {
8336 printf("memcache_init failed\n");
8340 d1
= data_blob_const("d1", 2);
8341 d2
= data_blob_const("d2", 2);
8342 d3
= data_blob_const("d3", 2);
8344 k1
= data_blob_const("d1", 2);
8345 k2
= data_blob_const("d2", 2);
8347 memcache_add(cache
, STAT_CACHE
, k1
, d1
);
8348 memcache_add(cache
, GETWD_CACHE
, k2
, d2
);
8350 if (!memcache_lookup(cache
, STAT_CACHE
, k1
, &v1
)) {
8351 printf("could not find k1\n");
8354 if (!data_blob_equal(d1
, v1
)) {
8358 if (!memcache_lookup(cache
, GETWD_CACHE
, k2
, &v2
)) {
8359 printf("could not find k2\n");
8362 if (!data_blob_equal(d2
, v2
)) {
8366 memcache_add(cache
, STAT_CACHE
, k1
, d3
);
8368 if (!memcache_lookup(cache
, STAT_CACHE
, k1
, &v3
)) {
8369 printf("could not find replaced k1\n");
8372 if (!data_blob_equal(d3
, v3
)) {
8376 memcache_add(cache
, GETWD_CACHE
, k1
, d1
);
8378 if (memcache_lookup(cache
, GETWD_CACHE
, k2
, &v2
)) {
8379 printf("Did find k2, should have been purged\n");
8385 cache
= memcache_init(NULL
, 0);
8387 mem_ctx
= talloc_init("foo");
8389 str1
= talloc_strdup(mem_ctx
, "string1");
8390 str2
= talloc_strdup(mem_ctx
, "string2");
8392 memcache_add_talloc(cache
, SINGLETON_CACHE_TALLOC
,
8393 data_blob_string_const("torture"), &str1
);
8394 size1
= talloc_total_size(cache
);
8396 memcache_add_talloc(cache
, SINGLETON_CACHE_TALLOC
,
8397 data_blob_string_const("torture"), &str2
);
8398 size2
= talloc_total_size(cache
);
8400 printf("size1=%d, size2=%d\n", (int)size1
, (int)size2
);
8402 if (size2
> size1
) {
8403 printf("memcache leaks memory!\n");
8413 static void wbclient_done(struct tevent_req
*req
)
8416 struct winbindd_response
*wb_resp
;
8417 int *i
= (int *)tevent_req_callback_data_void(req
);
8419 wbc_err
= wb_trans_recv(req
, req
, &wb_resp
);
8422 d_printf("wb_trans_recv %d returned %s\n", *i
, wbcErrorString(wbc_err
));
8425 static bool run_local_wbclient(int dummy
)
8427 struct event_context
*ev
;
8428 struct wb_context
**wb_ctx
;
8429 struct winbindd_request wb_req
;
8430 bool result
= false;
8433 BlockSignals(True
, SIGPIPE
);
8435 ev
= tevent_context_init_byname(talloc_tos(), "epoll");
8440 wb_ctx
= talloc_array(ev
, struct wb_context
*, torture_nprocs
);
8441 if (wb_ctx
== NULL
) {
8445 ZERO_STRUCT(wb_req
);
8446 wb_req
.cmd
= WINBINDD_PING
;
8448 d_printf("torture_nprocs=%d, numops=%d\n", (int)torture_nprocs
, (int)torture_numops
);
8450 for (i
=0; i
<torture_nprocs
; i
++) {
8451 wb_ctx
[i
] = wb_context_init(ev
, NULL
);
8452 if (wb_ctx
[i
] == NULL
) {
8455 for (j
=0; j
<torture_numops
; j
++) {
8456 struct tevent_req
*req
;
8457 req
= wb_trans_send(ev
, ev
, wb_ctx
[i
],
8458 (j
% 2) == 0, &wb_req
);
8462 tevent_req_set_callback(req
, wbclient_done
, &i
);
8468 while (i
< torture_nprocs
* torture_numops
) {
8469 tevent_loop_once(ev
);
8478 static void getaddrinfo_finished(struct tevent_req
*req
)
8480 char *name
= (char *)tevent_req_callback_data_void(req
);
8481 struct addrinfo
*ainfo
;
8484 res
= getaddrinfo_recv(req
, &ainfo
);
8486 d_printf("gai(%s) returned %s\n", name
, gai_strerror(res
));
8489 d_printf("gai(%s) succeeded\n", name
);
8490 freeaddrinfo(ainfo
);
8493 static bool run_getaddrinfo_send(int dummy
)
8495 TALLOC_CTX
*frame
= talloc_stackframe();
8496 struct fncall_context
*ctx
;
8497 struct tevent_context
*ev
;
8498 bool result
= false;
8499 const char *names
[4] = { "www.samba.org", "notfound.samba.org",
8500 "www.slashdot.org", "heise.de" };
8501 struct tevent_req
*reqs
[4];
8504 ev
= event_context_init(frame
);
8509 ctx
= fncall_context_init(frame
, 4);
8511 for (i
=0; i
<ARRAY_SIZE(names
); i
++) {
8512 reqs
[i
] = getaddrinfo_send(frame
, ev
, ctx
, names
[i
], NULL
,
8514 if (reqs
[i
] == NULL
) {
8517 tevent_req_set_callback(reqs
[i
], getaddrinfo_finished
,
8518 discard_const_p(void, names
[i
]));
8521 for (i
=0; i
<ARRAY_SIZE(reqs
); i
++) {
8522 tevent_loop_once(ev
);
8531 static bool dbtrans_inc(struct db_context
*db
)
8533 struct db_record
*rec
;
8539 rec
= dbwrap_fetch_locked(db
, db
, string_term_tdb_data("transtest"));
8541 printf(__location__
"fetch_lock failed\n");
8545 value
= dbwrap_record_get_value(rec
);
8547 if (value
.dsize
!= sizeof(uint32_t)) {
8548 printf(__location__
"value.dsize = %d\n",
8553 memcpy(&val
, value
.dptr
, sizeof(val
));
8556 status
= dbwrap_record_store(
8557 rec
, make_tdb_data((uint8_t *)&val
, sizeof(val
)), 0);
8558 if (!NT_STATUS_IS_OK(status
)) {
8559 printf(__location__
"store failed: %s\n",
8570 static bool run_local_dbtrans(int dummy
)
8572 struct db_context
*db
;
8573 struct db_record
*rec
;
8579 db
= db_open(talloc_tos(), "transtest.tdb", 0, TDB_DEFAULT
,
8580 O_RDWR
|O_CREAT
, 0600, DBWRAP_LOCK_ORDER_1
);
8582 printf("Could not open transtest.db\n");
8586 res
= dbwrap_transaction_start(db
);
8588 printf(__location__
"transaction_start failed\n");
8592 rec
= dbwrap_fetch_locked(db
, db
, string_term_tdb_data("transtest"));
8594 printf(__location__
"fetch_lock failed\n");
8598 value
= dbwrap_record_get_value(rec
);
8600 if (value
.dptr
== NULL
) {
8602 status
= dbwrap_record_store(
8603 rec
, make_tdb_data((uint8_t *)&initial
,
8606 if (!NT_STATUS_IS_OK(status
)) {
8607 printf(__location__
"store returned %s\n",
8615 res
= dbwrap_transaction_commit(db
);
8617 printf(__location__
"transaction_commit failed\n");
8625 res
= dbwrap_transaction_start(db
);
8627 printf(__location__
"transaction_start failed\n");
8631 status
= dbwrap_fetch_uint32_bystring(db
, "transtest", &val
);
8632 if (!NT_STATUS_IS_OK(status
)) {
8633 printf(__location__
"dbwrap_fetch_uint32 failed: %s\n",
8638 for (i
=0; i
<10; i
++) {
8639 if (!dbtrans_inc(db
)) {
8644 status
= dbwrap_fetch_uint32_bystring(db
, "transtest", &val2
);
8645 if (!NT_STATUS_IS_OK(status
)) {
8646 printf(__location__
"dbwrap_fetch_uint32 failed: %s\n",
8651 if (val2
!= val
+ 10) {
8652 printf(__location__
"val=%d, val2=%d\n",
8653 (int)val
, (int)val2
);
8657 printf("val2=%d\r", val2
);
8659 res
= dbwrap_transaction_commit(db
);
8661 printf(__location__
"transaction_commit failed\n");
8671 * Just a dummy test to be run under a debugger. There's no real way
8672 * to inspect the tevent_select specific function from outside of
8676 static bool run_local_tevent_select(int dummy
)
8678 struct tevent_context
*ev
;
8679 struct tevent_fd
*fd1
, *fd2
;
8680 bool result
= false;
8682 ev
= tevent_context_init_byname(NULL
, "select");
8684 d_fprintf(stderr
, "tevent_context_init_byname failed\n");
8688 fd1
= tevent_add_fd(ev
, ev
, 2, 0, NULL
, NULL
);
8690 d_fprintf(stderr
, "tevent_add_fd failed\n");
8693 fd2
= tevent_add_fd(ev
, ev
, 3, 0, NULL
, NULL
);
8695 d_fprintf(stderr
, "tevent_add_fd failed\n");
8700 fd2
= tevent_add_fd(ev
, ev
, 1, 0, NULL
, NULL
);
8702 d_fprintf(stderr
, "tevent_add_fd failed\n");
8712 static bool run_local_hex_encode_buf(int dummy
)
8718 for (i
=0; i
<sizeof(src
); i
++) {
8721 hex_encode_buf(buf
, src
, sizeof(src
));
8722 if (strcmp(buf
, "0001020304050607") != 0) {
8725 hex_encode_buf(buf
, NULL
, 0);
8726 if (buf
[0] != '\0') {
8732 static const char *remove_duplicate_addrs2_test_strings_vector
[] = {
8754 "1001:1111:1111:1000:0:1111:1111:1111",
8763 static const char *remove_duplicate_addrs2_test_strings_result
[] = {
8777 "1001:1111:1111:1000:0:1111:1111:1111"
8780 static bool run_local_remove_duplicate_addrs2(int dummy
)
8782 struct ip_service test_vector
[28];
8785 /* Construct the sockaddr_storage test vector. */
8786 for (i
= 0; i
< 28; i
++) {
8787 struct addrinfo hints
;
8788 struct addrinfo
*res
= NULL
;
8791 memset(&hints
, '\0', sizeof(hints
));
8792 hints
.ai_flags
= AI_NUMERICHOST
;
8793 ret
= getaddrinfo(remove_duplicate_addrs2_test_strings_vector
[i
],
8798 fprintf(stderr
, "getaddrinfo failed on [%s]\n",
8799 remove_duplicate_addrs2_test_strings_vector
[i
]);
8802 memset(&test_vector
[i
], '\0', sizeof(test_vector
[i
]));
8803 memcpy(&test_vector
[i
].ss
,
8809 count
= remove_duplicate_addrs2(test_vector
, i
);
8812 fprintf(stderr
, "count wrong (%d) should be 14\n",
8817 for (i
= 0; i
< count
; i
++) {
8818 char addr
[INET6_ADDRSTRLEN
];
8820 print_sockaddr(addr
, sizeof(addr
), &test_vector
[i
].ss
);
8822 if (strcmp(addr
, remove_duplicate_addrs2_test_strings_result
[i
]) != 0) {
8823 fprintf(stderr
, "mismatch on [%d] [%s] [%s]\n",
8826 remove_duplicate_addrs2_test_strings_result
[i
]);
8831 printf("run_local_remove_duplicate_addrs2: success\n");
8835 static double create_procs(bool (*fn
)(int), bool *result
)
8838 volatile pid_t
*child_status
;
8839 volatile bool *child_status_out
;
8842 struct timeval start
;
8846 child_status
= (volatile pid_t
*)anonymous_shared_allocate(sizeof(pid_t
)*torture_nprocs
);
8847 if (!child_status
) {
8848 printf("Failed to setup shared memory\n");
8852 child_status_out
= (volatile bool *)anonymous_shared_allocate(sizeof(bool)*torture_nprocs
);
8853 if (!child_status_out
) {
8854 printf("Failed to setup result status shared memory\n");
8858 for (i
= 0; i
< torture_nprocs
; i
++) {
8859 child_status
[i
] = 0;
8860 child_status_out
[i
] = True
;
8863 start
= timeval_current();
8865 for (i
=0;i
<torture_nprocs
;i
++) {
8868 pid_t mypid
= getpid();
8869 sys_srandom(((int)mypid
) ^ ((int)time(NULL
)));
8871 slprintf(myname
,sizeof(myname
),"CLIENT%d", i
);
8874 if (torture_open_connection(¤t_cli
, i
)) break;
8876 printf("pid %d failed to start\n", (int)getpid());
8882 child_status
[i
] = getpid();
8884 while (child_status
[i
] && timeval_elapsed(&start
) < 5) smb_msleep(2);
8886 child_status_out
[i
] = fn(i
);
8893 for (i
=0;i
<torture_nprocs
;i
++) {
8894 if (child_status
[i
]) synccount
++;
8896 if (synccount
== torture_nprocs
) break;
8898 } while (timeval_elapsed(&start
) < 30);
8900 if (synccount
!= torture_nprocs
) {
8901 printf("FAILED TO START %d CLIENTS (started %d)\n", torture_nprocs
, synccount
);
8903 return timeval_elapsed(&start
);
8906 /* start the client load */
8907 start
= timeval_current();
8909 for (i
=0;i
<torture_nprocs
;i
++) {
8910 child_status
[i
] = 0;
8913 printf("%d clients started\n", torture_nprocs
);
8915 for (i
=0;i
<torture_nprocs
;i
++) {
8916 while (waitpid(0, &status
, 0) == -1 && errno
== EINTR
) /* noop */ ;
8921 for (i
=0;i
<torture_nprocs
;i
++) {
8922 if (!child_status_out
[i
]) {
8926 return timeval_elapsed(&start
);
8929 #define FLAG_MULTIPROC 1
8936 {"FDPASS", run_fdpasstest
, 0},
8937 {"LOCK1", run_locktest1
, 0},
8938 {"LOCK2", run_locktest2
, 0},
8939 {"LOCK3", run_locktest3
, 0},
8940 {"LOCK4", run_locktest4
, 0},
8941 {"LOCK5", run_locktest5
, 0},
8942 {"LOCK6", run_locktest6
, 0},
8943 {"LOCK7", run_locktest7
, 0},
8944 {"LOCK8", run_locktest8
, 0},
8945 {"LOCK9", run_locktest9
, 0},
8946 {"UNLINK", run_unlinktest
, 0},
8947 {"BROWSE", run_browsetest
, 0},
8948 {"ATTR", run_attrtest
, 0},
8949 {"TRANS2", run_trans2test
, 0},
8950 {"MAXFID", run_maxfidtest
, FLAG_MULTIPROC
},
8951 {"TORTURE",run_torture
, FLAG_MULTIPROC
},
8952 {"RANDOMIPC", run_randomipc
, 0},
8953 {"NEGNOWAIT", run_negprot_nowait
, 0},
8954 {"NBENCH", run_nbench
, 0},
8955 {"NBENCH2", run_nbench2
, 0},
8956 {"OPLOCK1", run_oplock1
, 0},
8957 {"OPLOCK2", run_oplock2
, 0},
8958 {"OPLOCK4", run_oplock4
, 0},
8959 {"DIR", run_dirtest
, 0},
8960 {"DIR1", run_dirtest1
, 0},
8961 {"DIR-CREATETIME", run_dir_createtime
, 0},
8962 {"DENY1", torture_denytest1
, 0},
8963 {"DENY2", torture_denytest2
, 0},
8964 {"TCON", run_tcon_test
, 0},
8965 {"TCONDEV", run_tcon_devtype_test
, 0},
8966 {"RW1", run_readwritetest
, 0},
8967 {"RW2", run_readwritemulti
, FLAG_MULTIPROC
},
8968 {"RW3", run_readwritelarge
, 0},
8969 {"RW-SIGNING", run_readwritelarge_signtest
, 0},
8970 {"OPEN", run_opentest
, 0},
8971 {"POSIX", run_simple_posix_open_test
, 0},
8972 {"POSIX-APPEND", run_posix_append
, 0},
8973 {"CASE-INSENSITIVE-CREATE", run_case_insensitive_create
, 0},
8974 {"ASYNC-ECHO", run_async_echo
, 0},
8975 { "UID-REGRESSION-TEST", run_uid_regression_test
, 0},
8976 { "SHORTNAME-TEST", run_shortname_test
, 0},
8977 { "ADDRCHANGE", run_addrchange
, 0},
8979 {"OPENATTR", run_openattrtest
, 0},
8981 {"XCOPY", run_xcopy
, 0},
8982 {"RENAME", run_rename
, 0},
8983 {"DELETE", run_deletetest
, 0},
8984 {"DELETE-LN", run_deletetest_ln
, 0},
8985 {"PROPERTIES", run_properties
, 0},
8986 {"MANGLE", torture_mangle
, 0},
8987 {"MANGLE1", run_mangle1
, 0},
8988 {"W2K", run_w2ktest
, 0},
8989 {"TRANS2SCAN", torture_trans2_scan
, 0},
8990 {"NTTRANSSCAN", torture_nttrans_scan
, 0},
8991 {"UTABLE", torture_utable
, 0},
8992 {"CASETABLE", torture_casetable
, 0},
8993 {"ERRMAPEXTRACT", run_error_map_extract
, 0},
8994 {"PIPE_NUMBER", run_pipe_number
, 0},
8995 {"TCON2", run_tcon2_test
, 0},
8996 {"IOCTL", torture_ioctl_test
, 0},
8997 {"CHKPATH", torture_chkpath_test
, 0},
8998 {"FDSESS", run_fdsesstest
, 0},
8999 { "EATEST", run_eatest
, 0},
9000 { "SESSSETUP_BENCH", run_sesssetup_bench
, 0},
9001 { "CHAIN1", run_chain1
, 0},
9002 { "CHAIN2", run_chain2
, 0},
9003 { "CHAIN3", run_chain3
, 0},
9004 { "WINDOWS-WRITE", run_windows_write
, 0},
9005 { "NTTRANS-CREATE", run_nttrans_create
, 0},
9006 { "NTTRANS-FSCTL", run_nttrans_fsctl
, 0},
9007 { "CLI_ECHO", run_cli_echo
, 0},
9008 { "GETADDRINFO", run_getaddrinfo_send
, 0},
9009 { "TLDAP", run_tldap
},
9010 { "STREAMERROR", run_streamerror
},
9011 { "NOTIFY-BENCH", run_notify_bench
},
9012 { "NOTIFY-BENCH2", run_notify_bench2
},
9013 { "NOTIFY-BENCH3", run_notify_bench3
},
9014 { "BAD-NBT-SESSION", run_bad_nbt_session
},
9015 { "SMB-ANY-CONNECT", run_smb_any_connect
},
9016 { "NOTIFY-ONLINE", run_notify_online
},
9017 { "SMB2-BASIC", run_smb2_basic
},
9018 { "SMB2-NEGPROT", run_smb2_negprot
},
9019 { "SMB2-SESSION-RECONNECT", run_smb2_session_reconnect
},
9020 { "SMB2-TCON-DEPENDENCE", run_smb2_tcon_dependence
},
9021 { "SMB2-MULTI-CHANNEL", run_smb2_multi_channel
},
9022 { "SMB2-SESSION-REAUTH", run_smb2_session_reauth
},
9023 { "CLEANUP1", run_cleanup1
},
9024 { "CLEANUP2", run_cleanup2
},
9025 { "CLEANUP3", run_cleanup3
},
9026 { "LOCAL-SUBSTITUTE", run_local_substitute
, 0},
9027 { "LOCAL-GENCACHE", run_local_gencache
, 0},
9028 { "LOCAL-TALLOC-DICT", run_local_talloc_dict
, 0},
9029 { "LOCAL-CTDB-CONN", run_ctdb_conn
, 0},
9030 { "LOCAL-MSG", run_msg_test
, 0},
9031 { "LOCAL-DBWRAP-WATCH1", run_dbwrap_watch1
, 0 },
9032 { "LOCAL-BASE64", run_local_base64
, 0},
9033 { "LOCAL-RBTREE", run_local_rbtree
, 0},
9034 { "LOCAL-MEMCACHE", run_local_memcache
, 0},
9035 { "LOCAL-STREAM-NAME", run_local_stream_name
, 0},
9036 { "LOCAL-WBCLIENT", run_local_wbclient
, 0},
9037 { "LOCAL-string_to_sid", run_local_string_to_sid
, 0},
9038 { "LOCAL-binary_to_sid", run_local_binary_to_sid
, 0},
9039 { "LOCAL-DBTRANS", run_local_dbtrans
, 0},
9040 { "LOCAL-TEVENT-SELECT", run_local_tevent_select
, 0},
9041 { "LOCAL-CONVERT-STRING", run_local_convert_string
, 0},
9042 { "LOCAL-CONV-AUTH-INFO", run_local_conv_auth_info
, 0},
9043 { "LOCAL-sprintf_append", run_local_sprintf_append
, 0},
9044 { "LOCAL-hex_encode_buf", run_local_hex_encode_buf
, 0},
9045 { "LOCAL-IDMAP-TDB-COMMON", run_idmap_tdb_common_test
, 0},
9046 { "LOCAL-remove_duplicate_addrs2", run_local_remove_duplicate_addrs2
, 0},
9051 /****************************************************************************
9052 run a specified test or "ALL"
9053 ****************************************************************************/
9054 static bool run_test(const char *name
)
9061 if (strequal(name
,"ALL")) {
9062 for (i
=0;torture_ops
[i
].name
;i
++) {
9063 run_test(torture_ops
[i
].name
);
9068 for (i
=0;torture_ops
[i
].name
;i
++) {
9069 fstr_sprintf(randomfname
, "\\XX%x",
9070 (unsigned)random());
9072 if (strequal(name
, torture_ops
[i
].name
)) {
9074 printf("Running %s\n", name
);
9075 if (torture_ops
[i
].flags
& FLAG_MULTIPROC
) {
9076 t
= create_procs(torture_ops
[i
].fn
, &result
);
9079 printf("TEST %s FAILED!\n", name
);
9082 struct timeval start
;
9083 start
= timeval_current();
9084 if (!torture_ops
[i
].fn(0)) {
9086 printf("TEST %s FAILED!\n", name
);
9088 t
= timeval_elapsed(&start
);
9090 printf("%s took %g secs\n\n", name
, t
);
9095 printf("Did not find a test named %s\n", name
);
9103 static void usage(void)
9107 printf("WARNING samba4 test suite is much more complete nowadays.\n");
9108 printf("Please use samba4 torture.\n\n");
9110 printf("Usage: smbtorture //server/share <options> TEST1 TEST2 ...\n");
9112 printf("\t-d debuglevel\n");
9113 printf("\t-U user%%pass\n");
9114 printf("\t-k use kerberos\n");
9115 printf("\t-N numprocs\n");
9116 printf("\t-n my_netbios_name\n");
9117 printf("\t-W workgroup\n");
9118 printf("\t-o num_operations\n");
9119 printf("\t-O socket_options\n");
9120 printf("\t-m maximum protocol\n");
9121 printf("\t-L use oplocks\n");
9122 printf("\t-c CLIENT.TXT specify client load file for NBENCH\n");
9123 printf("\t-A showall\n");
9124 printf("\t-p port\n");
9125 printf("\t-s seed\n");
9126 printf("\t-b unclist_filename specify multiple shares for multiple connections\n");
9127 printf("\t-f filename filename to test\n");
9130 printf("tests are:");
9131 for (i
=0;torture_ops
[i
].name
;i
++) {
9132 printf(" %s", torture_ops
[i
].name
);
9136 printf("default test is ALL\n");
9141 /****************************************************************************
9143 ****************************************************************************/
9144 int main(int argc
,char *argv
[])
9150 bool correct
= True
;
9151 TALLOC_CTX
*frame
= talloc_stackframe();
9152 int seed
= time(NULL
);
9154 #ifdef HAVE_SETBUFFER
9155 setbuffer(stdout
, NULL
, 0);
9158 setup_logging("smbtorture", DEBUG_STDOUT
);
9162 if (is_default_dyn_CONFIGFILE()) {
9163 if(getenv("SMB_CONF_PATH")) {
9164 set_dyn_CONFIGFILE(getenv("SMB_CONF_PATH"));
9167 lp_load_global(get_dyn_CONFIGFILE());
9174 for(p
= argv
[1]; *p
; p
++)
9178 if (strncmp(argv
[1], "//", 2)) {
9182 fstrcpy(host
, &argv
[1][2]);
9183 p
= strchr_m(&host
[2],'/');
9188 fstrcpy(share
, p
+1);
9190 fstrcpy(myname
, get_myname(talloc_tos()));
9192 fprintf(stderr
, "Failed to get my hostname.\n");
9196 if (*username
== 0 && getenv("LOGNAME")) {
9197 fstrcpy(username
,getenv("LOGNAME"));
9203 fstrcpy(workgroup
, lp_workgroup());
9205 while ((opt
= getopt(argc
, argv
, "p:hW:U:n:N:O:o:m:Ll:d:Aec:ks:b:B:f:"))
9209 port_to_use
= atoi(optarg
);
9212 seed
= atoi(optarg
);
9215 fstrcpy(workgroup
,optarg
);
9218 max_protocol
= interpret_protocol(optarg
, max_protocol
);
9221 torture_nprocs
= atoi(optarg
);
9224 torture_numops
= atoi(optarg
);
9227 lp_set_cmdline("log level", optarg
);
9236 local_path
= optarg
;
9239 torture_showall
= True
;
9242 fstrcpy(myname
, optarg
);
9245 client_txt
= optarg
;
9252 use_kerberos
= True
;
9254 d_printf("No kerberos support compiled in\n");
9260 fstrcpy(username
,optarg
);
9261 p
= strchr_m(username
,'%');
9264 fstrcpy(password
, p
+1);
9269 fstrcpy(multishare_conn_fname
, optarg
);
9270 use_multishare_conn
= True
;
9273 torture_blocksize
= atoi(optarg
);
9276 test_filename
= SMB_STRDUP(optarg
);
9279 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
9284 d_printf("using seed %d\n", seed
);
9288 if(use_kerberos
&& !gotuser
) gotpass
= True
;
9291 p
= getpass("Password:");
9293 fstrcpy(password
, p
);
9298 printf("host=%s share=%s user=%s myname=%s\n",
9299 host
, share
, username
, myname
);
9301 if (argc
== optind
) {
9302 correct
= run_test("ALL");
9304 for (i
=optind
;i
<argc
;i
++) {
9305 if (!run_test(argv
[i
])) {