1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * part of this file is taken from libcli (libcli.sourceforge.net) *
6 * Copyright (C) David Parrish (david@dparrish.com) *
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 2 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, write to the *
20 * Free Software Foundation, Inc., *
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
22 ***************************************************************************/
27 #include "replacements.h"
32 #include "time_support.h"
41 int fast_and_dangerous = 0;
43 void command_print_help_line(command_context_t* context, struct command_s *command, int indent);
45 int handle_sleep_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
46 int handle_time_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
47 int handle_fast_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
49 int build_unique_lengths(command_context_t *context, command_t *commands)
53 /* iterate through all commands */
54 for (c = commands; c; c = c->next)
56 /* find out how many characters are required to uniquely identify a command */
57 for (c->unique_len = 1; c->unique_len <= strlen(c->name); c->unique_len++)
61 /* for every command, see if the current length is enough */
62 for (p = commands; p; p = p->next)
64 /* ignore the command itself */
68 /* compare commands up to the current length */
69 if (strncmp(p->name, c->name, c->unique_len) == 0)
73 /* when none of the commands matched, we've found the minimum length required */
78 /* if the current command has children, build the unique lengths for them */
80 build_unique_lengths(context, c->children);
86 /* Avoid evaluating this each time we add a command. Reduces overhead from O(n^2) to O(n).
87 * Makes a difference on ARM7 types machines and is not observable on GHz machines.
89 static int unique_length_dirty = 1;
91 command_t* register_command(command_context_t *context, command_t *parent, char *name, int (*handler)(struct command_context_s *context, char* name, char** args, int argc), enum command_mode mode, char *help)
94 unique_length_dirty = 1;
96 if (!context || !name)
99 c = malloc(sizeof(command_t));
101 c->name = strdup(name);
104 c->handler = handler;
107 c->help = strdup(help);
113 /* place command in tree */
116 if (parent->children)
118 /* find last child */
119 for (p = parent->children; p && p->next; p = p->next);
125 parent->children = c;
130 if (context->commands)
132 /* find last command */
133 for (p = context->commands; p && p->next; p = p->next);
139 context->commands = c;
146 int unregister_all_commands(command_context_t *context)
150 unique_length_dirty = 1;
156 while(NULL != context->commands)
158 c = context->commands;
160 while(NULL != c->children)
163 c->children = c->children->next;
172 context->commands = context->commands->next;
185 int unregister_command(command_context_t *context, char *name)
187 command_t *c, *p = NULL, *c2;
189 unique_length_dirty = 1;
191 if ((!context) || (!name))
192 return ERROR_INVALID_ARGUMENTS;
195 for (c = context->commands; c; c = c->next)
197 if (strcmp(name, c->name) == 0)
206 context->commands = c->next;
209 /* unregister children */
212 for (c2 = c->children; c2; c2 = c2->next)
228 /* remember the last command for unlinking */
235 int parse_line(char *line, char *words[], int max_words)
239 char *word_start = line;
242 while (nwords < max_words - 1)
244 /* check if we reached
246 * a matching closing quote character " or '
247 * we're inside a word but not a quote, and the current character is whitespace
249 if (!*p || *p == inquote || (word_start && !inquote && isspace(*p)))
251 /* we're inside a word or quote, and reached its end*/
257 /* This will handle extra whitespace within quotes */
258 while (isspace(*word_start)&&(word_start<word_end))
260 while (isspace(*(word_end-1))&&(word_start<word_end))
262 len = word_end - word_start;
267 memcpy(words[nwords] = malloc(len + 1), word_start, len);
268 /* add terminating NUL */
269 words[nwords++][len] = 0;
272 /* we're done parsing the line */
276 /* skip over trailing quote or whitespace*/
277 if (inquote || isspace(*p))
285 else if (*p == '"' || *p == '\'')
287 /* we've reached the beginning of a quote */
293 /* we've reached the beginning of a new word */
297 /* normal character, skip */
305 void command_print_n(command_context_t *context, char *format, ...)
310 va_start(ap, format);
312 string = alloc_vprintf(format, ap);
315 context->output_handler(context, string);
322 void command_print(command_context_t *context, char *format, ...)
327 va_start(ap, format);
329 string = alloc_vprintf(format, ap);
332 strcat(string, "\n"); /* alloc_vprintf guaranteed the buffer to be at least one char longer */
333 context->output_handler(context, string);
340 int find_and_run_command(command_context_t *context, command_t *commands, char *words[], int num_words, int start_word)
343 int retval = ERROR_COMMAND_SYNTAX_ERROR;
345 if (unique_length_dirty)
347 unique_length_dirty = 0;
348 /* update unique lengths */
349 build_unique_lengths(context, context->commands);
352 for (c = commands; c; c = c->next)
354 if (strncasecmp(c->name, words[start_word], c->unique_len))
357 if (strncasecmp(c->name, words[start_word], strlen(words[start_word])))
360 if ((context->mode == COMMAND_CONFIG) || (c->mode == COMMAND_ANY) || (c->mode == context->mode) )
366 command_print(context, "No handler for command");
367 retval = ERROR_COMMAND_SYNTAX_ERROR;
372 int retval = c->handler(context, c->name, words + start_word + 1, num_words - start_word - 1);
373 if (retval == ERROR_COMMAND_SYNTAX_ERROR)
375 command_print(context, "Syntax error:");
376 command_print_help_line(context, c, 0);
377 } else if (retval != ERROR_OK)
379 /* we do not print out an error message because the command *should*
380 * have printed out an error
382 LOG_DEBUG("Command failed with error code %d", retval);
389 if (start_word == num_words - 1)
391 command_print(context, "Incomplete command");
394 return find_and_run_command(context, c->children, words, num_words, start_word + 1);
399 command_print(context, "Command %s not found", words[start_word]);
403 int command_run_line(command_context_t *context, char *line)
406 char *words[128] = {0};
410 if ((!context) || (!line))
411 return ERROR_INVALID_ARGUMENTS;
413 /* skip preceding whitespace */
414 while (isspace(*line))
417 /* empty line, ignore */
421 /* ignore comments */
422 if (*line && (line[0] == '#'))
425 LOG_DEBUG("%s", line);
427 nwords = parse_line(line, words, sizeof(words) / sizeof(words[0]));
430 retval = find_and_run_command(context, context->commands, words, nwords, 0);
432 return ERROR_INVALID_ARGUMENTS;
434 for (i = 0; i < nwords; i++)
440 int command_run_file(command_context_t *context, FILE *file, enum command_mode mode)
442 int retval = ERROR_OK;
443 int old_command_mode;
444 char *buffer=malloc(4096);
447 return ERROR_INVALID_ARGUMENTS;
450 old_command_mode = context->mode;
451 context->mode = mode;
453 while (fgets(buffer, 4096, file))
458 /* stop processing line after a comment (#, !) or a LF, CR were encountered */
459 if ((p = strpbrk(buffer, "#!\r\n")))
462 /* skip over leading whitespace */
464 while (isspace(*cmd))
467 /* empty (all whitespace) line? */
471 /* search the end of the current line, ignore trailing whitespace */
472 for (p = end = cmd; *p; p++)
478 if (strcasecmp(cmd, "quit") == 0)
482 if ((retval = command_run_line(context, cmd)) == ERROR_COMMAND_CLOSE_CONNECTION)
486 context->mode = old_command_mode;
494 void command_print_help_line(command_context_t* context, struct command_s *command, int indent)
497 char *indent_text=malloc(indent + 2);
499 char *help = "no help available";
504 indent_text[0] = ' ';
505 memset(indent_text + 1, '-', indent);
506 indent_text[indent + 1] = 0;
510 help = command->help;
512 snprintf(name_buf, 64, command->name);
515 strncat(name_buf, indent_text, 64);
517 command_print(context, "%20s\t%s", name_buf, help, indent);
519 if (command->children)
521 for (c = command->children; c; c = c->next)
523 command_print_help_line(context, c, indent + 1);
529 int command_print_help_match(command_context_t* context, command_t* c_first, char* name, char** args, int argc)
533 for (c = c_first; c; c = c->next)
537 if (strncasecmp(c->name, args[0], c->unique_len))
540 if (strncasecmp(c->name, args[0], strlen(args[0])))
545 command_print_help_match(context, c->children, name, args + 1, argc - 1);
550 command_print_help_line(context, c, 0);
556 int command_print_help(command_context_t* context, char* name, char** args, int argc)
558 return command_print_help_match(context, context->commands, name, args, argc);
562 void command_set_output_handler(command_context_t* context, int (*output_handler)(struct command_context_s *context, char* line), void *priv)
564 context->output_handler = output_handler;
565 context->output_handler_priv = priv;
568 command_context_t* copy_command_context(command_context_t* context)
570 command_context_t* copy_context = malloc(sizeof(command_context_t));
572 *copy_context = *context;
577 int command_done(command_context_t *context)
585 command_context_t* command_init()
587 command_context_t* context = malloc(sizeof(command_context_t));
589 context->mode = COMMAND_EXEC;
590 context->commands = NULL;
591 context->current_target = 0;
592 context->output_handler = NULL;
593 context->output_handler_priv = NULL;
595 register_command(context, NULL, "help", command_print_help,
596 COMMAND_EXEC, "display this help");
598 register_command(context, NULL, "sleep", handle_sleep_command,
599 COMMAND_ANY, "sleep for <n> milliseconds");
601 register_command(context, NULL, "time", handle_time_command,
602 COMMAND_ANY, "time <cmd + args> - execute <cmd + args> and print time it took");
604 register_command(context, NULL, "fast", handle_fast_command,
605 COMMAND_ANY, "fast <enable/disable> - place at beginning of config files. Sets defaults to fast and dangerous.");
610 /* sleep command sleeps for <n> miliseconds
611 * this is useful in target startup scripts
613 int handle_sleep_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
615 unsigned long duration = 0;
619 duration = strtoul(args[0], NULL, 0);
620 usleep(duration * 1000);
626 int handle_fast_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
629 return ERROR_COMMAND_SYNTAX_ERROR;
631 fast_and_dangerous = strcmp("enable", args[0])==0;
637 int handle_time_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
645 return ERROR_COMMAND_SYNTAX_ERROR;
647 duration_start_measure(&duration);
649 retval = find_and_run_command(cmd_ctx, cmd_ctx->commands, args, argc, 0);
651 duration_stop_measure(&duration, &duration_text);
653 t=duration.duration.tv_sec;
654 t+=((float)duration.duration.tv_usec / 1000000.0);
655 command_print(cmd_ctx, "%s took %fs", args[0], t);