s3: Rename new parameter "ldap ref follow" to "ldap follow referral".
[Samba/gebeck_regimport.git] / source3 / torture / vfstest.c
blob2a191c2800a2fffa0061500edb567388d37bd98b
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 "vfstest.h"
29 /* List to hold groups of commands */
30 static struct cmd_list {
31 struct cmd_list *prev, *next;
32 struct cmd_set *cmd_set;
33 } *cmd_list;
35 int get_client_fd(void)
37 return -1;
40 /****************************************************************************
41 handle completion of commands for readline
42 ****************************************************************************/
43 static char **completion_fn(const char *text, int start, int end)
45 #define MAX_COMPLETIONS 100
46 char **matches;
47 int i, count=0;
48 struct cmd_list *commands = cmd_list;
50 if (start)
51 return NULL;
53 /* make sure we have a list of valid commands */
54 if (!commands)
55 return NULL;
57 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
58 if (!matches) return NULL;
60 matches[count++] = SMB_STRDUP(text);
61 if (!matches[0]) return NULL;
63 while (commands && count < MAX_COMPLETIONS-1)
65 if (!commands->cmd_set)
66 break;
68 for (i=0; commands->cmd_set[i].name; i++)
70 if ((strncmp(text, commands->cmd_set[i].name, strlen(text)) == 0) &&
71 commands->cmd_set[i].fn)
73 matches[count] = SMB_STRDUP(commands->cmd_set[i].name);
74 if (!matches[count])
75 return NULL;
76 count++;
80 commands = commands->next;
84 if (count == 2) {
85 SAFE_FREE(matches[0]);
86 matches[0] = SMB_STRDUP(matches[1]);
88 matches[count] = NULL;
89 return matches;
92 static char *next_command(TALLOC_CTX *ctx, char **cmdstr)
94 char *command;
95 char *p;
97 if (!cmdstr || !(*cmdstr))
98 return NULL;
100 p = strchr_m(*cmdstr, ';');
101 if (p)
102 *p = '\0';
103 command = talloc_strdup(ctx, *cmdstr);
104 *cmdstr = p;
106 return command;
109 /* Load specified configuration file */
110 static NTSTATUS cmd_conf(struct vfs_state *vfs, TALLOC_CTX *mem_ctx,
111 int argc, const char **argv)
113 if (argc != 2) {
114 printf("Usage: %s <smb.conf>\n", argv[0]);
115 return NT_STATUS_OK;
118 if (!lp_load(argv[1], False, True, False, True)) {
119 printf("Error loading \"%s\"\n", argv[1]);
120 return NT_STATUS_OK;
123 printf("\"%s\" successfully loaded\n", argv[1]);
124 return NT_STATUS_OK;
127 /* Display help on commands */
128 static NTSTATUS cmd_help(struct vfs_state *vfs, TALLOC_CTX *mem_ctx,
129 int argc, const char **argv)
131 struct cmd_list *tmp;
132 struct cmd_set *tmp_set;
134 /* Usage */
135 if (argc > 2) {
136 printf("Usage: %s [command]\n", argv[0]);
137 return NT_STATUS_OK;
140 /* Help on one command */
142 if (argc == 2) {
143 for (tmp = cmd_list; tmp; tmp = tmp->next) {
145 tmp_set = tmp->cmd_set;
147 while(tmp_set->name) {
148 if (strequal(argv[1], tmp_set->name)) {
149 if (tmp_set->usage &&
150 tmp_set->usage[0])
151 printf("%s\n", tmp_set->usage);
152 else
153 printf("No help for %s\n", tmp_set->name);
155 return NT_STATUS_OK;
158 tmp_set++;
162 printf("No such command: %s\n", argv[1]);
163 return NT_STATUS_OK;
166 /* List all commands */
168 for (tmp = cmd_list; tmp; tmp = tmp->next) {
170 tmp_set = tmp->cmd_set;
172 while(tmp_set->name) {
174 printf("%15s\t\t%s\n", tmp_set->name,
175 tmp_set->description ? tmp_set->description:
176 "");
178 tmp_set++;
182 return NT_STATUS_OK;
185 /* Change the debug level */
186 static NTSTATUS cmd_debuglevel(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, const char **argv)
188 if (argc > 2) {
189 printf("Usage: %s [debuglevel]\n", argv[0]);
190 return NT_STATUS_OK;
193 if (argc == 2) {
194 DEBUGLEVEL = atoi(argv[1]);
197 printf("debuglevel is %d\n", DEBUGLEVEL);
199 return NT_STATUS_OK;
202 static NTSTATUS cmd_freemem(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, const char **argv)
204 /* Cleanup */
205 talloc_destroy(mem_ctx);
206 mem_ctx = NULL;
207 vfs->data = NULL;
208 vfs->data_size = 0;
209 return NT_STATUS_OK;
212 static NTSTATUS cmd_quit(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, const char **argv)
214 /* Cleanup */
215 talloc_destroy(mem_ctx);
217 exit(0);
218 return NT_STATUS_OK; /* NOTREACHED */
221 static struct cmd_set vfstest_commands[] = {
223 { "GENERAL OPTIONS" },
225 { "conf", cmd_conf, "Load smb configuration file", "conf <smb.conf>" },
226 { "help", cmd_help, "Get help on commands", "" },
227 { "?", cmd_help, "Get help on commands", "" },
228 { "debuglevel", cmd_debuglevel, "Set debug level", "" },
229 { "freemem", cmd_freemem, "Free currently allocated buffers", "" },
230 { "exit", cmd_quit, "Exit program", "" },
231 { "quit", cmd_quit, "Exit program", "" },
233 { NULL }
236 static struct cmd_set separator_command[] = {
237 { "---------------", NULL, "----------------------" },
238 { NULL }
242 extern struct cmd_set vfs_commands[];
243 static struct cmd_set *vfstest_command_list[] = {
244 vfstest_commands,
245 vfs_commands,
246 NULL
249 static void add_command_set(struct cmd_set *cmd_set)
251 struct cmd_list *entry;
253 if (!(entry = SMB_MALLOC_P(struct cmd_list))) {
254 DEBUG(0, ("out of memory\n"));
255 return;
258 ZERO_STRUCTP(entry);
260 entry->cmd_set = cmd_set;
261 DLIST_ADD(cmd_list, entry);
264 static NTSTATUS do_cmd(struct vfs_state *vfs, struct cmd_set *cmd_entry, char *cmd)
266 const char *p = cmd;
267 char **argv = NULL;
268 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
269 char *buf;
270 TALLOC_CTX *mem_ctx = talloc_stackframe();
271 int argc = 0, i;
273 /* Count number of arguments first time through the loop then
274 allocate memory and strdup them. */
276 again:
277 while(next_token_talloc(mem_ctx, &p, &buf, " ")) {
278 if (argv) {
279 argv[argc] = SMB_STRDUP(buf);
281 argc++;
284 if (!argv) {
285 /* Create argument list */
287 argv = SMB_MALLOC_ARRAY(char *, argc);
288 memset(argv, 0, sizeof(char *) * argc);
290 if (!argv) {
291 fprintf(stderr, "out of memory\n");
292 result = NT_STATUS_NO_MEMORY;
293 goto done;
296 p = cmd;
297 argc = 0;
299 goto again;
302 /* Call the function */
304 if (cmd_entry->fn) {
305 /* Run command */
306 result = cmd_entry->fn(vfs, mem_ctx, argc, (const char **)argv);
307 } else {
308 fprintf (stderr, "Invalid command\n");
309 goto done;
312 done:
314 /* Cleanup */
316 if (argv) {
317 for (i = 0; i < argc; i++)
318 SAFE_FREE(argv[i]);
320 SAFE_FREE(argv);
323 TALLOC_FREE(mem_ctx);
324 return result;
327 /* Process a command entered at the prompt or as part of -c */
328 static NTSTATUS process_cmd(struct vfs_state *vfs, char *cmd)
330 struct cmd_list *temp_list;
331 bool found = False;
332 char *buf;
333 const char *p = cmd;
334 NTSTATUS result = NT_STATUS_OK;
335 TALLOC_CTX *mem_ctx = talloc_stackframe();
336 int len = 0;
338 if (cmd[strlen(cmd) - 1] == '\n')
339 cmd[strlen(cmd) - 1] = '\0';
341 if (!next_token_talloc(mem_ctx, &p, &buf, " ")) {
342 TALLOC_FREE(mem_ctx);
343 return NT_STATUS_OK;
346 /* Strip the trailing \n if it exists */
347 len = strlen(buf);
348 if (buf[len-1] == '\n')
349 buf[len-1] = '\0';
351 /* Search for matching commands */
353 for (temp_list = cmd_list; temp_list; temp_list = temp_list->next) {
354 struct cmd_set *temp_set = temp_list->cmd_set;
356 while(temp_set->name) {
357 if (strequal(buf, temp_set->name)) {
358 found = True;
359 result = do_cmd(vfs, temp_set, cmd);
361 goto done;
363 temp_set++;
367 done:
368 if (!found && buf[0]) {
369 printf("command not found: %s\n", buf);
370 TALLOC_FREE(mem_ctx);
371 return NT_STATUS_OK;
374 if (!NT_STATUS_IS_OK(result)) {
375 printf("result was %s\n", nt_errstr(result));
378 TALLOC_FREE(mem_ctx);
379 return result;
382 static void process_file(struct vfs_state *pvfs, char *filename) {
383 FILE *file;
384 char command[3 * PATH_MAX];
386 if (*filename == '-') {
387 file = stdin;
388 } else {
389 file = fopen(filename, "r");
390 if (file == NULL) {
391 printf("vfstest: error reading file (%s)!", filename);
392 printf("errno n.%d: %s", errno, strerror(errno));
393 exit(-1);
397 while (fgets(command, 3 * PATH_MAX, file) != NULL) {
398 process_cmd(pvfs, command);
401 if (file != stdin) {
402 fclose(file);
406 void exit_server(const char *reason)
408 DEBUG(3,("Server exit (%s)\n", (reason ? reason : "")));
409 exit(0);
412 void exit_server_cleanly(const char *const reason)
414 exit_server("normal exit");
417 static int server_fd = -1;
418 int last_message = -1;
420 int smbd_server_fd(void)
422 return server_fd;
425 void reload_printers(void)
427 return;
430 /****************************************************************************
431 Reload the services file.
432 **************************************************************************/
434 bool reload_services(bool test)
436 bool ret;
438 if (lp_loaded()) {
439 const char *fname = lp_configfile();
440 if (file_exist(fname) &&
441 !strcsequal(fname, get_dyn_CONFIGFILE())) {
442 set_dyn_CONFIGFILE(fname);
443 test = False;
447 reopen_logs();
449 if (test && !lp_file_list_changed())
450 return(True);
452 lp_killunused(conn_snum_used);
454 ret = lp_load(get_dyn_CONFIGFILE(), False, False, True, True);
456 /* perhaps the config filename is now set */
457 if (!test)
458 reload_services(True);
460 reopen_logs();
462 load_interfaces();
465 if (smbd_server_fd() != -1) {
466 set_socket_options(smbd_server_fd(),"SO_KEEPALIVE");
467 set_socket_options(smbd_server_fd(),
468 lp_socket_options());
472 mangle_reset_cache();
473 reset_stat_cache();
475 /* this forces service parameters to be flushed */
476 set_current_service(NULL,0,True);
478 return (ret);
481 struct event_context *smbd_event_context(void)
483 static struct event_context *ctx;
485 if (!ctx && !(ctx = event_context_init(NULL))) {
486 smb_panic("Could not init smbd event context\n");
488 return ctx;
491 struct messaging_context *smbd_messaging_context(void)
493 static struct messaging_context *ctx;
495 if (!ctx && !(ctx = messaging_init(NULL, server_id_self(),
496 smbd_event_context()))) {
497 smb_panic("Could not init smbd messaging context\n");
499 return ctx;
502 struct memcache *smbd_memcache(void)
504 static struct memcache *cache;
506 if (!cache
507 && !(cache = memcache_init(NULL,
508 lp_max_stat_cache_size()*1024))) {
510 smb_panic("Could not init smbd memcache");
512 return cache;
515 /* Main function */
517 int main(int argc, char *argv[])
519 static char *cmdstr = NULL;
520 struct cmd_set **cmd_set;
521 static struct vfs_state vfs;
522 int i;
523 static char *filename = NULL;
524 TALLOC_CTX *frame = talloc_stackframe();
526 /* make sure the vars that get altered (4th field) are in
527 a fixed location or certain compilers complain */
528 poptContext pc;
529 struct poptOption long_options[] = {
530 POPT_AUTOHELP
531 {"file", 'f', POPT_ARG_STRING, &filename, 0, },
532 {"command", 'c', POPT_ARG_STRING, &cmdstr, 0, "Execute specified list of commands" },
533 POPT_COMMON_SAMBA
534 POPT_TABLEEND
537 load_case_tables();
539 setlinebuf(stdout);
541 pc = poptGetContext("vfstest", argc, (const char **) argv,
542 long_options, 0);
544 while(poptGetNextOpt(pc) != -1);
547 poptFreeContext(pc);
549 /* TODO: check output */
550 reload_services(False);
552 /* the following functions are part of the Samba debugging
553 facilities. See lib/debug.c */
554 setup_logging("vfstest", True);
556 /* Load command lists */
558 cmd_set = vfstest_command_list;
560 while(*cmd_set) {
561 add_command_set(*cmd_set);
562 add_command_set(separator_command);
563 cmd_set++;
566 /* some basic initialization stuff */
567 sec_init();
568 vfs.conn = TALLOC_ZERO_P(NULL, connection_struct);
569 vfs.conn->params = TALLOC_P(vfs.conn, struct share_params);
570 for (i=0; i < 1024; i++)
571 vfs.files[i] = NULL;
573 /* some advanced initiliazation stuff */
574 smbd_vfs_init(vfs.conn);
576 /* Do we have a file input? */
577 if (filename && filename[0]) {
578 process_file(&vfs, filename);
579 return 0;
582 /* Do anything specified with -c */
583 if (cmdstr && cmdstr[0]) {
584 char *cmd;
585 char *p = cmdstr;
587 while((cmd=next_command(frame, &p)) != NULL) {
588 process_cmd(&vfs, cmd);
591 TALLOC_FREE(cmd);
592 return 0;
595 /* Loop around accepting commands */
597 while(1) {
598 char *line = NULL;
600 line = smb_readline("vfstest $> ", NULL, completion_fn);
602 if (line == NULL) {
603 break;
606 if (line[0] != '\n') {
607 process_cmd(&vfs, line);
609 SAFE_FREE(line);
612 TALLOC_FREE(vfs.conn);
613 TALLOC_FREE(frame);
614 return 0;