Use function_view in cli-script.c
[binutils-gdb.git] / gdb / cli / cli-script.c
1 /* GDB CLI command scripting.
2
3 Copyright (C) 1986-2018 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include "defs.h"
21 #include "value.h"
22 #include "language.h" /* For value_true */
23 #include <ctype.h>
24
25 #include "ui-out.h"
26 #include "top.h"
27 #include "breakpoint.h"
28 #include "cli/cli-cmds.h"
29 #include "cli/cli-decode.h"
30 #include "cli/cli-script.h"
31
32 #include "extension.h"
33 #include "interps.h"
34 #include "compile/compile.h"
35 #include "common/gdb_string_view.h"
36
37 #include <vector>
38
39 /* Prototypes for local functions. */
40
41 static enum command_control_type
42 recurse_read_control_structure
43 (gdb::function_view<const char * ()> read_next_line_func,
44 struct command_line *current_cmd,
45 gdb::function_view<void (const char *)> validator);
46
47 static void do_define_command (const char *comname, int from_tty,
48 const counted_command_line *commands);
49
50 static char *read_next_line (void);
51
52 /* Level of control structure when reading. */
53 static int control_level;
54
55 /* Level of control structure when executing. */
56 static int command_nest_depth = 1;
57
58 /* This is to prevent certain commands being printed twice. */
59 static int suppress_next_print_command_trace = 0;
60
61 /* Structure for arguments to user defined functions. */
62
63 class user_args
64 {
65 public:
66 /* Save the command line and store the locations of arguments passed
67 to the user defined function. */
68 explicit user_args (const char *line);
69
70 /* Insert the stored user defined arguments into the $arg arguments
71 found in LINE. */
72 std::string insert_args (const char *line) const;
73
74 private:
75 /* Disable copy/assignment. (Since the elements of A point inside
76 COMMAND, copying would need to reconstruct the A vector in the
77 new copy.) */
78 user_args (const user_args &) =delete;
79 user_args &operator= (const user_args &) =delete;
80
81 /* It is necessary to store a copy of the command line to ensure
82 that the arguments are not overwritten before they are used. */
83 std::string m_command_line;
84
85 /* The arguments. Each element points inside M_COMMAND_LINE. */
86 std::vector<gdb::string_view> m_args;
87 };
88
89 /* The stack of arguments passed to user defined functions. We need a
90 stack because user-defined functions can call other user-defined
91 functions. */
92 static std::vector<std::unique_ptr<user_args>> user_args_stack;
93
94 /* An RAII-base class used to push/pop args on the user args
95 stack. */
96 struct scoped_user_args_level
97 {
98 /* Parse the command line and push the arguments in the user args
99 stack. */
100 explicit scoped_user_args_level (const char *line)
101 {
102 user_args_stack.emplace_back (new user_args (line));
103 }
104
105 /* Pop the current user arguments from the stack. */
106 ~scoped_user_args_level ()
107 {
108 user_args_stack.pop_back ();
109 }
110 };
111
112 \f
113 /* Return non-zero if TYPE is a multi-line command (i.e., is terminated
114 by "end"). */
115
116 static int
117 multi_line_command_p (enum command_control_type type)
118 {
119 switch (type)
120 {
121 case if_control:
122 case while_control:
123 case while_stepping_control:
124 case commands_control:
125 case compile_control:
126 case python_control:
127 case guile_control:
128 case define_control:
129 return 1;
130 default:
131 return 0;
132 }
133 }
134
135 /* Allocate, initialize a new command line structure for one of the
136 control commands (if/while). */
137
138 static struct command_line *
139 build_command_line (enum command_control_type type, const char *args)
140 {
141 if (args == NULL || *args == '\0')
142 {
143 if (type == if_control)
144 error (_("if command requires an argument."));
145 else if (type == while_control)
146 error (_("while command requires an argument."));
147 else if (type == define_control)
148 error (_("define command requires an argument."));
149 }
150 gdb_assert (args != NULL);
151
152 return new struct command_line (type, xstrdup (args));
153 }
154
155 /* Build and return a new command structure for the control commands
156 such as "if" and "while". */
157
158 counted_command_line
159 get_command_line (enum command_control_type type, const char *arg)
160 {
161 /* Allocate and build a new command line structure. */
162 counted_command_line cmd (build_command_line (type, arg),
163 command_lines_deleter ());
164
165 /* Read in the body of this command. */
166 if (recurse_read_control_structure (read_next_line, cmd.get (), 0)
167 == invalid_control)
168 {
169 warning (_("Error reading in canned sequence of commands."));
170 return NULL;
171 }
172
173 return cmd;
174 }
175
176 /* Recursively print a command (including full control structures). */
177
178 void
179 print_command_lines (struct ui_out *uiout, struct command_line *cmd,
180 unsigned int depth)
181 {
182 struct command_line *list;
183
184 list = cmd;
185 while (list)
186 {
187 if (depth)
188 uiout->spaces (2 * depth);
189
190 /* A simple command, print it and continue. */
191 if (list->control_type == simple_control)
192 {
193 uiout->field_string (NULL, list->line);
194 uiout->text ("\n");
195 list = list->next;
196 continue;
197 }
198
199 /* loop_continue to jump to the start of a while loop, print it
200 and continue. */
201 if (list->control_type == continue_control)
202 {
203 uiout->field_string (NULL, "loop_continue");
204 uiout->text ("\n");
205 list = list->next;
206 continue;
207 }
208
209 /* loop_break to break out of a while loop, print it and
210 continue. */
211 if (list->control_type == break_control)
212 {
213 uiout->field_string (NULL, "loop_break");
214 uiout->text ("\n");
215 list = list->next;
216 continue;
217 }
218
219 /* A while command. Recursively print its subcommands and
220 continue. */
221 if (list->control_type == while_control
222 || list->control_type == while_stepping_control)
223 {
224 /* For while-stepping, the line includes the 'while-stepping'
225 token. See comment in process_next_line for explanation.
226 Here, take care not print 'while-stepping' twice. */
227 if (list->control_type == while_control)
228 uiout->field_fmt (NULL, "while %s", list->line);
229 else
230 uiout->field_string (NULL, list->line);
231 uiout->text ("\n");
232 print_command_lines (uiout, list->body_list_0.get (), depth + 1);
233 if (depth)
234 uiout->spaces (2 * depth);
235 uiout->field_string (NULL, "end");
236 uiout->text ("\n");
237 list = list->next;
238 continue;
239 }
240
241 /* An if command. Recursively print both arms before
242 continueing. */
243 if (list->control_type == if_control)
244 {
245 uiout->field_fmt (NULL, "if %s", list->line);
246 uiout->text ("\n");
247 /* The true arm. */
248 print_command_lines (uiout, list->body_list_0.get (), depth + 1);
249
250 /* Show the false arm if it exists. */
251 if (list->body_list_1 != nullptr)
252 {
253 if (depth)
254 uiout->spaces (2 * depth);
255 uiout->field_string (NULL, "else");
256 uiout->text ("\n");
257 print_command_lines (uiout, list->body_list_1.get (), depth + 1);
258 }
259
260 if (depth)
261 uiout->spaces (2 * depth);
262 uiout->field_string (NULL, "end");
263 uiout->text ("\n");
264 list = list->next;
265 continue;
266 }
267
268 /* A commands command. Print the breakpoint commands and
269 continue. */
270 if (list->control_type == commands_control)
271 {
272 if (*(list->line))
273 uiout->field_fmt (NULL, "commands %s", list->line);
274 else
275 uiout->field_string (NULL, "commands");
276 uiout->text ("\n");
277 print_command_lines (uiout, list->body_list_0.get (), depth + 1);
278 if (depth)
279 uiout->spaces (2 * depth);
280 uiout->field_string (NULL, "end");
281 uiout->text ("\n");
282 list = list->next;
283 continue;
284 }
285
286 if (list->control_type == python_control)
287 {
288 uiout->field_string (NULL, "python");
289 uiout->text ("\n");
290 /* Don't indent python code at all. */
291 print_command_lines (uiout, list->body_list_0.get (), 0);
292 if (depth)
293 uiout->spaces (2 * depth);
294 uiout->field_string (NULL, "end");
295 uiout->text ("\n");
296 list = list->next;
297 continue;
298 }
299
300 if (list->control_type == compile_control)
301 {
302 uiout->field_string (NULL, "compile expression");
303 uiout->text ("\n");
304 print_command_lines (uiout, list->body_list_0.get (), 0);
305 if (depth)
306 uiout->spaces (2 * depth);
307 uiout->field_string (NULL, "end");
308 uiout->text ("\n");
309 list = list->next;
310 continue;
311 }
312
313 if (list->control_type == guile_control)
314 {
315 uiout->field_string (NULL, "guile");
316 uiout->text ("\n");
317 print_command_lines (uiout, list->body_list_0.get (), depth + 1);
318 if (depth)
319 uiout->spaces (2 * depth);
320 uiout->field_string (NULL, "end");
321 uiout->text ("\n");
322 list = list->next;
323 continue;
324 }
325
326 /* Ignore illegal command type and try next. */
327 list = list->next;
328 } /* while (list) */
329 }
330
331 /* Handle pre-post hooks. */
332
333 class scoped_restore_hook_in
334 {
335 public:
336
337 scoped_restore_hook_in (struct cmd_list_element *c)
338 : m_cmd (c)
339 {
340 }
341
342 ~scoped_restore_hook_in ()
343 {
344 m_cmd->hook_in = 0;
345 }
346
347 scoped_restore_hook_in (const scoped_restore_hook_in &) = delete;
348 scoped_restore_hook_in &operator= (const scoped_restore_hook_in &) = delete;
349
350 private:
351
352 struct cmd_list_element *m_cmd;
353 };
354
355 void
356 execute_cmd_pre_hook (struct cmd_list_element *c)
357 {
358 if ((c->hook_pre) && (!c->hook_in))
359 {
360 scoped_restore_hook_in restore_hook (c);
361 c->hook_in = 1; /* Prevent recursive hooking. */
362 execute_user_command (c->hook_pre, nullptr);
363 }
364 }
365
366 void
367 execute_cmd_post_hook (struct cmd_list_element *c)
368 {
369 if ((c->hook_post) && (!c->hook_in))
370 {
371 scoped_restore_hook_in restore_hook (c);
372 c->hook_in = 1; /* Prevent recursive hooking. */
373 execute_user_command (c->hook_post, nullptr);
374 }
375 }
376
377 void
378 execute_user_command (struct cmd_list_element *c, const char *args)
379 {
380 struct ui *ui = current_ui;
381 counted_command_line cmdlines_copy;
382 enum command_control_type ret;
383 extern unsigned int max_user_call_depth;
384
385 /* Ensure that the user commands can't be deleted while they are
386 executing. */
387 cmdlines_copy = c->user_commands;
388 if (cmdlines_copy == 0)
389 /* Null command */
390 return;
391 struct command_line *cmdlines = cmdlines_copy.get ();
392
393 scoped_user_args_level push_user_args (args);
394
395 if (user_args_stack.size () > max_user_call_depth)
396 error (_("Max user call depth exceeded -- command aborted."));
397
398 /* Set the instream to 0, indicating execution of a
399 user-defined function. */
400 scoped_restore restore_instream
401 = make_scoped_restore (&ui->instream, nullptr);
402
403 scoped_restore save_async = make_scoped_restore (&current_ui->async, 0);
404
405 scoped_restore save_nesting
406 = make_scoped_restore (&command_nest_depth, command_nest_depth + 1);
407 while (cmdlines)
408 {
409 ret = execute_control_command (cmdlines);
410 if (ret != simple_control && ret != break_control)
411 {
412 warning (_("Error executing canned sequence of commands."));
413 break;
414 }
415 cmdlines = cmdlines->next;
416 }
417 }
418
419 /* This function is called every time GDB prints a prompt. It ensures
420 that errors and the like do not confuse the command tracing. */
421
422 void
423 reset_command_nest_depth (void)
424 {
425 command_nest_depth = 1;
426
427 /* Just in case. */
428 suppress_next_print_command_trace = 0;
429 }
430
431 /* Print the command, prefixed with '+' to represent the call depth.
432 This is slightly complicated because this function may be called
433 from execute_command and execute_control_command. Unfortunately
434 execute_command also prints the top level control commands.
435 In these cases execute_command will call execute_control_command
436 via while_command or if_command. Inner levels of 'if' and 'while'
437 are dealt with directly. Therefore we can use these functions
438 to determine whether the command has been printed already or not. */
439 ATTRIBUTE_PRINTF (1, 2)
440 void
441 print_command_trace (const char *fmt, ...)
442 {
443 int i;
444
445 if (suppress_next_print_command_trace)
446 {
447 suppress_next_print_command_trace = 0;
448 return;
449 }
450
451 if (!source_verbose && !trace_commands)
452 return;
453
454 for (i=0; i < command_nest_depth; i++)
455 printf_filtered ("+");
456
457 va_list args;
458
459 va_start (args, fmt);
460 vprintf_filtered (fmt, args);
461 va_end (args);
462 puts_filtered ("\n");
463 }
464
465 /* Helper for execute_control_command. */
466
467 static enum command_control_type
468 execute_control_command_1 (struct command_line *cmd)
469 {
470 struct command_line *current;
471 struct value *val;
472 struct value *val_mark;
473 int loop;
474 enum command_control_type ret;
475
476 /* Start by assuming failure, if a problem is detected, the code
477 below will simply "break" out of the switch. */
478 ret = invalid_control;
479
480 switch (cmd->control_type)
481 {
482 case simple_control:
483 {
484 /* A simple command, execute it and return. */
485 std::string new_line = insert_user_defined_cmd_args (cmd->line);
486 execute_command (new_line.c_str (), 0);
487 ret = cmd->control_type;
488 break;
489 }
490
491 case continue_control:
492 print_command_trace ("loop_continue");
493
494 /* Return for "continue", and "break" so we can either
495 continue the loop at the top, or break out. */
496 ret = cmd->control_type;
497 break;
498
499 case break_control:
500 print_command_trace ("loop_break");
501
502 /* Return for "continue", and "break" so we can either
503 continue the loop at the top, or break out. */
504 ret = cmd->control_type;
505 break;
506
507 case while_control:
508 {
509 print_command_trace ("while %s", cmd->line);
510
511 /* Parse the loop control expression for the while statement. */
512 std::string new_line = insert_user_defined_cmd_args (cmd->line);
513 expression_up expr = parse_expression (new_line.c_str ());
514
515 ret = simple_control;
516 loop = 1;
517
518 /* Keep iterating so long as the expression is true. */
519 while (loop == 1)
520 {
521 int cond_result;
522
523 QUIT;
524
525 /* Evaluate the expression. */
526 val_mark = value_mark ();
527 val = evaluate_expression (expr.get ());
528 cond_result = value_true (val);
529 value_free_to_mark (val_mark);
530
531 /* If the value is false, then break out of the loop. */
532 if (!cond_result)
533 break;
534
535 /* Execute the body of the while statement. */
536 current = cmd->body_list_0.get ();
537 while (current)
538 {
539 scoped_restore save_nesting
540 = make_scoped_restore (&command_nest_depth, command_nest_depth + 1);
541 ret = execute_control_command_1 (current);
542
543 /* If we got an error, or a "break" command, then stop
544 looping. */
545 if (ret == invalid_control || ret == break_control)
546 {
547 loop = 0;
548 break;
549 }
550
551 /* If we got a "continue" command, then restart the loop
552 at this point. */
553 if (ret == continue_control)
554 break;
555
556 /* Get the next statement. */
557 current = current->next;
558 }
559 }
560
561 /* Reset RET so that we don't recurse the break all the way down. */
562 if (ret == break_control)
563 ret = simple_control;
564
565 break;
566 }
567
568 case if_control:
569 {
570 print_command_trace ("if %s", cmd->line);
571
572 /* Parse the conditional for the if statement. */
573 std::string new_line = insert_user_defined_cmd_args (cmd->line);
574 expression_up expr = parse_expression (new_line.c_str ());
575
576 current = NULL;
577 ret = simple_control;
578
579 /* Evaluate the conditional. */
580 val_mark = value_mark ();
581 val = evaluate_expression (expr.get ());
582
583 /* Choose which arm to take commands from based on the value
584 of the conditional expression. */
585 if (value_true (val))
586 current = cmd->body_list_0.get ();
587 else if (cmd->body_list_1 != nullptr)
588 current = cmd->body_list_1.get ();
589 value_free_to_mark (val_mark);
590
591 /* Execute commands in the given arm. */
592 while (current)
593 {
594 scoped_restore save_nesting
595 = make_scoped_restore (&command_nest_depth, command_nest_depth + 1);
596 ret = execute_control_command_1 (current);
597
598 /* If we got an error, get out. */
599 if (ret != simple_control)
600 break;
601
602 /* Get the next statement in the body. */
603 current = current->next;
604 }
605
606 break;
607 }
608
609 case commands_control:
610 {
611 /* Breakpoint commands list, record the commands in the
612 breakpoint's command list and return. */
613 std::string new_line = insert_user_defined_cmd_args (cmd->line);
614 ret = commands_from_control_command (new_line.c_str (), cmd);
615 break;
616 }
617
618 case compile_control:
619 eval_compile_command (cmd, NULL, cmd->control_u.compile.scope,
620 cmd->control_u.compile.scope_data);
621 ret = simple_control;
622 break;
623
624 case define_control:
625 print_command_trace ("define %s", cmd->line);
626 do_define_command (cmd->line, 0, &cmd->body_list_0);
627 ret = simple_control;
628 break;
629
630 case python_control:
631 case guile_control:
632 {
633 eval_ext_lang_from_control_command (cmd);
634 ret = simple_control;
635 break;
636 }
637
638 default:
639 warning (_("Invalid control type in canned commands structure."));
640 break;
641 }
642
643 return ret;
644 }
645
646 enum command_control_type
647 execute_control_command (struct command_line *cmd)
648 {
649 /* Make sure we use the console uiout. It's possible that we are executing
650 breakpoint commands while running the MI interpreter. */
651 interp *console = interp_lookup (current_ui, INTERP_CONSOLE);
652 scoped_restore save_uiout
653 = make_scoped_restore (&current_uiout, interp_ui_out (console));
654
655 return execute_control_command_1 (cmd);
656 }
657
658 /* Like execute_control_command, but first set
659 suppress_next_print_command_trace. */
660
661 enum command_control_type
662 execute_control_command_untraced (struct command_line *cmd)
663 {
664 suppress_next_print_command_trace = 1;
665 return execute_control_command (cmd);
666 }
667
668
669 /* "while" command support. Executes a body of statements while the
670 loop condition is nonzero. */
671
672 static void
673 while_command (const char *arg, int from_tty)
674 {
675 control_level = 1;
676 counted_command_line command = get_command_line (while_control, arg);
677
678 if (command == NULL)
679 return;
680
681 scoped_restore save_async = make_scoped_restore (&current_ui->async, 0);
682
683 execute_control_command_untraced (command.get ());
684 }
685
686 /* "if" command support. Execute either the true or false arm depending
687 on the value of the if conditional. */
688
689 static void
690 if_command (const char *arg, int from_tty)
691 {
692 control_level = 1;
693 counted_command_line command = get_command_line (if_control, arg);
694
695 if (command == NULL)
696 return;
697
698 scoped_restore save_async = make_scoped_restore (&current_ui->async, 0);
699
700 execute_control_command_untraced (command.get ());
701 }
702
703 /* Bind the incoming arguments for a user defined command to $arg0,
704 $arg1 ... $argN. */
705
706 user_args::user_args (const char *command_line)
707 {
708 const char *p;
709
710 if (command_line == NULL)
711 return;
712
713 m_command_line = command_line;
714 p = m_command_line.c_str ();
715
716 while (*p)
717 {
718 const char *start_arg;
719 int squote = 0;
720 int dquote = 0;
721 int bsquote = 0;
722
723 /* Strip whitespace. */
724 while (*p == ' ' || *p == '\t')
725 p++;
726
727 /* P now points to an argument. */
728 start_arg = p;
729
730 /* Get to the end of this argument. */
731 while (*p)
732 {
733 if (((*p == ' ' || *p == '\t')) && !squote && !dquote && !bsquote)
734 break;
735 else
736 {
737 if (bsquote)
738 bsquote = 0;
739 else if (*p == '\\')
740 bsquote = 1;
741 else if (squote)
742 {
743 if (*p == '\'')
744 squote = 0;
745 }
746 else if (dquote)
747 {
748 if (*p == '"')
749 dquote = 0;
750 }
751 else
752 {
753 if (*p == '\'')
754 squote = 1;
755 else if (*p == '"')
756 dquote = 1;
757 }
758 p++;
759 }
760 }
761
762 m_args.emplace_back (start_arg, p - start_arg);
763 }
764 }
765
766 /* Given character string P, return a point to the first argument
767 ($arg), or NULL if P contains no arguments. */
768
769 static const char *
770 locate_arg (const char *p)
771 {
772 while ((p = strchr (p, '$')))
773 {
774 if (startswith (p, "$arg")
775 && (isdigit (p[4]) || p[4] == 'c'))
776 return p;
777 p++;
778 }
779 return NULL;
780 }
781
782 /* See cli-script.h. */
783
784 std::string
785 insert_user_defined_cmd_args (const char *line)
786 {
787 /* If we are not in a user-defined command, treat $argc, $arg0, et
788 cetera as normal convenience variables. */
789 if (user_args_stack.empty ())
790 return line;
791
792 const std::unique_ptr<user_args> &args = user_args_stack.back ();
793 return args->insert_args (line);
794 }
795
796 /* Insert the user defined arguments stored in user_args into the $arg
797 arguments found in line. */
798
799 std::string
800 user_args::insert_args (const char *line) const
801 {
802 std::string new_line;
803 const char *p;
804
805 while ((p = locate_arg (line)))
806 {
807 new_line.append (line, p - line);
808
809 if (p[4] == 'c')
810 {
811 new_line += std::to_string (m_args.size ());
812 line = p + 5;
813 }
814 else
815 {
816 char *tmp;
817 unsigned long i;
818
819 errno = 0;
820 i = strtoul (p + 4, &tmp, 10);
821 if ((i == 0 && tmp == p + 4) || errno != 0)
822 line = p + 4;
823 else if (i >= m_args.size ())
824 error (_("Missing argument %ld in user function."), i);
825 else
826 {
827 new_line.append (m_args[i].data (), m_args[i].length ());
828 line = tmp;
829 }
830 }
831 }
832 /* Don't forget the tail. */
833 new_line.append (line);
834
835 return new_line;
836 }
837
838 \f
839 /* Read next line from stdin. Passed to read_command_line_1 and
840 recurse_read_control_structure whenever we need to read commands
841 from stdin. */
842
843 static char *
844 read_next_line (void)
845 {
846 struct ui *ui = current_ui;
847 char *prompt_ptr, control_prompt[256];
848 int i = 0;
849 int from_tty = ui->instream == ui->stdin_stream;
850
851 if (control_level >= 254)
852 error (_("Control nesting too deep!"));
853
854 /* Set a prompt based on the nesting of the control commands. */
855 if (from_tty
856 || (ui->instream == 0 && deprecated_readline_hook != NULL))
857 {
858 for (i = 0; i < control_level; i++)
859 control_prompt[i] = ' ';
860 control_prompt[i] = '>';
861 control_prompt[i + 1] = '\0';
862 prompt_ptr = (char *) &control_prompt[0];
863 }
864 else
865 prompt_ptr = NULL;
866
867 return command_line_input (prompt_ptr, from_tty, "commands");
868 }
869
870 /* Return true if CMD's name is NAME. */
871
872 static bool
873 command_name_equals (struct cmd_list_element *cmd, const char *name)
874 {
875 return (cmd != NULL
876 && cmd != CMD_LIST_AMBIGUOUS
877 && strcmp (cmd->name, name) == 0);
878 }
879
880 /* Given an input line P, skip the command and return a pointer to the
881 first argument. */
882
883 static const char *
884 line_first_arg (const char *p)
885 {
886 const char *first_arg = p + find_command_name_length (p);
887
888 return skip_spaces (first_arg);
889 }
890
891 /* Process one input line. If the command is an "end", return such an
892 indication to the caller. If PARSE_COMMANDS is true, strip leading
893 whitespace (trailing whitespace is always stripped) in the line,
894 attempt to recognize GDB control commands, and also return an
895 indication if the command is an "else" or a nop.
896
897 Otherwise, only "end" is recognized. */
898
899 static enum misc_command_type
900 process_next_line (const char *p, struct command_line **command,
901 int parse_commands,
902 gdb::function_view<void (const char *)> validator)
903
904 {
905 const char *p_end;
906 const char *p_start;
907 int not_handled = 0;
908
909 /* Not sure what to do here. */
910 if (p == NULL)
911 return end_command;
912
913 /* Strip trailing whitespace. */
914 p_end = p + strlen (p);
915 while (p_end > p && (p_end[-1] == ' ' || p_end[-1] == '\t'))
916 p_end--;
917
918 p_start = p;
919 /* Strip leading whitespace. */
920 while (p_start < p_end && (*p_start == ' ' || *p_start == '\t'))
921 p_start++;
922
923 /* 'end' is always recognized, regardless of parse_commands value.
924 We also permit whitespace before end and after. */
925 if (p_end - p_start == 3 && startswith (p_start, "end"))
926 return end_command;
927
928 if (parse_commands)
929 {
930 /* Resolve command abbreviations (e.g. 'ws' for 'while-stepping'). */
931 const char *cmd_name = p;
932 struct cmd_list_element *cmd
933 = lookup_cmd_1 (&cmd_name, cmdlist, NULL, 1);
934 cmd_name = skip_spaces (cmd_name);
935 bool inline_cmd = *cmd_name != '\0';
936
937 /* If commands are parsed, we skip initial spaces. Otherwise,
938 which is the case for Python commands and documentation
939 (see the 'document' command), spaces are preserved. */
940 p = p_start;
941
942 /* Blanks and comments don't really do anything, but we need to
943 distinguish them from else, end and other commands which can
944 be executed. */
945 if (p_end == p || p[0] == '#')
946 return nop_command;
947
948 /* Is the else clause of an if control structure? */
949 if (p_end - p == 4 && startswith (p, "else"))
950 return else_command;
951
952 /* Check for while, if, break, continue, etc and build a new
953 command line structure for them. */
954 if (command_name_equals (cmd, "while-stepping"))
955 {
956 /* Because validate_actionline and encode_action lookup
957 command's line as command, we need the line to
958 include 'while-stepping'.
959
960 For 'ws' alias, the command will have 'ws', not expanded
961 to 'while-stepping'. This is intentional -- we don't
962 really want frontend to send a command list with 'ws',
963 and next break-info returning command line with
964 'while-stepping'. This should work, but might cause the
965 breakpoint to be marked as changed while it's actually
966 not. */
967 *command = build_command_line (while_stepping_control, p);
968 }
969 else if (command_name_equals (cmd, "while"))
970 {
971 *command = build_command_line (while_control, line_first_arg (p));
972 }
973 else if (command_name_equals (cmd, "if"))
974 {
975 *command = build_command_line (if_control, line_first_arg (p));
976 }
977 else if (command_name_equals (cmd, "commands"))
978 {
979 *command = build_command_line (commands_control, line_first_arg (p));
980 }
981 else if (command_name_equals (cmd, "define"))
982 *command = build_command_line (define_control, line_first_arg (p));
983 else if (command_name_equals (cmd, "python") && !inline_cmd)
984 {
985 /* Note that we ignore the inline "python command" form
986 here. */
987 *command = build_command_line (python_control, "");
988 }
989 else if (command_name_equals (cmd, "compile") && !inline_cmd)
990 {
991 /* Note that we ignore the inline "compile command" form
992 here. */
993 *command = build_command_line (compile_control, "");
994 (*command)->control_u.compile.scope = COMPILE_I_INVALID_SCOPE;
995 }
996 else if (command_name_equals (cmd, "guile") && !inline_cmd)
997 {
998 /* Note that we ignore the inline "guile command" form here. */
999 *command = build_command_line (guile_control, "");
1000 }
1001 else if (p_end - p == 10 && startswith (p, "loop_break"))
1002 *command = new struct command_line (break_control);
1003 else if (p_end - p == 13 && startswith (p, "loop_continue"))
1004 *command = new struct command_line (continue_control);
1005 else
1006 not_handled = 1;
1007 }
1008
1009 if (!parse_commands || not_handled)
1010 {
1011 /* A normal command. */
1012 *command = new struct command_line (simple_control,
1013 savestring (p, p_end - p));
1014 }
1015
1016 if (validator)
1017 {
1018 TRY
1019 {
1020 validator ((*command)->line);
1021 }
1022 CATCH (ex, RETURN_MASK_ALL)
1023 {
1024 free_command_lines (command);
1025 throw_exception (ex);
1026 }
1027 END_CATCH
1028 }
1029
1030 /* Nothing special. */
1031 return ok_command;
1032 }
1033
1034 /* Recursively read in the control structures and create a
1035 command_line structure from them. Use read_next_line_func to
1036 obtain lines of the command. */
1037
1038 static enum command_control_type
1039 recurse_read_control_structure (gdb::function_view<const char * ()> read_next_line_func,
1040 struct command_line *current_cmd,
1041 gdb::function_view<void (const char *)> validator)
1042 {
1043 enum misc_command_type val;
1044 enum command_control_type ret;
1045 struct command_line **body_ptr, *child_tail, *next;
1046 counted_command_line *current_body = &current_cmd->body_list_0;
1047
1048 child_tail = NULL;
1049
1050 /* Sanity checks. */
1051 if (current_cmd->control_type == simple_control)
1052 error (_("Recursed on a simple control type."));
1053
1054 /* Read lines from the input stream and build control structures. */
1055 while (1)
1056 {
1057 dont_repeat ();
1058
1059 next = NULL;
1060 val = process_next_line (read_next_line_func (), &next,
1061 current_cmd->control_type != python_control
1062 && current_cmd->control_type != guile_control
1063 && current_cmd->control_type != compile_control,
1064 validator);
1065
1066 /* Just skip blanks and comments. */
1067 if (val == nop_command)
1068 continue;
1069
1070 if (val == end_command)
1071 {
1072 if (multi_line_command_p (current_cmd->control_type))
1073 {
1074 /* Success reading an entire canned sequence of commands. */
1075 ret = simple_control;
1076 break;
1077 }
1078 else
1079 {
1080 ret = invalid_control;
1081 break;
1082 }
1083 }
1084
1085 /* Not the end of a control structure. */
1086 if (val == else_command)
1087 {
1088 if (current_cmd->control_type == if_control
1089 && current_body == &current_cmd->body_list_0)
1090 {
1091 current_body = &current_cmd->body_list_1;
1092 child_tail = NULL;
1093 continue;
1094 }
1095 else
1096 {
1097 ret = invalid_control;
1098 break;
1099 }
1100 }
1101
1102 if (child_tail)
1103 {
1104 child_tail->next = next;
1105 }
1106 else
1107 *current_body = counted_command_line (next, command_lines_deleter ());
1108
1109 child_tail = next;
1110
1111 /* If the latest line is another control structure, then recurse
1112 on it. */
1113 if (multi_line_command_p (next->control_type))
1114 {
1115 control_level++;
1116 ret = recurse_read_control_structure (read_next_line_func, next,
1117 validator);
1118 control_level--;
1119
1120 if (ret != simple_control)
1121 break;
1122 }
1123 }
1124
1125 dont_repeat ();
1126
1127 return ret;
1128 }
1129
1130 /* Read lines from the input stream and accumulate them in a chain of
1131 struct command_line's, which is then returned. For input from a
1132 terminal, the special command "end" is used to mark the end of the
1133 input, and is not included in the returned chain of commands.
1134
1135 If PARSE_COMMANDS is true, strip leading whitespace (trailing whitespace
1136 is always stripped) in the line and attempt to recognize GDB control
1137 commands. Otherwise, only "end" is recognized. */
1138
1139 #define END_MESSAGE "End with a line saying just \"end\"."
1140
1141 counted_command_line
1142 read_command_lines (const char *prompt_arg, int from_tty, int parse_commands,
1143 gdb::function_view<void (const char *)> validator)
1144 {
1145 if (from_tty && input_interactive_p (current_ui))
1146 {
1147 if (deprecated_readline_begin_hook)
1148 {
1149 /* Note - intentional to merge messages with no newline. */
1150 (*deprecated_readline_begin_hook) ("%s %s\n", prompt_arg,
1151 END_MESSAGE);
1152 }
1153 else
1154 {
1155 printf_unfiltered ("%s\n%s\n", prompt_arg, END_MESSAGE);
1156 gdb_flush (gdb_stdout);
1157 }
1158 }
1159
1160
1161 /* Reading commands assumes the CLI behavior, so temporarily
1162 override the current interpreter with CLI. */
1163 counted_command_line head (nullptr, command_lines_deleter ());
1164 if (current_interp_named_p (INTERP_CONSOLE))
1165 head = read_command_lines_1 (read_next_line, parse_commands,
1166 validator);
1167 else
1168 {
1169 scoped_restore_interp interp_restorer (INTERP_CONSOLE);
1170
1171 head = read_command_lines_1 (read_next_line, parse_commands,
1172 validator);
1173 }
1174
1175 if (from_tty && input_interactive_p (current_ui)
1176 && deprecated_readline_end_hook)
1177 {
1178 (*deprecated_readline_end_hook) ();
1179 }
1180 return (head);
1181 }
1182
1183 /* Act the same way as read_command_lines, except that each new line is
1184 obtained using READ_NEXT_LINE_FUNC. */
1185
1186 counted_command_line
1187 read_command_lines_1 (gdb::function_view<const char * ()> read_next_line_func,
1188 int parse_commands,
1189 gdb::function_view<void (const char *)> validator)
1190 {
1191 struct command_line *tail, *next;
1192 counted_command_line head (nullptr, command_lines_deleter ());
1193 enum command_control_type ret;
1194 enum misc_command_type val;
1195
1196 control_level = 0;
1197 tail = NULL;
1198
1199 while (1)
1200 {
1201 dont_repeat ();
1202 val = process_next_line (read_next_line_func (), &next, parse_commands,
1203 validator);
1204
1205 /* Ignore blank lines or comments. */
1206 if (val == nop_command)
1207 continue;
1208
1209 if (val == end_command)
1210 {
1211 ret = simple_control;
1212 break;
1213 }
1214
1215 if (val != ok_command)
1216 {
1217 ret = invalid_control;
1218 break;
1219 }
1220
1221 if (multi_line_command_p (next->control_type))
1222 {
1223 control_level++;
1224 ret = recurse_read_control_structure (read_next_line_func, next,
1225 validator);
1226 control_level--;
1227
1228 if (ret == invalid_control)
1229 break;
1230 }
1231
1232 if (tail)
1233 {
1234 tail->next = next;
1235 }
1236 else
1237 {
1238 head = counted_command_line (next, command_lines_deleter ());
1239 }
1240 tail = next;
1241 }
1242
1243 dont_repeat ();
1244
1245 if (ret == invalid_control)
1246 return NULL;
1247
1248 return head;
1249 }
1250
1251 /* Free a chain of struct command_line's. */
1252
1253 void
1254 free_command_lines (struct command_line **lptr)
1255 {
1256 struct command_line *l = *lptr;
1257 struct command_line *next;
1258
1259 while (l)
1260 {
1261 next = l->next;
1262 delete l;
1263 l = next;
1264 }
1265 *lptr = NULL;
1266 }
1267 \f
1268 /* Validate that *COMNAME is a valid name for a command. Return the
1269 containing command list, in case it starts with a prefix command.
1270 The prefix must already exist. *COMNAME is advanced to point after
1271 any prefix, and a NUL character overwrites the space after the
1272 prefix. */
1273
1274 static struct cmd_list_element **
1275 validate_comname (const char **comname)
1276 {
1277 struct cmd_list_element **list = &cmdlist;
1278 const char *p, *last_word;
1279
1280 if (*comname == 0)
1281 error_no_arg (_("name of command to define"));
1282
1283 /* Find the last word of the argument. */
1284 p = *comname + strlen (*comname);
1285 while (p > *comname && isspace (p[-1]))
1286 p--;
1287 while (p > *comname && !isspace (p[-1]))
1288 p--;
1289 last_word = p;
1290
1291 /* Find the corresponding command list. */
1292 if (last_word != *comname)
1293 {
1294 struct cmd_list_element *c;
1295
1296 /* Separate the prefix and the command. */
1297 std::string prefix (*comname, last_word - 1);
1298 const char *tem = prefix.c_str ();
1299
1300 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
1301 if (c->prefixlist == NULL)
1302 error (_("\"%s\" is not a prefix command."), prefix.c_str ());
1303
1304 list = c->prefixlist;
1305 *comname = last_word;
1306 }
1307
1308 p = *comname;
1309 while (*p)
1310 {
1311 if (!isalnum (*p) && *p != '-' && *p != '_')
1312 error (_("Junk in argument list: \"%s\""), p);
1313 p++;
1314 }
1315
1316 return list;
1317 }
1318
1319 /* This is just a placeholder in the command data structures. */
1320 static void
1321 user_defined_command (const char *ignore, int from_tty)
1322 {
1323 }
1324
1325 /* Define a user-defined command. If COMMANDS is NULL, then this is a
1326 top-level call and the commands will be read using
1327 read_command_lines. Otherwise, it is a "define" command in an
1328 existing command and the commands are provided. In the
1329 non-top-level case, various prompts and warnings are disabled. */
1330
1331 static void
1332 do_define_command (const char *comname, int from_tty,
1333 const counted_command_line *commands)
1334 {
1335 enum cmd_hook_type
1336 {
1337 CMD_NO_HOOK = 0,
1338 CMD_PRE_HOOK,
1339 CMD_POST_HOOK
1340 };
1341 struct cmd_list_element *c, *newc, *hookc = 0, **list;
1342 const char *tem, *comfull;
1343 int hook_type = CMD_NO_HOOK;
1344 int hook_name_size = 0;
1345
1346 #define HOOK_STRING "hook-"
1347 #define HOOK_LEN 5
1348 #define HOOK_POST_STRING "hookpost-"
1349 #define HOOK_POST_LEN 9
1350
1351 comfull = comname;
1352 list = validate_comname (&comname);
1353
1354 /* Look it up, and verify that we got an exact match. */
1355 tem = comname;
1356 c = lookup_cmd (&tem, *list, "", -1, 1);
1357 if (c && strcmp (comname, c->name) != 0)
1358 c = 0;
1359
1360 if (c && commands == nullptr)
1361 {
1362 int q;
1363
1364 if (c->theclass == class_user || c->theclass == class_alias)
1365 q = query (_("Redefine command \"%s\"? "), c->name);
1366 else
1367 q = query (_("Really redefine built-in command \"%s\"? "), c->name);
1368 if (!q)
1369 error (_("Command \"%s\" not redefined."), c->name);
1370 }
1371
1372 /* If this new command is a hook, then mark the command which it
1373 is hooking. Note that we allow hooking `help' commands, so that
1374 we can hook the `stop' pseudo-command. */
1375
1376 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
1377 {
1378 hook_type = CMD_PRE_HOOK;
1379 hook_name_size = HOOK_LEN;
1380 }
1381 else if (!strncmp (comname, HOOK_POST_STRING, HOOK_POST_LEN))
1382 {
1383 hook_type = CMD_POST_HOOK;
1384 hook_name_size = HOOK_POST_LEN;
1385 }
1386
1387 if (hook_type != CMD_NO_HOOK)
1388 {
1389 /* Look up cmd it hooks, and verify that we got an exact match. */
1390 tem = comname + hook_name_size;
1391 hookc = lookup_cmd (&tem, *list, "", -1, 0);
1392 if (hookc && strcmp (comname + hook_name_size, hookc->name) != 0)
1393 hookc = 0;
1394 if (!hookc && commands == nullptr)
1395 {
1396 warning (_("Your new `%s' command does not "
1397 "hook any existing command."),
1398 comfull);
1399 if (!query (_("Proceed? ")))
1400 error (_("Not confirmed."));
1401 }
1402 }
1403
1404 comname = xstrdup (comname);
1405
1406 counted_command_line cmds;
1407 if (commands == nullptr)
1408 {
1409 std::string prompt
1410 = string_printf ("Type commands for definition of \"%s\".", comfull);
1411 cmds = read_command_lines (prompt.c_str (), from_tty, 1, 0);
1412 }
1413 else
1414 cmds = *commands;
1415
1416 newc = add_cmd (comname, class_user, user_defined_command,
1417 (c && c->theclass == class_user)
1418 ? c->doc : xstrdup ("User-defined."), list);
1419 newc->user_commands = std::move (cmds);
1420
1421 /* If this new command is a hook, then mark both commands as being
1422 tied. */
1423 if (hookc)
1424 {
1425 switch (hook_type)
1426 {
1427 case CMD_PRE_HOOK:
1428 hookc->hook_pre = newc; /* Target gets hooked. */
1429 newc->hookee_pre = hookc; /* We are marked as hooking target cmd. */
1430 break;
1431 case CMD_POST_HOOK:
1432 hookc->hook_post = newc; /* Target gets hooked. */
1433 newc->hookee_post = hookc; /* We are marked as hooking
1434 target cmd. */
1435 break;
1436 default:
1437 /* Should never come here as hookc would be 0. */
1438 internal_error (__FILE__, __LINE__, _("bad switch"));
1439 }
1440 }
1441 }
1442
1443 static void
1444 define_command (const char *comname, int from_tty)
1445 {
1446 do_define_command (comname, from_tty, nullptr);
1447 }
1448
1449 static void
1450 document_command (const char *comname, int from_tty)
1451 {
1452 struct cmd_list_element *c, **list;
1453 const char *tem;
1454 const char *comfull;
1455
1456 comfull = comname;
1457 list = validate_comname (&comname);
1458
1459 tem = comname;
1460 c = lookup_cmd (&tem, *list, "", 0, 1);
1461
1462 if (c->theclass != class_user)
1463 error (_("Command \"%s\" is built-in."), comfull);
1464
1465 std::string prompt = string_printf ("Type documentation for \"%s\".",
1466 comfull);
1467 counted_command_line doclines = read_command_lines (prompt.c_str (),
1468 from_tty, 0, 0);
1469
1470 if (c->doc)
1471 xfree ((char *) c->doc);
1472
1473 {
1474 struct command_line *cl1;
1475 int len = 0;
1476 char *doc;
1477
1478 for (cl1 = doclines.get (); cl1; cl1 = cl1->next)
1479 len += strlen (cl1->line) + 1;
1480
1481 doc = (char *) xmalloc (len + 1);
1482 *doc = 0;
1483
1484 for (cl1 = doclines.get (); cl1; cl1 = cl1->next)
1485 {
1486 strcat (doc, cl1->line);
1487 if (cl1->next)
1488 strcat (doc, "\n");
1489 }
1490
1491 c->doc = doc;
1492 }
1493 }
1494 \f
1495 /* Used to implement source_command. */
1496
1497 void
1498 script_from_file (FILE *stream, const char *file)
1499 {
1500 if (stream == NULL)
1501 internal_error (__FILE__, __LINE__, _("called with NULL file pointer!"));
1502
1503 scoped_restore restore_line_number
1504 = make_scoped_restore (&source_line_number, 0);
1505 scoped_restore resotre_file
1506 = make_scoped_restore (&source_file_name, file);
1507
1508 scoped_restore save_async = make_scoped_restore (&current_ui->async, 0);
1509
1510 TRY
1511 {
1512 read_command_file (stream);
1513 }
1514 CATCH (e, RETURN_MASK_ERROR)
1515 {
1516 /* Re-throw the error, but with the file name information
1517 prepended. */
1518 throw_error (e.error,
1519 _("%s:%d: Error in sourced command file:\n%s"),
1520 source_file_name, source_line_number, e.message);
1521 }
1522 END_CATCH
1523 }
1524
1525 /* Print the definition of user command C to STREAM. Or, if C is a
1526 prefix command, show the definitions of all user commands under C
1527 (recursively). PREFIX and NAME combined are the name of the
1528 current command. */
1529 void
1530 show_user_1 (struct cmd_list_element *c, const char *prefix, const char *name,
1531 struct ui_file *stream)
1532 {
1533 struct command_line *cmdlines;
1534
1535 if (c->prefixlist != NULL)
1536 {
1537 const char *prefixname = c->prefixname;
1538
1539 for (c = *c->prefixlist; c != NULL; c = c->next)
1540 if (c->theclass == class_user || c->prefixlist != NULL)
1541 show_user_1 (c, prefixname, c->name, gdb_stdout);
1542 return;
1543 }
1544
1545 cmdlines = c->user_commands.get ();
1546 fprintf_filtered (stream, "User command \"%s%s\":\n", prefix, name);
1547
1548 if (!cmdlines)
1549 return;
1550 print_command_lines (current_uiout, cmdlines, 1);
1551 fputs_filtered ("\n", stream);
1552 }
1553
1554 void
1555 _initialize_cli_script (void)
1556 {
1557 add_com ("document", class_support, document_command, _("\
1558 Document a user-defined command.\n\
1559 Give command name as argument. Give documentation on following lines.\n\
1560 End with a line of just \"end\"."));
1561 add_com ("define", class_support, define_command, _("\
1562 Define a new command name. Command name is argument.\n\
1563 Definition appears on following lines, one command per line.\n\
1564 End with a line of just \"end\".\n\
1565 Use the \"document\" command to give documentation for the new command.\n\
1566 Commands defined in this way may have up to ten arguments."));
1567
1568 add_com ("while", class_support, while_command, _("\
1569 Execute nested commands WHILE the conditional expression is non zero.\n\
1570 The conditional expression must follow the word `while' and must in turn be\n\
1571 followed by a new line. The nested commands must be entered one per line,\n\
1572 and should be terminated by the word `end'."));
1573
1574 add_com ("if", class_support, if_command, _("\
1575 Execute nested commands once IF the conditional expression is non zero.\n\
1576 The conditional expression must follow the word `if' and must in turn be\n\
1577 followed by a new line. The nested commands must be entered one per line,\n\
1578 and should be terminated by the word 'else' or `end'. If an else clause\n\
1579 is used, the same rules apply to its nested commands as to the first ones."));
1580 }