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 tevent_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 = lpcfg_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 = lpcfg_workgroup(tctx->lp_ctx);
|
---|
164 | io2.in.filename = fname;
|
---|
165 | io2.in.resolve_ctx = lpcfg_resolve_context(tctx->lp_ctx);
|
---|
166 | io2.in.gensec_settings = lpcfg_gensec_settings(tctx, tctx->lp_ctx);
|
---|
167 | lpcfg_smbcli_options(tctx->lp_ctx, &io2.in.options);
|
---|
168 | lpcfg_smbcli_session_options(tctx->lp_ctx, &io2.in.session_options);
|
---|
169 |
|
---|
170 | printf("Testing parallel fetchfile with %d ops\n", torture_numops);
|
---|
171 |
|
---|
172 | event_ctx = cli->transport->socket->event.ctx;
|
---|
173 | c = talloc_array(tctx, struct composite_context *, torture_numops);
|
---|
174 |
|
---|
175 | for (i=0; i<torture_numops; i++) {
|
---|
176 | c[i] = smb_composite_fetchfile_send(&io2, event_ctx);
|
---|
177 | c[i]->async.fn = loadfile_complete;
|
---|
178 | c[i]->async.private_data = count;
|
---|
179 | }
|
---|
180 |
|
---|
181 | printf("waiting for completion\n");
|
---|
182 |
|
---|
183 | while (*count != torture_numops) {
|
---|
184 | event_loop_once(event_ctx);
|
---|
185 | if (torture_setting_bool(tctx, "progress", true)) {
|
---|
186 | printf("(%s) count=%d\r", __location__, *count);
|
---|
187 | fflush(stdout);
|
---|
188 | }
|
---|
189 | }
|
---|
190 | printf("count=%d\n", *count);
|
---|
191 |
|
---|
192 | for (i=0;i<torture_numops;i++) {
|
---|
193 | status = smb_composite_fetchfile_recv(c[i], tctx);
|
---|
194 | if (!NT_STATUS_IS_OK(status)) {
|
---|
195 | printf("(%s) loadfile[%d] failed - %s\n", __location__, i,
|
---|
196 | nt_errstr(status));
|
---|
197 | ret = false;
|
---|
198 | continue;
|
---|
199 | }
|
---|
200 |
|
---|
201 | if (io2.out.size != len) {
|
---|
202 | printf("(%s) wrong length in returned data - %d "
|
---|
203 | "should be %d\n", __location__,
|
---|
204 | io2.out.size, (int)len);
|
---|
205 | ret = false;
|
---|
206 | continue;
|
---|
207 | }
|
---|
208 |
|
---|
209 | if (memcmp(io2.out.data, data, len) != 0) {
|
---|
210 | printf("(%s) wrong data in loadfile!\n", __location__);
|
---|
211 | ret = false;
|
---|
212 | continue;
|
---|
213 | }
|
---|
214 | }
|
---|
215 |
|
---|
216 | return ret;
|
---|
217 | }
|
---|
218 |
|
---|
219 | /*
|
---|
220 | test setfileacl
|
---|
221 | */
|
---|
222 | static bool test_appendacl(struct smbcli_state *cli, struct torture_context *tctx)
|
---|
223 | {
|
---|
224 | struct smb_composite_appendacl **io;
|
---|
225 | struct smb_composite_appendacl **io_orig;
|
---|
226 | struct composite_context **c;
|
---|
227 | struct tevent_context *event_ctx;
|
---|
228 |
|
---|
229 | struct security_descriptor *test_sd;
|
---|
230 | struct security_ace *ace;
|
---|
231 | struct dom_sid *test_sid;
|
---|
232 |
|
---|
233 | const int num_ops = 50;
|
---|
234 | int *count = talloc_zero(tctx, int);
|
---|
235 | struct smb_composite_savefile io1;
|
---|
236 |
|
---|
237 | NTSTATUS status;
|
---|
238 | int i;
|
---|
239 |
|
---|
240 | io_orig = talloc_array(tctx, struct smb_composite_appendacl *, num_ops);
|
---|
241 |
|
---|
242 | printf ("creating %d empty files and getting their acls with appendacl\n", num_ops);
|
---|
243 |
|
---|
244 | for (i = 0; i < num_ops; i++) {
|
---|
245 | io1.in.fname = talloc_asprintf(io_orig, BASEDIR "\\test%d.txt", i);
|
---|
246 | io1.in.data = NULL;
|
---|
247 | io1.in.size = 0;
|
---|
248 |
|
---|
249 | status = smb_composite_savefile(cli->tree, &io1);
|
---|
250 | if (!NT_STATUS_IS_OK(status)) {
|
---|
251 | printf("(%s) savefile failed: %s\n", __location__, nt_errstr(status));
|
---|
252 | return false;
|
---|
253 | }
|
---|
254 |
|
---|
255 | io_orig[i] = talloc (io_orig, struct smb_composite_appendacl);
|
---|
256 | io_orig[i]->in.fname = talloc_steal(io_orig[i], io1.in.fname);
|
---|
257 | io_orig[i]->in.sd = security_descriptor_initialise(io_orig[i]);
|
---|
258 | status = smb_composite_appendacl(cli->tree, io_orig[i], io_orig[i]);
|
---|
259 | if (!NT_STATUS_IS_OK(status)) {
|
---|
260 | printf("(%s) appendacl failed: %s\n", __location__, nt_errstr(status));
|
---|
261 | return false;
|
---|
262 | }
|
---|
263 | }
|
---|
264 |
|
---|
265 |
|
---|
266 | /* fill Security Descriptor with aces to be added */
|
---|
267 |
|
---|
268 | test_sd = security_descriptor_initialise(tctx);
|
---|
269 | test_sid = dom_sid_parse_talloc (tctx, "S-1-5-32-1234-5432");
|
---|
270 |
|
---|
271 | ace = talloc_zero(tctx, struct security_ace);
|
---|
272 |
|
---|
273 | ace->type = SEC_ACE_TYPE_ACCESS_ALLOWED;
|
---|
274 | ace->flags = 0;
|
---|
275 | ace->access_mask = SEC_STD_ALL;
|
---|
276 | ace->trustee = *test_sid;
|
---|
277 |
|
---|
278 | status = security_descriptor_dacl_add(test_sd, ace);
|
---|
279 | if (!NT_STATUS_IS_OK(status)) {
|
---|
280 | printf("(%s) appendacl failed: %s\n", __location__, nt_errstr(status));
|
---|
281 | return false;
|
---|
282 | }
|
---|
283 |
|
---|
284 | /* set parameters for appendacl async call */
|
---|
285 |
|
---|
286 | printf("Testing parallel appendacl with %d ops\n", num_ops);
|
---|
287 |
|
---|
288 | c = talloc_array(tctx, struct composite_context *, num_ops);
|
---|
289 | io = talloc_array(tctx, struct smb_composite_appendacl *, num_ops);
|
---|
290 |
|
---|
291 | for (i=0; i < num_ops; i++) {
|
---|
292 | io[i] = talloc (io, struct smb_composite_appendacl);
|
---|
293 | io[i]->in.sd = test_sd;
|
---|
294 | io[i]->in.fname = talloc_asprintf(io[i], BASEDIR "\\test%d.txt", i);
|
---|
295 |
|
---|
296 | c[i] = smb_composite_appendacl_send(cli->tree, io[i]);
|
---|
297 | c[i]->async.fn = loadfile_complete;
|
---|
298 | c[i]->async.private_data = count;
|
---|
299 | }
|
---|
300 |
|
---|
301 | event_ctx = tctx->ev;
|
---|
302 | printf("waiting for completion\n");
|
---|
303 | while (*count != num_ops) {
|
---|
304 | event_loop_once(event_ctx);
|
---|
305 | if (torture_setting_bool(tctx, "progress", true)) {
|
---|
306 | printf("(%s) count=%d\r", __location__, *count);
|
---|
307 | fflush(stdout);
|
---|
308 | }
|
---|
309 | }
|
---|
310 | printf("count=%d\n", *count);
|
---|
311 |
|
---|
312 | for (i=0; i < num_ops; i++) {
|
---|
313 | status = smb_composite_appendacl_recv(c[i], io[i]);
|
---|
314 | if (!NT_STATUS_IS_OK(status)) {
|
---|
315 | printf("(%s) appendacl[%d] failed - %s\n", __location__, i, nt_errstr(status));
|
---|
316 | return false;
|
---|
317 | }
|
---|
318 |
|
---|
319 | security_descriptor_dacl_add(io_orig[i]->out.sd, ace);
|
---|
320 | if (!security_acl_equal(io_orig[i]->out.sd->dacl, io[i]->out.sd->dacl)) {
|
---|
321 | printf("(%s) appendacl[%d] failed - needed acl isn't set\n", __location__, i);
|
---|
322 | return false;
|
---|
323 | }
|
---|
324 | }
|
---|
325 |
|
---|
326 |
|
---|
327 | talloc_free (ace);
|
---|
328 | talloc_free (test_sid);
|
---|
329 | talloc_free (test_sd);
|
---|
330 |
|
---|
331 | return true;
|
---|
332 | }
|
---|
333 |
|
---|
334 | /* test a query FS info by asking for share's GUID */
|
---|
335 | static bool test_fsinfo(struct smbcli_state *cli, struct torture_context *tctx)
|
---|
336 | {
|
---|
337 | char *guid = NULL;
|
---|
338 | NTSTATUS status;
|
---|
339 | struct smb_composite_fsinfo io1;
|
---|
340 | struct composite_context **c;
|
---|
341 |
|
---|
342 | int i;
|
---|
343 | extern int torture_numops;
|
---|
344 | struct tevent_context *event_ctx;
|
---|
345 | int *count = talloc_zero(tctx, int);
|
---|
346 | bool ret = true;
|
---|
347 |
|
---|
348 | io1.in.dest_host = torture_setting_string(tctx, "host", NULL);
|
---|
349 | io1.in.dest_ports = lpcfg_smb_ports(tctx->lp_ctx);
|
---|
350 | io1.in.socket_options = lpcfg_socket_options(tctx->lp_ctx);
|
---|
351 | io1.in.called_name = torture_setting_string(tctx, "host", NULL);
|
---|
352 | io1.in.service = torture_setting_string(tctx, "share", NULL);
|
---|
353 | io1.in.service_type = "A:";
|
---|
354 | io1.in.credentials = cmdline_credentials;
|
---|
355 | io1.in.workgroup = lpcfg_workgroup(tctx->lp_ctx);
|
---|
356 | io1.in.level = RAW_QFS_OBJECTID_INFORMATION;
|
---|
357 | io1.in.gensec_settings = lpcfg_gensec_settings(tctx, tctx->lp_ctx);
|
---|
358 |
|
---|
359 | printf("Testing parallel queryfsinfo [Object ID] with %d ops\n",
|
---|
360 | torture_numops);
|
---|
361 |
|
---|
362 | event_ctx = tctx->ev;
|
---|
363 | c = talloc_array(tctx, struct composite_context *, torture_numops);
|
---|
364 |
|
---|
365 | for (i=0; i<torture_numops; i++) {
|
---|
366 | c[i] = smb_composite_fsinfo_send(cli->tree, &io1, lpcfg_resolve_context(tctx->lp_ctx));
|
---|
367 | c[i]->async.fn = loadfile_complete;
|
---|
368 | c[i]->async.private_data = count;
|
---|
369 | }
|
---|
370 |
|
---|
371 | printf("waiting for completion\n");
|
---|
372 |
|
---|
373 | while (*count < torture_numops) {
|
---|
374 | event_loop_once(event_ctx);
|
---|
375 | if (torture_setting_bool(tctx, "progress", true)) {
|
---|
376 | printf("(%s) count=%d\r", __location__, *count);
|
---|
377 | fflush(stdout);
|
---|
378 | }
|
---|
379 | }
|
---|
380 | printf("count=%d\n", *count);
|
---|
381 |
|
---|
382 | for (i=0;i<torture_numops;i++) {
|
---|
383 | status = smb_composite_fsinfo_recv(c[i], tctx);
|
---|
384 | if (!NT_STATUS_IS_OK(status)) {
|
---|
385 | printf("(%s) fsinfo[%d] failed - %s\n", __location__, i, nt_errstr(status));
|
---|
386 | ret = false;
|
---|
387 | continue;
|
---|
388 | }
|
---|
389 |
|
---|
390 | if (io1.out.fsinfo->generic.level != RAW_QFS_OBJECTID_INFORMATION) {
|
---|
391 | printf("(%s) wrong level in returned info - %d "
|
---|
392 | "should be %d\n", __location__,
|
---|
393 | io1.out.fsinfo->generic.level, RAW_QFS_OBJECTID_INFORMATION);
|
---|
394 | ret = false;
|
---|
395 | continue;
|
---|
396 | }
|
---|
397 |
|
---|
398 | guid=GUID_string(tctx, &io1.out.fsinfo->objectid_information.out.guid);
|
---|
399 | printf("[%d] GUID: %s\n", i, guid);
|
---|
400 |
|
---|
401 |
|
---|
402 | }
|
---|
403 |
|
---|
404 | return ret;
|
---|
405 | }
|
---|
406 |
|
---|
407 |
|
---|
408 | /*
|
---|
409 | basic testing of libcli composite calls
|
---|
410 | */
|
---|
411 | bool torture_raw_composite(struct torture_context *tctx,
|
---|
412 | struct smbcli_state *cli)
|
---|
413 | {
|
---|
414 | bool ret = true;
|
---|
415 |
|
---|
416 | if (!torture_setup_dir(cli, BASEDIR)) {
|
---|
417 | return false;
|
---|
418 | }
|
---|
419 |
|
---|
420 | ret &= test_fetchfile(cli, tctx);
|
---|
421 | ret &= test_loadfile(cli, tctx);
|
---|
422 | ret &= test_appendacl(cli, tctx);
|
---|
423 | ret &= test_fsinfo(cli, tctx);
|
---|
424 |
|
---|
425 | smb_raw_exit(cli->session);
|
---|
426 | smbcli_deltree(cli->tree, BASEDIR);
|
---|
427 |
|
---|
428 | return ret;
|
---|
429 | }
|
---|