s3-debug Remove last direct assignements to DEBUGLEVEL
[Samba/gebeck_regimport.git] / source3 / torture / vfstest.c
blob3ebe63ee536e64dadd0610f05668e18a50b5958e
1 /*
2 Unix SMB/CIFS implementation.
3 VFS module tester
5 Copyright (C) Simo Sorce 2002
6 Copyright (C) Eric Lorimer 2002
7 Copyright (C) Jelmer Vernooij 2002,2003
9 Most of this code was ripped off of rpcclient.
10 Copyright (C) Tim Potter 2000-2001
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "includes.h"
27 #include "popt_common.h"
28 #include "vfstest.h"
29 #include "../libcli/smbreadline/smbreadline.h"
31 /* List to hold groups of commands */
32 static struct cmd_list {
33 struct cmd_list *prev, *next;
34 struct cmd_set *cmd_set;
35 } *cmd_list;
37 /****************************************************************************
38 handle completion of commands for readline
39 ****************************************************************************/
40 static char **completion_fn(const char *text, int start, int end)
42 #define MAX_COMPLETIONS 100
43 char **matches;
44 int i, count=0;
45 struct cmd_list *commands = cmd_list;
47 if (start)
48 return NULL;
50 /* make sure we have a list of valid commands */
51 if (!commands)
52 return NULL;
54 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
55 if (!matches) return NULL;
57 matches[count++] = SMB_STRDUP(text);
58 if (!matches[0]) return NULL;
60 while (commands && count < MAX_COMPLETIONS-1)
62 if (!commands->cmd_set)
63 break;
65 for (i=0; commands->cmd_set[i].name; i++)
67 if ((strncmp(text, commands->cmd_set[i].name, strlen(text)) == 0) &&
68 commands->cmd_set[i].fn)
70 matches[count] = SMB_STRDUP(commands->cmd_set[i].name);
71 if (!matches[count])
72 return NULL;
73 count++;
77 commands = commands->next;
81 if (count == 2) {
82 SAFE_FREE(matches[0]);
83 matches[0] = SMB_STRDUP(matches[1]);
85 matches[count] = NULL;
86 return matches;
89 static char *next_command(TALLOC_CTX *ctx, char **cmdstr)
91 char *command;
92 char *p;
94 if (!cmdstr || !(*cmdstr))
95 return NULL;
97 p = strchr_m(*cmdstr, ';');
98 if (p)
99 *p = '\0';
100 command = talloc_strdup(ctx, *cmdstr);
101 *cmdstr = p;
103 return command;
106 /* Load specified configuration file */
107 static NTSTATUS cmd_conf(struct vfs_state *vfs, TALLOC_CTX *mem_ctx,
108 int argc, const char **argv)
110 if (argc != 2) {
111 printf("Usage: %s <smb.conf>\n", argv[0]);
112 return NT_STATUS_OK;
115 if (!lp_load(argv[1], False, True, False, True)) {
116 printf("Error loading \"%s\"\n", argv[1]);
117 return NT_STATUS_OK;
120 printf("\"%s\" successfully loaded\n", argv[1]);
121 return NT_STATUS_OK;
124 /* Display help on commands */
125 static NTSTATUS cmd_help(struct vfs_state *vfs, TALLOC_CTX *mem_ctx,
126 int argc, const char **argv)
128 struct cmd_list *tmp;
129 struct cmd_set *tmp_set;
131 /* Usage */
132 if (argc > 2) {
133 printf("Usage: %s [command]\n", argv[0]);
134 return NT_STATUS_OK;
137 /* Help on one command */
139 if (argc == 2) {
140 for (tmp = cmd_list; tmp; tmp = tmp->next) {
142 tmp_set = tmp->cmd_set;
144 while(tmp_set->name) {
145 if (strequal(argv[1], tmp_set->name)) {
146 if (tmp_set->usage &&
147 tmp_set->usage[0])
148 printf("%s\n", tmp_set->usage);
149 else
150 printf("No help for %s\n", tmp_set->name);
152 return NT_STATUS_OK;
155 tmp_set++;
159 printf("No such command: %s\n", argv[1]);
160 return NT_STATUS_OK;
163 /* List all commands */
165 for (tmp = cmd_list; tmp; tmp = tmp->next) {
167 tmp_set = tmp->cmd_set;
169 while(tmp_set->name) {
171 printf("%15s\t\t%s\n", tmp_set->name,
172 tmp_set->description ? tmp_set->description:
173 "");
175 tmp_set++;
179 return NT_STATUS_OK;
182 /* Change the debug level */
183 static NTSTATUS cmd_debuglevel(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, const char **argv)
185 if (argc > 2) {
186 printf("Usage: %s [debuglevel]\n", argv[0]);
187 return NT_STATUS_OK;
190 if (argc == 2) {
191 lp_set_cmdline("log level", argv[1]);
194 printf("debuglevel is %d\n", DEBUGLEVEL);
196 return NT_STATUS_OK;
199 static NTSTATUS cmd_freemem(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, const char **argv)
201 /* Cleanup */
202 talloc_destroy(mem_ctx);
203 mem_ctx = NULL;
204 vfs->data = NULL;
205 vfs->data_size = 0;
206 return NT_STATUS_OK;
209 static NTSTATUS cmd_quit(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, const char **argv)
211 /* Cleanup */
212 talloc_destroy(mem_ctx);
214 exit(0);
215 return NT_STATUS_OK; /* NOTREACHED */
218 static struct cmd_set vfstest_commands[] = {
220 { "GENERAL OPTIONS" },
222 { "conf", cmd_conf, "Load smb configuration file", "conf <smb.conf>" },
223 { "help", cmd_help, "Get help on commands", "" },
224 { "?", cmd_help, "Get help on commands", "" },
225 { "debuglevel", cmd_debuglevel, "Set debug level", "" },
226 { "freemem", cmd_freemem, "Free currently allocated buffers", "" },
227 { "exit", cmd_quit, "Exit program", "" },
228 { "quit", cmd_quit, "Exit program", "" },
230 { NULL }
233 static struct cmd_set separator_command[] = {
234 { "---------------", NULL, "----------------------" },
235 { NULL }
239 extern struct cmd_set vfs_commands[];
240 static struct cmd_set *vfstest_command_list[] = {
241 vfstest_commands,
242 vfs_commands,
243 NULL
246 static void add_command_set(struct cmd_set *cmd_set)
248 struct cmd_list *entry;
250 if (!(entry = SMB_MALLOC_P(struct cmd_list))) {
251 DEBUG(0, ("out of memory\n"));
252 return;
255 ZERO_STRUCTP(entry);
257 entry->cmd_set = cmd_set;
258 DLIST_ADD(cmd_list, entry);
261 static NTSTATUS do_cmd(struct vfs_state *vfs, struct cmd_set *cmd_entry, char *cmd)
263 const char *p = cmd;
264 char **argv = NULL;
265 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
266 char *buf;
267 TALLOC_CTX *mem_ctx = talloc_stackframe();
268 int argc = 0, i;
270 /* Count number of arguments first time through the loop then
271 allocate memory and strdup them. */
273 again:
274 while(next_token_talloc(mem_ctx, &p, &buf, " ")) {
275 if (argv) {
276 argv[argc] = SMB_STRDUP(buf);
278 argc++;
281 if (!argv) {
282 /* Create argument list */
284 argv = SMB_MALLOC_ARRAY(char *, argc);
285 memset(argv, 0, sizeof(char *) * argc);
287 if (!argv) {
288 fprintf(stderr, "out of memory\n");
289 result = NT_STATUS_NO_MEMORY;
290 goto done;
293 p = cmd;
294 argc = 0;
296 goto again;
299 /* Call the function */
301 if (cmd_entry->fn) {
302 /* Run command */
303 result = cmd_entry->fn(vfs, mem_ctx, argc, (const char **)argv);
304 } else {
305 fprintf (stderr, "Invalid command\n");
306 goto done;
309 done:
311 /* Cleanup */
313 if (argv) {
314 for (i = 0; i < argc; i++)
315 SAFE_FREE(argv[i]);
317 SAFE_FREE(argv);
320 TALLOC_FREE(mem_ctx);
321 return result;
324 /* Process a command entered at the prompt or as part of -c */
325 static NTSTATUS process_cmd(struct vfs_state *vfs, char *cmd)
327 struct cmd_list *temp_list;
328 bool found = False;
329 char *buf;
330 const char *p = cmd;
331 NTSTATUS result = NT_STATUS_OK;
332 TALLOC_CTX *mem_ctx = talloc_stackframe();
333 int len = 0;
335 if (cmd[strlen(cmd) - 1] == '\n')
336 cmd[strlen(cmd) - 1] = '\0';
338 if (!next_token_talloc(mem_ctx, &p, &buf, " ")) {
339 TALLOC_FREE(mem_ctx);
340 return NT_STATUS_OK;
343 /* Strip the trailing \n if it exists */
344 len = strlen(buf);
345 if (buf[len-1] == '\n')
346 buf[len-1] = '\0';
348 /* Search for matching commands */
350 for (temp_list = cmd_list; temp_list; temp_list = temp_list->next) {
351 struct cmd_set *temp_set = temp_list->cmd_set;
353 while(temp_set->name) {
354 if (strequal(buf, temp_set->name)) {
355 found = True;
356 result = do_cmd(vfs, temp_set, cmd);
358 goto done;
360 temp_set++;
364 done:
365 if (!found && buf[0]) {
366 printf("command not found: %s\n", buf);
367 TALLOC_FREE(mem_ctx);
368 return NT_STATUS_OK;
371 if (!NT_STATUS_IS_OK(result)) {
372 printf("result was %s\n", nt_errstr(result));
375 TALLOC_FREE(mem_ctx);
376 return result;
379 static void process_file(struct vfs_state *pvfs, char *filename) {
380 FILE *file;
381 char command[3 * PATH_MAX];
383 if (*filename == '-') {
384 file = stdin;
385 } else {
386 file = fopen(filename, "r");
387 if (file == NULL) {
388 printf("vfstest: error reading file (%s)!", filename);
389 printf("errno n.%d: %s", errno, strerror(errno));
390 exit(-1);
394 while (fgets(command, 3 * PATH_MAX, file) != NULL) {
395 process_cmd(pvfs, command);
398 if (file != stdin) {
399 fclose(file);
403 void exit_server(const char *reason)
405 DEBUG(3,("Server exit (%s)\n", (reason ? reason : "")));
406 exit(0);
409 void exit_server_cleanly(const char *const reason)
411 exit_server("normal exit");
414 int last_message = -1;
416 struct event_context *smbd_event_context(void)
418 static struct event_context *ctx;
420 if (!ctx && !(ctx = event_context_init(NULL))) {
421 smb_panic("Could not init smbd event context\n");
423 return ctx;
426 /* Main function */
428 int main(int argc, char *argv[])
430 static char *cmdstr = NULL;
431 struct cmd_set **cmd_set;
432 static struct vfs_state vfs;
433 int i;
434 static char *filename = NULL;
435 TALLOC_CTX *frame = talloc_stackframe();
437 /* make sure the vars that get altered (4th field) are in
438 a fixed location or certain compilers complain */
439 poptContext pc;
440 struct poptOption long_options[] = {
441 POPT_AUTOHELP
442 {"file", 'f', POPT_ARG_STRING, &filename, 0, },
443 {"command", 'c', POPT_ARG_STRING, &cmdstr, 0, "Execute specified list of commands" },
444 POPT_COMMON_SAMBA
445 POPT_TABLEEND
448 load_case_tables();
450 setlinebuf(stdout);
452 pc = poptGetContext("vfstest", argc, (const char **) argv,
453 long_options, 0);
455 while(poptGetNextOpt(pc) != -1);
458 poptFreeContext(pc);
460 /* TODO: check output */
461 reload_services(smbd_messaging_context(), -1, False);
463 /* the following functions are part of the Samba debugging
464 facilities. See lib/debug.c */
465 setup_logging("vfstest", DEBUG_STDOUT);
467 /* Load command lists */
469 cmd_set = vfstest_command_list;
471 while(*cmd_set) {
472 add_command_set(*cmd_set);
473 add_command_set(separator_command);
474 cmd_set++;
477 /* some basic initialization stuff */
478 sec_init();
479 vfs.conn = TALLOC_ZERO_P(NULL, connection_struct);
480 vfs.conn->params = TALLOC_P(vfs.conn, struct share_params);
481 for (i=0; i < 1024; i++)
482 vfs.files[i] = NULL;
484 /* some advanced initiliazation stuff */
485 smbd_vfs_init(vfs.conn);
487 /* Do we have a file input? */
488 if (filename && filename[0]) {
489 process_file(&vfs, filename);
490 return 0;
493 /* Do anything specified with -c */
494 if (cmdstr && cmdstr[0]) {
495 char *cmd;
496 char *p = cmdstr;
498 while((cmd=next_command(frame, &p)) != NULL) {
499 process_cmd(&vfs, cmd);
502 TALLOC_FREE(cmd);
503 return 0;
506 /* Loop around accepting commands */
508 while(1) {
509 char *line = NULL;
511 line = smb_readline("vfstest $> ", NULL, completion_fn);
513 if (line == NULL) {
514 break;
517 if (line[0] != '\n') {
518 process_cmd(&vfs, line);
520 SAFE_FREE(line);
523 TALLOC_FREE(vfs.conn);
524 TALLOC_FREE(frame);
525 return 0;