s3/docs: Remove reference to nonexistent file.
[Samba/gbeck.git] / source4 / torture / raw / search.c
blob3aee7fbdfe067a6f103476e287ce449d1314aff5
1 /*
2 Unix SMB/CIFS implementation.
3 RAW_SEARCH_* 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 "system/filesys.h"
22 #include "libcli/raw/libcliraw.h"
23 #include "libcli/raw/raw_proto.h"
24 #include "libcli/libcli.h"
25 #include "torture/util.h"
28 #define BASEDIR "\\testsearch"
31 callback function for single_search
33 static bool single_search_callback(void *private_data, const union smb_search_data *file)
35 union smb_search_data *data = (union smb_search_data *)private_data;
37 *data = *file;
39 return true;
43 do a single file (non-wildcard) search
45 NTSTATUS torture_single_search(struct smbcli_state *cli,
46 TALLOC_CTX *tctx,
47 const char *pattern,
48 enum smb_search_level level,
49 enum smb_search_data_level data_level,
50 uint16_t attrib,
51 union smb_search_data *data)
53 union smb_search_first io;
54 union smb_search_close c;
55 NTSTATUS status;
57 switch (level) {
58 case RAW_SEARCH_SEARCH:
59 case RAW_SEARCH_FFIRST:
60 case RAW_SEARCH_FUNIQUE:
61 io.search_first.level = level;
62 io.search_first.data_level = RAW_SEARCH_DATA_SEARCH;
63 io.search_first.in.max_count = 1;
64 io.search_first.in.search_attrib = attrib;
65 io.search_first.in.pattern = pattern;
66 break;
68 case RAW_SEARCH_TRANS2:
69 io.t2ffirst.level = RAW_SEARCH_TRANS2;
70 io.t2ffirst.data_level = data_level;
71 io.t2ffirst.in.search_attrib = attrib;
72 io.t2ffirst.in.max_count = 1;
73 io.t2ffirst.in.flags = FLAG_TRANS2_FIND_CLOSE;
74 io.t2ffirst.in.storage_type = 0;
75 io.t2ffirst.in.pattern = pattern;
76 break;
78 case RAW_SEARCH_SMB2:
79 return NT_STATUS_INVALID_LEVEL;
82 status = smb_raw_search_first(cli->tree, tctx,
83 &io, (void *)data, single_search_callback);
85 if (NT_STATUS_IS_OK(status) && level == RAW_SEARCH_FFIRST) {
86 c.fclose.level = RAW_FINDCLOSE_FCLOSE;
87 c.fclose.in.max_count = 1;
88 c.fclose.in.search_attrib = 0;
89 c.fclose.in.id = data->search.id;
90 status = smb_raw_search_close(cli->tree, &c);
93 return status;
97 static struct {
98 const char *name;
99 enum smb_search_level level;
100 enum smb_search_data_level data_level;
101 int name_offset;
102 int resume_key_offset;
103 uint32_t capability_mask;
104 NTSTATUS status;
105 union smb_search_data data;
106 } levels[] = {
107 {"FFIRST",
108 RAW_SEARCH_FFIRST, RAW_SEARCH_DATA_SEARCH,
109 offsetof(union smb_search_data, search.name),
112 {"FUNIQUE",
113 RAW_SEARCH_FUNIQUE, RAW_SEARCH_DATA_SEARCH,
114 offsetof(union smb_search_data, search.name),
117 {"SEARCH",
118 RAW_SEARCH_SEARCH, RAW_SEARCH_DATA_SEARCH,
119 offsetof(union smb_search_data, search.name),
122 {"STANDARD",
123 RAW_SEARCH_TRANS2, RAW_SEARCH_DATA_STANDARD,
124 offsetof(union smb_search_data, standard.name.s),
125 offsetof(union smb_search_data, standard.resume_key),
127 {"EA_SIZE",
128 RAW_SEARCH_TRANS2, RAW_SEARCH_DATA_EA_SIZE,
129 offsetof(union smb_search_data, ea_size.name.s),
130 offsetof(union smb_search_data, ea_size.resume_key),
132 {"DIRECTORY_INFO",
133 RAW_SEARCH_TRANS2, RAW_SEARCH_DATA_DIRECTORY_INFO,
134 offsetof(union smb_search_data, directory_info.name.s),
135 offsetof(union smb_search_data, directory_info.file_index),
137 {"FULL_DIRECTORY_INFO",
138 RAW_SEARCH_TRANS2, RAW_SEARCH_DATA_FULL_DIRECTORY_INFO,
139 offsetof(union smb_search_data, full_directory_info.name.s),
140 offsetof(union smb_search_data, full_directory_info.file_index),
142 {"NAME_INFO",
143 RAW_SEARCH_TRANS2, RAW_SEARCH_DATA_NAME_INFO,
144 offsetof(union smb_search_data, name_info.name.s),
145 offsetof(union smb_search_data, name_info.file_index),
147 {"BOTH_DIRECTORY_INFO",
148 RAW_SEARCH_TRANS2, RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO,
149 offsetof(union smb_search_data, both_directory_info.name.s),
150 offsetof(union smb_search_data, both_directory_info.file_index),
152 {"ID_FULL_DIRECTORY_INFO",
153 RAW_SEARCH_TRANS2, RAW_SEARCH_DATA_ID_FULL_DIRECTORY_INFO,
154 offsetof(union smb_search_data, id_full_directory_info.name.s),
155 offsetof(union smb_search_data, id_full_directory_info.file_index),
157 {"ID_BOTH_DIRECTORY_INFO",
158 RAW_SEARCH_TRANS2, RAW_SEARCH_DATA_ID_BOTH_DIRECTORY_INFO,
159 offsetof(union smb_search_data, id_both_directory_info.name.s),
160 offsetof(union smb_search_data, id_both_directory_info.file_index),
162 {"UNIX_INFO",
163 RAW_SEARCH_TRANS2, RAW_SEARCH_DATA_UNIX_INFO,
164 offsetof(union smb_search_data, unix_info.name),
165 offsetof(union smb_search_data, unix_info.file_index),
166 CAP_UNIX}
171 return level name
173 static const char *level_name(enum smb_search_level level,
174 enum smb_search_data_level data_level)
176 int i;
177 for (i=0;i<ARRAY_SIZE(levels);i++) {
178 if (level == levels[i].level &&
179 data_level == levels[i].data_level) {
180 return levels[i].name;
183 return NULL;
187 extract the name from a smb_data structure and level
189 static const char *extract_name(void *data, enum smb_search_level level,
190 enum smb_search_data_level data_level)
192 int i;
193 for (i=0;i<ARRAY_SIZE(levels);i++) {
194 if (level == levels[i].level &&
195 data_level == levels[i].data_level) {
196 return *(const char **)(levels[i].name_offset + (char *)data);
199 return NULL;
203 extract the name from a smb_data structure and level
205 static uint32_t extract_resume_key(void *data, enum smb_search_level level,
206 enum smb_search_data_level data_level)
208 int i;
209 for (i=0;i<ARRAY_SIZE(levels);i++) {
210 if (level == levels[i].level &&
211 data_level == levels[i].data_level) {
212 return *(uint32_t *)(levels[i].resume_key_offset + (char *)data);
215 return 0;
218 /* find a level in the table by name */
219 static union smb_search_data *find(const char *name)
221 int i;
222 for (i=0;i<ARRAY_SIZE(levels);i++) {
223 if (NT_STATUS_IS_OK(levels[i].status) &&
224 strcmp(levels[i].name, name) == 0) {
225 return &levels[i].data;
228 return NULL;
232 basic testing of all RAW_SEARCH_* calls using a single file
234 static bool test_one_file(struct torture_context *tctx,
235 struct smbcli_state *cli)
237 bool ret = true;
238 int fnum;
239 const char *fname = "\\torture_search.txt";
240 const char *fname2 = "\\torture_search-NOTEXIST.txt";
241 NTSTATUS status;
242 int i;
243 union smb_fileinfo all_info, alt_info, name_info, internal_info;
244 union smb_search_data *s;
246 fnum = create_complex_file(cli, tctx, fname);
247 if (fnum == -1) {
248 printf("ERROR: open of %s failed (%s)\n", fname, smbcli_errstr(cli->tree));
249 ret = false;
250 goto done;
253 /* call all the levels */
254 for (i=0;i<ARRAY_SIZE(levels);i++) {
255 NTSTATUS expected_status;
256 uint32_t cap = cli->transport->negotiate.capabilities;
258 torture_comment(tctx, "testing %s\n", levels[i].name);
260 levels[i].status = torture_single_search(cli, tctx, fname,
261 levels[i].level,
262 levels[i].data_level,
264 &levels[i].data);
266 /* see if this server claims to support this level */
267 if ((cap & levels[i].capability_mask) != levels[i].capability_mask) {
268 printf("search level %s(%d) not supported by server\n",
269 levels[i].name, (int)levels[i].level);
270 continue;
273 if (!NT_STATUS_IS_OK(levels[i].status)) {
274 printf("search level %s(%d) failed - %s\n",
275 levels[i].name, (int)levels[i].level,
276 nt_errstr(levels[i].status));
277 ret = false;
278 continue;
281 status = torture_single_search(cli, tctx, fname2,
282 levels[i].level,
283 levels[i].data_level,
285 &levels[i].data);
287 expected_status = NT_STATUS_NO_SUCH_FILE;
288 if (levels[i].level == RAW_SEARCH_SEARCH ||
289 levels[i].level == RAW_SEARCH_FFIRST ||
290 levels[i].level == RAW_SEARCH_FUNIQUE) {
291 expected_status = STATUS_NO_MORE_FILES;
293 if (!NT_STATUS_EQUAL(status, expected_status)) {
294 printf("search level %s(%d) should fail with %s - %s\n",
295 levels[i].name, (int)levels[i].level,
296 nt_errstr(expected_status),
297 nt_errstr(status));
298 ret = false;
302 /* get the all_info file into to check against */
303 all_info.generic.level = RAW_FILEINFO_ALL_INFO;
304 all_info.generic.in.file.path = fname;
305 status = smb_raw_pathinfo(cli->tree, tctx, &all_info);
306 torture_assert_ntstatus_ok(tctx, status, "RAW_FILEINFO_ALL_INFO failed");
308 alt_info.generic.level = RAW_FILEINFO_ALT_NAME_INFO;
309 alt_info.generic.in.file.path = fname;
310 status = smb_raw_pathinfo(cli->tree, tctx, &alt_info);
311 torture_assert_ntstatus_ok(tctx, status, "RAW_FILEINFO_ALT_NAME_INFO failed");
313 internal_info.generic.level = RAW_FILEINFO_INTERNAL_INFORMATION;
314 internal_info.generic.in.file.path = fname;
315 status = smb_raw_pathinfo(cli->tree, tctx, &internal_info);
316 torture_assert_ntstatus_ok(tctx, status, "RAW_FILEINFO_INTERNAL_INFORMATION failed");
318 name_info.generic.level = RAW_FILEINFO_NAME_INFO;
319 name_info.generic.in.file.path = fname;
320 status = smb_raw_pathinfo(cli->tree, tctx, &name_info);
321 torture_assert_ntstatus_ok(tctx, status, "RAW_FILEINFO_NAME_INFO failed");
323 #define CHECK_VAL(name, sname1, field1, v, sname2, field2) do { \
324 s = find(name); \
325 if (s) { \
326 if ((s->sname1.field1) != (v.sname2.out.field2)) { \
327 printf("(%s) %s/%s [0x%x] != %s/%s [0x%x]\n", \
328 __location__, \
329 #sname1, #field1, (int)s->sname1.field1, \
330 #sname2, #field2, (int)v.sname2.out.field2); \
331 ret = false; \
333 }} while (0)
335 #define CHECK_TIME(name, sname1, field1, v, sname2, field2) do { \
336 s = find(name); \
337 if (s) { \
338 if (s->sname1.field1 != (~1 & nt_time_to_unix(v.sname2.out.field2))) { \
339 printf("(%s) %s/%s [%s] != %s/%s [%s]\n", \
340 __location__, \
341 #sname1, #field1, timestring(tctx, s->sname1.field1), \
342 #sname2, #field2, nt_time_string(tctx, v.sname2.out.field2)); \
343 ret = false; \
345 }} while (0)
347 #define CHECK_NTTIME(name, sname1, field1, v, sname2, field2) do { \
348 s = find(name); \
349 if (s) { \
350 if (s->sname1.field1 != v.sname2.out.field2) { \
351 printf("(%s) %s/%s [%s] != %s/%s [%s]\n", \
352 __location__, \
353 #sname1, #field1, nt_time_string(tctx, s->sname1.field1), \
354 #sname2, #field2, nt_time_string(tctx, v.sname2.out.field2)); \
355 ret = false; \
357 }} while (0)
359 #define CHECK_STR(name, sname1, field1, v, sname2, field2) do { \
360 s = find(name); \
361 if (s) { \
362 if (!s->sname1.field1 || strcmp(s->sname1.field1, v.sname2.out.field2.s)) { \
363 printf("(%s) %s/%s [%s] != %s/%s [%s]\n", \
364 __location__, \
365 #sname1, #field1, s->sname1.field1, \
366 #sname2, #field2, v.sname2.out.field2.s); \
367 ret = false; \
369 }} while (0)
371 #define CHECK_WSTR(name, sname1, field1, v, sname2, field2, flags) do { \
372 s = find(name); \
373 if (s) { \
374 if (!s->sname1.field1.s || \
375 strcmp(s->sname1.field1.s, v.sname2.out.field2.s) || \
376 wire_bad_flags(&s->sname1.field1, flags, cli->transport)) { \
377 printf("(%s) %s/%s [%s] != %s/%s [%s]\n", \
378 __location__, \
379 #sname1, #field1, s->sname1.field1.s, \
380 #sname2, #field2, v.sname2.out.field2.s); \
381 ret = false; \
383 }} while (0)
385 #define CHECK_NAME(name, sname1, field1, fname, flags) do { \
386 s = find(name); \
387 if (s) { \
388 if (!s->sname1.field1.s || \
389 strcmp(s->sname1.field1.s, fname) || \
390 wire_bad_flags(&s->sname1.field1, flags, cli->transport)) { \
391 printf("(%s) %s/%s [%s] != %s\n", \
392 __location__, \
393 #sname1, #field1, s->sname1.field1.s, \
394 fname); \
395 ret = false; \
397 }} while (0)
399 #define CHECK_UNIX_NAME(name, sname1, field1, fname, flags) do { \
400 s = find(name); \
401 if (s) { \
402 if (!s->sname1.field1 || \
403 strcmp(s->sname1.field1, fname)) { \
404 printf("(%s) %s/%s [%s] != %s\n", \
405 __location__, \
406 #sname1, #field1, s->sname1.field1, \
407 fname); \
408 ret = false; \
410 }} while (0)
412 /* check that all the results are as expected */
413 CHECK_VAL("SEARCH", search, attrib, all_info, all_info, attrib&0xFFF);
414 CHECK_VAL("STANDARD", standard, attrib, all_info, all_info, attrib&0xFFF);
415 CHECK_VAL("EA_SIZE", ea_size, attrib, all_info, all_info, attrib&0xFFF);
416 CHECK_VAL("DIRECTORY_INFO", directory_info, attrib, all_info, all_info, attrib);
417 CHECK_VAL("FULL_DIRECTORY_INFO", full_directory_info, attrib, all_info, all_info, attrib);
418 CHECK_VAL("BOTH_DIRECTORY_INFO", both_directory_info, attrib, all_info, all_info, attrib);
419 CHECK_VAL("ID_FULL_DIRECTORY_INFO", id_full_directory_info, attrib, all_info, all_info, attrib);
420 CHECK_VAL("ID_BOTH_DIRECTORY_INFO", id_both_directory_info, attrib, all_info, all_info, attrib);
422 CHECK_TIME("SEARCH", search, write_time, all_info, all_info, write_time);
423 CHECK_TIME("STANDARD", standard, write_time, all_info, all_info, write_time);
424 CHECK_TIME("EA_SIZE", ea_size, write_time, all_info, all_info, write_time);
425 CHECK_TIME("STANDARD", standard, create_time, all_info, all_info, create_time);
426 CHECK_TIME("EA_SIZE", ea_size, create_time, all_info, all_info, create_time);
427 CHECK_TIME("STANDARD", standard, access_time, all_info, all_info, access_time);
428 CHECK_TIME("EA_SIZE", ea_size, access_time, all_info, all_info, access_time);
430 CHECK_NTTIME("DIRECTORY_INFO", directory_info, write_time, all_info, all_info, write_time);
431 CHECK_NTTIME("FULL_DIRECTORY_INFO", full_directory_info, write_time, all_info, all_info, write_time);
432 CHECK_NTTIME("BOTH_DIRECTORY_INFO", both_directory_info, write_time, all_info, all_info, write_time);
433 CHECK_NTTIME("ID_FULL_DIRECTORY_INFO", id_full_directory_info, write_time, all_info, all_info, write_time);
434 CHECK_NTTIME("ID_BOTH_DIRECTORY_INFO", id_both_directory_info, write_time, all_info, all_info, write_time);
436 CHECK_NTTIME("DIRECTORY_INFO", directory_info, create_time, all_info, all_info, create_time);
437 CHECK_NTTIME("FULL_DIRECTORY_INFO", full_directory_info, create_time, all_info, all_info, create_time);
438 CHECK_NTTIME("BOTH_DIRECTORY_INFO", both_directory_info, create_time, all_info, all_info, create_time);
439 CHECK_NTTIME("ID_FULL_DIRECTORY_INFO", id_full_directory_info, create_time, all_info, all_info, create_time);
440 CHECK_NTTIME("ID_BOTH_DIRECTORY_INFO", id_both_directory_info, create_time, all_info, all_info, create_time);
442 CHECK_NTTIME("DIRECTORY_INFO", directory_info, access_time, all_info, all_info, access_time);
443 CHECK_NTTIME("FULL_DIRECTORY_INFO", full_directory_info, access_time, all_info, all_info, access_time);
444 CHECK_NTTIME("BOTH_DIRECTORY_INFO", both_directory_info, access_time, all_info, all_info, access_time);
445 CHECK_NTTIME("ID_FULL_DIRECTORY_INFO", id_full_directory_info, access_time, all_info, all_info, access_time);
446 CHECK_NTTIME("ID_BOTH_DIRECTORY_INFO", id_both_directory_info, access_time, all_info, all_info, access_time);
448 CHECK_NTTIME("DIRECTORY_INFO", directory_info, change_time, all_info, all_info, change_time);
449 CHECK_NTTIME("FULL_DIRECTORY_INFO", full_directory_info, change_time, all_info, all_info, change_time);
450 CHECK_NTTIME("BOTH_DIRECTORY_INFO", both_directory_info, change_time, all_info, all_info, change_time);
451 CHECK_NTTIME("ID_FULL_DIRECTORY_INFO", id_full_directory_info, change_time, all_info, all_info, change_time);
452 CHECK_NTTIME("ID_BOTH_DIRECTORY_INFO", id_both_directory_info, change_time, all_info, all_info, change_time);
454 CHECK_VAL("SEARCH", search, size, all_info, all_info, size);
455 CHECK_VAL("STANDARD", standard, size, all_info, all_info, size);
456 CHECK_VAL("EA_SIZE", ea_size, size, all_info, all_info, size);
457 CHECK_VAL("DIRECTORY_INFO", directory_info, size, all_info, all_info, size);
458 CHECK_VAL("FULL_DIRECTORY_INFO", full_directory_info, size, all_info, all_info, size);
459 CHECK_VAL("BOTH_DIRECTORY_INFO", both_directory_info, size, all_info, all_info, size);
460 CHECK_VAL("ID_FULL_DIRECTORY_INFO", id_full_directory_info, size, all_info, all_info, size);
461 CHECK_VAL("ID_BOTH_DIRECTORY_INFO", id_both_directory_info, size, all_info, all_info, size);
462 CHECK_VAL("UNIX_INFO", unix_info, size, all_info, all_info, size);
464 CHECK_VAL("STANDARD", standard, alloc_size, all_info, all_info, alloc_size);
465 CHECK_VAL("EA_SIZE", ea_size, alloc_size, all_info, all_info, alloc_size);
466 CHECK_VAL("DIRECTORY_INFO", directory_info, alloc_size, all_info, all_info, alloc_size);
467 CHECK_VAL("FULL_DIRECTORY_INFO", full_directory_info, alloc_size, all_info, all_info, alloc_size);
468 CHECK_VAL("BOTH_DIRECTORY_INFO", both_directory_info, alloc_size, all_info, all_info, alloc_size);
469 CHECK_VAL("ID_FULL_DIRECTORY_INFO", id_full_directory_info, alloc_size, all_info, all_info, alloc_size);
470 CHECK_VAL("ID_BOTH_DIRECTORY_INFO", id_both_directory_info, alloc_size, all_info, all_info, alloc_size);
471 CHECK_VAL("UNIX_INFO", unix_info, alloc_size, all_info, all_info, alloc_size);
473 CHECK_VAL("EA_SIZE", ea_size, ea_size, all_info, all_info, ea_size);
474 CHECK_VAL("FULL_DIRECTORY_INFO", full_directory_info, ea_size, all_info, all_info, ea_size);
475 CHECK_VAL("BOTH_DIRECTORY_INFO", both_directory_info, ea_size, all_info, all_info, ea_size);
476 CHECK_VAL("ID_FULL_DIRECTORY_INFO", id_full_directory_info, ea_size, all_info, all_info, ea_size);
477 CHECK_VAL("ID_BOTH_DIRECTORY_INFO", id_both_directory_info, ea_size, all_info, all_info, ea_size);
479 CHECK_STR("SEARCH", search, name, alt_info, alt_name_info, fname);
480 CHECK_WSTR("BOTH_DIRECTORY_INFO", both_directory_info, short_name, alt_info, alt_name_info, fname, STR_UNICODE);
482 CHECK_NAME("STANDARD", standard, name, fname+1, 0);
483 CHECK_NAME("EA_SIZE", ea_size, name, fname+1, 0);
484 CHECK_NAME("DIRECTORY_INFO", directory_info, name, fname+1, STR_TERMINATE_ASCII);
485 CHECK_NAME("FULL_DIRECTORY_INFO", full_directory_info, name, fname+1, STR_TERMINATE_ASCII);
486 CHECK_NAME("NAME_INFO", name_info, name, fname+1, STR_TERMINATE_ASCII);
487 CHECK_NAME("BOTH_DIRECTORY_INFO", both_directory_info, name, fname+1, STR_TERMINATE_ASCII);
488 CHECK_NAME("ID_FULL_DIRECTORY_INFO", id_full_directory_info, name, fname+1, STR_TERMINATE_ASCII);
489 CHECK_NAME("ID_BOTH_DIRECTORY_INFO", id_both_directory_info, name, fname+1, STR_TERMINATE_ASCII);
490 CHECK_UNIX_NAME("UNIX_INFO", unix_info, name, fname+1, STR_TERMINATE_ASCII);
492 CHECK_VAL("ID_FULL_DIRECTORY_INFO", id_full_directory_info, file_id, internal_info, internal_information, file_id);
493 CHECK_VAL("ID_BOTH_DIRECTORY_INFO", id_both_directory_info, file_id, internal_info, internal_information, file_id);
495 done:
496 smb_raw_exit(cli->session);
497 smbcli_unlink(cli->tree, fname);
499 return ret;
503 struct multiple_result {
504 TALLOC_CTX *tctx;
505 int count;
506 union smb_search_data *list;
510 callback function for multiple_search
512 static bool multiple_search_callback(void *private_data, const union smb_search_data *file)
514 struct multiple_result *data = (struct multiple_result *)private_data;
517 data->count++;
518 data->list = talloc_realloc(data->tctx,
519 data->list,
520 union smb_search_data,
521 data->count);
523 data->list[data->count-1] = *file;
525 return true;
528 enum continue_type {CONT_FLAGS, CONT_NAME, CONT_RESUME_KEY};
531 do a single file (non-wildcard) search
533 static NTSTATUS multiple_search(struct smbcli_state *cli,
534 TALLOC_CTX *tctx,
535 const char *pattern,
536 enum smb_search_data_level data_level,
537 enum continue_type cont_type,
538 void *data)
540 union smb_search_first io;
541 union smb_search_next io2;
542 NTSTATUS status;
543 const int per_search = 100;
544 struct multiple_result *result = (struct multiple_result *)data;
546 if (data_level == RAW_SEARCH_DATA_SEARCH) {
547 io.search_first.level = RAW_SEARCH_SEARCH;
548 io.search_first.data_level = RAW_SEARCH_DATA_SEARCH;
549 io.search_first.in.max_count = per_search;
550 io.search_first.in.search_attrib = 0;
551 io.search_first.in.pattern = pattern;
552 } else {
553 io.t2ffirst.level = RAW_SEARCH_TRANS2;
554 io.t2ffirst.data_level = data_level;
555 io.t2ffirst.in.search_attrib = 0;
556 io.t2ffirst.in.max_count = per_search;
557 io.t2ffirst.in.flags = FLAG_TRANS2_FIND_CLOSE_IF_END;
558 io.t2ffirst.in.storage_type = 0;
559 io.t2ffirst.in.pattern = pattern;
560 if (cont_type == CONT_RESUME_KEY) {
561 io.t2ffirst.in.flags |= FLAG_TRANS2_FIND_REQUIRE_RESUME |
562 FLAG_TRANS2_FIND_BACKUP_INTENT;
566 status = smb_raw_search_first(cli->tree, tctx,
567 &io, data, multiple_search_callback);
570 while (NT_STATUS_IS_OK(status)) {
571 if (data_level == RAW_SEARCH_DATA_SEARCH) {
572 io2.search_next.level = RAW_SEARCH_SEARCH;
573 io2.search_next.data_level = RAW_SEARCH_DATA_SEARCH;
574 io2.search_next.in.max_count = per_search;
575 io2.search_next.in.search_attrib = 0;
576 io2.search_next.in.id = result->list[result->count-1].search.id;
577 } else {
578 io2.t2fnext.level = RAW_SEARCH_TRANS2;
579 io2.t2fnext.data_level = data_level;
580 io2.t2fnext.in.handle = io.t2ffirst.out.handle;
581 io2.t2fnext.in.max_count = per_search;
582 io2.t2fnext.in.resume_key = 0;
583 io2.t2fnext.in.flags = FLAG_TRANS2_FIND_CLOSE_IF_END;
584 io2.t2fnext.in.last_name = "";
585 switch (cont_type) {
586 case CONT_RESUME_KEY:
587 io2.t2fnext.in.resume_key = extract_resume_key(&result->list[result->count-1],
588 io2.t2fnext.level, io2.t2fnext.data_level);
589 if (io2.t2fnext.in.resume_key == 0) {
590 printf("Server does not support resume by key for level %s\n",
591 level_name(io2.t2fnext.level, io2.t2fnext.data_level));
592 return NT_STATUS_NOT_SUPPORTED;
594 io2.t2fnext.in.flags |= FLAG_TRANS2_FIND_REQUIRE_RESUME |
595 FLAG_TRANS2_FIND_BACKUP_INTENT;
596 break;
597 case CONT_NAME:
598 io2.t2fnext.in.last_name = extract_name(&result->list[result->count-1],
599 io2.t2fnext.level, io2.t2fnext.data_level);
600 break;
601 case CONT_FLAGS:
602 io2.t2fnext.in.flags |= FLAG_TRANS2_FIND_CONTINUE;
603 break;
607 status = smb_raw_search_next(cli->tree, tctx,
608 &io2, data, multiple_search_callback);
609 if (!NT_STATUS_IS_OK(status)) {
610 break;
612 if (data_level == RAW_SEARCH_DATA_SEARCH) {
613 if (io2.search_next.out.count == 0) {
614 break;
616 } else if (io2.t2fnext.out.count == 0 ||
617 io2.t2fnext.out.end_of_search) {
618 break;
622 return status;
625 #define CHECK_STATUS(status, correct) torture_assert_ntstatus_equal(tctx, status, correct, "incorrect status")
627 #define CHECK_VALUE(v, correct) torture_assert_int_equal(tctx, (v), (correct), "incorrect value");
629 #define CHECK_STRING(v, correct) torture_assert_casestr_equal(tctx, v, correct, "incorrect value");
632 static enum smb_search_data_level compare_data_level;
634 static int search_compare(union smb_search_data *d1, union smb_search_data *d2)
636 const char *s1, *s2;
637 enum smb_search_level level;
639 if (compare_data_level == RAW_SEARCH_DATA_SEARCH) {
640 level = RAW_SEARCH_SEARCH;
641 } else {
642 level = RAW_SEARCH_TRANS2;
645 s1 = extract_name(d1, level, compare_data_level);
646 s2 = extract_name(d2, level, compare_data_level);
647 return strcmp_safe(s1, s2);
653 basic testing of search calls using many files
655 static bool test_many_files(struct torture_context *tctx,
656 struct smbcli_state *cli)
658 const int num_files = 700;
659 int i, fnum, t;
660 char *fname;
661 bool ret = true;
662 NTSTATUS status;
663 struct multiple_result result;
664 struct {
665 const char *name;
666 const char *cont_name;
667 enum smb_search_data_level data_level;
668 enum continue_type cont_type;
669 } search_types[] = {
670 {"SEARCH", "ID", RAW_SEARCH_DATA_SEARCH, CONT_RESUME_KEY},
671 {"BOTH_DIRECTORY_INFO", "NAME", RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO, CONT_NAME},
672 {"BOTH_DIRECTORY_INFO", "FLAGS", RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO, CONT_FLAGS},
673 {"BOTH_DIRECTORY_INFO", "KEY", RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO, CONT_RESUME_KEY},
674 {"STANDARD", "FLAGS", RAW_SEARCH_DATA_STANDARD, CONT_FLAGS},
675 {"STANDARD", "KEY", RAW_SEARCH_DATA_STANDARD, CONT_RESUME_KEY},
676 {"STANDARD", "NAME", RAW_SEARCH_DATA_STANDARD, CONT_NAME},
677 {"EA_SIZE", "FLAGS", RAW_SEARCH_DATA_EA_SIZE, CONT_FLAGS},
678 {"EA_SIZE", "KEY", RAW_SEARCH_DATA_EA_SIZE, CONT_RESUME_KEY},
679 {"EA_SIZE", "NAME", RAW_SEARCH_DATA_EA_SIZE, CONT_NAME},
680 {"DIRECTORY_INFO", "FLAGS", RAW_SEARCH_DATA_DIRECTORY_INFO, CONT_FLAGS},
681 {"DIRECTORY_INFO", "KEY", RAW_SEARCH_DATA_DIRECTORY_INFO, CONT_RESUME_KEY},
682 {"DIRECTORY_INFO", "NAME", RAW_SEARCH_DATA_DIRECTORY_INFO, CONT_NAME},
683 {"FULL_DIRECTORY_INFO", "FLAGS", RAW_SEARCH_DATA_FULL_DIRECTORY_INFO, CONT_FLAGS},
684 {"FULL_DIRECTORY_INFO", "KEY", RAW_SEARCH_DATA_FULL_DIRECTORY_INFO, CONT_RESUME_KEY},
685 {"FULL_DIRECTORY_INFO", "NAME", RAW_SEARCH_DATA_FULL_DIRECTORY_INFO, CONT_NAME},
686 {"ID_FULL_DIRECTORY_INFO", "FLAGS", RAW_SEARCH_DATA_ID_FULL_DIRECTORY_INFO, CONT_FLAGS},
687 {"ID_FULL_DIRECTORY_INFO", "KEY", RAW_SEARCH_DATA_ID_FULL_DIRECTORY_INFO, CONT_RESUME_KEY},
688 {"ID_FULL_DIRECTORY_INFO", "NAME", RAW_SEARCH_DATA_ID_FULL_DIRECTORY_INFO, CONT_NAME},
689 {"ID_BOTH_DIRECTORY_INFO", "NAME", RAW_SEARCH_DATA_ID_BOTH_DIRECTORY_INFO, CONT_NAME},
690 {"ID_BOTH_DIRECTORY_INFO", "FLAGS", RAW_SEARCH_DATA_ID_BOTH_DIRECTORY_INFO, CONT_FLAGS},
691 {"ID_BOTH_DIRECTORY_INFO", "KEY", RAW_SEARCH_DATA_ID_BOTH_DIRECTORY_INFO, CONT_RESUME_KEY}
694 if (!torture_setup_dir(cli, BASEDIR)) {
695 return false;
698 torture_comment(tctx, "Testing with %d files\n", num_files);
700 for (i=0;i<num_files;i++) {
701 fname = talloc_asprintf(cli, BASEDIR "\\t%03d-%d.txt", i, i);
702 fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR, DENY_NONE);
703 torture_assert(tctx, fnum != -1, "Failed to create");
704 talloc_free(fname);
705 smbcli_close(cli->tree, fnum);
709 for (t=0;t<ARRAY_SIZE(search_types);t++) {
710 ZERO_STRUCT(result);
712 if ((search_types[t].cont_type == CONT_RESUME_KEY) &&
713 (search_types[t].data_level != RAW_SEARCH_DATA_SEARCH) &&
714 torture_setting_bool(tctx, "samba3", false)) {
715 torture_comment(tctx,
716 "SKIP: Continue %s via %s\n",
717 search_types[t].name, search_types[t].cont_name);
718 continue;
721 result.tctx = talloc_new(tctx);
723 torture_comment(tctx,
724 "Continue %s via %s\n", search_types[t].name, search_types[t].cont_name);
726 status = multiple_search(cli, tctx, BASEDIR "\\*.*",
727 search_types[t].data_level,
728 search_types[t].cont_type,
729 &result);
731 torture_assert_ntstatus_ok(tctx, status, "search failed");
732 CHECK_VALUE(result.count, num_files);
734 compare_data_level = search_types[t].data_level;
736 qsort(result.list, result.count, sizeof(result.list[0]),
737 QSORT_CAST search_compare);
739 for (i=0;i<result.count;i++) {
740 const char *s;
741 enum smb_search_level level;
742 if (compare_data_level == RAW_SEARCH_DATA_SEARCH) {
743 level = RAW_SEARCH_SEARCH;
744 } else {
745 level = RAW_SEARCH_TRANS2;
747 s = extract_name(&result.list[i], level, compare_data_level);
748 fname = talloc_asprintf(cli, "t%03d-%d.txt", i, i);
749 torture_assert_str_equal(tctx, fname, s, "Incorrect name");
750 talloc_free(fname);
752 talloc_free(result.tctx);
755 smb_raw_exit(cli->session);
756 smbcli_deltree(cli->tree, BASEDIR);
758 return ret;
762 check a individual file result
764 static bool check_result(struct multiple_result *result, const char *name, bool exist, uint32_t attrib)
766 int i;
767 for (i=0;i<result->count;i++) {
768 if (strcmp(name, result->list[i].both_directory_info.name.s) == 0) break;
770 if (i == result->count) {
771 if (exist) {
772 printf("failed: '%s' should exist with attribute %s\n",
773 name, attrib_string(result->list, attrib));
774 return false;
776 return true;
779 if (!exist) {
780 printf("failed: '%s' should NOT exist (has attribute %s)\n",
781 name, attrib_string(result->list, result->list[i].both_directory_info.attrib));
782 return false;
785 if ((result->list[i].both_directory_info.attrib&0xFFF) != attrib) {
786 printf("failed: '%s' should have attribute 0x%x (has 0x%x)\n",
787 name,
788 attrib, result->list[i].both_directory_info.attrib);
789 return false;
791 return true;
795 test what happens when the directory is modified during a search
797 static bool test_modify_search(struct torture_context *tctx,
798 struct smbcli_state *cli)
800 const int num_files = 20;
801 int i, fnum;
802 char *fname;
803 bool ret = true;
804 NTSTATUS status;
805 struct multiple_result result;
806 union smb_search_first io;
807 union smb_search_next io2;
808 union smb_setfileinfo sfinfo;
810 if (!torture_setup_dir(cli, BASEDIR)) {
811 return false;
814 printf("Creating %d files\n", num_files);
816 for (i=num_files-1;i>=0;i--) {
817 fname = talloc_asprintf(cli, BASEDIR "\\t%03d-%d.txt", i, i);
818 fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR, DENY_NONE);
819 if (fnum == -1) {
820 printf("Failed to create %s - %s\n", fname, smbcli_errstr(cli->tree));
821 ret = false;
822 goto done;
824 talloc_free(fname);
825 smbcli_close(cli->tree, fnum);
828 printf("pulling the first file\n");
829 ZERO_STRUCT(result);
830 result.tctx = talloc_new(tctx);
832 io.t2ffirst.level = RAW_SEARCH_TRANS2;
833 io.t2ffirst.data_level = RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO;
834 io.t2ffirst.in.search_attrib = 0;
835 io.t2ffirst.in.max_count = 0;
836 io.t2ffirst.in.flags = 0;
837 io.t2ffirst.in.storage_type = 0;
838 io.t2ffirst.in.pattern = BASEDIR "\\*.*";
840 status = smb_raw_search_first(cli->tree, tctx,
841 &io, &result, multiple_search_callback);
842 CHECK_STATUS(status, NT_STATUS_OK);
843 CHECK_VALUE(result.count, 1);
845 printf("pulling the second file\n");
846 io2.t2fnext.level = RAW_SEARCH_TRANS2;
847 io2.t2fnext.data_level = RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO;
848 io2.t2fnext.in.handle = io.t2ffirst.out.handle;
849 io2.t2fnext.in.max_count = 1;
850 io2.t2fnext.in.resume_key = 0;
851 io2.t2fnext.in.flags = 0;
852 io2.t2fnext.in.last_name = result.list[result.count-1].both_directory_info.name.s;
854 status = smb_raw_search_next(cli->tree, tctx,
855 &io2, &result, multiple_search_callback);
856 CHECK_STATUS(status, NT_STATUS_OK);
857 CHECK_VALUE(result.count, 2);
859 result.count = 0;
861 printf("Changing attributes and deleting\n");
862 smbcli_open(cli->tree, BASEDIR "\\T003-03.txt.2", O_CREAT|O_RDWR, DENY_NONE);
863 smbcli_open(cli->tree, BASEDIR "\\T013-13.txt.2", O_CREAT|O_RDWR, DENY_NONE);
864 fnum = create_complex_file(cli, tctx, BASEDIR "\\T013-13.txt.3");
865 smbcli_unlink(cli->tree, BASEDIR "\\T014-14.txt");
866 torture_set_file_attribute(cli->tree, BASEDIR "\\T015-15.txt", FILE_ATTRIBUTE_HIDDEN);
867 torture_set_file_attribute(cli->tree, BASEDIR "\\T016-16.txt", FILE_ATTRIBUTE_NORMAL);
868 torture_set_file_attribute(cli->tree, BASEDIR "\\T017-17.txt", FILE_ATTRIBUTE_SYSTEM);
869 torture_set_file_attribute(cli->tree, BASEDIR "\\T018-18.txt", 0);
870 sfinfo.generic.level = RAW_SFILEINFO_DISPOSITION_INFORMATION;
871 sfinfo.generic.in.file.fnum = fnum;
872 sfinfo.disposition_info.in.delete_on_close = 1;
873 status = smb_raw_setfileinfo(cli->tree, &sfinfo);
874 CHECK_STATUS(status, NT_STATUS_OK);
876 io2.t2fnext.level = RAW_SEARCH_TRANS2;
877 io2.t2fnext.data_level = RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO;
878 io2.t2fnext.in.handle = io.t2ffirst.out.handle;
879 io2.t2fnext.in.max_count = num_files + 3;
880 io2.t2fnext.in.resume_key = 0;
881 io2.t2fnext.in.flags = 0;
882 io2.t2fnext.in.last_name = ".";
884 status = smb_raw_search_next(cli->tree, tctx,
885 &io2, &result, multiple_search_callback);
886 CHECK_STATUS(status, NT_STATUS_OK);
887 CHECK_VALUE(result.count, 20);
889 ret &= check_result(&result, "t009-9.txt", true, FILE_ATTRIBUTE_ARCHIVE);
890 ret &= check_result(&result, "t014-14.txt", false, 0);
891 ret &= check_result(&result, "t015-15.txt", false, 0);
892 ret &= check_result(&result, "t016-16.txt", true, FILE_ATTRIBUTE_NORMAL);
893 ret &= check_result(&result, "t017-17.txt", false, 0);
894 ret &= check_result(&result, "t018-18.txt", true, FILE_ATTRIBUTE_ARCHIVE);
895 ret &= check_result(&result, "t019-19.txt", true, FILE_ATTRIBUTE_ARCHIVE);
896 ret &= check_result(&result, "T013-13.txt.2", true, FILE_ATTRIBUTE_ARCHIVE);
897 ret &= check_result(&result, "T003-3.txt.2", false, 0);
898 ret &= check_result(&result, "T013-13.txt.3", true, FILE_ATTRIBUTE_ARCHIVE);
900 if (!ret) {
901 for (i=0;i<result.count;i++) {
902 printf("%s %s (0x%x)\n",
903 result.list[i].both_directory_info.name.s,
904 attrib_string(tctx, result.list[i].both_directory_info.attrib),
905 result.list[i].both_directory_info.attrib);
909 done:
910 smb_raw_exit(cli->session);
911 smbcli_deltree(cli->tree, BASEDIR);
913 return ret;
918 testing if directories always come back sorted
920 static bool test_sorted(struct torture_context *tctx, struct smbcli_state *cli)
922 const int num_files = 700;
923 int i, fnum;
924 char *fname;
925 bool ret = true;
926 NTSTATUS status;
927 struct multiple_result result;
929 if (!torture_setup_dir(cli, BASEDIR)) {
930 return false;
933 printf("Creating %d files\n", num_files);
935 for (i=0;i<num_files;i++) {
936 fname = talloc_asprintf(cli, BASEDIR "\\%s.txt", generate_random_str_list(tctx, 10, "abcdefgh"));
937 fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR, DENY_NONE);
938 if (fnum == -1) {
939 printf("Failed to create %s - %s\n", fname, smbcli_errstr(cli->tree));
940 ret = false;
941 goto done;
943 talloc_free(fname);
944 smbcli_close(cli->tree, fnum);
948 ZERO_STRUCT(result);
949 result.tctx = tctx;
951 status = multiple_search(cli, tctx, BASEDIR "\\*.*",
952 RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO,
953 CONT_NAME, &result);
954 CHECK_STATUS(status, NT_STATUS_OK);
955 CHECK_VALUE(result.count, num_files);
957 for (i=0;i<num_files-1;i++) {
958 const char *name1, *name2;
959 name1 = result.list[i].both_directory_info.name.s;
960 name2 = result.list[i+1].both_directory_info.name.s;
961 if (strcasecmp_m(name1, name2) > 0) {
962 printf("non-alphabetical order at entry %d '%s' '%s'\n",
963 i, name1, name2);
964 printf("Server does not produce sorted directory listings (not an error)\n");
965 goto done;
969 talloc_free(result.list);
971 done:
972 smb_raw_exit(cli->session);
973 smbcli_deltree(cli->tree, BASEDIR);
975 return ret;
981 basic testing of many old style search calls using separate dirs
983 static bool test_many_dirs(struct torture_context *tctx,
984 struct smbcli_state *cli)
986 const int num_dirs = 20;
987 int i, fnum, n;
988 char *fname, *dname;
989 bool ret = true;
990 NTSTATUS status;
991 union smb_search_data *file, *file2, *file3;
993 if (!torture_setup_dir(cli, BASEDIR)) {
994 return false;
997 printf("Creating %d dirs\n", num_dirs);
999 for (i=0;i<num_dirs;i++) {
1000 dname = talloc_asprintf(cli, BASEDIR "\\d%d", i);
1001 status = smbcli_mkdir(cli->tree, dname);
1002 if (!NT_STATUS_IS_OK(status)) {
1003 printf("(%s) Failed to create %s - %s\n",
1004 __location__, dname, nt_errstr(status));
1005 ret = false;
1006 goto done;
1009 for (n=0;n<3;n++) {
1010 fname = talloc_asprintf(cli, BASEDIR "\\d%d\\f%d-%d.txt", i, i, n);
1011 fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR, DENY_NONE);
1012 if (fnum == -1) {
1013 printf("(%s) Failed to create %s - %s\n",
1014 __location__, fname, smbcli_errstr(cli->tree));
1015 ret = false;
1016 goto done;
1018 talloc_free(fname);
1019 smbcli_close(cli->tree, fnum);
1022 talloc_free(dname);
1025 file = talloc_zero_array(tctx, union smb_search_data, num_dirs);
1026 file2 = talloc_zero_array(tctx, union smb_search_data, num_dirs);
1027 file3 = talloc_zero_array(tctx, union smb_search_data, num_dirs);
1029 printf("Search first on %d dirs\n", num_dirs);
1031 for (i=0;i<num_dirs;i++) {
1032 union smb_search_first io;
1033 io.search_first.level = RAW_SEARCH_SEARCH;
1034 io.search_first.data_level = RAW_SEARCH_DATA_SEARCH;
1035 io.search_first.in.max_count = 1;
1036 io.search_first.in.search_attrib = 0;
1037 io.search_first.in.pattern = talloc_asprintf(tctx, BASEDIR "\\d%d\\*.txt", i);
1038 fname = talloc_asprintf(tctx, "f%d-", i);
1040 io.search_first.out.count = 0;
1042 status = smb_raw_search_first(cli->tree, tctx,
1043 &io, (void *)&file[i], single_search_callback);
1044 if (io.search_first.out.count != 1) {
1045 printf("(%s) search first gave %d entries for dir %d - %s\n",
1046 __location__, io.search_first.out.count, i, nt_errstr(status));
1047 ret = false;
1048 goto done;
1050 CHECK_STATUS(status, NT_STATUS_OK);
1051 if (strncasecmp(file[i].search.name, fname, strlen(fname)) != 0) {
1052 printf("(%s) incorrect name '%s' expected '%s'[12].txt\n",
1053 __location__, file[i].search.name, fname);
1054 ret = false;
1055 goto done;
1058 talloc_free(fname);
1061 printf("Search next on %d dirs\n", num_dirs);
1063 for (i=0;i<num_dirs;i++) {
1064 union smb_search_next io2;
1066 io2.search_next.level = RAW_SEARCH_SEARCH;
1067 io2.search_next.data_level = RAW_SEARCH_DATA_SEARCH;
1068 io2.search_next.in.max_count = 1;
1069 io2.search_next.in.search_attrib = 0;
1070 io2.search_next.in.id = file[i].search.id;
1071 fname = talloc_asprintf(tctx, "f%d-", i);
1073 io2.search_next.out.count = 0;
1075 status = smb_raw_search_next(cli->tree, tctx,
1076 &io2, (void *)&file2[i], single_search_callback);
1077 if (io2.search_next.out.count != 1) {
1078 printf("(%s) search next gave %d entries for dir %d - %s\n",
1079 __location__, io2.search_next.out.count, i, nt_errstr(status));
1080 ret = false;
1081 goto done;
1083 CHECK_STATUS(status, NT_STATUS_OK);
1084 if (strncasecmp(file2[i].search.name, fname, strlen(fname)) != 0) {
1085 printf("(%s) incorrect name '%s' expected '%s'[12].txt\n",
1086 __location__, file2[i].search.name, fname);
1087 ret = false;
1088 goto done;
1091 talloc_free(fname);
1095 printf("Search next (rewind) on %d dirs\n", num_dirs);
1097 for (i=0;i<num_dirs;i++) {
1098 union smb_search_next io2;
1100 io2.search_next.level = RAW_SEARCH_SEARCH;
1101 io2.search_next.data_level = RAW_SEARCH_DATA_SEARCH;
1102 io2.search_next.in.max_count = 1;
1103 io2.search_next.in.search_attrib = 0;
1104 io2.search_next.in.id = file[i].search.id;
1105 fname = talloc_asprintf(tctx, "f%d-", i);
1106 io2.search_next.out.count = 0;
1108 status = smb_raw_search_next(cli->tree, tctx,
1109 &io2, (void *)&file3[i], single_search_callback);
1110 if (io2.search_next.out.count != 1) {
1111 printf("(%s) search next gave %d entries for dir %d - %s\n",
1112 __location__, io2.search_next.out.count, i, nt_errstr(status));
1113 ret = false;
1114 goto done;
1116 CHECK_STATUS(status, NT_STATUS_OK);
1118 if (strncasecmp(file3[i].search.name, file2[i].search.name, 3) != 0) {
1119 printf("(%s) incorrect name '%s' on rewind at dir %d\n",
1120 __location__, file2[i].search.name, i);
1121 ret = false;
1122 goto done;
1125 if (strcmp(file3[i].search.name, file2[i].search.name) != 0) {
1126 printf("(%s) server did not rewind - got '%s' expected '%s'\n",
1127 __location__, file3[i].search.name, file2[i].search.name);
1128 ret = false;
1129 goto done;
1132 talloc_free(fname);
1136 done:
1137 smb_raw_exit(cli->session);
1138 smbcli_deltree(cli->tree, BASEDIR);
1140 return ret;
1145 testing of OS/2 style delete
1147 static bool test_os2_delete(struct torture_context *tctx,
1148 struct smbcli_state *cli)
1150 const int num_files = 700;
1151 const int delete_count = 4;
1152 int total_deleted = 0;
1153 int i, fnum;
1154 char *fname;
1155 bool ret = true;
1156 NTSTATUS status;
1157 union smb_search_first io;
1158 union smb_search_next io2;
1159 struct multiple_result result;
1161 if (!torture_setup_dir(cli, BASEDIR)) {
1162 return false;
1165 printf("Testing OS/2 style delete on %d files\n", num_files);
1167 for (i=0;i<num_files;i++) {
1168 fname = talloc_asprintf(cli, BASEDIR "\\file%u.txt", i);
1169 fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR, DENY_NONE);
1170 if (fnum == -1) {
1171 printf("Failed to create %s - %s\n", fname, smbcli_errstr(cli->tree));
1172 ret = false;
1173 goto done;
1175 talloc_free(fname);
1176 smbcli_close(cli->tree, fnum);
1180 ZERO_STRUCT(result);
1181 result.tctx = tctx;
1183 io.t2ffirst.level = RAW_SEARCH_TRANS2;
1184 io.t2ffirst.data_level = RAW_SEARCH_DATA_EA_SIZE;
1185 io.t2ffirst.in.search_attrib = 0;
1186 io.t2ffirst.in.max_count = 100;
1187 io.t2ffirst.in.flags = FLAG_TRANS2_FIND_REQUIRE_RESUME;
1188 io.t2ffirst.in.storage_type = 0;
1189 io.t2ffirst.in.pattern = BASEDIR "\\*";
1191 status = smb_raw_search_first(cli->tree, tctx,
1192 &io, &result, multiple_search_callback);
1193 CHECK_STATUS(status, NT_STATUS_OK);
1195 for (i=0;i<MIN(result.count, delete_count);i++) {
1196 fname = talloc_asprintf(cli, BASEDIR "\\%s", result.list[i].ea_size.name.s);
1197 status = smbcli_unlink(cli->tree, fname);
1198 CHECK_STATUS(status, NT_STATUS_OK);
1199 total_deleted++;
1200 talloc_free(fname);
1203 io2.t2fnext.level = RAW_SEARCH_TRANS2;
1204 io2.t2fnext.data_level = RAW_SEARCH_DATA_EA_SIZE;
1205 io2.t2fnext.in.handle = io.t2ffirst.out.handle;
1206 io2.t2fnext.in.max_count = 100;
1207 io2.t2fnext.in.resume_key = result.list[i-1].ea_size.resume_key;
1208 io2.t2fnext.in.flags = FLAG_TRANS2_FIND_REQUIRE_RESUME;
1209 io2.t2fnext.in.last_name = result.list[i-1].ea_size.name.s;
1211 do {
1212 ZERO_STRUCT(result);
1213 result.tctx = tctx;
1215 status = smb_raw_search_next(cli->tree, tctx,
1216 &io2, &result, multiple_search_callback);
1217 if (!NT_STATUS_IS_OK(status)) {
1218 break;
1221 for (i=0;i<MIN(result.count, delete_count);i++) {
1222 fname = talloc_asprintf(cli, BASEDIR "\\%s", result.list[i].ea_size.name.s);
1223 status = smbcli_unlink(cli->tree, fname);
1224 CHECK_STATUS(status, NT_STATUS_OK);
1225 total_deleted++;
1226 talloc_free(fname);
1229 if (i>0) {
1230 io2.t2fnext.in.resume_key = result.list[i-1].ea_size.resume_key;
1231 io2.t2fnext.in.last_name = result.list[i-1].ea_size.name.s;
1233 } while (NT_STATUS_IS_OK(status) && result.count != 0);
1235 CHECK_STATUS(status, NT_STATUS_OK);
1237 if (total_deleted != num_files) {
1238 printf("error: deleted %d - expected to delete %d\n",
1239 total_deleted, num_files);
1240 ret = false;
1243 done:
1244 smb_raw_exit(cli->session);
1245 smbcli_deltree(cli->tree, BASEDIR);
1247 return ret;
1251 static int ealist_cmp(union smb_search_data *r1, union smb_search_data *r2)
1253 return strcmp(r1->ea_list.name.s, r2->ea_list.name.s);
1257 testing of the rather strange ea_list level
1259 static bool test_ea_list(struct torture_context *tctx,
1260 struct smbcli_state *cli)
1262 int fnum;
1263 bool ret = true;
1264 NTSTATUS status;
1265 union smb_search_first io;
1266 union smb_search_next nxt;
1267 struct multiple_result result;
1268 union smb_setfileinfo setfile;
1270 if (!torture_setup_dir(cli, BASEDIR)) {
1271 return false;
1274 printf("Testing RAW_SEARCH_EA_LIST level\n");
1276 fnum = smbcli_open(cli->tree, BASEDIR "\\file1.txt", O_CREAT|O_RDWR, DENY_NONE);
1277 smbcli_close(cli->tree, fnum);
1279 fnum = smbcli_open(cli->tree, BASEDIR "\\file2.txt", O_CREAT|O_RDWR, DENY_NONE);
1280 smbcli_close(cli->tree, fnum);
1282 fnum = smbcli_open(cli->tree, BASEDIR "\\file3.txt", O_CREAT|O_RDWR, DENY_NONE);
1283 smbcli_close(cli->tree, fnum);
1285 setfile.generic.level = RAW_SFILEINFO_EA_SET;
1286 setfile.generic.in.file.path = BASEDIR "\\file2.txt";
1287 setfile.ea_set.in.num_eas = 2;
1288 setfile.ea_set.in.eas = talloc_array(tctx, struct ea_struct, 2);
1289 setfile.ea_set.in.eas[0].flags = 0;
1290 setfile.ea_set.in.eas[0].name.s = "EA ONE";
1291 setfile.ea_set.in.eas[0].value = data_blob_string_const("VALUE 1");
1292 setfile.ea_set.in.eas[1].flags = 0;
1293 setfile.ea_set.in.eas[1].name.s = "SECOND EA";
1294 setfile.ea_set.in.eas[1].value = data_blob_string_const("Value Two");
1296 status = smb_raw_setpathinfo(cli->tree, &setfile);
1297 CHECK_STATUS(status, NT_STATUS_OK);
1299 setfile.generic.in.file.path = BASEDIR "\\file3.txt";
1300 status = smb_raw_setpathinfo(cli->tree, &setfile);
1301 CHECK_STATUS(status, NT_STATUS_OK);
1303 ZERO_STRUCT(result);
1304 result.tctx = tctx;
1306 io.t2ffirst.level = RAW_SEARCH_TRANS2;
1307 io.t2ffirst.data_level = RAW_SEARCH_DATA_EA_LIST;
1308 io.t2ffirst.in.search_attrib = 0;
1309 io.t2ffirst.in.max_count = 2;
1310 io.t2ffirst.in.flags = FLAG_TRANS2_FIND_REQUIRE_RESUME;
1311 io.t2ffirst.in.storage_type = 0;
1312 io.t2ffirst.in.pattern = BASEDIR "\\*";
1313 io.t2ffirst.in.num_names = 2;
1314 io.t2ffirst.in.ea_names = talloc_array(tctx, struct ea_name, 2);
1315 io.t2ffirst.in.ea_names[0].name.s = "SECOND EA";
1316 io.t2ffirst.in.ea_names[1].name.s = "THIRD EA";
1318 status = smb_raw_search_first(cli->tree, tctx,
1319 &io, &result, multiple_search_callback);
1320 CHECK_STATUS(status, NT_STATUS_OK);
1321 CHECK_VALUE(result.count, 2);
1323 nxt.t2fnext.level = RAW_SEARCH_TRANS2;
1324 nxt.t2fnext.data_level = RAW_SEARCH_DATA_EA_LIST;
1325 nxt.t2fnext.in.handle = io.t2ffirst.out.handle;
1326 nxt.t2fnext.in.max_count = 2;
1327 nxt.t2fnext.in.resume_key = result.list[1].ea_list.resume_key;
1328 nxt.t2fnext.in.flags = FLAG_TRANS2_FIND_REQUIRE_RESUME | FLAG_TRANS2_FIND_CONTINUE;
1329 nxt.t2fnext.in.last_name = result.list[1].ea_list.name.s;
1330 nxt.t2fnext.in.num_names = 2;
1331 nxt.t2fnext.in.ea_names = talloc_array(tctx, struct ea_name, 2);
1332 nxt.t2fnext.in.ea_names[0].name.s = "SECOND EA";
1333 nxt.t2fnext.in.ea_names[1].name.s = "THIRD EA";
1335 status = smb_raw_search_next(cli->tree, tctx,
1336 &nxt, &result, multiple_search_callback);
1337 CHECK_STATUS(status, NT_STATUS_OK);
1339 /* we have to sort the result as different servers can return directories
1340 in different orders */
1341 qsort(result.list, result.count, sizeof(result.list[0]),
1342 (comparison_fn_t)ealist_cmp);
1344 CHECK_VALUE(result.count, 3);
1345 CHECK_VALUE(result.list[0].ea_list.eas.num_eas, 2);
1346 CHECK_STRING(result.list[0].ea_list.name.s, "file1.txt");
1347 CHECK_STRING(result.list[0].ea_list.eas.eas[0].name.s, "SECOND EA");
1348 CHECK_VALUE(result.list[0].ea_list.eas.eas[0].value.length, 0);
1349 CHECK_STRING(result.list[0].ea_list.eas.eas[1].name.s, "THIRD EA");
1350 CHECK_VALUE(result.list[0].ea_list.eas.eas[1].value.length, 0);
1352 CHECK_STRING(result.list[1].ea_list.name.s, "file2.txt");
1353 CHECK_STRING(result.list[1].ea_list.eas.eas[0].name.s, "SECOND EA");
1354 CHECK_VALUE(result.list[1].ea_list.eas.eas[0].value.length, 9);
1355 CHECK_STRING((const char *)result.list[1].ea_list.eas.eas[0].value.data, "Value Two");
1356 CHECK_STRING(result.list[1].ea_list.eas.eas[1].name.s, "THIRD EA");
1357 CHECK_VALUE(result.list[1].ea_list.eas.eas[1].value.length, 0);
1359 CHECK_STRING(result.list[2].ea_list.name.s, "file3.txt");
1360 CHECK_STRING(result.list[2].ea_list.eas.eas[0].name.s, "SECOND EA");
1361 CHECK_VALUE(result.list[2].ea_list.eas.eas[0].value.length, 9);
1362 CHECK_STRING((const char *)result.list[2].ea_list.eas.eas[0].value.data, "Value Two");
1363 CHECK_STRING(result.list[2].ea_list.eas.eas[1].name.s, "THIRD EA");
1364 CHECK_VALUE(result.list[2].ea_list.eas.eas[1].value.length, 0);
1366 smb_raw_exit(cli->session);
1367 smbcli_deltree(cli->tree, BASEDIR);
1369 return ret;
1375 basic testing of all RAW_SEARCH_* calls using a single file
1377 struct torture_suite *torture_raw_search(TALLOC_CTX *mem_ctx)
1379 struct torture_suite *suite = torture_suite_create(mem_ctx, "SEARCH");
1381 torture_suite_add_1smb_test(suite, "one file search", test_one_file);
1382 torture_suite_add_1smb_test(suite, "many files", test_many_files);
1383 torture_suite_add_1smb_test(suite, "sorted", test_sorted);
1384 torture_suite_add_1smb_test(suite, "modify search", test_modify_search);
1385 torture_suite_add_1smb_test(suite, "many dirs", test_many_dirs);
1386 torture_suite_add_1smb_test(suite, "os2 delete", test_os2_delete);
1387 torture_suite_add_1smb_test(suite, "ea list", test_ea_list);
1389 return suite;