2 Unix SMB/CIFS implementation.
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/>.
27 #include "smbd/smbd.h"
28 #include "popt_common.h"
30 #include "../libcli/smbreadline/smbreadline.h"
32 /* List to hold groups of commands */
33 static struct cmd_list
{
34 struct cmd_list
*prev
, *next
;
35 struct cmd_set
*cmd_set
;
38 /****************************************************************************
39 handle completion of commands for readline
40 ****************************************************************************/
41 static char **completion_fn(const char *text
, int start
, int end
)
43 #define MAX_COMPLETIONS 100
46 struct cmd_list
*commands
= cmd_list
;
51 /* make sure we have a list of valid commands */
55 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
56 if (!matches
) return NULL
;
58 matches
[count
++] = SMB_STRDUP(text
);
59 if (!matches
[0]) return NULL
;
61 while (commands
&& count
< MAX_COMPLETIONS
-1)
63 if (!commands
->cmd_set
)
66 for (i
=0; commands
->cmd_set
[i
].name
; i
++)
68 if ((strncmp(text
, commands
->cmd_set
[i
].name
, strlen(text
)) == 0) &&
69 commands
->cmd_set
[i
].fn
)
71 matches
[count
] = SMB_STRDUP(commands
->cmd_set
[i
].name
);
78 commands
= commands
->next
;
83 SAFE_FREE(matches
[0]);
84 matches
[0] = SMB_STRDUP(matches
[1]);
86 matches
[count
] = NULL
;
90 static char *next_command(TALLOC_CTX
*ctx
, char **cmdstr
)
95 if (!cmdstr
|| !(*cmdstr
))
98 p
= strchr_m(*cmdstr
, ';');
101 command
= talloc_strdup(ctx
, *cmdstr
);
107 /* Load specified configuration file */
108 static NTSTATUS
cmd_conf(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
109 int argc
, const char **argv
)
112 printf("Usage: %s <smb.conf>\n", argv
[0]);
116 if (!lp_load(argv
[1], False
, True
, False
, True
)) {
117 printf("Error loading \"%s\"\n", argv
[1]);
121 printf("\"%s\" successfully loaded\n", argv
[1]);
125 /* Display help on commands */
126 static NTSTATUS
cmd_help(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
,
127 int argc
, const char **argv
)
129 struct cmd_list
*tmp
;
130 struct cmd_set
*tmp_set
;
134 printf("Usage: %s [command]\n", argv
[0]);
138 /* Help on one command */
141 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
143 tmp_set
= tmp
->cmd_set
;
145 while(tmp_set
->name
) {
146 if (strequal(argv
[1], tmp_set
->name
)) {
147 if (tmp_set
->usage
&&
149 printf("%s\n", tmp_set
->usage
);
151 printf("No help for %s\n", tmp_set
->name
);
160 printf("No such command: %s\n", argv
[1]);
164 /* List all commands */
166 for (tmp
= cmd_list
; tmp
; tmp
= tmp
->next
) {
168 tmp_set
= tmp
->cmd_set
;
170 while(tmp_set
->name
) {
172 printf("%15s\t\t%s\n", tmp_set
->name
,
173 tmp_set
->description
? tmp_set
->description
:
183 /* Change the debug level */
184 static NTSTATUS
cmd_debuglevel(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
187 printf("Usage: %s [debuglevel]\n", argv
[0]);
192 lp_set_cmdline("log level", argv
[1]);
195 printf("debuglevel is %d\n", DEBUGLEVEL
);
200 static NTSTATUS
cmd_freemem(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
203 talloc_destroy(mem_ctx
);
210 static NTSTATUS
cmd_quit(struct vfs_state
*vfs
, TALLOC_CTX
*mem_ctx
, int argc
, const char **argv
)
213 talloc_destroy(mem_ctx
);
216 return NT_STATUS_OK
; /* NOTREACHED */
219 static struct cmd_set vfstest_commands
[] = {
221 { "GENERAL OPTIONS" },
223 { "conf", cmd_conf
, "Load smb configuration file", "conf <smb.conf>" },
224 { "help", cmd_help
, "Get help on commands", "" },
225 { "?", cmd_help
, "Get help on commands", "" },
226 { "debuglevel", cmd_debuglevel
, "Set debug level", "" },
227 { "freemem", cmd_freemem
, "Free currently allocated buffers", "" },
228 { "exit", cmd_quit
, "Exit program", "" },
229 { "quit", cmd_quit
, "Exit program", "" },
234 static struct cmd_set separator_command
[] = {
235 { "---------------", NULL
, "----------------------" },
240 extern struct cmd_set vfs_commands
[];
241 static struct cmd_set
*vfstest_command_list
[] = {
247 static void add_command_set(struct cmd_set
*cmd_set
)
249 struct cmd_list
*entry
;
251 if (!(entry
= SMB_MALLOC_P(struct cmd_list
))) {
252 DEBUG(0, ("out of memory\n"));
258 entry
->cmd_set
= cmd_set
;
259 DLIST_ADD(cmd_list
, entry
);
262 static NTSTATUS
do_cmd(struct vfs_state
*vfs
, struct cmd_set
*cmd_entry
, char *cmd
)
266 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
268 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
271 /* Count number of arguments first time through the loop then
272 allocate memory and strdup them. */
275 while(next_token_talloc(mem_ctx
, &p
, &buf
, " ")) {
277 argv
[argc
] = SMB_STRDUP(buf
);
283 /* Create argument list */
285 argv
= SMB_MALLOC_ARRAY(char *, argc
);
286 memset(argv
, 0, sizeof(char *) * argc
);
289 fprintf(stderr
, "out of memory\n");
290 result
= NT_STATUS_NO_MEMORY
;
300 /* Call the function */
304 result
= cmd_entry
->fn(vfs
, mem_ctx
, argc
, (const char **)argv
);
306 fprintf (stderr
, "Invalid command\n");
315 for (i
= 0; i
< argc
; i
++)
321 TALLOC_FREE(mem_ctx
);
325 /* Process a command entered at the prompt or as part of -c */
326 static NTSTATUS
process_cmd(struct vfs_state
*vfs
, char *cmd
)
328 struct cmd_list
*temp_list
;
332 NTSTATUS result
= NT_STATUS_OK
;
333 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
336 if (cmd
[strlen(cmd
) - 1] == '\n')
337 cmd
[strlen(cmd
) - 1] = '\0';
339 if (!next_token_talloc(mem_ctx
, &p
, &buf
, " ")) {
340 TALLOC_FREE(mem_ctx
);
344 /* Strip the trailing \n if it exists */
346 if (buf
[len
-1] == '\n')
349 /* Search for matching commands */
351 for (temp_list
= cmd_list
; temp_list
; temp_list
= temp_list
->next
) {
352 struct cmd_set
*temp_set
= temp_list
->cmd_set
;
354 while(temp_set
->name
) {
355 if (strequal(buf
, temp_set
->name
)) {
357 result
= do_cmd(vfs
, temp_set
, cmd
);
366 if (!found
&& buf
[0]) {
367 printf("command not found: %s\n", buf
);
368 TALLOC_FREE(mem_ctx
);
372 if (!NT_STATUS_IS_OK(result
)) {
373 printf("result was %s\n", nt_errstr(result
));
376 TALLOC_FREE(mem_ctx
);
380 static void process_file(struct vfs_state
*pvfs
, char *filename
) {
382 char command
[3 * PATH_MAX
];
384 if (*filename
== '-') {
387 file
= fopen(filename
, "r");
389 printf("vfstest: error reading file (%s)!", filename
);
390 printf("errno n.%d: %s", errno
, strerror(errno
));
395 while (fgets(command
, 3 * PATH_MAX
, file
) != NULL
) {
396 process_cmd(pvfs
, command
);
404 void exit_server(const char *reason
)
406 DEBUG(3,("Server exit (%s)\n", (reason
? reason
: "")));
410 void exit_server_cleanly(const char *const reason
)
412 exit_server("normal exit");
415 int last_message
= -1;
419 int main(int argc
, char *argv
[])
421 static char *cmdstr
= NULL
;
422 struct cmd_set
**cmd_set
;
423 static struct vfs_state vfs
;
425 static char *filename
= NULL
;
426 TALLOC_CTX
*frame
= talloc_stackframe();
428 /* make sure the vars that get altered (4th field) are in
429 a fixed location or certain compilers complain */
431 struct poptOption long_options
[] = {
433 {"file", 'f', POPT_ARG_STRING
, &filename
, 0, },
434 {"command", 'c', POPT_ARG_STRING
, &cmdstr
, 0, "Execute specified list of commands" },
443 pc
= poptGetContext("vfstest", argc
, (const char **) argv
,
446 while(poptGetNextOpt(pc
) != -1);
451 lp_load_initial_only(get_dyn_CONFIGFILE());
453 /* TODO: check output */
454 reload_services(smbd_messaging_context(), -1, False
);
456 /* the following functions are part of the Samba debugging
457 facilities. See lib/debug.c */
458 setup_logging("vfstest", DEBUG_STDOUT
);
460 /* Load command lists */
462 cmd_set
= vfstest_command_list
;
465 add_command_set(*cmd_set
);
466 add_command_set(separator_command
);
470 /* some basic initialization stuff */
472 vfs
.conn
= talloc_zero(NULL
, connection_struct
);
473 vfs
.conn
->params
= talloc(vfs
.conn
, struct share_params
);
474 for (i
=0; i
< 1024; i
++)
477 /* some advanced initiliazation stuff */
478 smbd_vfs_init(vfs
.conn
);
480 /* Do we have a file input? */
481 if (filename
&& filename
[0]) {
482 process_file(&vfs
, filename
);
486 /* Do anything specified with -c */
487 if (cmdstr
&& cmdstr
[0]) {
491 while((cmd
=next_command(frame
, &p
)) != NULL
) {
492 process_cmd(&vfs
, cmd
);
499 /* Loop around accepting commands */
504 line
= smb_readline("vfstest $> ", NULL
, completion_fn
);
510 if (line
[0] != '\n') {
511 process_cmd(&vfs
, line
);
516 TALLOC_FREE(vfs
.conn
);