pysmbd: Add SMB_ACL_EXECUTE to the mask set by make_simple_acl()
[Samba/gebeck_regimport.git] / source4 / torture / raw / composite.c
blob1c02e40013d473ab23068e54d2087289c2477f1f
1 /*
2 Unix SMB/CIFS implementation.
4 libcli composite function testing
6 Copyright (C) Andrew Tridgell 2005
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.
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.
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/>.
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 #include "torture/raw/proto.h"
37 #define BASEDIR "\\composite"
39 static void loadfile_complete(struct composite_context *c)
41 int *count = talloc_get_type(c->async.private_data, int);
42 (*count)++;
46 test a simple savefile/loadfile combination
48 static bool test_loadfile(struct torture_context *tctx, struct smbcli_state *cli)
50 const char *fname = BASEDIR "\\test.txt";
51 NTSTATUS status;
52 struct smb_composite_savefile io1;
53 struct smb_composite_loadfile *io2;
54 struct composite_context **c;
55 uint8_t *data;
56 size_t len = random() % 100000;
57 const int num_ops = 50;
58 int i;
59 int *count = talloc_zero(tctx, int);
61 data = talloc_array(tctx, uint8_t, len);
63 generate_random_buffer(data, len);
65 io1.in.fname = fname;
66 io1.in.data = data;
67 io1.in.size = len;
69 torture_comment(tctx, "Testing savefile\n");
71 status = smb_composite_savefile(cli->tree, &io1);
72 torture_assert_ntstatus_equal(tctx, status, NT_STATUS_OK, "savefile failed");
74 torture_comment(tctx, "Testing parallel loadfile with %d ops\n", num_ops);
76 c = talloc_array(tctx, struct composite_context *, num_ops);
77 io2 = talloc_zero_array(tctx, struct smb_composite_loadfile, num_ops);
79 for (i=0;i<num_ops;i++) {
80 io2[i].in.fname = fname;
81 c[i] = smb_composite_loadfile_send(cli->tree, &io2[i]);
82 c[i]->async.fn = loadfile_complete;
83 c[i]->async.private_data = count;
86 torture_comment(tctx, "waiting for completion\n");
87 while (*count != num_ops) {
88 tevent_loop_once(tctx->ev);
89 if (torture_setting_bool(tctx, "progress", true)) {
90 torture_comment(tctx, "(%s) count=%d\r", __location__, *count);
91 fflush(stdout);
94 torture_comment(tctx, "count=%d\n", *count);
96 for (i=0;i<num_ops;i++) {
97 status = smb_composite_loadfile_recv(c[i], tctx);
98 torture_assert_ntstatus_equal(tctx, status, NT_STATUS_OK, "loadfile failed");
100 torture_assert_int_equal(tctx, io2[i].out.size, len, "wrong length in returned data");
101 torture_assert_mem_equal(tctx, io2[i].out.data, data, len, "wrong data in loadfile");
104 talloc_free(data);
106 return true;
109 static bool test_loadfile_t(struct torture_context *tctx, struct smbcli_state *cli)
111 int ret;
112 torture_assert(tctx, torture_setup_dir(cli, BASEDIR), "failed to setup " BASEDIR);
114 ret = test_loadfile(tctx, cli);
115 smb_raw_exit(cli->session);
116 smbcli_deltree(cli->tree, BASEDIR);
118 return ret;
122 test a simple savefile/loadfile combination
124 static bool test_fetchfile(struct torture_context *tctx, struct smbcli_state *cli)
126 const char *fname = BASEDIR "\\test.txt";
127 NTSTATUS status;
128 struct smb_composite_savefile io1;
129 struct smb_composite_fetchfile io2;
130 struct composite_context **c;
131 uint8_t *data;
132 int i;
133 size_t len = random() % 10000;
134 extern int torture_numops;
135 struct tevent_context *event_ctx;
136 int *count = talloc_zero(tctx, int);
137 bool ret = true;
139 data = talloc_array(tctx, uint8_t, len);
141 generate_random_buffer(data, len);
143 ZERO_STRUCT(io1);
144 io1.in.fname = fname;
145 io1.in.data = data;
146 io1.in.size = len;
148 torture_comment(tctx, "Testing savefile\n");
150 status = smb_composite_savefile(cli->tree, &io1);
151 torture_assert_ntstatus_equal(tctx, status, NT_STATUS_OK, "savefile failed");
153 ZERO_STRUCT(io2);
155 io2.in.dest_host = torture_setting_string(tctx, "host", NULL);
156 io2.in.ports = lpcfg_smb_ports(tctx->lp_ctx);
157 io2.in.called_name = torture_setting_string(tctx, "host", NULL);
158 io2.in.service = torture_setting_string(tctx, "share", NULL);
159 io2.in.service_type = "A:";
160 io2.in.socket_options = lpcfg_socket_options(tctx->lp_ctx);
162 io2.in.credentials = cmdline_credentials;
163 io2.in.workgroup = lpcfg_workgroup(tctx->lp_ctx);
164 io2.in.filename = fname;
165 lpcfg_smbcli_options(tctx->lp_ctx, &io2.in.options);
166 lpcfg_smbcli_session_options(tctx->lp_ctx, &io2.in.session_options);
167 io2.in.resolve_ctx = lpcfg_resolve_context(tctx->lp_ctx);
168 io2.in.gensec_settings = lpcfg_gensec_settings(tctx, tctx->lp_ctx);
170 torture_comment(tctx, "Testing parallel fetchfile with %d ops\n", torture_numops);
172 event_ctx = tctx->ev;
173 c = talloc_array(tctx, struct composite_context *, torture_numops);
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;
181 torture_comment(tctx, "waiting for completion\n");
183 while (*count != torture_numops) {
184 tevent_loop_once(event_ctx);
185 if (torture_setting_bool(tctx, "progress", true)) {
186 torture_comment(tctx, "(%s) count=%d\r", __location__, *count);
187 fflush(stdout);
190 torture_comment(tctx, "count=%d\n", *count);
192 for (i=0;i<torture_numops;i++) {
193 status = smb_composite_fetchfile_recv(c[i], tctx);
194 torture_assert_ntstatus_equal(tctx, status, NT_STATUS_OK, "loadfile failed");
196 torture_assert_int_equal(tctx, io2.out.size, len, "wrong length in returned data");
197 torture_assert_mem_equal(tctx, io2.out.data, data, len, "wrong data in loadfile");
200 return ret;
203 static bool test_fetchfile_t(struct torture_context *tctx, struct smbcli_state *cli)
205 int ret;
206 torture_assert(tctx, torture_setup_dir(cli, BASEDIR), "failed to setup " BASEDIR);
207 ret = test_fetchfile(tctx, cli);
208 smb_raw_exit(cli->session);
209 smbcli_deltree(cli->tree, BASEDIR);
211 return ret;
215 test setfileacl
217 static bool test_appendacl(struct torture_context *tctx, struct smbcli_state *cli)
219 struct smb_composite_appendacl **io;
220 struct smb_composite_appendacl **io_orig;
221 struct composite_context **c;
222 struct tevent_context *event_ctx;
224 struct security_descriptor *test_sd;
225 struct security_ace *ace;
226 struct dom_sid *test_sid;
228 const int num_ops = 50;
229 int *count = talloc_zero(tctx, int);
230 struct smb_composite_savefile io1;
232 NTSTATUS status;
233 int i;
235 io_orig = talloc_array(tctx, struct smb_composite_appendacl *, num_ops);
237 printf ("creating %d empty files and getting their acls with appendacl\n", num_ops);
239 for (i = 0; i < num_ops; i++) {
240 io1.in.fname = talloc_asprintf(io_orig, BASEDIR "\\test%d.txt", i);
241 io1.in.data = NULL;
242 io1.in.size = 0;
244 status = smb_composite_savefile(cli->tree, &io1);
245 torture_assert_ntstatus_equal(tctx, status, NT_STATUS_OK, "savefile failed");
247 io_orig[i] = talloc (io_orig, struct smb_composite_appendacl);
248 io_orig[i]->in.fname = talloc_steal(io_orig[i], io1.in.fname);
249 io_orig[i]->in.sd = security_descriptor_initialise(io_orig[i]);
250 status = smb_composite_appendacl(cli->tree, io_orig[i], io_orig[i]);
251 torture_assert_ntstatus_equal(tctx, status, NT_STATUS_OK, "appendacl failed");
255 /* fill Security Descriptor with aces to be added */
257 test_sd = security_descriptor_initialise(tctx);
258 test_sid = dom_sid_parse_talloc (tctx, "S-1-5-32-1234-5432");
260 ace = talloc_zero(tctx, struct security_ace);
262 ace->type = SEC_ACE_TYPE_ACCESS_ALLOWED;
263 ace->flags = 0;
264 ace->access_mask = SEC_STD_ALL;
265 ace->trustee = *test_sid;
267 status = security_descriptor_dacl_add(test_sd, ace);
268 torture_assert_ntstatus_equal(tctx, status, NT_STATUS_OK, "appendacl failed");
270 /* set parameters for appendacl async call */
272 torture_comment(tctx, "Testing parallel appendacl with %d ops\n", num_ops);
274 c = talloc_array(tctx, struct composite_context *, num_ops);
275 io = talloc_array(tctx, struct smb_composite_appendacl *, num_ops);
277 for (i=0; i < num_ops; i++) {
278 io[i] = talloc (io, struct smb_composite_appendacl);
279 io[i]->in.sd = test_sd;
280 io[i]->in.fname = talloc_asprintf(io[i], BASEDIR "\\test%d.txt", i);
282 c[i] = smb_composite_appendacl_send(cli->tree, io[i]);
283 c[i]->async.fn = loadfile_complete;
284 c[i]->async.private_data = count;
287 event_ctx = tctx->ev;
288 torture_comment(tctx, "waiting for completion\n");
289 while (*count != num_ops) {
290 tevent_loop_once(event_ctx);
291 if (torture_setting_bool(tctx, "progress", true)) {
292 torture_comment(tctx, "(%s) count=%d\r", __location__, *count);
293 fflush(stdout);
296 torture_comment(tctx, "count=%d\n", *count);
298 for (i=0; i < num_ops; i++) {
299 status = smb_composite_appendacl_recv(c[i], io[i]);
300 if (!NT_STATUS_IS_OK(status)) {
301 torture_comment(tctx, "(%s) appendacl[%d] failed - %s\n", __location__, i, nt_errstr(status));
302 return false;
305 security_descriptor_dacl_add(io_orig[i]->out.sd, ace);
306 torture_assert(tctx,
307 security_acl_equal(io_orig[i]->out.sd->dacl,
308 io[i]->out.sd->dacl),
309 "appendacl failed - needed acl isn't set");
313 talloc_free (ace);
314 talloc_free (test_sid);
315 talloc_free (test_sd);
317 return true;
320 static bool test_appendacl_t(struct torture_context *tctx, struct smbcli_state *cli)
322 int ret;
323 torture_assert(tctx, torture_setup_dir(cli, BASEDIR), "failed to setup " BASEDIR);
324 ret = test_appendacl(tctx, cli);
325 smb_raw_exit(cli->session);
326 smbcli_deltree(cli->tree, BASEDIR);
328 return ret;
331 /* test a query FS info by asking for share's GUID */
332 static bool test_fsinfo(struct torture_context *tctx, struct smbcli_state *cli)
334 char *guid = NULL;
335 NTSTATUS status;
336 struct smb_composite_fsinfo io1;
337 struct composite_context **c;
339 int i;
340 extern int torture_numops;
341 struct tevent_context *event_ctx;
342 int *count = talloc_zero(tctx, int);
343 bool ret = true;
345 io1.in.dest_host = torture_setting_string(tctx, "host", NULL);
346 io1.in.dest_ports = lpcfg_smb_ports(tctx->lp_ctx);
347 io1.in.socket_options = lpcfg_socket_options(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 = lpcfg_workgroup(tctx->lp_ctx);
353 io1.in.level = RAW_QFS_OBJECTID_INFORMATION;
354 io1.in.gensec_settings = lpcfg_gensec_settings(tctx, tctx->lp_ctx);
356 torture_comment(tctx, "Testing parallel queryfsinfo [Object ID] with %d ops\n",
357 torture_numops);
359 event_ctx = tctx->ev;
360 c = talloc_array(tctx, struct composite_context *, torture_numops);
362 for (i=0; i<torture_numops; i++) {
363 c[i] = smb_composite_fsinfo_send(cli->tree, &io1, lpcfg_resolve_context(tctx->lp_ctx), event_ctx);
364 torture_assert(tctx, c[i], "smb_composite_fsinfo_send failed!");
365 c[i]->async.fn = loadfile_complete;
366 c[i]->async.private_data = count;
369 torture_comment(tctx, "waiting for completion\n");
371 while (*count < torture_numops) {
372 tevent_loop_once(event_ctx);
373 if (torture_setting_bool(tctx, "progress", true)) {
374 torture_comment(tctx, "(%s) count=%d\r", __location__, *count);
375 fflush(stdout);
378 torture_comment(tctx, "count=%d\n", *count);
380 for (i=0;i<torture_numops;i++) {
381 status = smb_composite_fsinfo_recv(c[i], tctx);
382 torture_assert_ntstatus_equal(tctx, status, NT_STATUS_OK, "smb_composite_fsinfo_recv failed");
384 torture_assert_int_equal(tctx, io1.out.fsinfo->generic.level, RAW_QFS_OBJECTID_INFORMATION, "wrong level in returned info");
386 guid=GUID_string(tctx, &io1.out.fsinfo->objectid_information.out.guid);
387 torture_comment(tctx, "[%d] GUID: %s\n", i, guid);
390 return ret;
393 static bool test_fsinfo_t(struct torture_context *tctx, struct smbcli_state *cli)
395 int ret;
396 torture_assert(tctx, torture_setup_dir(cli, BASEDIR), "failed to setup " BASEDIR);
397 ret = test_fsinfo(tctx, cli);
398 smb_raw_exit(cli->session);
399 smbcli_deltree(cli->tree, BASEDIR);
401 return ret;
405 basic testing of all RAW_SEARCH_* calls using a single file
407 struct torture_suite *torture_raw_composite(TALLOC_CTX *mem_ctx)
409 struct torture_suite *suite = torture_suite_create(mem_ctx, "composite");
411 torture_suite_add_1smb_test(suite, "fetchfile", test_fetchfile_t);
412 torture_suite_add_1smb_test(suite, "loadfile", test_loadfile_t);
413 torture_suite_add_1smb_test(suite, "appendacl", test_appendacl_t);
414 torture_suite_add_1smb_test(suite, "fsinfo", test_fsinfo_t);
416 return suite;