allow scripts to update usage information
[openocd.git] / src / helper / command.c
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
7 * *
8 * Copyright (C) 2008, Duane Ellis *
9 * openocd@duaneeellis.com *
10 * *
11 * part of this file is taken from libcli (libcli.sourceforge.net) *
12 * Copyright (C) David Parrish (david@dparrish.com) *
13 * *
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. *
18 * *
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. *
23 * *
24 * You should have received a copy of the GNU General Public License *
25 * along with this program; if not, write to the *
26 * Free Software Foundation, Inc., *
27 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
28 ***************************************************************************/
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33 #if !BUILD_ECOSBOARD
34 /* see Embedder-HOWTO.txt in Jim Tcl project hosted on BerliOS*/
35 #define JIM_EMBEDDED
36 #endif
37
38 // @todo the inclusion of target.h here is a layering violation
39 #include "target.h"
40 #include "command.h"
41 #include "configuration.h"
42 #include "log.h"
43 #include "time_support.h"
44 #include "jim-eventloop.h"
45
46
47 Jim_Interp *interp = NULL;
48
49 static int run_command(struct command_context *context,
50 struct command *c, const char *words[], unsigned num_words);
51
52 static void tcl_output(void *privData, const char *file, unsigned line,
53 const char *function, const char *string)
54 {
55 Jim_Obj *tclOutput = (Jim_Obj *)privData;
56 Jim_AppendString(interp, tclOutput, string, strlen(string));
57 }
58
59 extern struct command_context *global_cmd_ctx;
60
61 void script_debug(Jim_Interp *interp, const char *name,
62 unsigned argc, Jim_Obj *const *argv)
63 {
64 LOG_DEBUG("command - %s", name);
65 for (unsigned i = 0; i < argc; i++)
66 {
67 int len;
68 const char *w = Jim_GetString(argv[i], &len);
69
70 /* end of line comment? */
71 if (*w == '#')
72 break;
73
74 LOG_DEBUG("%s - argv[%d]=%s", name, i, w);
75 }
76 }
77
78 static void script_command_args_free(const char **words, unsigned nwords)
79 {
80 for (unsigned i = 0; i < nwords; i++)
81 free((void *)words[i]);
82 free(words);
83 }
84 static const char **script_command_args_alloc(
85 unsigned argc, Jim_Obj *const *argv, unsigned *nwords)
86 {
87 const char **words = malloc(argc * sizeof(char *));
88 if (NULL == words)
89 return NULL;
90
91 unsigned i;
92 for (i = 0; i < argc; i++)
93 {
94 int len;
95 const char *w = Jim_GetString(argv[i], &len);
96 /* a comment may end the line early */
97 if (*w == '#')
98 break;
99
100 words[i] = strdup(w);
101 if (words[i] == NULL)
102 {
103 script_command_args_free(words, i);
104 return NULL;
105 }
106 }
107 *nwords = i;
108 return words;
109 }
110
111 static struct command_context *current_command_context(void)
112 {
113 /* grab the command context from the associated data */
114 struct command_context *cmd_ctx = Jim_GetAssocData(interp, "context");
115 if (NULL == cmd_ctx)
116 {
117 /* Tcl can invoke commands directly instead of via command_run_line(). This would
118 * happen when the Jim Tcl interpreter is provided by eCos.
119 */
120 cmd_ctx = global_cmd_ctx;
121 }
122 return cmd_ctx;
123 }
124
125 static int script_command(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
126 {
127 /* the private data is stashed in the interp structure */
128 struct command *c;
129 int retval;
130
131 /* DANGER!!!! be careful what we invoke here, since interp->cmdPrivData might
132 * get overwritten by running other Jim commands! Treat it as an
133 * emphemeral global variable that is used in lieu of an argument
134 * to the fn and fish it out manually.
135 */
136 c = interp->cmdPrivData;
137 if (c == NULL)
138 {
139 LOG_ERROR("BUG: interp->cmdPrivData == NULL");
140 return JIM_ERR;
141 }
142 target_call_timer_callbacks_now();
143 LOG_USER_N("%s", ""); /* Keep GDB connection alive*/
144
145 script_debug(interp, c->name, argc, argv);
146
147 unsigned nwords;
148 const char **words = script_command_args_alloc(argc, argv, &nwords);
149 if (NULL == words)
150 return JIM_ERR;
151
152 /* capture log output and return it */
153 Jim_Obj *tclOutput = Jim_NewStringObj(interp, "", 0);
154 /* a garbage collect can happen, so we need a reference count to this object */
155 Jim_IncrRefCount(tclOutput);
156
157 log_add_callback(tcl_output, tclOutput);
158
159 struct command_context *cmd_ctx = current_command_context();
160 retval = run_command(cmd_ctx, c, (const char **)words, nwords);
161
162 log_remove_callback(tcl_output, tclOutput);
163
164 /* We dump output into this local variable */
165 Jim_SetResult(interp, tclOutput);
166 Jim_DecrRefCount(interp, tclOutput);
167
168 script_command_args_free(words, nwords);
169
170 int *return_retval = Jim_GetAssocData(interp, "retval");
171 if (return_retval != NULL)
172 {
173 *return_retval = retval;
174 }
175
176 return (retval == ERROR_OK)?JIM_OK:JIM_ERR;
177 }
178
179 /* nice short description of source file */
180 #define __THIS__FILE__ "command.c"
181
182 /**
183 * Find a command by name from a list of commands.
184 * @returns Returns the named command if it exists in the list.
185 * Returns NULL otherwise.
186 */
187 static struct command *command_find(struct command *head, const char *name)
188 {
189 for (struct command *cc = head; cc; cc = cc->next)
190 {
191 if (strcmp(cc->name, name) == 0)
192 return cc;
193 }
194 return NULL;
195 }
196 struct command *command_find_in_context(struct command_context *cmd_ctx,
197 const char *name)
198 {
199 return command_find(cmd_ctx->commands, name);
200 }
201 struct command *command_find_in_parent(struct command *parent,
202 const char *name)
203 {
204 return command_find(parent->children, name);
205 }
206
207 /**
208 * Add the command into the linked list, sorted by name.
209 * @param head Address to head of command list pointer, which may be
210 * updated if @c c gets inserted at the beginning of the list.
211 * @param c The command to add to the list pointed to by @c head.
212 */
213 static void command_add_child(struct command **head, struct command *c)
214 {
215 assert(head);
216 if (NULL == *head)
217 {
218 *head = c;
219 return;
220 }
221
222 while ((*head)->next && (strcmp(c->name, (*head)->name) > 0))
223 head = &(*head)->next;
224
225 if (strcmp(c->name, (*head)->name) > 0) {
226 c->next = (*head)->next;
227 (*head)->next = c;
228 } else {
229 c->next = *head;
230 *head = c;
231 }
232 }
233
234 static struct command **command_list_for_parent(
235 struct command_context *cmd_ctx, struct command *parent)
236 {
237 return parent ? &parent->children : &cmd_ctx->commands;
238 }
239
240 static struct command *command_new(struct command_context *cmd_ctx,
241 struct command *parent, const struct command_registration *cr)
242 {
243 assert(cr->name);
244
245 struct command *c = malloc(sizeof(struct command));
246 memset(c, 0, sizeof(struct command));
247
248 c->name = strdup(cr->name);
249 if (cr->help)
250 c->help = strdup(cr->help);
251 if (cr->usage)
252 c->usage = strdup(cr->usage);
253 c->parent = parent;
254 c->handler = cr->handler;
255 c->jim_handler = cr->jim_handler;
256 c->jim_handler_data = cr->jim_handler_data;
257 c->mode = cr->mode;
258
259 command_add_child(command_list_for_parent(cmd_ctx, parent), c);
260
261 return c;
262 }
263 static void command_free(struct command *c)
264 {
265 /// @todo if command has a handler, unregister its jim command!
266
267 while (NULL != c->children)
268 {
269 struct command *tmp = c->children;
270 c->children = tmp->next;
271 command_free(tmp);
272 }
273
274 if (c->name)
275 free(c->name);
276 if (c->help)
277 free((void*)c->help);
278 if (c->usage)
279 free((void*)c->usage);
280 free(c);
281 }
282
283 static int register_command_handler(struct command *c)
284 {
285 int retval = -ENOMEM;
286 const char *full_name = command_name(c, '_');
287 if (NULL == full_name)
288 return retval;
289
290 const char *ocd_name = alloc_printf("ocd_%s", full_name);
291 if (NULL == full_name)
292 goto free_full_name;
293
294 Jim_CreateCommand(interp, ocd_name, script_command, c, NULL);
295 free((void *)ocd_name);
296
297 /* we now need to add an overrideable proc */
298 const char *override_name = alloc_printf("proc %s {args} {"
299 "if {[catch {eval ocd_%s $args}] == 0} "
300 "{return \"\"} else {return -code error}}",
301 full_name, full_name);
302 if (NULL == full_name)
303 goto free_full_name;
304
305 Jim_Eval_Named(interp, override_name, __THIS__FILE__, __LINE__);
306 free((void *)override_name);
307
308 retval = ERROR_OK;
309
310 free_full_name:
311 free((void *)full_name);
312 return retval;
313 }
314
315 struct command* register_command(struct command_context *context,
316 struct command *parent, const struct command_registration *cr)
317 {
318 if (!context || !cr->name)
319 return NULL;
320
321 const char *name = cr->name;
322 struct command **head = command_list_for_parent(context, parent);
323 struct command *c = command_find(*head, name);
324 if (NULL != c)
325 {
326 LOG_ERROR("command '%s' is already registered in '%s' context",
327 name, parent ? parent->name : "<global>");
328 return c;
329 }
330
331 c = command_new(context, parent, cr);
332 if (NULL == c)
333 return NULL;
334
335 if (NULL != c->handler)
336 {
337 int retval = register_command_handler(c);
338 if (ERROR_OK != retval)
339 {
340 unregister_command(context, parent, name);
341 return NULL;
342 }
343 }
344
345 if (NULL != cr->jim_handler && NULL == parent)
346 Jim_CreateCommand(interp, cr->name, cr->jim_handler, cr->jim_handler_data, NULL);
347
348 return c;
349 }
350
351 int register_commands(struct command_context *cmd_ctx, struct command *parent,
352 const struct command_registration *cmds)
353 {
354 int retval = ERROR_OK;
355 unsigned i;
356 for (i = 0; cmds[i].name || cmds[i].chain; i++)
357 {
358 const struct command_registration *cr = cmds + i;
359
360 struct command *c = NULL;
361 if (NULL != cr->name)
362 {
363 c = register_command(cmd_ctx, parent, cr);
364 if (NULL == c)
365 {
366 retval = ERROR_FAIL;
367 break;
368 }
369 }
370 if (NULL != cr->chain)
371 {
372 struct command *p = c ? : parent;
373 retval = register_commands(cmd_ctx, p, cr->chain);
374 if (ERROR_OK != retval)
375 break;
376 }
377 }
378 if (ERROR_OK != retval)
379 {
380 for (unsigned j = 0; j < i; j++)
381 unregister_command(cmd_ctx, parent, cmds[j].name);
382 }
383 return retval;
384 }
385
386 int unregister_all_commands(struct command_context *context,
387 struct command *parent)
388 {
389 if (context == NULL)
390 return ERROR_OK;
391
392 struct command **head = command_list_for_parent(context, parent);
393 while (NULL != *head)
394 {
395 struct command *tmp = *head;
396 *head = tmp->next;
397 command_free(tmp);
398 }
399
400 return ERROR_OK;
401 }
402
403 int unregister_command(struct command_context *context,
404 struct command *parent, const char *name)
405 {
406 if ((!context) || (!name))
407 return ERROR_INVALID_ARGUMENTS;
408
409 struct command *p = NULL;
410 struct command **head = command_list_for_parent(context, parent);
411 for (struct command *c = *head; NULL != c; p = c, c = c->next)
412 {
413 if (strcmp(name, c->name) != 0)
414 continue;
415
416 if (p)
417 p->next = c->next;
418 else
419 *head = c->next;
420
421 command_free(c);
422 return ERROR_OK;
423 }
424
425 return ERROR_OK;
426 }
427
428 void command_output_text(struct command_context *context, const char *data)
429 {
430 if (context && context->output_handler && data) {
431 context->output_handler(context, data);
432 }
433 }
434
435 void command_print_sameline(struct command_context *context, const char *format, ...)
436 {
437 char *string;
438
439 va_list ap;
440 va_start(ap, format);
441
442 string = alloc_vprintf(format, ap);
443 if (string != NULL)
444 {
445 /* we want this collected in the log + we also want to pick it up as a tcl return
446 * value.
447 *
448 * The latter bit isn't precisely neat, but will do for now.
449 */
450 LOG_USER_N("%s", string);
451 /* We already printed it above */
452 /* command_output_text(context, string); */
453 free(string);
454 }
455
456 va_end(ap);
457 }
458
459 void command_print(struct command_context *context, const char *format, ...)
460 {
461 char *string;
462
463 va_list ap;
464 va_start(ap, format);
465
466 string = alloc_vprintf(format, ap);
467 if (string != NULL)
468 {
469 strcat(string, "\n"); /* alloc_vprintf guaranteed the buffer to be at least one char longer */
470 /* we want this collected in the log + we also want to pick it up as a tcl return
471 * value.
472 *
473 * The latter bit isn't precisely neat, but will do for now.
474 */
475 LOG_USER_N("%s", string);
476 /* We already printed it above */
477 /* command_output_text(context, string); */
478 free(string);
479 }
480
481 va_end(ap);
482 }
483
484 static char *__command_name(struct command *c, char delim, unsigned extra)
485 {
486 char *name;
487 unsigned len = strlen(c->name);
488 if (NULL == c->parent) {
489 // allocate enough for the name, child names, and '\0'
490 name = malloc(len + extra + 1);
491 strcpy(name, c->name);
492 } else {
493 // parent's extra must include both the space and name
494 name = __command_name(c->parent, delim, 1 + len + extra);
495 char dstr[2] = { delim, 0 };
496 strcat(name, dstr);
497 strcat(name, c->name);
498 }
499 return name;
500 }
501 char *command_name(struct command *c, char delim)
502 {
503 return __command_name(c, delim, 0);
504 }
505
506 static int run_command(struct command_context *context,
507 struct command *c, const char *words[], unsigned num_words)
508 {
509 if (!((context->mode == COMMAND_CONFIG) || (c->mode == COMMAND_ANY) || (c->mode == context->mode)))
510 {
511 /* Config commands can not run after the config stage */
512 LOG_ERROR("Command '%s' only runs during configuration stage", c->name);
513 return ERROR_FAIL;
514 }
515
516 struct command_invocation cmd = {
517 .ctx = context,
518 .name = c->name,
519 .argc = num_words - 1,
520 .argv = words + 1,
521 };
522 int retval = c->handler(&cmd);
523 if (retval == ERROR_COMMAND_SYNTAX_ERROR)
524 {
525 /* Print help for command */
526 char *full_name = command_name(c, ' ');
527 if (NULL != full_name) {
528 command_run_linef(context, "help %s", full_name);
529 free(full_name);
530 } else
531 retval = -ENOMEM;
532 }
533 else if (retval == ERROR_COMMAND_CLOSE_CONNECTION)
534 {
535 /* just fall through for a shutdown request */
536 }
537 else if (retval != ERROR_OK)
538 {
539 /* we do not print out an error message because the command *should*
540 * have printed out an error
541 */
542 LOG_DEBUG("Command failed with error code %d", retval);
543 }
544
545 return retval;
546 }
547
548 int command_run_line(struct command_context *context, char *line)
549 {
550 /* all the parent commands have been registered with the interpreter
551 * so, can just evaluate the line as a script and check for
552 * results
553 */
554 /* run the line thru a script engine */
555 int retval = ERROR_FAIL;
556 int retcode;
557 /* Beware! This code needs to be reentrant. It is also possible
558 * for OpenOCD commands to be invoked directly from Tcl. This would
559 * happen when the Jim Tcl interpreter is provided by eCos for
560 * instance.
561 */
562 Jim_DeleteAssocData(interp, "context");
563 retcode = Jim_SetAssocData(interp, "context", NULL, context);
564 if (retcode == JIM_OK)
565 {
566 /* associated the return value */
567 Jim_DeleteAssocData(interp, "retval");
568 retcode = Jim_SetAssocData(interp, "retval", NULL, &retval);
569 if (retcode == JIM_OK)
570 {
571 retcode = Jim_Eval_Named(interp, line, __THIS__FILE__, __LINE__);
572
573 Jim_DeleteAssocData(interp, "retval");
574 }
575 Jim_DeleteAssocData(interp, "context");
576 }
577 if (retcode == JIM_ERR) {
578 if (retval != ERROR_COMMAND_CLOSE_CONNECTION)
579 {
580 /* We do not print the connection closed error message */
581 Jim_PrintErrorMessage(interp);
582 }
583 if (retval == ERROR_OK)
584 {
585 /* It wasn't a low level OpenOCD command that failed */
586 return ERROR_FAIL;
587 }
588 return retval;
589 } else if (retcode == JIM_EXIT) {
590 /* ignore. */
591 /* exit(Jim_GetExitCode(interp)); */
592 } else {
593 const char *result;
594 int reslen;
595
596 result = Jim_GetString(Jim_GetResult(interp), &reslen);
597 if (reslen > 0)
598 {
599 int i;
600 char buff[256 + 1];
601 for (i = 0; i < reslen; i += 256)
602 {
603 int chunk;
604 chunk = reslen - i;
605 if (chunk > 256)
606 chunk = 256;
607 strncpy(buff, result + i, chunk);
608 buff[chunk] = 0;
609 LOG_USER_N("%s", buff);
610 }
611 LOG_USER_N("%s", "\n");
612 }
613 retval = ERROR_OK;
614 }
615 return retval;
616 }
617
618 int command_run_linef(struct command_context *context, const char *format, ...)
619 {
620 int retval = ERROR_FAIL;
621 char *string;
622 va_list ap;
623 va_start(ap, format);
624 string = alloc_vprintf(format, ap);
625 if (string != NULL)
626 {
627 retval = command_run_line(context, string);
628 }
629 va_end(ap);
630 return retval;
631 }
632
633 void command_set_output_handler(struct command_context* context,
634 command_output_handler_t output_handler, void *priv)
635 {
636 context->output_handler = output_handler;
637 context->output_handler_priv = priv;
638 }
639
640 struct command_context* copy_command_context(struct command_context* context)
641 {
642 struct command_context* copy_context = malloc(sizeof(struct command_context));
643
644 *copy_context = *context;
645
646 return copy_context;
647 }
648
649 int command_done(struct command_context *context)
650 {
651 free(context);
652 context = NULL;
653
654 return ERROR_OK;
655 }
656
657 /* find full path to file */
658 static int jim_find(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
659 {
660 if (argc != 2)
661 return JIM_ERR;
662 const char *file = Jim_GetString(argv[1], NULL);
663 char *full_path = find_file(file);
664 if (full_path == NULL)
665 return JIM_ERR;
666 Jim_Obj *result = Jim_NewStringObj(interp, full_path, strlen(full_path));
667 free(full_path);
668
669 Jim_SetResult(interp, result);
670 return JIM_OK;
671 }
672
673 static int jim_echo(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
674 {
675 if (argc != 2)
676 return JIM_ERR;
677 const char *str = Jim_GetString(argv[1], NULL);
678 LOG_USER("%s", str);
679 return JIM_OK;
680 }
681
682 static size_t openocd_jim_fwrite(const void *_ptr, size_t size, size_t n, void *cookie)
683 {
684 size_t nbytes;
685 const char *ptr;
686 Jim_Interp *interp;
687
688 /* make it a char easier to read code */
689 ptr = _ptr;
690 interp = cookie;
691 nbytes = size * n;
692 if (ptr == NULL || interp == NULL || nbytes == 0) {
693 return 0;
694 }
695
696 /* do we have to chunk it? */
697 if (ptr[nbytes] == 0)
698 {
699 /* no it is a C style string */
700 LOG_USER_N("%s", ptr);
701 return strlen(ptr);
702 }
703 /* GRR we must chunk - not null terminated */
704 while (nbytes) {
705 char chunk[128 + 1];
706 int x;
707
708 x = nbytes;
709 if (x > 128) {
710 x = 128;
711 }
712 /* copy it */
713 memcpy(chunk, ptr, x);
714 /* terminate it */
715 chunk[n] = 0;
716 /* output it */
717 LOG_USER_N("%s", chunk);
718 ptr += x;
719 nbytes -= x;
720 }
721
722 return n;
723 }
724
725 static size_t openocd_jim_fread(void *ptr, size_t size, size_t n, void *cookie)
726 {
727 /* TCL wants to read... tell him no */
728 return 0;
729 }
730
731 static int openocd_jim_vfprintf(void *cookie, const char *fmt, va_list ap)
732 {
733 char *cp;
734 int n;
735 Jim_Interp *interp;
736
737 n = -1;
738 interp = cookie;
739 if (interp == NULL)
740 return n;
741
742 cp = alloc_vprintf(fmt, ap);
743 if (cp)
744 {
745 LOG_USER_N("%s", cp);
746 n = strlen(cp);
747 free(cp);
748 }
749 return n;
750 }
751
752 static int openocd_jim_fflush(void *cookie)
753 {
754 /* nothing to flush */
755 return 0;
756 }
757
758 static char* openocd_jim_fgets(char *s, int size, void *cookie)
759 {
760 /* not supported */
761 errno = ENOTSUP;
762 return NULL;
763 }
764
765 static int jim_capture(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
766 {
767 if (argc != 2)
768 return JIM_ERR;
769 int retcode;
770 const char *str = Jim_GetString(argv[1], NULL);
771
772 /* capture log output and return it */
773 Jim_Obj *tclOutput = Jim_NewStringObj(interp, "", 0);
774 /* a garbage collect can happen, so we need a reference count to this object */
775 Jim_IncrRefCount(tclOutput);
776
777 log_add_callback(tcl_output, tclOutput);
778
779 retcode = Jim_Eval_Named(interp, str, __THIS__FILE__, __LINE__);
780
781 log_remove_callback(tcl_output, tclOutput);
782
783 /* We dump output into this local variable */
784 Jim_SetResult(interp, tclOutput);
785 Jim_DecrRefCount(interp, tclOutput);
786
787 return retcode;
788 }
789
790 static COMMAND_HELPER(command_help_find, struct command *head,
791 struct command **out)
792 {
793 if (0 == CMD_ARGC)
794 return ERROR_INVALID_ARGUMENTS;
795 *out = command_find(head, CMD_ARGV[0]);
796 if (NULL == *out)
797 return ERROR_INVALID_ARGUMENTS;
798 if (--CMD_ARGC == 0)
799 return ERROR_OK;
800 CMD_ARGV++;
801 return CALL_COMMAND_HANDLER(command_help_find, (*out)->children, out);
802 }
803
804 static COMMAND_HELPER(command_help_show, struct command *c, unsigned n,
805 bool show_help);
806
807 static COMMAND_HELPER(command_help_show_list, struct command *head, unsigned n,
808 bool show_help)
809 {
810 for (struct command *c = head; NULL != c; c = c->next)
811 CALL_COMMAND_HANDLER(command_help_show, c, n, show_help);
812 return ERROR_OK;
813 }
814 static COMMAND_HELPER(command_help_show, struct command *c, unsigned n,
815 bool show_help)
816 {
817 const char *usage = c->usage ? : "";
818 const char *help = "";
819 const char *sep = "";
820 if (show_help && c->help)
821 {
822 help = c->help ? : "";
823 sep = c->usage ? " | " : "";
824 }
825 command_run_linef(CMD_CTX, "cmd_help {%s} {%s%s%s} %d",
826 command_name(c, ' '), usage, sep, help, n);
827
828 if (++n >= 2)
829 return ERROR_OK;
830
831 return CALL_COMMAND_HANDLER(command_help_show_list,
832 c->children, n, show_help);
833 }
834 COMMAND_HANDLER(handle_help_command)
835 {
836 struct command *c = CMD_CTX->commands;
837
838 if (0 == CMD_ARGC)
839 return CALL_COMMAND_HANDLER(command_help_show_list, c, 0, true);
840
841 int retval = CALL_COMMAND_HANDLER(command_help_find, c, &c);
842 if (ERROR_OK != retval)
843 return retval;
844
845 return CALL_COMMAND_HANDLER(command_help_show, c, 0, true);
846 }
847
848 COMMAND_HANDLER(handle_usage_command)
849 {
850 struct command *c = CMD_CTX->commands;
851
852 if (0 == CMD_ARGC)
853 return CALL_COMMAND_HANDLER(command_help_show_list, c, 0, false);
854
855 int retval = CALL_COMMAND_HANDLER(command_help_find, c, &c);
856 if (ERROR_OK != retval)
857 return retval;
858
859 return CALL_COMMAND_HANDLER(command_help_show, c, 0, false);
860 }
861
862 static int command_unknown_find(unsigned argc, Jim_Obj *const *argv,
863 struct command *head, struct command **out)
864 {
865 if (0 == argc)
866 return argc;
867 struct command *c = command_find(head, Jim_GetString(argv[0], NULL));
868 if (NULL == c)
869 return argc;
870 *out = c;
871 return command_unknown_find(--argc, ++argv, (*out)->children, out);
872 }
873
874 static int command_unknown(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
875 {
876 const char *cmd_name = Jim_GetString(argv[0], NULL);
877 script_debug(interp, cmd_name, argc - 1, argv + 1);
878
879 struct command_context *cmd_ctx = current_command_context();
880 struct command *c = cmd_ctx->commands;
881 int remaining = command_unknown_find(argc - 1, argv + 1, c, &c);
882 // if nothing could be consumed, then it's really an unknown command
883 if (remaining == argc - 1)
884 {
885 const char *cmd = Jim_GetString(argv[1], NULL);
886 LOG_ERROR("Unknown command:\n %s", cmd);
887 return JIM_OK;
888 }
889
890 bool found = true;
891 Jim_Obj *const *start;
892 unsigned count;
893 if (c->handler || c->jim_handler)
894 {
895 // include the command name in the list
896 count = remaining + 1;
897 start = argv + (argc - remaining - 1);
898 }
899 else
900 {
901 c = command_find(cmd_ctx->commands, "help");
902 if (NULL == c)
903 {
904 LOG_ERROR("unknown command, but help is missing too");
905 return JIM_ERR;
906 }
907 count = argc - remaining;
908 start = argv;
909 found = false;
910 }
911 // pass the command through to the intended handler
912 if (c->jim_handler)
913 {
914 interp->cmdPrivData = c->jim_handler_data;
915 return (*c->jim_handler)(interp, count, start);
916 }
917
918 unsigned nwords;
919 const char **words = script_command_args_alloc(count, start, &nwords);
920 if (NULL == words)
921 return JIM_ERR;
922
923 int retval = run_command(cmd_ctx, c, words, nwords);
924
925 script_command_args_free(words, nwords);
926
927 if (!found && ERROR_OK == retval)
928 retval = ERROR_FAIL;
929
930 return retval;
931 }
932
933 int help_add_command(struct command_context *cmd_ctx, struct command *parent,
934 const char *cmd_name, const char *help_text, const char *usage)
935 {
936 struct command **head = command_list_for_parent(cmd_ctx, parent);
937 struct command *nc = command_find(*head, cmd_name);
938 if (NULL == nc)
939 {
940 // add a new command with help text
941 struct command_registration cr = {
942 .name = cmd_name,
943 .mode = COMMAND_ANY,
944 .help = help_text,
945 .usage = usage,
946 };
947 nc = register_command(cmd_ctx, parent, &cr);
948 if (NULL == nc)
949 {
950 LOG_ERROR("failed to add '%s' help text", cmd_name);
951 return ERROR_FAIL;
952 }
953 LOG_DEBUG("added '%s' help text", cmd_name);
954 return ERROR_OK;
955 }
956 if (help_text)
957 {
958 bool replaced = false;
959 if (nc->help)
960 {
961 free((void *)nc->help);
962 replaced = true;
963 }
964 nc->help = strdup(help_text);
965 if (replaced)
966 LOG_INFO("replaced existing '%s' help", cmd_name);
967 else
968 LOG_DEBUG("added '%s' help text", cmd_name);
969 }
970 if (usage)
971 {
972 bool replaced = false;
973 if (nc->usage)
974 {
975 free((void *)nc->usage);
976 replaced = true;
977 }
978 nc->usage = strdup(usage);
979 if (replaced)
980 LOG_INFO("replaced existing '%s' usage", cmd_name);
981 else
982 LOG_DEBUG("added '%s' usage text", cmd_name);
983 }
984 return ERROR_OK;
985 }
986
987 COMMAND_HANDLER(handle_help_add_command)
988 {
989 if (CMD_ARGC < 2)
990 {
991 LOG_ERROR("%s: insufficient arguments", CMD_NAME);
992 return ERROR_INVALID_ARGUMENTS;
993 }
994
995 // save help text and remove it from argument list
996 const char *str = CMD_ARGV[--CMD_ARGC];
997 const char *help = !strcmp(CMD_NAME, "add_help_text") ? str : NULL;
998 const char *usage = !strcmp(CMD_NAME, "add_usage_text") ? str : NULL;
999 if (!help && !usage)
1000 {
1001 LOG_ERROR("command name '%s' is unknown", CMD_NAME);
1002 return ERROR_INVALID_ARGUMENTS;
1003 }
1004 // likewise for the leaf command name
1005 const char *cmd_name = CMD_ARGV[--CMD_ARGC];
1006
1007 struct command *c = NULL;
1008 if (CMD_ARGC > 0)
1009 {
1010 c = CMD_CTX->commands;
1011 int retval = CALL_COMMAND_HANDLER(command_help_find, c, &c);
1012 if (ERROR_OK != retval)
1013 return retval;
1014 }
1015 return help_add_command(CMD_CTX, c, cmd_name, help, usage);
1016 }
1017
1018 /* sleep command sleeps for <n> miliseconds
1019 * this is useful in target startup scripts
1020 */
1021 COMMAND_HANDLER(handle_sleep_command)
1022 {
1023 bool busy = false;
1024 if (CMD_ARGC == 2)
1025 {
1026 if (strcmp(CMD_ARGV[1], "busy") == 0)
1027 busy = true;
1028 else
1029 return ERROR_COMMAND_SYNTAX_ERROR;
1030 }
1031 else if (CMD_ARGC < 1 || CMD_ARGC > 2)
1032 return ERROR_COMMAND_SYNTAX_ERROR;
1033
1034 unsigned long duration = 0;
1035 int retval = parse_ulong(CMD_ARGV[0], &duration);
1036 if (ERROR_OK != retval)
1037 return retval;
1038
1039 if (!busy)
1040 {
1041 long long then = timeval_ms();
1042 while (timeval_ms() - then < (long long)duration)
1043 {
1044 target_call_timer_callbacks_now();
1045 usleep(1000);
1046 }
1047 }
1048 else
1049 busy_sleep(duration);
1050
1051 return ERROR_OK;
1052 }
1053
1054 static const struct command_registration command_builtin_handlers[] = {
1055 {
1056 .name = "add_help_text",
1057 .handler = &handle_help_add_command,
1058 .mode = COMMAND_ANY,
1059 .help = "add new command help text",
1060 .usage = "<command> [...] <help_text>]",
1061 },
1062 {
1063 .name = "add_usage_text",
1064 .handler = &handle_help_add_command,
1065 .mode = COMMAND_ANY,
1066 .help = "add new command usage text",
1067 .usage = "<command> [...] <usage_text>]",
1068 },
1069 {
1070 .name = "sleep",
1071 .handler = &handle_sleep_command,
1072 .mode = COMMAND_ANY,
1073 .help = "sleep for n milliseconds. "
1074 "\"busy\" will busy wait",
1075 .usage = "<n> [busy]",
1076 },
1077 {
1078 .name = "help",
1079 .handler = &handle_help_command,
1080 .mode = COMMAND_ANY,
1081 .help = "show built-in command help",
1082 .usage = "[<command_name> ...]",
1083 },
1084 {
1085 .name = "usage",
1086 .handler = &handle_usage_command,
1087 .mode = COMMAND_ANY,
1088 .help = "show command usage",
1089 .usage = "[<command_name> ...]",
1090 },
1091 COMMAND_REGISTRATION_DONE
1092 };
1093
1094 struct command_context* command_init(const char *startup_tcl)
1095 {
1096 struct command_context* context = malloc(sizeof(struct command_context));
1097 const char *HostOs;
1098
1099 context->mode = COMMAND_EXEC;
1100 context->commands = NULL;
1101 context->current_target = 0;
1102 context->output_handler = NULL;
1103 context->output_handler_priv = NULL;
1104
1105 #if !BUILD_ECOSBOARD
1106 Jim_InitEmbedded();
1107 /* Create an interpreter */
1108 interp = Jim_CreateInterp();
1109 /* Add all the Jim core commands */
1110 Jim_RegisterCoreCommands(interp);
1111 #endif
1112
1113 #if defined(_MSC_VER)
1114 /* WinXX - is generic, the forward
1115 * looking problem is this:
1116 *
1117 * "win32" or "win64"
1118 *
1119 * "winxx" is generic.
1120 */
1121 HostOs = "winxx";
1122 #elif defined(__linux__)
1123 HostOs = "linux";
1124 #elif defined(__DARWIN__)
1125 HostOs = "darwin";
1126 #elif defined(__CYGWIN__)
1127 HostOs = "cygwin";
1128 #elif defined(__MINGW32__)
1129 HostOs = "mingw32";
1130 #elif defined(__ECOS)
1131 HostOs = "ecos";
1132 #else
1133 #warn unrecognized host OS...
1134 HostOs = "other";
1135 #endif
1136 Jim_SetGlobalVariableStr(interp, "ocd_HOSTOS",
1137 Jim_NewStringObj(interp, HostOs , strlen(HostOs)));
1138
1139 Jim_CreateCommand(interp, "unknown", &command_unknown, NULL, NULL);
1140 Jim_CreateCommand(interp, "ocd_find", jim_find, NULL, NULL);
1141 Jim_CreateCommand(interp, "echo", jim_echo, NULL, NULL);
1142 Jim_CreateCommand(interp, "capture", jim_capture, NULL, NULL);
1143
1144 /* Set Jim's STDIO */
1145 interp->cookie_stdin = interp;
1146 interp->cookie_stdout = interp;
1147 interp->cookie_stderr = interp;
1148 interp->cb_fwrite = openocd_jim_fwrite;
1149 interp->cb_fread = openocd_jim_fread ;
1150 interp->cb_vfprintf = openocd_jim_vfprintf;
1151 interp->cb_fflush = openocd_jim_fflush;
1152 interp->cb_fgets = openocd_jim_fgets;
1153
1154 register_commands(context, NULL, command_builtin_handlers);
1155
1156 #if !BUILD_ECOSBOARD
1157 Jim_EventLoopOnLoad(interp);
1158 #endif
1159 Jim_SetAssocData(interp, "context", NULL, context);
1160 if (Jim_Eval_Named(interp, startup_tcl, "embedded:startup.tcl",1) == JIM_ERR)
1161 {
1162 LOG_ERROR("Failed to run startup.tcl (embedded into OpenOCD)");
1163 Jim_PrintErrorMessage(interp);
1164 exit(-1);
1165 }
1166 Jim_DeleteAssocData(interp, "context");
1167
1168 return context;
1169 }
1170
1171 int command_context_mode(struct command_context *cmd_ctx, enum command_mode mode)
1172 {
1173 if (!cmd_ctx)
1174 return ERROR_INVALID_ARGUMENTS;
1175
1176 cmd_ctx->mode = mode;
1177 return ERROR_OK;
1178 }
1179
1180 void process_jim_events(void)
1181 {
1182 #if !BUILD_ECOSBOARD
1183 static int recursion = 0;
1184
1185 if (!recursion)
1186 {
1187 recursion++;
1188 Jim_ProcessEvents (interp, JIM_ALL_EVENTS | JIM_DONT_WAIT);
1189 recursion--;
1190 }
1191 #endif
1192 }
1193
1194 #define DEFINE_PARSE_NUM_TYPE(name, type, func, min, max) \
1195 int parse##name(const char *str, type *ul) \
1196 { \
1197 if (!*str) \
1198 { \
1199 LOG_ERROR("Invalid command argument"); \
1200 return ERROR_COMMAND_ARGUMENT_INVALID; \
1201 } \
1202 char *end; \
1203 *ul = func(str, &end, 0); \
1204 if (*end) \
1205 { \
1206 LOG_ERROR("Invalid command argument"); \
1207 return ERROR_COMMAND_ARGUMENT_INVALID; \
1208 } \
1209 if ((max == *ul) && (ERANGE == errno)) \
1210 { \
1211 LOG_ERROR("Argument overflow"); \
1212 return ERROR_COMMAND_ARGUMENT_OVERFLOW; \
1213 } \
1214 if (min && (min == *ul) && (ERANGE == errno)) \
1215 { \
1216 LOG_ERROR("Argument underflow"); \
1217 return ERROR_COMMAND_ARGUMENT_UNDERFLOW; \
1218 } \
1219 return ERROR_OK; \
1220 }
1221 DEFINE_PARSE_NUM_TYPE(_ulong, unsigned long , strtoul, 0, ULONG_MAX)
1222 DEFINE_PARSE_NUM_TYPE(_ullong, unsigned long long, strtoull, 0, ULLONG_MAX)
1223 DEFINE_PARSE_NUM_TYPE(_long, long , strtol, LONG_MIN, LONG_MAX)
1224 DEFINE_PARSE_NUM_TYPE(_llong, long long, strtoll, LLONG_MIN, LLONG_MAX)
1225
1226 #define DEFINE_PARSE_WRAPPER(name, type, min, max, functype, funcname) \
1227 int parse##name(const char *str, type *ul) \
1228 { \
1229 functype n; \
1230 int retval = parse##funcname(str, &n); \
1231 if (ERROR_OK != retval) \
1232 return retval; \
1233 if (n > max) \
1234 return ERROR_COMMAND_ARGUMENT_OVERFLOW; \
1235 if (min) \
1236 return ERROR_COMMAND_ARGUMENT_UNDERFLOW; \
1237 *ul = n; \
1238 return ERROR_OK; \
1239 }
1240
1241 #define DEFINE_PARSE_ULONG(name, type, min, max) \
1242 DEFINE_PARSE_WRAPPER(name, type, min, max, unsigned long, _ulong)
1243 DEFINE_PARSE_ULONG(_uint, unsigned, 0, UINT_MAX)
1244 DEFINE_PARSE_ULONG(_u32, uint32_t, 0, UINT32_MAX)
1245 DEFINE_PARSE_ULONG(_u16, uint16_t, 0, UINT16_MAX)
1246 DEFINE_PARSE_ULONG(_u8, uint8_t, 0, UINT8_MAX)
1247
1248 #define DEFINE_PARSE_LONG(name, type, min, max) \
1249 DEFINE_PARSE_WRAPPER(name, type, min, max, long, _long)
1250 DEFINE_PARSE_LONG(_int, int, n < INT_MIN, INT_MAX)
1251 DEFINE_PARSE_LONG(_s32, int32_t, n < INT32_MIN, INT32_MAX)
1252 DEFINE_PARSE_LONG(_s16, int16_t, n < INT16_MIN, INT16_MAX)
1253 DEFINE_PARSE_LONG(_s8, int8_t, n < INT8_MIN, INT8_MAX)
1254
1255 static int command_parse_bool(const char *in, bool *out,
1256 const char *on, const char *off)
1257 {
1258 if (strcasecmp(in, on) == 0)
1259 *out = true;
1260 else if (strcasecmp(in, off) == 0)
1261 *out = false;
1262 else
1263 return ERROR_COMMAND_SYNTAX_ERROR;
1264 return ERROR_OK;
1265 }
1266
1267 int command_parse_bool_arg(const char *in, bool *out)
1268 {
1269 if (command_parse_bool(in, out, "on", "off") == ERROR_OK)
1270 return ERROR_OK;
1271 if (command_parse_bool(in, out, "enable", "disable") == ERROR_OK)
1272 return ERROR_OK;
1273 if (command_parse_bool(in, out, "true", "false") == ERROR_OK)
1274 return ERROR_OK;
1275 if (command_parse_bool(in, out, "yes", "no") == ERROR_OK)
1276 return ERROR_OK;
1277 if (command_parse_bool(in, out, "1", "0") == ERROR_OK)
1278 return ERROR_OK;
1279 return ERROR_INVALID_ARGUMENTS;
1280 }
1281
1282 COMMAND_HELPER(handle_command_parse_bool, bool *out, const char *label)
1283 {
1284 switch (CMD_ARGC) {
1285 case 1: {
1286 const char *in = CMD_ARGV[0];
1287 if (command_parse_bool_arg(in, out) != ERROR_OK)
1288 {
1289 LOG_ERROR("%s: argument '%s' is not valid", CMD_NAME, in);
1290 return ERROR_INVALID_ARGUMENTS;
1291 }
1292 // fall through
1293 }
1294 case 0:
1295 LOG_INFO("%s is %s", label, *out ? "enabled" : "disabled");
1296 break;
1297 default:
1298 return ERROR_INVALID_ARGUMENTS;
1299 }
1300 return ERROR_OK;
1301 }

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)