2 Unix SMB/CIFS implementation.
4 test server handling of unexpected client disconnects
6 Copyright (C) Andrew Tridgell 2004
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "system/filesys.h"
24 #include "libcli/raw/libcliraw.h"
25 #include "libcli/raw/raw_proto.h"
26 #include "libcli/libcli.h"
27 #include "torture/util.h"
29 #define BASEDIR "\\test_disconnect"
31 #define CHECK_STATUS(status, correct) do { \
32 if (!NT_STATUS_EQUAL(status, correct)) { \
33 printf("(%s) Incorrect status %s - should be %s\n", \
34 __location__, nt_errstr(status), nt_errstr(correct)); \
40 test disconnect after async open
42 static bool test_disconnect_open(struct smbcli_state
*cli
, TALLOC_CTX
*mem_ctx
)
46 struct smbcli_request
*req1
, *req2
;
48 printf("trying open/disconnect\n");
50 io
.generic
.level
= RAW_OPEN_NTCREATEX
;
51 io
.ntcreatex
.in
.root_fid
.fnum
= 0;
52 io
.ntcreatex
.in
.flags
= 0;
53 io
.ntcreatex
.in
.access_mask
= SEC_FILE_READ_DATA
;
54 io
.ntcreatex
.in
.create_options
= 0;
55 io
.ntcreatex
.in
.file_attr
= FILE_ATTRIBUTE_NORMAL
;
56 io
.ntcreatex
.in
.share_access
= NTCREATEX_SHARE_ACCESS_READ
;
57 io
.ntcreatex
.in
.alloc_size
= 0;
58 io
.ntcreatex
.in
.open_disposition
= NTCREATEX_DISP_OPEN_IF
;
59 io
.ntcreatex
.in
.impersonation
= NTCREATEX_IMPERSONATION_ANONYMOUS
;
60 io
.ntcreatex
.in
.security_flags
= 0;
61 io
.ntcreatex
.in
.fname
= BASEDIR
"\\open.dat";
62 status
= smb_raw_open(cli
->tree
, mem_ctx
, &io
);
63 CHECK_STATUS(status
, NT_STATUS_OK
);
65 io
.ntcreatex
.in
.share_access
= 0;
66 req1
= smb_raw_open_send(cli
->tree
, &io
);
67 req2
= smb_raw_open_send(cli
->tree
, &io
);
69 status
= smbcli_chkpath(cli
->tree
, "\\");
70 CHECK_STATUS(status
, NT_STATUS_OK
);
79 test disconnect with timed lock
81 static bool test_disconnect_lock(struct smbcli_state
*cli
, TALLOC_CTX
*mem_ctx
)
86 struct smbcli_request
*req
;
87 struct smb_lock_entry lock
[1];
89 printf("trying disconnect with async lock\n");
91 fnum
= smbcli_open(cli
->tree
, BASEDIR
"\\write.dat",
92 O_RDWR
| O_CREAT
, DENY_NONE
);
94 printf("open failed in mux_write - %s\n", smbcli_errstr(cli
->tree
));
98 io
.lockx
.level
= RAW_LOCK_LOCKX
;
99 io
.lockx
.in
.file
.fnum
= fnum
;
100 io
.lockx
.in
.mode
= 0;
101 io
.lockx
.in
.timeout
= 0;
102 io
.lockx
.in
.lock_cnt
= 1;
103 io
.lockx
.in
.ulock_cnt
= 0;
107 io
.lockx
.in
.locks
= &lock
[0];
109 status
= smb_raw_lock(cli
->tree
, &io
);
110 CHECK_STATUS(status
, NT_STATUS_OK
);
113 io
.lockx
.in
.timeout
= 3000;
114 req
= smb_raw_lock_send(cli
->tree
, &io
);
116 status
= smbcli_chkpath(cli
->tree
, "\\");
117 CHECK_STATUS(status
, NT_STATUS_OK
);
127 basic testing of disconnects
129 bool torture_disconnect(struct torture_context
*torture
)
134 extern int torture_numops
;
135 struct smbcli_state
*cli
;
137 mem_ctx
= talloc_init("torture_raw_mux");
139 if (!torture_open_connection(&cli
, torture
, 0)) {
143 if (!torture_setup_dir(cli
, BASEDIR
)) {
147 for (i
=0;i
<torture_numops
;i
++) {
148 ret
&= test_disconnect_lock(cli
, mem_ctx
);
149 if (!torture_open_connection(&cli
, torture
, 0)) {
153 ret
&= test_disconnect_open(cli
, mem_ctx
);
154 if (!torture_open_connection(&cli
, torture
, 0)) {
158 if (torture_setting_bool(torture
, "samba3", false)) {
160 * In Samba3 it might happen that the old smbd from
161 * test_disconnect_lock is not scheduled before the
162 * new process comes in. Try to get rid of the random
163 * failures in the build farm.
169 smb_raw_exit(cli
->session
);
170 smbcli_deltree(cli
->tree
, BASEDIR
);
171 talloc_free(mem_ctx
);