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

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)