Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into openchange
[sfrench/samba-autobuild/.git] / source4 / torture / raw / notify.c
1 /* 
2    Unix SMB/CIFS implementation.
3    basic raw test suite for change notify
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 3 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, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21 #include "torture/torture.h"
22 #include "libcli/raw/libcliraw.h"
23 #include "libcli/raw/raw_proto.h"
24 #include "libcli/libcli.h"
25 #include "system/filesys.h"
26 #include "torture/util.h"
27 #include "param/param.h"
28
29 #define BASEDIR "\\test_notify"
30
31 #define CHECK_STATUS(status, correct) do { \
32         if (!NT_STATUS_EQUAL(status, correct)) { \
33                 printf("(%d) Incorrect status %s - should be %s\n", \
34                        __LINE__, nt_errstr(status), nt_errstr(correct)); \
35                 ret = false; \
36                 goto done; \
37         }} while (0)
38
39
40 #define CHECK_VAL(v, correct) do { \
41         if ((v) != (correct)) { \
42                 printf("(%d) wrong value for %s  0x%x should be 0x%x\n", \
43                        __LINE__, #v, (int)v, (int)correct); \
44                 ret = false; \
45                 goto done; \
46         }} while (0)
47
48 #define CHECK_WSTR(field, value, flags) do { \
49         if (!field.s || strcmp(field.s, value) || wire_bad_flags(&field, flags, cli->transport)) { \
50                 printf("(%d) %s [%s] != %s\n",  __LINE__, #field, field.s, value); \
51                         ret = false; \
52                 goto done; \
53         }} while (0)
54
55
56 /* 
57    basic testing of change notify on directories
58 */
59 static bool test_notify_dir(struct smbcli_state *cli, struct smbcli_state *cli2, 
60                             TALLOC_CTX *mem_ctx)
61 {
62         bool ret = true;
63         NTSTATUS status;
64         union smb_notify notify;
65         union smb_open io;
66         union smb_close cl;
67         int i, count, fnum, fnum2;
68         struct smbcli_request *req, *req2;
69         extern int torture_numops;
70
71         printf("TESTING CHANGE NOTIFY ON DIRECTRIES\n");
72                 
73         /*
74           get a handle on the directory
75         */
76         io.generic.level = RAW_OPEN_NTCREATEX;
77         io.ntcreatex.in.root_fid = 0;
78         io.ntcreatex.in.flags = 0;
79         io.ntcreatex.in.access_mask = SEC_FILE_ALL;
80         io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
81         io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
82         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
83         io.ntcreatex.in.alloc_size = 0;
84         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
85         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
86         io.ntcreatex.in.security_flags = 0;
87         io.ntcreatex.in.fname = BASEDIR;
88
89         status = smb_raw_open(cli->tree, mem_ctx, &io);
90         CHECK_STATUS(status, NT_STATUS_OK);
91         fnum = io.ntcreatex.out.file.fnum;
92
93         status = smb_raw_open(cli->tree, mem_ctx, &io);
94         CHECK_STATUS(status, NT_STATUS_OK);
95         fnum2 = io.ntcreatex.out.file.fnum;
96
97         /* ask for a change notify,
98            on file or directory name changes */
99         notify.nttrans.level = RAW_NOTIFY_NTTRANS;
100         notify.nttrans.in.buffer_size = 1000;
101         notify.nttrans.in.completion_filter = FILE_NOTIFY_CHANGE_NAME;
102         notify.nttrans.in.file.fnum = fnum;
103         notify.nttrans.in.recursive = true;
104
105         printf("testing notify cancel\n");
106
107         req = smb_raw_changenotify_send(cli->tree, &notify);
108         smb_raw_ntcancel(req);
109         status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
110         CHECK_STATUS(status, NT_STATUS_CANCELLED);
111
112         printf("testing notify mkdir\n");
113
114         req = smb_raw_changenotify_send(cli->tree, &notify);
115         smbcli_mkdir(cli2->tree, BASEDIR "\\subdir-name");
116
117         status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
118         CHECK_STATUS(status, NT_STATUS_OK);
119
120         CHECK_VAL(notify.nttrans.out.num_changes, 1);
121         CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_ADDED);
122         CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
123
124         printf("testing notify rmdir\n");
125
126         req = smb_raw_changenotify_send(cli->tree, &notify);
127         smbcli_rmdir(cli2->tree, BASEDIR "\\subdir-name");
128
129         status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
130         CHECK_STATUS(status, NT_STATUS_OK);
131         CHECK_VAL(notify.nttrans.out.num_changes, 1);
132         CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_REMOVED);
133         CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
134
135         printf("testing notify mkdir - rmdir - mkdir - rmdir\n");
136
137         smbcli_mkdir(cli2->tree, BASEDIR "\\subdir-name");
138         smbcli_rmdir(cli2->tree, BASEDIR "\\subdir-name");
139         smbcli_mkdir(cli2->tree, BASEDIR "\\subdir-name");
140         smbcli_rmdir(cli2->tree, BASEDIR "\\subdir-name");
141         msleep(200);
142         req = smb_raw_changenotify_send(cli->tree, &notify);
143         status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
144         CHECK_STATUS(status, NT_STATUS_OK);
145         CHECK_VAL(notify.nttrans.out.num_changes, 4);
146         CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_ADDED);
147         CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
148         CHECK_VAL(notify.nttrans.out.changes[1].action, NOTIFY_ACTION_REMOVED);
149         CHECK_WSTR(notify.nttrans.out.changes[1].name, "subdir-name", STR_UNICODE);
150         CHECK_VAL(notify.nttrans.out.changes[2].action, NOTIFY_ACTION_ADDED);
151         CHECK_WSTR(notify.nttrans.out.changes[2].name, "subdir-name", STR_UNICODE);
152         CHECK_VAL(notify.nttrans.out.changes[3].action, NOTIFY_ACTION_REMOVED);
153         CHECK_WSTR(notify.nttrans.out.changes[3].name, "subdir-name", STR_UNICODE);
154
155         count = torture_numops;
156         printf("testing buffered notify on create of %d files\n", count);
157         for (i=0;i<count;i++) {
158                 char *fname = talloc_asprintf(cli, BASEDIR "\\test%d.txt", i);
159                 int fnum3 = smbcli_open(cli->tree, fname, O_CREAT|O_RDWR, DENY_NONE);
160                 if (fnum3 == -1) {
161                         printf("Failed to create %s - %s\n", 
162                                fname, smbcli_errstr(cli->tree));
163                         ret = false;
164                         goto done;
165                 }
166                 talloc_free(fname);
167                 smbcli_close(cli->tree, fnum3);
168         }
169
170         /* (1st notify) setup a new notify on a different directory handle.
171            This new notify won't see the events above. */
172         notify.nttrans.in.file.fnum = fnum2;
173         req2 = smb_raw_changenotify_send(cli->tree, &notify);
174
175         /* (2nd notify) whereas this notify will see the above buffered events,
176            and it directly returns the buffered events */
177         notify.nttrans.in.file.fnum = fnum;
178         req = smb_raw_changenotify_send(cli->tree, &notify);
179
180         status = smbcli_unlink(cli->tree, BASEDIR "\\nonexistant.txt");
181         CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_NOT_FOUND);
182
183         /* (1st unlink) as the 2nd notify directly returns,
184            this unlink is only seen by the 1st notify and 
185            the 3rd notify (later) */
186         printf("testing notify on unlink for the first file\n");
187         status = smbcli_unlink(cli2->tree, BASEDIR "\\test0.txt");
188         CHECK_STATUS(status, NT_STATUS_OK);
189
190         /* receive the reply from the 2nd notify */
191         status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
192         CHECK_STATUS(status, NT_STATUS_OK);
193
194         CHECK_VAL(notify.nttrans.out.num_changes, count);
195         for (i=1;i<count;i++) {
196                 CHECK_VAL(notify.nttrans.out.changes[i].action, NOTIFY_ACTION_ADDED);
197         }
198         CHECK_WSTR(notify.nttrans.out.changes[0].name, "test0.txt", STR_UNICODE);
199
200         printf("and now from the 1st notify\n");
201         status = smb_raw_changenotify_recv(req2, mem_ctx, &notify);
202         CHECK_STATUS(status, NT_STATUS_OK);
203         CHECK_VAL(notify.nttrans.out.num_changes, 1);
204         CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_REMOVED);
205         CHECK_WSTR(notify.nttrans.out.changes[0].name, "test0.txt", STR_UNICODE);
206
207         printf("(3rd notify) this notify will only see the 1st unlink\n");
208         req = smb_raw_changenotify_send(cli->tree, &notify);
209
210         status = smbcli_unlink(cli->tree, BASEDIR "\\nonexistant.txt");
211         CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_NOT_FOUND);
212
213         printf("testing notify on wildcard unlink for %d files\n", count-1);
214         /* (2nd unlink) do a wildcard unlink */
215         status = smbcli_unlink(cli2->tree, BASEDIR "\\test*.txt");
216         CHECK_STATUS(status, NT_STATUS_OK);
217
218         /* receive the 3rd notify */
219         status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
220         CHECK_STATUS(status, NT_STATUS_OK);
221         CHECK_VAL(notify.nttrans.out.num_changes, 1);
222         CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_REMOVED);
223         CHECK_WSTR(notify.nttrans.out.changes[0].name, "test0.txt", STR_UNICODE);
224
225         /* and we now see the rest of the unlink calls on both directory handles */
226         notify.nttrans.in.file.fnum = fnum;
227         sleep(3);
228         req = smb_raw_changenotify_send(cli->tree, &notify);
229         status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
230         CHECK_STATUS(status, NT_STATUS_OK);
231         CHECK_VAL(notify.nttrans.out.num_changes, count-1);
232         for (i=0;i<notify.nttrans.out.num_changes;i++) {
233                 CHECK_VAL(notify.nttrans.out.changes[i].action, NOTIFY_ACTION_REMOVED);
234         }
235         notify.nttrans.in.file.fnum = fnum2;
236         req = smb_raw_changenotify_send(cli->tree, &notify);
237         status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
238         CHECK_STATUS(status, NT_STATUS_OK);
239         CHECK_VAL(notify.nttrans.out.num_changes, count-1);
240         for (i=0;i<notify.nttrans.out.num_changes;i++) {
241                 CHECK_VAL(notify.nttrans.out.changes[i].action, NOTIFY_ACTION_REMOVED);
242         }
243
244         printf("testing if a close() on the dir handle triggers the notify reply\n");
245
246         notify.nttrans.in.file.fnum = fnum;
247         req = smb_raw_changenotify_send(cli->tree, &notify);
248
249         cl.close.level = RAW_CLOSE_CLOSE;
250         cl.close.in.file.fnum = fnum;
251         cl.close.in.write_time = 0;
252         status = smb_raw_close(cli->tree, &cl);
253         CHECK_STATUS(status, NT_STATUS_OK);
254
255         status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
256         CHECK_STATUS(status, NT_STATUS_OK);
257         CHECK_VAL(notify.nttrans.out.num_changes, 0);
258
259 done:
260         smb_raw_exit(cli->session);
261         return ret;
262 }
263
264 /*
265  * Check notify reply for a rename action. Not sure if this is a valid thing
266  * to do, but depending on timing between inotify and messaging we get the
267  * add/remove/modify in any order. This routines tries to find the action/name
268  * pair in any of the three following notify_changes.
269  */
270
271 static bool check_rename_reply(struct smbcli_state *cli,
272                                int line,
273                                struct notify_changes *actions,
274                                uint32_t action, const char *name)
275 {
276         int i;
277
278         for (i=0; i<3; i++) {
279                 if (actions[i].action == action) {
280                         if ((actions[i].name.s == NULL)
281                             || (strcmp(actions[i].name.s, name) != 0)
282                             || (wire_bad_flags(&actions[i].name, STR_UNICODE,
283                                                cli->transport))) {
284                                 printf("(%d) name [%s] != %s\n", line,
285                                        actions[i].name.s, name);
286                                 return false;
287                         }
288                         return true;
289                 }
290         }
291
292         printf("(%d) expected action %d, not found\n", line, action);
293         return false;
294 }
295
296 /* 
297    testing of recursive change notify
298 */
299 static bool test_notify_recursive(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
300 {
301         bool ret = true;
302         NTSTATUS status;
303         union smb_notify notify;
304         union smb_open io;
305         int fnum;
306         struct smbcli_request *req1, *req2;
307
308         printf("TESTING CHANGE NOTIFY WITH RECURSION\n");
309                 
310         /*
311           get a handle on the directory
312         */
313         io.generic.level = RAW_OPEN_NTCREATEX;
314         io.ntcreatex.in.root_fid = 0;
315         io.ntcreatex.in.flags = 0;
316         io.ntcreatex.in.access_mask = SEC_FILE_ALL;
317         io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
318         io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
319         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
320         io.ntcreatex.in.alloc_size = 0;
321         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
322         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
323         io.ntcreatex.in.security_flags = 0;
324         io.ntcreatex.in.fname = BASEDIR;
325
326         status = smb_raw_open(cli->tree, mem_ctx, &io);
327         CHECK_STATUS(status, NT_STATUS_OK);
328         fnum = io.ntcreatex.out.file.fnum;
329
330         /* ask for a change notify, on file or directory name
331            changes. Setup both with and without recursion */
332         notify.nttrans.level = RAW_NOTIFY_NTTRANS;
333         notify.nttrans.in.buffer_size = 1000;
334         notify.nttrans.in.completion_filter = FILE_NOTIFY_CHANGE_NAME | FILE_NOTIFY_CHANGE_ATTRIBUTES | FILE_NOTIFY_CHANGE_CREATION;
335         notify.nttrans.in.file.fnum = fnum;
336
337         notify.nttrans.in.recursive = true;
338         req1 = smb_raw_changenotify_send(cli->tree, &notify);
339
340         notify.nttrans.in.recursive = false;
341         req2 = smb_raw_changenotify_send(cli->tree, &notify);
342
343         /* cancel initial requests so the buffer is setup */
344         smb_raw_ntcancel(req1);
345         status = smb_raw_changenotify_recv(req1, mem_ctx, &notify);
346         CHECK_STATUS(status, NT_STATUS_CANCELLED);
347
348         smb_raw_ntcancel(req2);
349         status = smb_raw_changenotify_recv(req2, mem_ctx, &notify);
350         CHECK_STATUS(status, NT_STATUS_CANCELLED);
351
352         smbcli_mkdir(cli->tree, BASEDIR "\\subdir-name");
353         smbcli_mkdir(cli->tree, BASEDIR "\\subdir-name\\subname1");
354         smbcli_close(cli->tree, 
355                      smbcli_open(cli->tree, BASEDIR "\\subdir-name\\subname2", O_CREAT, 0));
356         smbcli_rename(cli->tree, BASEDIR "\\subdir-name\\subname1", BASEDIR "\\subdir-name\\subname1-r");
357         smbcli_rename(cli->tree, BASEDIR "\\subdir-name\\subname2", BASEDIR "\\subname2-r");
358         smbcli_rename(cli->tree, BASEDIR "\\subname2-r", BASEDIR "\\subname3-r");
359
360         notify.nttrans.in.completion_filter = 0;
361         notify.nttrans.in.recursive = true;
362         msleep(200);
363         req1 = smb_raw_changenotify_send(cli->tree, &notify);
364
365         smbcli_rmdir(cli->tree, BASEDIR "\\subdir-name\\subname1-r");
366         smbcli_rmdir(cli->tree, BASEDIR "\\subdir-name");
367         smbcli_unlink(cli->tree, BASEDIR "\\subname3-r");
368
369         notify.nttrans.in.recursive = false;
370         req2 = smb_raw_changenotify_send(cli->tree, &notify);
371
372         status = smb_raw_changenotify_recv(req1, mem_ctx, &notify);
373         CHECK_STATUS(status, NT_STATUS_OK);
374
375         CHECK_VAL(notify.nttrans.out.num_changes, 11);
376         CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_ADDED);
377         CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
378         CHECK_VAL(notify.nttrans.out.changes[1].action, NOTIFY_ACTION_ADDED);
379         CHECK_WSTR(notify.nttrans.out.changes[1].name, "subdir-name\\subname1", STR_UNICODE);
380         CHECK_VAL(notify.nttrans.out.changes[2].action, NOTIFY_ACTION_ADDED);
381         CHECK_WSTR(notify.nttrans.out.changes[2].name, "subdir-name\\subname2", STR_UNICODE);
382         CHECK_VAL(notify.nttrans.out.changes[3].action, NOTIFY_ACTION_OLD_NAME);
383         CHECK_WSTR(notify.nttrans.out.changes[3].name, "subdir-name\\subname1", STR_UNICODE);
384         CHECK_VAL(notify.nttrans.out.changes[4].action, NOTIFY_ACTION_NEW_NAME);
385         CHECK_WSTR(notify.nttrans.out.changes[4].name, "subdir-name\\subname1-r", STR_UNICODE);
386
387         ret &= check_rename_reply(
388                 cli, __LINE__, &notify.nttrans.out.changes[5],
389                 NOTIFY_ACTION_ADDED, "subname2-r");
390         ret &= check_rename_reply(
391                 cli, __LINE__, &notify.nttrans.out.changes[5],
392                 NOTIFY_ACTION_REMOVED, "subdir-name\\subname2");
393         ret &= check_rename_reply(
394                 cli, __LINE__, &notify.nttrans.out.changes[5],
395                 NOTIFY_ACTION_MODIFIED, "subname2-r");
396                 
397         ret &= check_rename_reply(
398                 cli, __LINE__, &notify.nttrans.out.changes[8],
399                 NOTIFY_ACTION_OLD_NAME, "subname2-r");
400         ret &= check_rename_reply(
401                 cli, __LINE__, &notify.nttrans.out.changes[8],
402                 NOTIFY_ACTION_NEW_NAME, "subname3-r");
403         ret &= check_rename_reply(
404                 cli, __LINE__, &notify.nttrans.out.changes[8],
405                 NOTIFY_ACTION_MODIFIED, "subname3-r");
406
407         if (!ret) {
408                 goto done;
409         }
410
411         status = smb_raw_changenotify_recv(req2, mem_ctx, &notify);
412         CHECK_STATUS(status, NT_STATUS_OK);
413
414         CHECK_VAL(notify.nttrans.out.num_changes, 3);
415         CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_REMOVED);
416         CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name\\subname1-r", STR_UNICODE);
417         CHECK_VAL(notify.nttrans.out.changes[1].action, NOTIFY_ACTION_REMOVED);
418         CHECK_WSTR(notify.nttrans.out.changes[1].name, "subdir-name", STR_UNICODE);
419         CHECK_VAL(notify.nttrans.out.changes[2].action, NOTIFY_ACTION_REMOVED);
420         CHECK_WSTR(notify.nttrans.out.changes[2].name, "subname3-r", STR_UNICODE);
421
422 done:
423         smb_raw_exit(cli->session);
424         return ret;
425 }
426
427 /* 
428    testing of change notify mask change
429 */
430 static bool test_notify_mask_change(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
431 {
432         bool ret = true;
433         NTSTATUS status;
434         union smb_notify notify;
435         union smb_open io;
436         int fnum;
437         struct smbcli_request *req1, *req2;
438
439         printf("TESTING CHANGE NOTIFY WITH MASK CHANGE\n");
440
441         /*
442           get a handle on the directory
443         */
444         io.generic.level = RAW_OPEN_NTCREATEX;
445         io.ntcreatex.in.root_fid = 0;
446         io.ntcreatex.in.flags = 0;
447         io.ntcreatex.in.access_mask = SEC_FILE_ALL;
448         io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
449         io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
450         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
451         io.ntcreatex.in.alloc_size = 0;
452         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
453         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
454         io.ntcreatex.in.security_flags = 0;
455         io.ntcreatex.in.fname = BASEDIR;
456
457         status = smb_raw_open(cli->tree, mem_ctx, &io);
458         CHECK_STATUS(status, NT_STATUS_OK);
459         fnum = io.ntcreatex.out.file.fnum;
460
461         /* ask for a change notify, on file or directory name
462            changes. Setup both with and without recursion */
463         notify.nttrans.level = RAW_NOTIFY_NTTRANS;
464         notify.nttrans.in.buffer_size = 1000;
465         notify.nttrans.in.completion_filter = FILE_NOTIFY_CHANGE_ATTRIBUTES;
466         notify.nttrans.in.file.fnum = fnum;
467
468         notify.nttrans.in.recursive = true;
469         req1 = smb_raw_changenotify_send(cli->tree, &notify);
470
471         notify.nttrans.in.recursive = false;
472         req2 = smb_raw_changenotify_send(cli->tree, &notify);
473
474         /* cancel initial requests so the buffer is setup */
475         smb_raw_ntcancel(req1);
476         status = smb_raw_changenotify_recv(req1, mem_ctx, &notify);
477         CHECK_STATUS(status, NT_STATUS_CANCELLED);
478
479         smb_raw_ntcancel(req2);
480         status = smb_raw_changenotify_recv(req2, mem_ctx, &notify);
481         CHECK_STATUS(status, NT_STATUS_CANCELLED);
482
483         notify.nttrans.in.recursive = true;
484         req1 = smb_raw_changenotify_send(cli->tree, &notify);
485
486         /* Set to hidden then back again. */
487         smbcli_close(cli->tree, smbcli_open(cli->tree, BASEDIR "\\tname1", O_CREAT, 0));
488         smbcli_setatr(cli->tree, BASEDIR "\\tname1", FILE_ATTRIBUTE_HIDDEN, 0);
489         smbcli_unlink(cli->tree, BASEDIR "\\tname1");
490
491         status = smb_raw_changenotify_recv(req1, mem_ctx, &notify);
492         CHECK_STATUS(status, NT_STATUS_OK);
493
494         CHECK_VAL(notify.nttrans.out.num_changes, 1);
495         CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_MODIFIED);
496         CHECK_WSTR(notify.nttrans.out.changes[0].name, "tname1", STR_UNICODE);
497
498         /* Now try and change the mask to include other events.
499          * This should not work - once the mask is set on a directory
500          * fnum it seems to be fixed until the fnum is closed. */
501
502         notify.nttrans.in.completion_filter = FILE_NOTIFY_CHANGE_NAME | FILE_NOTIFY_CHANGE_ATTRIBUTES | FILE_NOTIFY_CHANGE_CREATION;
503         notify.nttrans.in.recursive = true;
504         req1 = smb_raw_changenotify_send(cli->tree, &notify);
505
506         notify.nttrans.in.recursive = false;
507         req2 = smb_raw_changenotify_send(cli->tree, &notify);
508
509         smbcli_mkdir(cli->tree, BASEDIR "\\subdir-name");
510         smbcli_mkdir(cli->tree, BASEDIR "\\subdir-name\\subname1");
511         smbcli_close(cli->tree, 
512                      smbcli_open(cli->tree, BASEDIR "\\subdir-name\\subname2", O_CREAT, 0));
513         smbcli_rename(cli->tree, BASEDIR "\\subdir-name\\subname1", BASEDIR "\\subdir-name\\subname1-r");
514         smbcli_rename(cli->tree, BASEDIR "\\subdir-name\\subname2", BASEDIR "\\subname2-r");
515         smbcli_rename(cli->tree, BASEDIR "\\subname2-r", BASEDIR "\\subname3-r");
516
517         smbcli_rmdir(cli->tree, BASEDIR "\\subdir-name\\subname1-r");
518         smbcli_rmdir(cli->tree, BASEDIR "\\subdir-name");
519         smbcli_unlink(cli->tree, BASEDIR "\\subname3-r");
520
521         status = smb_raw_changenotify_recv(req1, mem_ctx, &notify);
522         CHECK_STATUS(status, NT_STATUS_OK);
523
524         CHECK_VAL(notify.nttrans.out.num_changes, 1);
525         CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_MODIFIED);
526         CHECK_WSTR(notify.nttrans.out.changes[0].name, "subname2-r", STR_UNICODE);
527
528         status = smb_raw_changenotify_recv(req2, mem_ctx, &notify);
529         CHECK_STATUS(status, NT_STATUS_OK);
530
531         CHECK_VAL(notify.nttrans.out.num_changes, 1);
532         CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_MODIFIED);
533         CHECK_WSTR(notify.nttrans.out.changes[0].name, "subname3-r", STR_UNICODE);
534
535         if (!ret) {
536                 goto done;
537         }
538
539 done:
540         smb_raw_exit(cli->session);
541         return ret;
542 }
543
544
545 /* 
546    testing of mask bits for change notify
547 */
548 static bool test_notify_mask(struct smbcli_state *cli, struct torture_context *tctx)
549 {
550         bool ret = true;
551         NTSTATUS status;
552         union smb_notify notify;
553         union smb_open io;
554         int fnum, fnum2;
555         uint32_t mask;
556         int i;
557         char c = 1;
558         struct timeval tv;
559         NTTIME t;
560
561         printf("TESTING CHANGE NOTIFY COMPLETION FILTERS\n");
562
563         tv = timeval_current_ofs(1000, 0);
564         t = timeval_to_nttime(&tv);
565                 
566         /*
567           get a handle on the directory
568         */
569         io.generic.level = RAW_OPEN_NTCREATEX;
570         io.ntcreatex.in.root_fid = 0;
571         io.ntcreatex.in.flags = 0;
572         io.ntcreatex.in.access_mask = SEC_FILE_ALL;
573         io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
574         io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
575         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
576         io.ntcreatex.in.alloc_size = 0;
577         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
578         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
579         io.ntcreatex.in.security_flags = 0;
580         io.ntcreatex.in.fname = BASEDIR;
581
582         notify.nttrans.level = RAW_NOTIFY_NTTRANS;
583         notify.nttrans.in.buffer_size = 1000;
584         notify.nttrans.in.recursive = true;
585
586 #define NOTIFY_MASK_TEST(setup, op, cleanup, Action, expected, nchanges) \
587         do { for (mask=i=0;i<32;i++) { \
588                 struct smbcli_request *req; \
589                 status = smb_raw_open(cli->tree, tctx, &io); \
590                 CHECK_STATUS(status, NT_STATUS_OK); \
591                 fnum = io.ntcreatex.out.file.fnum; \
592                 setup \
593                 notify.nttrans.in.file.fnum = fnum;     \
594                 notify.nttrans.in.completion_filter = (1<<i); \
595                 req = smb_raw_changenotify_send(cli->tree, &notify); \
596                 op \
597                 msleep(200); smb_raw_ntcancel(req); \
598                 status = smb_raw_changenotify_recv(req, tctx, &notify); \
599                 cleanup \
600                 smbcli_close(cli->tree, fnum); \
601                 if (NT_STATUS_EQUAL(status, NT_STATUS_CANCELLED)) continue; \
602                 CHECK_STATUS(status, NT_STATUS_OK); \
603                 /* special case to cope with file rename behaviour */ \
604                 if (nchanges == 2 && notify.nttrans.out.num_changes == 1 && \
605                     notify.nttrans.out.changes[0].action == NOTIFY_ACTION_MODIFIED && \
606                     ((expected) & FILE_NOTIFY_CHANGE_ATTRIBUTES) && \
607                     Action == NOTIFY_ACTION_OLD_NAME) { \
608                         printf("(rename file special handling OK)\n"); \
609                 } else if (nchanges != notify.nttrans.out.num_changes) { \
610                         printf("ERROR: nchanges=%d expected=%d action=%d filter=0x%08x\n", \
611                                notify.nttrans.out.num_changes, \
612                                nchanges, \
613                                notify.nttrans.out.changes[0].action, \
614                                notify.nttrans.in.completion_filter); \
615                         ret = false; \
616                 } else if (notify.nttrans.out.changes[0].action != Action) { \
617                         printf("ERROR: nchanges=%d action=%d expectedAction=%d filter=0x%08x\n", \
618                                notify.nttrans.out.num_changes, \
619                                notify.nttrans.out.changes[0].action, \
620                                Action, \
621                                notify.nttrans.in.completion_filter); \
622                         ret = false; \
623                 } else if (strcmp(notify.nttrans.out.changes[0].name.s, "tname1") != 0) { \
624                         printf("ERROR: nchanges=%d action=%d filter=0x%08x name=%s\n", \
625                                notify.nttrans.out.num_changes, \
626                                notify.nttrans.out.changes[0].action, \
627                                notify.nttrans.in.completion_filter, \
628                                notify.nttrans.out.changes[0].name.s);   \
629                         ret = false; \
630                 } \
631                 mask |= (1<<i); \
632         } \
633         if ((expected) != mask) { \
634                 if (((expected) & ~mask) != 0) { \
635                         printf("ERROR: trigger on too few bits. mask=0x%08x expected=0x%08x\n", \
636                                mask, expected); \
637                         ret = false; \
638                 } else { \
639                         printf("WARNING: trigger on too many bits. mask=0x%08x expected=0x%08x\n", \
640                                mask, expected); \
641                 } \
642         } \
643         } while (0)
644
645         printf("testing mkdir\n");
646         NOTIFY_MASK_TEST(;,
647                          smbcli_mkdir(cli->tree, BASEDIR "\\tname1");,
648                          smbcli_rmdir(cli->tree, BASEDIR "\\tname1");,
649                          NOTIFY_ACTION_ADDED,
650                          FILE_NOTIFY_CHANGE_DIR_NAME, 1);
651
652         printf("testing create file\n");
653         NOTIFY_MASK_TEST(;,
654                          smbcli_close(cli->tree, smbcli_open(cli->tree, BASEDIR "\\tname1", O_CREAT, 0));,
655                          smbcli_unlink(cli->tree, BASEDIR "\\tname1");,
656                          NOTIFY_ACTION_ADDED,
657                          FILE_NOTIFY_CHANGE_FILE_NAME, 1);
658
659         printf("testing unlink\n");
660         NOTIFY_MASK_TEST(
661                          smbcli_close(cli->tree, smbcli_open(cli->tree, BASEDIR "\\tname1", O_CREAT, 0));,
662                          smbcli_unlink(cli->tree, BASEDIR "\\tname1");,
663                          ;,
664                          NOTIFY_ACTION_REMOVED,
665                          FILE_NOTIFY_CHANGE_FILE_NAME, 1);
666
667         printf("testing rmdir\n");
668         NOTIFY_MASK_TEST(
669                          smbcli_mkdir(cli->tree, BASEDIR "\\tname1");,
670                          smbcli_rmdir(cli->tree, BASEDIR "\\tname1");,
671                          ;,
672                          NOTIFY_ACTION_REMOVED,
673                          FILE_NOTIFY_CHANGE_DIR_NAME, 1);
674
675         printf("testing rename file\n");
676         NOTIFY_MASK_TEST(
677                          smbcli_close(cli->tree, smbcli_open(cli->tree, BASEDIR "\\tname1", O_CREAT, 0));,
678                          smbcli_rename(cli->tree, BASEDIR "\\tname1", BASEDIR "\\tname2");,
679                          smbcli_unlink(cli->tree, BASEDIR "\\tname2");,
680                          NOTIFY_ACTION_OLD_NAME,
681                          FILE_NOTIFY_CHANGE_FILE_NAME|FILE_NOTIFY_CHANGE_ATTRIBUTES|FILE_NOTIFY_CHANGE_CREATION, 2);
682
683         printf("testing rename dir\n");
684         NOTIFY_MASK_TEST(
685                 smbcli_mkdir(cli->tree, BASEDIR "\\tname1");,
686                 smbcli_rename(cli->tree, BASEDIR "\\tname1", BASEDIR "\\tname2");,
687                 smbcli_rmdir(cli->tree, BASEDIR "\\tname2");,
688                 NOTIFY_ACTION_OLD_NAME,
689                 FILE_NOTIFY_CHANGE_DIR_NAME, 2);
690
691         printf("testing set path attribute\n");
692         NOTIFY_MASK_TEST(
693                 smbcli_close(cli->tree, smbcli_open(cli->tree, BASEDIR "\\tname1", O_CREAT, 0));,
694                 smbcli_setatr(cli->tree, BASEDIR "\\tname1", FILE_ATTRIBUTE_HIDDEN, 0);,
695                 smbcli_unlink(cli->tree, BASEDIR "\\tname1");,
696                 NOTIFY_ACTION_MODIFIED,
697                 FILE_NOTIFY_CHANGE_ATTRIBUTES, 1);
698
699         printf("testing set path write time\n");
700         NOTIFY_MASK_TEST(
701                 smbcli_close(cli->tree, smbcli_open(cli->tree, BASEDIR "\\tname1", O_CREAT, 0));,
702                 smbcli_setatr(cli->tree, BASEDIR "\\tname1", FILE_ATTRIBUTE_NORMAL, 1000);,
703                 smbcli_unlink(cli->tree, BASEDIR "\\tname1");,
704                 NOTIFY_ACTION_MODIFIED,
705                 FILE_NOTIFY_CHANGE_LAST_WRITE, 1);
706
707         printf("testing set file attribute\n");
708         NOTIFY_MASK_TEST(
709                 fnum2 = create_complex_file(cli, tctx, BASEDIR "\\tname1");,
710                 smbcli_fsetatr(cli->tree, fnum2, FILE_ATTRIBUTE_HIDDEN, 0, 0, 0, 0);,
711                 (smbcli_close(cli->tree, fnum2), smbcli_unlink(cli->tree, BASEDIR "\\tname1"));,
712                 NOTIFY_ACTION_MODIFIED,
713                 FILE_NOTIFY_CHANGE_ATTRIBUTES, 1);
714
715         if (torture_setting_bool(tctx, "samba3", false)) {
716                 printf("Samba3 does not yet support create times "
717                        "everywhere\n");
718         }
719         else {
720                 printf("testing set file create time\n");
721                 NOTIFY_MASK_TEST(
722                         fnum2 = create_complex_file(cli, tctx,
723                                                     BASEDIR "\\tname1");,
724                         smbcli_fsetatr(cli->tree, fnum2, 0, t, 0, 0, 0);,
725                         (smbcli_close(cli->tree, fnum2),
726                          smbcli_unlink(cli->tree, BASEDIR "\\tname1"));,
727                         NOTIFY_ACTION_MODIFIED,
728                         FILE_NOTIFY_CHANGE_CREATION, 1);
729         }
730
731         printf("testing set file access time\n");
732         NOTIFY_MASK_TEST(
733                 fnum2 = create_complex_file(cli, tctx, BASEDIR "\\tname1");,
734                 smbcli_fsetatr(cli->tree, fnum2, 0, 0, t, 0, 0);,
735                 (smbcli_close(cli->tree, fnum2), smbcli_unlink(cli->tree, BASEDIR "\\tname1"));,
736                 NOTIFY_ACTION_MODIFIED,
737                 FILE_NOTIFY_CHANGE_LAST_ACCESS, 1);
738
739         printf("testing set file write time\n");
740         NOTIFY_MASK_TEST(
741                 fnum2 = create_complex_file(cli, tctx, BASEDIR "\\tname1");,
742                 smbcli_fsetatr(cli->tree, fnum2, 0, 0, 0, t, 0);,
743                 (smbcli_close(cli->tree, fnum2), smbcli_unlink(cli->tree, BASEDIR "\\tname1"));,
744                 NOTIFY_ACTION_MODIFIED,
745                 FILE_NOTIFY_CHANGE_LAST_WRITE, 1);
746
747         printf("testing set file change time\n");
748         NOTIFY_MASK_TEST(
749                 fnum2 = create_complex_file(cli, tctx, BASEDIR "\\tname1");,
750                 smbcli_fsetatr(cli->tree, fnum2, 0, 0, 0, 0, t);,
751                 (smbcli_close(cli->tree, fnum2), smbcli_unlink(cli->tree, BASEDIR "\\tname1"));,
752                 NOTIFY_ACTION_MODIFIED,
753                 0, 1);
754
755
756         printf("testing write\n");
757         NOTIFY_MASK_TEST(
758                 fnum2 = create_complex_file(cli, tctx, BASEDIR "\\tname1");,
759                 smbcli_write(cli->tree, fnum2, 1, &c, 10000, 1);,
760                 (smbcli_close(cli->tree, fnum2), smbcli_unlink(cli->tree, BASEDIR "\\tname1"));,
761                 NOTIFY_ACTION_MODIFIED,
762                 0, 1);
763
764         printf("testing truncate\n");
765         NOTIFY_MASK_TEST(
766                 fnum2 = create_complex_file(cli, tctx, BASEDIR "\\tname1");,
767                 smbcli_ftruncate(cli->tree, fnum2, 10000);,
768                 (smbcli_close(cli->tree, fnum2), smbcli_unlink(cli->tree, BASEDIR "\\tname1"));,
769                 NOTIFY_ACTION_MODIFIED,
770                 FILE_NOTIFY_CHANGE_SIZE | FILE_NOTIFY_CHANGE_ATTRIBUTES, 1);
771
772 done:
773         smb_raw_exit(cli->session);
774         return ret;
775 }
776
777 /*
778   basic testing of change notify on files
779 */
780 static bool test_notify_file(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
781 {
782         NTSTATUS status;
783         bool ret = true;
784         union smb_open io;
785         union smb_close cl;
786         union smb_notify notify;
787         struct smbcli_request *req;
788         int fnum;
789         const char *fname = BASEDIR "\\file.txt";
790
791         printf("TESTING CHANGE NOTIFY ON FILES\n");
792
793         io.generic.level = RAW_OPEN_NTCREATEX;
794         io.ntcreatex.in.root_fid = 0;
795         io.ntcreatex.in.flags = 0;
796         io.ntcreatex.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
797         io.ntcreatex.in.create_options = 0;
798         io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
799         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
800         io.ntcreatex.in.alloc_size = 0;
801         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
802         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
803         io.ntcreatex.in.security_flags = 0;
804         io.ntcreatex.in.fname = fname;
805         status = smb_raw_open(cli->tree, mem_ctx, &io);
806         CHECK_STATUS(status, NT_STATUS_OK);
807         fnum = io.ntcreatex.out.file.fnum;
808
809         /* ask for a change notify,
810            on file or directory name changes */
811         notify.nttrans.level = RAW_NOTIFY_NTTRANS;
812         notify.nttrans.in.file.fnum = fnum;
813         notify.nttrans.in.buffer_size = 1000;
814         notify.nttrans.in.completion_filter = FILE_NOTIFY_CHANGE_STREAM_NAME;
815         notify.nttrans.in.recursive = false;
816
817         printf("testing if notifies on file handles are invalid (should be)\n");
818
819         req = smb_raw_changenotify_send(cli->tree, &notify);
820         status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
821         CHECK_STATUS(status, NT_STATUS_INVALID_PARAMETER);
822
823         cl.close.level = RAW_CLOSE_CLOSE;
824         cl.close.in.file.fnum = fnum;
825         cl.close.in.write_time = 0;
826         status = smb_raw_close(cli->tree, &cl);
827         CHECK_STATUS(status, NT_STATUS_OK);
828
829         status = smbcli_unlink(cli->tree, fname);
830         CHECK_STATUS(status, NT_STATUS_OK);
831
832 done:
833         smb_raw_exit(cli->session);
834         return ret;
835 }
836
837 /*
838   basic testing of change notifies followed by a tdis
839 */
840 static bool test_notify_tdis(struct torture_context *tctx)
841 {
842         bool ret = true;
843         NTSTATUS status;
844         union smb_notify notify;
845         union smb_open io;
846         int fnum;
847         struct smbcli_request *req;
848         struct smbcli_state *cli = NULL;
849
850         printf("TESTING CHANGE NOTIFY FOLLOWED BY TDIS\n");
851
852         if (!torture_open_connection(&cli, tctx, 0)) {
853                 return false;
854         }
855
856         /*
857           get a handle on the directory
858         */
859         io.generic.level = RAW_OPEN_NTCREATEX;
860         io.ntcreatex.in.root_fid = 0;
861         io.ntcreatex.in.flags = 0;
862         io.ntcreatex.in.access_mask = SEC_FILE_ALL;
863         io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
864         io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
865         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
866         io.ntcreatex.in.alloc_size = 0;
867         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
868         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
869         io.ntcreatex.in.security_flags = 0;
870         io.ntcreatex.in.fname = BASEDIR;
871
872         status = smb_raw_open(cli->tree, tctx, &io);
873         CHECK_STATUS(status, NT_STATUS_OK);
874         fnum = io.ntcreatex.out.file.fnum;
875
876         /* ask for a change notify,
877            on file or directory name changes */
878         notify.nttrans.level = RAW_NOTIFY_NTTRANS;
879         notify.nttrans.in.buffer_size = 1000;
880         notify.nttrans.in.completion_filter = FILE_NOTIFY_CHANGE_NAME;
881         notify.nttrans.in.file.fnum = fnum;
882         notify.nttrans.in.recursive = true;
883
884         req = smb_raw_changenotify_send(cli->tree, &notify);
885
886         status = smbcli_tdis(cli);
887         CHECK_STATUS(status, NT_STATUS_OK);
888         cli->tree = NULL;
889
890         status = smb_raw_changenotify_recv(req, tctx, &notify);
891         CHECK_STATUS(status, NT_STATUS_OK);
892         CHECK_VAL(notify.nttrans.out.num_changes, 0);
893
894 done:
895         torture_close_connection(cli);
896         return ret;
897 }
898
899 /*
900   basic testing of change notifies followed by a exit
901 */
902 static bool test_notify_exit(struct torture_context *tctx)
903 {
904         bool ret = true;
905         NTSTATUS status;
906         union smb_notify notify;
907         union smb_open io;
908         int fnum;
909         struct smbcli_request *req;
910         struct smbcli_state *cli = NULL;
911
912         printf("TESTING CHANGE NOTIFY FOLLOWED BY EXIT\n");
913
914         if (!torture_open_connection(&cli, tctx, 0)) {
915                 return false;
916         }
917
918         /*
919           get a handle on the directory
920         */
921         io.generic.level = RAW_OPEN_NTCREATEX;
922         io.ntcreatex.in.root_fid = 0;
923         io.ntcreatex.in.flags = 0;
924         io.ntcreatex.in.access_mask = SEC_FILE_ALL;
925         io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
926         io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
927         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
928         io.ntcreatex.in.alloc_size = 0;
929         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
930         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
931         io.ntcreatex.in.security_flags = 0;
932         io.ntcreatex.in.fname = BASEDIR;
933
934         status = smb_raw_open(cli->tree, tctx, &io);
935         CHECK_STATUS(status, NT_STATUS_OK);
936         fnum = io.ntcreatex.out.file.fnum;
937
938         /* ask for a change notify,
939            on file or directory name changes */
940         notify.nttrans.level = RAW_NOTIFY_NTTRANS;
941         notify.nttrans.in.buffer_size = 1000;
942         notify.nttrans.in.completion_filter = FILE_NOTIFY_CHANGE_NAME;
943         notify.nttrans.in.file.fnum = fnum;
944         notify.nttrans.in.recursive = true;
945
946         req = smb_raw_changenotify_send(cli->tree, &notify);
947
948         status = smb_raw_exit(cli->session);
949         CHECK_STATUS(status, NT_STATUS_OK);
950
951         status = smb_raw_changenotify_recv(req, tctx, &notify);
952         CHECK_STATUS(status, NT_STATUS_OK);
953         CHECK_VAL(notify.nttrans.out.num_changes, 0);
954
955 done:
956         torture_close_connection(cli);
957         return ret;
958 }
959
960 /*
961   basic testing of change notifies followed by a ulogoff
962 */
963 static bool test_notify_ulogoff(struct torture_context *tctx)
964 {
965         bool ret = true;
966         NTSTATUS status;
967         union smb_notify notify;
968         union smb_open io;
969         int fnum;
970         struct smbcli_request *req;
971         struct smbcli_state *cli = NULL;
972
973         printf("TESTING CHANGE NOTIFY FOLLOWED BY ULOGOFF\n");
974
975         if (!torture_open_connection(&cli, tctx, 0)) {
976                 return false;
977         }
978
979         /*
980           get a handle on the directory
981         */
982         io.generic.level = RAW_OPEN_NTCREATEX;
983         io.ntcreatex.in.root_fid = 0;
984         io.ntcreatex.in.flags = 0;
985         io.ntcreatex.in.access_mask = SEC_FILE_ALL;
986         io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
987         io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
988         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
989         io.ntcreatex.in.alloc_size = 0;
990         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
991         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
992         io.ntcreatex.in.security_flags = 0;
993         io.ntcreatex.in.fname = BASEDIR;
994
995         status = smb_raw_open(cli->tree, tctx, &io);
996         CHECK_STATUS(status, NT_STATUS_OK);
997         fnum = io.ntcreatex.out.file.fnum;
998
999         /* ask for a change notify,
1000            on file or directory name changes */
1001         notify.nttrans.level = RAW_NOTIFY_NTTRANS;
1002         notify.nttrans.in.buffer_size = 1000;
1003         notify.nttrans.in.completion_filter = FILE_NOTIFY_CHANGE_NAME;
1004         notify.nttrans.in.file.fnum = fnum;
1005         notify.nttrans.in.recursive = true;
1006
1007         req = smb_raw_changenotify_send(cli->tree, &notify);
1008
1009         status = smb_raw_ulogoff(cli->session);
1010         CHECK_STATUS(status, NT_STATUS_OK);
1011
1012         status = smb_raw_changenotify_recv(req, tctx, &notify);
1013         CHECK_STATUS(status, NT_STATUS_OK);
1014         CHECK_VAL(notify.nttrans.out.num_changes, 0);
1015
1016 done:
1017         torture_close_connection(cli);
1018         return ret;
1019 }
1020
1021 static void tcp_dis_handler(struct smbcli_transport *t, void *p)
1022 {
1023         struct smbcli_state *cli = (struct smbcli_state *)p;
1024         smbcli_transport_dead(cli->transport, NT_STATUS_LOCAL_DISCONNECT);
1025         cli->transport = NULL;
1026         cli->tree = NULL;
1027 }
1028 /*
1029   basic testing of change notifies followed by tcp disconnect
1030 */
1031 static bool test_notify_tcp_dis(struct torture_context *tctx)
1032 {
1033         bool ret = true;
1034         NTSTATUS status;
1035         union smb_notify notify;
1036         union smb_open io;
1037         int fnum;
1038         struct smbcli_request *req;
1039         struct smbcli_state *cli = NULL;
1040
1041         printf("TESTING CHANGE NOTIFY FOLLOWED BY TCP DISCONNECT\n");
1042
1043         if (!torture_open_connection(&cli, tctx, 0)) {
1044                 return false;
1045         }
1046
1047         /*
1048           get a handle on the directory
1049         */
1050         io.generic.level = RAW_OPEN_NTCREATEX;
1051         io.ntcreatex.in.root_fid = 0;
1052         io.ntcreatex.in.flags = 0;
1053         io.ntcreatex.in.access_mask = SEC_FILE_ALL;
1054         io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
1055         io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
1056         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
1057         io.ntcreatex.in.alloc_size = 0;
1058         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
1059         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
1060         io.ntcreatex.in.security_flags = 0;
1061         io.ntcreatex.in.fname = BASEDIR;
1062
1063         status = smb_raw_open(cli->tree, tctx, &io);
1064         CHECK_STATUS(status, NT_STATUS_OK);
1065         fnum = io.ntcreatex.out.file.fnum;
1066
1067         /* ask for a change notify,
1068            on file or directory name changes */
1069         notify.nttrans.level = RAW_NOTIFY_NTTRANS;
1070         notify.nttrans.in.buffer_size = 1000;
1071         notify.nttrans.in.completion_filter = FILE_NOTIFY_CHANGE_NAME;
1072         notify.nttrans.in.file.fnum = fnum;
1073         notify.nttrans.in.recursive = true;
1074
1075         req = smb_raw_changenotify_send(cli->tree, &notify);
1076
1077         smbcli_transport_idle_handler(cli->transport, tcp_dis_handler, 250, cli);
1078
1079         status = smb_raw_changenotify_recv(req, tctx, &notify);
1080         CHECK_STATUS(status, NT_STATUS_LOCAL_DISCONNECT);
1081
1082 done:
1083         torture_close_connection(cli);
1084         return ret;
1085 }
1086
1087 /* 
1088    test setting up two change notify requests on one handle
1089 */
1090 static bool test_notify_double(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
1091 {
1092         bool ret = true;
1093         NTSTATUS status;
1094         union smb_notify notify;
1095         union smb_open io;
1096         int fnum;
1097         struct smbcli_request *req1, *req2;
1098
1099         printf("TESTING CHANGE NOTIFY TWICE ON ONE DIRECTORY\n");
1100                 
1101         /*
1102           get a handle on the directory
1103         */
1104         io.generic.level = RAW_OPEN_NTCREATEX;
1105         io.ntcreatex.in.root_fid = 0;
1106         io.ntcreatex.in.flags = 0;
1107         io.ntcreatex.in.access_mask = SEC_FILE_ALL;
1108         io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
1109         io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
1110         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
1111         io.ntcreatex.in.alloc_size = 0;
1112         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
1113         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
1114         io.ntcreatex.in.security_flags = 0;
1115         io.ntcreatex.in.fname = BASEDIR;
1116
1117         status = smb_raw_open(cli->tree, mem_ctx, &io);
1118         CHECK_STATUS(status, NT_STATUS_OK);
1119         fnum = io.ntcreatex.out.file.fnum;
1120
1121         /* ask for a change notify,
1122            on file or directory name changes */
1123         notify.nttrans.level = RAW_NOTIFY_NTTRANS;
1124         notify.nttrans.in.buffer_size = 1000;
1125         notify.nttrans.in.completion_filter = FILE_NOTIFY_CHANGE_NAME;
1126         notify.nttrans.in.file.fnum = fnum;
1127         notify.nttrans.in.recursive = true;
1128
1129         req1 = smb_raw_changenotify_send(cli->tree, &notify);
1130         req2 = smb_raw_changenotify_send(cli->tree, &notify);
1131
1132         smbcli_mkdir(cli->tree, BASEDIR "\\subdir-name");
1133
1134         status = smb_raw_changenotify_recv(req1, mem_ctx, &notify);
1135         CHECK_STATUS(status, NT_STATUS_OK);
1136         CHECK_VAL(notify.nttrans.out.num_changes, 1);
1137         CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
1138
1139         smbcli_mkdir(cli->tree, BASEDIR "\\subdir-name2");
1140
1141         status = smb_raw_changenotify_recv(req2, mem_ctx, &notify);
1142         CHECK_STATUS(status, NT_STATUS_OK);
1143         CHECK_VAL(notify.nttrans.out.num_changes, 1);
1144         CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name2", STR_UNICODE);
1145
1146 done:
1147         smb_raw_exit(cli->session);
1148         return ret;
1149 }
1150
1151
1152 /* 
1153    test multiple change notifies at different depths and with/without recursion
1154 */
1155 static bool test_notify_tree(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
1156 {
1157         bool ret = true;
1158         union smb_notify notify;
1159         union smb_open io;
1160         struct smbcli_request *req;
1161         struct timeval tv;
1162         struct {
1163                 const char *path;
1164                 bool recursive;
1165                 uint32_t filter;
1166                 int expected;
1167                 int fnum;
1168                 int counted;
1169         } dirs[] = {
1170                 {BASEDIR "\\abc",               true, FILE_NOTIFY_CHANGE_NAME, 30 },
1171                 {BASEDIR "\\zqy",               true, FILE_NOTIFY_CHANGE_NAME, 8 },
1172                 {BASEDIR "\\atsy",              true, FILE_NOTIFY_CHANGE_NAME, 4 },
1173                 {BASEDIR "\\abc\\foo",          true,  FILE_NOTIFY_CHANGE_NAME, 2 },
1174                 {BASEDIR "\\abc\\blah",         true,  FILE_NOTIFY_CHANGE_NAME, 13 },
1175                 {BASEDIR "\\abc\\blah",         false, FILE_NOTIFY_CHANGE_NAME, 7 },
1176                 {BASEDIR "\\abc\\blah\\a",      true, FILE_NOTIFY_CHANGE_NAME, 2 },
1177                 {BASEDIR "\\abc\\blah\\b",      true, FILE_NOTIFY_CHANGE_NAME, 2 },
1178                 {BASEDIR "\\abc\\blah\\c",      true, FILE_NOTIFY_CHANGE_NAME, 2 },
1179                 {BASEDIR "\\abc\\fooblah",      true, FILE_NOTIFY_CHANGE_NAME, 2 },
1180                 {BASEDIR "\\zqy\\xx",           true, FILE_NOTIFY_CHANGE_NAME, 2 },
1181                 {BASEDIR "\\zqy\\yyy",          true, FILE_NOTIFY_CHANGE_NAME, 2 },
1182                 {BASEDIR "\\zqy\\..",           true, FILE_NOTIFY_CHANGE_NAME, 40 },
1183                 {BASEDIR,                       true, FILE_NOTIFY_CHANGE_NAME, 40 },
1184                 {BASEDIR,                       false,FILE_NOTIFY_CHANGE_NAME, 6 },
1185                 {BASEDIR "\\atsy",              false,FILE_NOTIFY_CHANGE_NAME, 4 },
1186                 {BASEDIR "\\abc",               true, FILE_NOTIFY_CHANGE_NAME, 24 },
1187                 {BASEDIR "\\abc",               false,FILE_NOTIFY_CHANGE_FILE_NAME, 0 },
1188                 {BASEDIR "\\abc",               true, FILE_NOTIFY_CHANGE_FILE_NAME, 0 },
1189                 {BASEDIR "\\abc",               true, FILE_NOTIFY_CHANGE_NAME, 24 },
1190         };
1191         int i;
1192         NTSTATUS status;
1193         bool all_done = false;
1194
1195         printf("TESTING CHANGE NOTIFY FOR DIFFERENT DEPTHS\n");
1196
1197         io.generic.level = RAW_OPEN_NTCREATEX;
1198         io.ntcreatex.in.root_fid = 0;
1199         io.ntcreatex.in.flags = 0;
1200         io.ntcreatex.in.access_mask = SEC_FILE_ALL;
1201         io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
1202         io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
1203         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
1204         io.ntcreatex.in.alloc_size = 0;
1205         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN_IF;
1206         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
1207         io.ntcreatex.in.security_flags = 0;
1208
1209         notify.nttrans.level = RAW_NOTIFY_NTTRANS;
1210         notify.nttrans.in.buffer_size = 20000;
1211
1212         /*
1213           setup the directory tree, and the notify buffer on each directory
1214         */
1215         for (i=0;i<ARRAY_SIZE(dirs);i++) {
1216                 io.ntcreatex.in.fname = dirs[i].path;
1217                 status = smb_raw_open(cli->tree, mem_ctx, &io);
1218                 CHECK_STATUS(status, NT_STATUS_OK);
1219                 dirs[i].fnum = io.ntcreatex.out.file.fnum;
1220
1221                 notify.nttrans.in.completion_filter = dirs[i].filter;
1222                 notify.nttrans.in.file.fnum = dirs[i].fnum;
1223                 notify.nttrans.in.recursive = dirs[i].recursive;
1224                 req = smb_raw_changenotify_send(cli->tree, &notify);
1225                 smb_raw_ntcancel(req);
1226                 status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
1227                 CHECK_STATUS(status, NT_STATUS_CANCELLED);
1228         }
1229
1230         /* trigger 2 events in each dir */
1231         for (i=0;i<ARRAY_SIZE(dirs);i++) {
1232                 char *path = talloc_asprintf(mem_ctx, "%s\\test.dir", dirs[i].path);
1233                 smbcli_mkdir(cli->tree, path);
1234                 smbcli_rmdir(cli->tree, path);
1235                 talloc_free(path);
1236         }
1237
1238         /* give a bit of time for the events to propogate */
1239         tv = timeval_current();
1240
1241         do {
1242                 /* count events that have happened in each dir */
1243                 for (i=0;i<ARRAY_SIZE(dirs);i++) {
1244                         notify.nttrans.in.file.fnum = dirs[i].fnum;
1245                         req = smb_raw_changenotify_send(cli->tree, &notify);
1246                         smb_raw_ntcancel(req);
1247                         notify.nttrans.out.num_changes = 0;
1248                         status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
1249                         dirs[i].counted += notify.nttrans.out.num_changes;
1250                 }
1251                 
1252                 all_done = true;
1253
1254                 for (i=0;i<ARRAY_SIZE(dirs);i++) {
1255                         if (dirs[i].counted != dirs[i].expected) {
1256                                 all_done = false;
1257                         }
1258                 }
1259         } while (!all_done && timeval_elapsed(&tv) < 20);
1260
1261         printf("took %.4f seconds to propogate all events\n", timeval_elapsed(&tv));
1262
1263         for (i=0;i<ARRAY_SIZE(dirs);i++) {
1264                 if (dirs[i].counted != dirs[i].expected) {
1265                         printf("ERROR: i=%d expected %d got %d for '%s'\n",
1266                                i, dirs[i].expected, dirs[i].counted, dirs[i].path);
1267                         ret = false;
1268                 }
1269         }
1270
1271         /*
1272           run from the back, closing and deleting
1273         */
1274         for (i=ARRAY_SIZE(dirs)-1;i>=0;i--) {
1275                 smbcli_close(cli->tree, dirs[i].fnum);
1276                 smbcli_rmdir(cli->tree, dirs[i].path);
1277         }
1278
1279 done:
1280         smb_raw_exit(cli->session);
1281         return ret;
1282 }
1283
1284 /* 
1285    basic testing of change notify
1286 */
1287 bool torture_raw_notify(struct torture_context *torture, 
1288                         struct smbcli_state *cli, 
1289                         struct smbcli_state *cli2)
1290 {
1291         bool ret = true;
1292                 
1293         if (!torture_setup_dir(cli, BASEDIR)) {
1294                 return false;
1295         }
1296
1297         ret &= test_notify_dir(cli, cli2, torture);
1298         ret &= test_notify_mask(cli, torture);
1299         ret &= test_notify_recursive(cli, torture);
1300         ret &= test_notify_mask_change(cli, torture);
1301         ret &= test_notify_file(cli, torture);
1302         ret &= test_notify_tdis(torture);
1303         ret &= test_notify_exit(torture);
1304         ret &= test_notify_ulogoff(torture);
1305         ret &= test_notify_tcp_dis(torture);
1306         ret &= test_notify_double(cli, torture);
1307         ret &= test_notify_tree(cli, torture);
1308
1309         smb_raw_exit(cli->session);
1310         smbcli_deltree(cli->tree, BASEDIR);
1311         return ret;
1312 }