s3/docs: Raise version number up to 3.5.
[Samba/gebeck_regimport.git] / source4 / torture / raw / open.c
blob9f35aae4d0a87de2a9a5152e583a61a67408d9eb
1 /*
2 Unix SMB/CIFS implementation.
3 RAW_OPEN_* individual test suite
4 Copyright (C) Andrew Tridgell 2003
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
21 #include "torture/torture.h"
22 #include "libcli/raw/libcliraw.h"
23 #include "libcli/raw/raw_proto.h"
24 #include "system/time.h"
25 #include "system/filesys.h"
26 #include "librpc/gen_ndr/security.h"
27 #include "lib/events/events.h"
28 #include "libcli/libcli.h"
29 #include "torture/util.h"
30 #include "auth/credentials/credentials.h"
31 #include "lib/cmdline/popt_common.h"
33 /* enum for whether reads/writes are possible on a file */
34 enum rdwr_mode {RDWR_NONE, RDWR_RDONLY, RDWR_WRONLY, RDWR_RDWR};
36 #define BASEDIR "\\rawopen"
39 check if a open file can be read/written
41 static enum rdwr_mode check_rdwr(struct smbcli_tree *tree, int fnum)
43 uint8_t c = 1;
44 bool can_read = (smbcli_read(tree, fnum, &c, 0, 1) == 1);
45 bool can_write = (smbcli_write(tree, fnum, 0, &c, 0, 1) == 1);
46 if ( can_read && can_write) return RDWR_RDWR;
47 if ( can_read && !can_write) return RDWR_RDONLY;
48 if (!can_read && can_write) return RDWR_WRONLY;
49 return RDWR_NONE;
53 describe a RDWR mode as a string
55 static const char *rdwr_string(enum rdwr_mode m)
57 switch (m) {
58 case RDWR_NONE: return "NONE";
59 case RDWR_RDONLY: return "RDONLY";
60 case RDWR_WRONLY: return "WRONLY";
61 case RDWR_RDWR: return "RDWR";
63 return "-";
66 #define CHECK_STATUS(status, correct) do { \
67 if (!NT_STATUS_EQUAL(status, correct)) { \
68 printf("(%s) Incorrect status %s - should be %s\n", \
69 __location__, nt_errstr(status), nt_errstr(correct)); \
70 ret = false; \
71 goto done; \
72 }} while (0)
74 #define CREATE_FILE do { \
75 fnum = create_complex_file(cli, tctx, fname); \
76 if (fnum == -1) { \
77 printf("(%s) Failed to create %s - %s\n", __location__, fname, smbcli_errstr(cli->tree)); \
78 ret = false; \
79 goto done; \
80 }} while (0)
82 #define CHECK_RDWR(fnum, correct) do { \
83 enum rdwr_mode m = check_rdwr(cli->tree, fnum); \
84 if (m != correct) { \
85 printf("(%s) Incorrect readwrite mode %s - expected %s\n", \
86 __location__, rdwr_string(m), rdwr_string(correct)); \
87 ret = false; \
88 }} while (0)
90 #define CHECK_TIME(t, field) do { \
91 time_t t1, t2; \
92 finfo.all_info.level = RAW_FILEINFO_ALL_INFO; \
93 finfo.all_info.in.file.path = fname; \
94 status = smb_raw_pathinfo(cli->tree, tctx, &finfo); \
95 CHECK_STATUS(status, NT_STATUS_OK); \
96 t1 = t & ~1; \
97 t2 = nt_time_to_unix(finfo.all_info.out.field) & ~1; \
98 if (abs(t1-t2) > 2) { \
99 printf("(%s) wrong time for field %s %s - %s\n", \
100 __location__, #field, \
101 timestring(tctx, t1), \
102 timestring(tctx, t2)); \
103 dump_all_info(tctx, &finfo); \
104 ret = false; \
105 }} while (0)
107 #define CHECK_NTTIME(t, field) do { \
108 NTTIME t2; \
109 finfo.all_info.level = RAW_FILEINFO_ALL_INFO; \
110 finfo.all_info.in.file.path = fname; \
111 status = smb_raw_pathinfo(cli->tree, tctx, &finfo); \
112 CHECK_STATUS(status, NT_STATUS_OK); \
113 t2 = finfo.all_info.out.field; \
114 if (t != t2) { \
115 printf("(%s) wrong time for field %s %s - %s\n", \
116 __location__, #field, \
117 nt_time_string(tctx, t), \
118 nt_time_string(tctx, t2)); \
119 dump_all_info(tctx, &finfo); \
120 ret = false; \
121 }} while (0)
123 #define CHECK_ALL_INFO(v, field) do { \
124 finfo.all_info.level = RAW_FILEINFO_ALL_INFO; \
125 finfo.all_info.in.file.path = fname; \
126 status = smb_raw_pathinfo(cli->tree, tctx, &finfo); \
127 CHECK_STATUS(status, NT_STATUS_OK); \
128 if ((v) != (finfo.all_info.out.field)) { \
129 printf("(%s) wrong value for field %s 0x%x - 0x%x\n", \
130 __location__, #field, (int)v, (int)(finfo.all_info.out.field)); \
131 dump_all_info(tctx, &finfo); \
132 ret = false; \
133 }} while (0)
135 #define CHECK_VAL(v, correct) do { \
136 if ((v) != (correct)) { \
137 printf("(%s) wrong value for %s 0x%x - should be 0x%x\n", \
138 __location__, #v, (int)(v), (int)correct); \
139 ret = false; \
140 }} while (0)
142 #define SET_ATTRIB(sattrib) do { \
143 union smb_setfileinfo sfinfo; \
144 ZERO_STRUCT(sfinfo.basic_info.in); \
145 sfinfo.basic_info.level = RAW_SFILEINFO_BASIC_INFORMATION; \
146 sfinfo.basic_info.in.file.path = fname; \
147 sfinfo.basic_info.in.attrib = sattrib; \
148 status = smb_raw_setpathinfo(cli->tree, &sfinfo); \
149 if (!NT_STATUS_IS_OK(status)) { \
150 printf("(%s) Failed to set attrib 0x%x on %s\n", \
151 __location__, sattrib, fname); \
152 }} while (0)
155 test RAW_OPEN_OPEN
157 static bool test_open(struct smbcli_state *cli, struct torture_context *tctx)
159 union smb_open io;
160 union smb_fileinfo finfo;
161 const char *fname = BASEDIR "\\torture_open.txt";
162 NTSTATUS status;
163 int fnum = -1, fnum2;
164 bool ret = true;
166 printf("Checking RAW_OPEN_OPEN\n");
168 io.openold.level = RAW_OPEN_OPEN;
169 io.openold.in.fname = fname;
170 io.openold.in.open_mode = OPEN_FLAGS_FCB;
171 io.openold.in.search_attrs = 0;
172 status = smb_raw_open(cli->tree, tctx, &io);
173 CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_NOT_FOUND);
174 fnum = io.openold.out.file.fnum;
176 smbcli_unlink(cli->tree, fname);
177 CREATE_FILE;
178 smbcli_close(cli->tree, fnum);
180 status = smb_raw_open(cli->tree, tctx, &io);
181 CHECK_STATUS(status, NT_STATUS_OK);
182 fnum = io.openold.out.file.fnum;
183 CHECK_RDWR(fnum, RDWR_RDWR);
185 status = smb_raw_open(cli->tree, tctx, &io);
186 CHECK_STATUS(status, NT_STATUS_OK);
187 fnum2 = io.openold.out.file.fnum;
188 CHECK_RDWR(fnum2, RDWR_RDWR);
189 smbcli_close(cli->tree, fnum2);
190 smbcli_close(cli->tree, fnum);
192 /* check the read/write modes */
193 io.openold.level = RAW_OPEN_OPEN;
194 io.openold.in.fname = fname;
195 io.openold.in.search_attrs = 0;
197 io.openold.in.open_mode = OPEN_FLAGS_OPEN_READ;
198 status = smb_raw_open(cli->tree, tctx, &io);
199 CHECK_STATUS(status, NT_STATUS_OK);
200 fnum = io.openold.out.file.fnum;
201 CHECK_RDWR(fnum, RDWR_RDONLY);
202 smbcli_close(cli->tree, fnum);
204 io.openold.in.open_mode = OPEN_FLAGS_OPEN_WRITE;
205 status = smb_raw_open(cli->tree, tctx, &io);
206 CHECK_STATUS(status, NT_STATUS_OK);
207 fnum = io.openold.out.file.fnum;
208 CHECK_RDWR(fnum, RDWR_WRONLY);
209 smbcli_close(cli->tree, fnum);
211 io.openold.in.open_mode = OPEN_FLAGS_OPEN_RDWR;
212 status = smb_raw_open(cli->tree, tctx, &io);
213 CHECK_STATUS(status, NT_STATUS_OK);
214 fnum = io.openold.out.file.fnum;
215 CHECK_RDWR(fnum, RDWR_RDWR);
216 smbcli_close(cli->tree, fnum);
218 /* check the share modes roughly - not a complete matrix */
219 io.openold.in.open_mode = OPEN_FLAGS_OPEN_RDWR | OPEN_FLAGS_DENY_WRITE;
220 status = smb_raw_open(cli->tree, tctx, &io);
221 CHECK_STATUS(status, NT_STATUS_OK);
222 fnum = io.openold.out.file.fnum;
223 CHECK_RDWR(fnum, RDWR_RDWR);
225 if (io.openold.in.open_mode != io.openold.out.rmode) {
226 printf("(%s) rmode should equal open_mode - 0x%x 0x%x\n",
227 __location__, io.openold.out.rmode, io.openold.in.open_mode);
230 io.openold.in.open_mode = OPEN_FLAGS_OPEN_RDWR | OPEN_FLAGS_DENY_NONE;
231 status = smb_raw_open(cli->tree, tctx, &io);
232 CHECK_STATUS(status, NT_STATUS_SHARING_VIOLATION);
234 io.openold.in.open_mode = OPEN_FLAGS_OPEN_READ | OPEN_FLAGS_DENY_NONE;
235 status = smb_raw_open(cli->tree, tctx, &io);
236 CHECK_STATUS(status, NT_STATUS_OK);
237 fnum2 = io.openold.out.file.fnum;
238 CHECK_RDWR(fnum2, RDWR_RDONLY);
239 smbcli_close(cli->tree, fnum);
240 smbcli_close(cli->tree, fnum2);
243 /* check the returned write time */
244 io.openold.level = RAW_OPEN_OPEN;
245 io.openold.in.fname = fname;
246 io.openold.in.search_attrs = 0;
247 io.openold.in.open_mode = OPEN_FLAGS_OPEN_READ;
248 status = smb_raw_open(cli->tree, tctx, &io);
249 CHECK_STATUS(status, NT_STATUS_OK);
250 fnum = io.openold.out.file.fnum;
252 /* check other reply fields */
253 CHECK_TIME(io.openold.out.write_time, write_time);
254 CHECK_ALL_INFO(io.openold.out.size, size);
255 CHECK_ALL_INFO(io.openold.out.attrib, attrib & ~FILE_ATTRIBUTE_NONINDEXED);
257 done:
258 smbcli_close(cli->tree, fnum);
259 smbcli_unlink(cli->tree, fname);
261 return ret;
266 test RAW_OPEN_OPENX
268 static bool test_openx(struct smbcli_state *cli, struct torture_context *tctx)
270 union smb_open io;
271 union smb_fileinfo finfo;
272 const char *fname = BASEDIR "\\torture_openx.txt";
273 const char *fname_exe = BASEDIR "\\torture_openx.exe";
274 NTSTATUS status;
275 int fnum = -1, fnum2;
276 bool ret = true;
277 int i;
278 struct timeval tv;
279 struct {
280 uint16_t open_func;
281 bool with_file;
282 NTSTATUS correct_status;
283 } open_funcs[] = {
284 { OPENX_OPEN_FUNC_OPEN, true, NT_STATUS_OK },
285 { OPENX_OPEN_FUNC_OPEN, false, NT_STATUS_OBJECT_NAME_NOT_FOUND },
286 { OPENX_OPEN_FUNC_OPEN | OPENX_OPEN_FUNC_CREATE, true, NT_STATUS_OK },
287 { OPENX_OPEN_FUNC_OPEN | OPENX_OPEN_FUNC_CREATE, false, NT_STATUS_OK },
288 { OPENX_OPEN_FUNC_FAIL, true, NT_STATUS_DOS(ERRDOS, ERRbadaccess) },
289 { OPENX_OPEN_FUNC_FAIL, false, NT_STATUS_DOS(ERRDOS, ERRbadaccess) },
290 { OPENX_OPEN_FUNC_FAIL | OPENX_OPEN_FUNC_CREATE, true, NT_STATUS_OBJECT_NAME_COLLISION },
291 { OPENX_OPEN_FUNC_FAIL | OPENX_OPEN_FUNC_CREATE, false, NT_STATUS_OK },
292 { OPENX_OPEN_FUNC_TRUNC, true, NT_STATUS_OK },
293 { OPENX_OPEN_FUNC_TRUNC, false, NT_STATUS_OBJECT_NAME_NOT_FOUND },
294 { OPENX_OPEN_FUNC_TRUNC | OPENX_OPEN_FUNC_CREATE, true, NT_STATUS_OK },
295 { OPENX_OPEN_FUNC_TRUNC | OPENX_OPEN_FUNC_CREATE, false, NT_STATUS_OK },
298 printf("Checking RAW_OPEN_OPENX\n");
299 smbcli_unlink(cli->tree, fname);
301 io.openx.level = RAW_OPEN_OPENX;
302 io.openx.in.fname = fname;
303 io.openx.in.flags = OPENX_FLAGS_ADDITIONAL_INFO;
304 io.openx.in.open_mode = OPENX_MODE_ACCESS_RDWR;
305 io.openx.in.search_attrs = 0;
306 io.openx.in.file_attrs = 0;
307 io.openx.in.write_time = 0;
308 io.openx.in.size = 1024*1024;
309 io.openx.in.timeout = 0;
311 /* check all combinations of open_func */
312 for (i=0; i<ARRAY_SIZE(open_funcs); i++) {
313 if (open_funcs[i].with_file) {
314 fnum = create_complex_file(cli, tctx, fname);
315 if (fnum == -1) {
316 d_printf("Failed to create file %s - %s\n", fname, smbcli_errstr(cli->tree));
317 ret = false;
318 goto done;
320 smbcli_close(cli->tree, fnum);
322 io.openx.in.open_func = open_funcs[i].open_func;
323 status = smb_raw_open(cli->tree, tctx, &io);
324 if (!NT_STATUS_EQUAL(status, open_funcs[i].correct_status)) {
325 printf("(%s) incorrect status %s should be %s (i=%d with_file=%d open_func=0x%x)\n",
326 __location__, nt_errstr(status), nt_errstr(open_funcs[i].correct_status),
327 i, (int)open_funcs[i].with_file, (int)open_funcs[i].open_func);
328 ret = false;
330 if (NT_STATUS_IS_OK(status)) {
331 smbcli_close(cli->tree, io.openx.out.file.fnum);
333 if (open_funcs[i].with_file) {
334 smbcli_unlink(cli->tree, fname);
338 smbcli_unlink(cli->tree, fname);
340 /* check the basic return fields */
341 io.openx.in.open_func = OPENX_OPEN_FUNC_OPEN | OPENX_OPEN_FUNC_CREATE;
342 status = smb_raw_open(cli->tree, tctx, &io);
343 CHECK_STATUS(status, NT_STATUS_OK);
344 fnum = io.openx.out.file.fnum;
346 CHECK_ALL_INFO(io.openx.out.size, size);
347 CHECK_TIME(io.openx.out.write_time, write_time);
348 CHECK_ALL_INFO(io.openx.out.attrib, attrib & ~FILE_ATTRIBUTE_NONINDEXED);
349 CHECK_VAL(io.openx.out.access, OPENX_MODE_ACCESS_RDWR);
350 CHECK_VAL(io.openx.out.ftype, 0);
351 CHECK_VAL(io.openx.out.devstate, 0);
352 CHECK_VAL(io.openx.out.action, OPENX_ACTION_CREATED);
353 CHECK_VAL(io.openx.out.size, 1024*1024);
354 CHECK_ALL_INFO(io.openx.in.size, size);
355 smbcli_close(cli->tree, fnum);
356 smbcli_unlink(cli->tree, fname);
358 /* check the fields when the file already existed */
359 fnum2 = create_complex_file(cli, tctx, fname);
360 if (fnum2 == -1) {
361 ret = false;
362 goto done;
364 smbcli_close(cli->tree, fnum2);
366 io.openx.in.open_func = OPENX_OPEN_FUNC_OPEN;
367 status = smb_raw_open(cli->tree, tctx, &io);
368 CHECK_STATUS(status, NT_STATUS_OK);
369 fnum = io.openx.out.file.fnum;
371 CHECK_ALL_INFO(io.openx.out.size, size);
372 CHECK_TIME(io.openx.out.write_time, write_time);
373 CHECK_VAL(io.openx.out.action, OPENX_ACTION_EXISTED);
374 CHECK_VAL(io.openx.out.unknown, 0);
375 CHECK_ALL_INFO(io.openx.out.attrib, attrib & ~FILE_ATTRIBUTE_NONINDEXED);
376 smbcli_close(cli->tree, fnum);
378 /* now check the search attrib for hidden files - win2003 ignores this? */
379 SET_ATTRIB(FILE_ATTRIBUTE_HIDDEN);
380 CHECK_ALL_INFO(FILE_ATTRIBUTE_HIDDEN, attrib);
382 io.openx.in.search_attrs = FILE_ATTRIBUTE_HIDDEN;
383 status = smb_raw_open(cli->tree, tctx, &io);
384 CHECK_STATUS(status, NT_STATUS_OK);
385 smbcli_close(cli->tree, io.openx.out.file.fnum);
387 io.openx.in.search_attrs = 0;
388 status = smb_raw_open(cli->tree, tctx, &io);
389 CHECK_STATUS(status, NT_STATUS_OK);
390 smbcli_close(cli->tree, io.openx.out.file.fnum);
392 SET_ATTRIB(FILE_ATTRIBUTE_NORMAL);
393 smbcli_unlink(cli->tree, fname);
395 /* and check attrib on create */
396 io.openx.in.open_func = OPENX_OPEN_FUNC_FAIL | OPENX_OPEN_FUNC_CREATE;
397 io.openx.in.search_attrs = 0;
398 io.openx.in.file_attrs = FILE_ATTRIBUTE_SYSTEM;
399 status = smb_raw_open(cli->tree, tctx, &io);
400 CHECK_STATUS(status, NT_STATUS_OK);
401 if (torture_setting_bool(tctx, "samba3", false)) {
402 CHECK_ALL_INFO(FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_ARCHIVE,
403 attrib & ~(FILE_ATTRIBUTE_NONINDEXED|
404 FILE_ATTRIBUTE_SPARSE));
406 else {
407 CHECK_ALL_INFO(FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_ARCHIVE,
408 attrib & ~(FILE_ATTRIBUTE_NONINDEXED));
410 smbcli_close(cli->tree, io.openx.out.file.fnum);
411 smbcli_unlink(cli->tree, fname);
413 /* check timeout on create - win2003 ignores the timeout! */
414 io.openx.in.open_func = OPENX_OPEN_FUNC_OPEN | OPENX_OPEN_FUNC_CREATE;
415 io.openx.in.file_attrs = 0;
416 io.openx.in.open_mode = OPENX_MODE_ACCESS_RDWR | OPENX_MODE_DENY_ALL;
417 status = smb_raw_open(cli->tree, tctx, &io);
418 CHECK_STATUS(status, NT_STATUS_OK);
419 fnum = io.openx.out.file.fnum;
421 io.openx.in.timeout = 20000;
422 tv = timeval_current();
423 io.openx.in.open_mode = OPENX_MODE_ACCESS_RDWR | OPENX_MODE_DENY_NONE;
424 status = smb_raw_open(cli->tree, tctx, &io);
425 CHECK_STATUS(status, NT_STATUS_SHARING_VIOLATION);
426 if (timeval_elapsed(&tv) > 3.0) {
427 printf("(%s) Incorrect timing in openx with timeout - waited %.2f seconds\n",
428 __location__, timeval_elapsed(&tv));
429 ret = false;
431 smbcli_close(cli->tree, fnum);
432 smbcli_unlink(cli->tree, fname);
434 /* now this is a really weird one - open for execute implies create?! */
435 io.openx.in.fname = fname;
436 io.openx.in.flags = OPENX_FLAGS_ADDITIONAL_INFO;
437 io.openx.in.open_mode = OPENX_MODE_ACCESS_EXEC | OPENX_MODE_DENY_NONE;
438 io.openx.in.search_attrs = 0;
439 io.openx.in.open_func = OPENX_OPEN_FUNC_FAIL;
440 io.openx.in.file_attrs = 0;
441 io.openx.in.write_time = 0;
442 io.openx.in.size = 0;
443 io.openx.in.timeout = 0;
444 status = smb_raw_open(cli->tree, tctx, &io);
445 CHECK_STATUS(status, NT_STATUS_OK);
446 smbcli_close(cli->tree, io.openx.out.file.fnum);
448 /* check the extended return flag */
449 io.openx.in.flags = OPENX_FLAGS_ADDITIONAL_INFO | OPENX_FLAGS_EXTENDED_RETURN;
450 io.openx.in.open_func = OPENX_OPEN_FUNC_OPEN;
451 status = smb_raw_open(cli->tree, tctx, &io);
452 CHECK_STATUS(status, NT_STATUS_OK);
453 CHECK_VAL(io.openx.out.access_mask, SEC_STD_ALL);
454 smbcli_close(cli->tree, io.openx.out.file.fnum);
456 io.openx.in.fname = "\\A.+,;=[].B";
457 status = smb_raw_open(cli->tree, tctx, &io);
458 CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_NOT_FOUND);
460 /* Check the mapping for open exec. */
462 /* First create an .exe file. */
463 smbcli_unlink(cli->tree, fname_exe);
464 fnum = create_complex_file(cli, tctx, fname_exe);
465 smbcli_close(cli->tree, fnum);
467 io.openx.level = RAW_OPEN_OPENX;
468 io.openx.in.fname = fname_exe;
469 io.openx.in.flags = OPENX_FLAGS_ADDITIONAL_INFO;
470 io.openx.in.open_mode = OPENX_MODE_ACCESS_EXEC | OPENX_MODE_DENY_NONE;
471 io.openx.in.search_attrs = 0;
472 io.openx.in.file_attrs = 0;
473 io.openx.in.write_time = 0;
474 io.openx.in.size = 0;
475 io.openx.in.timeout = 0;
476 status = smb_raw_open(cli->tree, tctx, &io);
477 CHECK_STATUS(status, NT_STATUS_OK);
479 /* Can we read and write ? */
480 CHECK_RDWR(io.openx.out.file.fnum, RDWR_RDONLY);
481 smbcli_close(cli->tree, io.openx.out.file.fnum);
482 smbcli_unlink(cli->tree, fname);
484 done:
485 smbcli_close(cli->tree, fnum);
486 smbcli_unlink(cli->tree, fname_exe);
487 smbcli_unlink(cli->tree, fname);
489 return ret;
494 test RAW_OPEN_T2OPEN
496 many thanks to kukks for a sniff showing how this works with os2->w2k
498 static bool test_t2open(struct smbcli_state *cli, struct torture_context *tctx)
500 union smb_open io;
501 union smb_fileinfo finfo;
502 const char *fname1 = BASEDIR "\\torture_t2open_yes.txt";
503 const char *fname2 = BASEDIR "\\torture_t2open_no.txt";
504 const char *fname = BASEDIR "\\torture_t2open_3.txt";
505 NTSTATUS status;
506 int fnum;
507 bool ret = true;
508 int i;
509 struct {
510 uint16_t open_func;
511 bool with_file;
512 NTSTATUS correct_status;
513 } open_funcs[] = {
514 { OPENX_OPEN_FUNC_OPEN, true, NT_STATUS_OK },
515 { OPENX_OPEN_FUNC_OPEN, false, NT_STATUS_OBJECT_NAME_NOT_FOUND },
516 { OPENX_OPEN_FUNC_OPEN | OPENX_OPEN_FUNC_CREATE, true, NT_STATUS_OK },
517 { OPENX_OPEN_FUNC_OPEN | OPENX_OPEN_FUNC_CREATE, false, NT_STATUS_OK },
518 { OPENX_OPEN_FUNC_FAIL, true, NT_STATUS_OBJECT_NAME_COLLISION },
519 { OPENX_OPEN_FUNC_FAIL, false, NT_STATUS_OBJECT_NAME_COLLISION },
520 { OPENX_OPEN_FUNC_FAIL | OPENX_OPEN_FUNC_CREATE, true, NT_STATUS_OBJECT_NAME_COLLISION },
521 { OPENX_OPEN_FUNC_FAIL | OPENX_OPEN_FUNC_CREATE, false, NT_STATUS_OBJECT_NAME_COLLISION },
522 { OPENX_OPEN_FUNC_TRUNC, true, NT_STATUS_OK },
523 { OPENX_OPEN_FUNC_TRUNC, false, NT_STATUS_OK },
524 { OPENX_OPEN_FUNC_TRUNC | OPENX_OPEN_FUNC_CREATE, true, NT_STATUS_OK },
525 { OPENX_OPEN_FUNC_TRUNC | OPENX_OPEN_FUNC_CREATE, false, NT_STATUS_OK },
528 fnum = create_complex_file(cli, tctx, fname1);
529 if (fnum == -1) {
530 d_printf("Failed to create file %s - %s\n", fname1, smbcli_errstr(cli->tree));
531 ret = false;
532 goto done;
534 smbcli_close(cli->tree, fnum);
536 printf("Checking RAW_OPEN_T2OPEN\n");
538 io.t2open.level = RAW_OPEN_T2OPEN;
539 io.t2open.in.flags = OPENX_FLAGS_ADDITIONAL_INFO;
540 io.t2open.in.open_mode = OPENX_MODE_DENY_NONE | OPENX_MODE_ACCESS_RDWR;
541 io.t2open.in.open_func = OPENX_OPEN_FUNC_OPEN | OPENX_OPEN_FUNC_CREATE;
542 io.t2open.in.search_attrs = 0;
543 io.t2open.in.file_attrs = 0;
544 io.t2open.in.write_time = 0;
545 io.t2open.in.size = 0;
546 io.t2open.in.timeout = 0;
548 io.t2open.in.num_eas = 3;
549 io.t2open.in.eas = talloc_array(tctx, struct ea_struct, io.t2open.in.num_eas);
550 io.t2open.in.eas[0].flags = 0;
551 io.t2open.in.eas[0].name.s = ".CLASSINFO";
552 io.t2open.in.eas[0].value = data_blob_talloc(tctx, "first value", 11);
553 io.t2open.in.eas[1].flags = 0;
554 io.t2open.in.eas[1].name.s = "EA TWO";
555 io.t2open.in.eas[1].value = data_blob_talloc(tctx, "foo", 3);
556 io.t2open.in.eas[2].flags = 0;
557 io.t2open.in.eas[2].name.s = "X THIRD";
558 io.t2open.in.eas[2].value = data_blob_talloc(tctx, "xy", 2);
560 /* check all combinations of open_func */
561 for (i=0; i<ARRAY_SIZE(open_funcs); i++) {
562 again:
563 if (open_funcs[i].with_file) {
564 io.t2open.in.fname = fname1;
565 } else {
566 io.t2open.in.fname = fname2;
568 io.t2open.in.open_func = open_funcs[i].open_func;
569 status = smb_raw_open(cli->tree, tctx, &io);
570 if ((io.t2open.in.num_eas != 0)
571 && NT_STATUS_EQUAL(status, NT_STATUS_EAS_NOT_SUPPORTED)
572 && torture_setting_bool(tctx, "samba3", false)) {
573 printf("(%s) EAs not supported, not treating as fatal "
574 "in Samba3 test\n", __location__);
575 io.t2open.in.num_eas = 0;
576 goto again;
579 if (!NT_STATUS_EQUAL(status, open_funcs[i].correct_status)) {
580 printf("(%s) incorrect status %s should be %s (i=%d with_file=%d open_func=0x%x)\n",
581 __location__, nt_errstr(status), nt_errstr(open_funcs[i].correct_status),
582 i, (int)open_funcs[i].with_file, (int)open_funcs[i].open_func);
583 ret = false;
585 if (NT_STATUS_IS_OK(status)) {
586 smbcli_close(cli->tree, io.t2open.out.file.fnum);
590 smbcli_unlink(cli->tree, fname1);
591 smbcli_unlink(cli->tree, fname2);
593 /* check the basic return fields */
594 io.t2open.in.open_func = OPENX_OPEN_FUNC_OPEN | OPENX_OPEN_FUNC_CREATE;
595 io.t2open.in.write_time = 0;
596 io.t2open.in.fname = fname;
597 status = smb_raw_open(cli->tree, tctx, &io);
598 CHECK_STATUS(status, NT_STATUS_OK);
599 fnum = io.t2open.out.file.fnum;
601 CHECK_ALL_INFO(io.t2open.out.size, size);
602 #if 0
603 /* windows appears to leak uninitialised memory here */
604 CHECK_VAL(io.t2open.out.write_time, 0);
605 #endif
606 CHECK_ALL_INFO(io.t2open.out.attrib, attrib & ~FILE_ATTRIBUTE_NONINDEXED);
607 CHECK_VAL(io.t2open.out.access, OPENX_MODE_DENY_NONE | OPENX_MODE_ACCESS_RDWR);
608 CHECK_VAL(io.t2open.out.ftype, 0);
609 CHECK_VAL(io.t2open.out.devstate, 0);
610 CHECK_VAL(io.t2open.out.action, OPENX_ACTION_CREATED);
611 smbcli_close(cli->tree, fnum);
613 status = torture_check_ea(cli, fname, ".CLASSINFO", "first value");
614 CHECK_STATUS(status, io.t2open.in.num_eas
615 ? NT_STATUS_OK : NT_STATUS_EAS_NOT_SUPPORTED);
616 status = torture_check_ea(cli, fname, "EA TWO", "foo");
617 CHECK_STATUS(status, io.t2open.in.num_eas
618 ? NT_STATUS_OK : NT_STATUS_EAS_NOT_SUPPORTED);
619 status = torture_check_ea(cli, fname, "X THIRD", "xy");
620 CHECK_STATUS(status, io.t2open.in.num_eas
621 ? NT_STATUS_OK : NT_STATUS_EAS_NOT_SUPPORTED);
623 /* now check the search attrib for hidden files - win2003 ignores this? */
624 SET_ATTRIB(FILE_ATTRIBUTE_HIDDEN);
625 CHECK_ALL_INFO(FILE_ATTRIBUTE_HIDDEN, attrib);
627 status = smb_raw_open(cli->tree, tctx, &io);
628 CHECK_STATUS(status, NT_STATUS_OK);
629 smbcli_close(cli->tree, io.t2open.out.file.fnum);
631 status = smb_raw_open(cli->tree, tctx, &io);
632 CHECK_STATUS(status, NT_STATUS_OK);
633 smbcli_close(cli->tree, io.t2open.out.file.fnum);
635 SET_ATTRIB(FILE_ATTRIBUTE_NORMAL);
636 smbcli_unlink(cli->tree, fname);
638 /* and check attrib on create */
639 io.t2open.in.open_func = OPENX_OPEN_FUNC_FAIL | OPENX_OPEN_FUNC_CREATE;
640 io.t2open.in.file_attrs = FILE_ATTRIBUTE_SYSTEM;
641 status = smb_raw_open(cli->tree, tctx, &io);
642 CHECK_STATUS(status, NT_STATUS_OK);
644 /* check timeout on create - win2003 ignores the timeout! */
645 io.t2open.in.open_func = OPENX_OPEN_FUNC_OPEN | OPENX_OPEN_FUNC_CREATE;
646 io.t2open.in.file_attrs = 0;
647 io.t2open.in.timeout = 20000;
648 io.t2open.in.open_mode = OPENX_MODE_ACCESS_RDWR | OPENX_MODE_DENY_ALL;
649 status = smb_raw_open(cli->tree, tctx, &io);
650 CHECK_STATUS(status, NT_STATUS_SHARING_VIOLATION);
652 done:
653 smbcli_close(cli->tree, fnum);
654 smbcli_unlink(cli->tree, fname);
656 return ret;
661 test RAW_OPEN_NTCREATEX
663 static bool test_ntcreatex(struct smbcli_state *cli, struct torture_context *tctx)
665 union smb_open io;
666 union smb_fileinfo finfo;
667 const char *fname = BASEDIR "\\torture_ntcreatex.txt";
668 const char *dname = BASEDIR "\\torture_ntcreatex.dir";
669 NTSTATUS status;
670 int fnum = -1;
671 bool ret = true;
672 int i;
673 struct {
674 uint32_t open_disp;
675 bool with_file;
676 NTSTATUS correct_status;
677 } open_funcs[] = {
678 { NTCREATEX_DISP_SUPERSEDE, true, NT_STATUS_OK },
679 { NTCREATEX_DISP_SUPERSEDE, false, NT_STATUS_OK },
680 { NTCREATEX_DISP_OPEN, true, NT_STATUS_OK },
681 { NTCREATEX_DISP_OPEN, false, NT_STATUS_OBJECT_NAME_NOT_FOUND },
682 { NTCREATEX_DISP_CREATE, true, NT_STATUS_OBJECT_NAME_COLLISION },
683 { NTCREATEX_DISP_CREATE, false, NT_STATUS_OK },
684 { NTCREATEX_DISP_OPEN_IF, true, NT_STATUS_OK },
685 { NTCREATEX_DISP_OPEN_IF, false, NT_STATUS_OK },
686 { NTCREATEX_DISP_OVERWRITE, true, NT_STATUS_OK },
687 { NTCREATEX_DISP_OVERWRITE, false, NT_STATUS_OBJECT_NAME_NOT_FOUND },
688 { NTCREATEX_DISP_OVERWRITE_IF, true, NT_STATUS_OK },
689 { NTCREATEX_DISP_OVERWRITE_IF, false, NT_STATUS_OK },
690 { 6, true, NT_STATUS_INVALID_PARAMETER },
691 { 6, false, NT_STATUS_INVALID_PARAMETER },
694 printf("Checking RAW_OPEN_NTCREATEX\n");
696 /* reasonable default parameters */
697 io.generic.level = RAW_OPEN_NTCREATEX;
698 io.ntcreatex.in.flags = NTCREATEX_FLAGS_EXTENDED;
699 io.ntcreatex.in.root_fid = 0;
700 io.ntcreatex.in.access_mask = SEC_RIGHTS_FILE_ALL;
701 io.ntcreatex.in.alloc_size = 1024*1024;
702 io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
703 io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_NONE;
704 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
705 io.ntcreatex.in.create_options = 0;
706 io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
707 io.ntcreatex.in.security_flags = 0;
708 io.ntcreatex.in.fname = fname;
710 /* test the open disposition */
711 for (i=0; i<ARRAY_SIZE(open_funcs); i++) {
712 if (open_funcs[i].with_file) {
713 fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR|O_TRUNC, DENY_NONE);
714 if (fnum == -1) {
715 d_printf("Failed to create file %s - %s\n", fname, smbcli_errstr(cli->tree));
716 ret = false;
717 goto done;
719 smbcli_close(cli->tree, fnum);
721 io.ntcreatex.in.open_disposition = open_funcs[i].open_disp;
722 status = smb_raw_open(cli->tree, tctx, &io);
723 if (!NT_STATUS_EQUAL(status, open_funcs[i].correct_status)) {
724 printf("(%s) incorrect status %s should be %s (i=%d with_file=%d open_disp=%d)\n",
725 __location__, nt_errstr(status), nt_errstr(open_funcs[i].correct_status),
726 i, (int)open_funcs[i].with_file, (int)open_funcs[i].open_disp);
727 ret = false;
729 if (NT_STATUS_IS_OK(status) || open_funcs[i].with_file) {
730 smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
731 smbcli_unlink(cli->tree, fname);
735 /* basic field testing */
736 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
738 status = smb_raw_open(cli->tree, tctx, &io);
739 CHECK_STATUS(status, NT_STATUS_OK);
740 fnum = io.ntcreatex.out.file.fnum;
742 CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
743 CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_CREATED);
744 CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
745 CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
746 CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
747 CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
748 CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
749 CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
750 CHECK_ALL_INFO(io.ntcreatex.out.size, size);
751 CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
752 CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
754 /* check fields when the file already existed */
755 smbcli_close(cli->tree, fnum);
756 smbcli_unlink(cli->tree, fname);
757 fnum = create_complex_file(cli, tctx, fname);
758 if (fnum == -1) {
759 ret = false;
760 goto done;
762 smbcli_close(cli->tree, fnum);
764 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
765 status = smb_raw_open(cli->tree, tctx, &io);
766 CHECK_STATUS(status, NT_STATUS_OK);
767 fnum = io.ntcreatex.out.file.fnum;
769 CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
770 CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_EXISTED);
771 CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
772 CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
773 CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
774 CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
775 CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
776 CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
777 CHECK_ALL_INFO(io.ntcreatex.out.size, size);
778 CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
779 CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
780 smbcli_close(cli->tree, fnum);
781 smbcli_unlink(cli->tree, fname);
784 /* create a directory */
785 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
786 io.ntcreatex.in.access_mask = SEC_RIGHTS_FILE_ALL;
787 io.ntcreatex.in.alloc_size = 0;
788 io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_DIRECTORY;
789 io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_NONE;
790 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
791 io.ntcreatex.in.create_options = 0;
792 io.ntcreatex.in.fname = dname;
793 fname = dname;
795 smbcli_rmdir(cli->tree, fname);
796 smbcli_unlink(cli->tree, fname);
798 io.ntcreatex.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
799 io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
800 io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
801 io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
802 status = smb_raw_open(cli->tree, tctx, &io);
803 CHECK_STATUS(status, NT_STATUS_OK);
804 fnum = io.ntcreatex.out.file.fnum;
806 CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
807 CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_CREATED);
808 CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
809 CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
810 CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
811 CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
812 CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
813 CHECK_VAL(io.ntcreatex.out.attrib & ~FILE_ATTRIBUTE_NONINDEXED,
814 FILE_ATTRIBUTE_DIRECTORY);
815 CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
816 CHECK_ALL_INFO(io.ntcreatex.out.size, size);
817 CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
818 CHECK_VAL(io.ntcreatex.out.is_directory, 1);
819 CHECK_VAL(io.ntcreatex.out.size, 0);
820 CHECK_VAL(io.ntcreatex.out.alloc_size, 0);
821 CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
822 smbcli_unlink(cli->tree, fname);
825 done:
826 smbcli_close(cli->tree, fnum);
827 smbcli_unlink(cli->tree, fname);
829 return ret;
834 test RAW_OPEN_NTTRANS_CREATE
836 static bool test_nttrans_create(struct smbcli_state *cli, struct torture_context *tctx)
838 union smb_open io;
839 union smb_fileinfo finfo;
840 const char *fname = BASEDIR "\\torture_ntcreatex.txt";
841 const char *dname = BASEDIR "\\torture_ntcreatex.dir";
842 NTSTATUS status;
843 int fnum = -1;
844 bool ret = true;
845 int i;
846 uint32_t ok_mask, not_supported_mask, invalid_parameter_mask;
847 uint32_t not_a_directory_mask, unexpected_mask;
848 struct {
849 uint32_t open_disp;
850 bool with_file;
851 NTSTATUS correct_status;
852 } open_funcs[] = {
853 { NTCREATEX_DISP_SUPERSEDE, true, NT_STATUS_OK },
854 { NTCREATEX_DISP_SUPERSEDE, false, NT_STATUS_OK },
855 { NTCREATEX_DISP_OPEN, true, NT_STATUS_OK },
856 { NTCREATEX_DISP_OPEN, false, NT_STATUS_OBJECT_NAME_NOT_FOUND },
857 { NTCREATEX_DISP_CREATE, true, NT_STATUS_OBJECT_NAME_COLLISION },
858 { NTCREATEX_DISP_CREATE, false, NT_STATUS_OK },
859 { NTCREATEX_DISP_OPEN_IF, true, NT_STATUS_OK },
860 { NTCREATEX_DISP_OPEN_IF, false, NT_STATUS_OK },
861 { NTCREATEX_DISP_OVERWRITE, true, NT_STATUS_OK },
862 { NTCREATEX_DISP_OVERWRITE, false, NT_STATUS_OBJECT_NAME_NOT_FOUND },
863 { NTCREATEX_DISP_OVERWRITE_IF, true, NT_STATUS_OK },
864 { NTCREATEX_DISP_OVERWRITE_IF, false, NT_STATUS_OK },
865 { 6, true, NT_STATUS_INVALID_PARAMETER },
866 { 6, false, NT_STATUS_INVALID_PARAMETER },
869 printf("Checking RAW_OPEN_NTTRANS_CREATE\n");
871 /* reasonable default parameters */
872 io.generic.level = RAW_OPEN_NTTRANS_CREATE;
873 io.ntcreatex.in.flags = NTCREATEX_FLAGS_EXTENDED;
874 io.ntcreatex.in.root_fid = 0;
875 io.ntcreatex.in.access_mask = SEC_RIGHTS_FILE_ALL;
876 io.ntcreatex.in.alloc_size = 1024*1024;
877 io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
878 io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_NONE;
879 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
880 io.ntcreatex.in.create_options = 0;
881 io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
882 io.ntcreatex.in.security_flags = 0;
883 io.ntcreatex.in.fname = fname;
884 io.ntcreatex.in.sec_desc = NULL;
885 io.ntcreatex.in.ea_list = NULL;
887 /* test the open disposition */
888 for (i=0; i<ARRAY_SIZE(open_funcs); i++) {
889 if (open_funcs[i].with_file) {
890 fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR|O_TRUNC, DENY_NONE);
891 if (fnum == -1) {
892 d_printf("Failed to create file %s - %s\n", fname, smbcli_errstr(cli->tree));
893 ret = false;
894 goto done;
896 smbcli_close(cli->tree, fnum);
898 io.ntcreatex.in.open_disposition = open_funcs[i].open_disp;
899 status = smb_raw_open(cli->tree, tctx, &io);
900 if (!NT_STATUS_EQUAL(status, open_funcs[i].correct_status)) {
901 printf("(%s) incorrect status %s should be %s (i=%d with_file=%d open_disp=%d)\n",
902 __location__, nt_errstr(status), nt_errstr(open_funcs[i].correct_status),
903 i, (int)open_funcs[i].with_file, (int)open_funcs[i].open_disp);
904 ret = false;
906 if (NT_STATUS_IS_OK(status) || open_funcs[i].with_file) {
907 smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
908 smbcli_unlink(cli->tree, fname);
912 /* basic field testing */
913 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
915 status = smb_raw_open(cli->tree, tctx, &io);
916 CHECK_STATUS(status, NT_STATUS_OK);
917 fnum = io.ntcreatex.out.file.fnum;
919 CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
920 CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_CREATED);
921 CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
922 CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
923 CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
924 CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
925 CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
926 CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
927 CHECK_ALL_INFO(io.ntcreatex.out.size, size);
928 CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
929 CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
931 /* check fields when the file already existed */
932 smbcli_close(cli->tree, fnum);
933 smbcli_unlink(cli->tree, fname);
934 fnum = create_complex_file(cli, tctx, fname);
935 if (fnum == -1) {
936 ret = false;
937 goto done;
939 smbcli_close(cli->tree, fnum);
941 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
942 status = smb_raw_open(cli->tree, tctx, &io);
943 CHECK_STATUS(status, NT_STATUS_OK);
944 fnum = io.ntcreatex.out.file.fnum;
946 CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
947 CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_EXISTED);
948 CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
949 CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
950 CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
951 CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
952 CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
953 CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
954 CHECK_ALL_INFO(io.ntcreatex.out.size, size);
955 CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
956 CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
957 smbcli_close(cli->tree, fnum);
959 /* check no-recall - don't pull a file from tape on a HSM */
960 io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_NO_RECALL;
961 status = smb_raw_open(cli->tree, tctx, &io);
962 CHECK_STATUS(status, NT_STATUS_OK);
963 fnum = io.ntcreatex.out.file.fnum;
965 CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
966 CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_EXISTED);
967 CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
968 CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
969 CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
970 CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
971 CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
972 CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
973 CHECK_ALL_INFO(io.ntcreatex.out.size, size);
974 CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
975 CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
976 smbcli_close(cli->tree, fnum);
978 /* Check some create options (these all should be ignored) */
979 for (i=0; i < 32; i++) {
980 uint32_t create_option = (1 << i) & NTCREATEX_OPTIONS_MUST_IGNORE_MASK;
981 if (create_option == 0) {
982 continue;
984 io.ntcreatex.in.create_options = create_option;
985 status = smb_raw_open(cli->tree, tctx, &io);
986 if (!NT_STATUS_IS_OK(status)) {
987 printf("ntcreatex create option 0x%08x gave %s - should give NT_STATUS_OK\n",
988 create_option, nt_errstr(status));
990 CHECK_STATUS(status, NT_STATUS_OK);
991 fnum = io.ntcreatex.out.file.fnum;
993 CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
994 CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_EXISTED);
995 CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
996 CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
997 CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
998 CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
999 CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
1000 CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
1001 CHECK_ALL_INFO(io.ntcreatex.out.size, size);
1002 CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
1003 CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
1004 smbcli_close(cli->tree, fnum);
1007 io.ntcreatex.in.file_attr = 0;
1008 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN_IF;
1009 io.ntcreatex.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
1011 /* Check for options that should return NOT_SUPPORTED, OK or INVALID_PARAMETER */
1012 ok_mask = 0;
1013 not_supported_mask = 0;
1014 invalid_parameter_mask = 0;
1015 not_a_directory_mask = 0;
1016 unexpected_mask = 0;
1017 for (i=0; i < 32; i++) {
1018 uint32_t create_option = 1<<i;
1019 if (create_option & NTCREATEX_OPTIONS_DELETE_ON_CLOSE) {
1020 continue;
1022 io.ntcreatex.in.create_options = create_option;
1023 status = smb_raw_open(cli->tree, tctx, &io);
1024 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) {
1025 not_supported_mask |= create_option;
1026 } else if (NT_STATUS_EQUAL(status, NT_STATUS_OK)) {
1027 ok_mask |= create_option;
1028 smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
1029 } else if (NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER)) {
1030 invalid_parameter_mask |= create_option;
1031 } else if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_A_DIRECTORY)) {
1032 not_a_directory_mask |= 1<<i;
1033 } else {
1034 unexpected_mask |= 1<<i;
1035 printf("create option 0x%08x returned %s\n", create_option, nt_errstr(status));
1039 CHECK_VAL(ok_mask, 0x00efcfce);
1040 CHECK_VAL(not_a_directory_mask, 0x00000001);
1041 CHECK_VAL(not_supported_mask, 0x00002000);
1042 CHECK_VAL(invalid_parameter_mask, 0xff100030);
1043 CHECK_VAL(unexpected_mask, 0x00000000);
1045 smbcli_unlink(cli->tree, fname);
1048 /* create a directory */
1049 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
1050 io.ntcreatex.in.access_mask = SEC_RIGHTS_FILE_ALL;
1051 io.ntcreatex.in.alloc_size = 0;
1052 io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_DIRECTORY;
1053 io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_NONE;
1054 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
1055 io.ntcreatex.in.create_options = 0;
1056 io.ntcreatex.in.fname = dname;
1057 fname = dname;
1059 smbcli_rmdir(cli->tree, fname);
1060 smbcli_unlink(cli->tree, fname);
1062 io.ntcreatex.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
1063 io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
1064 io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
1065 io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
1066 status = smb_raw_open(cli->tree, tctx, &io);
1067 CHECK_STATUS(status, NT_STATUS_OK);
1068 fnum = io.ntcreatex.out.file.fnum;
1070 CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
1071 CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_CREATED);
1072 CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
1073 CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
1074 CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
1075 CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
1076 CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
1077 CHECK_VAL(io.ntcreatex.out.attrib & ~FILE_ATTRIBUTE_NONINDEXED,
1078 FILE_ATTRIBUTE_DIRECTORY);
1079 CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
1080 CHECK_ALL_INFO(io.ntcreatex.out.size, size);
1081 CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
1082 CHECK_VAL(io.ntcreatex.out.is_directory, 1);
1083 CHECK_VAL(io.ntcreatex.out.size, 0);
1084 CHECK_VAL(io.ntcreatex.out.alloc_size, 0);
1085 CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
1086 smbcli_unlink(cli->tree, fname);
1089 done:
1090 smbcli_close(cli->tree, fnum);
1091 smbcli_unlink(cli->tree, fname);
1093 return ret;
1097 test RAW_OPEN_NTCREATEX with an already opened and byte range locked file
1099 I've got an application that does a similar sequence of ntcreate&x,
1100 locking&x and another ntcreate&x with
1101 open_disposition==NTCREATEX_DISP_OVERWRITE_IF. Windows 2003 allows the
1102 second open.
1104 static bool test_ntcreatex_brlocked(struct smbcli_state *cli, struct torture_context *tctx)
1106 union smb_open io, io1;
1107 union smb_lock io2;
1108 struct smb_lock_entry lock[1];
1109 const char *fname = BASEDIR "\\torture_ntcreatex.txt";
1110 NTSTATUS status;
1111 bool ret = true;
1113 printf("Testing ntcreatex with a byte range locked file\n");
1115 io.generic.level = RAW_OPEN_NTCREATEX;
1116 io.ntcreatex.in.flags = NTCREATEX_FLAGS_EXTENDED;
1117 io.ntcreatex.in.root_fid = 0;
1118 io.ntcreatex.in.access_mask = 0x2019f;
1119 io.ntcreatex.in.alloc_size = 0;
1120 io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
1121 io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ |
1122 NTCREATEX_SHARE_ACCESS_WRITE;
1123 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
1124 io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_NON_DIRECTORY_FILE;
1125 io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_IMPERSONATION;
1126 io.ntcreatex.in.security_flags = NTCREATEX_SECURITY_DYNAMIC |
1127 NTCREATEX_SECURITY_ALL;
1128 io.ntcreatex.in.fname = fname;
1130 status = smb_raw_open(cli->tree, tctx, &io);
1131 CHECK_STATUS(status, NT_STATUS_OK);
1133 io2.lockx.level = RAW_LOCK_LOCKX;
1134 io2.lockx.in.file.fnum = io.ntcreatex.out.file.fnum;
1135 io2.lockx.in.mode = LOCKING_ANDX_LARGE_FILES;
1136 io2.lockx.in.timeout = 0;
1137 io2.lockx.in.ulock_cnt = 0;
1138 io2.lockx.in.lock_cnt = 1;
1139 lock[0].pid = cli->session->pid;
1140 lock[0].offset = 0;
1141 lock[0].count = 0x1;
1142 io2.lockx.in.locks = &lock[0];
1143 status = smb_raw_lock(cli->tree, &io2);
1144 CHECK_STATUS(status, NT_STATUS_OK);
1146 io1.generic.level = RAW_OPEN_NTCREATEX;
1147 io1.ntcreatex.in.flags = NTCREATEX_FLAGS_EXTENDED;
1148 io1.ntcreatex.in.root_fid = 0;
1149 io1.ntcreatex.in.access_mask = 0x20196;
1150 io1.ntcreatex.in.alloc_size = 0;
1151 io1.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
1152 io1.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ |
1153 NTCREATEX_SHARE_ACCESS_WRITE;
1154 io1.ntcreatex.in.open_disposition = NTCREATEX_DISP_OVERWRITE_IF;
1155 io1.ntcreatex.in.create_options = 0;
1156 io1.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_IMPERSONATION;
1157 io1.ntcreatex.in.security_flags = NTCREATEX_SECURITY_DYNAMIC |
1158 NTCREATEX_SECURITY_ALL;
1159 io1.ntcreatex.in.fname = fname;
1161 status = smb_raw_open(cli->tree, tctx, &io1);
1162 CHECK_STATUS(status, NT_STATUS_OK);
1164 done:
1165 smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
1166 smbcli_close(cli->tree, io1.ntcreatex.out.file.fnum);
1167 smbcli_unlink(cli->tree, fname);
1168 return ret;
1172 test RAW_OPEN_MKNEW
1174 static bool test_mknew(struct smbcli_state *cli, struct torture_context *tctx)
1176 union smb_open io;
1177 const char *fname = BASEDIR "\\torture_mknew.txt";
1178 NTSTATUS status;
1179 int fnum = -1;
1180 bool ret = true;
1181 time_t basetime = (time(NULL) + 3600*24*3) & ~1;
1182 union smb_fileinfo finfo;
1184 printf("Checking RAW_OPEN_MKNEW\n");
1186 io.mknew.level = RAW_OPEN_MKNEW;
1187 io.mknew.in.attrib = 0;
1188 io.mknew.in.write_time = 0;
1189 io.mknew.in.fname = fname;
1190 status = smb_raw_open(cli->tree, tctx, &io);
1191 CHECK_STATUS(status, NT_STATUS_OK);
1192 fnum = io.mknew.out.file.fnum;
1194 status = smb_raw_open(cli->tree, tctx, &io);
1195 CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_COLLISION);
1197 smbcli_close(cli->tree, fnum);
1198 smbcli_unlink(cli->tree, fname);
1200 /* make sure write_time works */
1201 io.mknew.in.write_time = basetime;
1202 status = smb_raw_open(cli->tree, tctx, &io);
1203 CHECK_STATUS(status, NT_STATUS_OK);
1204 fnum = io.mknew.out.file.fnum;
1205 CHECK_TIME(basetime, write_time);
1207 smbcli_close(cli->tree, fnum);
1208 smbcli_unlink(cli->tree, fname);
1210 /* make sure file_attrs works */
1211 io.mknew.in.attrib = FILE_ATTRIBUTE_HIDDEN;
1212 status = smb_raw_open(cli->tree, tctx, &io);
1213 CHECK_STATUS(status, NT_STATUS_OK);
1214 fnum = io.mknew.out.file.fnum;
1215 CHECK_ALL_INFO(FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_ARCHIVE,
1216 attrib & ~FILE_ATTRIBUTE_NONINDEXED);
1218 done:
1219 smbcli_close(cli->tree, fnum);
1220 smbcli_unlink(cli->tree, fname);
1222 return ret;
1227 test RAW_OPEN_CREATE
1229 static bool test_create(struct smbcli_state *cli, struct torture_context *tctx)
1231 union smb_open io;
1232 const char *fname = BASEDIR "\\torture_create.txt";
1233 NTSTATUS status;
1234 int fnum = -1;
1235 bool ret = true;
1236 time_t basetime = (time(NULL) + 3600*24*3) & ~1;
1237 union smb_fileinfo finfo;
1239 printf("Checking RAW_OPEN_CREATE\n");
1241 io.create.level = RAW_OPEN_CREATE;
1242 io.create.in.attrib = 0;
1243 io.create.in.write_time = 0;
1244 io.create.in.fname = fname;
1245 status = smb_raw_open(cli->tree, tctx, &io);
1246 CHECK_STATUS(status, NT_STATUS_OK);
1247 fnum = io.create.out.file.fnum;
1249 status = smb_raw_open(cli->tree, tctx, &io);
1250 CHECK_STATUS(status, NT_STATUS_OK);
1252 smbcli_close(cli->tree, io.create.out.file.fnum);
1253 smbcli_close(cli->tree, fnum);
1254 smbcli_unlink(cli->tree, fname);
1256 /* make sure write_time works */
1257 io.create.in.write_time = basetime;
1258 status = smb_raw_open(cli->tree, tctx, &io);
1259 CHECK_STATUS(status, NT_STATUS_OK);
1260 fnum = io.create.out.file.fnum;
1261 CHECK_TIME(basetime, write_time);
1263 smbcli_close(cli->tree, fnum);
1264 smbcli_unlink(cli->tree, fname);
1266 /* make sure file_attrs works */
1267 io.create.in.attrib = FILE_ATTRIBUTE_HIDDEN;
1268 status = smb_raw_open(cli->tree, tctx, &io);
1269 CHECK_STATUS(status, NT_STATUS_OK);
1270 fnum = io.create.out.file.fnum;
1271 CHECK_ALL_INFO(FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_ARCHIVE,
1272 attrib & ~FILE_ATTRIBUTE_NONINDEXED);
1274 done:
1275 smbcli_close(cli->tree, fnum);
1276 smbcli_unlink(cli->tree, fname);
1278 return ret;
1283 test RAW_OPEN_CTEMP
1285 static bool test_ctemp(struct smbcli_state *cli, TALLOC_CTX *tctx)
1287 union smb_open io;
1288 NTSTATUS status;
1289 int fnum = -1;
1290 bool ret = true;
1291 time_t basetime = (time(NULL) + 3600*24*3) & ~1;
1292 union smb_fileinfo finfo;
1293 const char *name, *fname = NULL;
1295 printf("Checking RAW_OPEN_CTEMP\n");
1297 io.ctemp.level = RAW_OPEN_CTEMP;
1298 io.ctemp.in.attrib = FILE_ATTRIBUTE_HIDDEN;
1299 io.ctemp.in.write_time = basetime;
1300 io.ctemp.in.directory = BASEDIR;
1301 status = smb_raw_open(cli->tree, tctx, &io);
1302 CHECK_STATUS(status, NT_STATUS_OK);
1303 fnum = io.ctemp.out.file.fnum;
1305 name = io.ctemp.out.name;
1307 finfo.generic.level = RAW_FILEINFO_NAME_INFO;
1308 finfo.generic.in.file.fnum = fnum;
1309 status = smb_raw_fileinfo(cli->tree, tctx, &finfo);
1310 CHECK_STATUS(status, NT_STATUS_OK);
1312 fname = finfo.name_info.out.fname.s;
1313 d_printf("ctemp name=%s real name=%s\n", name, fname);
1315 done:
1316 smbcli_close(cli->tree, fnum);
1317 if (fname) {
1318 smbcli_unlink(cli->tree, fname);
1321 return ret;
1326 test chained RAW_OPEN_OPENX_READX
1328 static bool test_chained(struct smbcli_state *cli, TALLOC_CTX *tctx)
1330 union smb_open io;
1331 const char *fname = BASEDIR "\\torture_chained.txt";
1332 NTSTATUS status;
1333 int fnum = -1;
1334 bool ret = true;
1335 const char *buf = "test";
1336 char buf2[4];
1338 printf("Checking RAW_OPEN_OPENX chained with READX\n");
1339 smbcli_unlink(cli->tree, fname);
1341 fnum = create_complex_file(cli, tctx, fname);
1343 smbcli_write(cli->tree, fnum, 0, buf, 0, sizeof(buf));
1345 smbcli_close(cli->tree, fnum);
1347 io.openxreadx.level = RAW_OPEN_OPENX_READX;
1348 io.openxreadx.in.fname = fname;
1349 io.openxreadx.in.flags = OPENX_FLAGS_ADDITIONAL_INFO;
1350 io.openxreadx.in.open_mode = OPENX_MODE_ACCESS_RDWR;
1351 io.openxreadx.in.open_func = OPENX_OPEN_FUNC_OPEN;
1352 io.openxreadx.in.search_attrs = 0;
1353 io.openxreadx.in.file_attrs = 0;
1354 io.openxreadx.in.write_time = 0;
1355 io.openxreadx.in.size = 1024*1024;
1356 io.openxreadx.in.timeout = 0;
1358 io.openxreadx.in.offset = 0;
1359 io.openxreadx.in.mincnt = sizeof(buf);
1360 io.openxreadx.in.maxcnt = sizeof(buf);
1361 io.openxreadx.in.remaining = 0;
1362 io.openxreadx.out.data = (uint8_t *)buf2;
1364 status = smb_raw_open(cli->tree, tctx, &io);
1365 CHECK_STATUS(status, NT_STATUS_OK);
1366 fnum = io.openxreadx.out.file.fnum;
1368 if (memcmp(buf, buf2, sizeof(buf)) != 0) {
1369 d_printf("wrong data in reply buffer\n");
1370 ret = false;
1373 done:
1374 smbcli_close(cli->tree, fnum);
1375 smbcli_unlink(cli->tree, fname);
1377 return ret;
1381 test RAW_OPEN_OPENX without a leading slash on the path.
1382 NetApp filers are known to fail on this.
1385 static bool test_no_leading_slash(struct smbcli_state *cli, TALLOC_CTX *tctx)
1387 union smb_open io;
1388 const char *fname = BASEDIR "\\torture_no_leading_slash.txt";
1389 NTSTATUS status;
1390 int fnum = -1;
1391 bool ret = true;
1392 const char *buf = "test";
1394 printf("Checking RAW_OPEN_OPENX without leading slash on path\n");
1395 smbcli_unlink(cli->tree, fname);
1397 /* Create the file */
1398 fnum = create_complex_file(cli, tctx, fname);
1399 smbcli_write(cli->tree, fnum, 0, buf, 0, sizeof(buf));
1400 smbcli_close(cli->tree, fnum);
1402 /* Prepare to open the file using path without leading slash */
1403 io.openx.level = RAW_OPEN_OPENX;
1404 io.openx.in.fname = fname + 1;
1405 io.openx.in.flags = OPENX_FLAGS_ADDITIONAL_INFO;
1406 io.openx.in.open_mode = OPENX_MODE_ACCESS_RDWR;
1407 io.openx.in.open_func = OPENX_OPEN_FUNC_OPEN;
1408 io.openx.in.search_attrs = 0;
1409 io.openx.in.file_attrs = 0;
1410 io.openx.in.write_time = 0;
1411 io.openx.in.size = 1024*1024;
1412 io.openx.in.timeout = 0;
1414 status = smb_raw_open(cli->tree, tctx, &io);
1415 CHECK_STATUS(status, NT_STATUS_OK);
1416 fnum = io.openx.out.file.fnum;
1418 done:
1419 smbcli_close(cli->tree, fnum);
1420 smbcli_unlink(cli->tree, fname);
1422 return ret;
1426 test RAW_OPEN_OPENX against an existing directory to
1427 ensure it returns NT_STATUS_FILE_IS_A_DIRECTORY.
1428 Samba 3.2.0 - 3.2.6 are known to fail this.
1431 static bool test_openx_over_dir(struct smbcli_state *cli, TALLOC_CTX *tctx)
1433 union smb_open io;
1434 const char *fname = BASEDIR "\\openx_over_dir";
1435 NTSTATUS status;
1436 int d_fnum = -1;
1437 int fnum = -1;
1438 bool ret = true;
1440 printf("Checking RAW_OPEN_OPENX over an existing directory\n");
1441 smbcli_unlink(cli->tree, fname);
1443 /* Create the Directory */
1444 status = create_directory_handle(cli->tree, fname, &d_fnum);
1445 smbcli_close(cli->tree, d_fnum);
1447 /* Prepare to open the file over the directory. */
1448 io.openx.level = RAW_OPEN_OPENX;
1449 io.openx.in.fname = fname;
1450 io.openx.in.flags = OPENX_FLAGS_ADDITIONAL_INFO;
1451 io.openx.in.open_mode = OPENX_MODE_ACCESS_RDWR;
1452 io.openx.in.open_func = OPENX_OPEN_FUNC_OPEN;
1453 io.openx.in.search_attrs = 0;
1454 io.openx.in.file_attrs = 0;
1455 io.openx.in.write_time = 0;
1456 io.openx.in.size = 1024*1024;
1457 io.openx.in.timeout = 0;
1459 status = smb_raw_open(cli->tree, tctx, &io);
1460 CHECK_STATUS(status, NT_STATUS_FILE_IS_A_DIRECTORY);
1461 fnum = io.openx.out.file.fnum;
1463 done:
1464 smbcli_close(cli->tree, fnum);
1465 smbcli_unlink(cli->tree, fname);
1467 return ret;
1471 /* A little torture test to expose a race condition in Samba 3.0.20 ... :-) */
1473 static bool test_raw_open_multi(struct torture_context *tctx)
1475 struct smbcli_state *cli;
1476 TALLOC_CTX *mem_ctx = talloc_init("torture_test_oplock_multi");
1477 const char *fname = "\\test_oplock.dat";
1478 NTSTATUS status;
1479 bool ret = true;
1480 union smb_open io;
1481 struct smbcli_state **clients;
1482 struct smbcli_request **requests;
1483 union smb_open *ios;
1484 const char *host = torture_setting_string(tctx, "host", NULL);
1485 const char *share = torture_setting_string(tctx, "share", NULL);
1486 int i, num_files = 3;
1487 int num_ok = 0;
1488 int num_collision = 0;
1490 clients = talloc_array(mem_ctx, struct smbcli_state *, num_files);
1491 requests = talloc_array(mem_ctx, struct smbcli_request *, num_files);
1492 ios = talloc_array(mem_ctx, union smb_open, num_files);
1493 if ((tctx->ev == NULL) || (clients == NULL) || (requests == NULL) ||
1494 (ios == NULL)) {
1495 DEBUG(0, ("talloc failed\n"));
1496 return false;
1499 if (!torture_open_connection_share(mem_ctx, &cli, tctx, host, share, tctx->ev)) {
1500 return false;
1503 cli->tree->session->transport->options.request_timeout = 60;
1505 for (i=0; i<num_files; i++) {
1506 if (!torture_open_connection_share(mem_ctx, &(clients[i]),
1507 tctx, host, share, tctx->ev)) {
1508 DEBUG(0, ("Could not open %d'th connection\n", i));
1509 return false;
1511 clients[i]->tree->session->transport->options.request_timeout = 60;
1514 /* cleanup */
1515 smbcli_unlink(cli->tree, fname);
1518 base ntcreatex parms
1520 io.generic.level = RAW_OPEN_NTCREATEX;
1521 io.ntcreatex.in.root_fid = 0;
1522 io.ntcreatex.in.access_mask = SEC_RIGHTS_FILE_ALL;
1523 io.ntcreatex.in.alloc_size = 0;
1524 io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
1525 io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ|
1526 NTCREATEX_SHARE_ACCESS_WRITE|
1527 NTCREATEX_SHARE_ACCESS_DELETE;
1528 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
1529 io.ntcreatex.in.create_options = 0;
1530 io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
1531 io.ntcreatex.in.security_flags = 0;
1532 io.ntcreatex.in.fname = fname;
1533 io.ntcreatex.in.flags = 0;
1535 for (i=0; i<num_files; i++) {
1536 ios[i] = io;
1537 requests[i] = smb_raw_open_send(clients[i]->tree, &ios[i]);
1538 if (requests[i] == NULL) {
1539 DEBUG(0, ("could not send %d'th request\n", i));
1540 return false;
1544 DEBUG(10, ("waiting for replies\n"));
1545 while (1) {
1546 bool unreplied = false;
1547 for (i=0; i<num_files; i++) {
1548 if (requests[i] == NULL) {
1549 continue;
1551 if (requests[i]->state < SMBCLI_REQUEST_DONE) {
1552 unreplied = true;
1553 break;
1555 status = smb_raw_open_recv(requests[i], mem_ctx,
1556 &ios[i]);
1558 DEBUG(0, ("File %d returned status %s\n", i,
1559 nt_errstr(status)));
1561 if (NT_STATUS_IS_OK(status)) {
1562 num_ok += 1;
1565 if (NT_STATUS_EQUAL(status,
1566 NT_STATUS_OBJECT_NAME_COLLISION)) {
1567 num_collision += 1;
1570 requests[i] = NULL;
1572 if (!unreplied) {
1573 break;
1576 if (event_loop_once(tctx->ev) != 0) {
1577 DEBUG(0, ("event_loop_once failed\n"));
1578 return false;
1582 if ((num_ok != 1) || (num_ok + num_collision != num_files)) {
1583 ret = false;
1586 for (i=0; i<num_files; i++) {
1587 torture_close_connection(clients[i]);
1589 talloc_free(mem_ctx);
1590 return ret;
1594 test opening for delete on a read-only attribute file.
1596 static bool test_open_for_delete(struct smbcli_state *cli, struct torture_context *tctx)
1598 union smb_open io;
1599 union smb_fileinfo finfo;
1600 const char *fname = BASEDIR "\\torture_open_for_delete.txt";
1601 NTSTATUS status;
1602 int fnum = -1;
1603 bool ret = true;
1605 printf("Checking RAW_NTCREATEX for delete on a readonly file.\n");
1607 /* reasonable default parameters */
1608 io.generic.level = RAW_OPEN_NTCREATEX;
1609 io.ntcreatex.in.flags = NTCREATEX_FLAGS_EXTENDED;
1610 io.ntcreatex.in.root_fid = 0;
1611 io.ntcreatex.in.alloc_size = 0;
1612 io.ntcreatex.in.access_mask = SEC_RIGHTS_FILE_ALL;
1613 io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_READONLY;
1614 io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_NONE;
1615 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
1616 io.ntcreatex.in.create_options = 0;
1617 io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
1618 io.ntcreatex.in.security_flags = 0;
1619 io.ntcreatex.in.fname = fname;
1621 /* Create the readonly file. */
1623 status = smb_raw_open(cli->tree, tctx, &io);
1624 CHECK_STATUS(status, NT_STATUS_OK);
1625 fnum = io.ntcreatex.out.file.fnum;
1627 CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
1628 io.ntcreatex.in.create_options = 0;
1629 CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_CREATED);
1630 CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
1631 smbcli_close(cli->tree, fnum);
1633 /* Now try and open for delete only - should succeed. */
1634 io.ntcreatex.in.access_mask = SEC_STD_DELETE;
1635 io.ntcreatex.in.file_attr = 0;
1636 io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE | NTCREATEX_SHARE_ACCESS_DELETE;
1637 io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
1638 status = smb_raw_open(cli->tree, tctx, &io);
1639 CHECK_STATUS(status, NT_STATUS_OK);
1641 smbcli_unlink(cli->tree, fname);
1643 done:
1644 smbcli_close(cli->tree, fnum);
1645 smbcli_unlink(cli->tree, fname);
1647 return ret;
1651 /* basic testing of all RAW_OPEN_* calls
1653 bool torture_raw_open(struct torture_context *torture, struct smbcli_state *cli)
1655 bool ret = true;
1657 if (!torture_setup_dir(cli, BASEDIR)) {
1658 return false;
1661 ret &= test_ntcreatex_brlocked(cli, torture);
1662 ret &= test_open(cli, torture);
1663 ret &= test_raw_open_multi(torture);
1664 ret &= test_openx(cli, torture);
1665 ret &= test_ntcreatex(cli, torture);
1666 ret &= test_nttrans_create(cli, torture);
1667 ret &= test_t2open(cli, torture);
1668 ret &= test_mknew(cli, torture);
1669 ret &= test_create(cli, torture);
1670 ret &= test_ctemp(cli, torture);
1671 ret &= test_chained(cli, torture);
1672 ret &= test_no_leading_slash(cli, torture);
1673 ret &= test_openx_over_dir(cli, torture);
1674 ret &= test_open_for_delete(cli, torture);
1676 smb_raw_exit(cli->session);
1677 smbcli_deltree(cli->tree, BASEDIR);
1679 return ret;