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 const char *sockops
="TCP_NODELAY";
51 static int port_to_use
=0;
52 int torture_numops
=100;
53 int torture_blocksize
=1024*1024;
54 static int procnum
; /* records process count number when forking */
55 static struct cli_state
*current_cli
;
56 static fstring randomfname
;
57 static bool use_oplocks
;
58 static bool use_level_II_oplocks
;
59 static const char *client_txt
= "client_oplocks.txt";
60 static bool disable_spnego
;
61 static bool use_kerberos
;
62 static bool force_dos_errors
;
63 static fstring multishare_conn_fname
;
64 static bool use_multishare_conn
= False
;
65 static bool do_encrypt
;
66 static const char *local_path
= NULL
;
67 static enum smb_signing_setting signing_state
= SMB_SIGNING_DEFAULT
;
70 bool torture_showall
= False
;
72 static double create_procs(bool (*fn
)(int), bool *result
);
74 /********************************************************************
75 Ensure a connection is encrypted.
76 ********************************************************************/
78 static bool force_cli_encryption(struct cli_state
*c
,
79 const char *sharename
)
82 uint32 caplow
, caphigh
;
85 if (!SERVER_HAS_UNIX_CIFS(c
)) {
86 d_printf("Encryption required and "
87 "server that doesn't support "
88 "UNIX extensions - failing connect\n");
92 status
= cli_unix_extensions_version(c
, &major
, &minor
, &caplow
,
94 if (!NT_STATUS_IS_OK(status
)) {
95 d_printf("Encryption required and "
96 "can't get UNIX CIFS extensions "
97 "version from server: %s\n", nt_errstr(status
));
101 if (!(caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
)) {
102 d_printf("Encryption required and "
103 "share %s doesn't support "
104 "encryption.\n", sharename
);
108 if (c
->use_kerberos
) {
109 status
= cli_gss_smb_encryption_start(c
);
111 status
= cli_raw_ntlm_smb_encryption_start(c
,
117 if (!NT_STATUS_IS_OK(status
)) {
118 d_printf("Encryption required and "
119 "setup failed with error %s.\n",
128 static struct cli_state
*open_nbt_connection(void)
134 if (disable_spnego
) {
135 flags
|= CLI_FULL_CONNECTION_DONT_SPNEGO
;
139 flags
|= CLI_FULL_CONNECTION_OPLOCKS
;
142 if (use_level_II_oplocks
) {
143 flags
|= CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS
;
147 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
;
150 if (force_dos_errors
) {
151 flags
|= CLI_FULL_CONNECTION_FORCE_DOS_ERRORS
;
154 status
= cli_connect_nb(host
, NULL
, port_to_use
, 0x20, myname
,
155 signing_state
, flags
, &c
);
156 if (!NT_STATUS_IS_OK(status
)) {
157 printf("Failed to connect with %s. Error %s\n", host
, nt_errstr(status
) );
161 cli_set_timeout(c
, 120000); /* set a really long timeout (2 minutes) */
166 /****************************************************************************
167 Send a corrupt session request. See rfc1002.txt 4.3 and 4.3.2.
168 ****************************************************************************/
170 static bool cli_bad_session_request(int fd
,
171 struct nmb_name
*calling
, struct nmb_name
*called
)
180 uint8_t message_type
;
182 struct tevent_context
*ev
;
183 struct tevent_req
*req
;
185 frame
= talloc_stackframe();
187 iov
[0].iov_base
= len_buf
;
188 iov
[0].iov_len
= sizeof(len_buf
);
190 /* put in the destination name */
192 iov
[1].iov_base
= name_mangle(talloc_tos(), called
->name
,
194 if (iov
[1].iov_base
== NULL
) {
197 iov
[1].iov_len
= name_len((unsigned char *)iov
[1].iov_base
,
198 talloc_get_size(iov
[1].iov_base
));
202 iov
[2].iov_base
= name_mangle(talloc_tos(), calling
->name
,
204 if (iov
[2].iov_base
== NULL
) {
207 iov
[2].iov_len
= name_len((unsigned char *)iov
[2].iov_base
,
208 talloc_get_size(iov
[2].iov_base
));
210 /* Deliberately corrupt the name len (first byte) */
211 *((uint8_t *)iov
[2].iov_base
) = 100;
213 /* send a session request (RFC 1002) */
214 /* setup the packet length
215 * Remove four bytes from the length count, since the length
216 * field in the NBT Session Service header counts the number
217 * of bytes which follow. The cli_send_smb() function knows
218 * about this and accounts for those four bytes.
222 _smb_setlen(len_buf
, iov
[1].iov_len
+ iov
[2].iov_len
);
223 SCVAL(len_buf
,0,0x81);
225 len
= write_data_iov(fd
, iov
, 3);
230 ev
= samba_tevent_context_init(frame
);
234 req
= read_smb_send(frame
, ev
, fd
);
238 if (!tevent_req_poll(req
, ev
)) {
241 len
= read_smb_recv(req
, talloc_tos(), &inbuf
, &err
);
248 message_type
= CVAL(inbuf
, 0);
249 if (message_type
!= 0x83) {
250 d_fprintf(stderr
, "Expected msg type 0x83, got 0x%2.2x\n",
255 if (smb_len(inbuf
) != 1) {
256 d_fprintf(stderr
, "Expected smb_len 1, got %d\n",
257 (int)smb_len(inbuf
));
261 error
= CVAL(inbuf
, 4);
263 d_fprintf(stderr
, "Expected error 0x82, got %d\n",
274 /* Insert a NULL at the first separator of the given path and return a pointer
275 * to the remainder of the string.
278 terminate_path_at_separator(char * path
)
286 if ((p
= strchr_m(path
, '/'))) {
291 if ((p
= strchr_m(path
, '\\'))) {
301 parse a //server/share type UNC name
303 bool smbcli_parse_unc(const char *unc_name
, TALLOC_CTX
*mem_ctx
,
304 char **hostname
, char **sharename
)
308 *hostname
= *sharename
= NULL
;
310 if (strncmp(unc_name
, "\\\\", 2) &&
311 strncmp(unc_name
, "//", 2)) {
315 *hostname
= talloc_strdup(mem_ctx
, &unc_name
[2]);
316 p
= terminate_path_at_separator(*hostname
);
319 *sharename
= talloc_strdup(mem_ctx
, p
);
320 terminate_path_at_separator(*sharename
);
323 if (*hostname
&& *sharename
) {
327 TALLOC_FREE(*hostname
);
328 TALLOC_FREE(*sharename
);
332 static bool torture_open_connection_share(struct cli_state
**c
,
333 const char *hostname
,
334 const char *sharename
)
340 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
;
342 flags
|= CLI_FULL_CONNECTION_OPLOCKS
;
343 if (use_level_II_oplocks
)
344 flags
|= CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS
;
346 status
= cli_full_connection(c
, myname
,
347 hostname
, NULL
, port_to_use
,
350 password
, flags
, signing_state
);
351 if (!NT_STATUS_IS_OK(status
)) {
352 printf("failed to open share connection: //%s/%s port:%d - %s\n",
353 hostname
, sharename
, port_to_use
, nt_errstr(status
));
357 cli_set_timeout(*c
, 120000); /* set a really long timeout (2 minutes) */
360 return force_cli_encryption(*c
,
366 bool torture_open_connection(struct cli_state
**c
, int conn_index
)
368 char **unc_list
= NULL
;
369 int num_unc_names
= 0;
372 if (use_multishare_conn
==True
) {
374 unc_list
= file_lines_load(multishare_conn_fname
, &num_unc_names
, 0, NULL
);
375 if (!unc_list
|| num_unc_names
<= 0) {
376 printf("Failed to load unc names list from '%s'\n", multishare_conn_fname
);
380 if (!smbcli_parse_unc(unc_list
[conn_index
% num_unc_names
],
382 printf("Failed to parse UNC name %s\n",
383 unc_list
[conn_index
% num_unc_names
]);
384 TALLOC_FREE(unc_list
);
388 result
= torture_open_connection_share(c
, h
, s
);
390 /* h, s were copied earlier */
391 TALLOC_FREE(unc_list
);
395 return torture_open_connection_share(c
, host
, share
);
398 bool torture_init_connection(struct cli_state
**pcli
)
400 struct cli_state
*cli
;
402 cli
= open_nbt_connection();
411 bool torture_cli_session_setup2(struct cli_state
*cli
, uint16
*new_vuid
)
413 uint16_t old_vuid
= cli_state_get_uid(cli
);
414 fstring old_user_name
;
415 size_t passlen
= strlen(password
);
419 fstrcpy(old_user_name
, cli
->user_name
);
420 cli_state_set_uid(cli
, 0);
421 ret
= NT_STATUS_IS_OK(cli_session_setup(cli
, username
,
425 *new_vuid
= cli_state_get_uid(cli
);
426 cli_state_set_uid(cli
, old_vuid
);
427 status
= cli_set_username(cli
, old_user_name
);
428 if (!NT_STATUS_IS_OK(status
)) {
435 bool torture_close_connection(struct cli_state
*c
)
440 status
= cli_tdis(c
);
441 if (!NT_STATUS_IS_OK(status
)) {
442 printf("tdis failed (%s)\n", nt_errstr(status
));
452 /* check if the server produced the expected dos or nt error code */
453 static bool check_both_error(int line
, NTSTATUS status
,
454 uint8 eclass
, uint32 ecode
, NTSTATUS nterr
)
456 if (NT_STATUS_IS_DOS(status
)) {
460 /* Check DOS error */
461 cclass
= NT_STATUS_DOS_CLASS(status
);
462 num
= NT_STATUS_DOS_CODE(status
);
464 if (eclass
!= cclass
|| ecode
!= num
) {
465 printf("unexpected error code class=%d code=%d\n",
466 (int)cclass
, (int)num
);
467 printf(" expected %d/%d %s (line=%d)\n",
468 (int)eclass
, (int)ecode
, nt_errstr(nterr
), line
);
473 if (!NT_STATUS_EQUAL(nterr
, status
)) {
474 printf("unexpected error code %s\n",
476 printf(" expected %s (line=%d)\n",
477 nt_errstr(nterr
), line
);
486 /* check if the server produced the expected error code */
487 static bool check_error(int line
, NTSTATUS status
,
488 uint8 eclass
, uint32 ecode
, NTSTATUS nterr
)
490 if (NT_STATUS_IS_DOS(status
)) {
494 /* Check DOS error */
496 cclass
= NT_STATUS_DOS_CLASS(status
);
497 num
= NT_STATUS_DOS_CODE(status
);
499 if (eclass
!= cclass
|| ecode
!= num
) {
500 printf("unexpected error code class=%d code=%d\n",
501 (int)cclass
, (int)num
);
502 printf(" expected %d/%d %s (line=%d)\n",
503 (int)eclass
, (int)ecode
, nt_errstr(nterr
),
511 if (NT_STATUS_V(nterr
) != NT_STATUS_V(status
)) {
512 printf("unexpected error code %s\n",
514 printf(" expected %s (line=%d)\n", nt_errstr(nterr
),
524 static bool wait_lock(struct cli_state
*c
, int fnum
, uint32 offset
, uint32 len
)
528 status
= cli_lock32(c
, fnum
, offset
, len
, -1, WRITE_LOCK
);
530 while (!NT_STATUS_IS_OK(status
)) {
531 if (!check_both_error(__LINE__
, status
, ERRDOS
,
532 ERRlock
, NT_STATUS_LOCK_NOT_GRANTED
)) {
536 status
= cli_lock32(c
, fnum
, offset
, len
, -1, WRITE_LOCK
);
543 static bool rw_torture(struct cli_state
*c
)
545 const char *lockfname
= "\\torture.lck";
549 pid_t pid2
, pid
= getpid();
556 memset(buf
, '\0', sizeof(buf
));
558 status
= cli_openx(c
, lockfname
, O_RDWR
| O_CREAT
| O_EXCL
,
560 if (!NT_STATUS_IS_OK(status
)) {
561 status
= cli_openx(c
, lockfname
, O_RDWR
, DENY_NONE
, &fnum2
);
563 if (!NT_STATUS_IS_OK(status
)) {
564 printf("open of %s failed (%s)\n",
565 lockfname
, nt_errstr(status
));
569 for (i
=0;i
<torture_numops
;i
++) {
570 unsigned n
= (unsigned)sys_random()%10;
573 printf("%d\r", i
); fflush(stdout
);
575 slprintf(fname
, sizeof(fstring
) - 1, "\\torture.%u", n
);
577 if (!wait_lock(c
, fnum2
, n
*sizeof(int), sizeof(int))) {
581 status
= cli_openx(c
, fname
, O_RDWR
| O_CREAT
| O_TRUNC
,
583 if (!NT_STATUS_IS_OK(status
)) {
584 printf("open failed (%s)\n", nt_errstr(status
));
589 status
= cli_writeall(c
, fnum
, 0, (uint8_t *)&pid
, 0,
591 if (!NT_STATUS_IS_OK(status
)) {
592 printf("write failed (%s)\n", nt_errstr(status
));
597 status
= cli_writeall(c
, fnum
, 0, (uint8_t *)buf
,
598 sizeof(pid
)+(j
*sizeof(buf
)),
600 if (!NT_STATUS_IS_OK(status
)) {
601 printf("write failed (%s)\n",
609 status
= cli_read(c
, fnum
, (char *)&pid2
, 0, sizeof(pid
),
611 if (!NT_STATUS_IS_OK(status
)) {
612 printf("read failed (%s)\n", nt_errstr(status
));
614 } else if (nread
!= sizeof(pid
)) {
615 printf("read/write compare failed: "
616 "recv %ld req %ld\n", (unsigned long)nread
,
617 (unsigned long)sizeof(pid
));
622 printf("data corruption!\n");
626 status
= cli_close(c
, fnum
);
627 if (!NT_STATUS_IS_OK(status
)) {
628 printf("close failed (%s)\n", nt_errstr(status
));
632 status
= cli_unlink(c
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
633 if (!NT_STATUS_IS_OK(status
)) {
634 printf("unlink failed (%s)\n", nt_errstr(status
));
638 status
= cli_unlock(c
, fnum2
, n
*sizeof(int), sizeof(int));
639 if (!NT_STATUS_IS_OK(status
)) {
640 printf("unlock failed (%s)\n", nt_errstr(status
));
646 cli_unlink(c
, lockfname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
653 static bool run_torture(int dummy
)
655 struct cli_state
*cli
;
660 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
662 ret
= rw_torture(cli
);
664 if (!torture_close_connection(cli
)) {
671 static bool rw_torture3(struct cli_state
*c
, char *lockfname
)
673 uint16_t fnum
= (uint16_t)-1;
678 unsigned countprev
= 0;
681 NTSTATUS status
= NT_STATUS_OK
;
684 for (i
= 0; i
< sizeof(buf
); i
+= sizeof(uint32
))
686 SIVAL(buf
, i
, sys_random());
693 FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
694 if (!NT_STATUS_IS_OK(status
)) {
695 printf("unlink failed (%s) (normal, this file should "
696 "not exist)\n", nt_errstr(status
));
699 status
= cli_openx(c
, lockfname
, O_RDWR
| O_CREAT
| O_EXCL
,
701 if (!NT_STATUS_IS_OK(status
)) {
702 printf("first open read/write of %s failed (%s)\n",
703 lockfname
, nt_errstr(status
));
709 for (i
= 0; i
< 500 && fnum
== (uint16_t)-1; i
++)
711 status
= cli_openx(c
, lockfname
, O_RDONLY
,
713 if (!NT_STATUS_IS_OK(status
)) {
718 if (!NT_STATUS_IS_OK(status
)) {
719 printf("second open read-only of %s failed (%s)\n",
720 lockfname
, nt_errstr(status
));
726 for (count
= 0; count
< sizeof(buf
); count
+= sent
)
728 if (count
>= countprev
) {
729 printf("%d %8d\r", i
, count
);
732 countprev
+= (sizeof(buf
) / 20);
737 sent
= ((unsigned)sys_random()%(20))+ 1;
738 if (sent
> sizeof(buf
) - count
)
740 sent
= sizeof(buf
) - count
;
743 status
= cli_writeall(c
, fnum
, 0, (uint8_t *)buf
+count
,
745 if (!NT_STATUS_IS_OK(status
)) {
746 printf("write failed (%s)\n",
753 status
= cli_read(c
, fnum
, buf_rd
+count
, count
,
754 sizeof(buf
)-count
, &sent
);
755 if(!NT_STATUS_IS_OK(status
)) {
756 printf("read failed offset:%d size:%ld (%s)\n",
757 count
, (unsigned long)sizeof(buf
)-count
,
761 } else if (sent
> 0) {
762 if (memcmp(buf_rd
+count
, buf
+count
, sent
) != 0)
764 printf("read/write compare failed\n");
765 printf("offset: %d req %ld recvd %ld\n", count
, (unsigned long)sizeof(buf
)-count
, (unsigned long)sent
);
774 status
= cli_close(c
, fnum
);
775 if (!NT_STATUS_IS_OK(status
)) {
776 printf("close failed (%s)\n", nt_errstr(status
));
783 static bool rw_torture2(struct cli_state
*c1
, struct cli_state
*c2
)
785 const char *lockfname
= "\\torture2.lck";
795 status
= cli_unlink(c1
, lockfname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
796 if (!NT_STATUS_IS_OK(status
)) {
797 printf("unlink failed (%s) (normal, this file should not exist)\n", nt_errstr(status
));
800 status
= cli_openx(c1
, lockfname
, O_RDWR
| O_CREAT
| O_EXCL
,
802 if (!NT_STATUS_IS_OK(status
)) {
803 printf("first open read/write of %s failed (%s)\n",
804 lockfname
, nt_errstr(status
));
808 status
= cli_openx(c2
, lockfname
, O_RDONLY
, DENY_NONE
, &fnum2
);
809 if (!NT_STATUS_IS_OK(status
)) {
810 printf("second open read-only of %s failed (%s)\n",
811 lockfname
, nt_errstr(status
));
812 cli_close(c1
, fnum1
);
816 for (i
= 0; i
< torture_numops
; i
++)
818 size_t buf_size
= ((unsigned)sys_random()%(sizeof(buf
)-1))+ 1;
820 printf("%d\r", i
); fflush(stdout
);
823 generate_random_buffer((unsigned char *)buf
, buf_size
);
825 status
= cli_writeall(c1
, fnum1
, 0, (uint8_t *)buf
, 0,
827 if (!NT_STATUS_IS_OK(status
)) {
828 printf("write failed (%s)\n", nt_errstr(status
));
833 status
= cli_read(c2
, fnum2
, buf_rd
, 0, buf_size
, &bytes_read
);
834 if(!NT_STATUS_IS_OK(status
)) {
835 printf("read failed (%s)\n", nt_errstr(status
));
838 } else if (bytes_read
!= buf_size
) {
839 printf("read failed\n");
840 printf("read %ld, expected %ld\n",
841 (unsigned long)bytes_read
,
842 (unsigned long)buf_size
);
847 if (memcmp(buf_rd
, buf
, buf_size
) != 0)
849 printf("read/write compare failed\n");
855 status
= cli_close(c2
, fnum2
);
856 if (!NT_STATUS_IS_OK(status
)) {
857 printf("close failed (%s)\n", nt_errstr(status
));
861 status
= cli_close(c1
, fnum1
);
862 if (!NT_STATUS_IS_OK(status
)) {
863 printf("close failed (%s)\n", nt_errstr(status
));
867 status
= cli_unlink(c1
, lockfname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
868 if (!NT_STATUS_IS_OK(status
)) {
869 printf("unlink failed (%s)\n", nt_errstr(status
));
876 static bool run_readwritetest(int dummy
)
878 struct cli_state
*cli1
, *cli2
;
879 bool test1
, test2
= False
;
881 if (!torture_open_connection(&cli1
, 0) || !torture_open_connection(&cli2
, 1)) {
884 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
885 smbXcli_conn_set_sockopt(cli2
->conn
, sockops
);
887 printf("starting readwritetest\n");
889 test1
= rw_torture2(cli1
, cli2
);
890 printf("Passed readwritetest v1: %s\n", BOOLSTR(test1
));
893 test2
= rw_torture2(cli1
, cli1
);
894 printf("Passed readwritetest v2: %s\n", BOOLSTR(test2
));
897 if (!torture_close_connection(cli1
)) {
901 if (!torture_close_connection(cli2
)) {
905 return (test1
&& test2
);
908 static bool run_readwritemulti(int dummy
)
910 struct cli_state
*cli
;
915 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
917 printf("run_readwritemulti: fname %s\n", randomfname
);
918 test
= rw_torture3(cli
, randomfname
);
920 if (!torture_close_connection(cli
)) {
927 static bool run_readwritelarge_internal(void)
929 static struct cli_state
*cli1
;
931 const char *lockfname
= "\\large.dat";
937 if (!torture_open_connection(&cli1
, 0)) {
940 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
941 memset(buf
,'\0',sizeof(buf
));
943 printf("starting readwritelarge_internal\n");
945 cli_unlink(cli1
, lockfname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
947 status
= cli_openx(cli1
, lockfname
, O_RDWR
| O_CREAT
| O_EXCL
,
949 if (!NT_STATUS_IS_OK(status
)) {
950 printf("open read/write of %s failed (%s)\n", lockfname
, nt_errstr(status
));
954 cli_writeall(cli1
, fnum1
, 0, (uint8_t *)buf
, 0, sizeof(buf
), NULL
);
956 status
= cli_qfileinfo_basic(cli1
, fnum1
, NULL
, &fsize
, NULL
, NULL
,
958 if (!NT_STATUS_IS_OK(status
)) {
959 printf("qfileinfo failed (%s)\n", nt_errstr(status
));
963 if (fsize
== sizeof(buf
))
964 printf("readwritelarge_internal test 1 succeeded (size = %lx)\n",
965 (unsigned long)fsize
);
967 printf("readwritelarge_internal test 1 failed (size = %lx)\n",
968 (unsigned long)fsize
);
972 status
= cli_close(cli1
, fnum1
);
973 if (!NT_STATUS_IS_OK(status
)) {
974 printf("close failed (%s)\n", nt_errstr(status
));
978 status
= cli_unlink(cli1
, lockfname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
979 if (!NT_STATUS_IS_OK(status
)) {
980 printf("unlink failed (%s)\n", nt_errstr(status
));
984 status
= cli_openx(cli1
, lockfname
, O_RDWR
| O_CREAT
| O_EXCL
,
986 if (!NT_STATUS_IS_OK(status
)) {
987 printf("open read/write of %s failed (%s)\n", lockfname
, nt_errstr(status
));
991 cli_smbwrite(cli1
, fnum1
, buf
, 0, sizeof(buf
), NULL
);
993 status
= cli_qfileinfo_basic(cli1
, fnum1
, NULL
, &fsize
, NULL
, NULL
,
995 if (!NT_STATUS_IS_OK(status
)) {
996 printf("qfileinfo failed (%s)\n", nt_errstr(status
));
1000 if (fsize
== sizeof(buf
))
1001 printf("readwritelarge_internal test 2 succeeded (size = %lx)\n",
1002 (unsigned long)fsize
);
1004 printf("readwritelarge_internal test 2 failed (size = %lx)\n",
1005 (unsigned long)fsize
);
1010 /* ToDo - set allocation. JRA */
1011 if(!cli_set_allocation_size(cli1
, fnum1
, 0)) {
1012 printf("set allocation size to zero failed (%s)\n", cli_errstr(&cli1
));
1015 if (!cli_qfileinfo_basic(cli1
, fnum1
, NULL
, &fsize
, NULL
, NULL
, NULL
,
1017 printf("qfileinfo failed (%s)\n", cli_errstr(cli1
));
1021 printf("readwritelarge test 3 (truncate test) succeeded (size = %x)\n", fsize
);
1024 status
= cli_close(cli1
, fnum1
);
1025 if (!NT_STATUS_IS_OK(status
)) {
1026 printf("close failed (%s)\n", nt_errstr(status
));
1030 if (!torture_close_connection(cli1
)) {
1036 static bool run_readwritelarge(int dummy
)
1038 return run_readwritelarge_internal();
1041 static bool run_readwritelarge_signtest(int dummy
)
1044 signing_state
= SMB_SIGNING_REQUIRED
;
1045 ret
= run_readwritelarge_internal();
1046 signing_state
= SMB_SIGNING_DEFAULT
;
1053 #define ival(s) strtol(s, NULL, 0)
1055 /* run a test that simulates an approximate netbench client load */
1056 static bool run_netbench(int client
)
1058 struct cli_state
*cli
;
1063 const char *params
[20];
1064 bool correct
= True
;
1070 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
1074 slprintf(cname
,sizeof(cname
)-1, "client%d", client
);
1076 f
= fopen(client_txt
, "r");
1083 while (fgets(line
, sizeof(line
)-1, f
)) {
1087 line
[strlen(line
)-1] = 0;
1089 /* printf("[%d] %s\n", line_count, line); */
1091 all_string_sub(line
,"client1", cname
, sizeof(line
));
1093 /* parse the command parameters */
1094 params
[0] = strtok_r(line
, " ", &saveptr
);
1096 while (params
[i
]) params
[++i
] = strtok_r(NULL
, " ", &saveptr
);
1100 if (i
< 2) continue;
1102 if (!strncmp(params
[0],"SMB", 3)) {
1103 printf("ERROR: You are using a dbench 1 load file\n");
1107 if (!strcmp(params
[0],"NTCreateX")) {
1108 nb_createx(params
[1], ival(params
[2]), ival(params
[3]),
1110 } else if (!strcmp(params
[0],"Close")) {
1111 nb_close(ival(params
[1]));
1112 } else if (!strcmp(params
[0],"Rename")) {
1113 nb_rename(params
[1], params
[2]);
1114 } else if (!strcmp(params
[0],"Unlink")) {
1115 nb_unlink(params
[1]);
1116 } else if (!strcmp(params
[0],"Deltree")) {
1117 nb_deltree(params
[1]);
1118 } else if (!strcmp(params
[0],"Rmdir")) {
1119 nb_rmdir(params
[1]);
1120 } else if (!strcmp(params
[0],"QUERY_PATH_INFORMATION")) {
1121 nb_qpathinfo(params
[1]);
1122 } else if (!strcmp(params
[0],"QUERY_FILE_INFORMATION")) {
1123 nb_qfileinfo(ival(params
[1]));
1124 } else if (!strcmp(params
[0],"QUERY_FS_INFORMATION")) {
1125 nb_qfsinfo(ival(params
[1]));
1126 } else if (!strcmp(params
[0],"FIND_FIRST")) {
1127 nb_findfirst(params
[1]);
1128 } else if (!strcmp(params
[0],"WriteX")) {
1129 nb_writex(ival(params
[1]),
1130 ival(params
[2]), ival(params
[3]), ival(params
[4]));
1131 } else if (!strcmp(params
[0],"ReadX")) {
1132 nb_readx(ival(params
[1]),
1133 ival(params
[2]), ival(params
[3]), ival(params
[4]));
1134 } else if (!strcmp(params
[0],"Flush")) {
1135 nb_flush(ival(params
[1]));
1137 printf("Unknown operation %s\n", params
[0]);
1145 if (!torture_close_connection(cli
)) {
1153 /* run a test that simulates an approximate netbench client load */
1154 static bool run_nbench(int dummy
)
1157 bool correct
= True
;
1159 nbio_shmem(torture_nprocs
);
1163 signal(SIGALRM
, nb_alarm
);
1165 t
= create_procs(run_netbench
, &correct
);
1168 printf("\nThroughput %g MB/sec\n",
1169 1.0e-6 * nbio_total() / t
);
1175 This test checks for two things:
1177 1) correct support for retaining locks over a close (ie. the server
1178 must not use posix semantics)
1179 2) support for lock timeouts
1181 static bool run_locktest1(int dummy
)
1183 struct cli_state
*cli1
, *cli2
;
1184 const char *fname
= "\\lockt1.lck";
1185 uint16_t fnum1
, fnum2
, fnum3
;
1187 unsigned lock_timeout
;
1190 if (!torture_open_connection(&cli1
, 0) || !torture_open_connection(&cli2
, 1)) {
1193 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
1194 smbXcli_conn_set_sockopt(cli2
->conn
, sockops
);
1196 printf("starting locktest1\n");
1198 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
1200 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
,
1202 if (!NT_STATUS_IS_OK(status
)) {
1203 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
1207 status
= cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
, &fnum2
);
1208 if (!NT_STATUS_IS_OK(status
)) {
1209 printf("open2 of %s failed (%s)\n", fname
, nt_errstr(status
));
1213 status
= cli_openx(cli2
, fname
, O_RDWR
, DENY_NONE
, &fnum3
);
1214 if (!NT_STATUS_IS_OK(status
)) {
1215 printf("open3 of %s failed (%s)\n", fname
, nt_errstr(status
));
1219 status
= cli_lock32(cli1
, fnum1
, 0, 4, 0, WRITE_LOCK
);
1220 if (!NT_STATUS_IS_OK(status
)) {
1221 printf("lock1 failed (%s)\n", nt_errstr(status
));
1225 status
= cli_lock32(cli2
, fnum3
, 0, 4, 0, WRITE_LOCK
);
1226 if (NT_STATUS_IS_OK(status
)) {
1227 printf("lock2 succeeded! This is a locking bug\n");
1230 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1231 NT_STATUS_LOCK_NOT_GRANTED
)) {
1236 lock_timeout
= (1 + (random() % 20));
1237 printf("Testing lock timeout with timeout=%u\n", lock_timeout
);
1239 status
= cli_lock32(cli2
, fnum3
, 0, 4, lock_timeout
* 1000, WRITE_LOCK
);
1240 if (NT_STATUS_IS_OK(status
)) {
1241 printf("lock3 succeeded! This is a locking bug\n");
1244 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1245 NT_STATUS_FILE_LOCK_CONFLICT
)) {
1251 if (ABS(t2
- t1
) < lock_timeout
-1) {
1252 printf("error: This server appears not to support timed lock requests\n");
1255 printf("server slept for %u seconds for a %u second timeout\n",
1256 (unsigned int)(t2
-t1
), lock_timeout
);
1258 status
= cli_close(cli1
, fnum2
);
1259 if (!NT_STATUS_IS_OK(status
)) {
1260 printf("close1 failed (%s)\n", nt_errstr(status
));
1264 status
= cli_lock32(cli2
, fnum3
, 0, 4, 0, WRITE_LOCK
);
1265 if (NT_STATUS_IS_OK(status
)) {
1266 printf("lock4 succeeded! This is a locking bug\n");
1269 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1270 NT_STATUS_FILE_LOCK_CONFLICT
)) {
1275 status
= cli_close(cli1
, fnum1
);
1276 if (!NT_STATUS_IS_OK(status
)) {
1277 printf("close2 failed (%s)\n", nt_errstr(status
));
1281 status
= cli_close(cli2
, fnum3
);
1282 if (!NT_STATUS_IS_OK(status
)) {
1283 printf("close3 failed (%s)\n", nt_errstr(status
));
1287 status
= cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
1288 if (!NT_STATUS_IS_OK(status
)) {
1289 printf("unlink failed (%s)\n", nt_errstr(status
));
1294 if (!torture_close_connection(cli1
)) {
1298 if (!torture_close_connection(cli2
)) {
1302 printf("Passed locktest1\n");
1307 this checks to see if a secondary tconx can use open files from an
1310 static bool run_tcon_test(int dummy
)
1312 static struct cli_state
*cli
;
1313 const char *fname
= "\\tcontest.tmp";
1315 uint16 cnum1
, cnum2
, cnum3
;
1316 uint16 vuid1
, vuid2
;
1321 memset(buf
, '\0', sizeof(buf
));
1323 if (!torture_open_connection(&cli
, 0)) {
1326 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
1328 printf("starting tcontest\n");
1330 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
1332 status
= cli_openx(cli
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum1
);
1333 if (!NT_STATUS_IS_OK(status
)) {
1334 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
1338 cnum1
= cli_state_get_tid(cli
);
1339 vuid1
= cli_state_get_uid(cli
);
1341 status
= cli_writeall(cli
, fnum1
, 0, (uint8_t *)buf
, 130, 4, NULL
);
1342 if (!NT_STATUS_IS_OK(status
)) {
1343 printf("initial write failed (%s)", nt_errstr(status
));
1347 status
= cli_tree_connect(cli
, share
, "?????",
1348 password
, strlen(password
)+1);
1349 if (!NT_STATUS_IS_OK(status
)) {
1350 printf("%s refused 2nd tree connect (%s)\n", host
,
1356 cnum2
= cli_state_get_tid(cli
);
1357 cnum3
= MAX(cnum1
, cnum2
) + 1; /* any invalid number */
1358 vuid2
= cli_state_get_uid(cli
) + 1;
1360 /* try a write with the wrong tid */
1361 cli_state_set_tid(cli
, cnum2
);
1363 status
= cli_writeall(cli
, fnum1
, 0, (uint8_t *)buf
, 130, 4, NULL
);
1364 if (NT_STATUS_IS_OK(status
)) {
1365 printf("* server allows write with wrong TID\n");
1368 printf("server fails write with wrong TID : %s\n",
1373 /* try a write with an invalid tid */
1374 cli_state_set_tid(cli
, cnum3
);
1376 status
= cli_writeall(cli
, fnum1
, 0, (uint8_t *)buf
, 130, 4, NULL
);
1377 if (NT_STATUS_IS_OK(status
)) {
1378 printf("* server allows write with invalid TID\n");
1381 printf("server fails write with invalid TID : %s\n",
1385 /* try a write with an invalid vuid */
1386 cli_state_set_uid(cli
, vuid2
);
1387 cli_state_set_tid(cli
, cnum1
);
1389 status
= cli_writeall(cli
, fnum1
, 0, (uint8_t *)buf
, 130, 4, NULL
);
1390 if (NT_STATUS_IS_OK(status
)) {
1391 printf("* server allows write with invalid VUID\n");
1394 printf("server fails write with invalid VUID : %s\n",
1398 cli_state_set_tid(cli
, cnum1
);
1399 cli_state_set_uid(cli
, vuid1
);
1401 status
= cli_close(cli
, fnum1
);
1402 if (!NT_STATUS_IS_OK(status
)) {
1403 printf("close failed (%s)\n", nt_errstr(status
));
1407 cli_state_set_tid(cli
, cnum2
);
1409 status
= cli_tdis(cli
);
1410 if (!NT_STATUS_IS_OK(status
)) {
1411 printf("secondary tdis failed (%s)\n", nt_errstr(status
));
1415 cli_state_set_tid(cli
, cnum1
);
1417 if (!torture_close_connection(cli
)) {
1426 checks for old style tcon support
1428 static bool run_tcon2_test(int dummy
)
1430 static struct cli_state
*cli
;
1431 uint16 cnum
, max_xmit
;
1435 if (!torture_open_connection(&cli
, 0)) {
1438 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
1440 printf("starting tcon2 test\n");
1442 if (asprintf(&service
, "\\\\%s\\%s", host
, share
) == -1) {
1446 status
= cli_raw_tcon(cli
, service
, password
, "?????", &max_xmit
, &cnum
);
1450 if (!NT_STATUS_IS_OK(status
)) {
1451 printf("tcon2 failed : %s\n", nt_errstr(status
));
1453 printf("tcon OK : max_xmit=%d cnum=%d\n",
1454 (int)max_xmit
, (int)cnum
);
1457 if (!torture_close_connection(cli
)) {
1461 printf("Passed tcon2 test\n");
1465 static bool tcon_devtest(struct cli_state
*cli
,
1466 const char *myshare
, const char *devtype
,
1467 const char *return_devtype
,
1468 NTSTATUS expected_error
)
1473 status
= cli_tree_connect(cli
, myshare
, devtype
,
1474 password
, strlen(password
)+1);
1476 if (NT_STATUS_IS_OK(expected_error
)) {
1477 if (NT_STATUS_IS_OK(status
)) {
1478 if (strcmp(cli
->dev
, return_devtype
) == 0) {
1481 printf("tconX to share %s with type %s "
1482 "succeeded but returned the wrong "
1483 "device type (got [%s] but should have got [%s])\n",
1484 myshare
, devtype
, cli
->dev
, return_devtype
);
1488 printf("tconX to share %s with type %s "
1489 "should have succeeded but failed\n",
1495 if (NT_STATUS_IS_OK(status
)) {
1496 printf("tconx to share %s with type %s "
1497 "should have failed but succeeded\n",
1501 if (NT_STATUS_EQUAL(status
, expected_error
)) {
1504 printf("Returned unexpected error\n");
1513 checks for correct tconX support
1515 static bool run_tcon_devtype_test(int dummy
)
1517 static struct cli_state
*cli1
= NULL
;
1522 status
= cli_full_connection(&cli1
, myname
,
1523 host
, NULL
, port_to_use
,
1525 username
, workgroup
,
1526 password
, flags
, signing_state
);
1528 if (!NT_STATUS_IS_OK(status
)) {
1529 printf("could not open connection\n");
1533 if (!tcon_devtest(cli1
, "IPC$", "A:", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1536 if (!tcon_devtest(cli1
, "IPC$", "?????", "IPC", NT_STATUS_OK
))
1539 if (!tcon_devtest(cli1
, "IPC$", "LPT:", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1542 if (!tcon_devtest(cli1
, "IPC$", "IPC", "IPC", NT_STATUS_OK
))
1545 if (!tcon_devtest(cli1
, "IPC$", "FOOBA", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1548 if (!tcon_devtest(cli1
, share
, "A:", "A:", NT_STATUS_OK
))
1551 if (!tcon_devtest(cli1
, share
, "?????", "A:", NT_STATUS_OK
))
1554 if (!tcon_devtest(cli1
, share
, "LPT:", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1557 if (!tcon_devtest(cli1
, share
, "IPC", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1560 if (!tcon_devtest(cli1
, share
, "FOOBA", NULL
, NT_STATUS_BAD_DEVICE_TYPE
))
1566 printf("Passed tcondevtest\n");
1573 This test checks that
1575 1) the server supports multiple locking contexts on the one SMB
1576 connection, distinguished by PID.
1578 2) the server correctly fails overlapping locks made by the same PID (this
1579 goes against POSIX behaviour, which is why it is tricky to implement)
1581 3) the server denies unlock requests by an incorrect client PID
1583 static bool run_locktest2(int dummy
)
1585 static struct cli_state
*cli
;
1586 const char *fname
= "\\lockt2.lck";
1587 uint16_t fnum1
, fnum2
, fnum3
;
1588 bool correct
= True
;
1591 if (!torture_open_connection(&cli
, 0)) {
1595 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
1597 printf("starting locktest2\n");
1599 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
1603 status
= cli_openx(cli
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum1
);
1604 if (!NT_STATUS_IS_OK(status
)) {
1605 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
1609 status
= cli_openx(cli
, fname
, O_RDWR
, DENY_NONE
, &fnum2
);
1610 if (!NT_STATUS_IS_OK(status
)) {
1611 printf("open2 of %s failed (%s)\n", fname
, nt_errstr(status
));
1617 status
= cli_openx(cli
, fname
, O_RDWR
, DENY_NONE
, &fnum3
);
1618 if (!NT_STATUS_IS_OK(status
)) {
1619 printf("open3 of %s failed (%s)\n", fname
, nt_errstr(status
));
1625 status
= cli_lock32(cli
, fnum1
, 0, 4, 0, WRITE_LOCK
);
1626 if (!NT_STATUS_IS_OK(status
)) {
1627 printf("lock1 failed (%s)\n", nt_errstr(status
));
1631 status
= cli_lock32(cli
, fnum1
, 0, 4, 0, WRITE_LOCK
);
1632 if (NT_STATUS_IS_OK(status
)) {
1633 printf("WRITE lock1 succeeded! This is a locking bug\n");
1636 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1637 NT_STATUS_LOCK_NOT_GRANTED
)) {
1642 status
= cli_lock32(cli
, fnum2
, 0, 4, 0, WRITE_LOCK
);
1643 if (NT_STATUS_IS_OK(status
)) {
1644 printf("WRITE lock2 succeeded! This is a locking bug\n");
1647 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1648 NT_STATUS_LOCK_NOT_GRANTED
)) {
1653 status
= cli_lock32(cli
, fnum2
, 0, 4, 0, READ_LOCK
);
1654 if (NT_STATUS_IS_OK(status
)) {
1655 printf("READ lock2 succeeded! This is a locking bug\n");
1658 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1659 NT_STATUS_FILE_LOCK_CONFLICT
)) {
1664 status
= cli_lock32(cli
, fnum1
, 100, 4, 0, WRITE_LOCK
);
1665 if (!NT_STATUS_IS_OK(status
)) {
1666 printf("lock at 100 failed (%s)\n", nt_errstr(status
));
1669 if (NT_STATUS_IS_OK(cli_unlock(cli
, fnum1
, 100, 4))) {
1670 printf("unlock at 100 succeeded! This is a locking bug\n");
1674 status
= cli_unlock(cli
, fnum1
, 0, 4);
1675 if (NT_STATUS_IS_OK(status
)) {
1676 printf("unlock1 succeeded! This is a locking bug\n");
1679 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1680 NT_STATUS_RANGE_NOT_LOCKED
)) {
1685 status
= cli_unlock(cli
, fnum1
, 0, 8);
1686 if (NT_STATUS_IS_OK(status
)) {
1687 printf("unlock2 succeeded! This is a locking bug\n");
1690 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1691 NT_STATUS_RANGE_NOT_LOCKED
)) {
1696 status
= cli_lock32(cli
, fnum3
, 0, 4, 0, WRITE_LOCK
);
1697 if (NT_STATUS_IS_OK(status
)) {
1698 printf("lock3 succeeded! This is a locking bug\n");
1701 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRlock
,
1702 NT_STATUS_LOCK_NOT_GRANTED
)) {
1709 status
= cli_close(cli
, fnum1
);
1710 if (!NT_STATUS_IS_OK(status
)) {
1711 printf("close1 failed (%s)\n", nt_errstr(status
));
1715 status
= cli_close(cli
, fnum2
);
1716 if (!NT_STATUS_IS_OK(status
)) {
1717 printf("close2 failed (%s)\n", nt_errstr(status
));
1721 status
= cli_close(cli
, fnum3
);
1722 if (!NT_STATUS_IS_OK(status
)) {
1723 printf("close3 failed (%s)\n", nt_errstr(status
));
1727 if (!torture_close_connection(cli
)) {
1731 printf("locktest2 finished\n");
1738 This test checks that
1740 1) the server supports the full offset range in lock requests
1742 static bool run_locktest3(int dummy
)
1744 static struct cli_state
*cli1
, *cli2
;
1745 const char *fname
= "\\lockt3.lck";
1746 uint16_t fnum1
, fnum2
;
1749 bool correct
= True
;
1752 #define NEXT_OFFSET offset += (~(uint32)0) / torture_numops
1754 if (!torture_open_connection(&cli1
, 0) || !torture_open_connection(&cli2
, 1)) {
1757 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
1758 smbXcli_conn_set_sockopt(cli2
->conn
, sockops
);
1760 printf("starting locktest3\n");
1762 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
1764 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
,
1766 if (!NT_STATUS_IS_OK(status
)) {
1767 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
1771 status
= cli_openx(cli2
, fname
, O_RDWR
, DENY_NONE
, &fnum2
);
1772 if (!NT_STATUS_IS_OK(status
)) {
1773 printf("open2 of %s failed (%s)\n", fname
, nt_errstr(status
));
1777 for (offset
=i
=0;i
<torture_numops
;i
++) {
1780 status
= cli_lock32(cli1
, fnum1
, offset
-1, 1, 0, WRITE_LOCK
);
1781 if (!NT_STATUS_IS_OK(status
)) {
1782 printf("lock1 %d failed (%s)\n",
1788 status
= cli_lock32(cli2
, fnum2
, offset
-2, 1, 0, WRITE_LOCK
);
1789 if (!NT_STATUS_IS_OK(status
)) {
1790 printf("lock2 %d failed (%s)\n",
1797 for (offset
=i
=0;i
<torture_numops
;i
++) {
1800 status
= cli_lock32(cli1
, fnum1
, offset
-2, 1, 0, WRITE_LOCK
);
1801 if (NT_STATUS_IS_OK(status
)) {
1802 printf("error: lock1 %d succeeded!\n", i
);
1806 status
= cli_lock32(cli2
, fnum2
, offset
-1, 1, 0, WRITE_LOCK
);
1807 if (NT_STATUS_IS_OK(status
)) {
1808 printf("error: lock2 %d succeeded!\n", i
);
1812 status
= cli_lock32(cli1
, fnum1
, offset
-1, 1, 0, WRITE_LOCK
);
1813 if (NT_STATUS_IS_OK(status
)) {
1814 printf("error: lock3 %d succeeded!\n", i
);
1818 status
= cli_lock32(cli2
, fnum2
, offset
-2, 1, 0, WRITE_LOCK
);
1819 if (NT_STATUS_IS_OK(status
)) {
1820 printf("error: lock4 %d succeeded!\n", i
);
1825 for (offset
=i
=0;i
<torture_numops
;i
++) {
1828 status
= cli_unlock(cli1
, fnum1
, offset
-1, 1);
1829 if (!NT_STATUS_IS_OK(status
)) {
1830 printf("unlock1 %d failed (%s)\n",
1836 status
= cli_unlock(cli2
, fnum2
, offset
-2, 1);
1837 if (!NT_STATUS_IS_OK(status
)) {
1838 printf("unlock2 %d failed (%s)\n",
1845 status
= cli_close(cli1
, fnum1
);
1846 if (!NT_STATUS_IS_OK(status
)) {
1847 printf("close1 failed (%s)\n", nt_errstr(status
));
1851 status
= cli_close(cli2
, fnum2
);
1852 if (!NT_STATUS_IS_OK(status
)) {
1853 printf("close2 failed (%s)\n", nt_errstr(status
));
1857 status
= cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
1858 if (!NT_STATUS_IS_OK(status
)) {
1859 printf("unlink failed (%s)\n", nt_errstr(status
));
1863 if (!torture_close_connection(cli1
)) {
1867 if (!torture_close_connection(cli2
)) {
1871 printf("finished locktest3\n");
1876 static bool test_cli_read(struct cli_state
*cli
, uint16_t fnum
,
1877 char *buf
, off_t offset
, size_t size
,
1878 size_t *nread
, size_t expect
)
1883 status
= cli_read(cli
, fnum
, buf
, offset
, size
, &l_nread
);
1885 if(!NT_STATUS_IS_OK(status
)) {
1887 } else if (l_nread
!= expect
) {
1898 #define EXPECTED(ret, v) if ((ret) != (v)) { \
1899 printf("** "); correct = False; \
1903 looks at overlapping locks
1905 static bool run_locktest4(int dummy
)
1907 static struct cli_state
*cli1
, *cli2
;
1908 const char *fname
= "\\lockt4.lck";
1909 uint16_t fnum1
, fnum2
, f
;
1912 bool correct
= True
;
1915 if (!torture_open_connection(&cli1
, 0) || !torture_open_connection(&cli2
, 1)) {
1919 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
1920 smbXcli_conn_set_sockopt(cli2
->conn
, sockops
);
1922 printf("starting locktest4\n");
1924 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
1926 cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum1
);
1927 cli_openx(cli2
, fname
, O_RDWR
, DENY_NONE
, &fnum2
);
1929 memset(buf
, 0, sizeof(buf
));
1931 status
= cli_writeall(cli1
, fnum1
, 0, (uint8_t *)buf
, 0, sizeof(buf
),
1933 if (!NT_STATUS_IS_OK(status
)) {
1934 printf("Failed to create file: %s\n", nt_errstr(status
));
1939 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 0, 4, 0, WRITE_LOCK
)) &&
1940 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 2, 4, 0, WRITE_LOCK
));
1941 EXPECTED(ret
, False
);
1942 printf("the same process %s set overlapping write locks\n", ret
?"can":"cannot");
1944 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 10, 4, 0, READ_LOCK
)) &&
1945 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 12, 4, 0, READ_LOCK
));
1946 EXPECTED(ret
, True
);
1947 printf("the same process %s set overlapping read locks\n", ret
?"can":"cannot");
1949 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 20, 4, 0, WRITE_LOCK
)) &&
1950 NT_STATUS_IS_OK(cli_lock32(cli2
, fnum2
, 22, 4, 0, WRITE_LOCK
));
1951 EXPECTED(ret
, False
);
1952 printf("a different connection %s set overlapping write locks\n", ret
?"can":"cannot");
1954 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 30, 4, 0, READ_LOCK
)) &&
1955 NT_STATUS_IS_OK(cli_lock32(cli2
, fnum2
, 32, 4, 0, READ_LOCK
));
1956 EXPECTED(ret
, True
);
1957 printf("a different connection %s set overlapping read locks\n", ret
?"can":"cannot");
1959 ret
= (cli_setpid(cli1
, 1),
1960 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 40, 4, 0, WRITE_LOCK
))) &&
1961 (cli_setpid(cli1
, 2),
1962 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 42, 4, 0, WRITE_LOCK
)));
1963 EXPECTED(ret
, False
);
1964 printf("a different pid %s set overlapping write locks\n", ret
?"can":"cannot");
1966 ret
= (cli_setpid(cli1
, 1),
1967 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 50, 4, 0, READ_LOCK
))) &&
1968 (cli_setpid(cli1
, 2),
1969 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 52, 4, 0, READ_LOCK
)));
1970 EXPECTED(ret
, True
);
1971 printf("a different pid %s set overlapping read locks\n", ret
?"can":"cannot");
1973 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 60, 4, 0, READ_LOCK
)) &&
1974 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 60, 4, 0, READ_LOCK
));
1975 EXPECTED(ret
, True
);
1976 printf("the same process %s set the same read lock twice\n", ret
?"can":"cannot");
1978 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 70, 4, 0, WRITE_LOCK
)) &&
1979 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 70, 4, 0, WRITE_LOCK
));
1980 EXPECTED(ret
, False
);
1981 printf("the same process %s set the same write lock twice\n", ret
?"can":"cannot");
1983 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 80, 4, 0, READ_LOCK
)) &&
1984 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 80, 4, 0, WRITE_LOCK
));
1985 EXPECTED(ret
, False
);
1986 printf("the same process %s overlay a read lock with a write lock\n", ret
?"can":"cannot");
1988 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 90, 4, 0, WRITE_LOCK
)) &&
1989 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 90, 4, 0, READ_LOCK
));
1990 EXPECTED(ret
, True
);
1991 printf("the same process %s overlay a write lock with a read lock\n", ret
?"can":"cannot");
1993 ret
= (cli_setpid(cli1
, 1),
1994 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 100, 4, 0, WRITE_LOCK
))) &&
1995 (cli_setpid(cli1
, 2),
1996 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 100, 4, 0, READ_LOCK
)));
1997 EXPECTED(ret
, False
);
1998 printf("a different pid %s overlay a write lock with a read lock\n", ret
?"can":"cannot");
2000 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 110, 4, 0, READ_LOCK
)) &&
2001 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 112, 4, 0, READ_LOCK
)) &&
2002 NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 110, 6));
2003 EXPECTED(ret
, False
);
2004 printf("the same process %s coalesce read locks\n", ret
?"can":"cannot");
2007 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 120, 4, 0, WRITE_LOCK
)) &&
2008 test_cli_read(cli2
, fnum2
, buf
, 120, 4, NULL
, 4);
2009 EXPECTED(ret
, False
);
2010 printf("this server %s strict write locking\n", ret
?"doesn't do":"does");
2012 status
= cli_lock32(cli1
, fnum1
, 130, 4, 0, READ_LOCK
);
2013 ret
= NT_STATUS_IS_OK(status
);
2015 status
= cli_writeall(cli2
, fnum2
, 0, (uint8_t *)buf
, 130, 4,
2017 ret
= NT_STATUS_IS_OK(status
);
2019 EXPECTED(ret
, False
);
2020 printf("this server %s strict read locking\n", ret
?"doesn't do":"does");
2023 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 140, 4, 0, READ_LOCK
)) &&
2024 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 140, 4, 0, READ_LOCK
)) &&
2025 NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 140, 4)) &&
2026 NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 140, 4));
2027 EXPECTED(ret
, True
);
2028 printf("this server %s do recursive read locking\n", ret
?"does":"doesn't");
2031 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 150, 4, 0, WRITE_LOCK
)) &&
2032 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 150, 4, 0, READ_LOCK
)) &&
2033 NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 150, 4)) &&
2034 test_cli_read(cli2
, fnum2
, buf
, 150, 4, NULL
, 4) &&
2035 !(NT_STATUS_IS_OK(cli_writeall(cli2
, fnum2
, 0, (uint8_t *)buf
,
2037 NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 150, 4));
2038 EXPECTED(ret
, True
);
2039 printf("this server %s do recursive lock overlays\n", ret
?"does":"doesn't");
2041 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 160, 4, 0, READ_LOCK
)) &&
2042 NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 160, 4)) &&
2043 NT_STATUS_IS_OK(cli_writeall(cli2
, fnum2
, 0, (uint8_t *)buf
,
2045 test_cli_read(cli2
, fnum2
, buf
, 160, 4, NULL
, 4);
2046 EXPECTED(ret
, True
);
2047 printf("the same process %s remove a read lock using write locking\n", ret
?"can":"cannot");
2049 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 170, 4, 0, WRITE_LOCK
)) &&
2050 NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 170, 4)) &&
2051 NT_STATUS_IS_OK(cli_writeall(cli2
, fnum2
, 0, (uint8_t *)buf
,
2053 test_cli_read(cli2
, fnum2
, buf
, 170, 4, NULL
, 4);
2054 EXPECTED(ret
, True
);
2055 printf("the same process %s remove a write lock using read locking\n", ret
?"can":"cannot");
2057 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 190, 4, 0, WRITE_LOCK
)) &&
2058 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 190, 4, 0, READ_LOCK
)) &&
2059 NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 190, 4)) &&
2060 !NT_STATUS_IS_OK(cli_writeall(cli2
, fnum2
, 0, (uint8_t *)buf
,
2062 test_cli_read(cli2
, fnum2
, buf
, 190, 4, NULL
, 4);
2063 EXPECTED(ret
, True
);
2064 printf("the same process %s remove the first lock first\n", ret
?"does":"doesn't");
2066 cli_close(cli1
, fnum1
);
2067 cli_close(cli2
, fnum2
);
2068 cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
, &fnum1
);
2069 cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
, &f
);
2070 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 0, 8, 0, READ_LOCK
)) &&
2071 NT_STATUS_IS_OK(cli_lock32(cli1
, f
, 0, 1, 0, READ_LOCK
)) &&
2072 NT_STATUS_IS_OK(cli_close(cli1
, fnum1
)) &&
2073 NT_STATUS_IS_OK(cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
, &fnum1
)) &&
2074 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 7, 1, 0, WRITE_LOCK
));
2076 cli_close(cli1
, fnum1
);
2077 EXPECTED(ret
, True
);
2078 printf("the server %s have the NT byte range lock bug\n", !ret
?"does":"doesn't");
2081 cli_close(cli1
, fnum1
);
2082 cli_close(cli2
, fnum2
);
2083 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2084 torture_close_connection(cli1
);
2085 torture_close_connection(cli2
);
2087 printf("finished locktest4\n");
2092 looks at lock upgrade/downgrade.
2094 static bool run_locktest5(int dummy
)
2096 static struct cli_state
*cli1
, *cli2
;
2097 const char *fname
= "\\lockt5.lck";
2098 uint16_t fnum1
, fnum2
, fnum3
;
2101 bool correct
= True
;
2104 if (!torture_open_connection(&cli1
, 0) || !torture_open_connection(&cli2
, 1)) {
2108 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
2109 smbXcli_conn_set_sockopt(cli2
->conn
, sockops
);
2111 printf("starting locktest5\n");
2113 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2115 cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum1
);
2116 cli_openx(cli2
, fname
, O_RDWR
, DENY_NONE
, &fnum2
);
2117 cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
, &fnum3
);
2119 memset(buf
, 0, sizeof(buf
));
2121 status
= cli_writeall(cli1
, fnum1
, 0, (uint8_t *)buf
, 0, sizeof(buf
),
2123 if (!NT_STATUS_IS_OK(status
)) {
2124 printf("Failed to create file: %s\n", nt_errstr(status
));
2129 /* Check for NT bug... */
2130 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 0, 8, 0, READ_LOCK
)) &&
2131 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum3
, 0, 1, 0, READ_LOCK
));
2132 cli_close(cli1
, fnum1
);
2133 cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
, &fnum1
);
2134 status
= cli_lock32(cli1
, fnum1
, 7, 1, 0, WRITE_LOCK
);
2135 ret
= NT_STATUS_IS_OK(status
);
2136 EXPECTED(ret
, True
);
2137 printf("this server %s the NT locking bug\n", ret
? "doesn't have" : "has");
2138 cli_close(cli1
, fnum1
);
2139 cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
, &fnum1
);
2140 cli_unlock(cli1
, fnum3
, 0, 1);
2142 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 0, 4, 0, WRITE_LOCK
)) &&
2143 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 1, 1, 0, READ_LOCK
));
2144 EXPECTED(ret
, True
);
2145 printf("the same process %s overlay a write with a read lock\n", ret
?"can":"cannot");
2147 status
= cli_lock32(cli2
, fnum2
, 0, 4, 0, READ_LOCK
);
2148 ret
= NT_STATUS_IS_OK(status
);
2149 EXPECTED(ret
, False
);
2151 printf("a different processs %s get a read lock on the first process lock stack\n", ret
?"can":"cannot");
2153 /* Unlock the process 2 lock. */
2154 cli_unlock(cli2
, fnum2
, 0, 4);
2156 status
= cli_lock32(cli1
, fnum3
, 0, 4, 0, READ_LOCK
);
2157 ret
= NT_STATUS_IS_OK(status
);
2158 EXPECTED(ret
, False
);
2160 printf("the same processs on a different fnum %s get a read lock\n", ret
?"can":"cannot");
2162 /* Unlock the process 1 fnum3 lock. */
2163 cli_unlock(cli1
, fnum3
, 0, 4);
2165 /* Stack 2 more locks here. */
2166 ret
= NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 0, 4, 0, READ_LOCK
)) &&
2167 NT_STATUS_IS_OK(cli_lock32(cli1
, fnum1
, 0, 4, 0, READ_LOCK
));
2169 EXPECTED(ret
, True
);
2170 printf("the same process %s stack read locks\n", ret
?"can":"cannot");
2172 /* Unlock the first process lock, then check this was the WRITE lock that was
2175 ret
= NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 0, 4)) &&
2176 NT_STATUS_IS_OK(cli_lock32(cli2
, fnum2
, 0, 4, 0, READ_LOCK
));
2178 EXPECTED(ret
, True
);
2179 printf("the first unlock removes the %s lock\n", ret
?"WRITE":"READ");
2181 /* Unlock the process 2 lock. */
2182 cli_unlock(cli2
, fnum2
, 0, 4);
2184 /* We should have 3 stacked locks here. Ensure we need to do 3 unlocks. */
2186 ret
= NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 1, 1)) &&
2187 NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 0, 4)) &&
2188 NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 0, 4));
2190 EXPECTED(ret
, True
);
2191 printf("the same process %s unlock the stack of 4 locks\n", ret
?"can":"cannot");
2193 /* Ensure the next unlock fails. */
2194 ret
= NT_STATUS_IS_OK(cli_unlock(cli1
, fnum1
, 0, 4));
2195 EXPECTED(ret
, False
);
2196 printf("the same process %s count the lock stack\n", !ret
?"can":"cannot");
2198 /* Ensure connection 2 can get a write lock. */
2199 status
= cli_lock32(cli2
, fnum2
, 0, 4, 0, WRITE_LOCK
);
2200 ret
= NT_STATUS_IS_OK(status
);
2201 EXPECTED(ret
, True
);
2203 printf("a different processs %s get a write lock on the unlocked stack\n", ret
?"can":"cannot");
2207 cli_close(cli1
, fnum1
);
2208 cli_close(cli2
, fnum2
);
2209 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2210 if (!torture_close_connection(cli1
)) {
2213 if (!torture_close_connection(cli2
)) {
2217 printf("finished locktest5\n");
2223 tries the unusual lockingX locktype bits
2225 static bool run_locktest6(int dummy
)
2227 static struct cli_state
*cli
;
2228 const char *fname
[1] = { "\\lock6.txt" };
2233 if (!torture_open_connection(&cli
, 0)) {
2237 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
2239 printf("starting locktest6\n");
2242 printf("Testing %s\n", fname
[i
]);
2244 cli_unlink(cli
, fname
[i
], FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2246 cli_openx(cli
, fname
[i
], O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum
);
2247 status
= cli_locktype(cli
, fnum
, 0, 8, 0, LOCKING_ANDX_CHANGE_LOCKTYPE
);
2248 cli_close(cli
, fnum
);
2249 printf("CHANGE_LOCKTYPE gave %s\n", nt_errstr(status
));
2251 cli_openx(cli
, fname
[i
], O_RDWR
, DENY_NONE
, &fnum
);
2252 status
= cli_locktype(cli
, fnum
, 0, 8, 0, LOCKING_ANDX_CANCEL_LOCK
);
2253 cli_close(cli
, fnum
);
2254 printf("CANCEL_LOCK gave %s\n", nt_errstr(status
));
2256 cli_unlink(cli
, fname
[i
], FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2259 torture_close_connection(cli
);
2261 printf("finished locktest6\n");
2265 static bool run_locktest7(int dummy
)
2267 struct cli_state
*cli1
;
2268 const char *fname
= "\\lockt7.lck";
2271 bool correct
= False
;
2275 if (!torture_open_connection(&cli1
, 0)) {
2279 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
2281 printf("starting locktest7\n");
2283 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2285 cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum1
);
2287 memset(buf
, 0, sizeof(buf
));
2289 status
= cli_writeall(cli1
, fnum1
, 0, (uint8_t *)buf
, 0, sizeof(buf
),
2291 if (!NT_STATUS_IS_OK(status
)) {
2292 printf("Failed to create file: %s\n", nt_errstr(status
));
2296 cli_setpid(cli1
, 1);
2298 status
= cli_lock32(cli1
, fnum1
, 130, 4, 0, READ_LOCK
);
2299 if (!NT_STATUS_IS_OK(status
)) {
2300 printf("Unable to apply read lock on range 130:4, "
2301 "error was %s\n", nt_errstr(status
));
2304 printf("pid1 successfully locked range 130:4 for READ\n");
2307 status
= cli_read(cli1
, fnum1
, buf
, 130, 4, &nread
);
2308 if (!NT_STATUS_IS_OK(status
)) {
2309 printf("pid1 unable to read the range 130:4, error was %s\n",
2312 } else if (nread
!= 4) {
2313 printf("pid1 unable to read the range 130:4, "
2314 "recv %ld req %d\n", (unsigned long)nread
, 4);
2317 printf("pid1 successfully read the range 130:4\n");
2320 status
= cli_writeall(cli1
, fnum1
, 0, (uint8_t *)buf
, 130, 4, NULL
);
2321 if (!NT_STATUS_IS_OK(status
)) {
2322 printf("pid1 unable to write to the range 130:4, error was "
2323 "%s\n", nt_errstr(status
));
2324 if (!NT_STATUS_EQUAL(status
, NT_STATUS_FILE_LOCK_CONFLICT
)) {
2325 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2329 printf("pid1 successfully wrote to the range 130:4 (should be denied)\n");
2333 cli_setpid(cli1
, 2);
2335 status
= cli_read(cli1
, fnum1
, buf
, 130, 4, &nread
);
2336 if (!NT_STATUS_IS_OK(status
)) {
2337 printf("pid2 unable to read the range 130:4, error was %s\n",
2340 } else if (nread
!= 4) {
2341 printf("pid2 unable to read the range 130:4, "
2342 "recv %ld req %d\n", (unsigned long)nread
, 4);
2345 printf("pid2 successfully read the range 130:4\n");
2348 status
= cli_writeall(cli1
, fnum1
, 0, (uint8_t *)buf
, 130, 4, NULL
);
2349 if (!NT_STATUS_IS_OK(status
)) {
2350 printf("pid2 unable to write to the range 130:4, error was "
2351 "%s\n", nt_errstr(status
));
2352 if (!NT_STATUS_EQUAL(status
, NT_STATUS_FILE_LOCK_CONFLICT
)) {
2353 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2357 printf("pid2 successfully wrote to the range 130:4 (should be denied)\n");
2361 cli_setpid(cli1
, 1);
2362 cli_unlock(cli1
, fnum1
, 130, 4);
2364 status
= cli_lock32(cli1
, fnum1
, 130, 4, 0, WRITE_LOCK
);
2365 if (!NT_STATUS_IS_OK(status
)) {
2366 printf("Unable to apply write lock on range 130:4, error was %s\n", nt_errstr(status
));
2369 printf("pid1 successfully locked range 130:4 for WRITE\n");
2372 status
= cli_read(cli1
, fnum1
, buf
, 130, 4, &nread
);
2373 if (!NT_STATUS_IS_OK(status
)) {
2374 printf("pid1 unable to read the range 130:4, error was %s\n",
2377 } else if (nread
!= 4) {
2378 printf("pid1 unable to read the range 130:4, "
2379 "recv %ld req %d\n", (unsigned long)nread
, 4);
2382 printf("pid1 successfully read the range 130:4\n");
2385 status
= cli_writeall(cli1
, fnum1
, 0, (uint8_t *)buf
, 130, 4, NULL
);
2386 if (!NT_STATUS_IS_OK(status
)) {
2387 printf("pid1 unable to write to the range 130:4, error was "
2388 "%s\n", nt_errstr(status
));
2391 printf("pid1 successfully wrote to the range 130:4\n");
2394 cli_setpid(cli1
, 2);
2396 status
= cli_read(cli1
, fnum1
, buf
, 130, 4, &nread
);
2397 if (!NT_STATUS_IS_OK(status
)) {
2398 printf("pid2 unable to read the range 130:4, error was "
2399 "%s\n", nt_errstr(status
));
2400 if (!NT_STATUS_EQUAL(status
, NT_STATUS_FILE_LOCK_CONFLICT
)) {
2401 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2405 printf("pid2 successfully read the range 130:4 (should be denied) recv %ld\n",
2406 (unsigned long)nread
);
2410 status
= cli_writeall(cli1
, fnum1
, 0, (uint8_t *)buf
, 130, 4, NULL
);
2411 if (!NT_STATUS_IS_OK(status
)) {
2412 printf("pid2 unable to write to the range 130:4, error was "
2413 "%s\n", nt_errstr(status
));
2414 if (!NT_STATUS_EQUAL(status
, NT_STATUS_FILE_LOCK_CONFLICT
)) {
2415 printf("Incorrect error (should be NT_STATUS_FILE_LOCK_CONFLICT)\n");
2419 printf("pid2 successfully wrote to the range 130:4 (should be denied)\n");
2423 cli_unlock(cli1
, fnum1
, 130, 0);
2427 cli_close(cli1
, fnum1
);
2428 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2429 torture_close_connection(cli1
);
2431 printf("finished locktest7\n");
2436 * This demonstrates a problem with our use of GPFS share modes: A file
2437 * descriptor sitting in the pending close queue holding a GPFS share mode
2438 * blocks opening a file another time. Happens with Word 2007 temp files.
2439 * With "posix locking = yes" and "gpfs:sharemodes = yes" enabled, the third
2440 * open is denied with NT_STATUS_SHARING_VIOLATION.
2443 static bool run_locktest8(int dummy
)
2445 struct cli_state
*cli1
;
2446 const char *fname
= "\\lockt8.lck";
2447 uint16_t fnum1
, fnum2
;
2449 bool correct
= False
;
2452 if (!torture_open_connection(&cli1
, 0)) {
2456 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
2458 printf("starting locktest8\n");
2460 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2462 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_WRITE
,
2464 if (!NT_STATUS_IS_OK(status
)) {
2465 d_fprintf(stderr
, "cli_openx returned %s\n", nt_errstr(status
));
2469 memset(buf
, 0, sizeof(buf
));
2471 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_NONE
, &fnum2
);
2472 if (!NT_STATUS_IS_OK(status
)) {
2473 d_fprintf(stderr
, "cli_openx second time returned %s\n",
2478 status
= cli_lock32(cli1
, fnum2
, 1, 1, 0, READ_LOCK
);
2479 if (!NT_STATUS_IS_OK(status
)) {
2480 printf("Unable to apply read lock on range 1:1, error was "
2481 "%s\n", nt_errstr(status
));
2485 status
= cli_close(cli1
, fnum1
);
2486 if (!NT_STATUS_IS_OK(status
)) {
2487 d_fprintf(stderr
, "cli_close(fnum1) %s\n", nt_errstr(status
));
2491 status
= cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
, &fnum1
);
2492 if (!NT_STATUS_IS_OK(status
)) {
2493 d_fprintf(stderr
, "cli_openx third time returned %s\n",
2501 cli_close(cli1
, fnum1
);
2502 cli_close(cli1
, fnum2
);
2503 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2504 torture_close_connection(cli1
);
2506 printf("finished locktest8\n");
2511 * This test is designed to be run in conjunction with
2512 * external NFS or POSIX locks taken in the filesystem.
2513 * It checks that the smbd server will block until the
2514 * lock is released and then acquire it. JRA.
2517 static bool got_alarm
;
2518 static struct cli_state
*alarm_cli
;
2520 static void alarm_handler(int dummy
)
2525 static void alarm_handler_parent(int dummy
)
2527 smbXcli_conn_disconnect(alarm_cli
->conn
, NT_STATUS_OK
);
2530 static void do_local_lock(int read_fd
, int write_fd
)
2535 const char *local_pathname
= NULL
;
2538 local_pathname
= talloc_asprintf(talloc_tos(),
2539 "%s/lockt9.lck", local_path
);
2540 if (!local_pathname
) {
2541 printf("child: alloc fail\n");
2545 unlink(local_pathname
);
2546 fd
= open(local_pathname
, O_RDWR
|O_CREAT
, 0666);
2548 printf("child: open of %s failed %s.\n",
2549 local_pathname
, strerror(errno
));
2553 /* Now take a fcntl lock. */
2554 lock
.l_type
= F_WRLCK
;
2555 lock
.l_whence
= SEEK_SET
;
2558 lock
.l_pid
= getpid();
2560 ret
= fcntl(fd
,F_SETLK
,&lock
);
2562 printf("child: failed to get lock 0:4 on file %s. Error %s\n",
2563 local_pathname
, strerror(errno
));
2566 printf("child: got lock 0:4 on file %s.\n",
2571 CatchSignal(SIGALRM
, alarm_handler
);
2573 /* Signal the parent. */
2574 if (write(write_fd
, &c
, 1) != 1) {
2575 printf("child: start signal fail %s.\n",
2582 /* Wait for the parent to be ready. */
2583 if (read(read_fd
, &c
, 1) != 1) {
2584 printf("child: reply signal fail %s.\n",
2592 printf("child: released lock 0:4 on file %s.\n",
2598 static bool run_locktest9(int dummy
)
2600 struct cli_state
*cli1
;
2601 const char *fname
= "\\lockt9.lck";
2603 bool correct
= False
;
2604 int pipe_in
[2], pipe_out
[2];
2608 struct timeval start
;
2612 printf("starting locktest9\n");
2614 if (local_path
== NULL
) {
2615 d_fprintf(stderr
, "locktest9 must be given a local path via -l <localpath>\n");
2619 if (pipe(pipe_in
) == -1 || pipe(pipe_out
) == -1) {
2624 if (child_pid
== -1) {
2628 if (child_pid
== 0) {
2630 do_local_lock(pipe_out
[0], pipe_in
[1]);
2640 ret
= read(pipe_in
[0], &c
, 1);
2642 d_fprintf(stderr
, "failed to read start signal from child. %s\n",
2647 if (!torture_open_connection(&cli1
, 0)) {
2651 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
2653 status
= cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
,
2655 if (!NT_STATUS_IS_OK(status
)) {
2656 d_fprintf(stderr
, "cli_openx returned %s\n", nt_errstr(status
));
2660 /* Ensure the child has the lock. */
2661 status
= cli_lock32(cli1
, fnum
, 0, 4, 0, WRITE_LOCK
);
2662 if (NT_STATUS_IS_OK(status
)) {
2663 d_fprintf(stderr
, "Got the lock on range 0:4 - this should not happen !\n");
2666 d_printf("Child has the lock.\n");
2669 /* Tell the child to wait 5 seconds then exit. */
2670 ret
= write(pipe_out
[1], &c
, 1);
2672 d_fprintf(stderr
, "failed to send exit signal to child. %s\n",
2677 /* Wait 20 seconds for the lock. */
2679 CatchSignal(SIGALRM
, alarm_handler_parent
);
2682 start
= timeval_current();
2684 status
= cli_lock32(cli1
, fnum
, 0, 4, -1, WRITE_LOCK
);
2685 if (!NT_STATUS_IS_OK(status
)) {
2686 d_fprintf(stderr
, "Unable to apply write lock on range 0:4, error was "
2687 "%s\n", nt_errstr(status
));
2692 seconds
= timeval_elapsed(&start
);
2694 printf("Parent got the lock after %.2f seconds.\n",
2697 status
= cli_close(cli1
, fnum
);
2698 if (!NT_STATUS_IS_OK(status
)) {
2699 d_fprintf(stderr
, "cli_close(fnum1) %s\n", nt_errstr(status
));
2706 cli_close(cli1
, fnum
);
2707 torture_close_connection(cli1
);
2711 printf("finished locktest9\n");
2716 test whether fnums and tids open on one VC are available on another (a major
2719 static bool run_fdpasstest(int dummy
)
2721 struct cli_state
*cli1
, *cli2
;
2722 const char *fname
= "\\fdpass.tst";
2727 if (!torture_open_connection(&cli1
, 0) || !torture_open_connection(&cli2
, 1)) {
2730 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
2731 smbXcli_conn_set_sockopt(cli2
->conn
, sockops
);
2733 printf("starting fdpasstest\n");
2735 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2737 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
,
2739 if (!NT_STATUS_IS_OK(status
)) {
2740 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
2744 status
= cli_writeall(cli1
, fnum1
, 0, (const uint8_t *)"hello world\n", 0,
2746 if (!NT_STATUS_IS_OK(status
)) {
2747 printf("write failed (%s)\n", nt_errstr(status
));
2751 cli_state_set_uid(cli2
, cli_state_get_uid(cli1
));
2752 cli_state_set_tid(cli2
, cli_state_get_tid(cli1
));
2753 cli_setpid(cli2
, cli_getpid(cli1
));
2755 if (test_cli_read(cli2
, fnum1
, buf
, 0, 13, NULL
, 13)) {
2756 printf("read succeeded! nasty security hole [%s]\n", buf
);
2760 cli_close(cli1
, fnum1
);
2761 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2763 torture_close_connection(cli1
);
2764 torture_close_connection(cli2
);
2766 printf("finished fdpasstest\n");
2770 static bool run_fdsesstest(int dummy
)
2772 struct cli_state
*cli
;
2777 const char *fname
= "\\fdsess.tst";
2778 const char *fname1
= "\\fdsess1.tst";
2785 if (!torture_open_connection(&cli
, 0))
2787 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
2789 if (!torture_cli_session_setup2(cli
, &new_vuid
))
2792 saved_cnum
= cli_state_get_tid(cli
);
2793 if (!NT_STATUS_IS_OK(cli_tree_connect(cli
, share
, "?????", "", 1)))
2795 new_cnum
= cli_state_get_tid(cli
);
2796 cli_state_set_tid(cli
, saved_cnum
);
2798 printf("starting fdsesstest\n");
2800 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2801 cli_unlink(cli
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2803 status
= cli_openx(cli
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum1
);
2804 if (!NT_STATUS_IS_OK(status
)) {
2805 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
2809 status
= cli_writeall(cli
, fnum1
, 0, (const uint8_t *)"hello world\n", 0, 13,
2811 if (!NT_STATUS_IS_OK(status
)) {
2812 printf("write failed (%s)\n", nt_errstr(status
));
2816 saved_vuid
= cli_state_get_uid(cli
);
2817 cli_state_set_uid(cli
, new_vuid
);
2819 if (test_cli_read(cli
, fnum1
, buf
, 0, 13, NULL
, 13)) {
2820 printf("read succeeded with different vuid! "
2821 "nasty security hole [%s]\n", buf
);
2824 /* Try to open a file with different vuid, samba cnum. */
2825 if (NT_STATUS_IS_OK(cli_openx(cli
, fname1
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum2
))) {
2826 printf("create with different vuid, same cnum succeeded.\n");
2827 cli_close(cli
, fnum2
);
2828 cli_unlink(cli
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2830 printf("create with different vuid, same cnum failed.\n");
2831 printf("This will cause problems with service clients.\n");
2835 cli_state_set_uid(cli
, saved_vuid
);
2837 /* Try with same vuid, different cnum. */
2838 cli_state_set_tid(cli
, new_cnum
);
2840 if (test_cli_read(cli
, fnum1
, buf
, 0, 13, NULL
, 13)) {
2841 printf("read succeeded with different cnum![%s]\n", buf
);
2845 cli_state_set_tid(cli
, saved_cnum
);
2846 cli_close(cli
, fnum1
);
2847 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2849 torture_close_connection(cli
);
2851 printf("finished fdsesstest\n");
2856 This test checks that
2858 1) the server does not allow an unlink on a file that is open
2860 static bool run_unlinktest(int dummy
)
2862 struct cli_state
*cli
;
2863 const char *fname
= "\\unlink.tst";
2865 bool correct
= True
;
2868 if (!torture_open_connection(&cli
, 0)) {
2872 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
2874 printf("starting unlink test\n");
2876 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2880 status
= cli_openx(cli
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum
);
2881 if (!NT_STATUS_IS_OK(status
)) {
2882 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
2886 status
= cli_unlink(cli
, fname
,
2887 FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2888 if (NT_STATUS_IS_OK(status
)) {
2889 printf("error: server allowed unlink on an open file\n");
2892 correct
= check_error(__LINE__
, status
, ERRDOS
, ERRbadshare
,
2893 NT_STATUS_SHARING_VIOLATION
);
2896 cli_close(cli
, fnum
);
2897 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2899 if (!torture_close_connection(cli
)) {
2903 printf("unlink test finished\n");
2910 test how many open files this server supports on the one socket
2912 static bool run_maxfidtest(int dummy
)
2914 struct cli_state
*cli
;
2916 uint16_t fnums
[0x11000];
2919 bool correct
= True
;
2925 printf("failed to connect\n");
2929 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
2931 for (i
=0; i
<0x11000; i
++) {
2932 slprintf(fname
,sizeof(fname
)-1,"\\maxfid.%d.%d", i
,(int)getpid());
2933 status
= cli_openx(cli
, fname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
,
2935 if (!NT_STATUS_IS_OK(status
)) {
2936 printf("open of %s failed (%s)\n",
2937 fname
, nt_errstr(status
));
2938 printf("maximum fnum is %d\n", i
);
2946 printf("cleaning up\n");
2948 slprintf(fname
,sizeof(fname
)-1,"\\maxfid.%d.%d", i
,(int)getpid());
2949 cli_close(cli
, fnums
[i
]);
2951 status
= cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2952 if (!NT_STATUS_IS_OK(status
)) {
2953 printf("unlink of %s failed (%s)\n",
2954 fname
, nt_errstr(status
));
2961 printf("maxfid test finished\n");
2962 if (!torture_close_connection(cli
)) {
2968 /* generate a random buffer */
2969 static void rand_buf(char *buf
, int len
)
2972 *buf
= (char)sys_random();
2977 /* send smb negprot commands, not reading the response */
2978 static bool run_negprot_nowait(int dummy
)
2980 struct tevent_context
*ev
;
2982 struct cli_state
*cli
;
2983 bool correct
= True
;
2985 printf("starting negprot nowait test\n");
2987 ev
= samba_tevent_context_init(talloc_tos());
2992 if (!(cli
= open_nbt_connection())) {
2997 for (i
=0;i
<50000;i
++) {
2998 struct tevent_req
*req
;
3000 req
= smbXcli_negprot_send(ev
, ev
, cli
->conn
, cli
->timeout
,
3001 PROTOCOL_CORE
, PROTOCOL_NT1
);
3006 if (!tevent_req_poll(req
, ev
)) {
3007 d_fprintf(stderr
, "tevent_req_poll failed: %s\n",
3015 if (torture_close_connection(cli
)) {
3019 printf("finished negprot nowait test\n");
3024 /* send smb negprot commands, not reading the response */
3025 static bool run_bad_nbt_session(int dummy
)
3027 struct nmb_name called
, calling
;
3028 struct sockaddr_storage ss
;
3033 printf("starting bad nbt session test\n");
3035 make_nmb_name(&calling
, myname
, 0x0);
3036 make_nmb_name(&called
, host
, 0x20);
3038 if (!resolve_name(host
, &ss
, 0x20, true)) {
3039 d_fprintf(stderr
, "Could not resolve name %s\n", host
);
3043 status
= open_socket_out(&ss
, NBT_SMB_PORT
, 10000, &fd
);
3044 if (!NT_STATUS_IS_OK(status
)) {
3045 d_fprintf(stderr
, "open_socket_out failed: %s\n",
3050 ret
= cli_bad_session_request(fd
, &calling
, &called
);
3053 d_fprintf(stderr
, "open_socket_out failed: %s\n",
3058 printf("finished bad nbt session test\n");
3062 /* send random IPC commands */
3063 static bool run_randomipc(int dummy
)
3065 char *rparam
= NULL
;
3067 unsigned int rdrcnt
,rprcnt
;
3069 int api
, param_len
, i
;
3070 struct cli_state
*cli
;
3071 bool correct
= True
;
3074 printf("starting random ipc test\n");
3076 if (!torture_open_connection(&cli
, 0)) {
3080 for (i
=0;i
<count
;i
++) {
3081 api
= sys_random() % 500;
3082 param_len
= (sys_random() % 64);
3084 rand_buf(param
, param_len
);
3089 param
, param_len
, 8,
3090 NULL
, 0, CLI_BUFFER_SIZE
,
3094 printf("%d/%d\r", i
,count
);
3097 printf("%d/%d\n", i
, count
);
3099 if (!torture_close_connection(cli
)) {
3106 printf("finished random ipc test\n");
3113 static void browse_callback(const char *sname
, uint32 stype
,
3114 const char *comment
, void *state
)
3116 printf("\t%20.20s %08x %s\n", sname
, stype
, comment
);
3122 This test checks the browse list code
3125 static bool run_browsetest(int dummy
)
3127 static struct cli_state
*cli
;
3128 bool correct
= True
;
3130 printf("starting browse test\n");
3132 if (!torture_open_connection(&cli
, 0)) {
3136 printf("domain list:\n");
3137 cli_NetServerEnum(cli
, cli
->server_domain
,
3138 SV_TYPE_DOMAIN_ENUM
,
3139 browse_callback
, NULL
);
3141 printf("machine list:\n");
3142 cli_NetServerEnum(cli
, cli
->server_domain
,
3144 browse_callback
, NULL
);
3146 if (!torture_close_connection(cli
)) {
3150 printf("browse test finished\n");
3158 This checks how the getatr calls works
3160 static bool run_attrtest(int dummy
)
3162 struct cli_state
*cli
;
3165 const char *fname
= "\\attrib123456789.tst";
3166 bool correct
= True
;
3169 printf("starting attrib test\n");
3171 if (!torture_open_connection(&cli
, 0)) {
3175 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3176 cli_openx(cli
, fname
,
3177 O_RDWR
| O_CREAT
| O_TRUNC
, DENY_NONE
, &fnum
);
3178 cli_close(cli
, fnum
);
3180 status
= cli_getatr(cli
, fname
, NULL
, NULL
, &t
);
3181 if (!NT_STATUS_IS_OK(status
)) {
3182 printf("getatr failed (%s)\n", nt_errstr(status
));
3186 if (abs(t
- time(NULL
)) > 60*60*24*10) {
3187 printf("ERROR: SMBgetatr bug. time is %s",
3193 t2
= t
-60*60*24; /* 1 day ago */
3195 status
= cli_setatr(cli
, fname
, 0, t2
);
3196 if (!NT_STATUS_IS_OK(status
)) {
3197 printf("setatr failed (%s)\n", nt_errstr(status
));
3201 status
= cli_getatr(cli
, fname
, NULL
, NULL
, &t
);
3202 if (!NT_STATUS_IS_OK(status
)) {
3203 printf("getatr failed (%s)\n", nt_errstr(status
));
3208 printf("ERROR: getatr/setatr bug. times are\n%s",
3210 printf("%s", ctime(&t2
));
3214 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3216 if (!torture_close_connection(cli
)) {
3220 printf("attrib test finished\n");
3227 This checks a couple of trans2 calls
3229 static bool run_trans2test(int dummy
)
3231 struct cli_state
*cli
;
3234 time_t c_time
, a_time
, m_time
;
3235 struct timespec c_time_ts
, a_time_ts
, m_time_ts
, w_time_ts
, m_time2_ts
;
3236 const char *fname
= "\\trans2.tst";
3237 const char *dname
= "\\trans2";
3238 const char *fname2
= "\\trans2\\trans2.tst";
3240 bool correct
= True
;
3244 printf("starting trans2 test\n");
3246 if (!torture_open_connection(&cli
, 0)) {
3250 status
= cli_get_fs_attr_info(cli
, &fs_attr
);
3251 if (!NT_STATUS_IS_OK(status
)) {
3252 printf("ERROR: cli_get_fs_attr_info returned %s\n",
3257 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3258 cli_openx(cli
, fname
, O_RDWR
| O_CREAT
| O_TRUNC
, DENY_NONE
, &fnum
);
3259 status
= cli_qfileinfo_basic(cli
, fnum
, NULL
, &size
, &c_time_ts
,
3260 &a_time_ts
, &w_time_ts
, &m_time_ts
, NULL
);
3261 if (!NT_STATUS_IS_OK(status
)) {
3262 printf("ERROR: qfileinfo failed (%s)\n", nt_errstr(status
));
3266 status
= cli_qfilename(cli
, fnum
, talloc_tos(), &pname
);
3267 if (!NT_STATUS_IS_OK(status
)) {
3268 printf("ERROR: qfilename failed (%s)\n", nt_errstr(status
));
3272 if (strcmp(pname
, fname
)) {
3273 printf("qfilename gave different name? [%s] [%s]\n",
3278 cli_close(cli
, fnum
);
3282 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3283 status
= cli_openx(cli
, fname
, O_RDWR
| O_CREAT
| O_TRUNC
, DENY_NONE
,
3285 if (!NT_STATUS_IS_OK(status
)) {
3286 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
3289 cli_close(cli
, fnum
);
3291 status
= cli_qpathinfo1(cli
, fname
, &c_time
, &a_time
, &m_time
, &size
,
3293 if (!NT_STATUS_IS_OK(status
)) {
3294 printf("ERROR: qpathinfo failed (%s)\n", nt_errstr(status
));
3297 time_t t
= time(NULL
);
3299 if (c_time
!= m_time
) {
3300 printf("create time=%s", ctime(&c_time
));
3301 printf("modify time=%s", ctime(&m_time
));
3302 printf("This system appears to have sticky create times\n");
3304 if ((abs(a_time
- t
) > 60) && (a_time
% (60*60) == 0)) {
3305 printf("access time=%s", ctime(&a_time
));
3306 printf("This system appears to set a midnight access time\n");
3310 if (abs(m_time
- t
) > 60*60*24*7) {
3311 printf("ERROR: totally incorrect times - maybe word reversed? mtime=%s", ctime(&m_time
));
3317 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3318 cli_openx(cli
, fname
,
3319 O_RDWR
| O_CREAT
| O_TRUNC
, DENY_NONE
, &fnum
);
3320 cli_close(cli
, fnum
);
3321 status
= cli_qpathinfo2(cli
, fname
, &c_time_ts
, &a_time_ts
, &w_time_ts
,
3322 &m_time_ts
, &size
, NULL
, NULL
);
3323 if (!NT_STATUS_IS_OK(status
)) {
3324 printf("ERROR: qpathinfo2 failed (%s)\n", nt_errstr(status
));
3327 if (w_time_ts
.tv_sec
< 60*60*24*2) {
3328 printf("write time=%s", ctime(&w_time_ts
.tv_sec
));
3329 printf("This system appears to set a initial 0 write time\n");
3334 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3337 /* check if the server updates the directory modification time
3338 when creating a new file */
3339 status
= cli_mkdir(cli
, dname
);
3340 if (!NT_STATUS_IS_OK(status
)) {
3341 printf("ERROR: mkdir failed (%s)\n", nt_errstr(status
));
3345 status
= cli_qpathinfo2(cli
, "\\trans2\\", &c_time_ts
, &a_time_ts
,
3346 &w_time_ts
, &m_time_ts
, &size
, NULL
, NULL
);
3347 if (!NT_STATUS_IS_OK(status
)) {
3348 printf("ERROR: qpathinfo2 failed (%s)\n", nt_errstr(status
));
3352 cli_openx(cli
, fname2
,
3353 O_RDWR
| O_CREAT
| O_TRUNC
, DENY_NONE
, &fnum
);
3354 cli_writeall(cli
, fnum
, 0, (uint8_t *)&fnum
, 0, sizeof(fnum
), NULL
);
3355 cli_close(cli
, fnum
);
3356 status
= cli_qpathinfo2(cli
, "\\trans2\\", &c_time_ts
, &a_time_ts
,
3357 &w_time_ts
, &m_time2_ts
, &size
, NULL
, NULL
);
3358 if (!NT_STATUS_IS_OK(status
)) {
3359 printf("ERROR: qpathinfo2 failed (%s)\n", nt_errstr(status
));
3362 if (memcmp(&m_time_ts
, &m_time2_ts
, sizeof(struct timespec
))
3364 printf("This system does not update directory modification times\n");
3368 cli_unlink(cli
, fname2
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3369 cli_rmdir(cli
, dname
);
3371 if (!torture_close_connection(cli
)) {
3375 printf("trans2 test finished\n");
3381 This checks new W2K calls.
3384 static NTSTATUS
new_trans(struct cli_state
*pcli
, int fnum
, int level
)
3386 uint8_t *buf
= NULL
;
3390 status
= cli_qfileinfo(talloc_tos(), pcli
, fnum
, level
, 0,
3391 CLI_BUFFER_SIZE
, NULL
, &buf
, &len
);
3392 if (!NT_STATUS_IS_OK(status
)) {
3393 printf("ERROR: qfileinfo (%d) failed (%s)\n", level
,
3396 printf("qfileinfo: level %d, len = %u\n", level
, len
);
3397 dump_data(0, (uint8
*)buf
, len
);
3404 static bool run_w2ktest(int dummy
)
3406 struct cli_state
*cli
;
3408 const char *fname
= "\\w2ktest\\w2k.tst";
3410 bool correct
= True
;
3412 printf("starting w2k test\n");
3414 if (!torture_open_connection(&cli
, 0)) {
3418 cli_openx(cli
, fname
,
3419 O_RDWR
| O_CREAT
, DENY_NONE
, &fnum
);
3421 for (level
= 1004; level
< 1040; level
++) {
3422 new_trans(cli
, fnum
, level
);
3425 cli_close(cli
, fnum
);
3427 if (!torture_close_connection(cli
)) {
3431 printf("w2k test finished\n");
3438 this is a harness for some oplock tests
3440 static bool run_oplock1(int dummy
)
3442 struct cli_state
*cli1
;
3443 const char *fname
= "\\lockt1.lck";
3445 bool correct
= True
;
3448 printf("starting oplock test 1\n");
3450 if (!torture_open_connection(&cli1
, 0)) {
3454 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3456 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
3458 cli1
->use_oplocks
= True
;
3460 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
,
3462 if (!NT_STATUS_IS_OK(status
)) {
3463 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
3467 cli1
->use_oplocks
= False
;
3469 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3470 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3472 status
= cli_close(cli1
, fnum1
);
3473 if (!NT_STATUS_IS_OK(status
)) {
3474 printf("close2 failed (%s)\n", nt_errstr(status
));
3478 status
= cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3479 if (!NT_STATUS_IS_OK(status
)) {
3480 printf("unlink failed (%s)\n", nt_errstr(status
));
3484 if (!torture_close_connection(cli1
)) {
3488 printf("finished oplock test 1\n");
3493 static bool run_oplock2(int dummy
)
3495 struct cli_state
*cli1
, *cli2
;
3496 const char *fname
= "\\lockt2.lck";
3497 uint16_t fnum1
, fnum2
;
3498 int saved_use_oplocks
= use_oplocks
;
3500 bool correct
= True
;
3501 volatile bool *shared_correct
;
3505 shared_correct
= (volatile bool *)anonymous_shared_allocate(sizeof(bool));
3506 *shared_correct
= True
;
3508 use_level_II_oplocks
= True
;
3511 printf("starting oplock test 2\n");
3513 if (!torture_open_connection(&cli1
, 0)) {
3514 use_level_II_oplocks
= False
;
3515 use_oplocks
= saved_use_oplocks
;
3519 if (!torture_open_connection(&cli2
, 1)) {
3520 use_level_II_oplocks
= False
;
3521 use_oplocks
= saved_use_oplocks
;
3525 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3527 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
3528 smbXcli_conn_set_sockopt(cli2
->conn
, sockops
);
3530 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
,
3532 if (!NT_STATUS_IS_OK(status
)) {
3533 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
3537 /* Don't need the globals any more. */
3538 use_level_II_oplocks
= False
;
3539 use_oplocks
= saved_use_oplocks
;
3543 status
= cli_openx(cli2
, fname
, O_RDWR
, DENY_NONE
, &fnum2
);
3544 if (!NT_STATUS_IS_OK(status
)) {
3545 printf("second open of %s failed (%s)\n", fname
, nt_errstr(status
));
3546 *shared_correct
= False
;
3552 status
= cli_close(cli2
, fnum2
);
3553 if (!NT_STATUS_IS_OK(status
)) {
3554 printf("close2 failed (%s)\n", nt_errstr(status
));
3555 *shared_correct
= False
;
3563 /* Ensure cli1 processes the break. Empty file should always return 0
3565 status
= cli_read(cli1
, fnum1
, buf
, 0, 4, &nread
);
3566 if (!NT_STATUS_IS_OK(status
)) {
3567 printf("read on fnum1 failed (%s)\n", nt_errstr(status
));
3569 } else if (nread
!= 0) {
3570 printf("read on empty fnum1 failed. recv %ld expected %d\n",
3571 (unsigned long)nread
, 0);
3575 /* Should now be at level II. */
3576 /* Test if sending a write locks causes a break to none. */
3577 status
= cli_lock32(cli1
, fnum1
, 0, 4, 0, READ_LOCK
);
3578 if (!NT_STATUS_IS_OK(status
)) {
3579 printf("lock failed (%s)\n", nt_errstr(status
));
3583 cli_unlock(cli1
, fnum1
, 0, 4);
3587 status
= cli_lock32(cli1
, fnum1
, 0, 4, 0, WRITE_LOCK
);
3588 if (!NT_STATUS_IS_OK(status
)) {
3589 printf("lock failed (%s)\n", nt_errstr(status
));
3593 cli_unlock(cli1
, fnum1
, 0, 4);
3597 cli_read(cli1
, fnum1
, buf
, 0, 4, NULL
);
3599 status
= cli_close(cli1
, fnum1
);
3600 if (!NT_STATUS_IS_OK(status
)) {
3601 printf("close1 failed (%s)\n", nt_errstr(status
));
3607 status
= cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3608 if (!NT_STATUS_IS_OK(status
)) {
3609 printf("unlink failed (%s)\n", nt_errstr(status
));
3613 if (!torture_close_connection(cli1
)) {
3617 if (!*shared_correct
) {
3621 printf("finished oplock test 2\n");
3626 struct oplock4_state
{
3627 struct tevent_context
*ev
;
3628 struct cli_state
*cli
;
3633 static void oplock4_got_break(struct tevent_req
*req
);
3634 static void oplock4_got_open(struct tevent_req
*req
);
3636 static bool run_oplock4(int dummy
)
3638 struct tevent_context
*ev
;
3639 struct cli_state
*cli1
, *cli2
;
3640 struct tevent_req
*oplock_req
, *open_req
;
3641 const char *fname
= "\\lockt4.lck";
3642 const char *fname_ln
= "\\lockt4_ln.lck";
3643 uint16_t fnum1
, fnum2
;
3644 int saved_use_oplocks
= use_oplocks
;
3646 bool correct
= true;
3650 struct oplock4_state
*state
;
3652 printf("starting oplock test 4\n");
3654 if (!torture_open_connection(&cli1
, 0)) {
3655 use_level_II_oplocks
= false;
3656 use_oplocks
= saved_use_oplocks
;
3660 if (!torture_open_connection(&cli2
, 1)) {
3661 use_level_II_oplocks
= false;
3662 use_oplocks
= saved_use_oplocks
;
3666 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3667 cli_unlink(cli1
, fname_ln
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3669 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
3670 smbXcli_conn_set_sockopt(cli2
->conn
, sockops
);
3672 /* Create the file. */
3673 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
,
3675 if (!NT_STATUS_IS_OK(status
)) {
3676 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
3680 status
= cli_close(cli1
, fnum1
);
3681 if (!NT_STATUS_IS_OK(status
)) {
3682 printf("close1 failed (%s)\n", nt_errstr(status
));
3686 /* Now create a hardlink. */
3687 status
= cli_nt_hardlink(cli1
, fname
, fname_ln
);
3688 if (!NT_STATUS_IS_OK(status
)) {
3689 printf("nt hardlink failed (%s)\n", nt_errstr(status
));
3693 /* Prove that opening hardlinks cause deny modes to conflict. */
3694 status
= cli_openx(cli1
, fname
, O_RDWR
, DENY_ALL
, &fnum1
);
3695 if (!NT_STATUS_IS_OK(status
)) {
3696 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
3700 status
= cli_openx(cli1
, fname_ln
, O_RDWR
, DENY_NONE
, &fnum2
);
3701 if (NT_STATUS_IS_OK(status
)) {
3702 printf("open of %s succeeded - should fail with sharing violation.\n",
3707 if (!NT_STATUS_EQUAL(status
, NT_STATUS_SHARING_VIOLATION
)) {
3708 printf("open of %s should fail with sharing violation. Got %s\n",
3709 fname_ln
, nt_errstr(status
));
3713 status
= cli_close(cli1
, fnum1
);
3714 if (!NT_STATUS_IS_OK(status
)) {
3715 printf("close1 failed (%s)\n", nt_errstr(status
));
3719 cli1
->use_oplocks
= true;
3720 cli2
->use_oplocks
= true;
3722 status
= cli_openx(cli1
, fname
, O_RDWR
, DENY_NONE
, &fnum1
);
3723 if (!NT_STATUS_IS_OK(status
)) {
3724 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
3728 ev
= samba_tevent_context_init(talloc_tos());
3730 printf("tevent_context_init failed\n");
3734 state
= talloc(ev
, struct oplock4_state
);
3735 if (state
== NULL
) {
3736 printf("talloc failed\n");
3741 state
->got_break
= &got_break
;
3742 state
->fnum2
= &fnum2
;
3744 oplock_req
= cli_smb_oplock_break_waiter_send(
3745 talloc_tos(), ev
, cli1
);
3746 if (oplock_req
== NULL
) {
3747 printf("cli_smb_oplock_break_waiter_send failed\n");
3750 tevent_req_set_callback(oplock_req
, oplock4_got_break
, state
);
3752 open_req
= cli_openx_send(
3753 talloc_tos(), ev
, cli2
, fname_ln
, O_RDWR
, DENY_NONE
);
3754 if (open_req
== NULL
) {
3755 printf("cli_openx_send failed\n");
3758 tevent_req_set_callback(open_req
, oplock4_got_open
, state
);
3763 while (!got_break
|| fnum2
== 0xffff) {
3765 ret
= tevent_loop_once(ev
);
3767 printf("tevent_loop_once failed: %s\n",
3773 status
= cli_close(cli2
, fnum2
);
3774 if (!NT_STATUS_IS_OK(status
)) {
3775 printf("close2 failed (%s)\n", nt_errstr(status
));
3779 status
= cli_close(cli1
, fnum1
);
3780 if (!NT_STATUS_IS_OK(status
)) {
3781 printf("close1 failed (%s)\n", nt_errstr(status
));
3785 status
= cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3786 if (!NT_STATUS_IS_OK(status
)) {
3787 printf("unlink failed (%s)\n", nt_errstr(status
));
3791 status
= cli_unlink(cli1
, fname_ln
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3792 if (!NT_STATUS_IS_OK(status
)) {
3793 printf("unlink failed (%s)\n", nt_errstr(status
));
3797 if (!torture_close_connection(cli1
)) {
3805 printf("finished oplock test 4\n");
3810 static void oplock4_got_break(struct tevent_req
*req
)
3812 struct oplock4_state
*state
= tevent_req_callback_data(
3813 req
, struct oplock4_state
);
3818 status
= cli_smb_oplock_break_waiter_recv(req
, &fnum
, &level
);
3820 if (!NT_STATUS_IS_OK(status
)) {
3821 printf("cli_smb_oplock_break_waiter_recv returned %s\n",
3825 *state
->got_break
= true;
3827 req
= cli_oplock_ack_send(state
, state
->ev
, state
->cli
, fnum
,
3830 printf("cli_oplock_ack_send failed\n");
3835 static void oplock4_got_open(struct tevent_req
*req
)
3837 struct oplock4_state
*state
= tevent_req_callback_data(
3838 req
, struct oplock4_state
);
3841 status
= cli_openx_recv(req
, state
->fnum2
);
3842 if (!NT_STATUS_IS_OK(status
)) {
3843 printf("cli_openx_recv returned %s\n", nt_errstr(status
));
3844 *state
->fnum2
= 0xffff;
3849 Test delete on close semantics.
3851 static bool run_deletetest(int dummy
)
3853 struct cli_state
*cli1
= NULL
;
3854 struct cli_state
*cli2
= NULL
;
3855 const char *fname
= "\\delete.file";
3856 uint16_t fnum1
= (uint16_t)-1;
3857 uint16_t fnum2
= (uint16_t)-1;
3858 bool correct
= false;
3861 printf("starting delete test\n");
3863 if (!torture_open_connection(&cli1
, 0)) {
3867 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
3869 /* Test 1 - this should delete the file on close. */
3871 cli_setatr(cli1
, fname
, 0, 0);
3872 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3874 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_ALL_ACCESS
|DELETE_ACCESS
,
3875 FILE_ATTRIBUTE_NORMAL
, 0, FILE_OVERWRITE_IF
,
3876 FILE_DELETE_ON_CLOSE
, 0, &fnum1
);
3877 if (!NT_STATUS_IS_OK(status
)) {
3878 printf("[1] open of %s failed (%s)\n", fname
, nt_errstr(status
));
3882 status
= cli_close(cli1
, fnum1
);
3883 if (!NT_STATUS_IS_OK(status
)) {
3884 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
);
3894 printf("first delete on close test succeeded.\n");
3896 /* Test 2 - this should delete the file on close. */
3898 cli_setatr(cli1
, fname
, 0, 0);
3899 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3901 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_ALL_ACCESS
,
3902 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
3903 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
3904 if (!NT_STATUS_IS_OK(status
)) {
3905 printf("[2] open of %s failed (%s)\n", fname
, nt_errstr(status
));
3909 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
3910 if (!NT_STATUS_IS_OK(status
)) {
3911 printf("[2] setting delete_on_close failed (%s)\n", nt_errstr(status
));
3915 status
= cli_close(cli1
, fnum1
);
3916 if (!NT_STATUS_IS_OK(status
)) {
3917 printf("[2] close failed (%s)\n", nt_errstr(status
));
3921 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_NONE
, &fnum1
);
3922 if (NT_STATUS_IS_OK(status
)) {
3923 printf("[2] open of %s succeeded should have been deleted on close !\n", fname
);
3924 status
= cli_close(cli1
, fnum1
);
3925 if (!NT_STATUS_IS_OK(status
)) {
3926 printf("[2] close failed (%s)\n", nt_errstr(status
));
3928 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3932 printf("second delete on close test succeeded.\n");
3935 cli_setatr(cli1
, fname
, 0, 0);
3936 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
3938 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_ALL_ACCESS
,
3939 FILE_ATTRIBUTE_NORMAL
,
3940 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
3941 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
3942 if (!NT_STATUS_IS_OK(status
)) {
3943 printf("[3] open - 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
3947 /* This should fail with a sharing violation - open for delete is only compatible
3948 with SHARE_DELETE. */
3950 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
3951 FILE_ATTRIBUTE_NORMAL
,
3952 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
3953 FILE_OPEN
, 0, 0, &fnum2
);
3954 if (NT_STATUS_IS_OK(status
)) {
3955 printf("[3] open - 2 of %s succeeded - should have failed.\n", fname
);
3959 /* This should succeed. */
3960 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
3961 FILE_ATTRIBUTE_NORMAL
,
3962 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
3963 FILE_OPEN
, 0, 0, &fnum2
);
3964 if (!NT_STATUS_IS_OK(status
)) {
3965 printf("[3] open - 3 of %s failed (%s)\n", fname
, nt_errstr(status
));
3969 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
3970 if (!NT_STATUS_IS_OK(status
)) {
3971 printf("[3] setting delete_on_close failed (%s)\n", nt_errstr(status
));
3975 status
= cli_close(cli1
, fnum1
);
3976 if (!NT_STATUS_IS_OK(status
)) {
3977 printf("[3] close 1 failed (%s)\n", nt_errstr(status
));
3981 status
= cli_close(cli1
, fnum2
);
3982 if (!NT_STATUS_IS_OK(status
)) {
3983 printf("[3] close 2 failed (%s)\n", nt_errstr(status
));
3987 /* This should fail - file should no longer be there. */
3989 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_NONE
, &fnum1
);
3990 if (NT_STATUS_IS_OK(status
)) {
3991 printf("[3] open of %s succeeded should have been deleted on close !\n", fname
);
3992 status
= cli_close(cli1
, fnum1
);
3993 if (!NT_STATUS_IS_OK(status
)) {
3994 printf("[3] close failed (%s)\n", nt_errstr(status
));
3996 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4000 printf("third delete on close test succeeded.\n");
4003 cli_setatr(cli1
, fname
, 0, 0);
4004 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4006 status
= cli_ntcreate(cli1
, fname
, 0,
4007 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
4008 FILE_ATTRIBUTE_NORMAL
,
4009 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
4010 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4011 if (!NT_STATUS_IS_OK(status
)) {
4012 printf("[4] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4016 /* This should succeed. */
4017 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4018 FILE_ATTRIBUTE_NORMAL
,
4019 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4020 FILE_OPEN
, 0, 0, &fnum2
);
4021 if (!NT_STATUS_IS_OK(status
)) {
4022 printf("[4] open - 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
4026 status
= cli_close(cli1
, fnum2
);
4027 if (!NT_STATUS_IS_OK(status
)) {
4028 printf("[4] close - 1 failed (%s)\n", nt_errstr(status
));
4032 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
4033 if (!NT_STATUS_IS_OK(status
)) {
4034 printf("[4] setting delete_on_close failed (%s)\n", nt_errstr(status
));
4038 /* This should fail - no more opens once delete on close set. */
4039 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4040 FILE_ATTRIBUTE_NORMAL
,
4041 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4042 FILE_OPEN
, 0, 0, &fnum2
);
4043 if (NT_STATUS_IS_OK(status
)) {
4044 printf("[4] open - 3 of %s succeeded ! Should have failed.\n", fname
);
4048 status
= cli_close(cli1
, fnum1
);
4049 if (!NT_STATUS_IS_OK(status
)) {
4050 printf("[4] close - 2 failed (%s)\n", nt_errstr(status
));
4054 printf("fourth delete on close test succeeded.\n");
4057 cli_setatr(cli1
, fname
, 0, 0);
4058 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4060 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum1
);
4061 if (!NT_STATUS_IS_OK(status
)) {
4062 printf("[5] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4066 /* This should fail - only allowed on NT opens with DELETE access. */
4068 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
4069 if (NT_STATUS_IS_OK(status
)) {
4070 printf("[5] setting delete_on_close on OpenX file succeeded - should fail !\n");
4074 status
= cli_close(cli1
, fnum1
);
4075 if (!NT_STATUS_IS_OK(status
)) {
4076 printf("[5] close failed (%s)\n", nt_errstr(status
));
4080 printf("fifth delete on close test succeeded.\n");
4083 cli_setatr(cli1
, fname
, 0, 0);
4084 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4086 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_DATA
|FILE_WRITE_DATA
,
4087 FILE_ATTRIBUTE_NORMAL
,
4088 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4089 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4090 if (!NT_STATUS_IS_OK(status
)) {
4091 printf("[6] open of %s failed (%s)\n", fname
,
4096 /* This should fail - only allowed on NT opens with DELETE access. */
4098 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
4099 if (NT_STATUS_IS_OK(status
)) {
4100 printf("[6] setting delete_on_close on file with no delete access succeeded - should fail !\n");
4104 status
= cli_close(cli1
, fnum1
);
4105 if (!NT_STATUS_IS_OK(status
)) {
4106 printf("[6] close failed (%s)\n", nt_errstr(status
));
4110 printf("sixth delete on close test succeeded.\n");
4113 cli_setatr(cli1
, fname
, 0, 0);
4114 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4116 status
= cli_ntcreate(cli1
, fname
, 0,
4117 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
4118 FILE_ATTRIBUTE_NORMAL
, 0, FILE_OVERWRITE_IF
,
4120 if (!NT_STATUS_IS_OK(status
)) {
4121 printf("[7] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4125 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
4126 if (!NT_STATUS_IS_OK(status
)) {
4127 printf("[7] setting delete_on_close on file failed !\n");
4131 status
= cli_nt_delete_on_close(cli1
, fnum1
, false);
4132 if (!NT_STATUS_IS_OK(status
)) {
4133 printf("[7] unsetting delete_on_close on file failed !\n");
4137 status
= cli_close(cli1
, fnum1
);
4138 if (!NT_STATUS_IS_OK(status
)) {
4139 printf("[7] close - 1 failed (%s)\n", nt_errstr(status
));
4143 /* This next open should succeed - we reset the flag. */
4144 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_NONE
, &fnum1
);
4145 if (!NT_STATUS_IS_OK(status
)) {
4146 printf("[7] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4150 status
= cli_close(cli1
, fnum1
);
4151 if (!NT_STATUS_IS_OK(status
)) {
4152 printf("[7] close - 2 failed (%s)\n", nt_errstr(status
));
4156 printf("seventh delete on close test succeeded.\n");
4159 cli_setatr(cli1
, fname
, 0, 0);
4160 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4162 if (!torture_open_connection(&cli2
, 1)) {
4163 printf("[8] failed to open second connection.\n");
4167 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
4169 status
= cli_ntcreate(cli1
, fname
, 0,
4170 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
4171 FILE_ATTRIBUTE_NORMAL
,
4172 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4173 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4174 if (!NT_STATUS_IS_OK(status
)) {
4175 printf("[8] open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
4179 status
= cli_ntcreate(cli2
, fname
, 0,
4180 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
4181 FILE_ATTRIBUTE_NORMAL
,
4182 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4183 FILE_OPEN
, 0, 0, &fnum2
);
4184 if (!NT_STATUS_IS_OK(status
)) {
4185 printf("[8] open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
4189 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
4190 if (!NT_STATUS_IS_OK(status
)) {
4191 printf("[8] setting delete_on_close on file failed !\n");
4195 status
= cli_close(cli1
, fnum1
);
4196 if (!NT_STATUS_IS_OK(status
)) {
4197 printf("[8] close - 1 failed (%s)\n", nt_errstr(status
));
4201 status
= cli_close(cli2
, fnum2
);
4202 if (!NT_STATUS_IS_OK(status
)) {
4203 printf("[8] close - 2 failed (%s)\n", nt_errstr(status
));
4207 /* This should fail.. */
4208 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_NONE
, &fnum1
);
4209 if (NT_STATUS_IS_OK(status
)) {
4210 printf("[8] open of %s succeeded should have been deleted on close !\n", fname
);
4214 printf("eighth delete on close test succeeded.\n");
4218 /* This should fail - we need to set DELETE_ACCESS. */
4219 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_DATA
|FILE_WRITE_DATA
,
4220 FILE_ATTRIBUTE_NORMAL
,
4223 FILE_DELETE_ON_CLOSE
, 0, &fnum1
);
4224 if (NT_STATUS_IS_OK(status
)) {
4225 printf("[9] open of %s succeeded should have failed!\n", fname
);
4229 printf("ninth delete on close test succeeded.\n");
4233 status
= cli_ntcreate(cli1
, fname
, 0,
4234 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
4235 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
4236 FILE_OVERWRITE_IF
, FILE_DELETE_ON_CLOSE
,
4238 if (!NT_STATUS_IS_OK(status
)) {
4239 printf("[10] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4243 /* This should delete the file. */
4244 status
= cli_close(cli1
, fnum1
);
4245 if (!NT_STATUS_IS_OK(status
)) {
4246 printf("[10] close failed (%s)\n", nt_errstr(status
));
4250 /* This should fail.. */
4251 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_NONE
, &fnum1
);
4252 if (NT_STATUS_IS_OK(status
)) {
4253 printf("[10] open of %s succeeded should have been deleted on close !\n", fname
);
4257 printf("tenth delete on close test succeeded.\n");
4261 cli_setatr(cli1
, fname
, 0, 0);
4262 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4264 /* Can we open a read-only file with delete access? */
4266 /* Create a readonly file. */
4267 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_DATA
|FILE_WRITE_DATA
,
4268 FILE_ATTRIBUTE_READONLY
, FILE_SHARE_NONE
,
4269 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4270 if (!NT_STATUS_IS_OK(status
)) {
4271 printf("[11] open of %s failed (%s)\n", fname
, nt_errstr(status
));
4275 status
= cli_close(cli1
, fnum1
);
4276 if (!NT_STATUS_IS_OK(status
)) {
4277 printf("[11] close failed (%s)\n", nt_errstr(status
));
4281 /* Now try open for delete access. */
4282 status
= cli_ntcreate(cli1
, fname
, 0,
4283 FILE_READ_ATTRIBUTES
|DELETE_ACCESS
,
4285 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4286 FILE_OPEN
, 0, 0, &fnum1
);
4287 if (!NT_STATUS_IS_OK(status
)) {
4288 printf("[11] open of %s failed: %s\n", fname
, nt_errstr(status
));
4292 cli_close(cli1
, fnum1
);
4294 printf("eleventh delete on close test succeeded.\n");
4298 * like test 4 but with initial delete on close
4301 cli_setatr(cli1
, fname
, 0, 0);
4302 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4304 status
= cli_ntcreate(cli1
, fname
, 0,
4305 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
4306 FILE_ATTRIBUTE_NORMAL
,
4307 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
4309 FILE_DELETE_ON_CLOSE
, 0, &fnum1
);
4310 if (!NT_STATUS_IS_OK(status
)) {
4311 printf("[12] open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
4315 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4316 FILE_ATTRIBUTE_NORMAL
,
4317 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4318 FILE_OPEN
, 0, 0, &fnum2
);
4319 if (!NT_STATUS_IS_OK(status
)) {
4320 printf("[12] open 2 of %s failed(%s).\n", fname
, nt_errstr(status
));
4324 status
= cli_close(cli1
, fnum2
);
4325 if (!NT_STATUS_IS_OK(status
)) {
4326 printf("[12] close 1 failed (%s)\n", nt_errstr(status
));
4330 status
= cli_nt_delete_on_close(cli1
, fnum1
, true);
4331 if (!NT_STATUS_IS_OK(status
)) {
4332 printf("[12] setting delete_on_close failed (%s)\n", nt_errstr(status
));
4336 /* This should fail - no more opens once delete on close set. */
4337 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4338 FILE_ATTRIBUTE_NORMAL
,
4339 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4340 FILE_OPEN
, 0, 0, &fnum2
);
4341 if (NT_STATUS_IS_OK(status
)) {
4342 printf("[12] open 3 of %s succeeded - should fail).\n", fname
);
4346 status
= cli_nt_delete_on_close(cli1
, fnum1
, false);
4347 if (!NT_STATUS_IS_OK(status
)) {
4348 printf("[12] unsetting delete_on_close failed (%s)\n", nt_errstr(status
));
4352 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4353 FILE_ATTRIBUTE_NORMAL
,
4354 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4355 FILE_OPEN
, 0, 0, &fnum2
);
4356 if (!NT_STATUS_IS_OK(status
)) {
4357 printf("[12] open 4 of %s failed (%s)\n", fname
, nt_errstr(status
));
4361 status
= cli_close(cli1
, fnum2
);
4362 if (!NT_STATUS_IS_OK(status
)) {
4363 printf("[12] close 2 failed (%s)\n", nt_errstr(status
));
4367 status
= cli_close(cli1
, fnum1
);
4368 if (!NT_STATUS_IS_OK(status
)) {
4369 printf("[12] close 3 failed (%s)\n", nt_errstr(status
));
4374 * setting delete on close on the handle does
4375 * not unset the initial delete on close...
4377 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4378 FILE_ATTRIBUTE_NORMAL
,
4379 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4380 FILE_OPEN
, 0, 0, &fnum2
);
4381 if (NT_STATUS_IS_OK(status
)) {
4382 printf("[12] open 5 of %s succeeded - should fail).\n", fname
);
4384 } else if (!NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
4385 printf("ntcreate returned %s, expected "
4386 "NT_STATUS_OBJECT_NAME_NOT_FOUND\n",
4391 printf("twelfth delete on close test succeeded.\n");
4394 printf("finished delete test\n");
4399 /* FIXME: This will crash if we aborted before cli2 got
4400 * intialized, because these functions don't handle
4401 * uninitialized connections. */
4403 if (fnum1
!= (uint16_t)-1) cli_close(cli1
, fnum1
);
4404 if (fnum2
!= (uint16_t)-1) cli_close(cli1
, fnum2
);
4405 cli_setatr(cli1
, fname
, 0, 0);
4406 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4408 if (cli1
&& !torture_close_connection(cli1
)) {
4411 if (cli2
&& !torture_close_connection(cli2
)) {
4417 static bool run_deletetest_ln(int dummy
)
4419 struct cli_state
*cli
;
4420 const char *fname
= "\\delete1";
4421 const char *fname_ln
= "\\delete1_ln";
4425 bool correct
= true;
4428 printf("starting deletetest-ln\n");
4430 if (!torture_open_connection(&cli
, 0)) {
4434 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4435 cli_unlink(cli
, fname_ln
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4437 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
4439 /* Create the file. */
4440 status
= cli_openx(cli
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum
);
4441 if (!NT_STATUS_IS_OK(status
)) {
4442 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
4446 status
= cli_close(cli
, fnum
);
4447 if (!NT_STATUS_IS_OK(status
)) {
4448 printf("close1 failed (%s)\n", nt_errstr(status
));
4452 /* Now create a hardlink. */
4453 status
= cli_nt_hardlink(cli
, fname
, fname_ln
);
4454 if (!NT_STATUS_IS_OK(status
)) {
4455 printf("nt hardlink failed (%s)\n", nt_errstr(status
));
4459 /* Open the original file. */
4460 status
= cli_ntcreate(cli
, fname
, 0, FILE_READ_DATA
,
4461 FILE_ATTRIBUTE_NORMAL
,
4462 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4463 FILE_OPEN_IF
, 0, 0, &fnum
);
4464 if (!NT_STATUS_IS_OK(status
)) {
4465 printf("ntcreate of %s failed (%s)\n", fname
, nt_errstr(status
));
4469 /* Unlink the hard link path. */
4470 status
= cli_ntcreate(cli
, fname_ln
, 0, DELETE_ACCESS
,
4471 FILE_ATTRIBUTE_NORMAL
,
4472 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4473 FILE_OPEN_IF
, 0, 0, &fnum1
);
4474 if (!NT_STATUS_IS_OK(status
)) {
4475 printf("ntcreate of %s failed (%s)\n", fname_ln
, nt_errstr(status
));
4478 status
= cli_nt_delete_on_close(cli
, fnum1
, true);
4479 if (!NT_STATUS_IS_OK(status
)) {
4480 d_printf("(%s) failed to set delete_on_close %s: %s\n",
4481 __location__
, fname_ln
, nt_errstr(status
));
4485 status
= cli_close(cli
, fnum1
);
4486 if (!NT_STATUS_IS_OK(status
)) {
4487 printf("close %s failed (%s)\n",
4488 fname_ln
, nt_errstr(status
));
4492 status
= cli_close(cli
, fnum
);
4493 if (!NT_STATUS_IS_OK(status
)) {
4494 printf("close %s failed (%s)\n",
4495 fname
, nt_errstr(status
));
4499 /* Ensure the original file is still there. */
4500 status
= cli_getatr(cli
, fname
, NULL
, NULL
, &t
);
4501 if (!NT_STATUS_IS_OK(status
)) {
4502 printf("%s getatr on file %s failed (%s)\n",
4509 /* Ensure the link path is gone. */
4510 status
= cli_getatr(cli
, fname_ln
, NULL
, NULL
, &t
);
4511 if (!NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
4512 printf("%s, getatr for file %s returned wrong error code %s "
4513 "- should have been deleted\n",
4515 fname_ln
, nt_errstr(status
));
4519 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4520 cli_unlink(cli
, fname_ln
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4522 if (!torture_close_connection(cli
)) {
4526 printf("finished deletetest-ln\n");
4532 print out server properties
4534 static bool run_properties(int dummy
)
4536 struct cli_state
*cli
;
4537 bool correct
= True
;
4539 printf("starting properties test\n");
4543 if (!torture_open_connection(&cli
, 0)) {
4547 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
4549 d_printf("Capabilities 0x%08x\n", smb1cli_conn_capabilities(cli
->conn
));
4551 if (!torture_close_connection(cli
)) {
4560 /* FIRST_DESIRED_ACCESS 0xf019f */
4561 #define FIRST_DESIRED_ACCESS FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|\
4562 FILE_READ_EA| /* 0xf */ \
4563 FILE_WRITE_EA|FILE_READ_ATTRIBUTES| /* 0x90 */ \
4564 FILE_WRITE_ATTRIBUTES| /* 0x100 */ \
4565 DELETE_ACCESS|READ_CONTROL_ACCESS|\
4566 WRITE_DAC_ACCESS|WRITE_OWNER_ACCESS /* 0xf0000 */
4567 /* SECOND_DESIRED_ACCESS 0xe0080 */
4568 #define SECOND_DESIRED_ACCESS FILE_READ_ATTRIBUTES| /* 0x80 */ \
4569 READ_CONTROL_ACCESS|WRITE_DAC_ACCESS|\
4570 WRITE_OWNER_ACCESS /* 0xe0000 */
4573 #define THIRD_DESIRED_ACCESS FILE_READ_ATTRIBUTES| /* 0x80 */ \
4574 READ_CONTROL_ACCESS|WRITE_DAC_ACCESS|\
4576 WRITE_OWNER_ACCESS /* */
4580 Test ntcreate calls made by xcopy
4582 static bool run_xcopy(int dummy
)
4584 static struct cli_state
*cli1
;
4585 const char *fname
= "\\test.txt";
4586 bool correct
= True
;
4587 uint16_t fnum1
, fnum2
;
4590 printf("starting xcopy test\n");
4592 if (!torture_open_connection(&cli1
, 0)) {
4596 status
= cli_ntcreate(cli1
, fname
, 0, FIRST_DESIRED_ACCESS
,
4597 FILE_ATTRIBUTE_ARCHIVE
, FILE_SHARE_NONE
,
4598 FILE_OVERWRITE_IF
, 0x4044, 0, &fnum1
);
4599 if (!NT_STATUS_IS_OK(status
)) {
4600 printf("First open failed - %s\n", nt_errstr(status
));
4604 status
= cli_ntcreate(cli1
, fname
, 0, SECOND_DESIRED_ACCESS
, 0,
4605 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
4606 FILE_OPEN
, 0x200000, 0, &fnum2
);
4607 if (!NT_STATUS_IS_OK(status
)) {
4608 printf("second open failed - %s\n", nt_errstr(status
));
4612 if (!torture_close_connection(cli1
)) {
4620 Test rename on files open with share delete and no share delete.
4622 static bool run_rename(int dummy
)
4624 static struct cli_state
*cli1
;
4625 const char *fname
= "\\test.txt";
4626 const char *fname1
= "\\test1.txt";
4627 bool correct
= True
;
4632 printf("starting rename test\n");
4634 if (!torture_open_connection(&cli1
, 0)) {
4638 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4639 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4641 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4642 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_READ
,
4643 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4644 if (!NT_STATUS_IS_OK(status
)) {
4645 printf("First open failed - %s\n", nt_errstr(status
));
4649 status
= cli_rename(cli1
, fname
, fname1
);
4650 if (!NT_STATUS_IS_OK(status
)) {
4651 printf("First rename failed (SHARE_READ) (this is correct) - %s\n", nt_errstr(status
));
4653 printf("First rename succeeded (SHARE_READ) - this should have failed !\n");
4657 status
= cli_close(cli1
, fnum1
);
4658 if (!NT_STATUS_IS_OK(status
)) {
4659 printf("close - 1 failed (%s)\n", nt_errstr(status
));
4663 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4664 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4665 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
, FILE_ATTRIBUTE_NORMAL
,
4667 FILE_SHARE_DELETE
|FILE_SHARE_NONE
,
4669 FILE_SHARE_DELETE
|FILE_SHARE_READ
,
4671 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4672 if (!NT_STATUS_IS_OK(status
)) {
4673 printf("Second open failed - %s\n", nt_errstr(status
));
4677 status
= cli_rename(cli1
, fname
, fname1
);
4678 if (!NT_STATUS_IS_OK(status
)) {
4679 printf("Second rename failed (SHARE_DELETE | SHARE_READ) - this should have succeeded - %s\n", nt_errstr(status
));
4682 printf("Second rename succeeded (SHARE_DELETE | SHARE_READ)\n");
4685 status
= cli_close(cli1
, fnum1
);
4686 if (!NT_STATUS_IS_OK(status
)) {
4687 printf("close - 2 failed (%s)\n", nt_errstr(status
));
4691 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4692 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4694 status
= cli_ntcreate(cli1
, fname
, 0, READ_CONTROL_ACCESS
,
4695 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
4696 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4697 if (!NT_STATUS_IS_OK(status
)) {
4698 printf("Third open failed - %s\n", nt_errstr(status
));
4707 if (!NT_STATUS_IS_OK(cli_ntcreate(cli1
, fname
, 0, DELETE_ACCESS
, FILE_ATTRIBUTE_NORMAL
,
4708 FILE_SHARE_NONE
, FILE_OVERWRITE_IF
, 0, 0, &fnum2
))) {
4709 printf("Fourth open failed - %s\n", cli_errstr(cli1
));
4712 if (!NT_STATUS_IS_OK(cli_nt_delete_on_close(cli1
, fnum2
, true))) {
4713 printf("[8] setting delete_on_close on file failed !\n");
4717 if (!NT_STATUS_IS_OK(cli_close(cli1
, fnum2
))) {
4718 printf("close - 4 failed (%s)\n", cli_errstr(cli1
));
4724 status
= cli_rename(cli1
, fname
, fname1
);
4725 if (!NT_STATUS_IS_OK(status
)) {
4726 printf("Third rename failed (SHARE_NONE) - this should have succeeded - %s\n", nt_errstr(status
));
4729 printf("Third rename succeeded (SHARE_NONE)\n");
4732 status
= cli_close(cli1
, fnum1
);
4733 if (!NT_STATUS_IS_OK(status
)) {
4734 printf("close - 3 failed (%s)\n", nt_errstr(status
));
4738 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4739 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4743 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4744 FILE_ATTRIBUTE_NORMAL
,
4745 FILE_SHARE_READ
| FILE_SHARE_WRITE
,
4746 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4747 if (!NT_STATUS_IS_OK(status
)) {
4748 printf("Fourth open failed - %s\n", nt_errstr(status
));
4752 status
= cli_rename(cli1
, fname
, fname1
);
4753 if (!NT_STATUS_IS_OK(status
)) {
4754 printf("Fourth rename failed (SHARE_READ | SHARE_WRITE) (this is correct) - %s\n", nt_errstr(status
));
4756 printf("Fourth rename succeeded (SHARE_READ | SHARE_WRITE) - this should have failed !\n");
4760 status
= cli_close(cli1
, fnum1
);
4761 if (!NT_STATUS_IS_OK(status
)) {
4762 printf("close - 4 failed (%s)\n", nt_errstr(status
));
4766 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4767 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4771 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_READ_ACCESS
,
4772 FILE_ATTRIBUTE_NORMAL
,
4773 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
4774 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
4775 if (!NT_STATUS_IS_OK(status
)) {
4776 printf("Fifth open failed - %s\n", nt_errstr(status
));
4780 status
= cli_rename(cli1
, fname
, fname1
);
4781 if (!NT_STATUS_IS_OK(status
)) {
4782 printf("Fifth rename failed (SHARE_READ | SHARE_WRITE | SHARE_DELETE) - this should have succeeded - %s ! \n", nt_errstr(status
));
4785 printf("Fifth rename succeeded (SHARE_READ | SHARE_WRITE | SHARE_DELETE) (this is correct) - %s\n", nt_errstr(status
));
4789 * Now check if the first name still exists ...
4792 /* if (!NT_STATUS_OP(cli_ntcreate(cli1, fname, 0, GENERIC_READ_ACCESS, FILE_ATTRIBUTE_NORMAL,
4793 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, FILE_OVERWRITE_IF, 0, 0, &fnum2))) {
4794 printf("Opening original file after rename of open file fails: %s\n",
4798 printf("Opening original file after rename of open file works ...\n");
4799 (void)cli_close(cli1, fnum2);
4803 status
= cli_close(cli1
, fnum1
);
4804 if (!NT_STATUS_IS_OK(status
)) {
4805 printf("close - 5 failed (%s)\n", nt_errstr(status
));
4809 /* Check that the renamed file has FILE_ATTRIBUTE_ARCHIVE. */
4810 status
= cli_getatr(cli1
, fname1
, &attr
, NULL
, NULL
);
4811 if (!NT_STATUS_IS_OK(status
)) {
4812 printf("getatr on file %s failed - %s ! \n",
4813 fname1
, nt_errstr(status
));
4816 if (attr
!= FILE_ATTRIBUTE_ARCHIVE
) {
4817 printf("Renamed file %s has wrong attr 0x%x "
4818 "(should be 0x%x)\n",
4821 (unsigned int)FILE_ATTRIBUTE_ARCHIVE
);
4824 printf("Renamed file %s has archive bit set\n", fname1
);
4828 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4829 cli_unlink(cli1
, fname1
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4831 if (!torture_close_connection(cli1
)) {
4838 static bool run_pipe_number(int dummy
)
4840 struct cli_state
*cli1
;
4841 const char *pipe_name
= "\\SPOOLSS";
4846 printf("starting pipenumber test\n");
4847 if (!torture_open_connection(&cli1
, 0)) {
4851 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
4853 status
= cli_ntcreate(cli1
, pipe_name
, 0, FILE_READ_DATA
,
4854 FILE_ATTRIBUTE_NORMAL
,
4855 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
4856 FILE_OPEN_IF
, 0, 0, &fnum
);
4857 if (!NT_STATUS_IS_OK(status
)) {
4858 printf("Open of pipe %s failed with error (%s)\n", pipe_name
, nt_errstr(status
));
4862 printf("\r%6d", num_pipes
);
4865 printf("pipe_number test - we can open %d %s pipes.\n", num_pipes
, pipe_name
);
4866 torture_close_connection(cli1
);
4871 Test open mode returns on read-only files.
4873 static bool run_opentest(int dummy
)
4875 static struct cli_state
*cli1
;
4876 static struct cli_state
*cli2
;
4877 const char *fname
= "\\readonly.file";
4878 uint16_t fnum1
, fnum2
;
4881 bool correct
= True
;
4885 printf("starting open test\n");
4887 if (!torture_open_connection(&cli1
, 0)) {
4891 cli_setatr(cli1
, fname
, 0, 0);
4892 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4894 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
4896 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum1
);
4897 if (!NT_STATUS_IS_OK(status
)) {
4898 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
4902 status
= cli_close(cli1
, fnum1
);
4903 if (!NT_STATUS_IS_OK(status
)) {
4904 printf("close2 failed (%s)\n", nt_errstr(status
));
4908 status
= cli_setatr(cli1
, fname
, FILE_ATTRIBUTE_READONLY
, 0);
4909 if (!NT_STATUS_IS_OK(status
)) {
4910 printf("cli_setatr failed (%s)\n", nt_errstr(status
));
4914 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_WRITE
, &fnum1
);
4915 if (!NT_STATUS_IS_OK(status
)) {
4916 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
4920 /* This will fail - but the error should be ERRnoaccess, not ERRbadshare. */
4921 status
= cli_openx(cli1
, fname
, O_RDWR
, DENY_ALL
, &fnum2
);
4923 if (check_error(__LINE__
, status
, ERRDOS
, ERRnoaccess
,
4924 NT_STATUS_ACCESS_DENIED
)) {
4925 printf("correct error code ERRDOS/ERRnoaccess returned\n");
4928 printf("finished open test 1\n");
4930 cli_close(cli1
, fnum1
);
4932 /* Now try not readonly and ensure ERRbadshare is returned. */
4934 cli_setatr(cli1
, fname
, 0, 0);
4936 status
= cli_openx(cli1
, fname
, O_RDONLY
, DENY_WRITE
, &fnum1
);
4937 if (!NT_STATUS_IS_OK(status
)) {
4938 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
4942 /* This will fail - but the error should be ERRshare. */
4943 status
= cli_openx(cli1
, fname
, O_RDWR
, DENY_ALL
, &fnum2
);
4945 if (check_error(__LINE__
, status
, ERRDOS
, ERRbadshare
,
4946 NT_STATUS_SHARING_VIOLATION
)) {
4947 printf("correct error code ERRDOS/ERRbadshare returned\n");
4950 status
= cli_close(cli1
, fnum1
);
4951 if (!NT_STATUS_IS_OK(status
)) {
4952 printf("close2 failed (%s)\n", nt_errstr(status
));
4956 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
4958 printf("finished open test 2\n");
4960 /* Test truncate open disposition on file opened for read. */
4961 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum1
);
4962 if (!NT_STATUS_IS_OK(status
)) {
4963 printf("(3) open (1) of %s failed (%s)\n", fname
, nt_errstr(status
));
4967 /* write 20 bytes. */
4969 memset(buf
, '\0', 20);
4971 status
= cli_writeall(cli1
, fnum1
, 0, (uint8_t *)buf
, 0, 20, NULL
);
4972 if (!NT_STATUS_IS_OK(status
)) {
4973 printf("write failed (%s)\n", nt_errstr(status
));
4977 status
= cli_close(cli1
, fnum1
);
4978 if (!NT_STATUS_IS_OK(status
)) {
4979 printf("(3) close1 failed (%s)\n", nt_errstr(status
));
4983 /* Ensure size == 20. */
4984 status
= cli_getatr(cli1
, fname
, NULL
, &fsize
, NULL
);
4985 if (!NT_STATUS_IS_OK(status
)) {
4986 printf("(3) getatr failed (%s)\n", nt_errstr(status
));
4991 printf("(3) file size != 20\n");
4995 /* Now test if we can truncate a file opened for readonly. */
4996 status
= cli_openx(cli1
, fname
, O_RDONLY
|O_TRUNC
, DENY_NONE
, &fnum1
);
4997 if (!NT_STATUS_IS_OK(status
)) {
4998 printf("(3) open (2) of %s failed (%s)\n", fname
, nt_errstr(status
));
5002 status
= cli_close(cli1
, fnum1
);
5003 if (!NT_STATUS_IS_OK(status
)) {
5004 printf("close2 failed (%s)\n", nt_errstr(status
));
5008 /* Ensure size == 0. */
5009 status
= cli_getatr(cli1
, fname
, NULL
, &fsize
, NULL
);
5010 if (!NT_STATUS_IS_OK(status
)) {
5011 printf("(3) getatr failed (%s)\n", nt_errstr(status
));
5016 printf("(3) file size != 0\n");
5019 printf("finished open test 3\n");
5021 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5023 printf("Do ctemp tests\n");
5024 status
= cli_ctemp(cli1
, talloc_tos(), "\\", &fnum1
, &tmp_path
);
5025 if (!NT_STATUS_IS_OK(status
)) {
5026 printf("ctemp failed (%s)\n", nt_errstr(status
));
5030 printf("ctemp gave path %s\n", tmp_path
);
5031 status
= cli_close(cli1
, fnum1
);
5032 if (!NT_STATUS_IS_OK(status
)) {
5033 printf("close of temp failed (%s)\n", nt_errstr(status
));
5036 status
= cli_unlink(cli1
, tmp_path
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5037 if (!NT_STATUS_IS_OK(status
)) {
5038 printf("unlink of temp failed (%s)\n", nt_errstr(status
));
5041 /* Test the non-io opens... */
5043 if (!torture_open_connection(&cli2
, 1)) {
5047 cli_setatr(cli2
, fname
, 0, 0);
5048 cli_unlink(cli2
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5050 smbXcli_conn_set_sockopt(cli2
->conn
, sockops
);
5052 printf("TEST #1 testing 2 non-io opens (no delete)\n");
5053 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_ATTRIBUTES
,
5054 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5055 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5056 if (!NT_STATUS_IS_OK(status
)) {
5057 printf("TEST #1 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5061 status
= cli_ntcreate(cli2
, fname
, 0, FILE_READ_ATTRIBUTES
,
5062 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5063 FILE_OPEN_IF
, 0, 0, &fnum2
);
5064 if (!NT_STATUS_IS_OK(status
)) {
5065 printf("TEST #1 open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5069 status
= cli_close(cli1
, fnum1
);
5070 if (!NT_STATUS_IS_OK(status
)) {
5071 printf("TEST #1 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5075 status
= cli_close(cli2
, fnum2
);
5076 if (!NT_STATUS_IS_OK(status
)) {
5077 printf("TEST #1 close 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5081 printf("non-io open test #1 passed.\n");
5083 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5085 printf("TEST #2 testing 2 non-io opens (first with delete)\n");
5087 status
= cli_ntcreate(cli1
, fname
, 0,
5088 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5089 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5090 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5091 if (!NT_STATUS_IS_OK(status
)) {
5092 printf("TEST #2 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5096 status
= cli_ntcreate(cli2
, fname
, 0, FILE_READ_ATTRIBUTES
,
5097 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5098 FILE_OPEN_IF
, 0, 0, &fnum2
);
5099 if (!NT_STATUS_IS_OK(status
)) {
5100 printf("TEST #2 open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5104 status
= cli_close(cli1
, fnum1
);
5105 if (!NT_STATUS_IS_OK(status
)) {
5106 printf("TEST #2 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5110 status
= cli_close(cli2
, fnum2
);
5111 if (!NT_STATUS_IS_OK(status
)) {
5112 printf("TEST #2 close 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5116 printf("non-io open test #2 passed.\n");
5118 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5120 printf("TEST #3 testing 2 non-io opens (second with delete)\n");
5122 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_ATTRIBUTES
,
5123 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5124 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5125 if (!NT_STATUS_IS_OK(status
)) {
5126 printf("TEST #3 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5130 status
= cli_ntcreate(cli2
, fname
, 0,
5131 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5132 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5133 FILE_OPEN_IF
, 0, 0, &fnum2
);
5134 if (!NT_STATUS_IS_OK(status
)) {
5135 printf("TEST #3 open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5139 status
= cli_close(cli1
, fnum1
);
5140 if (!NT_STATUS_IS_OK(status
)) {
5141 printf("TEST #3 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5145 status
= cli_close(cli2
, fnum2
);
5146 if (!NT_STATUS_IS_OK(status
)) {
5147 printf("TEST #3 close 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5151 printf("non-io open test #3 passed.\n");
5153 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5155 printf("TEST #4 testing 2 non-io opens (both with delete)\n");
5157 status
= cli_ntcreate(cli1
, fname
, 0,
5158 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5159 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5160 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5161 if (!NT_STATUS_IS_OK(status
)) {
5162 printf("TEST #4 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5166 status
= cli_ntcreate(cli2
, fname
, 0,
5167 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5168 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5169 FILE_OPEN_IF
, 0, 0, &fnum2
);
5170 if (NT_STATUS_IS_OK(status
)) {
5171 printf("TEST #4 open 2 of %s SUCCEEDED - should have failed (%s)\n", fname
, nt_errstr(status
));
5175 printf("TEST #4 open 2 of %s gave %s (correct error should be %s)\n", fname
, nt_errstr(status
), "sharing violation");
5177 status
= cli_close(cli1
, fnum1
);
5178 if (!NT_STATUS_IS_OK(status
)) {
5179 printf("TEST #4 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5183 printf("non-io open test #4 passed.\n");
5185 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5187 printf("TEST #5 testing 2 non-io opens (both with delete - both with file share delete)\n");
5189 status
= cli_ntcreate(cli1
, fname
, 0,
5190 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5191 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_DELETE
,
5192 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5193 if (!NT_STATUS_IS_OK(status
)) {
5194 printf("TEST #5 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5198 status
= cli_ntcreate(cli2
, fname
, 0,
5199 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5200 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_DELETE
,
5201 FILE_OPEN_IF
, 0, 0, &fnum2
);
5202 if (!NT_STATUS_IS_OK(status
)) {
5203 printf("TEST #5 open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5207 status
= cli_close(cli1
, fnum1
);
5208 if (!NT_STATUS_IS_OK(status
)) {
5209 printf("TEST #5 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5213 status
= cli_close(cli2
, fnum2
);
5214 if (!NT_STATUS_IS_OK(status
)) {
5215 printf("TEST #5 close 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5219 printf("non-io open test #5 passed.\n");
5221 printf("TEST #6 testing 1 non-io open, one io open\n");
5223 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5225 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_DATA
,
5226 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5227 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5228 if (!NT_STATUS_IS_OK(status
)) {
5229 printf("TEST #6 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5233 status
= cli_ntcreate(cli2
, fname
, 0, FILE_READ_ATTRIBUTES
,
5234 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_READ
,
5235 FILE_OPEN_IF
, 0, 0, &fnum2
);
5236 if (!NT_STATUS_IS_OK(status
)) {
5237 printf("TEST #6 open 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5241 status
= cli_close(cli1
, fnum1
);
5242 if (!NT_STATUS_IS_OK(status
)) {
5243 printf("TEST #6 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5247 status
= cli_close(cli2
, fnum2
);
5248 if (!NT_STATUS_IS_OK(status
)) {
5249 printf("TEST #6 close 2 of %s failed (%s)\n", fname
, nt_errstr(status
));
5253 printf("non-io open test #6 passed.\n");
5255 printf("TEST #7 testing 1 non-io open, one io open with delete\n");
5257 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5259 status
= cli_ntcreate(cli1
, fname
, 0, FILE_READ_DATA
,
5260 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_NONE
,
5261 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5262 if (!NT_STATUS_IS_OK(status
)) {
5263 printf("TEST #7 open 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5267 status
= cli_ntcreate(cli2
, fname
, 0,
5268 DELETE_ACCESS
|FILE_READ_ATTRIBUTES
,
5269 FILE_ATTRIBUTE_NORMAL
,
5270 FILE_SHARE_READ
|FILE_SHARE_DELETE
,
5271 FILE_OPEN_IF
, 0, 0, &fnum2
);
5272 if (NT_STATUS_IS_OK(status
)) {
5273 printf("TEST #7 open 2 of %s SUCCEEDED - should have failed (%s)\n", fname
, nt_errstr(status
));
5277 printf("TEST #7 open 2 of %s gave %s (correct error should be %s)\n", fname
, nt_errstr(status
), "sharing violation");
5279 status
= cli_close(cli1
, fnum1
);
5280 if (!NT_STATUS_IS_OK(status
)) {
5281 printf("TEST #7 close 1 of %s failed (%s)\n", fname
, nt_errstr(status
));
5285 printf("non-io open test #7 passed.\n");
5287 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5289 printf("TEST #8 testing open without WRITE_ATTRIBUTES, updating close write time.\n");
5290 status
= cli_ntcreate(cli1
, fname
, 0, FILE_WRITE_DATA
, FILE_ATTRIBUTE_NORMAL
,
5291 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
5292 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5293 if (!NT_STATUS_IS_OK(status
)) {
5294 printf("TEST #8 open of %s failed (%s)\n", fname
, nt_errstr(status
));
5299 /* Write to ensure we have to update the file time. */
5300 status
= cli_writeall(cli1
, fnum1
, 0, (const uint8_t *)"TEST DATA\n", 0, 10,
5302 if (!NT_STATUS_IS_OK(status
)) {
5303 printf("TEST #8 cli_write failed: %s\n", nt_errstr(status
));
5308 status
= cli_close(cli1
, fnum1
);
5309 if (!NT_STATUS_IS_OK(status
)) {
5310 printf("TEST #8 close of %s failed (%s)\n", fname
, nt_errstr(status
));
5316 if (!torture_close_connection(cli1
)) {
5319 if (!torture_close_connection(cli2
)) {
5326 NTSTATUS
torture_setup_unix_extensions(struct cli_state
*cli
)
5328 uint16 major
, minor
;
5329 uint32 caplow
, caphigh
;
5332 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
5333 printf("Server doesn't support UNIX CIFS extensions.\n");
5334 return NT_STATUS_NOT_SUPPORTED
;
5337 status
= cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
,
5339 if (!NT_STATUS_IS_OK(status
)) {
5340 printf("Server didn't return UNIX CIFS extensions: %s\n",
5345 status
= cli_set_unix_extensions_capabilities(cli
, major
, minor
,
5347 if (!NT_STATUS_IS_OK(status
)) {
5348 printf("Server doesn't support setting UNIX CIFS extensions: "
5349 "%s.\n", nt_errstr(status
));
5353 return NT_STATUS_OK
;
5357 Test POSIX open /mkdir calls.
5359 static bool run_simple_posix_open_test(int dummy
)
5361 static struct cli_state
*cli1
;
5362 const char *fname
= "posix:file";
5363 const char *hname
= "posix:hlink";
5364 const char *sname
= "posix:symlink";
5365 const char *dname
= "posix:dir";
5368 uint16_t fnum1
= (uint16_t)-1;
5369 SMB_STRUCT_STAT sbuf
;
5370 bool correct
= false;
5373 const char *fname_windows
= "windows_file";
5374 uint16_t fnum2
= (uint16_t)-1;
5376 printf("Starting simple POSIX open test\n");
5378 if (!torture_open_connection(&cli1
, 0)) {
5382 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
5384 status
= torture_setup_unix_extensions(cli1
);
5385 if (!NT_STATUS_IS_OK(status
)) {
5389 cli_setatr(cli1
, fname
, 0, 0);
5390 cli_posix_unlink(cli1
, fname
);
5391 cli_setatr(cli1
, dname
, 0, 0);
5392 cli_posix_rmdir(cli1
, dname
);
5393 cli_setatr(cli1
, hname
, 0, 0);
5394 cli_posix_unlink(cli1
, hname
);
5395 cli_setatr(cli1
, sname
, 0, 0);
5396 cli_posix_unlink(cli1
, sname
);
5397 cli_setatr(cli1
, fname_windows
, 0, 0);
5398 cli_posix_unlink(cli1
, fname_windows
);
5400 /* Create a directory. */
5401 status
= cli_posix_mkdir(cli1
, dname
, 0777);
5402 if (!NT_STATUS_IS_OK(status
)) {
5403 printf("POSIX mkdir of %s failed (%s)\n", dname
, nt_errstr(status
));
5407 status
= cli_posix_open(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
,
5409 if (!NT_STATUS_IS_OK(status
)) {
5410 printf("POSIX create of %s failed (%s)\n", fname
, nt_errstr(status
));
5414 /* Test ftruncate - set file size. */
5415 status
= cli_ftruncate(cli1
, fnum1
, 1000);
5416 if (!NT_STATUS_IS_OK(status
)) {
5417 printf("ftruncate failed (%s)\n", nt_errstr(status
));
5421 /* Ensure st_size == 1000 */
5422 status
= cli_posix_stat(cli1
, fname
, &sbuf
);
5423 if (!NT_STATUS_IS_OK(status
)) {
5424 printf("stat failed (%s)\n", nt_errstr(status
));
5428 if (sbuf
.st_ex_size
!= 1000) {
5429 printf("ftruncate - stat size (%u) != 1000\n", (unsigned int)sbuf
.st_ex_size
);
5433 /* Ensure st_mode == 0600 */
5434 if ((sbuf
.st_ex_mode
& 07777) != 0600) {
5435 printf("posix_open - bad permissions 0%o != 0600\n",
5436 (unsigned int)(sbuf
.st_ex_mode
& 07777));
5440 /* Test ftruncate - set file size back to zero. */
5441 status
= cli_ftruncate(cli1
, fnum1
, 0);
5442 if (!NT_STATUS_IS_OK(status
)) {
5443 printf("ftruncate failed (%s)\n", nt_errstr(status
));
5447 status
= cli_close(cli1
, fnum1
);
5448 if (!NT_STATUS_IS_OK(status
)) {
5449 printf("close failed (%s)\n", nt_errstr(status
));
5453 /* Now open the file again for read only. */
5454 status
= cli_posix_open(cli1
, fname
, O_RDONLY
, 0, &fnum1
);
5455 if (!NT_STATUS_IS_OK(status
)) {
5456 printf("POSIX open of %s failed (%s)\n", fname
, nt_errstr(status
));
5460 /* Now unlink while open. */
5461 status
= cli_posix_unlink(cli1
, fname
);
5462 if (!NT_STATUS_IS_OK(status
)) {
5463 printf("POSIX unlink of %s failed (%s)\n", fname
, nt_errstr(status
));
5467 status
= cli_close(cli1
, fnum1
);
5468 if (!NT_STATUS_IS_OK(status
)) {
5469 printf("close(2) failed (%s)\n", nt_errstr(status
));
5473 /* Ensure the file has gone. */
5474 status
= cli_posix_open(cli1
, fname
, O_RDONLY
, 0, &fnum1
);
5475 if (NT_STATUS_IS_OK(status
)) {
5476 printf("POSIX open of %s succeeded, should have been deleted.\n", fname
);
5480 /* Create again to test open with O_TRUNC. */
5481 status
= cli_posix_open(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, 0600, &fnum1
);
5482 if (!NT_STATUS_IS_OK(status
)) {
5483 printf("POSIX create of %s failed (%s)\n", fname
, nt_errstr(status
));
5487 /* Test ftruncate - set file size. */
5488 status
= cli_ftruncate(cli1
, fnum1
, 1000);
5489 if (!NT_STATUS_IS_OK(status
)) {
5490 printf("ftruncate failed (%s)\n", nt_errstr(status
));
5494 /* Ensure st_size == 1000 */
5495 status
= cli_posix_stat(cli1
, fname
, &sbuf
);
5496 if (!NT_STATUS_IS_OK(status
)) {
5497 printf("stat failed (%s)\n", nt_errstr(status
));
5501 if (sbuf
.st_ex_size
!= 1000) {
5502 printf("ftruncate - stat size (%u) != 1000\n", (unsigned int)sbuf
.st_ex_size
);
5506 status
= cli_close(cli1
, fnum1
);
5507 if (!NT_STATUS_IS_OK(status
)) {
5508 printf("close(2) failed (%s)\n", nt_errstr(status
));
5512 /* Re-open with O_TRUNC. */
5513 status
= cli_posix_open(cli1
, fname
, O_WRONLY
|O_TRUNC
, 0600, &fnum1
);
5514 if (!NT_STATUS_IS_OK(status
)) {
5515 printf("POSIX create of %s failed (%s)\n", fname
, nt_errstr(status
));
5519 /* Ensure st_size == 0 */
5520 status
= cli_posix_stat(cli1
, fname
, &sbuf
);
5521 if (!NT_STATUS_IS_OK(status
)) {
5522 printf("stat failed (%s)\n", nt_errstr(status
));
5526 if (sbuf
.st_ex_size
!= 0) {
5527 printf("O_TRUNC - stat size (%u) != 0\n", (unsigned int)sbuf
.st_ex_size
);
5531 status
= cli_close(cli1
, fnum1
);
5532 if (!NT_STATUS_IS_OK(status
)) {
5533 printf("close failed (%s)\n", nt_errstr(status
));
5537 status
= cli_posix_unlink(cli1
, fname
);
5538 if (!NT_STATUS_IS_OK(status
)) {
5539 printf("POSIX unlink of %s failed (%s)\n", fname
, nt_errstr(status
));
5543 status
= cli_posix_open(cli1
, dname
, O_RDONLY
, 0, &fnum1
);
5544 if (!NT_STATUS_IS_OK(status
)) {
5545 printf("POSIX open directory O_RDONLY of %s failed (%s)\n",
5546 dname
, nt_errstr(status
));
5550 cli_close(cli1
, fnum1
);
5552 /* What happens when we try and POSIX open a directory for write ? */
5553 status
= cli_posix_open(cli1
, dname
, O_RDWR
, 0, &fnum1
);
5554 if (NT_STATUS_IS_OK(status
)) {
5555 printf("POSIX open of directory %s succeeded, should have failed.\n", fname
);
5558 if (!check_both_error(__LINE__
, status
, ERRDOS
, EISDIR
,
5559 NT_STATUS_FILE_IS_A_DIRECTORY
)) {
5564 /* Create the file. */
5565 status
= cli_posix_open(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
,
5567 if (!NT_STATUS_IS_OK(status
)) {
5568 printf("POSIX create of %s failed (%s)\n", fname
, nt_errstr(status
));
5572 /* Write some data into it. */
5573 status
= cli_writeall(cli1
, fnum1
, 0, (const uint8_t *)"TEST DATA\n", 0, 10,
5575 if (!NT_STATUS_IS_OK(status
)) {
5576 printf("cli_write failed: %s\n", nt_errstr(status
));
5580 cli_close(cli1
, fnum1
);
5582 /* Now create a hardlink. */
5583 status
= cli_posix_hardlink(cli1
, fname
, hname
);
5584 if (!NT_STATUS_IS_OK(status
)) {
5585 printf("POSIX hardlink of %s failed (%s)\n", hname
, nt_errstr(status
));
5589 /* Now create a symlink. */
5590 status
= cli_posix_symlink(cli1
, fname
, sname
);
5591 if (!NT_STATUS_IS_OK(status
)) {
5592 printf("POSIX symlink of %s failed (%s)\n", sname
, nt_errstr(status
));
5596 /* Open the hardlink for read. */
5597 status
= cli_posix_open(cli1
, hname
, O_RDONLY
, 0, &fnum1
);
5598 if (!NT_STATUS_IS_OK(status
)) {
5599 printf("POSIX open of %s failed (%s)\n", hname
, nt_errstr(status
));
5603 status
= cli_read(cli1
, fnum1
, buf
, 0, 10, &nread
);
5604 if (!NT_STATUS_IS_OK(status
)) {
5605 printf("POSIX read of %s failed (%s)\n", hname
,
5608 } else if (nread
!= 10) {
5609 printf("POSIX read of %s failed. Received %ld, expected %d\n",
5610 hname
, (unsigned long)nread
, 10);
5614 if (memcmp(buf
, "TEST DATA\n", 10)) {
5615 printf("invalid data read from hardlink\n");
5619 /* Do a POSIX lock/unlock. */
5620 status
= cli_posix_lock(cli1
, fnum1
, 0, 100, true, READ_LOCK
);
5621 if (!NT_STATUS_IS_OK(status
)) {
5622 printf("POSIX lock failed %s\n", nt_errstr(status
));
5626 /* Punch a hole in the locked area. */
5627 status
= cli_posix_unlock(cli1
, fnum1
, 10, 80);
5628 if (!NT_STATUS_IS_OK(status
)) {
5629 printf("POSIX unlock failed %s\n", nt_errstr(status
));
5633 cli_close(cli1
, fnum1
);
5635 /* Open the symlink for read - this should fail. A POSIX
5636 client should not be doing opens on a symlink. */
5637 status
= cli_posix_open(cli1
, sname
, O_RDONLY
, 0, &fnum1
);
5638 if (NT_STATUS_IS_OK(status
)) {
5639 printf("POSIX open of %s succeeded (should have failed)\n", sname
);
5642 if (!check_both_error(__LINE__
, status
, ERRDOS
, ERRbadpath
,
5643 NT_STATUS_OBJECT_PATH_NOT_FOUND
)) {
5644 printf("POSIX open of %s should have failed "
5645 "with NT_STATUS_OBJECT_PATH_NOT_FOUND, "
5646 "failed with %s instead.\n",
5647 sname
, nt_errstr(status
));
5652 status
= cli_posix_readlink(cli1
, sname
, namebuf
, sizeof(namebuf
));
5653 if (!NT_STATUS_IS_OK(status
)) {
5654 printf("POSIX readlink on %s failed (%s)\n", sname
, nt_errstr(status
));
5658 if (strcmp(namebuf
, fname
) != 0) {
5659 printf("POSIX readlink on %s failed to match name %s (read %s)\n",
5660 sname
, fname
, namebuf
);
5664 status
= cli_posix_rmdir(cli1
, dname
);
5665 if (!NT_STATUS_IS_OK(status
)) {
5666 printf("POSIX rmdir failed (%s)\n", nt_errstr(status
));
5670 /* Check directory opens with a specific permission. */
5671 status
= cli_posix_mkdir(cli1
, dname
, 0700);
5672 if (!NT_STATUS_IS_OK(status
)) {
5673 printf("POSIX mkdir of %s failed (%s)\n", dname
, nt_errstr(status
));
5677 /* Ensure st_mode == 0700 */
5678 status
= cli_posix_stat(cli1
, dname
, &sbuf
);
5679 if (!NT_STATUS_IS_OK(status
)) {
5680 printf("stat failed (%s)\n", nt_errstr(status
));
5684 if ((sbuf
.st_ex_mode
& 07777) != 0700) {
5685 printf("posix_mkdir - bad permissions 0%o != 0700\n",
5686 (unsigned int)(sbuf
.st_ex_mode
& 07777));
5691 * Now create a Windows file, and attempt a POSIX unlink.
5692 * This should fail with a sharing violation but due to:
5694 * [Bug 9571] Unlink after open causes smbd to panic
5696 * ensure we've fixed the lock ordering violation.
5699 status
= cli_ntcreate(cli1
, fname_windows
, 0,
5700 FILE_READ_DATA
|FILE_WRITE_DATA
, 0,
5701 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
5704 if (!NT_STATUS_IS_OK(status
)) {
5705 printf("Windows create of %s failed (%s)\n", fname_windows
,
5710 /* Now try posix_unlink. */
5711 status
= cli_posix_unlink(cli1
, fname_windows
);
5712 if (!NT_STATUS_EQUAL(status
, NT_STATUS_SHARING_VIOLATION
)) {
5713 printf("POSIX unlink of %s should fail "
5714 "with NT_STATUS_SHARING_VIOLATION "
5715 "got %s instead !\n",
5721 cli_close(cli1
, fnum2
);
5723 printf("Simple POSIX open test passed\n");
5728 if (fnum1
!= (uint16_t)-1) {
5729 cli_close(cli1
, fnum1
);
5730 fnum1
= (uint16_t)-1;
5733 if (fnum2
!= (uint16_t)-1) {
5734 cli_close(cli1
, fnum2
);
5735 fnum2
= (uint16_t)-1;
5738 cli_setatr(cli1
, sname
, 0, 0);
5739 cli_posix_unlink(cli1
, sname
);
5740 cli_setatr(cli1
, hname
, 0, 0);
5741 cli_posix_unlink(cli1
, hname
);
5742 cli_setatr(cli1
, fname
, 0, 0);
5743 cli_posix_unlink(cli1
, fname
);
5744 cli_setatr(cli1
, dname
, 0, 0);
5745 cli_posix_rmdir(cli1
, dname
);
5746 cli_setatr(cli1
, fname_windows
, 0, 0);
5747 cli_posix_unlink(cli1
, fname_windows
);
5749 if (!torture_close_connection(cli1
)) {
5757 static uint32 open_attrs_table
[] = {
5758 FILE_ATTRIBUTE_NORMAL
,
5759 FILE_ATTRIBUTE_ARCHIVE
,
5760 FILE_ATTRIBUTE_READONLY
,
5761 FILE_ATTRIBUTE_HIDDEN
,
5762 FILE_ATTRIBUTE_SYSTEM
,
5764 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
,
5765 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
,
5766 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
,
5767 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
,
5768 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
,
5769 FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
|FILE_ATTRIBUTE_SYSTEM
,
5771 FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
,
5772 FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
,
5773 FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
|FILE_ATTRIBUTE_SYSTEM
,
5774 FILE_ATTRIBUTE_HIDDEN
,FILE_ATTRIBUTE_SYSTEM
,
5777 struct trunc_open_results
{
5784 static struct trunc_open_results attr_results
[] = {
5785 { 0, FILE_ATTRIBUTE_NORMAL
, FILE_ATTRIBUTE_NORMAL
, FILE_ATTRIBUTE_ARCHIVE
},
5786 { 1, FILE_ATTRIBUTE_NORMAL
, FILE_ATTRIBUTE_ARCHIVE
, FILE_ATTRIBUTE_ARCHIVE
},
5787 { 2, FILE_ATTRIBUTE_NORMAL
, FILE_ATTRIBUTE_READONLY
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
},
5788 { 16, FILE_ATTRIBUTE_ARCHIVE
, FILE_ATTRIBUTE_NORMAL
, FILE_ATTRIBUTE_ARCHIVE
},
5789 { 17, FILE_ATTRIBUTE_ARCHIVE
, FILE_ATTRIBUTE_ARCHIVE
, FILE_ATTRIBUTE_ARCHIVE
},
5790 { 18, FILE_ATTRIBUTE_ARCHIVE
, FILE_ATTRIBUTE_READONLY
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
},
5791 { 51, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5792 { 54, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5793 { 56, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
},
5794 { 68, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5795 { 71, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5796 { 73, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
},
5797 { 99, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_HIDDEN
,FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5798 { 102, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5799 { 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
},
5800 { 116, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5801 { 119, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5802 { 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
},
5803 { 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
},
5804 { 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
},
5805 { 227, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5806 { 230, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_HIDDEN
},
5807 { 232, FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_HIDDEN
},
5808 { 244, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5809 { 247, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_SYSTEM
},
5810 { 249, FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
, FILE_ATTRIBUTE_ARCHIVE
|FILE_ATTRIBUTE_READONLY
|FILE_ATTRIBUTE_SYSTEM
}
5813 static bool run_openattrtest(int dummy
)
5815 static struct cli_state
*cli1
;
5816 const char *fname
= "\\openattr.file";
5818 bool correct
= True
;
5820 unsigned int i
, j
, k
, l
;
5823 printf("starting open attr test\n");
5825 if (!torture_open_connection(&cli1
, 0)) {
5829 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
5831 for (k
= 0, i
= 0; i
< sizeof(open_attrs_table
)/sizeof(uint32
); i
++) {
5832 cli_setatr(cli1
, fname
, 0, 0);
5833 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5835 status
= cli_ntcreate(cli1
, fname
, 0, FILE_WRITE_DATA
,
5836 open_attrs_table
[i
], FILE_SHARE_NONE
,
5837 FILE_OVERWRITE_IF
, 0, 0, &fnum1
);
5838 if (!NT_STATUS_IS_OK(status
)) {
5839 printf("open %d (1) of %s failed (%s)\n", i
, fname
, nt_errstr(status
));
5843 status
= cli_close(cli1
, fnum1
);
5844 if (!NT_STATUS_IS_OK(status
)) {
5845 printf("close %d (1) of %s failed (%s)\n", i
, fname
, nt_errstr(status
));
5849 for (j
= 0; j
< sizeof(open_attrs_table
)/sizeof(uint32
); j
++) {
5850 status
= cli_ntcreate(cli1
, fname
, 0,
5851 FILE_READ_DATA
|FILE_WRITE_DATA
,
5852 open_attrs_table
[j
],
5853 FILE_SHARE_NONE
, FILE_OVERWRITE
,
5855 if (!NT_STATUS_IS_OK(status
)) {
5856 for (l
= 0; l
< sizeof(attr_results
)/sizeof(struct trunc_open_results
); l
++) {
5857 if (attr_results
[l
].num
== k
) {
5858 printf("[%d] trunc open 0x%x -> 0x%x of %s failed - should have succeeded !(0x%x:%s)\n",
5859 k
, open_attrs_table
[i
],
5860 open_attrs_table
[j
],
5861 fname
, NT_STATUS_V(status
), nt_errstr(status
));
5866 if (!NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
5867 printf("[%d] trunc open 0x%x -> 0x%x failed with wrong error code %s\n",
5868 k
, open_attrs_table
[i
], open_attrs_table
[j
],
5873 printf("[%d] trunc open 0x%x -> 0x%x failed\n", k
, open_attrs_table
[i
], open_attrs_table
[j
]);
5879 status
= cli_close(cli1
, fnum1
);
5880 if (!NT_STATUS_IS_OK(status
)) {
5881 printf("close %d (2) of %s failed (%s)\n", j
, fname
, nt_errstr(status
));
5885 status
= cli_getatr(cli1
, fname
, &attr
, NULL
, NULL
);
5886 if (!NT_STATUS_IS_OK(status
)) {
5887 printf("getatr(2) failed (%s)\n", nt_errstr(status
));
5892 printf("[%d] getatr check [0x%x] trunc [0x%x] got attr 0x%x\n",
5893 k
, open_attrs_table
[i
], open_attrs_table
[j
], attr
);
5896 for (l
= 0; l
< sizeof(attr_results
)/sizeof(struct trunc_open_results
); l
++) {
5897 if (attr_results
[l
].num
== k
) {
5898 if (attr
!= attr_results
[l
].result_attr
||
5899 open_attrs_table
[i
] != attr_results
[l
].init_attr
||
5900 open_attrs_table
[j
] != attr_results
[l
].trunc_attr
) {
5901 printf("getatr check failed. [0x%x] trunc [0x%x] got attr 0x%x, should be 0x%x\n",
5902 open_attrs_table
[i
],
5903 open_attrs_table
[j
],
5905 attr_results
[l
].result_attr
);
5915 cli_setatr(cli1
, fname
, 0, 0);
5916 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5918 printf("open attr test %s.\n", correct
? "passed" : "failed");
5920 if (!torture_close_connection(cli1
)) {
5926 static NTSTATUS
list_fn(const char *mnt
, struct file_info
*finfo
,
5927 const char *name
, void *state
)
5929 int *matched
= (int *)state
;
5930 if (matched
!= NULL
) {
5933 return NT_STATUS_OK
;
5937 test directory listing speed
5939 static bool run_dirtest(int dummy
)
5942 static struct cli_state
*cli
;
5944 struct timeval core_start
;
5945 bool correct
= True
;
5948 printf("starting directory test\n");
5950 if (!torture_open_connection(&cli
, 0)) {
5954 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
5957 for (i
=0;i
<torture_numops
;i
++) {
5959 slprintf(fname
, sizeof(fname
), "\\%x", (int)random());
5960 if (!NT_STATUS_IS_OK(cli_openx(cli
, fname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum
))) {
5961 fprintf(stderr
,"Failed to open %s\n", fname
);
5964 cli_close(cli
, fnum
);
5967 core_start
= timeval_current();
5970 cli_list(cli
, "a*.*", 0, list_fn
, &matched
);
5971 printf("Matched %d\n", matched
);
5974 cli_list(cli
, "b*.*", 0, list_fn
, &matched
);
5975 printf("Matched %d\n", matched
);
5978 cli_list(cli
, "xyzabc", 0, list_fn
, &matched
);
5979 printf("Matched %d\n", matched
);
5981 printf("dirtest core %g seconds\n", timeval_elapsed(&core_start
));
5984 for (i
=0;i
<torture_numops
;i
++) {
5986 slprintf(fname
, sizeof(fname
), "\\%x", (int)random());
5987 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
5990 if (!torture_close_connection(cli
)) {
5994 printf("finished dirtest\n");
5999 static NTSTATUS
del_fn(const char *mnt
, struct file_info
*finfo
, const char *mask
,
6002 struct cli_state
*pcli
= (struct cli_state
*)state
;
6004 slprintf(fname
, sizeof(fname
), "\\LISTDIR\\%s", finfo
->name
);
6006 if (strcmp(finfo
->name
, ".") == 0 || strcmp(finfo
->name
, "..") == 0)
6007 return NT_STATUS_OK
;
6009 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
6010 if (!NT_STATUS_IS_OK(cli_rmdir(pcli
, fname
)))
6011 printf("del_fn: failed to rmdir %s\n,", fname
);
6013 if (!NT_STATUS_IS_OK(cli_unlink(pcli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
)))
6014 printf("del_fn: failed to unlink %s\n,", fname
);
6016 return NT_STATUS_OK
;
6021 sees what IOCTLs are supported
6023 bool torture_ioctl_test(int dummy
)
6025 static struct cli_state
*cli
;
6026 uint16_t device
, function
;
6028 const char *fname
= "\\ioctl.dat";
6032 if (!torture_open_connection(&cli
, 0)) {
6036 printf("starting ioctl test\n");
6038 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
6040 status
= cli_openx(cli
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum
);
6041 if (!NT_STATUS_IS_OK(status
)) {
6042 printf("open of %s failed (%s)\n", fname
, nt_errstr(status
));
6046 status
= cli_raw_ioctl(cli
, fnum
, 0x2d0000 | (0x0420<<2), &blob
);
6047 printf("ioctl device info: %s\n", nt_errstr(status
));
6049 status
= cli_raw_ioctl(cli
, fnum
, IOCTL_QUERY_JOB_INFO
, &blob
);
6050 printf("ioctl job info: %s\n", nt_errstr(status
));
6052 for (device
=0;device
<0x100;device
++) {
6053 printf("ioctl test with device = 0x%x\n", device
);
6054 for (function
=0;function
<0x100;function
++) {
6055 uint32 code
= (device
<<16) | function
;
6057 status
= cli_raw_ioctl(cli
, fnum
, code
, &blob
);
6059 if (NT_STATUS_IS_OK(status
)) {
6060 printf("ioctl 0x%x OK : %d bytes\n", (int)code
,
6062 data_blob_free(&blob
);
6067 if (!torture_close_connection(cli
)) {
6076 tries varients of chkpath
6078 bool torture_chkpath_test(int dummy
)
6080 static struct cli_state
*cli
;
6085 if (!torture_open_connection(&cli
, 0)) {
6089 printf("starting chkpath test\n");
6091 /* cleanup from an old run */
6092 cli_rmdir(cli
, "\\chkpath.dir\\dir2");
6093 cli_unlink(cli
, "\\chkpath.dir\\*", FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
6094 cli_rmdir(cli
, "\\chkpath.dir");
6096 status
= cli_mkdir(cli
, "\\chkpath.dir");
6097 if (!NT_STATUS_IS_OK(status
)) {
6098 printf("mkdir1 failed : %s\n", nt_errstr(status
));
6102 status
= cli_mkdir(cli
, "\\chkpath.dir\\dir2");
6103 if (!NT_STATUS_IS_OK(status
)) {
6104 printf("mkdir2 failed : %s\n", nt_errstr(status
));
6108 status
= cli_openx(cli
, "\\chkpath.dir\\foo.txt", O_RDWR
|O_CREAT
|O_EXCL
,
6110 if (!NT_STATUS_IS_OK(status
)) {
6111 printf("open1 failed (%s)\n", nt_errstr(status
));
6114 cli_close(cli
, fnum
);
6116 status
= cli_chkpath(cli
, "\\chkpath.dir");
6117 if (!NT_STATUS_IS_OK(status
)) {
6118 printf("chkpath1 failed: %s\n", nt_errstr(status
));
6122 status
= cli_chkpath(cli
, "\\chkpath.dir\\dir2");
6123 if (!NT_STATUS_IS_OK(status
)) {
6124 printf("chkpath2 failed: %s\n", nt_errstr(status
));
6128 status
= cli_chkpath(cli
, "\\chkpath.dir\\foo.txt");
6129 if (!NT_STATUS_IS_OK(status
)) {
6130 ret
= check_error(__LINE__
, status
, ERRDOS
, ERRbadpath
,
6131 NT_STATUS_NOT_A_DIRECTORY
);
6133 printf("* chkpath on a file should fail\n");
6137 status
= cli_chkpath(cli
, "\\chkpath.dir\\bar.txt");
6138 if (!NT_STATUS_IS_OK(status
)) {
6139 ret
= check_error(__LINE__
, status
, ERRDOS
, ERRbadfile
,
6140 NT_STATUS_OBJECT_NAME_NOT_FOUND
);
6142 printf("* chkpath on a non existent file should fail\n");
6146 status
= cli_chkpath(cli
, "\\chkpath.dir\\dirxx\\bar.txt");
6147 if (!NT_STATUS_IS_OK(status
)) {
6148 ret
= check_error(__LINE__
, status
, ERRDOS
, ERRbadpath
,
6149 NT_STATUS_OBJECT_PATH_NOT_FOUND
);
6151 printf("* chkpath on a non existent component should fail\n");
6155 cli_rmdir(cli
, "\\chkpath.dir\\dir2");
6156 cli_unlink(cli
, "\\chkpath.dir\\*", FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
6157 cli_rmdir(cli
, "\\chkpath.dir");
6159 if (!torture_close_connection(cli
)) {
6166 static bool run_eatest(int dummy
)
6168 static struct cli_state
*cli
;
6169 const char *fname
= "\\eatest.txt";
6170 bool correct
= True
;
6174 struct ea_struct
*ea_list
= NULL
;
6175 TALLOC_CTX
*mem_ctx
= talloc_init("eatest");
6178 printf("starting eatest\n");
6180 if (!torture_open_connection(&cli
, 0)) {
6181 talloc_destroy(mem_ctx
);
6185 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
6187 status
= cli_ntcreate(cli
, fname
, 0,
6188 FIRST_DESIRED_ACCESS
, FILE_ATTRIBUTE_ARCHIVE
,
6189 FILE_SHARE_NONE
, FILE_OVERWRITE_IF
,
6191 if (!NT_STATUS_IS_OK(status
)) {
6192 printf("open failed - %s\n", nt_errstr(status
));
6193 talloc_destroy(mem_ctx
);
6197 for (i
= 0; i
< 10; i
++) {
6198 fstring ea_name
, ea_val
;
6200 slprintf(ea_name
, sizeof(ea_name
), "EA_%d", i
);
6201 memset(ea_val
, (char)i
+1, i
+1);
6202 status
= cli_set_ea_fnum(cli
, fnum
, ea_name
, ea_val
, i
+1);
6203 if (!NT_STATUS_IS_OK(status
)) {
6204 printf("ea_set of name %s failed - %s\n", ea_name
,
6206 talloc_destroy(mem_ctx
);
6211 cli_close(cli
, fnum
);
6212 for (i
= 0; i
< 10; i
++) {
6213 fstring ea_name
, ea_val
;
6215 slprintf(ea_name
, sizeof(ea_name
), "EA_%d", i
+10);
6216 memset(ea_val
, (char)i
+1, i
+1);
6217 status
= cli_set_ea_path(cli
, fname
, ea_name
, ea_val
, i
+1);
6218 if (!NT_STATUS_IS_OK(status
)) {
6219 printf("ea_set of name %s failed - %s\n", ea_name
,
6221 talloc_destroy(mem_ctx
);
6226 status
= cli_get_ea_list_path(cli
, fname
, mem_ctx
, &num_eas
, &ea_list
);
6227 if (!NT_STATUS_IS_OK(status
)) {
6228 printf("ea_get list failed - %s\n", nt_errstr(status
));
6232 printf("num_eas = %d\n", (int)num_eas
);
6234 if (num_eas
!= 20) {
6235 printf("Should be 20 EA's stored... failing.\n");
6239 for (i
= 0; i
< num_eas
; i
++) {
6240 printf("%d: ea_name = %s. Val = ", i
, ea_list
[i
].name
);
6241 dump_data(0, ea_list
[i
].value
.data
,
6242 ea_list
[i
].value
.length
);
6245 /* Setting EA's to zero length deletes them. Test this */
6246 printf("Now deleting all EA's - case indepenent....\n");
6249 cli_set_ea_path(cli
, fname
, "", "", 0);
6251 for (i
= 0; i
< 20; i
++) {
6253 slprintf(ea_name
, sizeof(ea_name
), "ea_%d", i
);
6254 status
= cli_set_ea_path(cli
, fname
, ea_name
, "", 0);
6255 if (!NT_STATUS_IS_OK(status
)) {
6256 printf("ea_set of name %s failed - %s\n", ea_name
,
6258 talloc_destroy(mem_ctx
);
6264 status
= cli_get_ea_list_path(cli
, fname
, mem_ctx
, &num_eas
, &ea_list
);
6265 if (!NT_STATUS_IS_OK(status
)) {
6266 printf("ea_get list failed - %s\n", nt_errstr(status
));
6270 printf("num_eas = %d\n", (int)num_eas
);
6271 for (i
= 0; i
< num_eas
; i
++) {
6272 printf("%d: ea_name = %s. Val = ", i
, ea_list
[i
].name
);
6273 dump_data(0, ea_list
[i
].value
.data
,
6274 ea_list
[i
].value
.length
);
6278 printf("deleting EA's failed.\n");
6282 /* Try and delete a non existent EA. */
6283 status
= cli_set_ea_path(cli
, fname
, "foo", "", 0);
6284 if (!NT_STATUS_IS_OK(status
)) {
6285 printf("deleting non-existent EA 'foo' should succeed. %s\n",
6290 talloc_destroy(mem_ctx
);
6291 if (!torture_close_connection(cli
)) {
6298 static bool run_dirtest1(int dummy
)
6301 static struct cli_state
*cli
;
6304 bool correct
= True
;
6306 printf("starting directory test\n");
6308 if (!torture_open_connection(&cli
, 0)) {
6312 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
6314 cli_list(cli
, "\\LISTDIR\\*", 0, del_fn
, cli
);
6315 cli_list(cli
, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY
, del_fn
, cli
);
6316 cli_rmdir(cli
, "\\LISTDIR");
6317 cli_mkdir(cli
, "\\LISTDIR");
6319 /* Create 1000 files and 1000 directories. */
6320 for (i
=0;i
<1000;i
++) {
6322 slprintf(fname
, sizeof(fname
), "\\LISTDIR\\f%d", i
);
6323 if (!NT_STATUS_IS_OK(cli_ntcreate(cli
, fname
, 0, GENERIC_ALL_ACCESS
, FILE_ATTRIBUTE_ARCHIVE
,
6324 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OVERWRITE_IF
, 0, 0, &fnum
))) {
6325 fprintf(stderr
,"Failed to open %s\n", fname
);
6328 cli_close(cli
, fnum
);
6330 for (i
=0;i
<1000;i
++) {
6332 slprintf(fname
, sizeof(fname
), "\\LISTDIR\\d%d", i
);
6333 if (!NT_STATUS_IS_OK(cli_mkdir(cli
, fname
))) {
6334 fprintf(stderr
,"Failed to open %s\n", fname
);
6339 /* Now ensure that doing an old list sees both files and directories. */
6341 cli_list_old(cli
, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY
, list_fn
, &num_seen
);
6342 printf("num_seen = %d\n", num_seen
);
6343 /* We should see 100 files + 1000 directories + . and .. */
6344 if (num_seen
!= 2002)
6347 /* Ensure if we have the "must have" bits we only see the
6351 cli_list_old(cli
, "\\LISTDIR\\*", (FILE_ATTRIBUTE_DIRECTORY
<<8)|FILE_ATTRIBUTE_DIRECTORY
, list_fn
, &num_seen
);
6352 printf("num_seen = %d\n", num_seen
);
6353 if (num_seen
!= 1002)
6357 cli_list_old(cli
, "\\LISTDIR\\*", (FILE_ATTRIBUTE_ARCHIVE
<<8)|FILE_ATTRIBUTE_DIRECTORY
, list_fn
, &num_seen
);
6358 printf("num_seen = %d\n", num_seen
);
6359 if (num_seen
!= 1000)
6362 /* Delete everything. */
6363 cli_list(cli
, "\\LISTDIR\\*", 0, del_fn
, cli
);
6364 cli_list(cli
, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY
, del_fn
, cli
);
6365 cli_rmdir(cli
, "\\LISTDIR");
6368 printf("Matched %d\n", cli_list(cli
, "a*.*", 0, list_fn
, NULL
));
6369 printf("Matched %d\n", cli_list(cli
, "b*.*", 0, list_fn
, NULL
));
6370 printf("Matched %d\n", cli_list(cli
, "xyzabc", 0, list_fn
, NULL
));
6373 if (!torture_close_connection(cli
)) {
6377 printf("finished dirtest1\n");
6382 static bool run_error_map_extract(int dummy
) {
6384 static struct cli_state
*c_dos
;
6385 static struct cli_state
*c_nt
;
6397 /* NT-Error connection */
6399 disable_spnego
= true;
6400 if (!(c_nt
= open_nbt_connection())) {
6401 disable_spnego
= false;
6404 disable_spnego
= false;
6406 status
= smbXcli_negprot(c_nt
->conn
, c_nt
->timeout
, PROTOCOL_CORE
,
6409 if (!NT_STATUS_IS_OK(status
)) {
6410 printf("%s rejected the NT-error negprot (%s)\n", host
,
6416 status
= cli_session_setup(c_nt
, "", "", 0, "", 0, workgroup
);
6417 if (!NT_STATUS_IS_OK(status
)) {
6418 printf("%s rejected the NT-error initial session setup (%s)\n",host
, nt_errstr(status
));
6422 /* DOS-Error connection */
6424 disable_spnego
= true;
6425 force_dos_errors
= true;
6426 if (!(c_dos
= open_nbt_connection())) {
6427 disable_spnego
= false;
6428 force_dos_errors
= false;
6431 disable_spnego
= false;
6432 force_dos_errors
= false;
6434 status
= smbXcli_negprot(c_dos
->conn
, c_dos
->timeout
, PROTOCOL_CORE
,
6436 if (!NT_STATUS_IS_OK(status
)) {
6437 printf("%s rejected the DOS-error negprot (%s)\n", host
,
6439 cli_shutdown(c_dos
);
6443 status
= cli_session_setup(c_dos
, "", "", 0, "", 0, workgroup
);
6444 if (!NT_STATUS_IS_OK(status
)) {
6445 printf("%s rejected the DOS-error initial session setup (%s)\n",
6446 host
, nt_errstr(status
));
6450 c_nt
->map_dos_errors
= false;
6451 c_dos
->map_dos_errors
= false;
6453 for (error
=(0xc0000000 | 0x1); error
< (0xc0000000| 0xFFF); error
++) {
6454 fstr_sprintf(user
, "%X", error
);
6456 status
= cli_session_setup(c_nt
, user
,
6457 password
, strlen(password
),
6458 password
, strlen(password
),
6460 if (NT_STATUS_IS_OK(status
)) {
6461 printf("/** Session setup succeeded. This shouldn't happen...*/\n");
6464 /* Case #1: 32-bit NT errors */
6465 if (!NT_STATUS_IS_DOS(status
)) {
6468 printf("/** Dos error on NT connection! (%s) */\n",
6470 nt_status
= NT_STATUS(0xc0000000);
6473 status
= cli_session_setup(c_dos
, user
,
6474 password
, strlen(password
),
6475 password
, strlen(password
),
6477 if (NT_STATUS_IS_OK(status
)) {
6478 printf("/** Session setup succeeded. This shouldn't happen...*/\n");
6481 /* Case #1: 32-bit NT errors */
6482 if (NT_STATUS_IS_DOS(status
)) {
6483 printf("/** NT error on DOS connection! (%s) */\n",
6485 errnum
= errclass
= 0;
6487 errclass
= NT_STATUS_DOS_CLASS(status
);
6488 errnum
= NT_STATUS_DOS_CODE(status
);
6491 if (NT_STATUS_V(nt_status
) != error
) {
6492 printf("/*\t{ This NT error code was 'sqashed'\n\t from %s to %s \n\t during the session setup }\n*/\n",
6493 get_nt_error_c_code(talloc_tos(), NT_STATUS(error
)),
6494 get_nt_error_c_code(talloc_tos(), nt_status
));
6497 printf("\t{%s,\t%s,\t%s},\n",
6498 smb_dos_err_class(errclass
),
6499 smb_dos_err_name(errclass
, errnum
),
6500 get_nt_error_c_code(talloc_tos(), NT_STATUS(error
)));
6505 static bool run_sesssetup_bench(int dummy
)
6507 static struct cli_state
*c
;
6508 const char *fname
= "\\file.dat";
6513 if (!torture_open_connection(&c
, 0)) {
6517 status
= cli_ntcreate(c
, fname
, 0, GENERIC_ALL_ACCESS
|DELETE_ACCESS
,
6518 FILE_ATTRIBUTE_NORMAL
, 0, FILE_OVERWRITE_IF
,
6519 FILE_DELETE_ON_CLOSE
, 0, &fnum
);
6520 if (!NT_STATUS_IS_OK(status
)) {
6521 d_printf("open %s failed: %s\n", fname
, nt_errstr(status
));
6525 for (i
=0; i
<torture_numops
; i
++) {
6526 status
= cli_session_setup(
6528 password
, strlen(password
),
6529 password
, strlen(password
),
6531 if (!NT_STATUS_IS_OK(status
)) {
6532 d_printf("(%s) cli_session_setup failed: %s\n",
6533 __location__
, nt_errstr(status
));
6537 d_printf("\r%d ", (int)cli_state_get_uid(c
));
6539 status
= cli_ulogoff(c
);
6540 if (!NT_STATUS_IS_OK(status
)) {
6541 d_printf("(%s) cli_ulogoff failed: %s\n",
6542 __location__
, nt_errstr(status
));
6550 static bool subst_test(const char *str
, const char *user
, const char *domain
,
6551 uid_t uid
, gid_t gid
, const char *expected
)
6556 subst
= talloc_sub_specified(talloc_tos(), str
, user
, NULL
, domain
, uid
, gid
);
6558 if (strcmp(subst
, expected
) != 0) {
6559 printf("sub_specified(%s, %s, %s, %d, %d) returned [%s], expected "
6560 "[%s]\n", str
, user
, domain
, (int)uid
, (int)gid
, subst
,
6569 static void chain1_open_completion(struct tevent_req
*req
)
6573 status
= cli_openx_recv(req
, &fnum
);
6576 d_printf("cli_openx_recv returned %s: %d\n",
6578 NT_STATUS_IS_OK(status
) ? fnum
: -1);
6581 static void chain1_write_completion(struct tevent_req
*req
)
6585 status
= cli_write_andx_recv(req
, &written
);
6588 d_printf("cli_write_andx_recv returned %s: %d\n",
6590 NT_STATUS_IS_OK(status
) ? (int)written
: -1);
6593 static void chain1_close_completion(struct tevent_req
*req
)
6596 bool *done
= (bool *)tevent_req_callback_data_void(req
);
6598 status
= cli_close_recv(req
);
6603 d_printf("cli_close returned %s\n", nt_errstr(status
));
6606 static bool run_chain1(int dummy
)
6608 struct cli_state
*cli1
;
6609 struct tevent_context
*evt
= samba_tevent_context_init(NULL
);
6610 struct tevent_req
*reqs
[3], *smbreqs
[3];
6612 const char *str
= "foobar";
6615 printf("starting chain1 test\n");
6616 if (!torture_open_connection(&cli1
, 0)) {
6620 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
6622 reqs
[0] = cli_openx_create(talloc_tos(), evt
, cli1
, "\\test",
6623 O_CREAT
|O_RDWR
, 0, &smbreqs
[0]);
6624 if (reqs
[0] == NULL
) return false;
6625 tevent_req_set_callback(reqs
[0], chain1_open_completion
, NULL
);
6628 reqs
[1] = cli_write_andx_create(talloc_tos(), evt
, cli1
, 0, 0,
6629 (const uint8_t *)str
, 0, strlen(str
)+1,
6630 smbreqs
, 1, &smbreqs
[1]);
6631 if (reqs
[1] == NULL
) return false;
6632 tevent_req_set_callback(reqs
[1], chain1_write_completion
, NULL
);
6634 reqs
[2] = cli_close_create(talloc_tos(), evt
, cli1
, 0, &smbreqs
[2]);
6635 if (reqs
[2] == NULL
) return false;
6636 tevent_req_set_callback(reqs
[2], chain1_close_completion
, &done
);
6638 status
= smb1cli_req_chain_submit(smbreqs
, ARRAY_SIZE(smbreqs
));
6639 if (!NT_STATUS_IS_OK(status
)) {
6644 tevent_loop_once(evt
);
6647 torture_close_connection(cli1
);
6651 static void chain2_sesssetup_completion(struct tevent_req
*req
)
6654 status
= cli_session_setup_guest_recv(req
);
6655 d_printf("sesssetup returned %s\n", nt_errstr(status
));
6658 static void chain2_tcon_completion(struct tevent_req
*req
)
6660 bool *done
= (bool *)tevent_req_callback_data_void(req
);
6662 status
= cli_tcon_andx_recv(req
);
6663 d_printf("tcon_and_x returned %s\n", nt_errstr(status
));
6667 static bool run_chain2(int dummy
)
6669 struct cli_state
*cli1
;
6670 struct tevent_context
*evt
= samba_tevent_context_init(NULL
);
6671 struct tevent_req
*reqs
[2], *smbreqs
[2];
6675 printf("starting chain2 test\n");
6676 status
= cli_start_connection(&cli1
, lp_netbios_name(), host
, NULL
,
6677 port_to_use
, SMB_SIGNING_DEFAULT
, 0);
6678 if (!NT_STATUS_IS_OK(status
)) {
6682 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
6684 reqs
[0] = cli_session_setup_guest_create(talloc_tos(), evt
, cli1
,
6686 if (reqs
[0] == NULL
) return false;
6687 tevent_req_set_callback(reqs
[0], chain2_sesssetup_completion
, NULL
);
6689 reqs
[1] = cli_tcon_andx_create(talloc_tos(), evt
, cli1
, "IPC$",
6690 "?????", NULL
, 0, &smbreqs
[1]);
6691 if (reqs
[1] == NULL
) return false;
6692 tevent_req_set_callback(reqs
[1], chain2_tcon_completion
, &done
);
6694 status
= smb1cli_req_chain_submit(smbreqs
, ARRAY_SIZE(smbreqs
));
6695 if (!NT_STATUS_IS_OK(status
)) {
6700 tevent_loop_once(evt
);
6703 torture_close_connection(cli1
);
6708 struct torture_createdel_state
{
6709 struct tevent_context
*ev
;
6710 struct cli_state
*cli
;
6713 static void torture_createdel_created(struct tevent_req
*subreq
);
6714 static void torture_createdel_closed(struct tevent_req
*subreq
);
6716 static struct tevent_req
*torture_createdel_send(TALLOC_CTX
*mem_ctx
,
6717 struct tevent_context
*ev
,
6718 struct cli_state
*cli
,
6721 struct tevent_req
*req
, *subreq
;
6722 struct torture_createdel_state
*state
;
6724 req
= tevent_req_create(mem_ctx
, &state
,
6725 struct torture_createdel_state
);
6732 subreq
= cli_ntcreate_send(
6733 state
, ev
, cli
, name
, 0,
6734 FILE_READ_DATA
|FILE_WRITE_DATA
|DELETE_ACCESS
,
6735 FILE_ATTRIBUTE_NORMAL
,
6736 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
6737 FILE_OPEN_IF
, FILE_DELETE_ON_CLOSE
, 0);
6739 if (tevent_req_nomem(subreq
, req
)) {
6740 return tevent_req_post(req
, ev
);
6742 tevent_req_set_callback(subreq
, torture_createdel_created
, req
);
6746 static void torture_createdel_created(struct tevent_req
*subreq
)
6748 struct tevent_req
*req
= tevent_req_callback_data(
6749 subreq
, struct tevent_req
);
6750 struct torture_createdel_state
*state
= tevent_req_data(
6751 req
, struct torture_createdel_state
);
6755 status
= cli_ntcreate_recv(subreq
, &fnum
);
6756 TALLOC_FREE(subreq
);
6757 if (tevent_req_nterror(req
, status
)) {
6758 DEBUG(10, ("cli_ntcreate_recv returned %s\n",
6759 nt_errstr(status
)));
6763 subreq
= cli_close_send(state
, state
->ev
, state
->cli
, fnum
);
6764 if (tevent_req_nomem(subreq
, req
)) {
6767 tevent_req_set_callback(subreq
, torture_createdel_closed
, req
);
6770 static void torture_createdel_closed(struct tevent_req
*subreq
)
6772 struct tevent_req
*req
= tevent_req_callback_data(
6773 subreq
, struct tevent_req
);
6776 status
= cli_close_recv(subreq
);
6777 if (tevent_req_nterror(req
, status
)) {
6778 DEBUG(10, ("cli_close_recv returned %s\n", nt_errstr(status
)));
6781 tevent_req_done(req
);
6784 static NTSTATUS
torture_createdel_recv(struct tevent_req
*req
)
6786 return tevent_req_simple_recv_ntstatus(req
);
6789 struct torture_createdels_state
{
6790 struct tevent_context
*ev
;
6791 struct cli_state
*cli
;
6792 const char *base_name
;
6796 struct tevent_req
**reqs
;
6799 static void torture_createdels_done(struct tevent_req
*subreq
);
6801 static struct tevent_req
*torture_createdels_send(TALLOC_CTX
*mem_ctx
,
6802 struct tevent_context
*ev
,
6803 struct cli_state
*cli
,
6804 const char *base_name
,
6808 struct tevent_req
*req
;
6809 struct torture_createdels_state
*state
;
6812 req
= tevent_req_create(mem_ctx
, &state
,
6813 struct torture_createdels_state
);
6819 state
->base_name
= talloc_strdup(state
, base_name
);
6820 if (tevent_req_nomem(state
->base_name
, req
)) {
6821 return tevent_req_post(req
, ev
);
6823 state
->num_files
= MAX(num_parallel
, num_files
);
6825 state
->received
= 0;
6827 state
->reqs
= talloc_array(state
, struct tevent_req
*, num_parallel
);
6828 if (tevent_req_nomem(state
->reqs
, req
)) {
6829 return tevent_req_post(req
, ev
);
6832 for (i
=0; i
<num_parallel
; i
++) {
6835 name
= talloc_asprintf(state
, "%s%8.8d", state
->base_name
,
6837 if (tevent_req_nomem(name
, req
)) {
6838 return tevent_req_post(req
, ev
);
6840 state
->reqs
[i
] = torture_createdel_send(
6841 state
->reqs
, state
->ev
, state
->cli
, name
);
6842 if (tevent_req_nomem(state
->reqs
[i
], req
)) {
6843 return tevent_req_post(req
, ev
);
6845 name
= talloc_move(state
->reqs
[i
], &name
);
6846 tevent_req_set_callback(state
->reqs
[i
],
6847 torture_createdels_done
, req
);
6853 static void torture_createdels_done(struct tevent_req
*subreq
)
6855 struct tevent_req
*req
= tevent_req_callback_data(
6856 subreq
, struct tevent_req
);
6857 struct torture_createdels_state
*state
= tevent_req_data(
6858 req
, struct torture_createdels_state
);
6859 size_t num_parallel
= talloc_array_length(state
->reqs
);
6864 status
= torture_createdel_recv(subreq
);
6865 if (!NT_STATUS_IS_OK(status
)){
6866 DEBUG(10, ("torture_createdel_recv returned %s\n",
6867 nt_errstr(status
)));
6868 TALLOC_FREE(subreq
);
6869 tevent_req_nterror(req
, status
);
6873 for (i
=0; i
<num_parallel
; i
++) {
6874 if (subreq
== state
->reqs
[i
]) {
6878 if (i
== num_parallel
) {
6879 DEBUG(10, ("received something we did not send\n"));
6880 tevent_req_nterror(req
, NT_STATUS_INTERNAL_ERROR
);
6883 TALLOC_FREE(state
->reqs
[i
]);
6885 if (state
->sent
>= state
->num_files
) {
6886 tevent_req_done(req
);
6890 name
= talloc_asprintf(state
, "%s%8.8d", state
->base_name
,
6892 if (tevent_req_nomem(name
, req
)) {
6895 state
->reqs
[i
] = torture_createdel_send(state
->reqs
, state
->ev
,
6897 if (tevent_req_nomem(state
->reqs
[i
], req
)) {
6900 name
= talloc_move(state
->reqs
[i
], &name
);
6901 tevent_req_set_callback(state
->reqs
[i
], torture_createdels_done
, req
);
6905 static NTSTATUS
torture_createdels_recv(struct tevent_req
*req
)
6907 return tevent_req_simple_recv_ntstatus(req
);
6910 struct swallow_notify_state
{
6911 struct tevent_context
*ev
;
6912 struct cli_state
*cli
;
6914 uint32_t completion_filter
;
6916 bool (*fn
)(uint32_t action
, const char *name
, void *priv
);
6920 static void swallow_notify_done(struct tevent_req
*subreq
);
6922 static struct tevent_req
*swallow_notify_send(TALLOC_CTX
*mem_ctx
,
6923 struct tevent_context
*ev
,
6924 struct cli_state
*cli
,
6926 uint32_t completion_filter
,
6928 bool (*fn
)(uint32_t action
,
6933 struct tevent_req
*req
, *subreq
;
6934 struct swallow_notify_state
*state
;
6936 req
= tevent_req_create(mem_ctx
, &state
,
6937 struct swallow_notify_state
);
6944 state
->completion_filter
= completion_filter
;
6945 state
->recursive
= recursive
;
6949 subreq
= cli_notify_send(state
, state
->ev
, state
->cli
, state
->fnum
,
6950 0xffff, state
->completion_filter
,
6952 if (tevent_req_nomem(subreq
, req
)) {
6953 return tevent_req_post(req
, ev
);
6955 tevent_req_set_callback(subreq
, swallow_notify_done
, req
);
6959 static void swallow_notify_done(struct tevent_req
*subreq
)
6961 struct tevent_req
*req
= tevent_req_callback_data(
6962 subreq
, struct tevent_req
);
6963 struct swallow_notify_state
*state
= tevent_req_data(
6964 req
, struct swallow_notify_state
);
6966 uint32_t i
, num_changes
;
6967 struct notify_change
*changes
;
6969 status
= cli_notify_recv(subreq
, state
, &num_changes
, &changes
);
6970 TALLOC_FREE(subreq
);
6971 if (!NT_STATUS_IS_OK(status
)) {
6972 DEBUG(10, ("cli_notify_recv returned %s\n",
6973 nt_errstr(status
)));
6974 tevent_req_nterror(req
, status
);
6978 for (i
=0; i
<num_changes
; i
++) {
6979 state
->fn(changes
[i
].action
, changes
[i
].name
, state
->priv
);
6981 TALLOC_FREE(changes
);
6983 subreq
= cli_notify_send(state
, state
->ev
, state
->cli
, state
->fnum
,
6984 0xffff, state
->completion_filter
,
6986 if (tevent_req_nomem(subreq
, req
)) {
6989 tevent_req_set_callback(subreq
, swallow_notify_done
, req
);
6992 static bool print_notifies(uint32_t action
, const char *name
, void *priv
)
6994 if (DEBUGLEVEL
> 5) {
6995 d_printf("%d %s\n", (int)action
, name
);
7000 static void notify_bench_done(struct tevent_req
*req
)
7002 int *num_finished
= (int *)tevent_req_callback_data_void(req
);
7006 static bool run_notify_bench(int dummy
)
7008 const char *dname
= "\\notify-bench";
7009 struct tevent_context
*ev
;
7012 struct tevent_req
*req1
;
7013 struct tevent_req
*req2
= NULL
;
7014 int i
, num_unc_names
;
7015 int num_finished
= 0;
7017 printf("starting notify-bench test\n");
7019 if (use_multishare_conn
) {
7021 unc_list
= file_lines_load(multishare_conn_fname
,
7022 &num_unc_names
, 0, NULL
);
7023 if (!unc_list
|| num_unc_names
<= 0) {
7024 d_printf("Failed to load unc names list from '%s'\n",
7025 multishare_conn_fname
);
7028 TALLOC_FREE(unc_list
);
7033 ev
= samba_tevent_context_init(talloc_tos());
7035 d_printf("tevent_context_init failed\n");
7039 for (i
=0; i
<num_unc_names
; i
++) {
7040 struct cli_state
*cli
;
7043 base_fname
= talloc_asprintf(talloc_tos(), "%s\\file%3.3d.",
7045 if (base_fname
== NULL
) {
7049 if (!torture_open_connection(&cli
, i
)) {
7053 status
= cli_ntcreate(cli
, dname
, 0,
7054 MAXIMUM_ALLOWED_ACCESS
,
7055 0, FILE_SHARE_READ
|FILE_SHARE_WRITE
|
7057 FILE_OPEN_IF
, FILE_DIRECTORY_FILE
, 0,
7060 if (!NT_STATUS_IS_OK(status
)) {
7061 d_printf("Could not create %s: %s\n", dname
,
7066 req1
= swallow_notify_send(talloc_tos(), ev
, cli
, dnum
,
7067 FILE_NOTIFY_CHANGE_FILE_NAME
|
7068 FILE_NOTIFY_CHANGE_DIR_NAME
|
7069 FILE_NOTIFY_CHANGE_ATTRIBUTES
|
7070 FILE_NOTIFY_CHANGE_LAST_WRITE
,
7071 false, print_notifies
, NULL
);
7073 d_printf("Could not create notify request\n");
7077 req2
= torture_createdels_send(talloc_tos(), ev
, cli
,
7078 base_fname
, 10, torture_numops
);
7080 d_printf("Could not create createdels request\n");
7083 TALLOC_FREE(base_fname
);
7085 tevent_req_set_callback(req2
, notify_bench_done
,
7089 while (num_finished
< num_unc_names
) {
7091 ret
= tevent_loop_once(ev
);
7093 d_printf("tevent_loop_once failed\n");
7098 if (!tevent_req_poll(req2
, ev
)) {
7099 d_printf("tevent_req_poll failed\n");
7102 status
= torture_createdels_recv(req2
);
7103 d_printf("torture_createdels_recv returned %s\n", nt_errstr(status
));
7108 static bool run_mangle1(int dummy
)
7110 struct cli_state
*cli
;
7111 const char *fname
= "this_is_a_long_fname_to_be_mangled.txt";
7115 time_t change_time
, access_time
, write_time
;
7119 printf("starting mangle1 test\n");
7120 if (!torture_open_connection(&cli
, 0)) {
7124 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
7126 status
= cli_ntcreate(cli
, fname
, 0, GENERIC_ALL_ACCESS
|DELETE_ACCESS
,
7127 FILE_ATTRIBUTE_NORMAL
, 0, FILE_OVERWRITE_IF
,
7129 if (!NT_STATUS_IS_OK(status
)) {
7130 d_printf("open %s failed: %s\n", fname
, nt_errstr(status
));
7133 cli_close(cli
, fnum
);
7135 status
= cli_qpathinfo_alt_name(cli
, fname
, alt_name
);
7136 if (!NT_STATUS_IS_OK(status
)) {
7137 d_printf("cli_qpathinfo_alt_name failed: %s\n",
7141 d_printf("alt_name: %s\n", alt_name
);
7143 status
= cli_openx(cli
, alt_name
, O_RDONLY
, DENY_NONE
, &fnum
);
7144 if (!NT_STATUS_IS_OK(status
)) {
7145 d_printf("cli_openx(%s) failed: %s\n", alt_name
,
7149 cli_close(cli
, fnum
);
7151 status
= cli_qpathinfo1(cli
, alt_name
, &change_time
, &access_time
,
7152 &write_time
, &size
, &mode
);
7153 if (!NT_STATUS_IS_OK(status
)) {
7154 d_printf("cli_qpathinfo1(%s) failed: %s\n", alt_name
,
7162 static size_t null_source(uint8_t *buf
, size_t n
, void *priv
)
7164 size_t *to_pull
= (size_t *)priv
;
7165 size_t thistime
= *to_pull
;
7167 thistime
= MIN(thistime
, n
);
7168 if (thistime
== 0) {
7172 memset(buf
, 0, thistime
);
7173 *to_pull
-= thistime
;
7177 static bool run_windows_write(int dummy
)
7179 struct cli_state
*cli1
;
7183 const char *fname
= "\\writetest.txt";
7184 struct timeval start_time
;
7189 printf("starting windows_write test\n");
7190 if (!torture_open_connection(&cli1
, 0)) {
7194 status
= cli_openx(cli1
, fname
, O_RDWR
|O_CREAT
|O_EXCL
, DENY_NONE
, &fnum
);
7195 if (!NT_STATUS_IS_OK(status
)) {
7196 printf("open failed (%s)\n", nt_errstr(status
));
7200 smbXcli_conn_set_sockopt(cli1
->conn
, sockops
);
7202 start_time
= timeval_current();
7204 for (i
=0; i
<torture_numops
; i
++) {
7206 off_t start
= i
* torture_blocksize
;
7207 size_t to_pull
= torture_blocksize
- 1;
7209 status
= cli_writeall(cli1
, fnum
, 0, &c
,
7210 start
+ torture_blocksize
- 1, 1, NULL
);
7211 if (!NT_STATUS_IS_OK(status
)) {
7212 printf("cli_write failed: %s\n", nt_errstr(status
));
7216 status
= cli_push(cli1
, fnum
, 0, i
* torture_blocksize
, torture_blocksize
,
7217 null_source
, &to_pull
);
7218 if (!NT_STATUS_IS_OK(status
)) {
7219 printf("cli_push returned: %s\n", nt_errstr(status
));
7224 seconds
= timeval_elapsed(&start_time
);
7225 kbytes
= (double)torture_blocksize
* torture_numops
;
7228 printf("Wrote %d kbytes in %.2f seconds: %d kb/sec\n", (int)kbytes
,
7229 (double)seconds
, (int)(kbytes
/seconds
));
7233 cli_close(cli1
, fnum
);
7234 cli_unlink(cli1
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
7235 torture_close_connection(cli1
);
7239 static size_t calc_expected_return(struct cli_state
*cli
, size_t len_requested
)
7241 size_t max_pdu
= 0x1FFFF;
7243 if (cli
->server_posix_capabilities
& CIFS_UNIX_LARGE_READ_CAP
) {
7247 if (smb1cli_conn_signing_is_active(cli
->conn
)) {
7251 if (smb1cli_conn_encryption_on(cli
->conn
)) {
7252 max_pdu
= CLI_BUFFER_SIZE
;
7255 if ((len_requested
& 0xFFFF0000) == 0xFFFF0000) {
7256 len_requested
&= 0xFFFF;
7259 return MIN(len_requested
, max_pdu
- (MIN_SMB_SIZE
+ VWV(12)));
7262 static bool check_read_call(struct cli_state
*cli
,
7265 size_t len_requested
)
7268 struct tevent_req
*subreq
= NULL
;
7269 ssize_t len_read
= 0;
7270 size_t len_expected
= 0;
7271 struct tevent_context
*ev
= NULL
;
7273 ev
= samba_tevent_context_init(talloc_tos());
7278 subreq
= cli_read_andx_send(talloc_tos(),
7285 if (!tevent_req_poll_ntstatus(subreq
, ev
, &status
)) {
7289 status
= cli_read_andx_recv(subreq
, &len_read
, &buf
);
7290 if (!NT_STATUS_IS_OK(status
)) {
7291 d_printf("cli_read_andx_recv failed: %s\n", nt_errstr(status
));
7295 TALLOC_FREE(subreq
);
7298 len_expected
= calc_expected_return(cli
, len_requested
);
7300 if (len_expected
> 0x10000 && len_read
== 0x10000) {
7301 /* Windows servers only return a max of 0x10000,
7302 doesn't matter if you set CAP_LARGE_READX in
7303 the client sessionsetupX call or not. */
7304 d_printf("Windows server - returned 0x10000 on a read of 0x%x\n",
7305 (unsigned int)len_requested
);
7306 } else if (len_read
!= len_expected
) {
7307 d_printf("read of 0x%x failed: got 0x%x, expected 0x%x\n",
7308 (unsigned int)len_requested
,
7309 (unsigned int)len_read
,
7310 (unsigned int)len_expected
);
7313 d_printf("Correct read reply.\n");
7319 /* Test large readX variants. */
7320 static bool large_readx_tests(struct cli_state
*cli
,
7324 /* A read of 0xFFFF0001 should *always* return 1 byte. */
7325 if (check_read_call(cli
, fnum
, buf
, 0xFFFF0001) == false) {
7328 /* A read of 0x10000 should return 0x10000 bytes. */
7329 if (check_read_call(cli
, fnum
, buf
, 0x10000) == false) {
7332 /* A read of 0x10000 should return 0x10001 bytes. */
7333 if (check_read_call(cli
, fnum
, buf
, 0x10001) == false) {
7336 /* A read of 0x1FFFF - (MIN_SMB_SIZE + VWV(12) should return
7337 the requested number of bytes. */
7338 if (check_read_call(cli
, fnum
, buf
, 0x1FFFF - (MIN_SMB_SIZE
+ VWV(12))) == false) {
7341 /* A read of 1MB should return 1MB bytes (on Samba). */
7342 if (check_read_call(cli
, fnum
, buf
, 0x100000) == false) {
7346 if (check_read_call(cli
, fnum
, buf
, 0x20001) == false) {
7349 if (check_read_call(cli
, fnum
, buf
, 0x22000001) == false) {
7352 if (check_read_call(cli
, fnum
, buf
, 0xFFFE0001) == false) {
7358 static bool run_large_readx(int dummy
)
7360 uint8_t *buf
= NULL
;
7361 struct cli_state
*cli1
= NULL
;
7362 struct cli_state
*cli2
= NULL
;
7363 bool correct
= false;
7364 const char *fname
= "\\large_readx.dat";
7366 uint16_t fnum1
= UINT16_MAX
;
7367 uint32_t normal_caps
= 0;
7368 size_t file_size
= 20*1024*1024;
7369 TALLOC_CTX
*frame
= talloc_stackframe();
7373 enum smb_signing_setting signing_setting
;
7374 enum protocol_types protocol
;
7378 .signing_setting
= SMB_SIGNING_IF_REQUIRED
,
7379 .protocol
= PROTOCOL_NT1
,
7381 .name
= "NT1 - SIGNING_REQUIRED",
7382 .signing_setting
= SMB_SIGNING_REQUIRED
,
7383 .protocol
= PROTOCOL_NT1
,
7387 printf("starting large_readx test\n");
7389 if (!torture_open_connection(&cli1
, 0)) {
7393 normal_caps
= smb1cli_conn_capabilities(cli1
->conn
);
7395 if (!(normal_caps
& CAP_LARGE_READX
)) {
7396 d_printf("Server doesn't have CAP_LARGE_READX 0x%x\n",
7397 (unsigned int)normal_caps
);
7401 /* Create a file of size 4MB. */
7402 status
= cli_ntcreate(cli1
, fname
, 0, GENERIC_ALL_ACCESS
,
7403 FILE_ATTRIBUTE_NORMAL
, 0, FILE_OVERWRITE_IF
,
7406 if (!NT_STATUS_IS_OK(status
)) {
7407 d_printf("open %s failed: %s\n", fname
, nt_errstr(status
));
7411 /* Write file_size bytes. */
7412 buf
= talloc_zero_array(frame
, uint8_t, file_size
);
7417 status
= cli_writeall(cli1
,
7424 if (!NT_STATUS_IS_OK(status
)) {
7425 d_printf("cli_writeall failed: %s\n", nt_errstr(status
));
7429 status
= cli_close(cli1
, fnum1
);
7430 if (!NT_STATUS_IS_OK(status
)) {
7431 d_printf("cli_close failed: %s\n", nt_errstr(status
));
7437 for (i
=0; i
< ARRAY_SIZE(runs
); i
++) {
7438 enum smb_signing_setting saved_signing_setting
= signing_state
;
7439 uint16_t fnum2
= -1;
7442 (runs
[i
].signing_setting
== SMB_SIGNING_REQUIRED
))
7444 d_printf("skip[%u] - %s\n", (unsigned)i
, runs
[i
].name
);
7448 d_printf("run[%u] - %s\n", (unsigned)i
, runs
[i
].name
);
7450 signing_state
= runs
[i
].signing_setting
;
7451 cli2
= open_nbt_connection();
7452 signing_state
= saved_signing_setting
;
7457 status
= smbXcli_negprot(cli2
->conn
,
7461 if (!NT_STATUS_IS_OK(status
)) {
7465 status
= cli_session_setup(cli2
,
7472 if (!NT_STATUS_IS_OK(status
)) {
7476 status
= cli_tree_connect(cli2
,
7480 strlen(password
)+1);
7481 if (!NT_STATUS_IS_OK(status
)) {
7485 cli_set_timeout(cli2
, 120000); /* set a really long timeout (2 minutes) */
7487 normal_caps
= smb1cli_conn_capabilities(cli2
->conn
);
7489 if (!(normal_caps
& CAP_LARGE_READX
)) {
7490 d_printf("Server doesn't have CAP_LARGE_READX 0x%x\n",
7491 (unsigned int)normal_caps
);
7496 if (force_cli_encryption(cli2
, share
) == false) {
7499 } else if (SERVER_HAS_UNIX_CIFS(cli2
)) {
7500 uint16_t major
, minor
;
7501 uint32_t caplow
, caphigh
;
7503 status
= cli_unix_extensions_version(cli2
,
7506 if (!NT_STATUS_IS_OK(status
)) {
7511 status
= cli_ntcreate(cli2
, fname
, 0, FILE_READ_DATA
,
7512 FILE_ATTRIBUTE_NORMAL
, 0, FILE_OPEN
,
7514 if (!NT_STATUS_IS_OK(status
)) {
7515 d_printf("Second open %s failed: %s\n", fname
, nt_errstr(status
));
7519 /* All reads must return less than file_size bytes. */
7520 if (!large_readx_tests(cli2
, fnum2
, buf
)) {
7524 status
= cli_close(cli2
, fnum2
);
7525 if (!NT_STATUS_IS_OK(status
)) {
7526 d_printf("cli_close failed: %s\n", nt_errstr(status
));
7531 if (!torture_close_connection(cli2
)) {
7538 printf("Success on large_readx test\n");
7543 if (!torture_close_connection(cli2
)) {
7549 if (fnum1
!= UINT16_MAX
) {
7550 status
= cli_close(cli1
, fnum1
);
7551 if (!NT_STATUS_IS_OK(status
)) {
7552 d_printf("cli_close failed: %s\n", nt_errstr(status
));
7557 status
= cli_unlink(cli1
, fname
,
7558 FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
7559 if (!NT_STATUS_IS_OK(status
)) {
7560 printf("unlink failed (%s)\n", nt_errstr(status
));
7563 if (!torture_close_connection(cli1
)) {
7570 printf("finished large_readx test\n");
7574 static bool run_cli_echo(int dummy
)
7576 struct cli_state
*cli
;
7579 printf("starting cli_echo test\n");
7580 if (!torture_open_connection(&cli
, 0)) {
7583 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
7585 status
= cli_echo(cli
, 5, data_blob_const("hello", 5));
7587 d_printf("cli_echo returned %s\n", nt_errstr(status
));
7589 torture_close_connection(cli
);
7590 return NT_STATUS_IS_OK(status
);
7593 static bool run_uid_regression_test(int dummy
)
7595 static struct cli_state
*cli
;
7598 bool correct
= True
;
7601 printf("starting uid regression test\n");
7603 if (!torture_open_connection(&cli
, 0)) {
7607 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
7609 /* Ok - now save then logoff our current user. */
7610 old_vuid
= cli_state_get_uid(cli
);
7612 status
= cli_ulogoff(cli
);
7613 if (!NT_STATUS_IS_OK(status
)) {
7614 d_printf("(%s) cli_ulogoff failed: %s\n",
7615 __location__
, nt_errstr(status
));
7620 cli_state_set_uid(cli
, old_vuid
);
7622 /* Try an operation. */
7623 status
= cli_mkdir(cli
, "\\uid_reg_test");
7624 if (NT_STATUS_IS_OK(status
)) {
7625 d_printf("(%s) cli_mkdir succeeded\n",
7630 /* Should be bad uid. */
7631 if (!check_error(__LINE__
, status
, ERRSRV
, ERRbaduid
,
7632 NT_STATUS_USER_SESSION_DELETED
)) {
7638 old_cnum
= cli_state_get_tid(cli
);
7640 /* Now try a SMBtdis with the invald vuid set to zero. */
7641 cli_state_set_uid(cli
, 0);
7643 /* This should succeed. */
7644 status
= cli_tdis(cli
);
7646 if (NT_STATUS_IS_OK(status
)) {
7647 d_printf("First tdis with invalid vuid should succeed.\n");
7649 d_printf("First tdis failed (%s)\n", nt_errstr(status
));
7654 cli_state_set_uid(cli
, old_vuid
);
7655 cli_state_set_tid(cli
, old_cnum
);
7657 /* This should fail. */
7658 status
= cli_tdis(cli
);
7659 if (NT_STATUS_IS_OK(status
)) {
7660 d_printf("Second tdis with invalid vuid should fail - succeeded instead !.\n");
7664 /* Should be bad tid. */
7665 if (!check_error(__LINE__
, status
, ERRSRV
, ERRinvnid
,
7666 NT_STATUS_NETWORK_NAME_DELETED
)) {
7672 cli_rmdir(cli
, "\\uid_reg_test");
7681 static const char *illegal_chars
= "*\\/?<>|\":";
7682 static char force_shortname_chars
[] = " +,.[];=\177";
7684 static NTSTATUS
shortname_del_fn(const char *mnt
, struct file_info
*finfo
,
7685 const char *mask
, void *state
)
7687 struct cli_state
*pcli
= (struct cli_state
*)state
;
7689 NTSTATUS status
= NT_STATUS_OK
;
7691 slprintf(fname
, sizeof(fname
), "\\shortname\\%s", finfo
->name
);
7693 if (strcmp(finfo
->name
, ".") == 0 || strcmp(finfo
->name
, "..") == 0)
7694 return NT_STATUS_OK
;
7696 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
7697 status
= cli_rmdir(pcli
, fname
);
7698 if (!NT_STATUS_IS_OK(status
)) {
7699 printf("del_fn: failed to rmdir %s\n,", fname
);
7702 status
= cli_unlink(pcli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
7703 if (!NT_STATUS_IS_OK(status
)) {
7704 printf("del_fn: failed to unlink %s\n,", fname
);
7716 static NTSTATUS
shortname_list_fn(const char *mnt
, struct file_info
*finfo
,
7717 const char *name
, void *state
)
7719 struct sn_state
*s
= (struct sn_state
*)state
;
7723 printf("shortname list: i = %d, name = |%s|, shortname = |%s|\n",
7724 i
, finfo
->name
, finfo
->short_name
);
7727 if (strchr(force_shortname_chars
, i
)) {
7728 if (!finfo
->short_name
) {
7729 /* Shortname not created when it should be. */
7730 d_printf("(%s) ERROR: Shortname was not created for file %s containing %d\n",
7731 __location__
, finfo
->name
, i
);
7734 } else if (finfo
->short_name
){
7735 /* Shortname created when it should not be. */
7736 d_printf("(%s) ERROR: Shortname %s was created for file %s\n",
7737 __location__
, finfo
->short_name
, finfo
->name
);
7741 return NT_STATUS_OK
;
7744 static bool run_shortname_test(int dummy
)
7746 static struct cli_state
*cli
;
7747 bool correct
= True
;
7753 printf("starting shortname test\n");
7755 if (!torture_open_connection(&cli
, 0)) {
7759 smbXcli_conn_set_sockopt(cli
->conn
, sockops
);
7761 cli_list(cli
, "\\shortname\\*", 0, shortname_del_fn
, cli
);
7762 cli_list(cli
, "\\shortname\\*", FILE_ATTRIBUTE_DIRECTORY
, shortname_del_fn
, cli
);
7763 cli_rmdir(cli
, "\\shortname");
7765 status
= cli_mkdir(cli
, "\\shortname");
7766 if (!NT_STATUS_IS_OK(status
)) {
7767 d_printf("(%s) cli_mkdir of \\shortname failed: %s\n",
7768 __location__
, nt_errstr(status
));
7773 if (strlcpy(fname
, "\\shortname\\", sizeof(fname
)) >= sizeof(fname
)) {
7777 if (strlcat(fname
, "test .txt", sizeof(fname
)) >= sizeof(fname
)) {
7784 for (i
= 32; i
< 128; i
++) {
7785 uint16_t fnum
= (uint16_t)-1;
7789 if (strchr(illegal_chars
, i
)) {
7794 status
= cli_ntcreate(cli
, fname
, 0, GENERIC_ALL_ACCESS
, FILE_ATTRIBUTE_NORMAL
,
7795 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OVERWRITE_IF
, 0, 0, &fnum
);
7796 if (!NT_STATUS_IS_OK(status
)) {
7797 d_printf("(%s) cli_nt_create of %s failed: %s\n",
7798 __location__
, fname
, nt_errstr(status
));
7802 cli_close(cli
, fnum
);
7805 status
= cli_list(cli
, "\\shortname\\test*.*", 0,
7806 shortname_list_fn
, &s
);
7807 if (s
.matched
!= 1) {
7808 d_printf("(%s) failed to list %s: %s\n",
7809 __location__
, fname
, nt_errstr(status
));
7814 status
= cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
7815 if (!NT_STATUS_IS_OK(status
)) {
7816 d_printf("(%s) failed to delete %s: %s\n",
7817 __location__
, fname
, nt_errstr(status
));
7830 cli_list(cli
, "\\shortname\\*", 0, shortname_del_fn
, cli
);
7831 cli_list(cli
, "\\shortname\\*", FILE_ATTRIBUTE_DIRECTORY
, shortname_del_fn
, cli
);
7832 cli_rmdir(cli
, "\\shortname");
7833 torture_close_connection(cli
);
7837 static void pagedsearch_cb(struct tevent_req
*req
)
7840 struct tldap_message
*msg
;
7843 rc
= tldap_search_paged_recv(req
, talloc_tos(), &msg
);
7844 if (rc
!= TLDAP_SUCCESS
) {
7845 d_printf("tldap_search_paged_recv failed: %s\n",
7846 tldap_err2string(rc
));
7849 if (tldap_msg_type(msg
) != TLDAP_RES_SEARCH_ENTRY
) {
7853 if (!tldap_entry_dn(msg
, &dn
)) {
7854 d_printf("tldap_entry_dn failed\n");
7857 d_printf("%s\n", dn
);
7861 static bool run_tldap(int dummy
)
7863 struct tldap_context
*ld
;
7866 struct sockaddr_storage addr
;
7867 struct tevent_context
*ev
;
7868 struct tevent_req
*req
;
7872 if (!resolve_name(host
, &addr
, 0, false)) {
7873 d_printf("could not find host %s\n", host
);
7876 status
= open_socket_out(&addr
, 389, 9999, &fd
);
7877 if (!NT_STATUS_IS_OK(status
)) {
7878 d_printf("open_socket_out failed: %s\n", nt_errstr(status
));
7882 ld
= tldap_context_create(talloc_tos(), fd
);
7885 d_printf("tldap_context_create failed\n");
7889 rc
= tldap_fetch_rootdse(ld
);
7890 if (rc
!= TLDAP_SUCCESS
) {
7891 d_printf("tldap_fetch_rootdse failed: %s\n",
7892 tldap_errstr(talloc_tos(), ld
, rc
));
7896 basedn
= tldap_talloc_single_attribute(
7897 tldap_rootdse(ld
), "defaultNamingContext", talloc_tos());
7898 if (basedn
== NULL
) {
7899 d_printf("no defaultNamingContext\n");
7902 d_printf("defaultNamingContext: %s\n", basedn
);
7904 ev
= samba_tevent_context_init(talloc_tos());
7906 d_printf("tevent_context_init failed\n");
7910 req
= tldap_search_paged_send(talloc_tos(), ev
, ld
, basedn
,
7911 TLDAP_SCOPE_SUB
, "(objectclass=*)",
7913 NULL
, 0, NULL
, 0, 0, 0, 0, 5);
7915 d_printf("tldap_search_paged_send failed\n");
7918 tevent_req_set_callback(req
, pagedsearch_cb
, NULL
);
7920 tevent_req_poll(req
, ev
);
7924 /* test search filters against rootDSE */
7925 filter
= "(&(|(name=samba)(nextRid<=10000000)(usnChanged>=10)(samba~=ambas)(!(name=s*m*a)))"
7926 "(|(name:=samba)(name:dn:2.5.13.5:=samba)(:dn:2.5.13.5:=samba)(!(name=*samba))))";
7928 rc
= tldap_search(ld
, "", TLDAP_SCOPE_BASE
, filter
,
7929 NULL
, 0, 0, NULL
, 0, NULL
, 0, 0, 0, 0,
7930 talloc_tos(), NULL
, NULL
);
7931 if (rc
!= TLDAP_SUCCESS
) {
7932 d_printf("tldap_search with complex filter failed: %s\n",
7933 tldap_errstr(talloc_tos(), ld
, rc
));
7941 /* Torture test to ensure no regression of :
7942 https://bugzilla.samba.org/show_bug.cgi?id=7084
7945 static bool run_dir_createtime(int dummy
)
7947 struct cli_state
*cli
;
7948 const char *dname
= "\\testdir";
7949 const char *fname
= "\\testdir\\testfile";
7951 struct timespec create_time
;
7952 struct timespec create_time1
;
7956 if (!torture_open_connection(&cli
, 0)) {
7960 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
7961 cli_rmdir(cli
, dname
);
7963 status
= cli_mkdir(cli
, dname
);
7964 if (!NT_STATUS_IS_OK(status
)) {
7965 printf("mkdir failed: %s\n", nt_errstr(status
));
7969 status
= cli_qpathinfo2(cli
, dname
, &create_time
, NULL
, NULL
, NULL
,
7971 if (!NT_STATUS_IS_OK(status
)) {
7972 printf("cli_qpathinfo2 returned %s\n",
7977 /* Sleep 3 seconds, then create a file. */
7980 status
= cli_openx(cli
, fname
, O_RDWR
| O_CREAT
| O_EXCL
,
7982 if (!NT_STATUS_IS_OK(status
)) {
7983 printf("cli_openx failed: %s\n", nt_errstr(status
));
7987 status
= cli_qpathinfo2(cli
, dname
, &create_time1
, NULL
, NULL
, NULL
,
7989 if (!NT_STATUS_IS_OK(status
)) {
7990 printf("cli_qpathinfo2 (2) returned %s\n",
7995 if (timespec_compare(&create_time1
, &create_time
)) {
7996 printf("run_dir_createtime: create time was updated (error)\n");
7998 printf("run_dir_createtime: create time was not updated (correct)\n");
8004 cli_unlink(cli
, fname
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
8005 cli_rmdir(cli
, dname
);
8006 if (!torture_close_connection(cli
)) {
8013 static bool run_streamerror(int dummy
)
8015 struct cli_state
*cli
;
8016 const char *dname
= "\\testdir";
8017 const char *streamname
=
8018 "testdir:{4c8cc155-6c1e-11d1-8e41-00c04fb9386d}:$DATA";
8020 time_t change_time
, access_time
, write_time
;
8022 uint16_t mode
, fnum
;
8025 if (!torture_open_connection(&cli
, 0)) {
8029 cli_unlink(cli
, "\\testdir\\*", FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
8030 cli_rmdir(cli
, dname
);
8032 status
= cli_mkdir(cli
, dname
);
8033 if (!NT_STATUS_IS_OK(status
)) {
8034 printf("mkdir failed: %s\n", nt_errstr(status
));
8038 status
= cli_qpathinfo1(cli
, streamname
, &change_time
, &access_time
,
8039 &write_time
, &size
, &mode
);
8040 if (!NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
8041 printf("pathinfo returned %s, expected "
8042 "NT_STATUS_OBJECT_NAME_NOT_FOUND\n",
8047 status
= cli_ntcreate(cli
, streamname
, 0x16,
8048 FILE_READ_DATA
|FILE_READ_EA
|
8049 FILE_READ_ATTRIBUTES
|READ_CONTROL_ACCESS
,
8050 FILE_ATTRIBUTE_NORMAL
, FILE_SHARE_READ
,
8051 FILE_OPEN
, 0, 0, &fnum
);
8053 if (!NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
8054 printf("ntcreate returned %s, expected "
8055 "NT_STATUS_OBJECT_NAME_NOT_FOUND\n",
8061 cli_rmdir(cli
, dname
);
8065 static bool run_local_substitute(int dummy
)
8069 ok
&= subst_test("%U", "bla", "", -1, -1, "bla");
8070 ok
&= subst_test("%u%U", "bla", "", -1, -1, "blabla");
8071 ok
&= subst_test("%g", "", "", -1, -1, "NO_GROUP");
8072 ok
&= subst_test("%G", "", "", -1, -1, "NO_GROUP");
8073 ok
&= subst_test("%g", "", "", -1, 0, gidtoname(0));
8074 ok
&= subst_test("%G", "", "", -1, 0, gidtoname(0));
8075 ok
&= subst_test("%D%u", "u", "dom", -1, 0, "domu");
8076 ok
&= subst_test("%i %I", "", "", -1, -1, "0.0.0.0 0.0.0.0");
8078 /* Different captialization rules in sub_basic... */
8080 ok
&= (strcmp(talloc_sub_basic(talloc_tos(), "BLA", "dom", "%U%D"),
8086 static bool run_local_base64(int dummy
)
8091 for (i
=1; i
<2000; i
++) {
8092 DATA_BLOB blob1
, blob2
;
8095 blob1
.data
= talloc_array(talloc_tos(), uint8_t, i
);
8097 generate_random_buffer(blob1
.data
, blob1
.length
);
8099 b64
= base64_encode_data_blob(talloc_tos(), blob1
);
8101 d_fprintf(stderr
, "base64_encode_data_blob failed "
8102 "for %d bytes\n", i
);
8105 blob2
= base64_decode_data_blob(b64
);
8108 if (data_blob_cmp(&blob1
, &blob2
)) {
8109 d_fprintf(stderr
, "data_blob_cmp failed for %d "
8113 TALLOC_FREE(blob1
.data
);
8114 data_blob_free(&blob2
);
8119 static bool run_local_gencache(int dummy
)
8126 if (!gencache_set("foo", "bar", time(NULL
) + 1000)) {
8127 d_printf("%s: gencache_set() failed\n", __location__
);
8131 if (!gencache_get("foo", NULL
, NULL
, NULL
)) {
8132 d_printf("%s: gencache_get() failed\n", __location__
);
8136 if (!gencache_get("foo", talloc_tos(), &val
, &tm
)) {
8137 d_printf("%s: gencache_get() failed\n", __location__
);
8141 if (strcmp(val
, "bar") != 0) {
8142 d_printf("%s: gencache_get() returned %s, expected %s\n",
8143 __location__
, val
, "bar");
8150 if (!gencache_del("foo")) {
8151 d_printf("%s: gencache_del() failed\n", __location__
);
8154 if (gencache_del("foo")) {
8155 d_printf("%s: second gencache_del() succeeded\n",
8160 if (gencache_get("foo", talloc_tos(), &val
, &tm
)) {
8161 d_printf("%s: gencache_get() on deleted entry "
8162 "succeeded\n", __location__
);
8166 blob
= data_blob_string_const_null("bar");
8167 tm
= time(NULL
) + 60;
8169 if (!gencache_set_data_blob("foo", &blob
, tm
)) {
8170 d_printf("%s: gencache_set_data_blob() failed\n", __location__
);
8174 if (!gencache_get_data_blob("foo", talloc_tos(), &blob
, NULL
, NULL
)) {
8175 d_printf("%s: gencache_get_data_blob() failed\n", __location__
);
8179 if (strcmp((const char *)blob
.data
, "bar") != 0) {
8180 d_printf("%s: gencache_get_data_blob() returned %s, expected %s\n",
8181 __location__
, (const char *)blob
.data
, "bar");
8182 data_blob_free(&blob
);
8186 data_blob_free(&blob
);
8188 if (!gencache_del("foo")) {
8189 d_printf("%s: gencache_del() failed\n", __location__
);
8192 if (gencache_del("foo")) {
8193 d_printf("%s: second gencache_del() succeeded\n",
8198 if (gencache_get_data_blob("foo", talloc_tos(), &blob
, NULL
, NULL
)) {
8199 d_printf("%s: gencache_get_data_blob() on deleted entry "
8200 "succeeded\n", __location__
);
8205 blob
.data
= (uint8_t *)&v
;
8206 blob
.length
= sizeof(v
);
8208 if (!gencache_set_data_blob("blob", &blob
, tm
)) {
8209 d_printf("%s: gencache_set_data_blob() failed\n",
8213 if (gencache_get("blob", talloc_tos(), &val
, &tm
)) {
8214 d_printf("%s: gencache_get succeeded\n", __location__
);
8221 static bool rbt_testval(struct db_context
*db
, const char *key
,
8224 struct db_record
*rec
;
8225 TDB_DATA data
= string_tdb_data(value
);
8230 rec
= dbwrap_fetch_locked(db
, db
, string_tdb_data(key
));
8232 d_fprintf(stderr
, "fetch_locked failed\n");
8235 status
= dbwrap_record_store(rec
, data
, 0);
8236 if (!NT_STATUS_IS_OK(status
)) {
8237 d_fprintf(stderr
, "store failed: %s\n", nt_errstr(status
));
8242 rec
= dbwrap_fetch_locked(db
, db
, string_tdb_data(key
));
8244 d_fprintf(stderr
, "second fetch_locked failed\n");
8248 dbvalue
= dbwrap_record_get_value(rec
);
8249 if ((dbvalue
.dsize
!= data
.dsize
)
8250 || (memcmp(dbvalue
.dptr
, data
.dptr
, data
.dsize
) != 0)) {
8251 d_fprintf(stderr
, "Got wrong data back\n");
8261 static bool run_local_rbtree(int dummy
)
8263 struct db_context
*db
;
8267 db
= db_open_rbt(NULL
);
8270 d_fprintf(stderr
, "db_open_rbt failed\n");
8274 for (i
=0; i
<1000; i
++) {
8277 if (asprintf(&key
, "key%ld", random()) == -1) {
8280 if (asprintf(&value
, "value%ld", random()) == -1) {
8285 if (!rbt_testval(db
, key
, value
)) {
8292 if (asprintf(&value
, "value%ld", random()) == -1) {
8297 if (!rbt_testval(db
, key
, value
)) {
8316 local test for character set functions
8318 This is a very simple test for the functionality in convert_string_error()
8320 static bool run_local_convert_string(int dummy
)
8322 TALLOC_CTX
*tmp_ctx
= talloc_new(NULL
);
8323 const char *test_strings
[2] = { "March", "M\303\244rz" };
8327 for (i
=0; i
<2; i
++) {
8328 const char *str
= test_strings
[i
];
8329 int len
= strlen(str
);
8330 size_t converted_size
;
8333 memset(dst
, 'X', sizeof(dst
));
8335 /* first try with real source length */
8336 ret
= convert_string_error(CH_UNIX
, CH_UTF8
,
8341 d_fprintf(stderr
, "Failed to convert '%s' to CH_DISPLAY\n", str
);
8345 if (converted_size
!= len
) {
8346 d_fprintf(stderr
, "Converted size of '%s' should be %d - got %d\n",
8347 str
, len
, (int)converted_size
);
8351 if (strncmp(str
, dst
, converted_size
) != 0) {
8352 d_fprintf(stderr
, "Expected '%s' to match '%s'\n", str
, dst
);
8356 if (strlen(str
) != converted_size
) {
8357 d_fprintf(stderr
, "Expected '%s' length %d - got %d\n", str
,
8358 (int)strlen(str
), (int)converted_size
);
8362 if (dst
[converted_size
] != 'X') {
8363 d_fprintf(stderr
, "Expected no termination of '%s'\n", dst
);
8367 /* now with srclen==-1, this causes the nul to be
8369 ret
= convert_string_error(CH_UNIX
, CH_UTF8
,
8374 d_fprintf(stderr
, "Failed to convert '%s' to CH_DISPLAY\n", str
);
8378 if (converted_size
!= len
+1) {
8379 d_fprintf(stderr
, "Converted size of '%s' should be %d - got %d\n",
8380 str
, len
, (int)converted_size
);
8384 if (strncmp(str
, dst
, converted_size
) != 0) {
8385 d_fprintf(stderr
, "Expected '%s' to match '%s'\n", str
, dst
);
8389 if (len
+1 != converted_size
) {
8390 d_fprintf(stderr
, "Expected '%s' length %d - got %d\n", str
,
8391 len
+1, (int)converted_size
);
8395 if (dst
[converted_size
] != 'X') {
8396 d_fprintf(stderr
, "Expected no termination of '%s'\n", dst
);
8403 TALLOC_FREE(tmp_ctx
);
8406 TALLOC_FREE(tmp_ctx
);
8411 struct talloc_dict_test
{
8415 static int talloc_dict_traverse_fn(DATA_BLOB key
, void *data
, void *priv
)
8417 int *count
= (int *)priv
;
8422 static bool run_local_talloc_dict(int dummy
)
8424 struct talloc_dict
*dict
;
8425 struct talloc_dict_test
*t
;
8426 int key
, count
, res
;
8429 dict
= talloc_dict_init(talloc_tos());
8434 t
= talloc(talloc_tos(), struct talloc_dict_test
);
8441 ok
= talloc_dict_set(dict
, data_blob_const(&key
, sizeof(key
)), &t
);
8447 res
= talloc_dict_traverse(dict
, talloc_dict_traverse_fn
, &count
);
8465 static bool run_local_string_to_sid(int dummy
) {
8468 if (string_to_sid(&sid
, "S--1-5-32-545")) {
8469 printf("allowing S--1-5-32-545\n");
8472 if (string_to_sid(&sid
, "S-1-5-32-+545")) {
8473 printf("allowing S-1-5-32-+545\n");
8476 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")) {
8477 printf("allowing S-1-2-3-4-5-6-7-8-9-0-1-2-3-4-5-6-7-8-9-0\n");
8480 if (string_to_sid(&sid
, "S-1-5-32-545-abc")) {
8481 printf("allowing S-1-5-32-545-abc\n");
8484 if (string_to_sid(&sid
, "S-300-5-32-545")) {
8485 printf("allowing S-300-5-32-545\n");
8488 if (string_to_sid(&sid
, "S-1-0xfffffffffffffe-32-545")) {
8489 printf("allowing S-1-0xfffffffffffffe-32-545\n");
8492 if (string_to_sid(&sid
, "S-1-0xffffffffffff-5294967297-545")) {
8493 printf("allowing S-1-0xffffffffffff-5294967297-545\n");
8496 if (!string_to_sid(&sid
, "S-1-0xfffffffffffe-32-545")) {
8497 printf("could not parse S-1-0xfffffffffffe-32-545\n");
8500 if (!string_to_sid(&sid
, "S-1-5-32-545")) {
8501 printf("could not parse S-1-5-32-545\n");
8504 if (!dom_sid_equal(&sid
, &global_sid_Builtin_Users
)) {
8505 printf("mis-parsed S-1-5-32-545 as %s\n",
8506 sid_string_tos(&sid
));
8512 static bool sid_to_string_test(const char *expected
) {
8517 if (!string_to_sid(&sid
, expected
)) {
8518 printf("could not parse %s\n", expected
);
8522 str
= dom_sid_string(NULL
, &sid
);
8523 if (strcmp(str
, expected
)) {
8524 printf("Comparison failed (%s != %s)\n", str
, expected
);
8531 static bool run_local_sid_to_string(int dummy
) {
8532 if (!sid_to_string_test("S-1-0xffffffffffff-1-1-1-1-1-1-1-1-1-1-1-1"))
8534 if (!sid_to_string_test("S-1-545"))
8536 if (!sid_to_string_test("S-255-3840-1-1-1-1"))
8541 static bool run_local_binary_to_sid(int dummy
) {
8542 struct dom_sid
*sid
= talloc(NULL
, struct dom_sid
);
8543 static const char good_binary_sid
[] = {
8544 0x1, /* revision number */
8546 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8547 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8548 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8549 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8550 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8551 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8552 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8553 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8554 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8555 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8556 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8557 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8558 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8559 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8560 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8561 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8564 static const char long_binary_sid
[] = {
8565 0x1, /* revision number */
8567 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8568 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8569 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8570 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8571 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8572 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8573 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8574 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8575 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8576 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8577 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8578 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8579 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8580 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8581 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8582 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8583 0x1, 0x1, 0x1, 0x1, /* auth[15] */
8584 0x1, 0x1, 0x1, 0x1, /* auth[16] */
8585 0x1, 0x1, 0x1, 0x1, /* auth[17] */
8588 static const char long_binary_sid2
[] = {
8589 0x1, /* revision number */
8591 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, /* id_auth */
8592 0x1, 0x1, 0x1, 0x1, /* auth[0] */
8593 0x1, 0x1, 0x1, 0x1, /* auth[1] */
8594 0x1, 0x1, 0x1, 0x1, /* auth[2] */
8595 0x1, 0x1, 0x1, 0x1, /* auth[3] */
8596 0x1, 0x1, 0x1, 0x1, /* auth[4] */
8597 0x1, 0x1, 0x1, 0x1, /* auth[5] */
8598 0x1, 0x1, 0x1, 0x1, /* auth[6] */
8599 0x1, 0x1, 0x1, 0x1, /* auth[7] */
8600 0x1, 0x1, 0x1, 0x1, /* auth[8] */
8601 0x1, 0x1, 0x1, 0x1, /* auth[9] */
8602 0x1, 0x1, 0x1, 0x1, /* auth[10] */
8603 0x1, 0x1, 0x1, 0x1, /* auth[11] */
8604 0x1, 0x1, 0x1, 0x1, /* auth[12] */
8605 0x1, 0x1, 0x1, 0x1, /* auth[13] */
8606 0x1, 0x1, 0x1, 0x1, /* auth[14] */
8607 0x1, 0x1, 0x1, 0x1, /* auth[15] */
8608 0x1, 0x1, 0x1, 0x1, /* auth[16] */
8609 0x1, 0x1, 0x1, 0x1, /* auth[17] */
8610 0x1, 0x1, 0x1, 0x1, /* auth[18] */
8611 0x1, 0x1, 0x1, 0x1, /* auth[19] */
8612 0x1, 0x1, 0x1, 0x1, /* auth[20] */
8613 0x1, 0x1, 0x1, 0x1, /* auth[21] */
8614 0x1, 0x1, 0x1, 0x1, /* auth[22] */
8615 0x1, 0x1, 0x1, 0x1, /* auth[23] */
8616 0x1, 0x1, 0x1, 0x1, /* auth[24] */
8617 0x1, 0x1, 0x1, 0x1, /* auth[25] */
8618 0x1, 0x1, 0x1, 0x1, /* auth[26] */
8619 0x1, 0x1, 0x1, 0x1, /* auth[27] */
8620 0x1, 0x1, 0x1, 0x1, /* auth[28] */
8621 0x1, 0x1, 0x1, 0x1, /* auth[29] */
8622 0x1, 0x1, 0x1, 0x1, /* auth[30] */
8623 0x1, 0x1, 0x1, 0x1, /* auth[31] */
8626 if (!sid_parse(good_binary_sid
, sizeof(good_binary_sid
), sid
)) {
8629 if (sid_parse(long_binary_sid2
, sizeof(long_binary_sid2
), sid
)) {
8632 if (sid_parse(long_binary_sid
, sizeof(long_binary_sid
), sid
)) {
8638 /* Split a path name into filename and stream name components. Canonicalise
8639 * such that an implicit $DATA token is always explicit.
8641 * The "specification" of this function can be found in the
8642 * run_local_stream_name() function in torture.c, I've tried those
8643 * combinations against a W2k3 server.
8646 static NTSTATUS
split_ntfs_stream_name(TALLOC_CTX
*mem_ctx
, const char *fname
,
8647 char **pbase
, char **pstream
)
8650 char *stream
= NULL
;
8651 char *sname
; /* stream name */
8652 const char *stype
; /* stream type */
8654 DEBUG(10, ("split_ntfs_stream_name called for [%s]\n", fname
));
8656 sname
= strchr_m(fname
, ':');
8658 if (lp_posix_pathnames() || (sname
== NULL
)) {
8659 if (pbase
!= NULL
) {
8660 base
= talloc_strdup(mem_ctx
, fname
);
8661 NT_STATUS_HAVE_NO_MEMORY(base
);
8666 if (pbase
!= NULL
) {
8667 base
= talloc_strndup(mem_ctx
, fname
, PTR_DIFF(sname
, fname
));
8668 NT_STATUS_HAVE_NO_MEMORY(base
);
8673 stype
= strchr_m(sname
, ':');
8675 if (stype
== NULL
) {
8676 sname
= talloc_strdup(mem_ctx
, sname
);
8680 if (strcasecmp_m(stype
, ":$DATA") != 0) {
8682 * If there is an explicit stream type, so far we only
8683 * allow $DATA. Is there anything else allowed? -- vl
8685 DEBUG(10, ("[%s] is an invalid stream type\n", stype
));
8687 return NT_STATUS_OBJECT_NAME_INVALID
;
8689 sname
= talloc_strndup(mem_ctx
, sname
, PTR_DIFF(stype
, sname
));
8693 if (sname
== NULL
) {
8695 return NT_STATUS_NO_MEMORY
;
8698 if (sname
[0] == '\0') {
8700 * no stream name, so no stream
8705 if (pstream
!= NULL
) {
8706 stream
= talloc_asprintf(mem_ctx
, "%s:%s", sname
, stype
);
8707 if (stream
== NULL
) {
8710 return NT_STATUS_NO_MEMORY
;
8713 * upper-case the type field
8715 (void)strupper_m(strchr_m(stream
, ':')+1);
8719 if (pbase
!= NULL
) {
8722 if (pstream
!= NULL
) {
8725 return NT_STATUS_OK
;
8728 static bool test_stream_name(const char *fname
, const char *expected_base
,
8729 const char *expected_stream
,
8730 NTSTATUS expected_status
)
8734 char *stream
= NULL
;
8736 status
= split_ntfs_stream_name(talloc_tos(), fname
, &base
, &stream
);
8737 if (!NT_STATUS_EQUAL(status
, expected_status
)) {
8741 if (!NT_STATUS_IS_OK(status
)) {
8745 if (base
== NULL
) goto error
;
8747 if (strcmp(expected_base
, base
) != 0) goto error
;
8749 if ((expected_stream
!= NULL
) && (stream
== NULL
)) goto error
;
8750 if ((expected_stream
== NULL
) && (stream
!= NULL
)) goto error
;
8752 if ((stream
!= NULL
) && (strcmp(expected_stream
, stream
) != 0))
8756 TALLOC_FREE(stream
);
8760 d_fprintf(stderr
, "Do test_stream(%s, %s, %s, %s)\n",
8761 fname
, expected_base
? expected_base
: "<NULL>",
8762 expected_stream
? expected_stream
: "<NULL>",
8763 nt_errstr(expected_status
));
8764 d_fprintf(stderr
, "-> base=%s, stream=%s, status=%s\n",
8765 base
? base
: "<NULL>", stream
? stream
: "<NULL>",
8768 TALLOC_FREE(stream
);
8772 static bool run_local_stream_name(int dummy
)
8776 ret
&= test_stream_name(
8777 "bla", "bla", NULL
, NT_STATUS_OK
);
8778 ret
&= test_stream_name(
8779 "bla::$DATA", "bla", NULL
, NT_STATUS_OK
);
8780 ret
&= test_stream_name(
8781 "bla:blub:", "bla", NULL
, NT_STATUS_OBJECT_NAME_INVALID
);
8782 ret
&= test_stream_name(
8783 "bla::", NULL
, NULL
, NT_STATUS_OBJECT_NAME_INVALID
);
8784 ret
&= test_stream_name(
8785 "bla::123", "bla", NULL
, NT_STATUS_OBJECT_NAME_INVALID
);
8786 ret
&= test_stream_name(
8787 "bla:$DATA", "bla", "$DATA:$DATA", NT_STATUS_OK
);
8788 ret
&= test_stream_name(
8789 "bla:x:$DATA", "bla", "x:$DATA", NT_STATUS_OK
);
8790 ret
&= test_stream_name(
8791 "bla:x", "bla", "x:$DATA", NT_STATUS_OK
);
8796 static bool data_blob_equal(DATA_BLOB a
, DATA_BLOB b
)
8798 if (a
.length
!= b
.length
) {
8799 printf("a.length=%d != b.length=%d\n",
8800 (int)a
.length
, (int)b
.length
);
8803 if (memcmp(a
.data
, b
.data
, a
.length
) != 0) {
8804 printf("a.data and b.data differ\n");
8810 static bool run_local_memcache(int dummy
)
8812 struct memcache
*cache
;
8814 DATA_BLOB d1
, d2
, d3
;
8815 DATA_BLOB v1
, v2
, v3
;
8817 TALLOC_CTX
*mem_ctx
;
8819 size_t size1
, size2
;
8822 cache
= memcache_init(NULL
, sizeof(void *) == 8 ? 200 : 100);
8824 if (cache
== NULL
) {
8825 printf("memcache_init failed\n");
8829 d1
= data_blob_const("d1", 2);
8830 d2
= data_blob_const("d2", 2);
8831 d3
= data_blob_const("d3", 2);
8833 k1
= data_blob_const("d1", 2);
8834 k2
= data_blob_const("d2", 2);
8836 memcache_add(cache
, STAT_CACHE
, k1
, d1
);
8837 memcache_add(cache
, GETWD_CACHE
, k2
, d2
);
8839 if (!memcache_lookup(cache
, STAT_CACHE
, k1
, &v1
)) {
8840 printf("could not find k1\n");
8843 if (!data_blob_equal(d1
, v1
)) {
8847 if (!memcache_lookup(cache
, GETWD_CACHE
, k2
, &v2
)) {
8848 printf("could not find k2\n");
8851 if (!data_blob_equal(d2
, v2
)) {
8855 memcache_add(cache
, STAT_CACHE
, k1
, d3
);
8857 if (!memcache_lookup(cache
, STAT_CACHE
, k1
, &v3
)) {
8858 printf("could not find replaced k1\n");
8861 if (!data_blob_equal(d3
, v3
)) {
8865 memcache_add(cache
, GETWD_CACHE
, k1
, d1
);
8867 if (memcache_lookup(cache
, GETWD_CACHE
, k2
, &v2
)) {
8868 printf("Did find k2, should have been purged\n");
8874 cache
= memcache_init(NULL
, 0);
8876 mem_ctx
= talloc_init("foo");
8878 str1
= talloc_strdup(mem_ctx
, "string1");
8879 str2
= talloc_strdup(mem_ctx
, "string2");
8881 memcache_add_talloc(cache
, SINGLETON_CACHE_TALLOC
,
8882 data_blob_string_const("torture"), &str1
);
8883 size1
= talloc_total_size(cache
);
8885 memcache_add_talloc(cache
, SINGLETON_CACHE_TALLOC
,
8886 data_blob_string_const("torture"), &str2
);
8887 size2
= talloc_total_size(cache
);
8889 printf("size1=%d, size2=%d\n", (int)size1
, (int)size2
);
8891 if (size2
> size1
) {
8892 printf("memcache leaks memory!\n");
8902 static void wbclient_done(struct tevent_req
*req
)
8905 struct winbindd_response
*wb_resp
;
8906 int *i
= (int *)tevent_req_callback_data_void(req
);
8908 wbc_err
= wb_trans_recv(req
, req
, &wb_resp
);
8911 d_printf("wb_trans_recv %d returned %s\n", *i
, wbcErrorString(wbc_err
));
8914 static bool run_local_wbclient(int dummy
)
8916 struct tevent_context
*ev
;
8917 struct wb_context
**wb_ctx
;
8918 struct winbindd_request wb_req
;
8919 bool result
= false;
8922 BlockSignals(True
, SIGPIPE
);
8924 ev
= tevent_context_init(talloc_tos());
8929 wb_ctx
= talloc_array(ev
, struct wb_context
*, torture_nprocs
);
8930 if (wb_ctx
== NULL
) {
8934 ZERO_STRUCT(wb_req
);
8935 wb_req
.cmd
= WINBINDD_PING
;
8937 d_printf("torture_nprocs=%d, numops=%d\n", (int)torture_nprocs
, (int)torture_numops
);
8939 for (i
=0; i
<torture_nprocs
; i
++) {
8940 wb_ctx
[i
] = wb_context_init(ev
, NULL
);
8941 if (wb_ctx
[i
] == NULL
) {
8944 for (j
=0; j
<torture_numops
; j
++) {
8945 struct tevent_req
*req
;
8946 req
= wb_trans_send(ev
, ev
, wb_ctx
[i
],
8947 (j
% 2) == 0, &wb_req
);
8951 tevent_req_set_callback(req
, wbclient_done
, &i
);
8957 while (i
< torture_nprocs
* torture_numops
) {
8958 tevent_loop_once(ev
);
8967 static void getaddrinfo_finished(struct tevent_req
*req
)
8969 char *name
= (char *)tevent_req_callback_data_void(req
);
8970 struct addrinfo
*ainfo
;
8973 res
= getaddrinfo_recv(req
, &ainfo
);
8975 d_printf("gai(%s) returned %s\n", name
, gai_strerror(res
));
8978 d_printf("gai(%s) succeeded\n", name
);
8979 freeaddrinfo(ainfo
);
8982 static bool run_getaddrinfo_send(int dummy
)
8984 TALLOC_CTX
*frame
= talloc_stackframe();
8985 struct fncall_context
*ctx
;
8986 struct tevent_context
*ev
;
8987 bool result
= false;
8988 const char *names
[4] = { "www.samba.org", "notfound.samba.org",
8989 "www.slashdot.org", "heise.de" };
8990 struct tevent_req
*reqs
[4];
8993 ev
= samba_tevent_context_init(frame
);
8998 ctx
= fncall_context_init(frame
, 4);
9000 for (i
=0; i
<ARRAY_SIZE(names
); i
++) {
9001 reqs
[i
] = getaddrinfo_send(frame
, ev
, ctx
, names
[i
], NULL
,
9003 if (reqs
[i
] == NULL
) {
9006 tevent_req_set_callback(reqs
[i
], getaddrinfo_finished
,
9007 discard_const_p(void, names
[i
]));
9010 for (i
=0; i
<ARRAY_SIZE(reqs
); i
++) {
9011 tevent_loop_once(ev
);
9020 static bool dbtrans_inc(struct db_context
*db
)
9022 struct db_record
*rec
;
9028 rec
= dbwrap_fetch_locked(db
, db
, string_term_tdb_data("transtest"));
9030 printf(__location__
"fetch_lock failed\n");
9034 value
= dbwrap_record_get_value(rec
);
9036 if (value
.dsize
!= sizeof(uint32_t)) {
9037 printf(__location__
"value.dsize = %d\n",
9042 memcpy(&val
, value
.dptr
, sizeof(val
));
9045 status
= dbwrap_record_store(
9046 rec
, make_tdb_data((uint8_t *)&val
, sizeof(val
)), 0);
9047 if (!NT_STATUS_IS_OK(status
)) {
9048 printf(__location__
"store failed: %s\n",
9059 static bool run_local_dbtrans(int dummy
)
9061 struct db_context
*db
;
9062 struct db_record
*rec
;
9068 db
= db_open(talloc_tos(), "transtest.tdb", 0, TDB_DEFAULT
,
9069 O_RDWR
|O_CREAT
, 0600, DBWRAP_LOCK_ORDER_1
,
9072 printf("Could not open transtest.db\n");
9076 res
= dbwrap_transaction_start(db
);
9078 printf(__location__
"transaction_start failed\n");
9082 rec
= dbwrap_fetch_locked(db
, db
, string_term_tdb_data("transtest"));
9084 printf(__location__
"fetch_lock failed\n");
9088 value
= dbwrap_record_get_value(rec
);
9090 if (value
.dptr
== NULL
) {
9092 status
= dbwrap_record_store(
9093 rec
, make_tdb_data((uint8_t *)&initial
,
9096 if (!NT_STATUS_IS_OK(status
)) {
9097 printf(__location__
"store returned %s\n",
9105 res
= dbwrap_transaction_commit(db
);
9107 printf(__location__
"transaction_commit failed\n");
9115 res
= dbwrap_transaction_start(db
);
9117 printf(__location__
"transaction_start failed\n");
9121 status
= dbwrap_fetch_uint32_bystring(db
, "transtest", &val
);
9122 if (!NT_STATUS_IS_OK(status
)) {
9123 printf(__location__
"dbwrap_fetch_uint32 failed: %s\n",
9128 for (i
=0; i
<10; i
++) {
9129 if (!dbtrans_inc(db
)) {
9134 status
= dbwrap_fetch_uint32_bystring(db
, "transtest", &val2
);
9135 if (!NT_STATUS_IS_OK(status
)) {
9136 printf(__location__
"dbwrap_fetch_uint32 failed: %s\n",
9141 if (val2
!= val
+ 10) {
9142 printf(__location__
"val=%d, val2=%d\n",
9143 (int)val
, (int)val2
);
9147 printf("val2=%d\r", val2
);
9149 res
= dbwrap_transaction_commit(db
);
9151 printf(__location__
"transaction_commit failed\n");
9161 * Just a dummy test to be run under a debugger. There's no real way
9162 * to inspect the tevent_select specific function from outside of
9166 static bool run_local_tevent_select(int dummy
)
9168 struct tevent_context
*ev
;
9169 struct tevent_fd
*fd1
, *fd2
;
9170 bool result
= false;
9172 ev
= tevent_context_init_byname(NULL
, "select");
9174 d_fprintf(stderr
, "tevent_context_init_byname failed\n");
9178 fd1
= tevent_add_fd(ev
, ev
, 2, 0, NULL
, NULL
);
9180 d_fprintf(stderr
, "tevent_add_fd failed\n");
9183 fd2
= tevent_add_fd(ev
, ev
, 3, 0, NULL
, NULL
);
9185 d_fprintf(stderr
, "tevent_add_fd failed\n");
9190 fd2
= tevent_add_fd(ev
, ev
, 1, 0, NULL
, NULL
);
9192 d_fprintf(stderr
, "tevent_add_fd failed\n");
9202 static bool run_local_hex_encode_buf(int dummy
)
9208 for (i
=0; i
<sizeof(src
); i
++) {
9211 hex_encode_buf(buf
, src
, sizeof(src
));
9212 if (strcmp(buf
, "0001020304050607") != 0) {
9215 hex_encode_buf(buf
, NULL
, 0);
9216 if (buf
[0] != '\0') {
9222 static const char *remove_duplicate_addrs2_test_strings_vector
[] = {
9244 "1001:1111:1111:1000:0:1111:1111:1111",
9253 static const char *remove_duplicate_addrs2_test_strings_result
[] = {
9267 "1001:1111:1111:1000:0:1111:1111:1111"
9270 static bool run_local_remove_duplicate_addrs2(int dummy
)
9272 struct ip_service test_vector
[28];
9275 /* Construct the sockaddr_storage test vector. */
9276 for (i
= 0; i
< 28; i
++) {
9277 struct addrinfo hints
;
9278 struct addrinfo
*res
= NULL
;
9281 memset(&hints
, '\0', sizeof(hints
));
9282 hints
.ai_flags
= AI_NUMERICHOST
;
9283 ret
= getaddrinfo(remove_duplicate_addrs2_test_strings_vector
[i
],
9288 fprintf(stderr
, "getaddrinfo failed on [%s]\n",
9289 remove_duplicate_addrs2_test_strings_vector
[i
]);
9292 memset(&test_vector
[i
], '\0', sizeof(test_vector
[i
]));
9293 memcpy(&test_vector
[i
].ss
,
9299 count
= remove_duplicate_addrs2(test_vector
, i
);
9302 fprintf(stderr
, "count wrong (%d) should be 14\n",
9307 for (i
= 0; i
< count
; i
++) {
9308 char addr
[INET6_ADDRSTRLEN
];
9310 print_sockaddr(addr
, sizeof(addr
), &test_vector
[i
].ss
);
9312 if (strcmp(addr
, remove_duplicate_addrs2_test_strings_result
[i
]) != 0) {
9313 fprintf(stderr
, "mismatch on [%d] [%s] [%s]\n",
9316 remove_duplicate_addrs2_test_strings_result
[i
]);
9321 printf("run_local_remove_duplicate_addrs2: success\n");
9325 static bool run_local_tdb_opener(int dummy
)
9331 t
= tdb_open("test.tdb", 1000, TDB_CLEAR_IF_FIRST
,
9332 O_RDWR
|O_CREAT
, 0755);
9334 perror("tdb_open failed");
9345 static bool run_local_tdb_writer(int dummy
)
9351 t
= tdb_open("test.tdb", 1000, 0, O_RDWR
|O_CREAT
, 0755);
9353 perror("tdb_open failed");
9357 val
.dptr
= (uint8_t *)&v
;
9358 val
.dsize
= sizeof(v
);
9364 ret
= tdb_store(t
, val
, val
, 0);
9366 printf("%s\n", tdb_errorstr(t
));
9371 data
= tdb_fetch(t
, val
);
9372 if (data
.dptr
!= NULL
) {
9373 SAFE_FREE(data
.dptr
);
9379 static double create_procs(bool (*fn
)(int), bool *result
)
9382 volatile pid_t
*child_status
;
9383 volatile bool *child_status_out
;
9386 struct timeval start
;
9390 child_status
= (volatile pid_t
*)anonymous_shared_allocate(sizeof(pid_t
)*torture_nprocs
);
9391 if (!child_status
) {
9392 printf("Failed to setup shared memory\n");
9396 child_status_out
= (volatile bool *)anonymous_shared_allocate(sizeof(bool)*torture_nprocs
);
9397 if (!child_status_out
) {
9398 printf("Failed to setup result status shared memory\n");
9402 for (i
= 0; i
< torture_nprocs
; i
++) {
9403 child_status
[i
] = 0;
9404 child_status_out
[i
] = True
;
9407 start
= timeval_current();
9409 for (i
=0;i
<torture_nprocs
;i
++) {
9412 pid_t mypid
= getpid();
9413 sys_srandom(((int)mypid
) ^ ((int)time(NULL
)));
9415 slprintf(myname
,sizeof(myname
),"CLIENT%d", i
);
9418 if (torture_open_connection(¤t_cli
, i
)) break;
9420 printf("pid %d failed to start\n", (int)getpid());
9426 child_status
[i
] = getpid();
9428 while (child_status
[i
] && timeval_elapsed(&start
) < 5) smb_msleep(2);
9430 child_status_out
[i
] = fn(i
);
9437 for (i
=0;i
<torture_nprocs
;i
++) {
9438 if (child_status
[i
]) synccount
++;
9440 if (synccount
== torture_nprocs
) break;
9442 } while (timeval_elapsed(&start
) < 30);
9444 if (synccount
!= torture_nprocs
) {
9445 printf("FAILED TO START %d CLIENTS (started %d)\n", torture_nprocs
, synccount
);
9447 return timeval_elapsed(&start
);
9450 /* start the client load */
9451 start
= timeval_current();
9453 for (i
=0;i
<torture_nprocs
;i
++) {
9454 child_status
[i
] = 0;
9457 printf("%d clients started\n", torture_nprocs
);
9459 for (i
=0;i
<torture_nprocs
;i
++) {
9460 while (waitpid(0, &status
, 0) == -1 && errno
== EINTR
) /* noop */ ;
9465 for (i
=0;i
<torture_nprocs
;i
++) {
9466 if (!child_status_out
[i
]) {
9470 return timeval_elapsed(&start
);
9473 #define FLAG_MULTIPROC 1
9480 {"FDPASS", run_fdpasstest
, 0},
9481 {"LOCK1", run_locktest1
, 0},
9482 {"LOCK2", run_locktest2
, 0},
9483 {"LOCK3", run_locktest3
, 0},
9484 {"LOCK4", run_locktest4
, 0},
9485 {"LOCK5", run_locktest5
, 0},
9486 {"LOCK6", run_locktest6
, 0},
9487 {"LOCK7", run_locktest7
, 0},
9488 {"LOCK8", run_locktest8
, 0},
9489 {"LOCK9", run_locktest9
, 0},
9490 {"UNLINK", run_unlinktest
, 0},
9491 {"BROWSE", run_browsetest
, 0},
9492 {"ATTR", run_attrtest
, 0},
9493 {"TRANS2", run_trans2test
, 0},
9494 {"MAXFID", run_maxfidtest
, FLAG_MULTIPROC
},
9495 {"TORTURE",run_torture
, FLAG_MULTIPROC
},
9496 {"RANDOMIPC", run_randomipc
, 0},
9497 {"NEGNOWAIT", run_negprot_nowait
, 0},
9498 {"NBENCH", run_nbench
, 0},
9499 {"NBENCH2", run_nbench2
, 0},
9500 {"OPLOCK1", run_oplock1
, 0},
9501 {"OPLOCK2", run_oplock2
, 0},
9502 {"OPLOCK4", run_oplock4
, 0},
9503 {"DIR", run_dirtest
, 0},
9504 {"DIR1", run_dirtest1
, 0},
9505 {"DIR-CREATETIME", run_dir_createtime
, 0},
9506 {"DENY1", torture_denytest1
, 0},
9507 {"DENY2", torture_denytest2
, 0},
9508 {"TCON", run_tcon_test
, 0},
9509 {"TCONDEV", run_tcon_devtype_test
, 0},
9510 {"RW1", run_readwritetest
, 0},
9511 {"RW2", run_readwritemulti
, FLAG_MULTIPROC
},
9512 {"RW3", run_readwritelarge
, 0},
9513 {"RW-SIGNING", run_readwritelarge_signtest
, 0},
9514 {"OPEN", run_opentest
, 0},
9515 {"POSIX", run_simple_posix_open_test
, 0},
9516 {"POSIX-APPEND", run_posix_append
, 0},
9517 {"CASE-INSENSITIVE-CREATE", run_case_insensitive_create
, 0},
9518 {"ASYNC-ECHO", run_async_echo
, 0},
9519 { "UID-REGRESSION-TEST", run_uid_regression_test
, 0},
9520 { "SHORTNAME-TEST", run_shortname_test
, 0},
9521 { "ADDRCHANGE", run_addrchange
, 0},
9523 {"OPENATTR", run_openattrtest
, 0},
9525 {"XCOPY", run_xcopy
, 0},
9526 {"RENAME", run_rename
, 0},
9527 {"DELETE", run_deletetest
, 0},
9528 {"DELETE-LN", run_deletetest_ln
, 0},
9529 {"PROPERTIES", run_properties
, 0},
9530 {"MANGLE", torture_mangle
, 0},
9531 {"MANGLE1", run_mangle1
, 0},
9532 {"W2K", run_w2ktest
, 0},
9533 {"TRANS2SCAN", torture_trans2_scan
, 0},
9534 {"NTTRANSSCAN", torture_nttrans_scan
, 0},
9535 {"UTABLE", torture_utable
, 0},
9536 {"CASETABLE", torture_casetable
, 0},
9537 {"ERRMAPEXTRACT", run_error_map_extract
, 0},
9538 {"PIPE_NUMBER", run_pipe_number
, 0},
9539 {"TCON2", run_tcon2_test
, 0},
9540 {"IOCTL", torture_ioctl_test
, 0},
9541 {"CHKPATH", torture_chkpath_test
, 0},
9542 {"FDSESS", run_fdsesstest
, 0},
9543 { "EATEST", run_eatest
, 0},
9544 { "SESSSETUP_BENCH", run_sesssetup_bench
, 0},
9545 { "CHAIN1", run_chain1
, 0},
9546 { "CHAIN2", run_chain2
, 0},
9547 { "CHAIN3", run_chain3
, 0},
9548 { "WINDOWS-WRITE", run_windows_write
, 0},
9549 { "LARGE_READX", run_large_readx
, 0},
9550 { "NTTRANS-CREATE", run_nttrans_create
, 0},
9551 { "NTTRANS-FSCTL", run_nttrans_fsctl
, 0},
9552 { "CLI_ECHO", run_cli_echo
, 0},
9553 { "GETADDRINFO", run_getaddrinfo_send
, 0},
9554 { "TLDAP", run_tldap
},
9555 { "STREAMERROR", run_streamerror
},
9556 { "NOTIFY-BENCH", run_notify_bench
},
9557 { "NOTIFY-BENCH2", run_notify_bench2
},
9558 { "NOTIFY-BENCH3", run_notify_bench3
},
9559 { "BAD-NBT-SESSION", run_bad_nbt_session
},
9560 { "SMB-ANY-CONNECT", run_smb_any_connect
},
9561 { "NOTIFY-ONLINE", run_notify_online
},
9562 { "SMB2-BASIC", run_smb2_basic
},
9563 { "SMB2-NEGPROT", run_smb2_negprot
},
9564 { "SMB2-SESSION-RECONNECT", run_smb2_session_reconnect
},
9565 { "SMB2-TCON-DEPENDENCE", run_smb2_tcon_dependence
},
9566 { "SMB2-MULTI-CHANNEL", run_smb2_multi_channel
},
9567 { "SMB2-SESSION-REAUTH", run_smb2_session_reauth
},
9568 { "CLEANUP1", run_cleanup1
},
9569 { "CLEANUP2", run_cleanup2
},
9570 { "CLEANUP3", run_cleanup3
},
9571 { "CLEANUP4", run_cleanup4
},
9572 { "LOCAL-SUBSTITUTE", run_local_substitute
, 0},
9573 { "LOCAL-GENCACHE", run_local_gencache
, 0},
9574 { "LOCAL-TALLOC-DICT", run_local_talloc_dict
, 0},
9575 { "LOCAL-CTDB-CONN", run_ctdb_conn
, 0},
9576 { "LOCAL-DBWRAP-WATCH1", run_dbwrap_watch1
, 0 },
9577 { "LOCAL-BASE64", run_local_base64
, 0},
9578 { "LOCAL-RBTREE", run_local_rbtree
, 0},
9579 { "LOCAL-MEMCACHE", run_local_memcache
, 0},
9580 { "LOCAL-STREAM-NAME", run_local_stream_name
, 0},
9581 { "LOCAL-WBCLIENT", run_local_wbclient
, 0},
9582 { "LOCAL-string_to_sid", run_local_string_to_sid
, 0},
9583 { "LOCAL-sid_to_string", run_local_sid_to_string
, 0},
9584 { "LOCAL-binary_to_sid", run_local_binary_to_sid
, 0},
9585 { "LOCAL-DBTRANS", run_local_dbtrans
, 0},
9586 { "LOCAL-TEVENT-SELECT", run_local_tevent_select
, 0},
9587 { "LOCAL-CONVERT-STRING", run_local_convert_string
, 0},
9588 { "LOCAL-CONV-AUTH-INFO", run_local_conv_auth_info
, 0},
9589 { "LOCAL-sprintf_append", run_local_sprintf_append
, 0},
9590 { "LOCAL-hex_encode_buf", run_local_hex_encode_buf
, 0},
9591 { "LOCAL-IDMAP-TDB-COMMON", run_idmap_tdb_common_test
, 0},
9592 { "LOCAL-remove_duplicate_addrs2", run_local_remove_duplicate_addrs2
, 0},
9593 { "local-tdb-opener", run_local_tdb_opener
, 0 },
9594 { "local-tdb-writer", run_local_tdb_writer
, 0 },
9595 { "LOCAL-DBWRAP-CTDB", run_local_dbwrap_ctdb
, 0 },
9596 { "qpathinfo-bufsize", run_qpathinfo_bufsize
, 0 },
9600 * dummy function to satisfy linker dependency
9602 struct tevent_context
*winbind_event_context(void);
9603 struct tevent_context
*winbind_event_context(void)
9608 /****************************************************************************
9609 run a specified test or "ALL"
9610 ****************************************************************************/
9611 static bool run_test(const char *name
)
9618 if (strequal(name
,"ALL")) {
9619 for (i
=0;torture_ops
[i
].name
;i
++) {
9620 run_test(torture_ops
[i
].name
);
9625 for (i
=0;torture_ops
[i
].name
;i
++) {
9626 fstr_sprintf(randomfname
, "\\XX%x",
9627 (unsigned)random());
9629 if (strequal(name
, torture_ops
[i
].name
)) {
9631 printf("Running %s\n", name
);
9632 if (torture_ops
[i
].flags
& FLAG_MULTIPROC
) {
9633 t
= create_procs(torture_ops
[i
].fn
, &result
);
9636 printf("TEST %s FAILED!\n", name
);
9639 struct timeval start
;
9640 start
= timeval_current();
9641 if (!torture_ops
[i
].fn(0)) {
9643 printf("TEST %s FAILED!\n", name
);
9645 t
= timeval_elapsed(&start
);
9647 printf("%s took %g secs\n\n", name
, t
);
9652 printf("Did not find a test named %s\n", name
);
9660 static void usage(void)
9664 printf("WARNING samba4 test suite is much more complete nowadays.\n");
9665 printf("Please use samba4 torture.\n\n");
9667 printf("Usage: smbtorture //server/share <options> TEST1 TEST2 ...\n");
9669 printf("\t-d debuglevel\n");
9670 printf("\t-U user%%pass\n");
9671 printf("\t-k use kerberos\n");
9672 printf("\t-N numprocs\n");
9673 printf("\t-n my_netbios_name\n");
9674 printf("\t-W workgroup\n");
9675 printf("\t-o num_operations\n");
9676 printf("\t-O socket_options\n");
9677 printf("\t-m maximum protocol\n");
9678 printf("\t-L use oplocks\n");
9679 printf("\t-c CLIENT.TXT specify client load file for NBENCH\n");
9680 printf("\t-A showall\n");
9681 printf("\t-p port\n");
9682 printf("\t-s seed\n");
9683 printf("\t-b unclist_filename specify multiple shares for multiple connections\n");
9684 printf("\t-f filename filename to test\n");
9687 printf("tests are:");
9688 for (i
=0;torture_ops
[i
].name
;i
++) {
9689 printf(" %s", torture_ops
[i
].name
);
9693 printf("default test is ALL\n");
9698 /****************************************************************************
9700 ****************************************************************************/
9701 int main(int argc
,char *argv
[])
9707 bool correct
= True
;
9708 TALLOC_CTX
*frame
= talloc_stackframe();
9709 int seed
= time(NULL
);
9711 #ifdef HAVE_SETBUFFER
9712 setbuffer(stdout
, NULL
, 0);
9715 setup_logging("smbtorture", DEBUG_STDOUT
);
9720 if (is_default_dyn_CONFIGFILE()) {
9721 if(getenv("SMB_CONF_PATH")) {
9722 set_dyn_CONFIGFILE(getenv("SMB_CONF_PATH"));
9725 lp_load_global(get_dyn_CONFIGFILE());
9732 for(p
= argv
[1]; *p
; p
++)
9736 if (strncmp(argv
[1], "//", 2)) {
9740 fstrcpy(host
, &argv
[1][2]);
9741 p
= strchr_m(&host
[2],'/');
9746 fstrcpy(share
, p
+1);
9748 fstrcpy(myname
, get_myname(talloc_tos()));
9750 fprintf(stderr
, "Failed to get my hostname.\n");
9754 if (*username
== 0 && getenv("LOGNAME")) {
9755 fstrcpy(username
,getenv("LOGNAME"));
9761 fstrcpy(workgroup
, lp_workgroup());
9763 while ((opt
= getopt(argc
, argv
, "p:hW:U:n:N:O:o:m:Ll:d:Aec:ks:b:B:f:"))
9767 port_to_use
= atoi(optarg
);
9770 seed
= atoi(optarg
);
9773 fstrcpy(workgroup
,optarg
);
9776 lp_set_cmdline("client max protocol", optarg
);
9779 torture_nprocs
= atoi(optarg
);
9782 torture_numops
= atoi(optarg
);
9785 lp_set_cmdline("log level", optarg
);
9794 local_path
= optarg
;
9797 torture_showall
= True
;
9800 fstrcpy(myname
, optarg
);
9803 client_txt
= optarg
;
9810 use_kerberos
= True
;
9812 d_printf("No kerberos support compiled in\n");
9818 fstrcpy(username
,optarg
);
9819 p
= strchr_m(username
,'%');
9822 fstrcpy(password
, p
+1);
9827 fstrcpy(multishare_conn_fname
, optarg
);
9828 use_multishare_conn
= True
;
9831 torture_blocksize
= atoi(optarg
);
9834 test_filename
= SMB_STRDUP(optarg
);
9837 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
9842 d_printf("using seed %d\n", seed
);
9846 if(use_kerberos
&& !gotuser
) gotpass
= True
;
9849 char pwd
[256] = {0};
9852 rc
= samba_getpass("Password:", pwd
, sizeof(pwd
), false, false);
9854 fstrcpy(password
, pwd
);
9859 printf("host=%s share=%s user=%s myname=%s\n",
9860 host
, share
, username
, myname
);
9862 if (argc
== optind
) {
9863 correct
= run_test("ALL");
9865 for (i
=optind
;i
<argc
;i
++) {
9866 if (!run_test(argv
[i
])) {