helper/command: fix check on value returned by jim API
[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, see <http://www.gnu.org/licenses/>. *
26 ***************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
31
32 /* see Embedded-HOWTO.txt in Jim Tcl project hosted on BerliOS*/
33 #define JIM_EMBEDDED
34
35 /* @todo the inclusion of target.h here is a layering violation */
36 #include <jtag/jtag.h>
37 #include <target/target.h>
38 #include "command.h"
39 #include "configuration.h"
40 #include "log.h"
41 #include "time_support.h"
42 #include "jim-eventloop.h"
43
44 /* nice short description of source file */
45 #define __THIS__FILE__ "command.c"
46
47 static int run_command(struct command_context *context,
48 struct command *c, const char *words[], unsigned num_words);
49
50 struct log_capture_state {
51 Jim_Interp *interp;
52 Jim_Obj *output;
53 };
54
55 static void tcl_output(void *privData, const char *file, unsigned line,
56 const char *function, const char *string)
57 {
58 struct log_capture_state *state = privData;
59 Jim_AppendString(state->interp, state->output, string, strlen(string));
60 }
61
62 static struct log_capture_state *command_log_capture_start(Jim_Interp *interp)
63 {
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)
68 return NULL;
69
70 struct log_capture_state *state = malloc(sizeof(*state));
71 if (NULL == state)
72 return NULL;
73
74 state->interp = interp;
75 Jim_IncrRefCount(tclOutput);
76 state->output = tclOutput;
77
78 log_add_callback(tcl_output, state);
79
80 return state;
81 }
82
83 /* Classic openocd commands provide progress output which we
84 * will capture and return as a Tcl return value.
85 *
86 * However, if a non-openocd command has been invoked, then it
87 * makes sense to return the tcl return value from that command.
88 *
89 * The tcl return value is empty for openocd commands that provide
90 * progress output.
91 *
92 * Therefore we set the tcl return value only if we actually
93 * captured output.
94 */
95 static void command_log_capture_finish(struct log_capture_state *state)
96 {
97 if (NULL == state)
98 return;
99
100 log_remove_callback(tcl_output, state);
101
102 int length;
103 Jim_GetString(state->output, &length);
104
105 if (length > 0)
106 Jim_SetResult(state->interp, state->output);
107 else {
108 /* No output captured, use tcl return value (which could
109 * be empty too). */
110 }
111 Jim_DecrRefCount(state->interp, state->output);
112
113 free(state);
114 }
115
116 static int command_retval_set(Jim_Interp *interp, int retval)
117 {
118 int *return_retval = Jim_GetAssocData(interp, "retval");
119 if (return_retval != NULL)
120 *return_retval = retval;
121
122 return (retval == ERROR_OK) ? JIM_OK : retval;
123 }
124
125 extern struct command_context *global_cmd_ctx;
126
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, unsigned int argc, Jim_Obj * const *argv)
130 {
131 if (debug_level < LOG_LVL_DEBUG)
132 return;
133
134 char *dbg = alloc_printf("command -");
135 for (unsigned i = 0; i < argc; i++) {
136 int len;
137 const char *w = Jim_GetString(argv[i], &len);
138 char *t = alloc_printf("%s %s", dbg, w);
139 free(dbg);
140 dbg = t;
141 }
142 LOG_DEBUG("%s", dbg);
143 free(dbg);
144 }
145
146 static void script_command_args_free(char **words, unsigned nwords)
147 {
148 for (unsigned i = 0; i < nwords; i++)
149 free(words[i]);
150 free(words);
151 }
152
153 static char **script_command_args_alloc(
154 unsigned argc, Jim_Obj * const *argv, unsigned *nwords)
155 {
156 char **words = malloc(argc * sizeof(char *));
157 if (NULL == words)
158 return NULL;
159
160 unsigned i;
161 for (i = 0; i < argc; i++) {
162 int len;
163 const char *w = Jim_GetString(argv[i], &len);
164 words[i] = strdup(w);
165 if (words[i] == NULL) {
166 script_command_args_free(words, i);
167 return NULL;
168 }
169 }
170 *nwords = i;
171 return words;
172 }
173
174 struct command_context *current_command_context(Jim_Interp *interp)
175 {
176 /* grab the command context from the associated data */
177 struct command_context *cmd_ctx = Jim_GetAssocData(interp, "context");
178 if (NULL == cmd_ctx) {
179 /* Tcl can invoke commands directly instead of via command_run_line(). This would
180 * happen when the Jim Tcl interpreter is provided by eCos or if we are running
181 * commands in a startup script.
182 *
183 * A telnet or gdb server would provide a non-default command context to
184 * handle piping of error output, have a separate current target, etc.
185 */
186 cmd_ctx = global_cmd_ctx;
187 }
188 return cmd_ctx;
189 }
190
191 static int script_command_run(Jim_Interp *interp,
192 int argc, Jim_Obj * const *argv, struct command *c)
193 {
194 target_call_timer_callbacks_now();
195 LOG_USER_N("%s", ""); /* Keep GDB connection alive*/
196
197 unsigned nwords;
198 char **words = script_command_args_alloc(argc, argv, &nwords);
199 if (NULL == words)
200 return JIM_ERR;
201
202 struct command_context *cmd_ctx = current_command_context(interp);
203 int retval = run_command(cmd_ctx, c, (const char **)words, nwords);
204
205 script_command_args_free(words, nwords);
206 return command_retval_set(interp, retval);
207 }
208
209 static int script_command(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
210 {
211 /* the private data is stashed in the interp structure */
212
213 struct command *c = interp->cmdPrivData;
214 assert(c);
215 script_debug(interp, argc, argv);
216 return script_command_run(interp, argc, argv, c);
217 }
218
219 static struct command *command_root(struct command *c)
220 {
221 while (NULL != c->parent)
222 c = c->parent;
223 return c;
224 }
225
226 /**
227 * Find a command by name from a list of commands.
228 * @returns Returns the named command if it exists in the list.
229 * Returns NULL otherwise.
230 */
231 static struct command *command_find(struct command *head, const char *name)
232 {
233 for (struct command *cc = head; cc; cc = cc->next) {
234 if (strcmp(cc->name, name) == 0)
235 return cc;
236 }
237 return NULL;
238 }
239
240 struct command *command_find_in_context(struct command_context *cmd_ctx,
241 const char *name)
242 {
243 return command_find(cmd_ctx->commands, name);
244 }
245 struct command *command_find_in_parent(struct command *parent,
246 const char *name)
247 {
248 return command_find(parent->children, name);
249 }
250
251 /**
252 * Add the command into the linked list, sorted by name.
253 * @param head Address to head of command list pointer, which may be
254 * updated if @c c gets inserted at the beginning of the list.
255 * @param c The command to add to the list pointed to by @c head.
256 */
257 static void command_add_child(struct command **head, struct command *c)
258 {
259 assert(head);
260 if (NULL == *head) {
261 *head = c;
262 return;
263 }
264
265 while ((*head)->next && (strcmp(c->name, (*head)->name) > 0))
266 head = &(*head)->next;
267
268 if (strcmp(c->name, (*head)->name) > 0) {
269 c->next = (*head)->next;
270 (*head)->next = c;
271 } else {
272 c->next = *head;
273 *head = c;
274 }
275 }
276
277 static struct command **command_list_for_parent(
278 struct command_context *cmd_ctx, struct command *parent)
279 {
280 return parent ? &parent->children : &cmd_ctx->commands;
281 }
282
283 static void command_free(struct command *c)
284 {
285 /** @todo if command has a handler, unregister its jim command! */
286
287 while (NULL != c->children) {
288 struct command *tmp = c->children;
289 c->children = tmp->next;
290 command_free(tmp);
291 }
292
293 free(c->name);
294 free(c->help);
295 free(c->usage);
296 free(c);
297 }
298
299 static struct command *command_new(struct command_context *cmd_ctx,
300 struct command *parent, const struct command_registration *cr)
301 {
302 assert(cr->name);
303
304 /*
305 * If it is a non-jim command with no .usage specified,
306 * log an error.
307 *
308 * strlen(.usage) == 0 means that the command takes no
309 * arguments.
310 */
311 if ((cr->jim_handler == NULL) && (cr->usage == NULL)) {
312 LOG_ERROR("BUG: command '%s%s%s' does not have the "
313 "'.usage' field filled out",
314 parent && parent->name ? parent->name : "",
315 parent && parent->name ? " " : "",
316 cr->name);
317 }
318
319 struct command *c = calloc(1, sizeof(struct command));
320 if (NULL == c)
321 return NULL;
322
323 c->name = strdup(cr->name);
324 if (cr->help)
325 c->help = strdup(cr->help);
326 if (cr->usage)
327 c->usage = strdup(cr->usage);
328
329 if (!c->name || (cr->help && !c->help) || (cr->usage && !c->usage))
330 goto command_new_error;
331
332 c->parent = parent;
333 c->handler = cr->handler;
334 c->jim_handler = cr->jim_handler;
335 c->mode = cr->mode;
336
337 command_add_child(command_list_for_parent(cmd_ctx, parent), c);
338
339 return c;
340
341 command_new_error:
342 command_free(c);
343 return NULL;
344 }
345
346 static int command_unknown(Jim_Interp *interp, int argc, Jim_Obj *const *argv);
347
348 static int register_command_handler(struct command_context *cmd_ctx,
349 struct command *c)
350 {
351 Jim_Interp *interp = cmd_ctx->interp;
352
353 LOG_DEBUG("registering '%s'...", c->name);
354
355 Jim_CmdProc *func = c->handler ? &script_command : &command_unknown;
356 int retval = Jim_CreateCommand(interp, c->name, func, c, NULL);
357
358 return retval;
359 }
360
361 struct command *register_command(struct command_context *context,
362 struct command *parent, const struct command_registration *cr)
363 {
364 if (!context || !cr->name)
365 return NULL;
366
367 const char *name = cr->name;
368 struct command **head = command_list_for_parent(context, parent);
369 struct command *c = command_find(*head, name);
370 if (NULL != c) {
371 /* TODO: originally we treated attempting to register a cmd twice as an error
372 * Sometimes we need this behaviour, such as with flash banks.
373 * http://www.mail-archive.com/openocd-development@lists.berlios.de/msg11152.html */
374 LOG_DEBUG("command '%s' is already registered in '%s' context",
375 name, parent ? parent->name : "<global>");
376 return c;
377 }
378
379 c = command_new(context, parent, cr);
380 if (NULL == c)
381 return NULL;
382
383 int retval = JIM_OK;
384 if (NULL != cr->jim_handler && NULL == parent) {
385 retval = Jim_CreateCommand(context->interp, cr->name,
386 cr->jim_handler, NULL, NULL);
387 } else if (NULL != cr->handler || NULL != parent)
388 retval = register_command_handler(context, command_root(c));
389
390 if (retval != JIM_OK) {
391 unregister_command(context, parent, name);
392 c = NULL;
393 }
394 return c;
395 }
396
397 int register_commands(struct command_context *cmd_ctx, struct command *parent,
398 const struct command_registration *cmds)
399 {
400 int retval = ERROR_OK;
401 unsigned i;
402 for (i = 0; cmds[i].name || cmds[i].chain; i++) {
403 const struct command_registration *cr = cmds + i;
404
405 struct command *c = NULL;
406 if (NULL != cr->name) {
407 c = register_command(cmd_ctx, parent, cr);
408 if (NULL == c) {
409 retval = ERROR_FAIL;
410 break;
411 }
412 }
413 if (NULL != cr->chain) {
414 struct command *p = c ? : parent;
415 retval = register_commands(cmd_ctx, p, cr->chain);
416 if (ERROR_OK != retval)
417 break;
418 }
419 }
420 if (ERROR_OK != retval) {
421 for (unsigned j = 0; j < i; j++)
422 unregister_command(cmd_ctx, parent, cmds[j].name);
423 }
424 return retval;
425 }
426
427 int unregister_all_commands(struct command_context *context,
428 struct command *parent)
429 {
430 if (context == NULL)
431 return ERROR_OK;
432
433 struct command **head = command_list_for_parent(context, parent);
434 while (NULL != *head) {
435 struct command *tmp = *head;
436 *head = tmp->next;
437 command_free(tmp);
438 }
439
440 return ERROR_OK;
441 }
442
443 int unregister_command(struct command_context *context,
444 struct command *parent, const char *name)
445 {
446 if ((!context) || (!name))
447 return ERROR_COMMAND_SYNTAX_ERROR;
448
449 struct command *p = NULL;
450 struct command **head = command_list_for_parent(context, parent);
451 for (struct command *c = *head; NULL != c; p = c, c = c->next) {
452 if (strcmp(name, c->name) != 0)
453 continue;
454
455 if (p)
456 p->next = c->next;
457 else
458 *head = c->next;
459
460 command_free(c);
461 return ERROR_OK;
462 }
463
464 return ERROR_OK;
465 }
466
467 void command_set_handler_data(struct command *c, void *p)
468 {
469 if (NULL != c->handler || NULL != c->jim_handler)
470 c->jim_handler_data = p;
471 for (struct command *cc = c->children; NULL != cc; cc = cc->next)
472 command_set_handler_data(cc, p);
473 }
474
475 void command_output_text(struct command_context *context, const char *data)
476 {
477 if (context && context->output_handler && data)
478 context->output_handler(context, data);
479 }
480
481 void command_print_sameline(struct command_invocation *cmd, const char *format, ...)
482 {
483 char *string;
484
485 va_list ap;
486 va_start(ap, format);
487
488 string = alloc_vprintf(format, ap);
489 if (string != NULL && cmd) {
490 /* we want this collected in the log + we also want to pick it up as a tcl return
491 * value.
492 *
493 * The latter bit isn't precisely neat, but will do for now.
494 */
495 Jim_AppendString(cmd->ctx->interp, cmd->output, string, -1);
496 /* We already printed it above
497 * command_output_text(context, string); */
498 free(string);
499 }
500
501 va_end(ap);
502 }
503
504 void command_print(struct command_invocation *cmd, const char *format, ...)
505 {
506 char *string;
507
508 va_list ap;
509 va_start(ap, format);
510
511 string = alloc_vprintf(format, ap);
512 if (string != NULL && cmd) {
513 strcat(string, "\n"); /* alloc_vprintf guaranteed the buffer to be at least one
514 *char longer */
515 /* we want this collected in the log + we also want to pick it up as a tcl return
516 * value.
517 *
518 * The latter bit isn't precisely neat, but will do for now.
519 */
520 Jim_AppendString(cmd->ctx->interp, cmd->output, string, -1);
521 /* We already printed it above
522 * command_output_text(context, string); */
523 free(string);
524 }
525
526 va_end(ap);
527 }
528
529 static char *__command_name(struct command *c, char delim, unsigned extra)
530 {
531 char *name;
532 unsigned len = strlen(c->name);
533 if (NULL == c->parent) {
534 /* allocate enough for the name, child names, and '\0' */
535 name = malloc(len + extra + 1);
536 if (!name) {
537 LOG_ERROR("Out of memory");
538 return NULL;
539 }
540 strcpy(name, c->name);
541 } else {
542 /* parent's extra must include both the space and name */
543 name = __command_name(c->parent, delim, 1 + len + extra);
544 char dstr[2] = { delim, 0 };
545 strcat(name, dstr);
546 strcat(name, c->name);
547 }
548 return name;
549 }
550
551 char *command_name(struct command *c, char delim)
552 {
553 return __command_name(c, delim, 0);
554 }
555
556 static bool command_can_run(struct command_context *cmd_ctx, struct command *c)
557 {
558 if (c->mode == COMMAND_ANY || c->mode == cmd_ctx->mode)
559 return true;
560
561 /* Many commands may be run only before/after 'init' */
562 const char *when;
563 switch (c->mode) {
564 case COMMAND_CONFIG:
565 when = "before";
566 break;
567 case COMMAND_EXEC:
568 when = "after";
569 break;
570 /* handle the impossible with humor; it guarantees a bug report! */
571 default:
572 when = "if Cthulhu is summoned by";
573 break;
574 }
575 char *full_name = command_name(c, ' ');
576 LOG_ERROR("The '%s' command must be used %s 'init'.",
577 full_name ? full_name : c->name, when);
578 free(full_name);
579 return false;
580 }
581
582 static int run_command(struct command_context *context,
583 struct command *c, const char *words[], unsigned num_words)
584 {
585 if (!command_can_run(context, c))
586 return ERROR_FAIL;
587
588 struct command_invocation cmd = {
589 .ctx = context,
590 .current = c,
591 .name = c->name,
592 .argc = num_words - 1,
593 .argv = words + 1,
594 };
595 /* Black magic of overridden current target:
596 * If the command we are going to handle has a target prefix,
597 * override the current target temporarily for the time
598 * of processing the command.
599 * current_target_override is used also for event handlers
600 * therefore we prevent touching it if command has no prefix.
601 * Previous override is saved and restored back to ensure
602 * correct work when run_command() is re-entered. */
603 struct target *saved_target_override = context->current_target_override;
604 if (c->jim_handler_data)
605 context->current_target_override = c->jim_handler_data;
606
607 cmd.output = Jim_NewEmptyStringObj(context->interp);
608 Jim_IncrRefCount(cmd.output);
609
610 int retval = c->handler(&cmd);
611
612 if (c->jim_handler_data)
613 context->current_target_override = saved_target_override;
614
615 if (retval == ERROR_COMMAND_SYNTAX_ERROR) {
616 /* Print help for command */
617 char *full_name = command_name(c, ' ');
618 if (NULL != full_name) {
619 command_run_linef(context, "usage %s", full_name);
620 free(full_name);
621 }
622 } else if (retval == ERROR_COMMAND_CLOSE_CONNECTION) {
623 /* just fall through for a shutdown request */
624 } else {
625 if (retval != ERROR_OK) {
626 char *full_name = command_name(c, ' ');
627 LOG_DEBUG("Command '%s' failed with error code %d",
628 full_name ? full_name : c->name, retval);
629 free(full_name);
630 }
631 /* Use the command output as the Tcl result */
632 Jim_SetResult(context->interp, cmd.output);
633 }
634 Jim_DecrRefCount(context->interp, cmd.output);
635
636 return retval;
637 }
638
639 int command_run_line(struct command_context *context, char *line)
640 {
641 /* all the parent commands have been registered with the interpreter
642 * so, can just evaluate the line as a script and check for
643 * results
644 */
645 /* run the line thru a script engine */
646 int retval = ERROR_FAIL;
647 int retcode;
648 /* Beware! This code needs to be reentrant. It is also possible
649 * for OpenOCD commands to be invoked directly from Tcl. This would
650 * happen when the Jim Tcl interpreter is provided by eCos for
651 * instance.
652 */
653 struct target *saved_target_override = context->current_target_override;
654 context->current_target_override = NULL;
655
656 Jim_Interp *interp = context->interp;
657 struct command_context *old_context = Jim_GetAssocData(interp, "context");
658 Jim_DeleteAssocData(interp, "context");
659 retcode = Jim_SetAssocData(interp, "context", NULL, context);
660 if (retcode == JIM_OK) {
661 /* associated the return value */
662 Jim_DeleteAssocData(interp, "retval");
663 retcode = Jim_SetAssocData(interp, "retval", NULL, &retval);
664 if (retcode == JIM_OK) {
665 retcode = Jim_Eval_Named(interp, line, 0, 0);
666
667 Jim_DeleteAssocData(interp, "retval");
668 }
669 Jim_DeleteAssocData(interp, "context");
670 int inner_retcode = Jim_SetAssocData(interp, "context", NULL, old_context);
671 if (retcode == JIM_OK)
672 retcode = inner_retcode;
673 }
674 context->current_target_override = saved_target_override;
675 if (retcode == JIM_OK) {
676 const char *result;
677 int reslen;
678
679 result = Jim_GetString(Jim_GetResult(interp), &reslen);
680 if (reslen > 0) {
681 command_output_text(context, result);
682 command_output_text(context, "\n");
683 }
684 retval = ERROR_OK;
685 } else if (retcode == JIM_EXIT) {
686 /* ignore.
687 * exit(Jim_GetExitCode(interp)); */
688 } else if (retcode == ERROR_COMMAND_CLOSE_CONNECTION) {
689 return retcode;
690 } else {
691 Jim_MakeErrorMessage(interp);
692 /* error is broadcast */
693 LOG_USER("%s", Jim_GetString(Jim_GetResult(interp), NULL));
694
695 if (retval == ERROR_OK) {
696 /* It wasn't a low level OpenOCD command that failed */
697 return ERROR_FAIL;
698 }
699 return retval;
700 }
701
702 return retval;
703 }
704
705 int command_run_linef(struct command_context *context, const char *format, ...)
706 {
707 int retval = ERROR_FAIL;
708 char *string;
709 va_list ap;
710 va_start(ap, format);
711 string = alloc_vprintf(format, ap);
712 if (string != NULL) {
713 retval = command_run_line(context, string);
714 free(string);
715 }
716 va_end(ap);
717 return retval;
718 }
719
720 void command_set_output_handler(struct command_context *context,
721 command_output_handler_t output_handler, void *priv)
722 {
723 context->output_handler = output_handler;
724 context->output_handler_priv = priv;
725 }
726
727 struct command_context *copy_command_context(struct command_context *context)
728 {
729 struct command_context *copy_context = malloc(sizeof(struct command_context));
730
731 *copy_context = *context;
732
733 return copy_context;
734 }
735
736 void command_done(struct command_context *cmd_ctx)
737 {
738 if (NULL == cmd_ctx)
739 return;
740
741 free(cmd_ctx);
742 }
743
744 /* find full path to file */
745 static int jim_find(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
746 {
747 if (argc != 2)
748 return JIM_ERR;
749 const char *file = Jim_GetString(argv[1], NULL);
750 char *full_path = find_file(file);
751 if (full_path == NULL)
752 return JIM_ERR;
753 Jim_Obj *result = Jim_NewStringObj(interp, full_path, strlen(full_path));
754 free(full_path);
755
756 Jim_SetResult(interp, result);
757 return JIM_OK;
758 }
759
760 COMMAND_HANDLER(jim_echo)
761 {
762 if (CMD_ARGC == 2 && !strcmp(CMD_ARGV[0], "-n")) {
763 LOG_USER_N("%s", CMD_ARGV[1]);
764 return JIM_OK;
765 }
766 if (CMD_ARGC != 1)
767 return JIM_ERR;
768 LOG_USER("%s", CMD_ARGV[0]);
769 return JIM_OK;
770 }
771
772 /* Capture progress output and return as tcl return value. If the
773 * progress output was empty, return tcl return value.
774 */
775 static int jim_capture(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
776 {
777 if (argc != 2)
778 return JIM_ERR;
779
780 struct log_capture_state *state = command_log_capture_start(interp);
781
782 /* disable polling during capture. This avoids capturing output
783 * from polling.
784 *
785 * This is necessary in order to avoid accidentally getting a non-empty
786 * string for tcl fn's.
787 */
788 bool save_poll = jtag_poll_get_enabled();
789
790 jtag_poll_set_enabled(false);
791
792 const char *str = Jim_GetString(argv[1], NULL);
793 int retcode = Jim_Eval_Named(interp, str, __THIS__FILE__, __LINE__);
794
795 jtag_poll_set_enabled(save_poll);
796
797 command_log_capture_finish(state);
798
799 return retcode;
800 }
801
802 static COMMAND_HELPER(command_help_find, struct command *head,
803 struct command **out)
804 {
805 if (0 == CMD_ARGC)
806 return ERROR_COMMAND_SYNTAX_ERROR;
807 *out = command_find(head, CMD_ARGV[0]);
808 if (NULL == *out)
809 return ERROR_COMMAND_SYNTAX_ERROR;
810 if (--CMD_ARGC == 0)
811 return ERROR_OK;
812 CMD_ARGV++;
813 return CALL_COMMAND_HANDLER(command_help_find, (*out)->children, out);
814 }
815
816 static COMMAND_HELPER(command_help_show, struct command *c, unsigned n,
817 bool show_help, const char *cmd_match);
818
819 static COMMAND_HELPER(command_help_show_list, struct command *head, unsigned n,
820 bool show_help, const char *cmd_match)
821 {
822 for (struct command *c = head; NULL != c; c = c->next)
823 CALL_COMMAND_HANDLER(command_help_show, c, n, show_help, cmd_match);
824 return ERROR_OK;
825 }
826
827 #define HELP_LINE_WIDTH(_n) (int)(76 - (2 * _n))
828
829 static void command_help_show_indent(unsigned n)
830 {
831 for (unsigned i = 0; i < n; i++)
832 LOG_USER_N(" ");
833 }
834 static void command_help_show_wrap(const char *str, unsigned n, unsigned n2)
835 {
836 const char *cp = str, *last = str;
837 while (*cp) {
838 const char *next = last;
839 do {
840 cp = next;
841 do {
842 next++;
843 } while (*next != ' ' && *next != '\t' && *next != '\0');
844 } while ((next - last < HELP_LINE_WIDTH(n)) && *next != '\0');
845 if (next - last < HELP_LINE_WIDTH(n))
846 cp = next;
847 command_help_show_indent(n);
848 LOG_USER("%.*s", (int)(cp - last), last);
849 last = cp + 1;
850 n = n2;
851 }
852 }
853
854 static COMMAND_HELPER(command_help_show, struct command *c, unsigned n,
855 bool show_help, const char *cmd_match)
856 {
857 char *cmd_name = command_name(c, ' ');
858 if (NULL == cmd_name)
859 return ERROR_FAIL;
860
861 /* If the match string occurs anywhere, we print out
862 * stuff for this command. */
863 bool is_match = (strstr(cmd_name, cmd_match) != NULL) ||
864 ((c->usage != NULL) && (strstr(c->usage, cmd_match) != NULL)) ||
865 ((c->help != NULL) && (strstr(c->help, cmd_match) != NULL));
866
867 if (is_match) {
868 command_help_show_indent(n);
869 LOG_USER_N("%s", cmd_name);
870 }
871 free(cmd_name);
872
873 if (is_match) {
874 if (c->usage && strlen(c->usage) > 0) {
875 LOG_USER_N(" ");
876 command_help_show_wrap(c->usage, 0, n + 5);
877 } else
878 LOG_USER_N("\n");
879 }
880
881 if (is_match && show_help) {
882 char *msg;
883
884 /* Normal commands are runtime-only; highlight exceptions */
885 if (c->mode != COMMAND_EXEC) {
886 const char *stage_msg = "";
887
888 switch (c->mode) {
889 case COMMAND_CONFIG:
890 stage_msg = " (configuration command)";
891 break;
892 case COMMAND_ANY:
893 stage_msg = " (command valid any time)";
894 break;
895 default:
896 stage_msg = " (?mode error?)";
897 break;
898 }
899 msg = alloc_printf("%s%s", c->help ? : "", stage_msg);
900 } else
901 msg = alloc_printf("%s", c->help ? : "");
902
903 if (NULL != msg) {
904 command_help_show_wrap(msg, n + 3, n + 3);
905 free(msg);
906 } else
907 return -ENOMEM;
908 }
909
910 if (++n > 5) {
911 LOG_ERROR("command recursion exceeded");
912 return ERROR_FAIL;
913 }
914
915 return CALL_COMMAND_HANDLER(command_help_show_list,
916 c->children, n, show_help, cmd_match);
917 }
918
919 COMMAND_HANDLER(handle_help_command)
920 {
921 bool full = strcmp(CMD_NAME, "help") == 0;
922 int retval;
923 struct command *c = CMD_CTX->commands;
924 char *cmd_match = NULL;
925
926 if (CMD_ARGC == 0)
927 cmd_match = "";
928 else if (CMD_ARGC >= 1) {
929 unsigned i;
930
931 for (i = 0; i < CMD_ARGC; ++i) {
932 if (NULL != cmd_match) {
933 char *prev = cmd_match;
934
935 cmd_match = alloc_printf("%s %s", cmd_match, CMD_ARGV[i]);
936 free(prev);
937 if (NULL == cmd_match) {
938 LOG_ERROR("unable to build search string");
939 return -ENOMEM;
940 }
941 } else {
942 cmd_match = alloc_printf("%s", CMD_ARGV[i]);
943 if (NULL == cmd_match) {
944 LOG_ERROR("unable to build search string");
945 return -ENOMEM;
946 }
947 }
948 }
949 } else
950 return ERROR_COMMAND_SYNTAX_ERROR;
951
952 retval = CALL_COMMAND_HANDLER(command_help_show_list,
953 c, 0, full, cmd_match);
954
955 if (CMD_ARGC >= 1)
956 free(cmd_match);
957 return retval;
958 }
959
960 static int command_unknown_find(unsigned argc, Jim_Obj *const *argv,
961 struct command *head, struct command **out)
962 {
963 if (0 == argc)
964 return argc;
965 const char *cmd_name = Jim_GetString(argv[0], NULL);
966 struct command *c = command_find(head, cmd_name);
967 if (NULL == c)
968 return argc;
969 *out = c;
970 return command_unknown_find(--argc, ++argv, (*out)->children, out);
971 }
972
973 static char *alloc_concatenate_strings(int argc, Jim_Obj * const *argv)
974 {
975 char *prev, *all;
976 int i;
977
978 assert(argc >= 1);
979
980 all = strdup(Jim_GetString(argv[0], NULL));
981 if (!all) {
982 LOG_ERROR("Out of memory");
983 return NULL;
984 }
985
986 for (i = 1; i < argc; ++i) {
987 prev = all;
988 all = alloc_printf("%s %s", all, Jim_GetString(argv[i], NULL));
989 free(prev);
990 if (!all) {
991 LOG_ERROR("Out of memory");
992 return NULL;
993 }
994 }
995
996 return all;
997 }
998
999 static int run_usage(Jim_Interp *interp, int argc_valid, int argc, Jim_Obj * const *argv)
1000 {
1001 struct command_context *cmd_ctx = current_command_context(interp);
1002 char *command;
1003 int retval;
1004
1005 assert(argc_valid >= 1);
1006 assert(argc >= argc_valid);
1007
1008 command = alloc_concatenate_strings(argc_valid, argv);
1009 if (!command)
1010 return JIM_ERR;
1011
1012 retval = command_run_linef(cmd_ctx, "usage %s", command);
1013 if (retval != ERROR_OK) {
1014 LOG_ERROR("unable to execute command \"usage %s\"", command);
1015 return JIM_ERR;
1016 }
1017
1018 if (argc_valid == argc)
1019 LOG_ERROR("%s: command requires more arguments", command);
1020 else {
1021 free(command);
1022 command = alloc_concatenate_strings(argc - argc_valid, argv + argc_valid);
1023 if (!command)
1024 return JIM_ERR;
1025 LOG_ERROR("invalid subcommand \"%s\"", command);
1026 }
1027
1028 free(command);
1029 return retval;
1030 }
1031
1032 static int command_unknown(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
1033 {
1034 script_debug(interp, argc, argv);
1035
1036 struct command_context *cmd_ctx = current_command_context(interp);
1037 struct command *c = cmd_ctx->commands;
1038 int remaining = command_unknown_find(argc, argv, c, &c);
1039 /* if nothing could be consumed, then it's really an unknown command */
1040 if (remaining == argc) {
1041 const char *cmd = Jim_GetString(argv[0], NULL);
1042 LOG_ERROR("Unknown command:\n %s", cmd);
1043 return JIM_OK;
1044 }
1045
1046 Jim_Obj *const *start;
1047 unsigned count;
1048 if (c->handler || c->jim_handler) {
1049 /* include the command name in the list */
1050 count = remaining + 1;
1051 start = argv + (argc - remaining - 1);
1052 } else {
1053 count = argc - remaining;
1054 start = argv;
1055 run_usage(interp, count, argc, start);
1056 return JIM_ERR;
1057 }
1058 /* pass the command through to the intended handler */
1059 if (c->jim_handler) {
1060 if (!command_can_run(cmd_ctx, c))
1061 return JIM_ERR;
1062
1063 interp->cmdPrivData = c->jim_handler_data;
1064 return (*c->jim_handler)(interp, count, start);
1065 }
1066
1067 return script_command_run(interp, count, start, c);
1068 }
1069
1070 static int jim_command_mode(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
1071 {
1072 struct command_context *cmd_ctx = current_command_context(interp);
1073 enum command_mode mode;
1074
1075 if (argc > 1) {
1076 struct command *c = cmd_ctx->commands;
1077 int remaining = command_unknown_find(argc - 1, argv + 1, c, &c);
1078 /* if nothing could be consumed, then it's an unknown command */
1079 if (remaining == argc - 1) {
1080 Jim_SetResultString(interp, "unknown", -1);
1081 return JIM_OK;
1082 }
1083 mode = c->mode;
1084 } else
1085 mode = cmd_ctx->mode;
1086
1087 const char *mode_str;
1088 switch (mode) {
1089 case COMMAND_ANY:
1090 mode_str = "any";
1091 break;
1092 case COMMAND_CONFIG:
1093 mode_str = "config";
1094 break;
1095 case COMMAND_EXEC:
1096 mode_str = "exec";
1097 break;
1098 default:
1099 mode_str = "unknown";
1100 break;
1101 }
1102 Jim_SetResultString(interp, mode_str, -1);
1103 return JIM_OK;
1104 }
1105
1106 int help_add_command(struct command_context *cmd_ctx, struct command *parent,
1107 const char *cmd_name, const char *help_text, const char *usage)
1108 {
1109 struct command **head = command_list_for_parent(cmd_ctx, parent);
1110 struct command *nc = command_find(*head, cmd_name);
1111 if (NULL == nc) {
1112 /* add a new command with help text */
1113 struct command_registration cr = {
1114 .name = cmd_name,
1115 .mode = COMMAND_ANY,
1116 .help = help_text,
1117 .usage = usage ? : "",
1118 };
1119 nc = register_command(cmd_ctx, parent, &cr);
1120 if (NULL == nc) {
1121 LOG_ERROR("failed to add '%s' help text", cmd_name);
1122 return ERROR_FAIL;
1123 }
1124 LOG_DEBUG("added '%s' help text", cmd_name);
1125 return ERROR_OK;
1126 }
1127 if (help_text) {
1128 bool replaced = false;
1129 if (nc->help) {
1130 free(nc->help);
1131 replaced = true;
1132 }
1133 nc->help = strdup(help_text);
1134 if (replaced)
1135 LOG_INFO("replaced existing '%s' help", cmd_name);
1136 else
1137 LOG_DEBUG("added '%s' help text", cmd_name);
1138 }
1139 if (usage) {
1140 bool replaced = false;
1141 if (nc->usage) {
1142 if (*nc->usage)
1143 replaced = true;
1144 free(nc->usage);
1145 }
1146 nc->usage = strdup(usage);
1147 if (replaced)
1148 LOG_INFO("replaced existing '%s' usage", cmd_name);
1149 else
1150 LOG_DEBUG("added '%s' usage text", cmd_name);
1151 }
1152 return ERROR_OK;
1153 }
1154
1155 COMMAND_HANDLER(handle_help_add_command)
1156 {
1157 if (CMD_ARGC < 2) {
1158 LOG_ERROR("%s: insufficient arguments", CMD_NAME);
1159 return ERROR_COMMAND_SYNTAX_ERROR;
1160 }
1161
1162 /* save help text and remove it from argument list */
1163 const char *str = CMD_ARGV[--CMD_ARGC];
1164 const char *help = !strcmp(CMD_NAME, "add_help_text") ? str : NULL;
1165 const char *usage = !strcmp(CMD_NAME, "add_usage_text") ? str : NULL;
1166 if (!help && !usage) {
1167 LOG_ERROR("command name '%s' is unknown", CMD_NAME);
1168 return ERROR_COMMAND_SYNTAX_ERROR;
1169 }
1170 /* likewise for the leaf command name */
1171 const char *cmd_name = CMD_ARGV[--CMD_ARGC];
1172
1173 struct command *c = NULL;
1174 if (CMD_ARGC > 0) {
1175 c = CMD_CTX->commands;
1176 int retval = CALL_COMMAND_HANDLER(command_help_find, c, &c);
1177 if (ERROR_OK != retval)
1178 return retval;
1179 }
1180 return help_add_command(CMD_CTX, c, cmd_name, help, usage);
1181 }
1182
1183 /* sleep command sleeps for <n> milliseconds
1184 * this is useful in target startup scripts
1185 */
1186 COMMAND_HANDLER(handle_sleep_command)
1187 {
1188 bool busy = false;
1189 if (CMD_ARGC == 2) {
1190 if (strcmp(CMD_ARGV[1], "busy") == 0)
1191 busy = true;
1192 else
1193 return ERROR_COMMAND_SYNTAX_ERROR;
1194 } else if (CMD_ARGC < 1 || CMD_ARGC > 2)
1195 return ERROR_COMMAND_SYNTAX_ERROR;
1196
1197 unsigned long duration = 0;
1198 int retval = parse_ulong(CMD_ARGV[0], &duration);
1199 if (ERROR_OK != retval)
1200 return retval;
1201
1202 if (!busy) {
1203 int64_t then = timeval_ms();
1204 while (timeval_ms() - then < (int64_t)duration) {
1205 target_call_timer_callbacks_now();
1206 usleep(1000);
1207 }
1208 } else
1209 busy_sleep(duration);
1210
1211 return ERROR_OK;
1212 }
1213
1214 static const struct command_registration command_subcommand_handlers[] = {
1215 {
1216 .name = "mode",
1217 .mode = COMMAND_ANY,
1218 .jim_handler = jim_command_mode,
1219 .usage = "[command_name ...]",
1220 .help = "Returns the command modes allowed by a command: "
1221 "'any', 'config', or 'exec'. If no command is "
1222 "specified, returns the current command mode. "
1223 "Returns 'unknown' if an unknown command is given. "
1224 "Command can be multiple tokens.",
1225 },
1226 COMMAND_REGISTRATION_DONE
1227 };
1228
1229 static const struct command_registration command_builtin_handlers[] = {
1230 {
1231 .name = "ocd_find",
1232 .mode = COMMAND_ANY,
1233 .jim_handler = jim_find,
1234 .help = "find full path to file",
1235 .usage = "file",
1236 },
1237 {
1238 .name = "capture",
1239 .mode = COMMAND_ANY,
1240 .jim_handler = jim_capture,
1241 .help = "Capture progress output and return as tcl return value. If the "
1242 "progress output was empty, return tcl return value.",
1243 .usage = "command",
1244 },
1245 {
1246 .name = "echo",
1247 .handler = jim_echo,
1248 .mode = COMMAND_ANY,
1249 .help = "Logs a message at \"user\" priority. "
1250 "Output message to stdout. "
1251 "Option \"-n\" suppresses trailing newline",
1252 .usage = "[-n] string",
1253 },
1254 {
1255 .name = "add_help_text",
1256 .handler = handle_help_add_command,
1257 .mode = COMMAND_ANY,
1258 .help = "Add new command help text; "
1259 "Command can be multiple tokens.",
1260 .usage = "command_name helptext_string",
1261 },
1262 {
1263 .name = "add_usage_text",
1264 .handler = handle_help_add_command,
1265 .mode = COMMAND_ANY,
1266 .help = "Add new command usage text; "
1267 "command can be multiple tokens.",
1268 .usage = "command_name usage_string",
1269 },
1270 {
1271 .name = "sleep",
1272 .handler = handle_sleep_command,
1273 .mode = COMMAND_ANY,
1274 .help = "Sleep for specified number of milliseconds. "
1275 "\"busy\" will busy wait instead (avoid this).",
1276 .usage = "milliseconds ['busy']",
1277 },
1278 {
1279 .name = "help",
1280 .handler = handle_help_command,
1281 .mode = COMMAND_ANY,
1282 .help = "Show full command help; "
1283 "command can be multiple tokens.",
1284 .usage = "[command_name]",
1285 },
1286 {
1287 .name = "usage",
1288 .handler = handle_help_command,
1289 .mode = COMMAND_ANY,
1290 .help = "Show basic command usage; "
1291 "command can be multiple tokens.",
1292 .usage = "[command_name]",
1293 },
1294 {
1295 .name = "command",
1296 .mode = COMMAND_ANY,
1297 .help = "core command group (introspection)",
1298 .chain = command_subcommand_handlers,
1299 .usage = "",
1300 },
1301 COMMAND_REGISTRATION_DONE
1302 };
1303
1304 struct command_context *command_init(const char *startup_tcl, Jim_Interp *interp)
1305 {
1306 struct command_context *context = calloc(1, sizeof(struct command_context));
1307 const char *HostOs;
1308
1309 context->mode = COMMAND_EXEC;
1310
1311 /* Create a jim interpreter if we were not handed one */
1312 if (interp == NULL) {
1313 /* Create an interpreter */
1314 interp = Jim_CreateInterp();
1315 /* Add all the Jim core commands */
1316 Jim_RegisterCoreCommands(interp);
1317 Jim_InitStaticExtensions(interp);
1318 }
1319
1320 context->interp = interp;
1321
1322 /* Stick to lowercase for HostOS strings. */
1323 #if defined(_MSC_VER)
1324 /* WinXX - is generic, the forward
1325 * looking problem is this:
1326 *
1327 * "win32" or "win64"
1328 *
1329 * "winxx" is generic.
1330 */
1331 HostOs = "winxx";
1332 #elif defined(__linux__)
1333 HostOs = "linux";
1334 #elif defined(__APPLE__) || defined(__DARWIN__)
1335 HostOs = "darwin";
1336 #elif defined(__CYGWIN__)
1337 HostOs = "cygwin";
1338 #elif defined(__MINGW32__)
1339 HostOs = "mingw32";
1340 #elif defined(__ECOS)
1341 HostOs = "ecos";
1342 #elif defined(__FreeBSD__)
1343 HostOs = "freebsd";
1344 #elif defined(__NetBSD__)
1345 HostOs = "netbsd";
1346 #elif defined(__OpenBSD__)
1347 HostOs = "openbsd";
1348 #else
1349 #warning "Unrecognized host OS..."
1350 HostOs = "other";
1351 #endif
1352 Jim_SetGlobalVariableStr(interp, "ocd_HOSTOS",
1353 Jim_NewStringObj(interp, HostOs, strlen(HostOs)));
1354
1355 register_commands(context, NULL, command_builtin_handlers);
1356
1357 Jim_SetAssocData(interp, "context", NULL, context);
1358 if (Jim_Eval_Named(interp, startup_tcl, "embedded:startup.tcl", 1) == JIM_ERR) {
1359 LOG_ERROR("Failed to run startup.tcl (embedded into OpenOCD)");
1360 Jim_MakeErrorMessage(interp);
1361 LOG_USER_N("%s", Jim_GetString(Jim_GetResult(interp), NULL));
1362 exit(-1);
1363 }
1364 Jim_DeleteAssocData(interp, "context");
1365
1366 return context;
1367 }
1368
1369 void command_exit(struct command_context *context)
1370 {
1371 if (!context)
1372 return;
1373
1374 Jim_FreeInterp(context->interp);
1375 command_done(context);
1376 }
1377
1378 int command_context_mode(struct command_context *cmd_ctx, enum command_mode mode)
1379 {
1380 if (!cmd_ctx)
1381 return ERROR_COMMAND_SYNTAX_ERROR;
1382
1383 cmd_ctx->mode = mode;
1384 return ERROR_OK;
1385 }
1386
1387 void process_jim_events(struct command_context *cmd_ctx)
1388 {
1389 static int recursion;
1390 if (recursion)
1391 return;
1392
1393 recursion++;
1394 Jim_ProcessEvents(cmd_ctx->interp, JIM_ALL_EVENTS | JIM_DONT_WAIT);
1395 recursion--;
1396 }
1397
1398 #define DEFINE_PARSE_NUM_TYPE(name, type, func, min, max) \
1399 int parse ## name(const char *str, type * ul) \
1400 { \
1401 if (!*str) { \
1402 LOG_ERROR("Invalid command argument"); \
1403 return ERROR_COMMAND_ARGUMENT_INVALID; \
1404 } \
1405 char *end; \
1406 errno = 0; \
1407 *ul = func(str, &end, 0); \
1408 if (*end) { \
1409 LOG_ERROR("Invalid command argument"); \
1410 return ERROR_COMMAND_ARGUMENT_INVALID; \
1411 } \
1412 if ((max == *ul) && (ERANGE == errno)) { \
1413 LOG_ERROR("Argument overflow"); \
1414 return ERROR_COMMAND_ARGUMENT_OVERFLOW; \
1415 } \
1416 if (min && (min == *ul) && (ERANGE == errno)) { \
1417 LOG_ERROR("Argument underflow"); \
1418 return ERROR_COMMAND_ARGUMENT_UNDERFLOW; \
1419 } \
1420 return ERROR_OK; \
1421 }
1422 DEFINE_PARSE_NUM_TYPE(_ulong, unsigned long, strtoul, 0, ULONG_MAX)
1423 DEFINE_PARSE_NUM_TYPE(_ullong, unsigned long long, strtoull, 0, ULLONG_MAX)
1424 DEFINE_PARSE_NUM_TYPE(_long, long, strtol, LONG_MIN, LONG_MAX)
1425 DEFINE_PARSE_NUM_TYPE(_llong, long long, strtoll, LLONG_MIN, LLONG_MAX)
1426
1427 #define DEFINE_PARSE_WRAPPER(name, type, min, max, functype, funcname) \
1428 int parse ## name(const char *str, type * ul) \
1429 { \
1430 functype n; \
1431 int retval = parse ## funcname(str, &n); \
1432 if (ERROR_OK != retval) \
1433 return retval; \
1434 if (n > max) \
1435 return ERROR_COMMAND_ARGUMENT_OVERFLOW; \
1436 if (min) \
1437 return ERROR_COMMAND_ARGUMENT_UNDERFLOW; \
1438 *ul = n; \
1439 return ERROR_OK; \
1440 }
1441
1442 #define DEFINE_PARSE_ULONGLONG(name, type, min, max) \
1443 DEFINE_PARSE_WRAPPER(name, type, min, max, unsigned long long, _ullong)
1444 DEFINE_PARSE_ULONGLONG(_uint, unsigned, 0, UINT_MAX)
1445 DEFINE_PARSE_ULONGLONG(_u64, uint64_t, 0, UINT64_MAX)
1446 DEFINE_PARSE_ULONGLONG(_u32, uint32_t, 0, UINT32_MAX)
1447 DEFINE_PARSE_ULONGLONG(_u16, uint16_t, 0, UINT16_MAX)
1448 DEFINE_PARSE_ULONGLONG(_u8, uint8_t, 0, UINT8_MAX)
1449
1450 DEFINE_PARSE_ULONGLONG(_target_addr, target_addr_t, 0, TARGET_ADDR_MAX)
1451
1452 #define DEFINE_PARSE_LONGLONG(name, type, min, max) \
1453 DEFINE_PARSE_WRAPPER(name, type, min, max, long long, _llong)
1454 DEFINE_PARSE_LONGLONG(_int, int, n < INT_MIN, INT_MAX)
1455 DEFINE_PARSE_LONGLONG(_s64, int64_t, n < INT64_MIN, INT64_MAX)
1456 DEFINE_PARSE_LONGLONG(_s32, int32_t, n < INT32_MIN, INT32_MAX)
1457 DEFINE_PARSE_LONGLONG(_s16, int16_t, n < INT16_MIN, INT16_MAX)
1458 DEFINE_PARSE_LONGLONG(_s8, int8_t, n < INT8_MIN, INT8_MAX)
1459
1460 static int command_parse_bool(const char *in, bool *out,
1461 const char *on, const char *off)
1462 {
1463 if (strcasecmp(in, on) == 0)
1464 *out = true;
1465 else if (strcasecmp(in, off) == 0)
1466 *out = false;
1467 else
1468 return ERROR_COMMAND_SYNTAX_ERROR;
1469 return ERROR_OK;
1470 }
1471
1472 int command_parse_bool_arg(const char *in, bool *out)
1473 {
1474 if (command_parse_bool(in, out, "on", "off") == ERROR_OK)
1475 return ERROR_OK;
1476 if (command_parse_bool(in, out, "enable", "disable") == ERROR_OK)
1477 return ERROR_OK;
1478 if (command_parse_bool(in, out, "true", "false") == ERROR_OK)
1479 return ERROR_OK;
1480 if (command_parse_bool(in, out, "yes", "no") == ERROR_OK)
1481 return ERROR_OK;
1482 if (command_parse_bool(in, out, "1", "0") == ERROR_OK)
1483 return ERROR_OK;
1484 return ERROR_COMMAND_SYNTAX_ERROR;
1485 }
1486
1487 COMMAND_HELPER(handle_command_parse_bool, bool *out, const char *label)
1488 {
1489 switch (CMD_ARGC) {
1490 case 1: {
1491 const char *in = CMD_ARGV[0];
1492 if (command_parse_bool_arg(in, out) != ERROR_OK) {
1493 LOG_ERROR("%s: argument '%s' is not valid", CMD_NAME, in);
1494 return ERROR_COMMAND_SYNTAX_ERROR;
1495 }
1496 }
1497 /* fallthrough */
1498 case 0:
1499 LOG_INFO("%s is %s", label, *out ? "enabled" : "disabled");
1500 break;
1501 default:
1502 return ERROR_COMMAND_SYNTAX_ERROR;
1503 }
1504 return ERROR_OK;
1505 }

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)