2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1997-2003
5 Copyright (C) Jelmer Vernooij 2006-2008
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "lib/cmdline/popt_common.h"
23 #include "system/time.h"
24 #include "system/wait.h"
25 #include "system/filesys.h"
26 #include "system/readline.h"
27 #include "lib/smbreadline/smbreadline.h"
28 #include "libcli/libcli.h"
29 #include "lib/ldb/include/ldb.h"
30 #include "lib/events/events.h"
31 #include "dynconfig/dynconfig.h"
33 #include "torture/smbtorture.h"
34 #include "../lib/util/dlinklist.h"
35 #include "librpc/rpc/dcerpc.h"
36 #include "auth/gensec/gensec.h"
37 #include "param/param.h"
39 #include "auth/credentials/credentials.h"
41 static bool run_matching(struct torture_context
*torture
,
44 struct torture_suite
*suite
,
50 struct torture_suite
*o
;
52 for (o
= (torture_root
== NULL
?NULL
:torture_root
->children
); o
; o
= o
->next
) {
53 if (gen_fnmatch(expr
, o
->name
) == 0) {
55 reload_charcnv(torture
->lp_ctx
);
56 ret
&= torture_run_suite(torture
, o
);
60 ret
&= run_matching(torture
, o
->name
, expr
, o
, matched
);
64 struct torture_suite
*c
;
65 struct torture_tcase
*t
;
67 for (c
= suite
->children
; c
; c
= c
->next
) {
68 asprintf(&name
, "%s-%s", prefix
, c
->name
);
70 if (gen_fnmatch(expr
, name
) == 0) {
72 reload_charcnv(torture
->lp_ctx
);
73 torture
->active_testname
= talloc_strdup(torture
, prefix
);
74 ret
&= torture_run_suite(torture
, c
);
79 ret
&= run_matching(torture
, name
, expr
, c
, matched
);
84 for (t
= suite
->testcases
; t
; t
= t
->next
) {
85 asprintf(&name
, "%s-%s", prefix
, t
->name
);
86 if (gen_fnmatch(expr
, name
) == 0) {
88 reload_charcnv(torture
->lp_ctx
);
89 torture
->active_testname
= talloc_strdup(torture
, prefix
);
90 ret
&= torture_run_tcase(torture
, t
);
91 talloc_free(torture
->active_testname
);
100 #define MAX_COLS 80 /* FIXME: Determine this at run-time */
102 /****************************************************************************
103 run a specified test or "ALL"
104 ****************************************************************************/
105 static bool run_test(struct torture_context
*torture
, const char *name
)
108 bool matched
= false;
109 struct torture_suite
*o
;
111 if (strequal(name
, "ALL")) {
112 for (o
= torture_root
->children
; o
; o
= o
->next
) {
113 ret
&= torture_run_suite(torture
, o
);
118 ret
= run_matching(torture
, NULL
, name
, NULL
, &matched
);
121 printf("Unknown torture operation '%s'\n", name
);
128 static bool parse_target(struct loadparm_context
*lp_ctx
, const char *target
)
130 char *host
= NULL
, *share
= NULL
;
131 struct dcerpc_binding
*binding_struct
;
134 /* see if its a RPC transport specifier */
135 if (!smbcli_parse_unc(target
, NULL
, &host
, &share
)) {
136 status
= dcerpc_parse_binding(talloc_autofree_context(), target
, &binding_struct
);
137 if (NT_STATUS_IS_ERR(status
)) {
138 d_printf("Invalid option: %s is not a valid torture target (share or binding string)\n\n", target
);
141 lp_set_cmdline(lp_ctx
, "torture:host", binding_struct
->host
);
142 if (lp_parm_string(lp_ctx
, NULL
, "torture", "share") == NULL
)
143 lp_set_cmdline(lp_ctx
, "torture:share", "IPC$");
144 lp_set_cmdline(lp_ctx
, "torture:binding", target
);
146 lp_set_cmdline(lp_ctx
, "torture:host", host
);
147 lp_set_cmdline(lp_ctx
, "torture:share", share
);
148 lp_set_cmdline(lp_ctx
, "torture:binding", host
);
154 static void parse_dns(struct loadparm_context
*lp_ctx
, const char *dns
)
156 char *userdn
, *basedn
, *secret
;
159 /* retrievieng the userdn */
160 p
= strchr_m(dns
, '#');
162 lp_set_cmdline(lp_ctx
, "torture:ldap_userdn", "");
163 lp_set_cmdline(lp_ctx
, "torture:ldap_basedn", "");
164 lp_set_cmdline(lp_ctx
, "torture:ldap_secret", "");
167 userdn
= strndup(dns
, p
- dns
);
168 lp_set_cmdline(lp_ctx
, "torture:ldap_userdn", userdn
);
170 /* retrieve the basedn */
172 p
= strchr_m(d
, '#');
174 lp_set_cmdline(lp_ctx
, "torture:ldap_basedn", "");
175 lp_set_cmdline(lp_ctx
, "torture:ldap_secret", "");
178 basedn
= strndup(d
, p
- d
);
179 lp_set_cmdline(lp_ctx
, "torture:ldap_basedn", basedn
);
181 /* retrieve the secret */
184 lp_set_cmdline(lp_ctx
, "torture:ldap_secret", "");
188 lp_set_cmdline(lp_ctx
, "torture:ldap_secret", secret
);
190 printf ("%s - %s - %s\n", userdn
, basedn
, secret
);
194 static void print_test_list(void)
196 struct torture_suite
*o
;
197 struct torture_suite
*s
;
198 struct torture_tcase
*t
;
200 if (torture_root
== NULL
)
203 for (o
= torture_root
->children
; o
; o
= o
->next
) {
204 for (s
= o
->children
; s
; s
= s
->next
) {
205 printf("%s-%s\n", o
->name
, s
->name
);
208 for (t
= o
->testcases
; t
; t
= t
->next
) {
209 printf("%s-%s\n", o
->name
, t
->name
);
214 _NORETURN_
static void usage(poptContext pc
)
216 struct torture_suite
*o
;
217 struct torture_suite
*s
;
218 struct torture_tcase
*t
;
221 poptPrintUsage(pc
, stdout
, 0);
224 printf("The binding format is:\n\n");
226 printf(" TRANSPORT:host[flags]\n\n");
228 printf(" where TRANSPORT is either ncacn_np for SMB, ncacn_ip_tcp for RPC/TCP\n");
229 printf(" or ncalrpc for local connections.\n\n");
231 printf(" 'host' is an IP or hostname or netbios name. If the binding string\n");
232 printf(" identifies the server side of an endpoint, 'host' may be an empty\n");
233 printf(" string.\n\n");
235 printf(" 'flags' can include a SMB pipe name if using the ncacn_np transport or\n");
236 printf(" a TCP port number if using the ncacn_ip_tcp transport, otherwise they\n");
237 printf(" will be auto-determined.\n\n");
239 printf(" other recognised flags are:\n\n");
241 printf(" sign : enable ntlmssp signing\n");
242 printf(" seal : enable ntlmssp sealing\n");
243 printf(" connect : enable rpc connect level auth (auth, but no sign or seal)\n");
244 printf(" validate: enable the NDR validator\n");
245 printf(" print: enable debugging of the packets\n");
246 printf(" bigendian: use bigendian RPC\n");
247 printf(" padcheck: check reply data for non-zero pad bytes\n\n");
249 printf(" For example, these all connect to the samr pipe:\n\n");
251 printf(" ncacn_np:myserver\n");
252 printf(" ncacn_np:myserver[samr]\n");
253 printf(" ncacn_np:myserver[\\pipe\\samr]\n");
254 printf(" ncacn_np:myserver[/pipe/samr]\n");
255 printf(" ncacn_np:myserver[samr,sign,print]\n");
256 printf(" ncacn_np:myserver[\\pipe\\samr,sign,seal,bigendian]\n");
257 printf(" ncacn_np:myserver[/pipe/samr,seal,validate]\n");
258 printf(" ncacn_np:\n");
259 printf(" ncacn_np:[/pipe/samr]\n\n");
261 printf(" ncacn_ip_tcp:myserver\n");
262 printf(" ncacn_ip_tcp:myserver[1024]\n");
263 printf(" ncacn_ip_tcp:myserver[1024,sign,seal]\n\n");
265 printf(" ncalrpc:\n\n");
267 printf("The UNC format is:\n\n");
269 printf(" //server/share\n\n");
271 printf("Tests are:");
273 if (torture_root
== NULL
) {
274 printf("NO TESTS LOADED\n");
278 for (o
= torture_root
->children
; o
; o
= o
->next
) {
279 printf("\n%s (%s):\n ", o
->description
, o
->name
);
282 for (s
= o
->children
; s
; s
= s
->next
) {
283 if (i
+ strlen(o
->name
) + strlen(s
->name
) >= (MAX_COLS
- 3)) {
287 i
+=printf("%s-%s ", o
->name
, s
->name
);
290 for (t
= o
->testcases
; t
; t
= t
->next
) {
291 if (i
+ strlen(o
->name
) + strlen(t
->name
) >= (MAX_COLS
- 3)) {
295 i
+=printf("%s-%s ", o
->name
, t
->name
);
301 printf("\nThe default test is ALL.\n");
306 _NORETURN_
static void max_runtime_handler(int sig
)
308 DEBUG(0,("maximum runtime exceeded for smbtorture - terminating\n"));
312 struct timeval last_suite_started
;
314 static void simple_suite_start(struct torture_context
*ctx
,
315 struct torture_suite
*suite
)
317 last_suite_started
= timeval_current();
318 printf("Running %s\n", suite
->name
);
321 static void simple_suite_finish(struct torture_context
*ctx
,
322 struct torture_suite
*suite
)
325 printf("%s took %g secs\n\n", suite
->name
,
326 timeval_elapsed(&last_suite_started
));
329 static void simple_test_result(struct torture_context
*context
,
330 enum torture_result res
, const char *reason
)
335 printf("OK: %s\n", reason
);
338 printf("TEST %s FAILED! - %s\n", context
->active_test
->name
, reason
);
341 printf("ERROR IN TEST %s! - %s\n", context
->active_test
->name
, reason
);
344 printf("SKIP: %s - %s\n", context
->active_test
->name
, reason
);
349 static void simple_comment(struct torture_context
*test
,
352 printf("%s", comment
);
355 static void simple_warning(struct torture_context
*test
,
358 fprintf(stderr
, "WARNING: %s\n", comment
);
361 const static struct torture_ui_ops std_ui_ops
= {
362 .comment
= simple_comment
,
363 .warning
= simple_warning
,
364 .suite_start
= simple_suite_start
,
365 .suite_finish
= simple_suite_finish
,
366 .test_result
= simple_test_result
370 static void run_shell(struct torture_context
*tctx
)
378 cline
= smb_readline("torture> ", NULL
, NULL
);
383 ret
= poptParseArgvString(cline
, &argc
, &argv
);
385 fprintf(stderr
, "Error parsing line\n");
389 if (!strcmp(argv
[0], "quit")) {
391 } else if (!strcmp(argv
[0], "set")) {
393 fprintf(stderr
, "Usage: set <variable> <value>\n");
395 char *name
= talloc_asprintf(NULL
, "torture:%s", argv
[1]);
396 lp_set_cmdline(tctx
->lp_ctx
, name
, argv
[2]);
399 } else if (!strcmp(argv
[0], "help")) {
400 fprintf(stderr
, "Available commands:\n"
401 " help - This help command\n"
403 " set - Change variables\n"
405 } else if (!strcmp(argv
[0], "run")) {
407 fprintf(stderr
, "Usage: run TEST-NAME [OPTIONS...]\n");
409 run_test(tctx
, argv
[1]);
416 /****************************************************************************
418 ****************************************************************************/
419 int main(int argc
,char *argv
[])
425 struct torture_context
*torture
;
426 struct torture_results
*results
;
427 const struct torture_ui_ops
*ui_ops
;
430 static const char *target
= "other";
433 static const char *ui_ops_name
= "subunit";
434 const char *basedir
= NULL
;
435 const char *extra_module
= NULL
;
436 static int list_tests
= 0;
437 int num_extra_users
= 0;
438 enum {OPT_LOADFILE
=1000,OPT_UNCLIST
,OPT_TIMELIMIT
,OPT_DNS
, OPT_LIST
,
439 OPT_DANGEROUS
,OPT_SMB_PORTS
,OPT_ASYNC
,OPT_NUMPROGS
,
442 struct poptOption long_options
[] = {
444 {"format", 0, POPT_ARG_STRING
, &ui_ops_name
, 0, "Output format (one of: simple, subunit)", NULL
},
445 {"smb-ports", 'p', POPT_ARG_STRING
, NULL
, OPT_SMB_PORTS
, "SMB ports", NULL
},
446 {"basedir", 0, POPT_ARG_STRING
, &basedir
, 0, "base directory", "BASEDIR" },
447 {"seed", 0, POPT_ARG_INT
, &torture_seed
, 0, "Seed to use for randomizer", NULL
},
448 {"num-progs", 0, POPT_ARG_INT
, NULL
, OPT_NUMPROGS
, "num progs", NULL
},
449 {"num-ops", 0, POPT_ARG_INT
, &torture_numops
, 0, "num ops", NULL
},
450 {"entries", 0, POPT_ARG_INT
, &torture_entries
, 0, "entries", NULL
},
451 {"loadfile", 0, POPT_ARG_STRING
, NULL
, OPT_LOADFILE
, "NBench load file to use", NULL
},
452 {"list", 0, POPT_ARG_NONE
, &list_tests
, 0, "List available tests and exit", NULL
},
453 {"unclist", 0, POPT_ARG_STRING
, NULL
, OPT_UNCLIST
, "unclist", NULL
},
454 {"timelimit", 't', POPT_ARG_INT
, NULL
, OPT_TIMELIMIT
, "Set time limit (in seconds)", NULL
},
455 {"failures", 'f', POPT_ARG_INT
, &torture_failures
, 0, "failures", NULL
},
456 {"parse-dns", 'D', POPT_ARG_STRING
, NULL
, OPT_DNS
, "parse-dns", NULL
},
457 {"dangerous", 'X', POPT_ARG_NONE
, NULL
, OPT_DANGEROUS
,
458 "run dangerous tests (eg. wiping out password database)", NULL
},
459 {"load-module", 0, POPT_ARG_STRING
, &extra_module
, 0, "load tests from DSO file", "SOFILE"},
460 {"shell", 0, POPT_ARG_NONE
, &shell
, true, "Run shell", NULL
},
461 {"target", 'T', POPT_ARG_STRING
, &target
, 0, "samba3|samba4|other", NULL
},
462 {"async", 'a', POPT_ARG_NONE
, NULL
, OPT_ASYNC
,
463 "run async tests", NULL
},
464 {"num-async", 0, POPT_ARG_INT
, &torture_numasync
, 0,
465 "number of simultaneous async requests", NULL
},
466 {"maximum-runtime", 0, POPT_ARG_INT
, &max_runtime
, 0,
467 "set maximum time for smbtorture to live", "seconds"},
468 {"extra-user", 0, POPT_ARG_STRING
, NULL
, OPT_EXTRA_USER
,
469 "extra user credentials", NULL
},
471 POPT_COMMON_CONNECTION
472 POPT_COMMON_CREDENTIALS
479 /* we are never interested in SIGPIPE */
480 BlockSignals(true, SIGPIPE
);
482 pc
= poptGetContext("smbtorture", argc
, (const char **) argv
, long_options
,
483 POPT_CONTEXT_KEEP_FIRST
);
485 poptSetOtherOptionHelp(pc
, "<binding>|<unc> TEST1 TEST2 ...");
487 while((opt
= poptGetNextOpt(pc
)) != -1) {
490 lp_set_cmdline(cmdline_lp_ctx
, "torture:loadfile", poptGetOptArg(pc
));
493 lp_set_cmdline(cmdline_lp_ctx
, "torture:unclist", poptGetOptArg(pc
));
496 lp_set_cmdline(cmdline_lp_ctx
, "torture:timelimit", poptGetOptArg(pc
));
499 lp_set_cmdline(cmdline_lp_ctx
, "torture:nprocs", poptGetOptArg(pc
));
502 parse_dns(cmdline_lp_ctx
, poptGetOptArg(pc
));
505 lp_set_cmdline(cmdline_lp_ctx
, "torture:dangerous", "Yes");
508 lp_set_cmdline(cmdline_lp_ctx
, "torture:async", "Yes");
511 lp_set_cmdline(cmdline_lp_ctx
, "smb ports", poptGetOptArg(pc
));
515 char *option
= talloc_asprintf(NULL
, "torture:extra_user%u",
517 char *value
= poptGetOptArg(pc
);
518 lp_set_cmdline(cmdline_lp_ctx
, option
, value
);
523 printf("bad command line option\n");
528 if (strcmp(target
, "samba3") == 0) {
529 lp_set_cmdline(cmdline_lp_ctx
, "torture:samba3", "true");
530 } else if (strcmp(target
, "samba4") == 0) {
531 lp_set_cmdline(cmdline_lp_ctx
, "torture:samba4", "true");
532 } else if (strcmp(target
, "w2k8") == 0) {
533 lp_set_cmdline(cmdline_lp_ctx
, "torture:w2k8", "true");
534 } else if (strcmp(target
, "win7") == 0) {
535 lp_set_cmdline(cmdline_lp_ctx
, "torture:win7", "true");
536 } else if (strcmp(target
, "onefs") == 0) {
537 lp_set_cmdline(cmdline_lp_ctx
, "torture:sacl_support", "false");
541 /* this will only work if nobody else uses alarm(),
542 which means it won't work for some tests, but we
543 can't use the event context method we use for smbd
544 as so many tests create their own event
545 context. This will at least catch most cases. */
546 signal(SIGALRM
, max_runtime_handler
);
550 if (extra_module
!= NULL
) {
551 init_module_fn fn
= load_module(talloc_autofree_context(), poptGetOptArg(pc
));
554 d_printf("Unable to load module from %s\n", poptGetOptArg(pc
));
557 if (NT_STATUS_IS_ERR(status
)) {
558 d_printf("Error initializing module %s: %s\n",
559 poptGetOptArg(pc
), nt_errstr(status
));
571 if (torture_seed
== 0) {
572 torture_seed
= time(NULL
);
574 printf("Using seed %d\n", torture_seed
);
575 srandom(torture_seed
);
577 argv_new
= discard_const_p(char *, poptGetArgs(pc
));
580 for (i
=0; i
<argc
; i
++) {
581 if (argv_new
[i
] == NULL
) {
587 if (!(argc_new
>= 3 || (shell
&& argc_new
>= 2))) {
592 if (!parse_target(cmdline_lp_ctx
, argv_new
[1])) {
597 if (!strcmp(ui_ops_name
, "simple")) {
598 ui_ops
= &std_ui_ops
;
599 } else if (!strcmp(ui_ops_name
, "subunit")) {
600 ui_ops
= &torture_subunit_ui_ops
;
602 printf("Unknown output format '%s'\n", ui_ops_name
);
606 results
= torture_results_init(talloc_autofree_context(), ui_ops
);
608 torture
= torture_context_init(s4_event_context_init(NULL
), results
);
609 if (basedir
!= NULL
) {
610 if (basedir
[0] != '/') {
611 fprintf(stderr
, "Please specify an absolute path to --basedir\n");
614 torture
->outputdir
= basedir
;
616 char *pwd
= talloc_size(torture
, PATH_MAX
);
617 if (!getcwd(pwd
, PATH_MAX
)) {
618 fprintf(stderr
, "Unable to determine current working directory\n");
621 torture
->outputdir
= pwd
;
624 torture
->lp_ctx
= cmdline_lp_ctx
;
626 gensec_init(cmdline_lp_ctx
);
629 printf("You must specify a test to run, or 'ALL'\n");
633 for (i
=2;i
<argc_new
;i
++) {
634 if (!run_test(torture
, argv_new
[i
])) {
640 if (torture
->results
->returncode
&& correct
) {