1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * Copyright (C) 2008, Duane Ellis *
9 * openocd@duaneeellis.com *
11 * part of this file is taken from libcli (libcli.sourceforge.net) *
12 * Copyright (C) David Parrish (david@dparrish.com) *
14 * This program is free software; you can redistribute it and/or modify *
15 * it under the terms of the GNU General Public License as published by *
16 * the Free Software Foundation; either version 2 of the License, or *
17 * (at your option) any later version. *
19 * This program is distributed in the hope that it will be useful, *
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
22 * GNU General Public License for more details. *
24 * You should have received a copy of the GNU General Public License *
25 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
26 ***************************************************************************/
32 /* see Embedded-HOWTO.txt in Jim Tcl project hosted on BerliOS*/
35 /* @todo the inclusion of target.h here is a layering violation */
36 #include <jtag/jtag.h>
37 #include <target/target.h>
39 #include "configuration.h"
41 #include "time_support.h"
42 #include "jim-eventloop.h"
44 /* nice short description of source file */
45 #define __THIS__FILE__ "command.c"
47 static int run_command(struct command_context
*context
,
48 struct command
*c
, const char *words
[], unsigned num_words
);
50 struct log_capture_state
{
55 static void tcl_output(void *privData
, const char *file
, unsigned line
,
56 const char *function
, const char *string
)
58 struct log_capture_state
*state
= privData
;
59 Jim_AppendString(state
->interp
, state
->output
, string
, strlen(string
));
62 static struct log_capture_state
*command_log_capture_start(Jim_Interp
*interp
)
64 /* capture log output and return it. A garbage collect can
65 * happen, so we need a reference count to this object */
66 Jim_Obj
*tclOutput
= Jim_NewStringObj(interp
, "", 0);
67 if (NULL
== tclOutput
)
70 struct log_capture_state
*state
= malloc(sizeof(*state
));
74 state
->interp
= interp
;
75 Jim_IncrRefCount(tclOutput
);
76 state
->output
= tclOutput
;
78 log_add_callback(tcl_output
, state
);
83 /* Classic openocd commands provide progress output which we
84 * will capture and return as a Tcl return value.
86 * However, if a non-openocd command has been invoked, then it
87 * makes sense to return the tcl return value from that command.
89 * The tcl return value is empty for openocd commands that provide
92 * Therefore we set the tcl return value only if we actually
95 static void command_log_capture_finish(struct log_capture_state
*state
)
100 log_remove_callback(tcl_output
, state
);
103 Jim_GetString(state
->output
, &length
);
106 Jim_SetResult(state
->interp
, state
->output
);
108 /* No output captured, use tcl return value (which could
111 Jim_DecrRefCount(state
->interp
, state
->output
);
116 static int command_retval_set(Jim_Interp
*interp
, int retval
)
118 int *return_retval
= Jim_GetAssocData(interp
, "retval");
119 if (return_retval
!= NULL
)
120 *return_retval
= retval
;
122 return (retval
== ERROR_OK
) ? JIM_OK
: retval
;
125 extern struct command_context
*global_cmd_ctx
;
127 /* dump a single line to the log for the command.
128 * Do nothing in case we are not at debug level 3 */
129 void script_debug(Jim_Interp
*interp
, const char *name
,
130 unsigned argc
, Jim_Obj
* const *argv
)
132 if (debug_level
< LOG_LVL_DEBUG
)
135 char *dbg
= alloc_printf("command - %s", name
);
136 for (unsigned i
= 0; i
< argc
; i
++) {
138 const char *w
= Jim_GetString(argv
[i
], &len
);
139 char *t
= alloc_printf("%s %s", dbg
, w
);
143 LOG_DEBUG("%s", dbg
);
147 static void script_command_args_free(char **words
, unsigned nwords
)
149 for (unsigned i
= 0; i
< nwords
; i
++)
154 static char **script_command_args_alloc(
155 unsigned argc
, Jim_Obj
* const *argv
, unsigned *nwords
)
157 char **words
= malloc(argc
* sizeof(char *));
162 for (i
= 0; i
< argc
; i
++) {
164 const char *w
= Jim_GetString(argv
[i
], &len
);
165 words
[i
] = strdup(w
);
166 if (words
[i
] == NULL
) {
167 script_command_args_free(words
, i
);
175 struct command_context
*current_command_context(Jim_Interp
*interp
)
177 /* grab the command context from the associated data */
178 struct command_context
*cmd_ctx
= Jim_GetAssocData(interp
, "context");
179 if (NULL
== cmd_ctx
) {
180 /* Tcl can invoke commands directly instead of via command_run_line(). This would
181 * happen when the Jim Tcl interpreter is provided by eCos or if we are running
182 * commands in a startup script.
184 * A telnet or gdb server would provide a non-default command context to
185 * handle piping of error output, have a separate current target, etc.
187 cmd_ctx
= global_cmd_ctx
;
192 static int script_command_run(Jim_Interp
*interp
,
193 int argc
, Jim_Obj
* const *argv
, struct command
*c
, bool capture
)
195 target_call_timer_callbacks_now();
196 LOG_USER_N("%s", ""); /* Keep GDB connection alive*/
199 char **words
= script_command_args_alloc(argc
, argv
, &nwords
);
203 struct log_capture_state
*state
= NULL
;
205 state
= command_log_capture_start(interp
);
207 struct command_context
*cmd_ctx
= current_command_context(interp
);
208 int retval
= run_command(cmd_ctx
, c
, (const char **)words
, nwords
);
210 command_log_capture_finish(state
);
212 script_command_args_free(words
, nwords
);
213 return command_retval_set(interp
, retval
);
216 static int script_command(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
218 /* the private data is stashed in the interp structure */
220 struct command
*c
= interp
->cmdPrivData
;
222 script_debug(interp
, c
->name
, argc
, argv
);
223 return script_command_run(interp
, argc
, argv
, c
, true);
226 static struct command
*command_root(struct command
*c
)
228 while (NULL
!= c
->parent
)
234 * Find a command by name from a list of commands.
235 * @returns Returns the named command if it exists in the list.
236 * Returns NULL otherwise.
238 static struct command
*command_find(struct command
*head
, const char *name
)
240 for (struct command
*cc
= head
; cc
; cc
= cc
->next
) {
241 if (strcmp(cc
->name
, name
) == 0)
247 struct command
*command_find_in_context(struct command_context
*cmd_ctx
,
250 return command_find(cmd_ctx
->commands
, name
);
252 struct command
*command_find_in_parent(struct command
*parent
,
255 return command_find(parent
->children
, name
);
259 * Add the command into the linked list, sorted by name.
260 * @param head Address to head of command list pointer, which may be
261 * updated if @c c gets inserted at the beginning of the list.
262 * @param c The command to add to the list pointed to by @c head.
264 static void command_add_child(struct command
**head
, struct command
*c
)
272 while ((*head
)->next
&& (strcmp(c
->name
, (*head
)->name
) > 0))
273 head
= &(*head
)->next
;
275 if (strcmp(c
->name
, (*head
)->name
) > 0) {
276 c
->next
= (*head
)->next
;
284 static struct command
**command_list_for_parent(
285 struct command_context
*cmd_ctx
, struct command
*parent
)
287 return parent ?
&parent
->children
: &cmd_ctx
->commands
;
290 static void command_free(struct command
*c
)
292 /** @todo if command has a handler, unregister its jim command! */
294 while (NULL
!= c
->children
) {
295 struct command
*tmp
= c
->children
;
296 c
->children
= tmp
->next
;
306 static struct command
*command_new(struct command_context
*cmd_ctx
,
307 struct command
*parent
, const struct command_registration
*cr
)
312 * If it is a non-jim command with no .usage specified,
315 * strlen(.usage) == 0 means that the command takes no
318 if ((cr
->jim_handler
== NULL
) && (cr
->usage
== NULL
)) {
319 LOG_DEBUG("BUG: command '%s%s%s' does not have the "
320 "'.usage' field filled out",
321 parent
&& parent
->name ? parent
->name
: "",
322 parent
&& parent
->name ?
" " : "",
326 struct command
*c
= calloc(1, sizeof(struct command
));
330 c
->name
= strdup(cr
->name
);
332 c
->help
= strdup(cr
->help
);
334 c
->usage
= strdup(cr
->usage
);
336 if (!c
->name
|| (cr
->help
&& !c
->help
) || (cr
->usage
&& !c
->usage
))
337 goto command_new_error
;
340 c
->handler
= cr
->handler
;
341 c
->jim_handler
= cr
->jim_handler
;
342 c
->jim_handler_data
= cr
->jim_handler_data
;
345 command_add_child(command_list_for_parent(cmd_ctx
, parent
), c
);
354 static int command_unknown(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
);
356 static int register_command_handler(struct command_context
*cmd_ctx
,
359 Jim_Interp
*interp
= cmd_ctx
->interp
;
360 char *ocd_name
= alloc_printf("ocd_%s", c
->name
);
361 if (NULL
== ocd_name
)
364 LOG_DEBUG("registering '%s'...", ocd_name
);
366 Jim_CmdProc
*func
= c
->handler ?
&script_command
: &command_unknown
;
367 int retval
= Jim_CreateCommand(interp
, ocd_name
, func
, c
, NULL
);
369 if (JIM_OK
!= retval
)
372 /* we now need to add an overrideable proc */
373 char *override_name
= alloc_printf(
374 "proc %s {args} {eval ocd_bouncer %s $args}",
376 if (NULL
== override_name
)
379 retval
= Jim_Eval_Named(interp
, override_name
, 0, 0);
385 struct command
*register_command(struct command_context
*context
,
386 struct command
*parent
, const struct command_registration
*cr
)
388 if (!context
|| !cr
->name
)
391 const char *name
= cr
->name
;
392 struct command
**head
= command_list_for_parent(context
, parent
);
393 struct command
*c
= command_find(*head
, name
);
395 /* TODO: originally we treated attempting to register a cmd twice as an error
396 * Sometimes we need this behaviour, such as with flash banks.
397 * http://www.mail-archive.com/openocd-development@lists.berlios.de/msg11152.html */
398 LOG_DEBUG("command '%s' is already registered in '%s' context",
399 name
, parent ? parent
->name
: "<global>");
403 c
= command_new(context
, parent
, cr
);
407 int retval
= ERROR_OK
;
408 if (NULL
!= cr
->jim_handler
&& NULL
== parent
) {
409 retval
= Jim_CreateCommand(context
->interp
, cr
->name
,
410 cr
->jim_handler
, cr
->jim_handler_data
, NULL
);
411 } else if (NULL
!= cr
->handler
|| NULL
!= parent
)
412 retval
= register_command_handler(context
, command_root(c
));
414 if (ERROR_OK
!= retval
) {
415 unregister_command(context
, parent
, name
);
421 int register_commands(struct command_context
*cmd_ctx
, struct command
*parent
,
422 const struct command_registration
*cmds
)
424 int retval
= ERROR_OK
;
426 for (i
= 0; cmds
[i
].name
|| cmds
[i
].chain
; i
++) {
427 const struct command_registration
*cr
= cmds
+ i
;
429 struct command
*c
= NULL
;
430 if (NULL
!= cr
->name
) {
431 c
= register_command(cmd_ctx
, parent
, cr
);
437 if (NULL
!= cr
->chain
) {
438 struct command
*p
= c ?
: parent
;
439 retval
= register_commands(cmd_ctx
, p
, cr
->chain
);
440 if (ERROR_OK
!= retval
)
444 if (ERROR_OK
!= retval
) {
445 for (unsigned j
= 0; j
< i
; j
++)
446 unregister_command(cmd_ctx
, parent
, cmds
[j
].name
);
451 int unregister_all_commands(struct command_context
*context
,
452 struct command
*parent
)
457 struct command
**head
= command_list_for_parent(context
, parent
);
458 while (NULL
!= *head
) {
459 struct command
*tmp
= *head
;
467 int unregister_command(struct command_context
*context
,
468 struct command
*parent
, const char *name
)
470 if ((!context
) || (!name
))
471 return ERROR_COMMAND_SYNTAX_ERROR
;
473 struct command
*p
= NULL
;
474 struct command
**head
= command_list_for_parent(context
, parent
);
475 for (struct command
*c
= *head
; NULL
!= c
; p
= c
, c
= c
->next
) {
476 if (strcmp(name
, c
->name
) != 0)
491 void command_set_handler_data(struct command
*c
, void *p
)
493 if (NULL
!= c
->handler
|| NULL
!= c
->jim_handler
)
494 c
->jim_handler_data
= p
;
495 for (struct command
*cc
= c
->children
; NULL
!= cc
; cc
= cc
->next
)
496 command_set_handler_data(cc
, p
);
499 void command_output_text(struct command_context
*context
, const char *data
)
501 if (context
&& context
->output_handler
&& data
)
502 context
->output_handler(context
, data
);
505 void command_print_sameline(struct command_context
*context
, const char *format
, ...)
510 va_start(ap
, format
);
512 string
= alloc_vprintf(format
, ap
);
513 if (string
!= NULL
) {
514 /* we want this collected in the log + we also want to pick it up as a tcl return
517 * The latter bit isn't precisely neat, but will do for now.
519 LOG_USER_N("%s", string
);
520 /* We already printed it above
521 * command_output_text(context, string); */
528 void command_print(struct command_context
*context
, const char *format
, ...)
533 va_start(ap
, format
);
535 string
= alloc_vprintf(format
, ap
);
536 if (string
!= NULL
) {
537 strcat(string
, "\n"); /* alloc_vprintf guaranteed the buffer to be at least one
539 /* we want this collected in the log + we also want to pick it up as a tcl return
542 * The latter bit isn't precisely neat, but will do for now.
544 LOG_USER_N("%s", string
);
545 /* We already printed it above
546 * command_output_text(context, string); */
553 static char *__command_name(struct command
*c
, char delim
, unsigned extra
)
556 unsigned len
= strlen(c
->name
);
557 if (NULL
== c
->parent
) {
558 /* allocate enough for the name, child names, and '\0' */
559 name
= malloc(len
+ extra
+ 1);
561 LOG_ERROR("Out of memory");
564 strcpy(name
, c
->name
);
566 /* parent's extra must include both the space and name */
567 name
= __command_name(c
->parent
, delim
, 1 + len
+ extra
);
568 char dstr
[2] = { delim
, 0 };
570 strcat(name
, c
->name
);
575 char *command_name(struct command
*c
, char delim
)
577 return __command_name(c
, delim
, 0);
580 static bool command_can_run(struct command_context
*cmd_ctx
, struct command
*c
)
582 if (c
->mode
== COMMAND_ANY
|| c
->mode
== cmd_ctx
->mode
)
585 /* Many commands may be run only before/after 'init' */
594 /* handle the impossible with humor; it guarantees a bug report! */
596 when
= "if Cthulhu is summoned by";
599 char *full_name
= command_name(c
, ' ');
600 LOG_ERROR("The '%s' command must be used %s 'init'.",
601 full_name ? full_name
: c
->name
, when
);
606 static int run_command(struct command_context
*context
,
607 struct command
*c
, const char *words
[], unsigned num_words
)
609 if (!command_can_run(context
, c
))
612 struct command_invocation cmd
= {
616 .argc
= num_words
- 1,
619 /* Black magic of overridden current target:
620 * If the command we are going to handle has a target prefix,
621 * override the current target temporarily for the time
622 * of processing the command.
623 * current_target_override is used also for event handlers
624 * therefore we prevent touching it if command has no prefix.
625 * Previous override is saved and restored back to ensure
626 * correct work when run_command() is re-entered. */
627 struct target
*saved_target_override
= context
->current_target_override
;
628 if (c
->jim_handler_data
)
629 context
->current_target_override
= c
->jim_handler_data
;
631 int retval
= c
->handler(&cmd
);
633 if (c
->jim_handler_data
)
634 context
->current_target_override
= saved_target_override
;
636 if (retval
== ERROR_COMMAND_SYNTAX_ERROR
) {
637 /* Print help for command */
638 char *full_name
= command_name(c
, ' ');
639 if (NULL
!= full_name
) {
640 command_run_linef(context
, "usage %s", full_name
);
643 } else if (retval
== ERROR_COMMAND_CLOSE_CONNECTION
) {
644 /* just fall through for a shutdown request */
645 } else if (retval
!= ERROR_OK
) {
646 /* we do not print out an error message because the command *should*
647 * have printed out an error
649 char *full_name
= command_name(c
, ' ');
650 LOG_DEBUG("Command '%s' failed with error code %d",
651 full_name ? full_name
: c
->name
, retval
);
658 int command_run_line(struct command_context
*context
, char *line
)
660 /* all the parent commands have been registered with the interpreter
661 * so, can just evaluate the line as a script and check for
664 /* run the line thru a script engine */
665 int retval
= ERROR_FAIL
;
667 /* Beware! This code needs to be reentrant. It is also possible
668 * for OpenOCD commands to be invoked directly from Tcl. This would
669 * happen when the Jim Tcl interpreter is provided by eCos for
672 context
->current_target_override
= NULL
;
674 Jim_Interp
*interp
= context
->interp
;
675 Jim_DeleteAssocData(interp
, "context");
676 retcode
= Jim_SetAssocData(interp
, "context", NULL
, context
);
677 if (retcode
== JIM_OK
) {
678 /* associated the return value */
679 Jim_DeleteAssocData(interp
, "retval");
680 retcode
= Jim_SetAssocData(interp
, "retval", NULL
, &retval
);
681 if (retcode
== JIM_OK
) {
682 retcode
= Jim_Eval_Named(interp
, line
, 0, 0);
684 Jim_DeleteAssocData(interp
, "retval");
686 Jim_DeleteAssocData(interp
, "context");
688 if (retcode
== JIM_OK
) {
692 result
= Jim_GetString(Jim_GetResult(interp
), &reslen
);
696 for (i
= 0; i
< reslen
; i
+= 256) {
701 strncpy(buff
, result
+ i
, chunk
);
703 LOG_USER_N("%s", buff
);
708 } else if (retcode
== JIM_EXIT
) {
710 * exit(Jim_GetExitCode(interp)); */
711 } else if (retcode
== ERROR_COMMAND_CLOSE_CONNECTION
) {
714 Jim_MakeErrorMessage(interp
);
715 LOG_USER("%s", Jim_GetString(Jim_GetResult(interp
), NULL
));
717 if (retval
== ERROR_OK
) {
718 /* It wasn't a low level OpenOCD command that failed */
727 int command_run_linef(struct command_context
*context
, const char *format
, ...)
729 int retval
= ERROR_FAIL
;
732 va_start(ap
, format
);
733 string
= alloc_vprintf(format
, ap
);
734 if (string
!= NULL
) {
735 retval
= command_run_line(context
, string
);
742 void command_set_output_handler(struct command_context
*context
,
743 command_output_handler_t output_handler
, void *priv
)
745 context
->output_handler
= output_handler
;
746 context
->output_handler_priv
= priv
;
749 struct command_context
*copy_command_context(struct command_context
*context
)
751 struct command_context
*copy_context
= malloc(sizeof(struct command_context
));
753 *copy_context
= *context
;
758 void command_done(struct command_context
*cmd_ctx
)
766 /* find full path to file */
767 static int jim_find(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
771 const char *file
= Jim_GetString(argv
[1], NULL
);
772 char *full_path
= find_file(file
);
773 if (full_path
== NULL
)
775 Jim_Obj
*result
= Jim_NewStringObj(interp
, full_path
, strlen(full_path
));
778 Jim_SetResult(interp
, result
);
782 COMMAND_HANDLER(jim_echo
)
784 if (CMD_ARGC
== 2 && !strcmp(CMD_ARGV
[0], "-n")) {
785 LOG_USER_N("%s", CMD_ARGV
[1]);
790 LOG_USER("%s", CMD_ARGV
[0]);
794 /* Capture progress output and return as tcl return value. If the
795 * progress output was empty, return tcl return value.
797 static int jim_capture(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
802 struct log_capture_state
*state
= command_log_capture_start(interp
);
804 /* disable polling during capture. This avoids capturing output
807 * This is necessary in order to avoid accidentally getting a non-empty
808 * string for tcl fn's.
810 bool save_poll
= jtag_poll_get_enabled();
812 jtag_poll_set_enabled(false);
814 const char *str
= Jim_GetString(argv
[1], NULL
);
815 int retcode
= Jim_Eval_Named(interp
, str
, __THIS__FILE__
, __LINE__
);
817 jtag_poll_set_enabled(save_poll
);
819 command_log_capture_finish(state
);
824 static COMMAND_HELPER(command_help_find
, struct command
*head
,
825 struct command
**out
)
828 return ERROR_COMMAND_SYNTAX_ERROR
;
829 *out
= command_find(head
, CMD_ARGV
[0]);
830 if (NULL
== *out
&& strncmp(CMD_ARGV
[0], "ocd_", 4) == 0)
831 *out
= command_find(head
, CMD_ARGV
[0] + 4);
833 return ERROR_COMMAND_SYNTAX_ERROR
;
837 return CALL_COMMAND_HANDLER(command_help_find
, (*out
)->children
, out
);
840 static COMMAND_HELPER(command_help_show
, struct command
*c
, unsigned n
,
841 bool show_help
, const char *cmd_match
);
843 static COMMAND_HELPER(command_help_show_list
, struct command
*head
, unsigned n
,
844 bool show_help
, const char *cmd_match
)
846 for (struct command
*c
= head
; NULL
!= c
; c
= c
->next
)
847 CALL_COMMAND_HANDLER(command_help_show
, c
, n
, show_help
, cmd_match
);
851 #define HELP_LINE_WIDTH(_n) (int)(76 - (2 * _n))
853 static void command_help_show_indent(unsigned n
)
855 for (unsigned i
= 0; i
< n
; i
++)
858 static void command_help_show_wrap(const char *str
, unsigned n
, unsigned n2
)
860 const char *cp
= str
, *last
= str
;
862 const char *next
= last
;
867 } while (*next
!= ' ' && *next
!= '\t' && *next
!= '\0');
868 } while ((next
- last
< HELP_LINE_WIDTH(n
)) && *next
!= '\0');
869 if (next
- last
< HELP_LINE_WIDTH(n
))
871 command_help_show_indent(n
);
872 LOG_USER("%.*s", (int)(cp
- last
), last
);
878 static COMMAND_HELPER(command_help_show
, struct command
*c
, unsigned n
,
879 bool show_help
, const char *cmd_match
)
881 char *cmd_name
= command_name(c
, ' ');
882 if (NULL
== cmd_name
)
885 /* If the match string occurs anywhere, we print out
886 * stuff for this command. */
887 bool is_match
= (strstr(cmd_name
, cmd_match
) != NULL
) ||
888 ((c
->usage
!= NULL
) && (strstr(c
->usage
, cmd_match
) != NULL
)) ||
889 ((c
->help
!= NULL
) && (strstr(c
->help
, cmd_match
) != NULL
));
892 command_help_show_indent(n
);
893 LOG_USER_N("%s", cmd_name
);
898 if (c
->usage
&& strlen(c
->usage
) > 0) {
900 command_help_show_wrap(c
->usage
, 0, n
+ 5);
905 if (is_match
&& show_help
) {
908 /* Normal commands are runtime-only; highlight exceptions */
909 if (c
->mode
!= COMMAND_EXEC
) {
910 const char *stage_msg
= "";
914 stage_msg
= " (configuration command)";
917 stage_msg
= " (command valid any time)";
920 stage_msg
= " (?mode error?)";
923 msg
= alloc_printf("%s%s", c
->help ?
: "", stage_msg
);
925 msg
= alloc_printf("%s", c
->help ?
: "");
928 command_help_show_wrap(msg
, n
+ 3, n
+ 3);
935 LOG_ERROR("command recursion exceeded");
939 return CALL_COMMAND_HANDLER(command_help_show_list
,
940 c
->children
, n
, show_help
, cmd_match
);
943 COMMAND_HANDLER(handle_help_command
)
945 bool full
= strcmp(CMD_NAME
, "help") == 0;
947 struct command
*c
= CMD_CTX
->commands
;
948 char *cmd_match
= NULL
;
952 else if (CMD_ARGC
>= 1) {
955 for (i
= 0; i
< CMD_ARGC
; ++i
) {
956 if (NULL
!= cmd_match
) {
957 char *prev
= cmd_match
;
959 cmd_match
= alloc_printf("%s %s", cmd_match
, CMD_ARGV
[i
]);
961 if (NULL
== cmd_match
) {
962 LOG_ERROR("unable to build search string");
966 cmd_match
= alloc_printf("%s", CMD_ARGV
[i
]);
967 if (NULL
== cmd_match
) {
968 LOG_ERROR("unable to build search string");
974 return ERROR_COMMAND_SYNTAX_ERROR
;
976 retval
= CALL_COMMAND_HANDLER(command_help_show_list
,
977 c
, 0, full
, cmd_match
);
984 static int command_unknown_find(unsigned argc
, Jim_Obj
*const *argv
,
985 struct command
*head
, struct command
**out
, bool top_level
)
989 const char *cmd_name
= Jim_GetString(argv
[0], NULL
);
990 struct command
*c
= command_find(head
, cmd_name
);
991 if (NULL
== c
&& top_level
&& strncmp(cmd_name
, "ocd_", 4) == 0)
992 c
= command_find(head
, cmd_name
+ 4);
996 return command_unknown_find(--argc
, ++argv
, (*out
)->children
, out
, false);
999 static int command_unknown(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
1001 const char *cmd_name
= Jim_GetString(argv
[0], NULL
);
1002 if (strcmp(cmd_name
, "unknown") == 0) {
1008 script_debug(interp
, cmd_name
, argc
, argv
);
1010 struct command_context
*cmd_ctx
= current_command_context(interp
);
1011 struct command
*c
= cmd_ctx
->commands
;
1012 int remaining
= command_unknown_find(argc
, argv
, c
, &c
, true);
1013 /* if nothing could be consumed, then it's really an unknown command */
1014 if (remaining
== argc
) {
1015 const char *cmd
= Jim_GetString(argv
[0], NULL
);
1016 LOG_ERROR("Unknown command:\n %s", cmd
);
1021 Jim_Obj
*const *start
;
1023 if (c
->handler
|| c
->jim_handler
) {
1024 /* include the command name in the list */
1025 count
= remaining
+ 1;
1026 start
= argv
+ (argc
- remaining
- 1);
1028 c
= command_find(cmd_ctx
->commands
, "usage");
1030 LOG_ERROR("unknown command, but usage is missing too");
1033 count
= argc
- remaining
;
1037 /* pass the command through to the intended handler */
1038 if (c
->jim_handler
) {
1039 if (!command_can_run(cmd_ctx
, c
))
1042 interp
->cmdPrivData
= c
->jim_handler_data
;
1043 return (*c
->jim_handler
)(interp
, count
, start
);
1046 return script_command_run(interp
, count
, start
, c
, found
);
1049 static int jim_command_mode(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
1051 struct command_context
*cmd_ctx
= current_command_context(interp
);
1052 enum command_mode mode
;
1055 struct command
*c
= cmd_ctx
->commands
;
1056 int remaining
= command_unknown_find(argc
- 1, argv
+ 1, c
, &c
, true);
1057 /* if nothing could be consumed, then it's an unknown command */
1058 if (remaining
== argc
- 1) {
1059 Jim_SetResultString(interp
, "unknown", -1);
1064 mode
= cmd_ctx
->mode
;
1066 const char *mode_str
;
1071 case COMMAND_CONFIG
:
1072 mode_str
= "config";
1078 mode_str
= "unknown";
1081 Jim_SetResultString(interp
, mode_str
, -1);
1085 static int jim_command_type(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
1090 struct command_context
*cmd_ctx
= current_command_context(interp
);
1091 struct command
*c
= cmd_ctx
->commands
;
1092 int remaining
= command_unknown_find(argc
- 1, argv
+ 1, c
, &c
, true);
1093 /* if nothing could be consumed, then it's an unknown command */
1094 if (remaining
== argc
- 1) {
1095 Jim_SetResultString(interp
, "unknown", -1);
1100 Jim_SetResultString(interp
, "native", -1);
1101 else if (c
->handler
)
1102 Jim_SetResultString(interp
, "simple", -1);
1103 else if (remaining
== 0)
1104 Jim_SetResultString(interp
, "group", -1);
1106 Jim_SetResultString(interp
, "unknown", -1);
1111 int help_add_command(struct command_context
*cmd_ctx
, struct command
*parent
,
1112 const char *cmd_name
, const char *help_text
, const char *usage
)
1114 struct command
**head
= command_list_for_parent(cmd_ctx
, parent
);
1115 struct command
*nc
= command_find(*head
, cmd_name
);
1117 /* add a new command with help text */
1118 struct command_registration cr
= {
1120 .mode
= COMMAND_ANY
,
1122 .usage
= usage ?
: "",
1124 nc
= register_command(cmd_ctx
, parent
, &cr
);
1126 LOG_ERROR("failed to add '%s' help text", cmd_name
);
1129 LOG_DEBUG("added '%s' help text", cmd_name
);
1133 bool replaced
= false;
1138 nc
->help
= strdup(help_text
);
1140 LOG_INFO("replaced existing '%s' help", cmd_name
);
1142 LOG_DEBUG("added '%s' help text", cmd_name
);
1145 bool replaced
= false;
1151 nc
->usage
= strdup(usage
);
1153 LOG_INFO("replaced existing '%s' usage", cmd_name
);
1155 LOG_DEBUG("added '%s' usage text", cmd_name
);
1160 COMMAND_HANDLER(handle_help_add_command
)
1163 LOG_ERROR("%s: insufficient arguments", CMD_NAME
);
1164 return ERROR_COMMAND_SYNTAX_ERROR
;
1167 /* save help text and remove it from argument list */
1168 const char *str
= CMD_ARGV
[--CMD_ARGC
];
1169 const char *help
= !strcmp(CMD_NAME
, "add_help_text") ? str
: NULL
;
1170 const char *usage
= !strcmp(CMD_NAME
, "add_usage_text") ? str
: NULL
;
1171 if (!help
&& !usage
) {
1172 LOG_ERROR("command name '%s' is unknown", CMD_NAME
);
1173 return ERROR_COMMAND_SYNTAX_ERROR
;
1175 /* likewise for the leaf command name */
1176 const char *cmd_name
= CMD_ARGV
[--CMD_ARGC
];
1178 struct command
*c
= NULL
;
1180 c
= CMD_CTX
->commands
;
1181 int retval
= CALL_COMMAND_HANDLER(command_help_find
, c
, &c
);
1182 if (ERROR_OK
!= retval
)
1185 return help_add_command(CMD_CTX
, c
, cmd_name
, help
, usage
);
1188 /* sleep command sleeps for <n> milliseconds
1189 * this is useful in target startup scripts
1191 COMMAND_HANDLER(handle_sleep_command
)
1194 if (CMD_ARGC
== 2) {
1195 if (strcmp(CMD_ARGV
[1], "busy") == 0)
1198 return ERROR_COMMAND_SYNTAX_ERROR
;
1199 } else if (CMD_ARGC
< 1 || CMD_ARGC
> 2)
1200 return ERROR_COMMAND_SYNTAX_ERROR
;
1202 unsigned long duration
= 0;
1203 int retval
= parse_ulong(CMD_ARGV
[0], &duration
);
1204 if (ERROR_OK
!= retval
)
1208 int64_t then
= timeval_ms();
1209 while (timeval_ms() - then
< (int64_t)duration
) {
1210 target_call_timer_callbacks_now();
1214 busy_sleep(duration
);
1219 static const struct command_registration command_subcommand_handlers
[] = {
1222 .mode
= COMMAND_ANY
,
1223 .jim_handler
= jim_command_mode
,
1224 .usage
= "[command_name ...]",
1225 .help
= "Returns the command modes allowed by a command:"
1226 "'any', 'config', or 'exec'. If no command is"
1227 "specified, returns the current command mode. "
1228 "Returns 'unknown' if an unknown command is given. "
1229 "Command can be multiple tokens.",
1233 .mode
= COMMAND_ANY
,
1234 .jim_handler
= jim_command_type
,
1235 .usage
= "command_name [...]",
1236 .help
= "Returns the type of built-in command:"
1237 "'native', 'simple', 'group', or 'unknown'. "
1238 "Command can be multiple tokens.",
1240 COMMAND_REGISTRATION_DONE
1243 static const struct command_registration command_builtin_handlers
[] = {
1246 .handler
= jim_echo
,
1247 .mode
= COMMAND_ANY
,
1248 .help
= "Logs a message at \"user\" priority. "
1249 "Output message to stdout. "
1250 "Option \"-n\" suppresses trailing newline",
1251 .usage
= "[-n] string",
1254 .name
= "add_help_text",
1255 .handler
= handle_help_add_command
,
1256 .mode
= COMMAND_ANY
,
1257 .help
= "Add new command help text; "
1258 "Command can be multiple tokens.",
1259 .usage
= "command_name helptext_string",
1262 .name
= "add_usage_text",
1263 .handler
= handle_help_add_command
,
1264 .mode
= COMMAND_ANY
,
1265 .help
= "Add new command usage text; "
1266 "command can be multiple tokens.",
1267 .usage
= "command_name usage_string",
1271 .handler
= handle_sleep_command
,
1272 .mode
= COMMAND_ANY
,
1273 .help
= "Sleep for specified number of milliseconds. "
1274 "\"busy\" will busy wait instead (avoid this).",
1275 .usage
= "milliseconds ['busy']",
1279 .handler
= handle_help_command
,
1280 .mode
= COMMAND_ANY
,
1281 .help
= "Show full command help; "
1282 "command can be multiple tokens.",
1283 .usage
= "[command_name]",
1287 .handler
= handle_help_command
,
1288 .mode
= COMMAND_ANY
,
1289 .help
= "Show basic command usage; "
1290 "command can be multiple tokens.",
1291 .usage
= "[command_name]",
1295 .mode
= COMMAND_ANY
,
1296 .help
= "core command group (introspection)",
1297 .chain
= command_subcommand_handlers
,
1300 COMMAND_REGISTRATION_DONE
1303 struct command_context
*command_init(const char *startup_tcl
, Jim_Interp
*interp
)
1305 struct command_context
*context
= calloc(1, sizeof(struct command_context
));
1308 context
->mode
= COMMAND_EXEC
;
1310 /* Create a jim interpreter if we were not handed one */
1311 if (interp
== NULL
) {
1312 /* Create an interpreter */
1313 interp
= Jim_CreateInterp();
1314 /* Add all the Jim core commands */
1315 Jim_RegisterCoreCommands(interp
);
1316 Jim_InitStaticExtensions(interp
);
1319 context
->interp
= interp
;
1321 /* Stick to lowercase for HostOS strings. */
1322 #if defined(_MSC_VER)
1323 /* WinXX - is generic, the forward
1324 * looking problem is this:
1326 * "win32" or "win64"
1328 * "winxx" is generic.
1331 #elif defined(__linux__)
1333 #elif defined(__APPLE__) || defined(__DARWIN__)
1335 #elif defined(__CYGWIN__)
1337 #elif defined(__MINGW32__)
1339 #elif defined(__ECOS)
1341 #elif defined(__FreeBSD__)
1343 #elif defined(__NetBSD__)
1345 #elif defined(__OpenBSD__)
1348 #warning "Unrecognized host OS..."
1351 Jim_SetGlobalVariableStr(interp
, "ocd_HOSTOS",
1352 Jim_NewStringObj(interp
, HostOs
, strlen(HostOs
)));
1354 Jim_CreateCommand(interp
, "ocd_find", jim_find
, NULL
, NULL
);
1355 Jim_CreateCommand(interp
, "capture", jim_capture
, NULL
, NULL
);
1357 register_commands(context
, NULL
, command_builtin_handlers
);
1359 Jim_SetAssocData(interp
, "context", NULL
, context
);
1360 if (Jim_Eval_Named(interp
, startup_tcl
, "embedded:startup.tcl", 1) == JIM_ERR
) {
1361 LOG_ERROR("Failed to run startup.tcl (embedded into OpenOCD)");
1362 Jim_MakeErrorMessage(interp
);
1363 LOG_USER_N("%s", Jim_GetString(Jim_GetResult(interp
), NULL
));
1366 Jim_DeleteAssocData(interp
, "context");
1371 void command_exit(struct command_context
*context
)
1376 Jim_FreeInterp(context
->interp
);
1377 command_done(context
);
1380 int command_context_mode(struct command_context
*cmd_ctx
, enum command_mode mode
)
1383 return ERROR_COMMAND_SYNTAX_ERROR
;
1385 cmd_ctx
->mode
= mode
;
1389 void process_jim_events(struct command_context
*cmd_ctx
)
1391 static int recursion
;
1396 Jim_ProcessEvents(cmd_ctx
->interp
, JIM_ALL_EVENTS
| JIM_DONT_WAIT
);
1400 #define DEFINE_PARSE_NUM_TYPE(name, type, func, min, max) \
1401 int parse ## name(const char *str, type * ul) \
1404 LOG_ERROR("Invalid command argument"); \
1405 return ERROR_COMMAND_ARGUMENT_INVALID; \
1408 *ul = func(str, &end, 0); \
1410 LOG_ERROR("Invalid command argument"); \
1411 return ERROR_COMMAND_ARGUMENT_INVALID; \
1413 if ((max == *ul) && (ERANGE == errno)) { \
1414 LOG_ERROR("Argument overflow"); \
1415 return ERROR_COMMAND_ARGUMENT_OVERFLOW; \
1417 if (min && (min == *ul) && (ERANGE == errno)) { \
1418 LOG_ERROR("Argument underflow"); \
1419 return ERROR_COMMAND_ARGUMENT_UNDERFLOW; \
1423 DEFINE_PARSE_NUM_TYPE(_ulong
, unsigned long, strtoul
, 0, ULONG_MAX
)
1424 DEFINE_PARSE_NUM_TYPE(_ullong
, unsigned long long, strtoull
, 0, ULLONG_MAX
)
1425 DEFINE_PARSE_NUM_TYPE(_long
, long, strtol
, LONG_MIN
, LONG_MAX
)
1426 DEFINE_PARSE_NUM_TYPE(_llong
, long long, strtoll
, LLONG_MIN
, LLONG_MAX
)
1428 #define DEFINE_PARSE_WRAPPER(name, type, min, max, functype, funcname) \
1429 int parse ## name(const char *str, type * ul) \
1432 int retval = parse ## funcname(str, &n); \
1433 if (ERROR_OK != retval) \
1436 return ERROR_COMMAND_ARGUMENT_OVERFLOW; \
1438 return ERROR_COMMAND_ARGUMENT_UNDERFLOW; \
1443 #define DEFINE_PARSE_ULONGLONG(name, type, min, max) \
1444 DEFINE_PARSE_WRAPPER(name, type, min, max, unsigned long long, _ullong)
1445 DEFINE_PARSE_ULONGLONG(_uint
, unsigned, 0, UINT_MAX
)
1446 DEFINE_PARSE_ULONGLONG(_u64
, uint64_t, 0, UINT64_MAX
)
1447 DEFINE_PARSE_ULONGLONG(_u32
, uint32_t, 0, UINT32_MAX
)
1448 DEFINE_PARSE_ULONGLONG(_u16
, uint16_t, 0, UINT16_MAX
)
1449 DEFINE_PARSE_ULONGLONG(_u8
, uint8_t, 0, UINT8_MAX
)
1451 DEFINE_PARSE_ULONGLONG(_target_addr
, target_addr_t
, 0, TARGET_ADDR_MAX
)
1453 #define DEFINE_PARSE_LONGLONG(name, type, min, max) \
1454 DEFINE_PARSE_WRAPPER(name, type, min, max, long long, _llong)
1455 DEFINE_PARSE_LONGLONG(_int
, int, n
< INT_MIN
, INT_MAX
)
1456 DEFINE_PARSE_LONGLONG(_s64
, int64_t, n
< INT64_MIN
, INT64_MAX
)
1457 DEFINE_PARSE_LONGLONG(_s32
, int32_t, n
< INT32_MIN
, INT32_MAX
)
1458 DEFINE_PARSE_LONGLONG(_s16
, int16_t, n
< INT16_MIN
, INT16_MAX
)
1459 DEFINE_PARSE_LONGLONG(_s8
, int8_t, n
< INT8_MIN
, INT8_MAX
)
1461 static int command_parse_bool(const char *in
, bool *out
,
1462 const char *on
, const char *off
)
1464 if (strcasecmp(in
, on
) == 0)
1466 else if (strcasecmp(in
, off
) == 0)
1469 return ERROR_COMMAND_SYNTAX_ERROR
;
1473 int command_parse_bool_arg(const char *in
, bool *out
)
1475 if (command_parse_bool(in
, out
, "on", "off") == ERROR_OK
)
1477 if (command_parse_bool(in
, out
, "enable", "disable") == ERROR_OK
)
1479 if (command_parse_bool(in
, out
, "true", "false") == ERROR_OK
)
1481 if (command_parse_bool(in
, out
, "yes", "no") == ERROR_OK
)
1483 if (command_parse_bool(in
, out
, "1", "0") == ERROR_OK
)
1485 return ERROR_COMMAND_SYNTAX_ERROR
;
1488 COMMAND_HELPER(handle_command_parse_bool
, bool *out
, const char *label
)
1492 const char *in
= CMD_ARGV
[0];
1493 if (command_parse_bool_arg(in
, out
) != ERROR_OK
) {
1494 LOG_ERROR("%s: argument '%s' is not valid", CMD_NAME
, in
);
1495 return ERROR_COMMAND_SYNTAX_ERROR
;
1500 LOG_INFO("%s is %s", label
, *out ?
"enabled" : "disabled");
1503 return ERROR_COMMAND_SYNTAX_ERROR
;