Remove more event_context_init() uses from function calls within deep down the code.
[samba.git] / source4 / torture / raw / composite.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    libcli composite function testing
5
6    Copyright (C) Andrew Tridgell 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "torture/torture.h"
24 #include "lib/events/events.h"
25 #include "libcli/raw/libcliraw.h"
26 #include "libcli/libcli.h"
27 #include "libcli/security/security.h"
28 #include "libcli/composite/composite.h"
29 #include "libcli/smb_composite/smb_composite.h"
30 #include "librpc/gen_ndr/ndr_misc.h"
31 #include "lib/cmdline/popt_common.h"
32 #include "torture/util.h"
33 #include "param/param.h"
34 #include "libcli/resolve/resolve.h"
35
36 #define BASEDIR "\\composite"
37
38 static void loadfile_complete(struct composite_context *c)
39 {
40         int *count = talloc_get_type(c->async.private_data, int);
41         (*count)++;
42 }
43
44 /*
45   test a simple savefile/loadfile combination
46 */
47 static bool test_loadfile(struct smbcli_state *cli, struct torture_context *tctx)
48 {
49         const char *fname = BASEDIR "\\test.txt";
50         NTSTATUS status;
51         struct smb_composite_savefile io1;
52         struct smb_composite_loadfile io2;
53         struct composite_context **c;
54         uint8_t *data;
55         size_t len = random() % 100000;
56         const int num_ops = 50;
57         int i;
58         int *count = talloc_zero(tctx, int);
59
60         data = talloc_array(tctx, uint8_t, len);
61
62         generate_random_buffer(data, len);
63
64         io1.in.fname = fname;
65         io1.in.data  = data;
66         io1.in.size  = len;
67
68         printf("testing savefile\n");
69
70         status = smb_composite_savefile(cli->tree, &io1);
71         if (!NT_STATUS_IS_OK(status)) {
72                 printf("(%s) savefile failed: %s\n", __location__,nt_errstr(status));
73                 return false;
74         }
75
76         io2.in.fname = fname;
77
78         printf("testing parallel loadfile with %d ops\n", num_ops);
79
80         c = talloc_array(tctx, struct composite_context *, num_ops);
81
82         for (i=0;i<num_ops;i++) {
83                 c[i] = smb_composite_loadfile_send(cli->tree, &io2);
84                 c[i]->async.fn = loadfile_complete;
85                 c[i]->async.private_data = count;
86         }
87
88         printf("waiting for completion\n");
89         while (*count != num_ops) {
90                 event_loop_once(cli->transport->socket->event.ctx);
91                 if (torture_setting_bool(tctx, "progress", true)) {
92                         printf("(%s) count=%d\r", __location__, *count);
93                         fflush(stdout);
94                 }
95         }
96         printf("count=%d\n", *count);
97         
98         for (i=0;i<num_ops;i++) {
99                 status = smb_composite_loadfile_recv(c[i], tctx);
100                 if (!NT_STATUS_IS_OK(status)) {
101                         printf("(%s) loadfile[%d] failed - %s\n", __location__, i, nt_errstr(status));
102                         return false;
103                 }
104
105                 if (io2.out.size != len) {
106                         printf("(%s) wrong length in returned data - %d should be %d\n",__location__,
107                                io2.out.size, (int)len);
108                         return false;
109                 }
110                 
111                 if (memcmp(io2.out.data, data, len) != 0) {
112                         printf("(%s) wrong data in loadfile!\n",__location__);
113                         return false;
114                 }
115         }
116
117         talloc_free(data);
118
119         return true;
120 }
121
122 /*
123   test a simple savefile/loadfile combination
124 */
125 static bool test_fetchfile(struct smbcli_state *cli, struct torture_context *tctx)
126 {
127         const char *fname = BASEDIR "\\test.txt";
128         NTSTATUS status;
129         struct smb_composite_savefile io1;
130         struct smb_composite_fetchfile io2;
131         struct composite_context **c;
132         uint8_t *data;
133         int i;
134         size_t len = random() % 10000;
135         extern int torture_numops;
136         struct event_context *event_ctx;
137         int *count = talloc_zero(tctx, int);
138         bool ret = true;
139
140         data = talloc_array(tctx, uint8_t, len);
141
142         generate_random_buffer(data, len);
143
144         io1.in.fname = fname;
145         io1.in.data  = data;
146         io1.in.size  = len;
147
148         printf("testing savefile\n");
149
150         status = smb_composite_savefile(cli->tree, &io1);
151         if (!NT_STATUS_IS_OK(status)) {
152                 printf("(%s) savefile failed: %s\n",__location__, nt_errstr(status));
153                 return false;
154         }
155
156         io2.in.dest_host = torture_setting_string(tctx, "host", NULL);
157         io2.in.ports = lp_smb_ports(tctx->lp_ctx);
158         io2.in.called_name = torture_setting_string(tctx, "host", NULL);
159         io2.in.service = torture_setting_string(tctx, "share", NULL);
160         io2.in.service_type = "A:";
161
162         io2.in.credentials = cmdline_credentials;
163         io2.in.workgroup  = lp_workgroup(tctx->lp_ctx);
164         io2.in.filename = fname;
165         io2.in.resolve_ctx = lp_resolve_context(tctx->lp_ctx);
166         lp_smbcli_options(tctx->lp_ctx, &io2.in.options);
167
168         printf("testing parallel fetchfile with %d ops\n", torture_numops);
169
170         event_ctx = cli->transport->socket->event.ctx;
171         c = talloc_array(tctx, struct composite_context *, torture_numops);
172
173         for (i=0; i<torture_numops; i++) {
174                 c[i] = smb_composite_fetchfile_send(&io2, event_ctx);
175                 c[i]->async.fn = loadfile_complete;
176                 c[i]->async.private_data = count;
177         }
178
179         printf("waiting for completion\n");
180
181         while (*count != torture_numops) {
182                 event_loop_once(event_ctx);
183                 if (torture_setting_bool(tctx, "progress", true)) {
184                         printf("(%s) count=%d\r", __location__, *count);
185                         fflush(stdout);
186                 }
187         }
188         printf("count=%d\n", *count);
189
190         for (i=0;i<torture_numops;i++) {
191                 status = smb_composite_fetchfile_recv(c[i], tctx);
192                 if (!NT_STATUS_IS_OK(status)) {
193                         printf("(%s) loadfile[%d] failed - %s\n", __location__, i,
194                                nt_errstr(status));
195                         ret = false;
196                         continue;
197                 }
198
199                 if (io2.out.size != len) {
200                         printf("(%s) wrong length in returned data - %d "
201                                "should be %d\n", __location__,
202                                io2.out.size, (int)len);
203                         ret = false;
204                         continue;
205                 }
206                 
207                 if (memcmp(io2.out.data, data, len) != 0) {
208                         printf("(%s) wrong data in loadfile!\n", __location__);
209                         ret = false;
210                         continue;
211                 }
212         }
213
214         return ret;
215 }
216
217 /*
218   test setfileacl
219 */
220 static bool test_appendacl(struct smbcli_state *cli, struct torture_context *tctx)
221 {
222         struct smb_composite_appendacl **io;
223         struct smb_composite_appendacl **io_orig;
224         struct composite_context **c;
225         struct event_context *event_ctx;
226
227         struct security_descriptor *test_sd;
228         struct security_ace *ace;
229         struct dom_sid *test_sid;
230
231         const int num_ops = 50;
232         int *count = talloc_zero(tctx, int);
233         struct smb_composite_savefile io1;
234
235         NTSTATUS status;
236         int i;
237
238         io_orig = talloc_array(tctx, struct smb_composite_appendacl *, num_ops);
239
240         printf ("creating %d empty files and getting their acls with appendacl\n", num_ops);
241
242         for (i = 0; i < num_ops; i++) {
243                 io1.in.fname = talloc_asprintf(io_orig, BASEDIR "\\test%d.txt", i);
244                 io1.in.data  = NULL;
245                 io1.in.size  = 0;
246           
247                 status = smb_composite_savefile(cli->tree, &io1);
248                 if (!NT_STATUS_IS_OK(status)) {
249                         printf("(%s) savefile failed: %s\n", __location__, nt_errstr(status));
250                         return false;
251                 }
252
253                 io_orig[i] = talloc (io_orig, struct smb_composite_appendacl);
254                 io_orig[i]->in.fname = talloc_steal(io_orig[i], io1.in.fname);
255                 io_orig[i]->in.sd = security_descriptor_initialise(io_orig[i]);
256                 status = smb_composite_appendacl(cli->tree, io_orig[i], io_orig[i]);
257                 if (!NT_STATUS_IS_OK(status)) {
258                         printf("(%s) appendacl failed: %s\n", __location__, nt_errstr(status));
259                         return false;
260                 }
261         }
262         
263
264         /* fill Security Descriptor with aces to be added */
265
266         test_sd = security_descriptor_initialise(tctx);
267         test_sid = dom_sid_parse_talloc (tctx, "S-1-5-32-1234-5432");
268
269         ace = talloc_zero(tctx, struct security_ace);
270
271         ace->type = SEC_ACE_TYPE_ACCESS_ALLOWED;
272         ace->flags = 0;
273         ace->access_mask = SEC_STD_ALL;
274         ace->trustee = *test_sid;
275
276         status = security_descriptor_dacl_add(test_sd, ace);
277         if (!NT_STATUS_IS_OK(status)) {
278                 printf("(%s) appendacl failed: %s\n", __location__, nt_errstr(status));
279                 return false;
280         }
281
282         /* set parameters for appendacl async call */
283
284         printf("testing parallel appendacl with %d ops\n", num_ops);
285
286         c = talloc_array(tctx, struct composite_context *, num_ops);
287         io = talloc_array(tctx, struct  smb_composite_appendacl *, num_ops);
288
289         for (i=0; i < num_ops; i++) {
290                 io[i] = talloc (io, struct smb_composite_appendacl);
291                 io[i]->in.sd = test_sd;
292                 io[i]->in.fname = talloc_asprintf(io[i], BASEDIR "\\test%d.txt", i);
293
294                 c[i] = smb_composite_appendacl_send(cli->tree, io[i]);
295                 c[i]->async.fn = loadfile_complete;
296                 c[i]->async.private_data = count;
297         }
298
299         event_ctx = tctx->ev;
300         printf("waiting for completion\n");
301         while (*count != num_ops) {
302                 event_loop_once(event_ctx);
303                 if (torture_setting_bool(tctx, "progress", true)) {
304                         printf("(%s) count=%d\r", __location__, *count);
305                         fflush(stdout);
306                 }
307         }
308         printf("count=%d\n", *count);
309
310         for (i=0; i < num_ops; i++) {
311                 status = smb_composite_appendacl_recv(c[i], io[i]);
312                 if (!NT_STATUS_IS_OK(status)) {
313                         printf("(%s) appendacl[%d] failed - %s\n", __location__, i, nt_errstr(status));
314                         return false;
315                 }
316                 
317                 security_descriptor_dacl_add(io_orig[i]->out.sd, ace);
318                 if (!security_acl_equal(io_orig[i]->out.sd->dacl, io[i]->out.sd->dacl)) {
319                         printf("(%s) appendacl[%d] failed - needed acl isn't set\n", __location__, i);
320                         return false;
321                 }
322         }
323         
324
325         talloc_free (ace);
326         talloc_free (test_sid);
327         talloc_free (test_sd);
328                 
329         return true;
330 }
331
332 /* test a query FS info by asking for share's GUID */
333 static bool test_fsinfo(struct smbcli_state *cli, struct torture_context *tctx)
334 {
335         char *guid = NULL;
336         NTSTATUS status;
337         struct smb_composite_fsinfo io1;
338         struct composite_context **c;
339
340         int i;
341         extern int torture_numops;
342         struct event_context *event_ctx;
343         int *count = talloc_zero(tctx, int);
344         bool ret = true;
345
346         io1.in.dest_host = torture_setting_string(tctx, "host", NULL);
347         io1.in.dest_ports = lp_smb_ports(tctx->lp_ctx);
348         io1.in.called_name = torture_setting_string(tctx, "host", NULL);
349         io1.in.service = torture_setting_string(tctx, "share", NULL);
350         io1.in.service_type = "A:";
351         io1.in.credentials = cmdline_credentials;
352         io1.in.workgroup = lp_workgroup(tctx->lp_ctx);
353         io1.in.level = RAW_QFS_OBJECTID_INFORMATION;
354
355         printf("testing parallel queryfsinfo [Object ID] with %d ops\n", torture_numops);
356
357         event_ctx = tctx->ev;
358         c = talloc_array(tctx, struct composite_context *, torture_numops);
359
360         for (i=0; i<torture_numops; i++) {
361                 c[i] = smb_composite_fsinfo_send(cli->tree,&io1);
362                 c[i]->async.fn = loadfile_complete;
363                 c[i]->async.private_data = count;
364         }
365
366         printf("waiting for completion\n");
367
368         while (*count < torture_numops) {
369                 event_loop_once(event_ctx);
370                 if (torture_setting_bool(tctx, "progress", true)) {
371                         printf("(%s) count=%d\r", __location__, *count);
372                         fflush(stdout);
373                 }
374         }
375         printf("count=%d\n", *count);
376
377         for (i=0;i<torture_numops;i++) {
378                 status = smb_composite_fsinfo_recv(c[i], tctx);
379                 if (!NT_STATUS_IS_OK(status)) {
380                         printf("(%s) fsinfo[%d] failed - %s\n", __location__, i, nt_errstr(status));
381                         ret = false;
382                         continue;
383                 }
384
385                 if (io1.out.fsinfo->generic.level != RAW_QFS_OBJECTID_INFORMATION) {
386                         printf("(%s) wrong level in returned info - %d "
387                                "should be %d\n", __location__,
388                                io1.out.fsinfo->generic.level, RAW_QFS_OBJECTID_INFORMATION);
389                         ret = false;
390                         continue;
391                 }
392
393                 guid=GUID_string(tctx, &io1.out.fsinfo->objectid_information.out.guid);
394                 printf("[%d] GUID: %s\n", i, guid);
395
396                 
397         }
398
399         return ret;
400 }
401
402
403 /* 
404    basic testing of libcli composite calls
405 */
406 bool torture_raw_composite(struct torture_context *tctx, 
407                            struct smbcli_state *cli)
408 {
409         bool ret = true;
410
411         if (!torture_setup_dir(cli, BASEDIR)) {
412                 return false;
413         }
414
415         ret &= test_fetchfile(cli, tctx);
416         ret &= test_loadfile(cli, tctx);
417         ret &= test_appendacl(cli, tctx);
418         ret &= test_fsinfo(cli, tctx);
419
420         smb_raw_exit(cli->session);
421         smbcli_deltree(cli->tree, BASEDIR);
422
423         return ret;
424 }