r8537: cope better with the small file handle limit on some systems in the build...
[samba.git] / source / torture / raw / search.c
1 /* 
2    Unix SMB/CIFS implementation.
3    RAW_SEARCH_* individual test suite
4    Copyright (C) Andrew Tridgell 2003
5    
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 2 of the License, or
9    (at your option) any later version.
10    
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.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "includes.h"
22 #include "system/filesys.h"
23 #include "libcli/raw/libcliraw.h"
24
25
26 #define BASEDIR "\\testsearch"
27
28 /*
29   callback function for single_search
30 */
31 static BOOL single_search_callback(void *private, union smb_search_data *file)
32 {
33         union smb_search_data *data = private;
34
35         *data = *file;
36
37         return True;
38 }
39
40 /*
41   do a single file (non-wildcard) search 
42 */
43 NTSTATUS torture_single_search(struct smbcli_state *cli, 
44                                TALLOC_CTX *mem_ctx,
45                                const char *pattern,
46                                enum smb_search_level level,
47                                uint16_t attrib,
48                                union smb_search_data *data)
49 {
50         union smb_search_first io;
51         union smb_search_close c;
52         NTSTATUS status;
53
54         io.generic.level = level;
55         if (level == RAW_SEARCH_SEARCH ||
56             level == RAW_SEARCH_FFIRST ||
57             level == RAW_SEARCH_FUNIQUE) {
58                 io.search_first.in.max_count = 1;
59                 io.search_first.in.search_attrib = attrib;
60                 io.search_first.in.pattern = pattern;
61         } else {
62                 io.t2ffirst.in.search_attrib = attrib;
63                 io.t2ffirst.in.max_count = 1;
64                 io.t2ffirst.in.flags = FLAG_TRANS2_FIND_CLOSE;
65                 io.t2ffirst.in.storage_type = 0;
66                 io.t2ffirst.in.pattern = pattern;
67         }
68
69         status = smb_raw_search_first(cli->tree, mem_ctx,
70                                       &io, (void *)data, single_search_callback);
71
72         if (NT_STATUS_IS_OK(status) && level == RAW_SEARCH_FFIRST) {
73                 c.fclose.level = RAW_FINDCLOSE_FCLOSE;
74                 c.fclose.in.max_count = 1;
75                 c.fclose.in.search_attrib = 0;
76                 c.fclose.in.id = data->search.id;
77                 status = smb_raw_search_close(cli->tree, &c);
78         }
79         
80         return status;
81 }
82
83
84 static struct {
85         const char *name;
86         enum smb_search_level level;
87         uint32_t capability_mask;
88         NTSTATUS status;
89         union smb_search_data data;
90 } levels[] = {
91         {"FFIRST",                 RAW_SEARCH_FFIRST, },
92         {"FUNIQUE",                RAW_SEARCH_FUNIQUE, },
93         {"SEARCH",                 RAW_SEARCH_SEARCH, },
94         {"STANDARD",               RAW_SEARCH_STANDARD, },
95         {"EA_SIZE",                RAW_SEARCH_EA_SIZE, },
96         {"DIRECTORY_INFO",         RAW_SEARCH_DIRECTORY_INFO, },
97         {"FULL_DIRECTORY_INFO",    RAW_SEARCH_FULL_DIRECTORY_INFO, },
98         {"NAME_INFO",              RAW_SEARCH_NAME_INFO, },
99         {"BOTH_DIRECTORY_INFO",    RAW_SEARCH_BOTH_DIRECTORY_INFO, },
100         {"ID_FULL_DIRECTORY_INFO", RAW_SEARCH_ID_FULL_DIRECTORY_INFO, },
101         {"ID_BOTH_DIRECTORY_INFO", RAW_SEARCH_ID_BOTH_DIRECTORY_INFO, },
102         {"UNIX_INFO",              RAW_SEARCH_UNIX_INFO, CAP_UNIX}
103 };
104
105 /* find a level in the table by name */
106 static union smb_search_data *find(const char *name)
107 {
108         int i;
109         for (i=0;i<ARRAY_SIZE(levels);i++) {
110                 if (NT_STATUS_IS_OK(levels[i].status) && 
111                     strcmp(levels[i].name, name) == 0) {
112                         return &levels[i].data;
113                 }
114         }
115         return NULL;
116 }
117
118 /* 
119    basic testing of all RAW_SEARCH_* calls using a single file
120 */
121 static BOOL test_one_file(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
122 {
123         BOOL ret = True;
124         int fnum;
125         const char *fname = "\\torture_search.txt";
126         const char *fname2 = "\\torture_search-NOTEXIST.txt";
127         NTSTATUS status;
128         int i;
129         union smb_fileinfo all_info, alt_info, name_info, internal_info;
130         union smb_search_data *s;
131
132         printf("Testing one file searches\n");
133
134         fnum = create_complex_file(cli, mem_ctx, fname);
135         if (fnum == -1) {
136                 printf("ERROR: open of %s failed (%s)\n", fname, smbcli_errstr(cli->tree));
137                 ret = False;
138                 goto done;
139         }
140
141         /* call all the levels */
142         for (i=0;i<ARRAY_SIZE(levels);i++) {
143                 NTSTATUS expected_status;
144                 uint32_t cap = cli->transport->negotiate.capabilities;
145
146                 printf("testing %s\n", levels[i].name);
147
148                 levels[i].status = torture_single_search(cli, mem_ctx, fname, 
149                                                          levels[i].level, 0,
150                                                          &levels[i].data);
151
152                 /* see if this server claims to support this level */
153                 if ((cap & levels[i].capability_mask) != levels[i].capability_mask) {
154                         printf("search level %s(%d) not supported by server\n",
155                                levels[i].name, (int)levels[i].level);
156                         continue;
157                 }
158
159                 if (!NT_STATUS_IS_OK(levels[i].status)) {
160                         printf("search level %s(%d) failed - %s\n",
161                                levels[i].name, (int)levels[i].level, 
162                                nt_errstr(levels[i].status));
163                         ret = False;
164                         continue;
165                 }
166
167                 status = torture_single_search(cli, mem_ctx, fname2, 
168                                                levels[i].level, 0,
169                                                &levels[i].data);
170                 
171                 expected_status = NT_STATUS_NO_SUCH_FILE;
172                 if (levels[i].level == RAW_SEARCH_SEARCH ||
173                     levels[i].level == RAW_SEARCH_FFIRST ||
174                     levels[i].level == RAW_SEARCH_FUNIQUE) {
175                         expected_status = STATUS_NO_MORE_FILES;
176                 }
177                 if (!NT_STATUS_EQUAL(status, expected_status)) {
178                         printf("search level %s(%d) should fail with %s - %s\n",
179                                levels[i].name, (int)levels[i].level, 
180                                nt_errstr(expected_status),
181                                nt_errstr(status));
182                         ret = False;
183                 }
184         }
185
186         /* get the all_info file into to check against */
187         all_info.generic.level = RAW_FILEINFO_ALL_INFO;
188         all_info.generic.in.fname = fname;
189         status = smb_raw_pathinfo(cli->tree, mem_ctx, &all_info);
190         if (!NT_STATUS_IS_OK(status)) {
191                 printf("RAW_FILEINFO_ALL_INFO failed - %s\n", nt_errstr(status));
192                 ret = False;
193                 goto done;
194         }
195
196         alt_info.generic.level = RAW_FILEINFO_ALT_NAME_INFO;
197         alt_info.generic.in.fname = fname;
198         status = smb_raw_pathinfo(cli->tree, mem_ctx, &alt_info);
199         if (!NT_STATUS_IS_OK(status)) {
200                 printf("RAW_FILEINFO_ALT_NAME_INFO failed - %s\n", nt_errstr(status));
201                 ret = False;
202                 goto done;
203         }
204
205         internal_info.generic.level = RAW_FILEINFO_INTERNAL_INFORMATION;
206         internal_info.generic.in.fname = fname;
207         status = smb_raw_pathinfo(cli->tree, mem_ctx, &internal_info);
208         if (!NT_STATUS_IS_OK(status)) {
209                 printf("RAW_FILEINFO_INTERNAL_INFORMATION failed - %s\n", nt_errstr(status));
210                 ret = False;
211                 goto done;
212         }
213
214         name_info.generic.level = RAW_FILEINFO_NAME_INFO;
215         name_info.generic.in.fname = fname;
216         status = smb_raw_pathinfo(cli->tree, mem_ctx, &name_info);
217         if (!NT_STATUS_IS_OK(status)) {
218                 printf("RAW_FILEINFO_NAME_INFO failed - %s\n", nt_errstr(status));
219                 ret = False;
220                 goto done;
221         }
222
223 #define CHECK_VAL(name, sname1, field1, v, sname2, field2) do { \
224         s = find(name); \
225         if (s) { \
226                 if ((s->sname1.field1) != (v.sname2.out.field2)) { \
227                         printf("(%s) %s/%s [0x%x] != %s/%s [0x%x]\n", \
228                                __location__, \
229                                 #sname1, #field1, (int)s->sname1.field1, \
230                                 #sname2, #field2, (int)v.sname2.out.field2); \
231                         ret = False; \
232                 } \
233         }} while (0)
234
235 #define CHECK_TIME(name, sname1, field1, v, sname2, field2) do { \
236         s = find(name); \
237         if (s) { \
238                 if (s->sname1.field1 != (~1 & nt_time_to_unix(v.sname2.out.field2))) { \
239                         printf("(%s) %s/%s [%s] != %s/%s [%s]\n", \
240                                __location__, \
241                                 #sname1, #field1, timestring(mem_ctx, s->sname1.field1), \
242                                 #sname2, #field2, nt_time_string(mem_ctx, v.sname2.out.field2)); \
243                         ret = False; \
244                 } \
245         }} while (0)
246
247 #define CHECK_NTTIME(name, sname1, field1, v, sname2, field2) do { \
248         s = find(name); \
249         if (s) { \
250                 if (s->sname1.field1 != v.sname2.out.field2) { \
251                         printf("(%s) %s/%s [%s] != %s/%s [%s]\n", \
252                                __location__, \
253                                 #sname1, #field1, nt_time_string(mem_ctx, s->sname1.field1), \
254                                 #sname2, #field2, nt_time_string(mem_ctx, v.sname2.out.field2)); \
255                         ret = False; \
256                 } \
257         }} while (0)
258
259 #define CHECK_STR(name, sname1, field1, v, sname2, field2) do { \
260         s = find(name); \
261         if (s) { \
262                 if (!s->sname1.field1 || strcmp(s->sname1.field1, v.sname2.out.field2.s)) { \
263                         printf("(%s) %s/%s [%s] != %s/%s [%s]\n", \
264                                __location__, \
265                                 #sname1, #field1, s->sname1.field1, \
266                                 #sname2, #field2, v.sname2.out.field2.s); \
267                         ret = False; \
268                 } \
269         }} while (0)
270
271 #define CHECK_WSTR(name, sname1, field1, v, sname2, field2, flags) do { \
272         s = find(name); \
273         if (s) { \
274                 if (!s->sname1.field1.s || \
275                     strcmp(s->sname1.field1.s, v.sname2.out.field2.s) || \
276                     wire_bad_flags(&s->sname1.field1, flags, cli)) { \
277                         printf("(%s) %s/%s [%s] != %s/%s [%s]\n", \
278                                __location__, \
279                                 #sname1, #field1, s->sname1.field1.s, \
280                                 #sname2, #field2, v.sname2.out.field2.s); \
281                         ret = False; \
282                 } \
283         }} while (0)
284
285 #define CHECK_NAME(name, sname1, field1, fname, flags) do { \
286         s = find(name); \
287         if (s) { \
288                 if (!s->sname1.field1.s || \
289                     strcmp(s->sname1.field1.s, fname) || \
290                     wire_bad_flags(&s->sname1.field1, flags, cli)) { \
291                         printf("(%s) %s/%s [%s] != %s\n", \
292                                __location__, \
293                                 #sname1, #field1, s->sname1.field1.s, \
294                                 fname); \
295                         ret = False; \
296                 } \
297         }} while (0)
298
299 #define CHECK_UNIX_NAME(name, sname1, field1, fname, flags) do { \
300         s = find(name); \
301         if (s) { \
302                 if (!s->sname1.field1 || \
303                     strcmp(s->sname1.field1, fname)) { \
304                         printf("(%s) %s/%s [%s] != %s\n", \
305                                __location__, \
306                                 #sname1, #field1, s->sname1.field1, \
307                                 fname); \
308                         ret = False; \
309                 } \
310         }} while (0)
311         
312         /* check that all the results are as expected */
313         CHECK_VAL("SEARCH",              search,              attrib, all_info, all_info, attrib&0xFFF);
314         CHECK_VAL("STANDARD",            standard,            attrib, all_info, all_info, attrib&0xFFF);
315         CHECK_VAL("EA_SIZE",             ea_size,             attrib, all_info, all_info, attrib&0xFFF);
316         CHECK_VAL("DIRECTORY_INFO",      directory_info,      attrib, all_info, all_info, attrib);
317         CHECK_VAL("FULL_DIRECTORY_INFO", full_directory_info, attrib, all_info, all_info, attrib);
318         CHECK_VAL("BOTH_DIRECTORY_INFO", both_directory_info, attrib, all_info, all_info, attrib);
319         CHECK_VAL("ID_FULL_DIRECTORY_INFO", id_full_directory_info,           attrib, all_info, all_info, attrib);
320         CHECK_VAL("ID_BOTH_DIRECTORY_INFO", id_both_directory_info,           attrib, all_info, all_info, attrib);
321
322         CHECK_TIME("SEARCH",             search,              write_time, all_info, all_info, write_time);
323         CHECK_TIME("STANDARD",           standard,            write_time, all_info, all_info, write_time);
324         CHECK_TIME("EA_SIZE",            ea_size,             write_time, all_info, all_info, write_time);
325         CHECK_TIME("STANDARD",           standard,            create_time, all_info, all_info, create_time);
326         CHECK_TIME("EA_SIZE",            ea_size,             create_time, all_info, all_info, create_time);
327         CHECK_TIME("STANDARD",           standard,            access_time, all_info, all_info, access_time);
328         CHECK_TIME("EA_SIZE",            ea_size,             access_time, all_info, all_info, access_time);
329
330         CHECK_NTTIME("DIRECTORY_INFO",      directory_info,      write_time, all_info, all_info, write_time);
331         CHECK_NTTIME("FULL_DIRECTORY_INFO", full_directory_info, write_time, all_info, all_info, write_time);
332         CHECK_NTTIME("BOTH_DIRECTORY_INFO", both_directory_info, write_time, all_info, all_info, write_time);
333         CHECK_NTTIME("ID_FULL_DIRECTORY_INFO", id_full_directory_info,           write_time, all_info, all_info, write_time);
334         CHECK_NTTIME("ID_BOTH_DIRECTORY_INFO", id_both_directory_info,           write_time, all_info, all_info, write_time);
335
336         CHECK_NTTIME("DIRECTORY_INFO",      directory_info,      create_time, all_info, all_info, create_time);
337         CHECK_NTTIME("FULL_DIRECTORY_INFO", full_directory_info, create_time, all_info, all_info, create_time);
338         CHECK_NTTIME("BOTH_DIRECTORY_INFO", both_directory_info, create_time, all_info, all_info, create_time);
339         CHECK_NTTIME("ID_FULL_DIRECTORY_INFO", id_full_directory_info,           create_time, all_info, all_info, create_time);
340         CHECK_NTTIME("ID_BOTH_DIRECTORY_INFO", id_both_directory_info,           create_time, all_info, all_info, create_time);
341
342         CHECK_NTTIME("DIRECTORY_INFO",      directory_info,      access_time, all_info, all_info, access_time);
343         CHECK_NTTIME("FULL_DIRECTORY_INFO", full_directory_info, access_time, all_info, all_info, access_time);
344         CHECK_NTTIME("BOTH_DIRECTORY_INFO", both_directory_info, access_time, all_info, all_info, access_time);
345         CHECK_NTTIME("ID_FULL_DIRECTORY_INFO", id_full_directory_info,           access_time, all_info, all_info, access_time);
346         CHECK_NTTIME("ID_BOTH_DIRECTORY_INFO", id_both_directory_info,           access_time, all_info, all_info, access_time);
347
348         CHECK_NTTIME("DIRECTORY_INFO",      directory_info,      create_time, all_info, all_info, create_time);
349         CHECK_NTTIME("FULL_DIRECTORY_INFO", full_directory_info, create_time, all_info, all_info, create_time);
350         CHECK_NTTIME("BOTH_DIRECTORY_INFO", both_directory_info, create_time, all_info, all_info, create_time);
351         CHECK_NTTIME("ID_FULL_DIRECTORY_INFO", id_full_directory_info,           create_time, all_info, all_info, create_time);
352         CHECK_NTTIME("ID_BOTH_DIRECTORY_INFO", id_both_directory_info,           create_time, all_info, all_info, create_time);
353
354         CHECK_VAL("SEARCH",              search,              size, all_info, all_info, size);
355         CHECK_VAL("STANDARD",            standard,            size, all_info, all_info, size);
356         CHECK_VAL("EA_SIZE",             ea_size,             size, all_info, all_info, size);
357         CHECK_VAL("DIRECTORY_INFO",      directory_info,      size, all_info, all_info, size);
358         CHECK_VAL("FULL_DIRECTORY_INFO", full_directory_info, size, all_info, all_info, size);
359         CHECK_VAL("BOTH_DIRECTORY_INFO", both_directory_info, size, all_info, all_info, size);
360         CHECK_VAL("ID_FULL_DIRECTORY_INFO", id_full_directory_info,           size, all_info, all_info, size);
361         CHECK_VAL("ID_BOTH_DIRECTORY_INFO", id_both_directory_info,           size, all_info, all_info, size);
362         CHECK_VAL("UNIX_INFO",           unix_info,           size, all_info, all_info, size);
363
364         CHECK_VAL("STANDARD",            standard,            alloc_size, all_info, all_info, alloc_size);
365         CHECK_VAL("EA_SIZE",             ea_size,             alloc_size, all_info, all_info, alloc_size);
366         CHECK_VAL("DIRECTORY_INFO",      directory_info,      alloc_size, all_info, all_info, alloc_size);
367         CHECK_VAL("FULL_DIRECTORY_INFO", full_directory_info, alloc_size, all_info, all_info, alloc_size);
368         CHECK_VAL("BOTH_DIRECTORY_INFO", both_directory_info, alloc_size, all_info, all_info, alloc_size);
369         CHECK_VAL("ID_FULL_DIRECTORY_INFO", id_full_directory_info,           alloc_size, all_info, all_info, alloc_size);
370         CHECK_VAL("ID_BOTH_DIRECTORY_INFO", id_both_directory_info,           alloc_size, all_info, all_info, alloc_size);
371         CHECK_VAL("UNIX_INFO",           unix_info,           alloc_size, all_info, all_info, alloc_size);
372
373         CHECK_VAL("EA_SIZE",             ea_size,             ea_size, all_info, all_info, ea_size);
374         CHECK_VAL("FULL_DIRECTORY_INFO", full_directory_info, ea_size, all_info, all_info, ea_size);
375         CHECK_VAL("BOTH_DIRECTORY_INFO", both_directory_info, ea_size, all_info, all_info, ea_size);
376         CHECK_VAL("ID_FULL_DIRECTORY_INFO", id_full_directory_info,           ea_size, all_info, all_info, ea_size);
377         CHECK_VAL("ID_BOTH_DIRECTORY_INFO", id_both_directory_info,           ea_size, all_info, all_info, ea_size);
378
379         CHECK_STR("SEARCH", search, name, alt_info, alt_name_info, fname);
380         CHECK_WSTR("BOTH_DIRECTORY_INFO", both_directory_info, short_name, alt_info, alt_name_info, fname, STR_UNICODE);
381
382         CHECK_NAME("STANDARD",            standard,            name, fname+1, 0);
383         CHECK_NAME("EA_SIZE",             ea_size,             name, fname+1, 0);
384         CHECK_NAME("DIRECTORY_INFO",      directory_info,      name, fname+1, STR_TERMINATE_ASCII);
385         CHECK_NAME("FULL_DIRECTORY_INFO", full_directory_info, name, fname+1, STR_TERMINATE_ASCII);
386         CHECK_NAME("NAME_INFO",           name_info,           name, fname+1, STR_TERMINATE_ASCII);
387         CHECK_NAME("BOTH_DIRECTORY_INFO", both_directory_info, name, fname+1, STR_TERMINATE_ASCII);
388         CHECK_NAME("ID_FULL_DIRECTORY_INFO", id_full_directory_info,           name, fname+1, STR_TERMINATE_ASCII);
389         CHECK_NAME("ID_BOTH_DIRECTORY_INFO", id_both_directory_info,           name, fname+1, STR_TERMINATE_ASCII);
390         CHECK_UNIX_NAME("UNIX_INFO",           unix_info,           name, fname+1, STR_TERMINATE_ASCII);
391
392         CHECK_VAL("ID_FULL_DIRECTORY_INFO", id_full_directory_info, file_id, internal_info, internal_information, file_id);
393         CHECK_VAL("ID_BOTH_DIRECTORY_INFO", id_both_directory_info, file_id, internal_info, internal_information, file_id);
394
395 done:
396         smb_raw_exit(cli->session);
397         smbcli_unlink(cli->tree, fname);
398
399         return ret;
400 }
401
402
403 struct multiple_result {
404         TALLOC_CTX *mem_ctx;
405         int count;
406         union smb_search_data *list;
407 };
408
409 /*
410   callback function for multiple_search
411 */
412 static BOOL multiple_search_callback(void *private, union smb_search_data *file)
413 {
414         struct multiple_result *data = private;
415
416
417         data->count++;
418         data->list = talloc_realloc(data->mem_ctx,
419                                       data->list, 
420                                       union smb_search_data,
421                                       data->count);
422
423         data->list[data->count-1] = *file;
424
425         return True;
426 }
427
428 enum continue_type {CONT_FLAGS, CONT_NAME, CONT_RESUME_KEY};
429
430 /*
431   do a single file (non-wildcard) search 
432 */
433 static NTSTATUS multiple_search(struct smbcli_state *cli, 
434                                 TALLOC_CTX *mem_ctx,
435                                 const char *pattern,
436                                 enum smb_search_level level,
437                                 enum continue_type cont_type,
438                                 void *data)
439 {
440         union smb_search_first io;
441         union smb_search_next io2;
442         NTSTATUS status;
443         const int per_search = 100;
444         struct multiple_result *result = data;
445
446         io.generic.level = level;
447         if (level == RAW_SEARCH_SEARCH) {
448                 io.search_first.in.max_count = per_search;
449                 io.search_first.in.search_attrib = 0;
450                 io.search_first.in.pattern = pattern;
451         } else {
452                 io.t2ffirst.in.search_attrib = 0;
453                 io.t2ffirst.in.max_count = per_search;
454                 io.t2ffirst.in.flags = FLAG_TRANS2_FIND_CLOSE_IF_END;
455                 io.t2ffirst.in.storage_type = 0;
456                 io.t2ffirst.in.pattern = pattern;
457                 if (cont_type == CONT_RESUME_KEY) {
458                         io.t2ffirst.in.flags |= FLAG_TRANS2_FIND_REQUIRE_RESUME | 
459                                 FLAG_TRANS2_FIND_BACKUP_INTENT;
460                 }
461         }
462
463         status = smb_raw_search_first(cli->tree, mem_ctx,
464                                       &io, data, multiple_search_callback);
465         
466
467         while (NT_STATUS_IS_OK(status)) {
468                 io2.generic.level = level;
469                 if (level == RAW_SEARCH_SEARCH) {
470                         io2.search_next.in.max_count = per_search;
471                         io2.search_next.in.search_attrib = 0;
472                         io2.search_next.in.id = result->list[result->count-1].search.id;
473                 } else {
474                         io2.t2fnext.in.handle = io.t2ffirst.out.handle;
475                         io2.t2fnext.in.max_count = per_search;
476                         io2.t2fnext.in.resume_key = 0;
477                         io2.t2fnext.in.flags = FLAG_TRANS2_FIND_CLOSE_IF_END;
478                         io2.t2fnext.in.last_name = "";
479                         switch (cont_type) {
480                         case CONT_RESUME_KEY:
481                                 if (level == RAW_SEARCH_STANDARD) {
482                                         io2.t2fnext.in.resume_key = 
483                                                 result->list[result->count-1].standard.resume_key;
484                                 } else if (level == RAW_SEARCH_EA_SIZE) {
485                                         io2.t2fnext.in.resume_key = 
486                                                 result->list[result->count-1].ea_size.resume_key;
487                                 } else if (level == RAW_SEARCH_DIRECTORY_INFO) {
488                                         io2.t2fnext.in.resume_key = 
489                                                 result->list[result->count-1].directory_info.file_index;
490                                 } else {
491                                         io2.t2fnext.in.resume_key = 
492                                                 result->list[result->count-1].both_directory_info.file_index;
493                                 }
494                                 if (io2.t2fnext.in.resume_key == 0) {
495                                         printf("Server does not support resume by key\n");
496                                         return NT_STATUS_NOT_SUPPORTED;
497                                 }
498                                 io2.t2fnext.in.flags |= FLAG_TRANS2_FIND_REQUIRE_RESUME |
499                                         FLAG_TRANS2_FIND_BACKUP_INTENT;
500                                 break;
501                         case CONT_NAME:
502                                 if (level == RAW_SEARCH_STANDARD) {
503                                         io2.t2fnext.in.last_name = 
504                                                 result->list[result->count-1].standard.name.s;
505                                 } else if (level == RAW_SEARCH_EA_SIZE) {
506                                         io2.t2fnext.in.last_name = 
507                                                 result->list[result->count-1].ea_size.name.s;
508                                 } else if (level == RAW_SEARCH_DIRECTORY_INFO) {
509                                         io2.t2fnext.in.last_name = 
510                                                 result->list[result->count-1].directory_info.name.s;
511                                 } else {
512                                         io2.t2fnext.in.last_name = 
513                                                 result->list[result->count-1].both_directory_info.name.s;
514                                 }
515                                 break;
516                         case CONT_FLAGS:
517                                 io2.t2fnext.in.flags |= FLAG_TRANS2_FIND_CONTINUE;
518                                 break;
519                         }
520                 }
521
522                 status = smb_raw_search_next(cli->tree, mem_ctx,
523                                              &io2, data, multiple_search_callback);
524                 if (!NT_STATUS_IS_OK(status)) {
525                         break;
526                 }
527                 if (level == RAW_SEARCH_SEARCH) {
528                         if (io2.search_next.out.count == 0) {
529                                 break;
530                         }
531                 } else if (io2.t2fnext.out.count == 0 ||
532                            io2.t2fnext.out.end_of_search) {
533                         break;
534                 }
535         }
536
537         return status;
538 }
539
540 #define CHECK_STATUS(status, correct) do { \
541         if (!NT_STATUS_EQUAL(status, correct)) { \
542                 printf("(%s) Incorrect status %s - should be %s\n", \
543                        __location__, nt_errstr(status), nt_errstr(correct)); \
544                 ret = False; \
545                 goto done; \
546         }} while (0)
547
548 #define CHECK_VALUE(v, correct) do { \
549         if ((v) != (correct)) { \
550                 printf("(%s) Incorrect value %s=%d - should be %d\n", \
551                        __location__, #v, v, (int)correct); \
552                 ret = False; \
553         }} while (0)
554
555 #define CHECK_STRING(v, correct) do { \
556         if (StrCaseCmp(v, correct) != 0) { \
557                 printf("(%s) Incorrect value %s='%s' - should be '%s'\n", \
558                        __location__, #v, v, correct); \
559                 ret = False; \
560         }} while (0)
561
562
563 static int search_both_compare(union smb_search_data *d1, union smb_search_data *d2)
564 {
565         return strcmp_safe(d1->both_directory_info.name.s, d2->both_directory_info.name.s);
566 }
567
568 static int search_standard_compare(union smb_search_data *d1, union smb_search_data *d2)
569 {
570         return strcmp_safe(d1->standard.name.s, d2->standard.name.s);
571 }
572
573 static int search_ea_size_compare(union smb_search_data *d1, union smb_search_data *d2)
574 {
575         return strcmp_safe(d1->ea_size.name.s, d2->ea_size.name.s);
576 }
577
578 static int search_directory_info_compare(union smb_search_data *d1, union smb_search_data *d2)
579 {
580         return strcmp_safe(d1->directory_info.name.s, d2->directory_info.name.s);
581 }
582
583 static int search_old_compare(union smb_search_data *d1, union smb_search_data *d2)
584 {
585         return strcmp_safe(d1->search.name, d2->search.name);
586 }
587
588
589 /* 
590    basic testing of search calls using many files
591 */
592 static BOOL test_many_files(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
593 {
594         const int num_files = 700;
595         int i, fnum, t;
596         char *fname;
597         BOOL ret = True;
598         NTSTATUS status;
599         struct multiple_result result;
600         struct {
601                 const char *name;
602                 const char *cont_name;
603                 enum smb_search_level level;
604                 enum continue_type cont_type;
605         } search_types[] = {
606                 {"SEARCH",              "ID",    RAW_SEARCH_SEARCH,              CONT_RESUME_KEY},
607                 {"BOTH_DIRECTORY_INFO", "NAME",  RAW_SEARCH_BOTH_DIRECTORY_INFO, CONT_NAME},
608                 {"BOTH_DIRECTORY_INFO", "FLAGS", RAW_SEARCH_BOTH_DIRECTORY_INFO, CONT_FLAGS},
609                 {"BOTH_DIRECTORY_INFO", "KEY",   RAW_SEARCH_BOTH_DIRECTORY_INFO, CONT_RESUME_KEY},
610                 {"STANDARD",            "FLAGS", RAW_SEARCH_STANDARD,            CONT_FLAGS},
611                 {"STANDARD",            "KEY",   RAW_SEARCH_STANDARD,            CONT_RESUME_KEY},
612                 {"STANDARD",            "NAME",  RAW_SEARCH_STANDARD,            CONT_NAME},
613                 {"EA_SIZE",             "FLAGS", RAW_SEARCH_EA_SIZE,             CONT_FLAGS},
614                 {"EA_SIZE",             "KEY",   RAW_SEARCH_EA_SIZE,             CONT_RESUME_KEY},
615                 {"EA_SIZE",             "NAME",  RAW_SEARCH_EA_SIZE,             CONT_NAME},
616                 {"DIRECTORY_INFO",      "FLAGS", RAW_SEARCH_DIRECTORY_INFO,      CONT_FLAGS},
617                 {"DIRECTORY_INFO",      "KEY",   RAW_SEARCH_DIRECTORY_INFO,      CONT_RESUME_KEY},
618                 {"DIRECTORY_INFO",      "NAME",  RAW_SEARCH_DIRECTORY_INFO,      CONT_NAME}
619         };
620
621         if (!torture_setup_dir(cli, BASEDIR)) {
622                 return False;
623         }
624
625         printf("Creating %d files\n", num_files);
626
627         for (i=0;i<num_files;i++) {
628                 asprintf(&fname, BASEDIR "\\t%03d-%d.txt", i, i);
629                 fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR, DENY_NONE);
630                 if (fnum == -1) {
631                         printf("Failed to create %s - %s\n", fname, smbcli_errstr(cli->tree));
632                         ret = False;
633                         goto done;
634                 }
635                 free(fname);
636                 smbcli_close(cli->tree, fnum);
637         }
638
639
640         for (t=0;t<ARRAY_SIZE(search_types);t++) {
641                 ZERO_STRUCT(result);
642                 result.mem_ctx = talloc_new(mem_ctx);
643         
644                 printf("Continue %s via %s\n", search_types[t].name, search_types[t].cont_name);
645
646                 status = multiple_search(cli, mem_ctx, BASEDIR "\\*.*", 
647                                          search_types[t].level,
648                                          search_types[t].cont_type,
649                                          &result);
650         
651                 if (!NT_STATUS_IS_OK(status)) {
652                         printf("search failed - %s\n", nt_errstr(status));
653                         ret = False;
654                         continue;
655                 }
656                 CHECK_VALUE(result.count, num_files);
657
658                 if (search_types[t].level == RAW_SEARCH_BOTH_DIRECTORY_INFO) {
659                         qsort(result.list, result.count, sizeof(result.list[0]), 
660                               QSORT_CAST  search_both_compare);
661                 } else if (search_types[t].level == RAW_SEARCH_STANDARD) {
662                         qsort(result.list, result.count, sizeof(result.list[0]), 
663                               QSORT_CAST search_standard_compare);
664                 } else if (search_types[t].level == RAW_SEARCH_EA_SIZE) {
665                         qsort(result.list, result.count, sizeof(result.list[0]), 
666                               QSORT_CAST search_ea_size_compare);
667                 } else if (search_types[t].level == RAW_SEARCH_DIRECTORY_INFO) {
668                         qsort(result.list, result.count, sizeof(result.list[0]), 
669                               QSORT_CAST search_directory_info_compare);
670                 } else {
671                         qsort(result.list, result.count, sizeof(result.list[0]), 
672                               QSORT_CAST search_old_compare);
673                 }
674
675                 for (i=0;i<result.count;i++) {
676                         const char *s;
677                         if (search_types[t].level == RAW_SEARCH_BOTH_DIRECTORY_INFO) {
678                                 s = result.list[i].both_directory_info.name.s;
679                         } else if (search_types[t].level == RAW_SEARCH_STANDARD) {
680                                 s = result.list[i].standard.name.s;
681                         } else if (search_types[t].level == RAW_SEARCH_EA_SIZE) {
682                                 s = result.list[i].ea_size.name.s;
683                         } else if (search_types[t].level == RAW_SEARCH_DIRECTORY_INFO) {
684                                 s = result.list[i].directory_info.name.s;
685                         } else {
686                                 s = result.list[i].search.name;
687                         }
688                         asprintf(&fname, "t%03d-%d.txt", i, i);
689                         if (strcmp(fname, s)) {
690                                 printf("Incorrect name %s at entry %d\n", s, i);
691                                 ret = False;
692                                 break;
693                         }
694                         free(fname);
695                 }
696                 talloc_free(result.mem_ctx);
697         }
698
699 done:
700         smb_raw_exit(cli->session);
701         smbcli_deltree(cli->tree, BASEDIR);
702
703         return ret;
704 }
705
706 /*
707   check a individual file result
708 */
709 static BOOL check_result(struct multiple_result *result, const char *name, BOOL exist, uint32_t attrib)
710 {
711         int i;
712         for (i=0;i<result->count;i++) {
713                 if (strcmp(name, result->list[i].both_directory_info.name.s) == 0) break;
714         }
715         if (i == result->count) {
716                 if (exist) {
717                         printf("failed: '%s' should exist with attribute %s\n", 
718                                name, attrib_string(result->list, attrib));
719                         return False;
720                 }
721                 return True;
722         }
723
724         if (!exist) {
725                 printf("failed: '%s' should NOT exist (has attribute %s)\n", 
726                        name, attrib_string(result->list, result->list[i].both_directory_info.attrib));
727                 return False;
728         }
729
730         if ((result->list[i].both_directory_info.attrib&0xFFF) != attrib) {
731                 printf("failed: '%s' should have attribute 0x%x (has 0x%x)\n",
732                        name, 
733                        attrib, result->list[i].both_directory_info.attrib);
734                 return False;
735         }
736         return True;
737 }
738
739 /* 
740    test what happens when the directory is modified during a search
741 */
742 static BOOL test_modify_search(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
743 {
744         const int num_files = 20;
745         int i, fnum;
746         char *fname;
747         BOOL ret = True;
748         NTSTATUS status;
749         struct multiple_result result;
750         union smb_search_first io;
751         union smb_search_next io2;
752         union smb_setfileinfo sfinfo;
753
754         if (!torture_setup_dir(cli, BASEDIR)) {
755                 return False;
756         }
757
758         printf("Creating %d files\n", num_files);
759
760         for (i=num_files-1;i>=0;i--) {
761                 asprintf(&fname, BASEDIR "\\t%03d-%d.txt", i, i);
762                 fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR, DENY_NONE);
763                 if (fnum == -1) {
764                         printf("Failed to create %s - %s\n", fname, smbcli_errstr(cli->tree));
765                         ret = False;
766                         goto done;
767                 }
768                 free(fname);
769                 smbcli_close(cli->tree, fnum);
770         }
771
772         printf("pulling the first file\n");
773         ZERO_STRUCT(result);
774         result.mem_ctx = talloc_new(mem_ctx);
775
776         io.generic.level = RAW_SEARCH_BOTH_DIRECTORY_INFO;
777         io.t2ffirst.in.search_attrib = 0;
778         io.t2ffirst.in.max_count = 0;
779         io.t2ffirst.in.flags = 0;
780         io.t2ffirst.in.storage_type = 0;
781         io.t2ffirst.in.pattern = BASEDIR "\\*.*";
782
783         status = smb_raw_search_first(cli->tree, mem_ctx,
784                                       &io, &result, multiple_search_callback);
785         CHECK_STATUS(status, NT_STATUS_OK);
786         CHECK_VALUE(result.count, 1);
787         
788         printf("pulling the second file\n");
789         io2.generic.level = RAW_SEARCH_BOTH_DIRECTORY_INFO;
790         io2.t2fnext.in.handle = io.t2ffirst.out.handle;
791         io2.t2fnext.in.max_count = 1;
792         io2.t2fnext.in.resume_key = 0;
793         io2.t2fnext.in.flags = 0;
794         if (result.count == 0) {
795                 io2.t2fnext.in.last_name = "";
796         } else {
797                 io2.t2fnext.in.last_name = result.list[result.count-1].both_directory_info.name.s;
798         }
799
800         status = smb_raw_search_next(cli->tree, mem_ctx,
801                                      &io2, &result, multiple_search_callback);
802         CHECK_STATUS(status, NT_STATUS_OK);
803         CHECK_VALUE(result.count, 2);
804
805         printf("Changing attributes and deleting\n");
806         smbcli_open(cli->tree, BASEDIR "\\T003-03.txt.2", O_CREAT|O_RDWR, DENY_NONE);
807         smbcli_open(cli->tree, BASEDIR "\\T013-13.txt.2", O_CREAT|O_RDWR, DENY_NONE);
808         fnum = create_complex_file(cli, mem_ctx, BASEDIR "\\T013-13.txt.3");
809         smbcli_unlink(cli->tree, BASEDIR "\\T014-14.txt");
810         torture_set_file_attribute(cli->tree, BASEDIR "\\T015-15.txt", FILE_ATTRIBUTE_HIDDEN);
811         torture_set_file_attribute(cli->tree, BASEDIR "\\T016-16.txt", FILE_ATTRIBUTE_NORMAL);
812         torture_set_file_attribute(cli->tree, BASEDIR "\\T017-17.txt", FILE_ATTRIBUTE_SYSTEM);  
813         torture_set_file_attribute(cli->tree, BASEDIR "\\T018-18.txt", 0);      
814         sfinfo.generic.level = RAW_SFILEINFO_DISPOSITION_INFORMATION;
815         sfinfo.generic.file.fnum = fnum;
816         sfinfo.disposition_info.in.delete_on_close = 1;
817         status = smb_raw_setfileinfo(cli->tree, &sfinfo);
818         CHECK_STATUS(status, NT_STATUS_OK);
819
820         io2.generic.level = RAW_SEARCH_BOTH_DIRECTORY_INFO;
821         io2.t2fnext.in.handle = io.t2ffirst.out.handle;
822         io2.t2fnext.in.max_count = num_files - 1;
823         io2.t2fnext.in.resume_key = 0;
824         io2.t2fnext.in.flags = 0;
825         io2.t2fnext.in.last_name = result.list[result.count-2].both_directory_info.name.s;
826
827         status = smb_raw_search_next(cli->tree, mem_ctx,
828                                      &io2, &result, multiple_search_callback);
829         CHECK_STATUS(status, NT_STATUS_OK);
830         CHECK_VALUE(result.count, 21);
831
832         ret &= check_result(&result, "t009-9.txt", True, FILE_ATTRIBUTE_ARCHIVE);
833         ret &= check_result(&result, "t014-14.txt", False, 0);
834         ret &= check_result(&result, "t015-15.txt", False, 0);
835         ret &= check_result(&result, "t016-16.txt", True, FILE_ATTRIBUTE_NORMAL);
836         ret &= check_result(&result, "t017-17.txt", False, 0);
837         ret &= check_result(&result, "t018-18.txt", True, FILE_ATTRIBUTE_ARCHIVE);
838         ret &= check_result(&result, "t019-19.txt", True, FILE_ATTRIBUTE_ARCHIVE);
839         ret &= check_result(&result, "T013-13.txt.2", True, FILE_ATTRIBUTE_ARCHIVE);
840         ret &= check_result(&result, "T003-3.txt.2", False, 0);
841         ret &= check_result(&result, "T013-13.txt.3", True, FILE_ATTRIBUTE_ARCHIVE);
842
843         if (!ret) {
844                 for (i=0;i<result.count;i++) {
845                         printf("%s %s (0x%x)\n", 
846                                result.list[i].both_directory_info.name.s, 
847                                attrib_string(mem_ctx, result.list[i].both_directory_info.attrib),
848                                result.list[i].both_directory_info.attrib);
849                 }
850         }
851
852 done:
853         smb_raw_exit(cli->session);
854         smbcli_deltree(cli->tree, BASEDIR);
855
856         return ret;
857 }
858
859
860 /* 
861    testing if directories always come back sorted
862 */
863 static BOOL test_sorted(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
864 {
865         const int num_files = 700;
866         int i, fnum;
867         char *fname;
868         BOOL ret = True;
869         NTSTATUS status;
870         struct multiple_result result;
871
872         if (!torture_setup_dir(cli, BASEDIR)) {
873                 return False;
874         }
875
876         printf("Creating %d files\n", num_files);
877
878         for (i=0;i<num_files;i++) {
879                 asprintf(&fname, BASEDIR "\\%s.txt", generate_random_str_list(mem_ctx, 10, "abcdefgh"));
880                 fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR, DENY_NONE);
881                 if (fnum == -1) {
882                         printf("Failed to create %s - %s\n", fname, smbcli_errstr(cli->tree));
883                         ret = False;
884                         goto done;
885                 }
886                 free(fname);
887                 smbcli_close(cli->tree, fnum);
888         }
889
890
891         ZERO_STRUCT(result);
892         result.mem_ctx = mem_ctx;
893         
894         status = multiple_search(cli, mem_ctx, BASEDIR "\\*.*", 
895                                  RAW_SEARCH_BOTH_DIRECTORY_INFO,
896                                  CONT_NAME, &result);   
897         CHECK_STATUS(status, NT_STATUS_OK);
898         CHECK_VALUE(result.count, num_files);
899
900         for (i=0;i<num_files-1;i++) {
901                 const char *name1, *name2;
902                 name1 = result.list[i].both_directory_info.name.s;
903                 name2 = result.list[i+1].both_directory_info.name.s;
904                 if (StrCaseCmp(name1, name2) > 0) {
905                         printf("non-alphabetical order at entry %d  '%s' '%s'\n", 
906                                i, name1, name2);
907                         printf("Server does not produce sorted directory listings (not an error)\n");
908                         goto done;
909                 }
910         }
911
912         talloc_free(result.list);
913
914 done:
915         smb_raw_exit(cli->session);
916         smbcli_deltree(cli->tree, BASEDIR);
917
918         return ret;
919 }
920
921
922
923 /* 
924    basic testing of many old style search calls using separate dirs
925 */
926 static BOOL test_many_dirs(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
927 {
928         const int num_dirs = 100;
929         int i, fnum, n;
930         char *fname, *dname;
931         BOOL ret = True;
932         NTSTATUS status;
933         union smb_search_data *file, *file2, *file3;
934
935         if (!torture_setup_dir(cli, BASEDIR)) {
936                 return False;
937         }
938
939         printf("Creating %d dirs\n", num_dirs);
940
941         for (i=0;i<num_dirs;i++) {
942                 asprintf(&dname, BASEDIR "\\d%d", i);
943                 status = smbcli_mkdir(cli->tree, dname);
944                 if (!NT_STATUS_IS_OK(status)) {
945                         printf("(%s) Failed to create %s - %s\n", 
946                                __location__, dname, nt_errstr(status));
947                         ret = False;
948                         goto done;
949                 }
950
951                 for (n=0;n<3;n++) {
952                         asprintf(&fname, BASEDIR "\\d%d\\f%d-%d.txt", i, i, n);
953                         fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR, DENY_NONE);
954                         if (fnum == -1) {
955                                 printf("(%s) Failed to create %s - %s\n", 
956                                        __location__, fname, smbcli_errstr(cli->tree));
957                                 ret = False;
958                                 goto done;
959                         }
960                         free(fname);
961                         smbcli_close(cli->tree, fnum);
962                 }
963
964                 free(dname);
965         }
966
967         file  = talloc_zero_array(mem_ctx, union smb_search_data, num_dirs);
968         file2 = talloc_zero_array(mem_ctx, union smb_search_data, num_dirs);
969         file3 = talloc_zero_array(mem_ctx, union smb_search_data, num_dirs);
970
971         printf("Search first on %d dirs\n", num_dirs);
972
973         for (i=0;i<num_dirs;i++) {
974                 union smb_search_first io;
975                 io.generic.level = RAW_SEARCH_SEARCH;
976                 io.search_first.in.max_count = 1;
977                 io.search_first.in.search_attrib = 0;
978                 io.search_first.in.pattern = talloc_asprintf(mem_ctx, BASEDIR "\\d%d\\*.txt", i);
979                 fname = talloc_asprintf(mem_ctx, "f%d-", i);
980
981                 io.search_first.out.count = 0;
982
983                 status = smb_raw_search_first(cli->tree, mem_ctx,
984                                               &io, (void *)&file[i], single_search_callback);
985                 if (io.search_first.out.count != 1) {
986                         printf("(%s) search first gave %d entries for dir %d - %s\n",
987                                __location__, io.search_first.out.count, i, nt_errstr(status));
988                         ret = False;
989                         goto done;
990                 }
991                 CHECK_STATUS(status, NT_STATUS_OK);
992                 if (strncasecmp(file[i].search.name, fname, strlen(fname)) != 0) {
993                         printf("(%s) incorrect name '%s' expected '%s'[12].txt\n", 
994                                __location__, file[i].search.name, fname);
995                         ret = False;
996                         goto done;
997                 }
998
999                 talloc_free(fname);
1000         }
1001
1002         printf("Search next on %d dirs\n", num_dirs);
1003
1004         for (i=0;i<num_dirs;i++) {
1005                 union smb_search_next io2;
1006
1007                 io2.generic.level = RAW_SEARCH_SEARCH;
1008                 io2.search_next.in.max_count = 1;
1009                 io2.search_next.in.search_attrib = 0;
1010                 io2.search_next.in.id = file[i].search.id;
1011                 fname = talloc_asprintf(mem_ctx, "f%d-", i);
1012
1013                 io2.search_next.out.count = 0;
1014
1015                 status = smb_raw_search_next(cli->tree, mem_ctx,
1016                                              &io2, (void *)&file2[i], single_search_callback);
1017                 if (io2.search_next.out.count != 1) {
1018                         printf("(%s) search next gave %d entries for dir %d - %s\n",
1019                                __location__, io2.search_next.out.count, i, nt_errstr(status));
1020                         ret = False;
1021                         goto done;
1022                 }
1023                 CHECK_STATUS(status, NT_STATUS_OK);
1024                 if (strncasecmp(file2[i].search.name, fname, strlen(fname)) != 0) {
1025                         printf("(%s) incorrect name '%s' expected '%s'[12].txt\n", 
1026                                __location__, file2[i].search.name, fname);
1027                         ret = False;
1028                         goto done;
1029                 }
1030
1031                 talloc_free(fname);
1032         }
1033
1034
1035         printf("Search next (rewind) on %d dirs\n", num_dirs);
1036
1037         for (i=0;i<num_dirs;i++) {
1038                 union smb_search_next io2;
1039
1040                 io2.generic.level = RAW_SEARCH_SEARCH;
1041                 io2.search_next.in.max_count = 1;
1042                 io2.search_next.in.search_attrib = 0;
1043                 io2.search_next.in.id = file[i].search.id;
1044                 fname = talloc_asprintf(mem_ctx, "f%d-", i);
1045                 io2.search_next.out.count = 0;
1046
1047                 status = smb_raw_search_next(cli->tree, mem_ctx,
1048                                              &io2, (void *)&file3[i], single_search_callback);
1049                 if (io2.search_next.out.count != 1) {
1050                         printf("(%s) search next gave %d entries for dir %d - %s\n",
1051                                __location__, io2.search_next.out.count, i, nt_errstr(status));
1052                         ret = False;
1053                         goto done;
1054                 }
1055                 CHECK_STATUS(status, NT_STATUS_OK);
1056
1057                 if (strncasecmp(file3[i].search.name, file2[i].search.name, 3) != 0) {
1058                         printf("(%s) incorrect name '%s' on rewind at dir %d\n", 
1059                                __location__, file2[i].search.name, i);
1060                         ret = False;
1061                         goto done;
1062                 }
1063
1064                 if (strcmp(file3[i].search.name, file2[i].search.name) != 0) {
1065                         printf("(%s) server did not rewind - got '%s' expected '%s'\n", 
1066                                __location__, file3[i].search.name, file2[i].search.name);
1067                         ret = False;
1068                         goto done;
1069                 }
1070
1071                 talloc_free(fname);
1072         }
1073
1074
1075 done:
1076         smb_raw_exit(cli->session);
1077         smbcli_deltree(cli->tree, BASEDIR);
1078
1079         return ret;
1080 }
1081
1082
1083 /* 
1084    testing of OS/2 style delete
1085 */
1086 static BOOL test_os2_delete(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
1087 {
1088         const int num_files = 700;
1089         const int delete_count = 4;
1090         int total_deleted = 0;
1091         int i, fnum;
1092         char *fname;
1093         BOOL ret = True;
1094         NTSTATUS status;
1095         union smb_search_first io;
1096         union smb_search_next io2;
1097         struct multiple_result result;
1098
1099         if (!torture_setup_dir(cli, BASEDIR)) {
1100                 return False;
1101         }
1102
1103         printf("Testing OS/2 style delete on %d files\n", num_files);
1104
1105         for (i=0;i<num_files;i++) {
1106                 asprintf(&fname, BASEDIR "\\file%u.txt", i);
1107                 fnum = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR, DENY_NONE);
1108                 if (fnum == -1) {
1109                         printf("Failed to create %s - %s\n", fname, smbcli_errstr(cli->tree));
1110                         ret = False;
1111                         goto done;
1112                 }
1113                 free(fname);
1114                 smbcli_close(cli->tree, fnum);
1115         }
1116
1117
1118         ZERO_STRUCT(result);
1119         result.mem_ctx = mem_ctx;
1120
1121         io.t2ffirst.level = RAW_SEARCH_EA_SIZE;
1122         io.t2ffirst.in.search_attrib = 0;
1123         io.t2ffirst.in.max_count = 100;
1124         io.t2ffirst.in.flags = FLAG_TRANS2_FIND_REQUIRE_RESUME;
1125         io.t2ffirst.in.storage_type = 0;
1126         io.t2ffirst.in.pattern = BASEDIR "\\*";
1127
1128         status = smb_raw_search_first(cli->tree, mem_ctx,
1129                                       &io, &result, multiple_search_callback);
1130         CHECK_STATUS(status, NT_STATUS_OK);
1131
1132         for (i=0;i<MIN(result.count, delete_count);i++) {
1133                 asprintf(&fname, BASEDIR "\\%s", result.list[i].ea_size.name.s);
1134                 status = smbcli_unlink(cli->tree, fname);
1135                 CHECK_STATUS(status, NT_STATUS_OK);
1136                 total_deleted++;
1137         }
1138
1139         io2.t2fnext.level = RAW_SEARCH_EA_SIZE;
1140         io2.t2fnext.in.handle = io.t2ffirst.out.handle;
1141         io2.t2fnext.in.max_count = 100;
1142         io2.t2fnext.in.resume_key = result.list[i-1].ea_size.resume_key;
1143         io2.t2fnext.in.flags = FLAG_TRANS2_FIND_REQUIRE_RESUME;
1144         io2.t2fnext.in.last_name = result.list[i-1].ea_size.name.s;
1145
1146         do {
1147                 ZERO_STRUCT(result);
1148                 result.mem_ctx = mem_ctx;
1149
1150                 status = smb_raw_search_next(cli->tree, mem_ctx,
1151                                              &io2, &result, multiple_search_callback);
1152                 if (!NT_STATUS_IS_OK(status)) {
1153                         break;
1154                 }
1155
1156                 for (i=0;i<MIN(result.count, delete_count);i++) {
1157                         asprintf(&fname, BASEDIR "\\%s", result.list[i].ea_size.name.s);
1158                         status = smbcli_unlink(cli->tree, fname);
1159                         CHECK_STATUS(status, NT_STATUS_OK);
1160                         total_deleted++;
1161                 }
1162
1163                 if (i>0) {
1164                         io2.t2fnext.in.resume_key = result.list[i-1].ea_size.resume_key;
1165                         io2.t2fnext.in.last_name = result.list[i-1].ea_size.name.s;
1166                 }
1167         } while (NT_STATUS_IS_OK(status) && result.count != 0);
1168
1169         CHECK_STATUS(status, NT_STATUS_OK);
1170
1171         if (total_deleted != num_files) {
1172                 printf("error: deleted %d - expected to delete %d\n", 
1173                        total_deleted, num_files);
1174                 ret = False;
1175         }
1176
1177 done:
1178         smb_raw_exit(cli->session);
1179         smbcli_deltree(cli->tree, BASEDIR);
1180
1181         return ret;
1182 }
1183
1184
1185 /* 
1186    testing of the rather strange ea_list level
1187 */
1188 static BOOL test_ea_list(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
1189 {
1190         int  fnum;
1191         BOOL ret = True;
1192         NTSTATUS status;
1193         union smb_search_first io;
1194         union smb_search_next nxt;
1195         struct multiple_result result;
1196         union smb_setfileinfo setfile;
1197
1198         if (!torture_setup_dir(cli, BASEDIR)) {
1199                 return False;
1200         }
1201
1202         printf("Testing RAW_SEARCH_EA_LIST level\n");
1203
1204         fnum = smbcli_open(cli->tree, BASEDIR "\\file1.txt", O_CREAT|O_RDWR, DENY_NONE);
1205         smbcli_close(cli->tree, fnum);
1206
1207         fnum = smbcli_open(cli->tree, BASEDIR "\\file2.txt", O_CREAT|O_RDWR, DENY_NONE);
1208         smbcli_close(cli->tree, fnum);
1209
1210         fnum = smbcli_open(cli->tree, BASEDIR "\\file3.txt", O_CREAT|O_RDWR, DENY_NONE);
1211         smbcli_close(cli->tree, fnum);
1212
1213         setfile.generic.level = RAW_SFILEINFO_EA_SET;
1214         setfile.generic.file.fname = BASEDIR "\\file2.txt";
1215         setfile.ea_set.in.num_eas = 2;
1216         setfile.ea_set.in.eas = talloc_array(mem_ctx, struct ea_struct, 2);
1217         setfile.ea_set.in.eas[0].flags = 0;
1218         setfile.ea_set.in.eas[0].name.s = "EA ONE";
1219         setfile.ea_set.in.eas[0].value = data_blob_string_const("VALUE 1");
1220         setfile.ea_set.in.eas[1].flags = 0;
1221         setfile.ea_set.in.eas[1].name.s = "SECOND EA";
1222         setfile.ea_set.in.eas[1].value = data_blob_string_const("Value Two");
1223
1224         status = smb_raw_setpathinfo(cli->tree, &setfile);
1225         CHECK_STATUS(status, NT_STATUS_OK);
1226
1227         setfile.generic.file.fname = BASEDIR "\\file3.txt";
1228         status = smb_raw_setpathinfo(cli->tree, &setfile);
1229         CHECK_STATUS(status, NT_STATUS_OK);
1230         
1231         ZERO_STRUCT(result);
1232         result.mem_ctx = mem_ctx;
1233
1234         io.t2ffirst.level = RAW_SEARCH_EA_LIST;
1235         io.t2ffirst.in.search_attrib = 0;
1236         io.t2ffirst.in.max_count = 2;
1237         io.t2ffirst.in.flags = FLAG_TRANS2_FIND_REQUIRE_RESUME;
1238         io.t2ffirst.in.storage_type = 0;
1239         io.t2ffirst.in.pattern = BASEDIR "\\*";
1240         io.t2ffirst.in.num_names = 2;
1241         io.t2ffirst.in.ea_names = talloc_array(mem_ctx, struct ea_name, 2);
1242         io.t2ffirst.in.ea_names[0].name.s = "SECOND EA";
1243         io.t2ffirst.in.ea_names[1].name.s = "THIRD EA";
1244
1245         status = smb_raw_search_first(cli->tree, mem_ctx,
1246                                       &io, &result, multiple_search_callback);
1247         CHECK_STATUS(status, NT_STATUS_OK);
1248         CHECK_VALUE(result.count, 2);
1249
1250         nxt.t2fnext.level = RAW_SEARCH_EA_LIST;
1251         nxt.t2fnext.in.handle = io.t2ffirst.out.handle;
1252         nxt.t2fnext.in.max_count = 2;
1253         nxt.t2fnext.in.resume_key = result.list[1].ea_list.resume_key;
1254         nxt.t2fnext.in.flags = FLAG_TRANS2_FIND_REQUIRE_RESUME | FLAG_TRANS2_FIND_CONTINUE;
1255         nxt.t2fnext.in.last_name = "file2.txt";
1256         nxt.t2fnext.in.num_names = 2;
1257         nxt.t2fnext.in.ea_names = talloc_array(mem_ctx, struct ea_name, 2);
1258         nxt.t2fnext.in.ea_names[0].name.s = "SECOND EA";
1259         nxt.t2fnext.in.ea_names[1].name.s = "THIRD EA";
1260
1261         status = smb_raw_search_next(cli->tree, mem_ctx,
1262                                      &nxt, &result, multiple_search_callback);
1263         CHECK_STATUS(status, NT_STATUS_OK);
1264
1265
1266         CHECK_VALUE(result.count, 3);
1267         CHECK_VALUE(result.list[0].ea_list.eas.num_eas, 2);
1268         CHECK_STRING(result.list[0].ea_list.name.s, "file1.txt");
1269         CHECK_STRING(result.list[0].ea_list.eas.eas[0].name.s, "SECOND EA");
1270         CHECK_VALUE(result.list[0].ea_list.eas.eas[0].value.length, 0);
1271         CHECK_STRING(result.list[0].ea_list.eas.eas[1].name.s, "THIRD EA");
1272         CHECK_VALUE(result.list[0].ea_list.eas.eas[1].value.length, 0);
1273
1274         CHECK_STRING(result.list[1].ea_list.name.s, "file2.txt");
1275         CHECK_STRING(result.list[1].ea_list.eas.eas[0].name.s, "SECOND EA");
1276         CHECK_VALUE(result.list[1].ea_list.eas.eas[0].value.length, 9);
1277         CHECK_STRING(result.list[1].ea_list.eas.eas[0].value.data, "Value Two");
1278         CHECK_STRING(result.list[1].ea_list.eas.eas[1].name.s, "THIRD EA");
1279         CHECK_VALUE(result.list[1].ea_list.eas.eas[1].value.length, 0);
1280
1281         CHECK_STRING(result.list[2].ea_list.name.s, "file3.txt");
1282         CHECK_STRING(result.list[2].ea_list.eas.eas[0].name.s, "SECOND EA");
1283         CHECK_VALUE(result.list[2].ea_list.eas.eas[0].value.length, 9);
1284         CHECK_STRING(result.list[2].ea_list.eas.eas[0].value.data, "Value Two");
1285         CHECK_STRING(result.list[2].ea_list.eas.eas[1].name.s, "THIRD EA");
1286         CHECK_VALUE(result.list[2].ea_list.eas.eas[1].value.length, 0);
1287
1288 done:
1289         smb_raw_exit(cli->session);
1290         smbcli_deltree(cli->tree, BASEDIR);
1291
1292         return ret;
1293 }
1294
1295
1296
1297 /* 
1298    basic testing of all RAW_SEARCH_* calls using a single file
1299 */
1300 BOOL torture_raw_search(void)
1301 {
1302         struct smbcli_state *cli;
1303         BOOL ret = True;
1304         TALLOC_CTX *mem_ctx;
1305
1306         if (!torture_open_connection(&cli)) {
1307                 return False;
1308         }
1309
1310         mem_ctx = talloc_init("torture_search");
1311
1312         ret &= test_one_file(cli, mem_ctx);
1313         ret &= test_many_files(cli, mem_ctx);
1314         ret &= test_sorted(cli, mem_ctx);
1315         ret &= test_modify_search(cli, mem_ctx);
1316         ret &= test_many_dirs(cli, mem_ctx);
1317         ret &= test_os2_delete(cli, mem_ctx);
1318         ret &= test_ea_list(cli, mem_ctx);
1319
1320         torture_close_connection(cli);
1321         talloc_free(mem_ctx);
1322         
1323         return ret;
1324 }