]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/utils.c
Ensure class_alias is only used for user-defined aliases.
[thirdparty/binutils-gdb.git] / gdb / utils.c
1 /* General utility routines for GDB, the GNU debugger.
2
3 Copyright (C) 1986-2020 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 <ctype.h>
22 #include "gdbsupport/gdb_wait.h"
23 #include "event-top.h"
24 #include "gdbthread.h"
25 #include "fnmatch.h"
26 #include "gdb_bfd.h"
27 #ifdef HAVE_SYS_RESOURCE_H
28 #include <sys/resource.h>
29 #endif /* HAVE_SYS_RESOURCE_H */
30
31 #ifdef TUI
32 #include "tui/tui.h" /* For tui_get_command_dimension. */
33 #endif
34
35 #ifdef __GO32__
36 #include <pc.h>
37 #endif
38
39 #include <signal.h>
40 #include "gdbcmd.h"
41 #include "serial.h"
42 #include "bfd.h"
43 #include "target.h"
44 #include "gdb-demangle.h"
45 #include "expression.h"
46 #include "language.h"
47 #include "charset.h"
48 #include "annotate.h"
49 #include "filenames.h"
50 #include "symfile.h"
51 #include "gdb_obstack.h"
52 #include "gdbcore.h"
53 #include "top.h"
54 #include "main.h"
55 #include "solist.h"
56
57 #include "inferior.h" /* for signed_pointer_to_address */
58
59 #include "gdb_curses.h"
60
61 #include "readline/readline.h"
62
63 #include <chrono>
64
65 #include "interps.h"
66 #include "gdb_regex.h"
67 #include "gdbsupport/job-control.h"
68 #include "gdbsupport/selftest.h"
69 #include "gdbsupport/gdb_optional.h"
70 #include "cp-support.h"
71 #include <algorithm>
72 #include "gdbsupport/pathstuff.h"
73 #include "cli/cli-style.h"
74 #include "gdbsupport/scope-exit.h"
75 #include "gdbarch.h"
76 #include "cli-out.h"
77
78 void (*deprecated_error_begin_hook) (void);
79
80 /* Prototypes for local functions */
81
82 static void vfprintf_maybe_filtered (struct ui_file *, const char *,
83 va_list, bool, bool)
84 ATTRIBUTE_PRINTF (2, 0);
85
86 static void fputs_maybe_filtered (const char *, struct ui_file *, int);
87
88 static void prompt_for_continue (void);
89
90 static void set_screen_size (void);
91 static void set_width (void);
92
93 /* Time spent in prompt_for_continue in the currently executing command
94 waiting for user to respond.
95 Initialized in make_command_stats_cleanup.
96 Modified in prompt_for_continue and defaulted_query.
97 Used in report_command_stats. */
98
99 static std::chrono::steady_clock::duration prompt_for_continue_wait_time;
100
101 /* A flag indicating whether to timestamp debugging messages. */
102
103 static bool debug_timestamp = false;
104
105 /* True means that strings with character values >0x7F should be printed
106 as octal escapes. False means just print the value (e.g. it's an
107 international character, and the terminal or window can cope.) */
108
109 bool sevenbit_strings = false;
110 static void
111 show_sevenbit_strings (struct ui_file *file, int from_tty,
112 struct cmd_list_element *c, const char *value)
113 {
114 fprintf_filtered (file, _("Printing of 8-bit characters "
115 "in strings as \\nnn is %s.\n"),
116 value);
117 }
118
119 /* String to be printed before warning messages, if any. */
120
121 const char *warning_pre_print = "\nwarning: ";
122
123 bool pagination_enabled = true;
124 static void
125 show_pagination_enabled (struct ui_file *file, int from_tty,
126 struct cmd_list_element *c, const char *value)
127 {
128 fprintf_filtered (file, _("State of pagination is %s.\n"), value);
129 }
130
131 \f
132
133
134 /* Print a warning message. The first argument STRING is the warning
135 message, used as an fprintf format string, the second is the
136 va_list of arguments for that string. A warning is unfiltered (not
137 paginated) so that the user does not need to page through each
138 screen full of warnings when there are lots of them. */
139
140 void
141 vwarning (const char *string, va_list args)
142 {
143 if (deprecated_warning_hook)
144 (*deprecated_warning_hook) (string, args);
145 else
146 {
147 gdb::optional<target_terminal::scoped_restore_terminal_state> term_state;
148 if (target_supports_terminal_ours ())
149 {
150 term_state.emplace ();
151 target_terminal::ours_for_output ();
152 }
153 if (filtered_printing_initialized ())
154 wrap_here (""); /* Force out any buffered output. */
155 gdb_flush (gdb_stdout);
156 if (warning_pre_print)
157 fputs_unfiltered (warning_pre_print, gdb_stderr);
158 vfprintf_unfiltered (gdb_stderr, string, args);
159 fprintf_unfiltered (gdb_stderr, "\n");
160 }
161 }
162
163 /* Print an error message and return to command level.
164 The first argument STRING is the error message, used as a fprintf string,
165 and the remaining args are passed as arguments to it. */
166
167 void
168 verror (const char *string, va_list args)
169 {
170 throw_verror (GENERIC_ERROR, string, args);
171 }
172
173 void
174 error_stream (const string_file &stream)
175 {
176 error (("%s"), stream.c_str ());
177 }
178
179 /* Emit a message and abort. */
180
181 static void ATTRIBUTE_NORETURN
182 abort_with_message (const char *msg)
183 {
184 if (current_ui == NULL)
185 fputs (msg, stderr);
186 else
187 fputs_unfiltered (msg, gdb_stderr);
188
189 abort (); /* ARI: abort */
190 }
191
192 /* Dump core trying to increase the core soft limit to hard limit first. */
193
194 void
195 dump_core (void)
196 {
197 #ifdef HAVE_SETRLIMIT
198 struct rlimit rlim = { (rlim_t) RLIM_INFINITY, (rlim_t) RLIM_INFINITY };
199
200 setrlimit (RLIMIT_CORE, &rlim);
201 #endif /* HAVE_SETRLIMIT */
202
203 abort (); /* ARI: abort */
204 }
205
206 /* Check whether GDB will be able to dump core using the dump_core
207 function. Returns zero if GDB cannot or should not dump core.
208 If LIMIT_KIND is LIMIT_CUR the user's soft limit will be respected.
209 If LIMIT_KIND is LIMIT_MAX only the hard limit will be respected. */
210
211 int
212 can_dump_core (enum resource_limit_kind limit_kind)
213 {
214 #ifdef HAVE_GETRLIMIT
215 struct rlimit rlim;
216
217 /* Be quiet and assume we can dump if an error is returned. */
218 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
219 return 1;
220
221 switch (limit_kind)
222 {
223 case LIMIT_CUR:
224 if (rlim.rlim_cur == 0)
225 return 0;
226 /* Fall through. */
227
228 case LIMIT_MAX:
229 if (rlim.rlim_max == 0)
230 return 0;
231 }
232 #endif /* HAVE_GETRLIMIT */
233
234 return 1;
235 }
236
237 /* Print a warning that we cannot dump core. */
238
239 void
240 warn_cant_dump_core (const char *reason)
241 {
242 fprintf_unfiltered (gdb_stderr,
243 _("%s\nUnable to dump core, use `ulimit -c"
244 " unlimited' before executing GDB next time.\n"),
245 reason);
246 }
247
248 /* Check whether GDB will be able to dump core using the dump_core
249 function, and print a warning if we cannot. */
250
251 static int
252 can_dump_core_warn (enum resource_limit_kind limit_kind,
253 const char *reason)
254 {
255 int core_dump_allowed = can_dump_core (limit_kind);
256
257 if (!core_dump_allowed)
258 warn_cant_dump_core (reason);
259
260 return core_dump_allowed;
261 }
262
263 /* Allow the user to configure the debugger behavior with respect to
264 what to do when an internal problem is detected. */
265
266 const char internal_problem_ask[] = "ask";
267 const char internal_problem_yes[] = "yes";
268 const char internal_problem_no[] = "no";
269 static const char *const internal_problem_modes[] =
270 {
271 internal_problem_ask,
272 internal_problem_yes,
273 internal_problem_no,
274 NULL
275 };
276
277 /* Print a message reporting an internal error/warning. Ask the user
278 if they want to continue, dump core, or just exit. Return
279 something to indicate a quit. */
280
281 struct internal_problem
282 {
283 const char *name;
284 int user_settable_should_quit;
285 const char *should_quit;
286 int user_settable_should_dump_core;
287 const char *should_dump_core;
288 };
289
290 /* Report a problem, internal to GDB, to the user. Once the problem
291 has been reported, and assuming GDB didn't quit, the caller can
292 either allow execution to resume or throw an error. */
293
294 static void ATTRIBUTE_PRINTF (4, 0)
295 internal_vproblem (struct internal_problem *problem,
296 const char *file, int line, const char *fmt, va_list ap)
297 {
298 static int dejavu;
299 int quit_p;
300 int dump_core_p;
301 std::string reason;
302
303 /* Don't allow infinite error/warning recursion. */
304 {
305 static const char msg[] = "Recursive internal problem.\n";
306
307 switch (dejavu)
308 {
309 case 0:
310 dejavu = 1;
311 break;
312 case 1:
313 dejavu = 2;
314 abort_with_message (msg);
315 default:
316 dejavu = 3;
317 /* Newer GLIBC versions put the warn_unused_result attribute
318 on write, but this is one of those rare cases where
319 ignoring the return value is correct. Casting to (void)
320 does not fix this problem. This is the solution suggested
321 at http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25509. */
322 if (write (STDERR_FILENO, msg, sizeof (msg)) != sizeof (msg))
323 abort (); /* ARI: abort */
324 exit (1);
325 }
326 }
327
328 /* Create a string containing the full error/warning message. Need
329 to call query with this full string, as otherwize the reason
330 (error/warning) and question become separated. Format using a
331 style similar to a compiler error message. Include extra detail
332 so that the user knows that they are living on the edge. */
333 {
334 std::string msg = string_vprintf (fmt, ap);
335 reason = string_printf ("%s:%d: %s: %s\n"
336 "A problem internal to GDB has been detected,\n"
337 "further debugging may prove unreliable.",
338 file, line, problem->name, msg.c_str ());
339 }
340
341 /* Fall back to abort_with_message if gdb_stderr is not set up. */
342 if (current_ui == NULL)
343 {
344 fputs (reason.c_str (), stderr);
345 abort_with_message ("\n");
346 }
347
348 /* Try to get the message out and at the start of a new line. */
349 gdb::optional<target_terminal::scoped_restore_terminal_state> term_state;
350 if (target_supports_terminal_ours ())
351 {
352 term_state.emplace ();
353 target_terminal::ours_for_output ();
354 }
355 if (filtered_printing_initialized ())
356 begin_line ();
357
358 /* Emit the message unless query will emit it below. */
359 if (problem->should_quit != internal_problem_ask
360 || !confirm
361 || !filtered_printing_initialized ())
362 fprintf_unfiltered (gdb_stderr, "%s\n", reason.c_str ());
363
364 if (problem->should_quit == internal_problem_ask)
365 {
366 /* Default (yes/batch case) is to quit GDB. When in batch mode
367 this lessens the likelihood of GDB going into an infinite
368 loop. */
369 if (!confirm || !filtered_printing_initialized ())
370 quit_p = 1;
371 else
372 quit_p = query (_("%s\nQuit this debugging session? "),
373 reason.c_str ());
374 }
375 else if (problem->should_quit == internal_problem_yes)
376 quit_p = 1;
377 else if (problem->should_quit == internal_problem_no)
378 quit_p = 0;
379 else
380 internal_error (__FILE__, __LINE__, _("bad switch"));
381
382 fputs_unfiltered (_("\nThis is a bug, please report it."), gdb_stderr);
383 if (REPORT_BUGS_TO[0])
384 fprintf_unfiltered (gdb_stderr, _(" For instructions, see:\n%s."),
385 REPORT_BUGS_TO);
386 fputs_unfiltered ("\n\n", gdb_stderr);
387
388 if (problem->should_dump_core == internal_problem_ask)
389 {
390 if (!can_dump_core_warn (LIMIT_MAX, reason.c_str ()))
391 dump_core_p = 0;
392 else if (!filtered_printing_initialized ())
393 dump_core_p = 1;
394 else
395 {
396 /* Default (yes/batch case) is to dump core. This leaves a GDB
397 `dropping' so that it is easier to see that something went
398 wrong in GDB. */
399 dump_core_p = query (_("%s\nCreate a core file of GDB? "),
400 reason.c_str ());
401 }
402 }
403 else if (problem->should_dump_core == internal_problem_yes)
404 dump_core_p = can_dump_core_warn (LIMIT_MAX, reason.c_str ());
405 else if (problem->should_dump_core == internal_problem_no)
406 dump_core_p = 0;
407 else
408 internal_error (__FILE__, __LINE__, _("bad switch"));
409
410 if (quit_p)
411 {
412 if (dump_core_p)
413 dump_core ();
414 else
415 exit (1);
416 }
417 else
418 {
419 if (dump_core_p)
420 {
421 #ifdef HAVE_WORKING_FORK
422 if (fork () == 0)
423 dump_core ();
424 #endif
425 }
426 }
427
428 dejavu = 0;
429 }
430
431 static struct internal_problem internal_error_problem = {
432 "internal-error", 1, internal_problem_ask, 1, internal_problem_ask
433 };
434
435 void
436 internal_verror (const char *file, int line, const char *fmt, va_list ap)
437 {
438 internal_vproblem (&internal_error_problem, file, line, fmt, ap);
439 throw_quit (_("Command aborted."));
440 }
441
442 static struct internal_problem internal_warning_problem = {
443 "internal-warning", 1, internal_problem_ask, 1, internal_problem_ask
444 };
445
446 void
447 internal_vwarning (const char *file, int line, const char *fmt, va_list ap)
448 {
449 internal_vproblem (&internal_warning_problem, file, line, fmt, ap);
450 }
451
452 static struct internal_problem demangler_warning_problem = {
453 "demangler-warning", 1, internal_problem_ask, 0, internal_problem_no
454 };
455
456 void
457 demangler_vwarning (const char *file, int line, const char *fmt, va_list ap)
458 {
459 internal_vproblem (&demangler_warning_problem, file, line, fmt, ap);
460 }
461
462 void
463 demangler_warning (const char *file, int line, const char *string, ...)
464 {
465 va_list ap;
466
467 va_start (ap, string);
468 demangler_vwarning (file, line, string, ap);
469 va_end (ap);
470 }
471
472 /* When GDB reports an internal problem (error or warning) it gives
473 the user the opportunity to quit GDB and/or create a core file of
474 the current debug session. This function registers a few commands
475 that make it possible to specify that GDB should always or never
476 quit or create a core file, without asking. The commands look
477 like:
478
479 maint set PROBLEM-NAME quit ask|yes|no
480 maint show PROBLEM-NAME quit
481 maint set PROBLEM-NAME corefile ask|yes|no
482 maint show PROBLEM-NAME corefile
483
484 Where PROBLEM-NAME is currently "internal-error" or
485 "internal-warning". */
486
487 static void
488 add_internal_problem_command (struct internal_problem *problem)
489 {
490 struct cmd_list_element **set_cmd_list;
491 struct cmd_list_element **show_cmd_list;
492 char *set_doc;
493 char *show_doc;
494
495 set_cmd_list = XNEW (struct cmd_list_element *);
496 show_cmd_list = XNEW (struct cmd_list_element *);
497 *set_cmd_list = NULL;
498 *show_cmd_list = NULL;
499
500 set_doc = xstrprintf (_("Configure what GDB does when %s is detected."),
501 problem->name);
502
503 show_doc = xstrprintf (_("Show what GDB does when %s is detected."),
504 problem->name);
505
506 add_basic_prefix_cmd (problem->name, class_maintenance, set_doc,
507 set_cmd_list,
508 concat ("maintenance set ", problem->name, " ",
509 (char *) NULL),
510 0/*allow-unknown*/, &maintenance_set_cmdlist);
511
512 add_show_prefix_cmd (problem->name, class_maintenance, show_doc,
513 show_cmd_list,
514 concat ("maintenance show ", problem->name, " ",
515 (char *) NULL),
516 0/*allow-unknown*/, &maintenance_show_cmdlist);
517
518 if (problem->user_settable_should_quit)
519 {
520 set_doc = xstrprintf (_("Set whether GDB should quit "
521 "when an %s is detected."),
522 problem->name);
523 show_doc = xstrprintf (_("Show whether GDB will quit "
524 "when an %s is detected."),
525 problem->name);
526 add_setshow_enum_cmd ("quit", class_maintenance,
527 internal_problem_modes,
528 &problem->should_quit,
529 set_doc,
530 show_doc,
531 NULL, /* help_doc */
532 NULL, /* setfunc */
533 NULL, /* showfunc */
534 set_cmd_list,
535 show_cmd_list);
536
537 xfree (set_doc);
538 xfree (show_doc);
539 }
540
541 if (problem->user_settable_should_dump_core)
542 {
543 set_doc = xstrprintf (_("Set whether GDB should create a core "
544 "file of GDB when %s is detected."),
545 problem->name);
546 show_doc = xstrprintf (_("Show whether GDB will create a core "
547 "file of GDB when %s is detected."),
548 problem->name);
549 add_setshow_enum_cmd ("corefile", class_maintenance,
550 internal_problem_modes,
551 &problem->should_dump_core,
552 set_doc,
553 show_doc,
554 NULL, /* help_doc */
555 NULL, /* setfunc */
556 NULL, /* showfunc */
557 set_cmd_list,
558 show_cmd_list);
559
560 xfree (set_doc);
561 xfree (show_doc);
562 }
563 }
564
565 /* Return a newly allocated string, containing the PREFIX followed
566 by the system error message for errno (separated by a colon). */
567
568 static std::string
569 perror_string (const char *prefix)
570 {
571 const char *err = safe_strerror (errno);
572 return std::string (prefix) + ": " + err;
573 }
574
575 /* Print the system error message for errno, and also mention STRING
576 as the file name for which the error was encountered. Use ERRCODE
577 for the thrown exception. Then return to command level. */
578
579 void
580 throw_perror_with_name (enum errors errcode, const char *string)
581 {
582 std::string combined = perror_string (string);
583
584 /* I understand setting these is a matter of taste. Still, some people
585 may clear errno but not know about bfd_error. Doing this here is not
586 unreasonable. */
587 bfd_set_error (bfd_error_no_error);
588 errno = 0;
589
590 throw_error (errcode, _("%s."), combined.c_str ());
591 }
592
593 /* See throw_perror_with_name, ERRCODE defaults here to GENERIC_ERROR. */
594
595 void
596 perror_with_name (const char *string)
597 {
598 throw_perror_with_name (GENERIC_ERROR, string);
599 }
600
601 /* Same as perror_with_name except that it prints a warning instead
602 of throwing an error. */
603
604 void
605 perror_warning_with_name (const char *string)
606 {
607 std::string combined = perror_string (string);
608 warning (_("%s"), combined.c_str ());
609 }
610
611 /* Print the system error message for ERRCODE, and also mention STRING
612 as the file name for which the error was encountered. */
613
614 void
615 print_sys_errmsg (const char *string, int errcode)
616 {
617 const char *err = safe_strerror (errcode);
618 /* We want anything which was printed on stdout to come out first, before
619 this message. */
620 gdb_flush (gdb_stdout);
621 fprintf_unfiltered (gdb_stderr, "%s: %s.\n", string, err);
622 }
623
624 /* Control C eventually causes this to be called, at a convenient time. */
625
626 void
627 quit (void)
628 {
629 if (sync_quit_force_run)
630 {
631 sync_quit_force_run = 0;
632 quit_force (NULL, 0);
633 }
634
635 #ifdef __MSDOS__
636 /* No steenking SIGINT will ever be coming our way when the
637 program is resumed. Don't lie. */
638 throw_quit ("Quit");
639 #else
640 if (job_control
641 /* If there is no terminal switching for this target, then we can't
642 possibly get screwed by the lack of job control. */
643 || !target_supports_terminal_ours ())
644 throw_quit ("Quit");
645 else
646 throw_quit ("Quit (expect signal SIGINT when the program is resumed)");
647 #endif
648 }
649
650 /* See defs.h. */
651
652 void
653 maybe_quit (void)
654 {
655 if (sync_quit_force_run)
656 quit ();
657
658 quit_handler ();
659 }
660
661 \f
662 /* Called when a memory allocation fails, with the number of bytes of
663 memory requested in SIZE. */
664
665 void
666 malloc_failure (long size)
667 {
668 if (size > 0)
669 {
670 internal_error (__FILE__, __LINE__,
671 _("virtual memory exhausted: can't allocate %ld bytes."),
672 size);
673 }
674 else
675 {
676 internal_error (__FILE__, __LINE__, _("virtual memory exhausted."));
677 }
678 }
679
680 /* See common/errors.h. */
681
682 void
683 flush_streams ()
684 {
685 gdb_stdout->flush ();
686 gdb_stderr->flush ();
687 }
688
689 /* My replacement for the read system call.
690 Used like `read' but keeps going if `read' returns too soon. */
691
692 int
693 myread (int desc, char *addr, int len)
694 {
695 int val;
696 int orglen = len;
697
698 while (len > 0)
699 {
700 val = read (desc, addr, len);
701 if (val < 0)
702 return val;
703 if (val == 0)
704 return orglen - len;
705 len -= val;
706 addr += val;
707 }
708 return orglen;
709 }
710
711 void
712 print_spaces (int n, struct ui_file *file)
713 {
714 fputs_unfiltered (n_spaces (n), file);
715 }
716
717 /* Print a host address. */
718
719 void
720 gdb_print_host_address_1 (const void *addr, struct ui_file *stream)
721 {
722 fprintf_filtered (stream, "%s", host_address_to_string (addr));
723 }
724
725 \f
726
727 /* An RAII class that sets up to handle input and then tears down
728 during destruction. */
729
730 class scoped_input_handler
731 {
732 public:
733
734 scoped_input_handler ()
735 : m_quit_handler (&quit_handler, default_quit_handler),
736 m_ui (NULL)
737 {
738 target_terminal::ours ();
739 ui_register_input_event_handler (current_ui);
740 if (current_ui->prompt_state == PROMPT_BLOCKED)
741 m_ui = current_ui;
742 }
743
744 ~scoped_input_handler ()
745 {
746 if (m_ui != NULL)
747 ui_unregister_input_event_handler (m_ui);
748 }
749
750 DISABLE_COPY_AND_ASSIGN (scoped_input_handler);
751
752 private:
753
754 /* Save and restore the terminal state. */
755 target_terminal::scoped_restore_terminal_state m_term_state;
756
757 /* Save and restore the quit handler. */
758 scoped_restore_tmpl<quit_handler_ftype *> m_quit_handler;
759
760 /* The saved UI, if non-NULL. */
761 struct ui *m_ui;
762 };
763
764 \f
765
766 /* This function supports the query, nquery, and yquery functions.
767 Ask user a y-or-n question and return 0 if answer is no, 1 if
768 answer is yes, or default the answer to the specified default
769 (for yquery or nquery). DEFCHAR may be 'y' or 'n' to provide a
770 default answer, or '\0' for no default.
771 CTLSTR is the control string and should end in "? ". It should
772 not say how to answer, because we do that.
773 ARGS are the arguments passed along with the CTLSTR argument to
774 printf. */
775
776 static int ATTRIBUTE_PRINTF (1, 0)
777 defaulted_query (const char *ctlstr, const char defchar, va_list args)
778 {
779 int retval;
780 int def_value;
781 char def_answer, not_def_answer;
782 const char *y_string, *n_string;
783
784 /* Set up according to which answer is the default. */
785 if (defchar == '\0')
786 {
787 def_value = 1;
788 def_answer = 'Y';
789 not_def_answer = 'N';
790 y_string = "y";
791 n_string = "n";
792 }
793 else if (defchar == 'y')
794 {
795 def_value = 1;
796 def_answer = 'Y';
797 not_def_answer = 'N';
798 y_string = "[y]";
799 n_string = "n";
800 }
801 else
802 {
803 def_value = 0;
804 def_answer = 'N';
805 not_def_answer = 'Y';
806 y_string = "y";
807 n_string = "[n]";
808 }
809
810 /* Automatically answer the default value if the user did not want
811 prompts or the command was issued with the server prefix. */
812 if (!confirm || server_command)
813 return def_value;
814
815 /* If input isn't coming from the user directly, just say what
816 question we're asking, and then answer the default automatically. This
817 way, important error messages don't get lost when talking to GDB
818 over a pipe. */
819 if (current_ui->instream != current_ui->stdin_stream
820 || !input_interactive_p (current_ui)
821 /* Restrict queries to the main UI. */
822 || current_ui != main_ui)
823 {
824 target_terminal::scoped_restore_terminal_state term_state;
825 target_terminal::ours_for_output ();
826 wrap_here ("");
827 vfprintf_filtered (gdb_stdout, ctlstr, args);
828
829 printf_filtered (_("(%s or %s) [answered %c; "
830 "input not from terminal]\n"),
831 y_string, n_string, def_answer);
832
833 return def_value;
834 }
835
836 if (deprecated_query_hook)
837 {
838 target_terminal::scoped_restore_terminal_state term_state;
839 return deprecated_query_hook (ctlstr, args);
840 }
841
842 /* Format the question outside of the loop, to avoid reusing args. */
843 std::string question = string_vprintf (ctlstr, args);
844 std::string prompt
845 = string_printf (_("%s%s(%s or %s) %s"),
846 annotation_level > 1 ? "\n\032\032pre-query\n" : "",
847 question.c_str (), y_string, n_string,
848 annotation_level > 1 ? "\n\032\032query\n" : "");
849
850 /* Used to add duration we waited for user to respond to
851 prompt_for_continue_wait_time. */
852 using namespace std::chrono;
853 steady_clock::time_point prompt_started = steady_clock::now ();
854
855 scoped_input_handler prepare_input;
856
857 while (1)
858 {
859 char *response, answer;
860
861 gdb_flush (gdb_stdout);
862 response = gdb_readline_wrapper (prompt.c_str ());
863
864 if (response == NULL) /* C-d */
865 {
866 printf_filtered ("EOF [assumed %c]\n", def_answer);
867 retval = def_value;
868 break;
869 }
870
871 answer = response[0];
872 xfree (response);
873
874 if (answer >= 'a')
875 answer -= 040;
876 /* Check answer. For the non-default, the user must specify
877 the non-default explicitly. */
878 if (answer == not_def_answer)
879 {
880 retval = !def_value;
881 break;
882 }
883 /* Otherwise, if a default was specified, the user may either
884 specify the required input or have it default by entering
885 nothing. */
886 if (answer == def_answer
887 || (defchar != '\0' && answer == '\0'))
888 {
889 retval = def_value;
890 break;
891 }
892 /* Invalid entries are not defaulted and require another selection. */
893 printf_filtered (_("Please answer %s or %s.\n"),
894 y_string, n_string);
895 }
896
897 /* Add time spend in this routine to prompt_for_continue_wait_time. */
898 prompt_for_continue_wait_time += steady_clock::now () - prompt_started;
899
900 if (annotation_level > 1)
901 printf_filtered (("\n\032\032post-query\n"));
902 return retval;
903 }
904 \f
905
906 /* Ask user a y-or-n question and return 0 if answer is no, 1 if
907 answer is yes, or 0 if answer is defaulted.
908 Takes three args which are given to printf to print the question.
909 The first, a control string, should end in "? ".
910 It should not say how to answer, because we do that. */
911
912 int
913 nquery (const char *ctlstr, ...)
914 {
915 va_list args;
916 int ret;
917
918 va_start (args, ctlstr);
919 ret = defaulted_query (ctlstr, 'n', args);
920 va_end (args);
921 return ret;
922 }
923
924 /* Ask user a y-or-n question and return 0 if answer is no, 1 if
925 answer is yes, or 1 if answer is defaulted.
926 Takes three args which are given to printf to print the question.
927 The first, a control string, should end in "? ".
928 It should not say how to answer, because we do that. */
929
930 int
931 yquery (const char *ctlstr, ...)
932 {
933 va_list args;
934 int ret;
935
936 va_start (args, ctlstr);
937 ret = defaulted_query (ctlstr, 'y', args);
938 va_end (args);
939 return ret;
940 }
941
942 /* Ask user a y-or-n question and return 1 iff answer is yes.
943 Takes three args which are given to printf to print the question.
944 The first, a control string, should end in "? ".
945 It should not say how to answer, because we do that. */
946
947 int
948 query (const char *ctlstr, ...)
949 {
950 va_list args;
951 int ret;
952
953 va_start (args, ctlstr);
954 ret = defaulted_query (ctlstr, '\0', args);
955 va_end (args);
956 return ret;
957 }
958
959 /* A helper for parse_escape that converts a host character to a
960 target character. C is the host character. If conversion is
961 possible, then the target character is stored in *TARGET_C and the
962 function returns 1. Otherwise, the function returns 0. */
963
964 static int
965 host_char_to_target (struct gdbarch *gdbarch, int c, int *target_c)
966 {
967 char the_char = c;
968 int result = 0;
969
970 auto_obstack host_data;
971
972 convert_between_encodings (target_charset (gdbarch), host_charset (),
973 (gdb_byte *) &the_char, 1, 1,
974 &host_data, translit_none);
975
976 if (obstack_object_size (&host_data) == 1)
977 {
978 result = 1;
979 *target_c = *(char *) obstack_base (&host_data);
980 }
981
982 return result;
983 }
984
985 /* Parse a C escape sequence. STRING_PTR points to a variable
986 containing a pointer to the string to parse. That pointer
987 should point to the character after the \. That pointer
988 is updated past the characters we use. The value of the
989 escape sequence is returned.
990
991 A negative value means the sequence \ newline was seen,
992 which is supposed to be equivalent to nothing at all.
993
994 If \ is followed by a null character, we return a negative
995 value and leave the string pointer pointing at the null character.
996
997 If \ is followed by 000, we return 0 and leave the string pointer
998 after the zeros. A value of 0 does not mean end of string. */
999
1000 int
1001 parse_escape (struct gdbarch *gdbarch, const char **string_ptr)
1002 {
1003 int target_char = -2; /* Initialize to avoid GCC warnings. */
1004 int c = *(*string_ptr)++;
1005
1006 switch (c)
1007 {
1008 case '\n':
1009 return -2;
1010 case 0:
1011 (*string_ptr)--;
1012 return 0;
1013
1014 case '0':
1015 case '1':
1016 case '2':
1017 case '3':
1018 case '4':
1019 case '5':
1020 case '6':
1021 case '7':
1022 {
1023 int i = host_hex_value (c);
1024 int count = 0;
1025 while (++count < 3)
1026 {
1027 c = (**string_ptr);
1028 if (isdigit (c) && c != '8' && c != '9')
1029 {
1030 (*string_ptr)++;
1031 i *= 8;
1032 i += host_hex_value (c);
1033 }
1034 else
1035 {
1036 break;
1037 }
1038 }
1039 return i;
1040 }
1041
1042 case 'a':
1043 c = '\a';
1044 break;
1045 case 'b':
1046 c = '\b';
1047 break;
1048 case 'f':
1049 c = '\f';
1050 break;
1051 case 'n':
1052 c = '\n';
1053 break;
1054 case 'r':
1055 c = '\r';
1056 break;
1057 case 't':
1058 c = '\t';
1059 break;
1060 case 'v':
1061 c = '\v';
1062 break;
1063
1064 default:
1065 break;
1066 }
1067
1068 if (!host_char_to_target (gdbarch, c, &target_char))
1069 error (_("The escape sequence `\\%c' is equivalent to plain `%c',"
1070 " which has no equivalent\nin the `%s' character set."),
1071 c, c, target_charset (gdbarch));
1072 return target_char;
1073 }
1074 \f
1075 /* Print the character C on STREAM as part of the contents of a literal
1076 string whose delimiter is QUOTER. Note that this routine should only
1077 be called for printing things which are independent of the language
1078 of the program being debugged.
1079
1080 printchar will normally escape backslashes and instances of QUOTER. If
1081 QUOTER is 0, printchar won't escape backslashes or any quoting character.
1082 As a side effect, if you pass the backslash character as the QUOTER,
1083 printchar will escape backslashes as usual, but not any other quoting
1084 character. */
1085
1086 static void
1087 printchar (int c, do_fputc_ftype do_fputc, ui_file *stream, int quoter)
1088 {
1089 c &= 0xFF; /* Avoid sign bit follies */
1090
1091 if (c < 0x20 || /* Low control chars */
1092 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
1093 (sevenbit_strings && c >= 0x80))
1094 { /* high order bit set */
1095 do_fputc ('\\', stream);
1096
1097 switch (c)
1098 {
1099 case '\n':
1100 do_fputc ('n', stream);
1101 break;
1102 case '\b':
1103 do_fputc ('b', stream);
1104 break;
1105 case '\t':
1106 do_fputc ('t', stream);
1107 break;
1108 case '\f':
1109 do_fputc ('f', stream);
1110 break;
1111 case '\r':
1112 do_fputc ('r', stream);
1113 break;
1114 case '\033':
1115 do_fputc ('e', stream);
1116 break;
1117 case '\007':
1118 do_fputc ('a', stream);
1119 break;
1120 default:
1121 {
1122 do_fputc ('0' + ((c >> 6) & 0x7), stream);
1123 do_fputc ('0' + ((c >> 3) & 0x7), stream);
1124 do_fputc ('0' + ((c >> 0) & 0x7), stream);
1125 break;
1126 }
1127 }
1128 }
1129 else
1130 {
1131 if (quoter != 0 && (c == '\\' || c == quoter))
1132 do_fputc ('\\', stream);
1133 do_fputc (c, stream);
1134 }
1135 }
1136
1137 /* Print the character C on STREAM as part of the contents of a
1138 literal string whose delimiter is QUOTER. Note that these routines
1139 should only be call for printing things which are independent of
1140 the language of the program being debugged. */
1141
1142 void
1143 fputstr_filtered (const char *str, int quoter, struct ui_file *stream)
1144 {
1145 while (*str)
1146 printchar (*str++, fputc_filtered, stream, quoter);
1147 }
1148
1149 void
1150 fputstr_unfiltered (const char *str, int quoter, struct ui_file *stream)
1151 {
1152 while (*str)
1153 printchar (*str++, fputc_unfiltered, stream, quoter);
1154 }
1155
1156 void
1157 fputstrn_filtered (const char *str, int n, int quoter,
1158 struct ui_file *stream)
1159 {
1160 for (int i = 0; i < n; i++)
1161 printchar (str[i], fputc_filtered, stream, quoter);
1162 }
1163
1164 void
1165 fputstrn_unfiltered (const char *str, int n, int quoter,
1166 do_fputc_ftype do_fputc, struct ui_file *stream)
1167 {
1168 for (int i = 0; i < n; i++)
1169 printchar (str[i], do_fputc, stream, quoter);
1170 }
1171 \f
1172
1173 /* Number of lines per page or UINT_MAX if paging is disabled. */
1174 static unsigned int lines_per_page;
1175 static void
1176 show_lines_per_page (struct ui_file *file, int from_tty,
1177 struct cmd_list_element *c, const char *value)
1178 {
1179 fprintf_filtered (file,
1180 _("Number of lines gdb thinks are in a page is %s.\n"),
1181 value);
1182 }
1183
1184 /* Number of chars per line or UINT_MAX if line folding is disabled. */
1185 static unsigned int chars_per_line;
1186 static void
1187 show_chars_per_line (struct ui_file *file, int from_tty,
1188 struct cmd_list_element *c, const char *value)
1189 {
1190 fprintf_filtered (file,
1191 _("Number of characters gdb thinks "
1192 "are in a line is %s.\n"),
1193 value);
1194 }
1195
1196 /* Current count of lines printed on this page, chars on this line. */
1197 static unsigned int lines_printed, chars_printed;
1198
1199 /* True if pagination is disabled for just one command. */
1200
1201 static bool pagination_disabled_for_command;
1202
1203 /* Buffer and start column of buffered text, for doing smarter word-
1204 wrapping. When someone calls wrap_here(), we start buffering output
1205 that comes through fputs_filtered(). If we see a newline, we just
1206 spit it out and forget about the wrap_here(). If we see another
1207 wrap_here(), we spit it out and remember the newer one. If we see
1208 the end of the line, we spit out a newline, the indent, and then
1209 the buffered output. */
1210
1211 static bool filter_initialized = false;
1212
1213 /* Contains characters which are waiting to be output (they have
1214 already been counted in chars_printed). */
1215 static std::string wrap_buffer;
1216
1217 /* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1218 is non-zero. */
1219 static const char *wrap_indent;
1220
1221 /* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1222 is not in effect. */
1223 static int wrap_column;
1224
1225 /* The style applied at the time that wrap_here was called. */
1226 static ui_file_style wrap_style;
1227 \f
1228
1229 /* Initialize the number of lines per page and chars per line. */
1230
1231 void
1232 init_page_info (void)
1233 {
1234 if (batch_flag)
1235 {
1236 lines_per_page = UINT_MAX;
1237 chars_per_line = UINT_MAX;
1238 }
1239 else
1240 #if defined(TUI)
1241 if (!tui_get_command_dimension (&chars_per_line, &lines_per_page))
1242 #endif
1243 {
1244 int rows, cols;
1245
1246 #if defined(__GO32__)
1247 rows = ScreenRows ();
1248 cols = ScreenCols ();
1249 lines_per_page = rows;
1250 chars_per_line = cols;
1251 #else
1252 /* Make sure Readline has initialized its terminal settings. */
1253 rl_reset_terminal (NULL);
1254
1255 /* Get the screen size from Readline. */
1256 rl_get_screen_size (&rows, &cols);
1257 lines_per_page = rows;
1258 chars_per_line = cols;
1259
1260 /* Readline should have fetched the termcap entry for us.
1261 Only try to use tgetnum function if rl_get_screen_size
1262 did not return a useful value. */
1263 if (((rows <= 0) && (tgetnum ((char *) "li") < 0))
1264 /* Also disable paging if inside Emacs. $EMACS was used
1265 before Emacs v25.1, $INSIDE_EMACS is used since then. */
1266 || getenv ("EMACS") || getenv ("INSIDE_EMACS"))
1267 {
1268 /* The number of lines per page is not mentioned in the terminal
1269 description or EMACS environment variable is set. This probably
1270 means that paging is not useful, so disable paging. */
1271 lines_per_page = UINT_MAX;
1272 }
1273
1274 /* If the output is not a terminal, don't paginate it. */
1275 if (!gdb_stdout->isatty ())
1276 lines_per_page = UINT_MAX;
1277 #endif
1278 }
1279
1280 /* We handle SIGWINCH ourselves. */
1281 rl_catch_sigwinch = 0;
1282
1283 set_screen_size ();
1284 set_width ();
1285 }
1286
1287 /* Return nonzero if filtered printing is initialized. */
1288 int
1289 filtered_printing_initialized (void)
1290 {
1291 return filter_initialized;
1292 }
1293
1294 set_batch_flag_and_restore_page_info::set_batch_flag_and_restore_page_info ()
1295 : m_save_lines_per_page (lines_per_page),
1296 m_save_chars_per_line (chars_per_line),
1297 m_save_batch_flag (batch_flag)
1298 {
1299 batch_flag = 1;
1300 init_page_info ();
1301 }
1302
1303 set_batch_flag_and_restore_page_info::~set_batch_flag_and_restore_page_info ()
1304 {
1305 batch_flag = m_save_batch_flag;
1306 chars_per_line = m_save_chars_per_line;
1307 lines_per_page = m_save_lines_per_page;
1308
1309 set_screen_size ();
1310 set_width ();
1311 }
1312
1313 /* Set the screen size based on LINES_PER_PAGE and CHARS_PER_LINE. */
1314
1315 static void
1316 set_screen_size (void)
1317 {
1318 int rows = lines_per_page;
1319 int cols = chars_per_line;
1320
1321 /* If we get 0 or negative ROWS or COLS, treat as "infinite" size.
1322 A negative number can be seen here with the "set width/height"
1323 commands and either:
1324
1325 - the user specified "unlimited", which maps to UINT_MAX, or
1326 - the user specified some number between INT_MAX and UINT_MAX.
1327
1328 Cap "infinity" to approximately sqrt(INT_MAX) so that we don't
1329 overflow in rl_set_screen_size, which multiplies rows and columns
1330 to compute the number of characters on the screen. */
1331
1332 const int sqrt_int_max = INT_MAX >> (sizeof (int) * 8 / 2);
1333
1334 if (rows <= 0 || rows > sqrt_int_max)
1335 {
1336 rows = sqrt_int_max;
1337 lines_per_page = UINT_MAX;
1338 }
1339
1340 if (cols <= 0 || cols > sqrt_int_max)
1341 {
1342 cols = sqrt_int_max;
1343 chars_per_line = UINT_MAX;
1344 }
1345
1346 /* Update Readline's idea of the terminal size. */
1347 rl_set_screen_size (rows, cols);
1348 }
1349
1350 /* Reinitialize WRAP_BUFFER. */
1351
1352 static void
1353 set_width (void)
1354 {
1355 if (chars_per_line == 0)
1356 init_page_info ();
1357
1358 wrap_buffer.clear ();
1359 filter_initialized = true;
1360 }
1361
1362 static void
1363 set_width_command (const char *args, int from_tty, struct cmd_list_element *c)
1364 {
1365 set_screen_size ();
1366 set_width ();
1367 }
1368
1369 static void
1370 set_height_command (const char *args, int from_tty, struct cmd_list_element *c)
1371 {
1372 set_screen_size ();
1373 }
1374
1375 /* See utils.h. */
1376
1377 void
1378 set_screen_width_and_height (int width, int height)
1379 {
1380 lines_per_page = height;
1381 chars_per_line = width;
1382
1383 set_screen_size ();
1384 set_width ();
1385 }
1386
1387 /* The currently applied style. */
1388
1389 static ui_file_style applied_style;
1390
1391 /* Emit an ANSI style escape for STYLE. If STREAM is nullptr, emit to
1392 the wrap buffer; otherwise emit to STREAM. */
1393
1394 static void
1395 emit_style_escape (const ui_file_style &style,
1396 struct ui_file *stream = nullptr)
1397 {
1398 applied_style = style;
1399
1400 if (stream == nullptr)
1401 wrap_buffer.append (style.to_ansi ());
1402 else
1403 stream->puts (style.to_ansi ().c_str ());
1404 }
1405
1406 /* Set the current output style. This will affect future uses of the
1407 _filtered output functions. */
1408
1409 static void
1410 set_output_style (struct ui_file *stream, const ui_file_style &style)
1411 {
1412 if (!stream->can_emit_style_escape ())
1413 return;
1414
1415 /* Note that we may not pass STREAM here, when we want to emit to
1416 the wrap buffer, not directly to STREAM. */
1417 if (stream == gdb_stdout)
1418 stream = nullptr;
1419 emit_style_escape (style, stream);
1420 }
1421
1422 /* See utils.h. */
1423
1424 void
1425 reset_terminal_style (struct ui_file *stream)
1426 {
1427 if (stream->can_emit_style_escape ())
1428 {
1429 /* Force the setting, regardless of what we think the setting
1430 might already be. */
1431 applied_style = ui_file_style ();
1432 wrap_buffer.append (applied_style.to_ansi ());
1433 }
1434 }
1435
1436 /* Wait, so the user can read what's on the screen. Prompt the user
1437 to continue by pressing RETURN. 'q' is also provided because
1438 telling users what to do in the prompt is more user-friendly than
1439 expecting them to think of Ctrl-C/SIGINT. */
1440
1441 static void
1442 prompt_for_continue (void)
1443 {
1444 char cont_prompt[120];
1445 /* Used to add duration we waited for user to respond to
1446 prompt_for_continue_wait_time. */
1447 using namespace std::chrono;
1448 steady_clock::time_point prompt_started = steady_clock::now ();
1449 bool disable_pagination = pagination_disabled_for_command;
1450
1451 /* Clear the current styling. */
1452 if (gdb_stdout->can_emit_style_escape ())
1453 emit_style_escape (ui_file_style (), gdb_stdout);
1454
1455 if (annotation_level > 1)
1456 printf_unfiltered (("\n\032\032pre-prompt-for-continue\n"));
1457
1458 strcpy (cont_prompt,
1459 "--Type <RET> for more, q to quit, "
1460 "c to continue without paging--");
1461 if (annotation_level > 1)
1462 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1463
1464 /* We must do this *before* we call gdb_readline_wrapper, else it
1465 will eventually call us -- thinking that we're trying to print
1466 beyond the end of the screen. */
1467 reinitialize_more_filter ();
1468
1469 scoped_input_handler prepare_input;
1470
1471 /* Call gdb_readline_wrapper, not readline, in order to keep an
1472 event loop running. */
1473 gdb::unique_xmalloc_ptr<char> ignore (gdb_readline_wrapper (cont_prompt));
1474
1475 /* Add time spend in this routine to prompt_for_continue_wait_time. */
1476 prompt_for_continue_wait_time += steady_clock::now () - prompt_started;
1477
1478 if (annotation_level > 1)
1479 printf_unfiltered (("\n\032\032post-prompt-for-continue\n"));
1480
1481 if (ignore != NULL)
1482 {
1483 char *p = ignore.get ();
1484
1485 while (*p == ' ' || *p == '\t')
1486 ++p;
1487 if (p[0] == 'q')
1488 /* Do not call quit here; there is no possibility of SIGINT. */
1489 throw_quit ("Quit");
1490 if (p[0] == 'c')
1491 disable_pagination = true;
1492 }
1493
1494 /* Now we have to do this again, so that GDB will know that it doesn't
1495 need to save the ---Type <return>--- line at the top of the screen. */
1496 reinitialize_more_filter ();
1497 pagination_disabled_for_command = disable_pagination;
1498
1499 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
1500 }
1501
1502 /* Initialize timer to keep track of how long we waited for the user. */
1503
1504 void
1505 reset_prompt_for_continue_wait_time (void)
1506 {
1507 using namespace std::chrono;
1508
1509 prompt_for_continue_wait_time = steady_clock::duration::zero ();
1510 }
1511
1512 /* Fetch the cumulative time spent in prompt_for_continue. */
1513
1514 std::chrono::steady_clock::duration
1515 get_prompt_for_continue_wait_time ()
1516 {
1517 return prompt_for_continue_wait_time;
1518 }
1519
1520 /* Reinitialize filter; ie. tell it to reset to original values. */
1521
1522 void
1523 reinitialize_more_filter (void)
1524 {
1525 lines_printed = 0;
1526 chars_printed = 0;
1527 pagination_disabled_for_command = false;
1528 }
1529
1530 /* Flush the wrap buffer to STREAM, if necessary. */
1531
1532 static void
1533 flush_wrap_buffer (struct ui_file *stream)
1534 {
1535 if (stream == gdb_stdout && !wrap_buffer.empty ())
1536 {
1537 stream->puts (wrap_buffer.c_str ());
1538 wrap_buffer.clear ();
1539 }
1540 }
1541
1542 /* See utils.h. */
1543
1544 void
1545 gdb_flush (struct ui_file *stream)
1546 {
1547 flush_wrap_buffer (stream);
1548 stream->flush ();
1549 }
1550
1551 /* Indicate that if the next sequence of characters overflows the line,
1552 a newline should be inserted here rather than when it hits the end.
1553 If INDENT is non-null, it is a string to be printed to indent the
1554 wrapped part on the next line. INDENT must remain accessible until
1555 the next call to wrap_here() or until a newline is printed through
1556 fputs_filtered().
1557
1558 If the line is already overfull, we immediately print a newline and
1559 the indentation, and disable further wrapping.
1560
1561 If we don't know the width of lines, but we know the page height,
1562 we must not wrap words, but should still keep track of newlines
1563 that were explicitly printed.
1564
1565 INDENT should not contain tabs, as that will mess up the char count
1566 on the next line. FIXME.
1567
1568 This routine is guaranteed to force out any output which has been
1569 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1570 used to force out output from the wrap_buffer. */
1571
1572 void
1573 wrap_here (const char *indent)
1574 {
1575 /* This should have been allocated, but be paranoid anyway. */
1576 gdb_assert (filter_initialized);
1577
1578 flush_wrap_buffer (gdb_stdout);
1579 if (chars_per_line == UINT_MAX) /* No line overflow checking. */
1580 {
1581 wrap_column = 0;
1582 }
1583 else if (chars_printed >= chars_per_line)
1584 {
1585 puts_filtered ("\n");
1586 if (indent != NULL)
1587 puts_filtered (indent);
1588 wrap_column = 0;
1589 }
1590 else
1591 {
1592 wrap_column = chars_printed;
1593 if (indent == NULL)
1594 wrap_indent = "";
1595 else
1596 wrap_indent = indent;
1597 wrap_style = applied_style;
1598 }
1599 }
1600
1601 /* Print input string to gdb_stdout, filtered, with wrap,
1602 arranging strings in columns of n chars. String can be
1603 right or left justified in the column. Never prints
1604 trailing spaces. String should never be longer than
1605 width. FIXME: this could be useful for the EXAMINE
1606 command, which currently doesn't tabulate very well. */
1607
1608 void
1609 puts_filtered_tabular (char *string, int width, int right)
1610 {
1611 int spaces = 0;
1612 int stringlen;
1613 char *spacebuf;
1614
1615 gdb_assert (chars_per_line > 0);
1616 if (chars_per_line == UINT_MAX)
1617 {
1618 fputs_filtered (string, gdb_stdout);
1619 fputs_filtered ("\n", gdb_stdout);
1620 return;
1621 }
1622
1623 if (((chars_printed - 1) / width + 2) * width >= chars_per_line)
1624 fputs_filtered ("\n", gdb_stdout);
1625
1626 if (width >= chars_per_line)
1627 width = chars_per_line - 1;
1628
1629 stringlen = strlen (string);
1630
1631 if (chars_printed > 0)
1632 spaces = width - (chars_printed - 1) % width - 1;
1633 if (right)
1634 spaces += width - stringlen;
1635
1636 spacebuf = (char *) alloca (spaces + 1);
1637 spacebuf[spaces] = '\0';
1638 while (spaces--)
1639 spacebuf[spaces] = ' ';
1640
1641 fputs_filtered (spacebuf, gdb_stdout);
1642 fputs_filtered (string, gdb_stdout);
1643 }
1644
1645
1646 /* Ensure that whatever gets printed next, using the filtered output
1647 commands, starts at the beginning of the line. I.e. if there is
1648 any pending output for the current line, flush it and start a new
1649 line. Otherwise do nothing. */
1650
1651 void
1652 begin_line (void)
1653 {
1654 if (chars_printed > 0)
1655 {
1656 puts_filtered ("\n");
1657 }
1658 }
1659
1660
1661 /* Like fputs but if FILTER is true, pause after every screenful.
1662
1663 Regardless of FILTER can wrap at points other than the final
1664 character of a line.
1665
1666 Unlike fputs, fputs_maybe_filtered does not return a value.
1667 It is OK for LINEBUFFER to be NULL, in which case just don't print
1668 anything.
1669
1670 Note that a longjmp to top level may occur in this routine (only if
1671 FILTER is true) (since prompt_for_continue may do so) so this
1672 routine should not be called when cleanups are not in place. */
1673
1674 static void
1675 fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream,
1676 int filter)
1677 {
1678 const char *lineptr;
1679
1680 if (linebuffer == 0)
1681 return;
1682
1683 /* Don't do any filtering if it is disabled. */
1684 if (stream != gdb_stdout
1685 || !pagination_enabled
1686 || pagination_disabled_for_command
1687 || batch_flag
1688 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX)
1689 || top_level_interpreter () == NULL
1690 || top_level_interpreter ()->interp_ui_out ()->is_mi_like_p ())
1691 {
1692 flush_wrap_buffer (stream);
1693 stream->puts (linebuffer);
1694 return;
1695 }
1696
1697 auto buffer_clearer
1698 = make_scope_exit ([&] ()
1699 {
1700 wrap_buffer.clear ();
1701 wrap_column = 0;
1702 wrap_indent = "";
1703 });
1704
1705 /* Go through and output each character. Show line extension
1706 when this is necessary; prompt user for new page when this is
1707 necessary. */
1708
1709 lineptr = linebuffer;
1710 while (*lineptr)
1711 {
1712 /* Possible new page. Note that PAGINATION_DISABLED_FOR_COMMAND
1713 might be set during this loop, so we must continue to check
1714 it here. */
1715 if (filter && (lines_printed >= lines_per_page - 1)
1716 && !pagination_disabled_for_command)
1717 prompt_for_continue ();
1718
1719 while (*lineptr && *lineptr != '\n')
1720 {
1721 int skip_bytes;
1722
1723 /* Print a single line. */
1724 if (*lineptr == '\t')
1725 {
1726 wrap_buffer.push_back ('\t');
1727 /* Shifting right by 3 produces the number of tab stops
1728 we have already passed, and then adding one and
1729 shifting left 3 advances to the next tab stop. */
1730 chars_printed = ((chars_printed >> 3) + 1) << 3;
1731 lineptr++;
1732 }
1733 else if (*lineptr == '\033'
1734 && skip_ansi_escape (lineptr, &skip_bytes))
1735 {
1736 wrap_buffer.append (lineptr, skip_bytes);
1737 /* Note that we don't consider this a character, so we
1738 don't increment chars_printed here. */
1739 lineptr += skip_bytes;
1740 }
1741 else
1742 {
1743 wrap_buffer.push_back (*lineptr);
1744 chars_printed++;
1745 lineptr++;
1746 }
1747
1748 if (chars_printed >= chars_per_line)
1749 {
1750 unsigned int save_chars = chars_printed;
1751
1752 /* If we change the style, below, we'll want to reset it
1753 before continuing to print. If there is no wrap
1754 column, then we'll only reset the style if the pager
1755 prompt is given; and to avoid emitting style
1756 sequences in the middle of a run of text, we track
1757 this as well. */
1758 ui_file_style save_style;
1759 bool did_paginate = false;
1760
1761 chars_printed = 0;
1762 lines_printed++;
1763 if (wrap_column)
1764 {
1765 save_style = wrap_style;
1766 if (stream->can_emit_style_escape ())
1767 emit_style_escape (ui_file_style (), stream);
1768 /* If we aren't actually wrapping, don't output
1769 newline -- if chars_per_line is right, we
1770 probably just overflowed anyway; if it's wrong,
1771 let us keep going. */
1772 /* XXX: The ideal thing would be to call
1773 'stream->putc' here, but we can't because it
1774 currently calls 'fputc_unfiltered', which ends up
1775 calling us, which generates an infinite
1776 recursion. */
1777 stream->puts ("\n");
1778 }
1779 else
1780 {
1781 save_style = applied_style;
1782 flush_wrap_buffer (stream);
1783 }
1784
1785 /* Possible new page. Note that
1786 PAGINATION_DISABLED_FOR_COMMAND might be set during
1787 this loop, so we must continue to check it here. */
1788 if (lines_printed >= lines_per_page - 1
1789 && !pagination_disabled_for_command)
1790 {
1791 prompt_for_continue ();
1792 did_paginate = true;
1793 }
1794
1795 /* Now output indentation and wrapped string. */
1796 if (wrap_column)
1797 {
1798 stream->puts (wrap_indent);
1799 if (stream->can_emit_style_escape ())
1800 emit_style_escape (save_style, stream);
1801 /* FIXME, this strlen is what prevents wrap_indent from
1802 containing tabs. However, if we recurse to print it
1803 and count its chars, we risk trouble if wrap_indent is
1804 longer than (the user settable) chars_per_line.
1805 Note also that this can set chars_printed > chars_per_line
1806 if we are printing a long string. */
1807 chars_printed = strlen (wrap_indent)
1808 + (save_chars - wrap_column);
1809 wrap_column = 0; /* And disable fancy wrap */
1810 }
1811 else if (did_paginate && stream->can_emit_style_escape ())
1812 emit_style_escape (save_style, stream);
1813 }
1814 }
1815
1816 if (*lineptr == '\n')
1817 {
1818 chars_printed = 0;
1819 wrap_here ((char *) 0); /* Spit out chars, cancel
1820 further wraps. */
1821 lines_printed++;
1822 /* XXX: The ideal thing would be to call
1823 'stream->putc' here, but we can't because it
1824 currently calls 'fputc_unfiltered', which ends up
1825 calling us, which generates an infinite
1826 recursion. */
1827 stream->puts ("\n");
1828 lineptr++;
1829 }
1830 }
1831
1832 buffer_clearer.release ();
1833 }
1834
1835 void
1836 fputs_filtered (const char *linebuffer, struct ui_file *stream)
1837 {
1838 fputs_maybe_filtered (linebuffer, stream, 1);
1839 }
1840
1841 void
1842 fputs_unfiltered (const char *linebuffer, struct ui_file *stream)
1843 {
1844 fputs_maybe_filtered (linebuffer, stream, 0);
1845 }
1846
1847 /* See utils.h. */
1848
1849 void
1850 fputs_styled (const char *linebuffer, const ui_file_style &style,
1851 struct ui_file *stream)
1852 {
1853 /* This just makes it so we emit somewhat fewer escape
1854 sequences. */
1855 if (style.is_default ())
1856 fputs_maybe_filtered (linebuffer, stream, 1);
1857 else
1858 {
1859 set_output_style (stream, style);
1860 fputs_maybe_filtered (linebuffer, stream, 1);
1861 set_output_style (stream, ui_file_style ());
1862 }
1863 }
1864
1865 /* See utils.h. */
1866
1867 void
1868 fputs_styled_unfiltered (const char *linebuffer, const ui_file_style &style,
1869 struct ui_file *stream)
1870 {
1871 /* This just makes it so we emit somewhat fewer escape
1872 sequences. */
1873 if (style.is_default ())
1874 fputs_maybe_filtered (linebuffer, stream, 0);
1875 else
1876 {
1877 set_output_style (stream, style);
1878 fputs_maybe_filtered (linebuffer, stream, 0);
1879 set_output_style (stream, ui_file_style ());
1880 }
1881 }
1882
1883 /* See utils.h. */
1884
1885 void
1886 fputs_highlighted (const char *str, const compiled_regex &highlight,
1887 struct ui_file *stream)
1888 {
1889 regmatch_t pmatch;
1890
1891 while (*str && highlight.exec (str, 1, &pmatch, 0) == 0)
1892 {
1893 size_t n_highlight = pmatch.rm_eo - pmatch.rm_so;
1894
1895 /* Output the part before pmatch with current style. */
1896 while (pmatch.rm_so > 0)
1897 {
1898 fputc_filtered (*str, stream);
1899 pmatch.rm_so--;
1900 str++;
1901 }
1902
1903 /* Output pmatch with the highlight style. */
1904 set_output_style (stream, highlight_style.style ());
1905 while (n_highlight > 0)
1906 {
1907 fputc_filtered (*str, stream);
1908 n_highlight--;
1909 str++;
1910 }
1911 set_output_style (stream, ui_file_style ());
1912 }
1913
1914 /* Output the trailing part of STR not matching HIGHLIGHT. */
1915 if (*str)
1916 fputs_filtered (str, stream);
1917 }
1918
1919 int
1920 putchar_unfiltered (int c)
1921 {
1922 return fputc_unfiltered (c, gdb_stdout);
1923 }
1924
1925 /* Write character C to gdb_stdout using GDB's paging mechanism and return C.
1926 May return nonlocally. */
1927
1928 int
1929 putchar_filtered (int c)
1930 {
1931 return fputc_filtered (c, gdb_stdout);
1932 }
1933
1934 int
1935 fputc_unfiltered (int c, struct ui_file *stream)
1936 {
1937 char buf[2];
1938
1939 buf[0] = c;
1940 buf[1] = 0;
1941 fputs_unfiltered (buf, stream);
1942 return c;
1943 }
1944
1945 int
1946 fputc_filtered (int c, struct ui_file *stream)
1947 {
1948 char buf[2];
1949
1950 buf[0] = c;
1951 buf[1] = 0;
1952 fputs_filtered (buf, stream);
1953 return c;
1954 }
1955
1956 /* puts_debug is like fputs_unfiltered, except it prints special
1957 characters in printable fashion. */
1958
1959 void
1960 puts_debug (char *prefix, char *string, char *suffix)
1961 {
1962 int ch;
1963
1964 /* Print prefix and suffix after each line. */
1965 static int new_line = 1;
1966 static int return_p = 0;
1967 static const char *prev_prefix = "";
1968 static const char *prev_suffix = "";
1969
1970 if (*string == '\n')
1971 return_p = 0;
1972
1973 /* If the prefix is changing, print the previous suffix, a new line,
1974 and the new prefix. */
1975 if ((return_p || (strcmp (prev_prefix, prefix) != 0)) && !new_line)
1976 {
1977 fputs_unfiltered (prev_suffix, gdb_stdlog);
1978 fputs_unfiltered ("\n", gdb_stdlog);
1979 fputs_unfiltered (prefix, gdb_stdlog);
1980 }
1981
1982 /* Print prefix if we printed a newline during the previous call. */
1983 if (new_line)
1984 {
1985 new_line = 0;
1986 fputs_unfiltered (prefix, gdb_stdlog);
1987 }
1988
1989 prev_prefix = prefix;
1990 prev_suffix = suffix;
1991
1992 /* Output characters in a printable format. */
1993 while ((ch = *string++) != '\0')
1994 {
1995 switch (ch)
1996 {
1997 default:
1998 if (isprint (ch))
1999 fputc_unfiltered (ch, gdb_stdlog);
2000
2001 else
2002 fprintf_unfiltered (gdb_stdlog, "\\x%02x", ch & 0xff);
2003 break;
2004
2005 case '\\':
2006 fputs_unfiltered ("\\\\", gdb_stdlog);
2007 break;
2008 case '\b':
2009 fputs_unfiltered ("\\b", gdb_stdlog);
2010 break;
2011 case '\f':
2012 fputs_unfiltered ("\\f", gdb_stdlog);
2013 break;
2014 case '\n':
2015 new_line = 1;
2016 fputs_unfiltered ("\\n", gdb_stdlog);
2017 break;
2018 case '\r':
2019 fputs_unfiltered ("\\r", gdb_stdlog);
2020 break;
2021 case '\t':
2022 fputs_unfiltered ("\\t", gdb_stdlog);
2023 break;
2024 case '\v':
2025 fputs_unfiltered ("\\v", gdb_stdlog);
2026 break;
2027 }
2028
2029 return_p = ch == '\r';
2030 }
2031
2032 /* Print suffix if we printed a newline. */
2033 if (new_line)
2034 {
2035 fputs_unfiltered (suffix, gdb_stdlog);
2036 fputs_unfiltered ("\n", gdb_stdlog);
2037 }
2038 }
2039
2040
2041 /* Print a variable number of ARGS using format FORMAT. If this
2042 information is going to put the amount written (since the last call
2043 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
2044 call prompt_for_continue to get the users permission to continue.
2045
2046 Unlike fprintf, this function does not return a value.
2047
2048 We implement three variants, vfprintf (takes a vararg list and stream),
2049 fprintf (takes a stream to write on), and printf (the usual).
2050
2051 Note also that this may throw a quit (since prompt_for_continue may
2052 do so). */
2053
2054 static void
2055 vfprintf_maybe_filtered (struct ui_file *stream, const char *format,
2056 va_list args, bool filter, bool gdbfmt)
2057 {
2058 if (gdbfmt)
2059 {
2060 ui_out_flags flags = disallow_ui_out_field;
2061 if (!filter)
2062 flags |= unfiltered_output;
2063 cli_ui_out (stream, flags).vmessage (applied_style, format, args);
2064 }
2065 else
2066 {
2067 std::string str = string_vprintf (format, args);
2068 fputs_maybe_filtered (str.c_str (), stream, filter);
2069 }
2070 }
2071
2072
2073 void
2074 vfprintf_filtered (struct ui_file *stream, const char *format, va_list args)
2075 {
2076 vfprintf_maybe_filtered (stream, format, args, true, true);
2077 }
2078
2079 void
2080 vfprintf_unfiltered (struct ui_file *stream, const char *format, va_list args)
2081 {
2082 if (debug_timestamp && stream == gdb_stdlog)
2083 {
2084 using namespace std::chrono;
2085 int len, need_nl;
2086
2087 string_file sfile;
2088 cli_ui_out (&sfile, 0).vmessage (ui_file_style (), format, args);
2089 std::string linebuffer = std::move (sfile.string ());
2090
2091 steady_clock::time_point now = steady_clock::now ();
2092 seconds s = duration_cast<seconds> (now.time_since_epoch ());
2093 microseconds us = duration_cast<microseconds> (now.time_since_epoch () - s);
2094
2095 len = linebuffer.size ();
2096 need_nl = (len > 0 && linebuffer[len - 1] != '\n');
2097
2098 std::string timestamp = string_printf ("%ld.%06ld %s%s",
2099 (long) s.count (),
2100 (long) us.count (),
2101 linebuffer.c_str (),
2102 need_nl ? "\n": "");
2103 fputs_unfiltered (timestamp.c_str (), stream);
2104 }
2105 else
2106 vfprintf_maybe_filtered (stream, format, args, false, true);
2107 }
2108
2109 void
2110 vprintf_filtered (const char *format, va_list args)
2111 {
2112 vfprintf_maybe_filtered (gdb_stdout, format, args, true, false);
2113 }
2114
2115 void
2116 vprintf_unfiltered (const char *format, va_list args)
2117 {
2118 vfprintf_unfiltered (gdb_stdout, format, args);
2119 }
2120
2121 void
2122 fprintf_filtered (struct ui_file *stream, const char *format, ...)
2123 {
2124 va_list args;
2125
2126 va_start (args, format);
2127 vfprintf_filtered (stream, format, args);
2128 va_end (args);
2129 }
2130
2131 void
2132 fprintf_unfiltered (struct ui_file *stream, const char *format, ...)
2133 {
2134 va_list args;
2135
2136 va_start (args, format);
2137 vfprintf_unfiltered (stream, format, args);
2138 va_end (args);
2139 }
2140
2141 /* Like fprintf_filtered, but prints its result indented.
2142 Called as fprintfi_filtered (spaces, stream, format, ...); */
2143
2144 void
2145 fprintfi_filtered (int spaces, struct ui_file *stream, const char *format,
2146 ...)
2147 {
2148 va_list args;
2149
2150 va_start (args, format);
2151 print_spaces_filtered (spaces, stream);
2152
2153 vfprintf_filtered (stream, format, args);
2154 va_end (args);
2155 }
2156
2157 /* See utils.h. */
2158
2159 void
2160 fprintf_styled (struct ui_file *stream, const ui_file_style &style,
2161 const char *format, ...)
2162 {
2163 va_list args;
2164
2165 set_output_style (stream, style);
2166 va_start (args, format);
2167 vfprintf_filtered (stream, format, args);
2168 va_end (args);
2169 set_output_style (stream, ui_file_style ());
2170 }
2171
2172 /* See utils.h. */
2173
2174 void
2175 vfprintf_styled (struct ui_file *stream, const ui_file_style &style,
2176 const char *format, va_list args)
2177 {
2178 set_output_style (stream, style);
2179 vfprintf_filtered (stream, format, args);
2180 set_output_style (stream, ui_file_style ());
2181 }
2182
2183 /* See utils.h. */
2184
2185 void
2186 vfprintf_styled_no_gdbfmt (struct ui_file *stream, const ui_file_style &style,
2187 bool filter, const char *format, va_list args)
2188 {
2189 std::string str = string_vprintf (format, args);
2190 if (!str.empty ())
2191 {
2192 if (!style.is_default ())
2193 set_output_style (stream, style);
2194 fputs_maybe_filtered (str.c_str (), stream, filter);
2195 if (!style.is_default ())
2196 set_output_style (stream, ui_file_style ());
2197 }
2198 }
2199
2200 void
2201 printf_filtered (const char *format, ...)
2202 {
2203 va_list args;
2204
2205 va_start (args, format);
2206 vfprintf_filtered (gdb_stdout, format, args);
2207 va_end (args);
2208 }
2209
2210
2211 void
2212 printf_unfiltered (const char *format, ...)
2213 {
2214 va_list args;
2215
2216 va_start (args, format);
2217 vfprintf_unfiltered (gdb_stdout, format, args);
2218 va_end (args);
2219 }
2220
2221 /* Like printf_filtered, but prints it's result indented.
2222 Called as printfi_filtered (spaces, format, ...); */
2223
2224 void
2225 printfi_filtered (int spaces, const char *format, ...)
2226 {
2227 va_list args;
2228
2229 va_start (args, format);
2230 print_spaces_filtered (spaces, gdb_stdout);
2231 vfprintf_filtered (gdb_stdout, format, args);
2232 va_end (args);
2233 }
2234
2235 /* Easy -- but watch out!
2236
2237 This routine is *not* a replacement for puts()! puts() appends a newline.
2238 This one doesn't, and had better not! */
2239
2240 void
2241 puts_filtered (const char *string)
2242 {
2243 fputs_filtered (string, gdb_stdout);
2244 }
2245
2246 void
2247 puts_unfiltered (const char *string)
2248 {
2249 fputs_unfiltered (string, gdb_stdout);
2250 }
2251
2252 /* Return a pointer to N spaces and a null. The pointer is good
2253 until the next call to here. */
2254 char *
2255 n_spaces (int n)
2256 {
2257 char *t;
2258 static char *spaces = 0;
2259 static int max_spaces = -1;
2260
2261 if (n > max_spaces)
2262 {
2263 if (spaces)
2264 xfree (spaces);
2265 spaces = (char *) xmalloc (n + 1);
2266 for (t = spaces + n; t != spaces;)
2267 *--t = ' ';
2268 spaces[n] = '\0';
2269 max_spaces = n;
2270 }
2271
2272 return spaces + max_spaces - n;
2273 }
2274
2275 /* Print N spaces. */
2276 void
2277 print_spaces_filtered (int n, struct ui_file *stream)
2278 {
2279 fputs_filtered (n_spaces (n), stream);
2280 }
2281 \f
2282 /* C++/ObjC demangler stuff. */
2283
2284 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2285 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2286 If the name is not mangled, or the language for the name is unknown, or
2287 demangling is off, the name is printed in its "raw" form. */
2288
2289 void
2290 fprintf_symbol_filtered (struct ui_file *stream, const char *name,
2291 enum language lang, int arg_mode)
2292 {
2293 char *demangled;
2294
2295 if (name != NULL)
2296 {
2297 /* If user wants to see raw output, no problem. */
2298 if (!demangle)
2299 {
2300 fputs_filtered (name, stream);
2301 }
2302 else
2303 {
2304 demangled = language_demangle (language_def (lang), name, arg_mode);
2305 fputs_filtered (demangled ? demangled : name, stream);
2306 if (demangled != NULL)
2307 {
2308 xfree (demangled);
2309 }
2310 }
2311 }
2312 }
2313
2314 /* True if CH is a character that can be part of a symbol name. I.e.,
2315 either a number, a letter, or a '_'. */
2316
2317 static bool
2318 valid_identifier_name_char (int ch)
2319 {
2320 return (isalnum (ch) || ch == '_');
2321 }
2322
2323 /* Skip to end of token, or to END, whatever comes first. Input is
2324 assumed to be a C++ operator name. */
2325
2326 static const char *
2327 cp_skip_operator_token (const char *token, const char *end)
2328 {
2329 const char *p = token;
2330 while (p != end && !isspace (*p) && *p != '(')
2331 {
2332 if (valid_identifier_name_char (*p))
2333 {
2334 while (p != end && valid_identifier_name_char (*p))
2335 p++;
2336 return p;
2337 }
2338 else
2339 {
2340 /* Note, ordered such that among ops that share a prefix,
2341 longer comes first. This is so that the loop below can
2342 bail on first match. */
2343 static const char *ops[] =
2344 {
2345 "[",
2346 "]",
2347 "~",
2348 ",",
2349 "-=", "--", "->", "-",
2350 "+=", "++", "+",
2351 "*=", "*",
2352 "/=", "/",
2353 "%=", "%",
2354 "|=", "||", "|",
2355 "&=", "&&", "&",
2356 "^=", "^",
2357 "!=", "!",
2358 "<<=", "<=", "<<", "<",
2359 ">>=", ">=", ">>", ">",
2360 "==", "=",
2361 };
2362
2363 for (const char *op : ops)
2364 {
2365 size_t oplen = strlen (op);
2366 size_t lencmp = std::min<size_t> (oplen, end - p);
2367
2368 if (strncmp (p, op, lencmp) == 0)
2369 return p + lencmp;
2370 }
2371 /* Some unidentified character. Return it. */
2372 return p + 1;
2373 }
2374 }
2375
2376 return p;
2377 }
2378
2379 /* Advance STRING1/STRING2 past whitespace. */
2380
2381 static void
2382 skip_ws (const char *&string1, const char *&string2, const char *end_str2)
2383 {
2384 while (isspace (*string1))
2385 string1++;
2386 while (string2 < end_str2 && isspace (*string2))
2387 string2++;
2388 }
2389
2390 /* True if STRING points at the start of a C++ operator name. START
2391 is the start of the string that STRING points to, hence when
2392 reading backwards, we must not read any character before START. */
2393
2394 static bool
2395 cp_is_operator (const char *string, const char *start)
2396 {
2397 return ((string == start
2398 || !valid_identifier_name_char (string[-1]))
2399 && strncmp (string, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0
2400 && !valid_identifier_name_char (string[CP_OPERATOR_LEN]));
2401 }
2402
2403 /* If *NAME points at an ABI tag, skip it and return true. Otherwise
2404 leave *NAME unmodified and return false. (see GCC's abi_tag
2405 attribute), such names are demangled as e.g.,
2406 "function[abi:cxx11]()". */
2407
2408 static bool
2409 skip_abi_tag (const char **name)
2410 {
2411 const char *p = *name;
2412
2413 if (startswith (p, "[abi:"))
2414 {
2415 p += 5;
2416
2417 while (valid_identifier_name_char (*p))
2418 p++;
2419
2420 if (*p == ']')
2421 {
2422 p++;
2423 *name = p;
2424 return true;
2425 }
2426 }
2427 return false;
2428 }
2429
2430 /* See utils.h. */
2431
2432 int
2433 strncmp_iw_with_mode (const char *string1, const char *string2,
2434 size_t string2_len, strncmp_iw_mode mode,
2435 enum language language,
2436 completion_match_for_lcd *match_for_lcd)
2437 {
2438 const char *string1_start = string1;
2439 const char *end_str2 = string2 + string2_len;
2440 bool skip_spaces = true;
2441 bool have_colon_op = (language == language_cplus
2442 || language == language_rust
2443 || language == language_fortran);
2444
2445 while (1)
2446 {
2447 if (skip_spaces
2448 || ((isspace (*string1) && !valid_identifier_name_char (*string2))
2449 || (isspace (*string2) && !valid_identifier_name_char (*string1))))
2450 {
2451 skip_ws (string1, string2, end_str2);
2452 skip_spaces = false;
2453 }
2454
2455 /* Skip [abi:cxx11] tags in the symbol name if the lookup name
2456 doesn't include them. E.g.:
2457
2458 string1: function[abi:cxx1](int)
2459 string2: function
2460
2461 string1: function[abi:cxx1](int)
2462 string2: function(int)
2463
2464 string1: Struct[abi:cxx1]::function()
2465 string2: Struct::function()
2466
2467 string1: function(Struct[abi:cxx1], int)
2468 string2: function(Struct, int)
2469 */
2470 if (string2 == end_str2
2471 || (*string2 != '[' && !valid_identifier_name_char (*string2)))
2472 {
2473 const char *abi_start = string1;
2474
2475 /* There can be more than one tag. */
2476 while (*string1 == '[' && skip_abi_tag (&string1))
2477 ;
2478
2479 if (match_for_lcd != NULL && abi_start != string1)
2480 match_for_lcd->mark_ignored_range (abi_start, string1);
2481
2482 while (isspace (*string1))
2483 string1++;
2484 }
2485
2486 if (*string1 == '\0' || string2 == end_str2)
2487 break;
2488
2489 /* Handle the :: operator. */
2490 if (have_colon_op && string1[0] == ':' && string1[1] == ':')
2491 {
2492 if (*string2 != ':')
2493 return 1;
2494
2495 string1++;
2496 string2++;
2497
2498 if (string2 == end_str2)
2499 break;
2500
2501 if (*string2 != ':')
2502 return 1;
2503
2504 string1++;
2505 string2++;
2506
2507 while (isspace (*string1))
2508 string1++;
2509 while (string2 < end_str2 && isspace (*string2))
2510 string2++;
2511 continue;
2512 }
2513
2514 /* Handle C++ user-defined operators. */
2515 else if (language == language_cplus
2516 && *string1 == 'o')
2517 {
2518 if (cp_is_operator (string1, string1_start))
2519 {
2520 /* An operator name in STRING1. Check STRING2. */
2521 size_t cmplen
2522 = std::min<size_t> (CP_OPERATOR_LEN, end_str2 - string2);
2523 if (strncmp (string1, string2, cmplen) != 0)
2524 return 1;
2525
2526 string1 += cmplen;
2527 string2 += cmplen;
2528
2529 if (string2 != end_str2)
2530 {
2531 /* Check for "operatorX" in STRING2. */
2532 if (valid_identifier_name_char (*string2))
2533 return 1;
2534
2535 skip_ws (string1, string2, end_str2);
2536 }
2537
2538 /* Handle operator(). */
2539 if (*string1 == '(')
2540 {
2541 if (string2 == end_str2)
2542 {
2543 if (mode == strncmp_iw_mode::NORMAL)
2544 return 0;
2545 else
2546 {
2547 /* Don't break for the regular return at the
2548 bottom, because "operator" should not
2549 match "operator()", since this open
2550 parentheses is not the parameter list
2551 start. */
2552 return *string1 != '\0';
2553 }
2554 }
2555
2556 if (*string1 != *string2)
2557 return 1;
2558
2559 string1++;
2560 string2++;
2561 }
2562
2563 while (1)
2564 {
2565 skip_ws (string1, string2, end_str2);
2566
2567 /* Skip to end of token, or to END, whatever comes
2568 first. */
2569 const char *end_str1 = string1 + strlen (string1);
2570 const char *p1 = cp_skip_operator_token (string1, end_str1);
2571 const char *p2 = cp_skip_operator_token (string2, end_str2);
2572
2573 cmplen = std::min (p1 - string1, p2 - string2);
2574 if (p2 == end_str2)
2575 {
2576 if (strncmp (string1, string2, cmplen) != 0)
2577 return 1;
2578 }
2579 else
2580 {
2581 if (p1 - string1 != p2 - string2)
2582 return 1;
2583 if (strncmp (string1, string2, cmplen) != 0)
2584 return 1;
2585 }
2586
2587 string1 += cmplen;
2588 string2 += cmplen;
2589
2590 if (*string1 == '\0' || string2 == end_str2)
2591 break;
2592 if (*string1 == '(' || *string2 == '(')
2593 break;
2594 }
2595
2596 continue;
2597 }
2598 }
2599
2600 if (case_sensitivity == case_sensitive_on && *string1 != *string2)
2601 break;
2602 if (case_sensitivity == case_sensitive_off
2603 && (tolower ((unsigned char) *string1)
2604 != tolower ((unsigned char) *string2)))
2605 break;
2606
2607 /* If we see any non-whitespace, non-identifier-name character
2608 (any of "()<>*&" etc.), then skip spaces the next time
2609 around. */
2610 if (!isspace (*string1) && !valid_identifier_name_char (*string1))
2611 skip_spaces = true;
2612
2613 string1++;
2614 string2++;
2615 }
2616
2617 if (string2 == end_str2)
2618 {
2619 if (mode == strncmp_iw_mode::NORMAL)
2620 {
2621 /* Strip abi tag markers from the matched symbol name.
2622 Usually the ABI marker will be found on function name
2623 (automatically added because the function returns an
2624 object marked with an ABI tag). However, it's also
2625 possible to see a marker in one of the function
2626 parameters, for example.
2627
2628 string2 (lookup name):
2629 func
2630 symbol name:
2631 function(some_struct[abi:cxx11], int)
2632
2633 and for completion LCD computation we want to say that
2634 the match was for:
2635 function(some_struct, int)
2636 */
2637 if (match_for_lcd != NULL)
2638 {
2639 while ((string1 = strstr (string1, "[abi:")) != NULL)
2640 {
2641 const char *abi_start = string1;
2642
2643 /* There can be more than one tag. */
2644 while (skip_abi_tag (&string1) && *string1 == '[')
2645 ;
2646
2647 if (abi_start != string1)
2648 match_for_lcd->mark_ignored_range (abi_start, string1);
2649 }
2650 }
2651
2652 return 0;
2653 }
2654 else
2655 return (*string1 != '\0' && *string1 != '(');
2656 }
2657 else
2658 return 1;
2659 }
2660
2661 /* See utils.h. */
2662
2663 int
2664 strncmp_iw (const char *string1, const char *string2, size_t string2_len)
2665 {
2666 return strncmp_iw_with_mode (string1, string2, string2_len,
2667 strncmp_iw_mode::NORMAL, language_minimal);
2668 }
2669
2670 /* See utils.h. */
2671
2672 int
2673 strcmp_iw (const char *string1, const char *string2)
2674 {
2675 return strncmp_iw_with_mode (string1, string2, strlen (string2),
2676 strncmp_iw_mode::MATCH_PARAMS, language_minimal);
2677 }
2678
2679 /* This is like strcmp except that it ignores whitespace and treats
2680 '(' as the first non-NULL character in terms of ordering. Like
2681 strcmp (and unlike strcmp_iw), it returns negative if STRING1 <
2682 STRING2, 0 if STRING2 = STRING2, and positive if STRING1 > STRING2
2683 according to that ordering.
2684
2685 If a list is sorted according to this function and if you want to
2686 find names in the list that match some fixed NAME according to
2687 strcmp_iw(LIST_ELT, NAME), then the place to start looking is right
2688 where this function would put NAME.
2689
2690 This function must be neutral to the CASE_SENSITIVITY setting as the user
2691 may choose it during later lookup. Therefore this function always sorts
2692 primarily case-insensitively and secondarily case-sensitively.
2693
2694 Here are some examples of why using strcmp to sort is a bad idea:
2695
2696 Whitespace example:
2697
2698 Say your partial symtab contains: "foo<char *>", "goo". Then, if
2699 we try to do a search for "foo<char*>", strcmp will locate this
2700 after "foo<char *>" and before "goo". Then lookup_partial_symbol
2701 will start looking at strings beginning with "goo", and will never
2702 see the correct match of "foo<char *>".
2703
2704 Parenthesis example:
2705
2706 In practice, this is less like to be an issue, but I'll give it a
2707 shot. Let's assume that '$' is a legitimate character to occur in
2708 symbols. (Which may well even be the case on some systems.) Then
2709 say that the partial symbol table contains "foo$" and "foo(int)".
2710 strcmp will put them in this order, since '$' < '('. Now, if the
2711 user searches for "foo", then strcmp will sort "foo" before "foo$".
2712 Then lookup_partial_symbol will notice that strcmp_iw("foo$",
2713 "foo") is false, so it won't proceed to the actual match of
2714 "foo(int)" with "foo". */
2715
2716 int
2717 strcmp_iw_ordered (const char *string1, const char *string2)
2718 {
2719 const char *saved_string1 = string1, *saved_string2 = string2;
2720 enum case_sensitivity case_pass = case_sensitive_off;
2721
2722 for (;;)
2723 {
2724 /* C1 and C2 are valid only if *string1 != '\0' && *string2 != '\0'.
2725 Provide stub characters if we are already at the end of one of the
2726 strings. */
2727 char c1 = 'X', c2 = 'X';
2728
2729 while (*string1 != '\0' && *string2 != '\0')
2730 {
2731 while (isspace (*string1))
2732 string1++;
2733 while (isspace (*string2))
2734 string2++;
2735
2736 switch (case_pass)
2737 {
2738 case case_sensitive_off:
2739 c1 = tolower ((unsigned char) *string1);
2740 c2 = tolower ((unsigned char) *string2);
2741 break;
2742 case case_sensitive_on:
2743 c1 = *string1;
2744 c2 = *string2;
2745 break;
2746 }
2747 if (c1 != c2)
2748 break;
2749
2750 if (*string1 != '\0')
2751 {
2752 string1++;
2753 string2++;
2754 }
2755 }
2756
2757 switch (*string1)
2758 {
2759 /* Characters are non-equal unless they're both '\0'; we want to
2760 make sure we get the comparison right according to our
2761 comparison in the cases where one of them is '\0' or '('. */
2762 case '\0':
2763 if (*string2 == '\0')
2764 break;
2765 else
2766 return -1;
2767 case '(':
2768 if (*string2 == '\0')
2769 return 1;
2770 else
2771 return -1;
2772 default:
2773 if (*string2 == '\0' || *string2 == '(')
2774 return 1;
2775 else if (c1 > c2)
2776 return 1;
2777 else if (c1 < c2)
2778 return -1;
2779 /* PASSTHRU */
2780 }
2781
2782 if (case_pass == case_sensitive_on)
2783 return 0;
2784
2785 /* Otherwise the strings were equal in case insensitive way, make
2786 a more fine grained comparison in a case sensitive way. */
2787
2788 case_pass = case_sensitive_on;
2789 string1 = saved_string1;
2790 string2 = saved_string2;
2791 }
2792 }
2793
2794 /* See utils.h. */
2795
2796 bool
2797 streq (const char *lhs, const char *rhs)
2798 {
2799 return !strcmp (lhs, rhs);
2800 }
2801
2802 /* See utils.h. */
2803
2804 int
2805 streq_hash (const void *lhs, const void *rhs)
2806 {
2807 return streq ((const char *) lhs, (const char *) rhs);
2808 }
2809
2810 \f
2811
2812 /*
2813 ** subset_compare()
2814 ** Answer whether string_to_compare is a full or partial match to
2815 ** template_string. The partial match must be in sequence starting
2816 ** at index 0.
2817 */
2818 int
2819 subset_compare (const char *string_to_compare, const char *template_string)
2820 {
2821 int match;
2822
2823 if (template_string != NULL && string_to_compare != NULL
2824 && strlen (string_to_compare) <= strlen (template_string))
2825 match =
2826 (startswith (template_string, string_to_compare));
2827 else
2828 match = 0;
2829 return match;
2830 }
2831
2832 static void
2833 show_debug_timestamp (struct ui_file *file, int from_tty,
2834 struct cmd_list_element *c, const char *value)
2835 {
2836 fprintf_filtered (file, _("Timestamping debugging messages is %s.\n"),
2837 value);
2838 }
2839 \f
2840
2841 /* See utils.h. */
2842
2843 CORE_ADDR
2844 address_significant (gdbarch *gdbarch, CORE_ADDR addr)
2845 {
2846 /* Clear insignificant bits of a target address and sign extend resulting
2847 address, avoiding shifts larger or equal than the width of a CORE_ADDR.
2848 The local variable ADDR_BIT stops the compiler reporting a shift overflow
2849 when it won't occur. Skip updating of target address if current target
2850 has not set gdbarch significant_addr_bit. */
2851 int addr_bit = gdbarch_significant_addr_bit (gdbarch);
2852
2853 if (addr_bit && (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT)))
2854 {
2855 CORE_ADDR sign = (CORE_ADDR) 1 << (addr_bit - 1);
2856 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
2857 addr = (addr ^ sign) - sign;
2858 }
2859
2860 return addr;
2861 }
2862
2863 const char *
2864 paddress (struct gdbarch *gdbarch, CORE_ADDR addr)
2865 {
2866 /* Truncate address to the size of a target address, avoiding shifts
2867 larger or equal than the width of a CORE_ADDR. The local
2868 variable ADDR_BIT stops the compiler reporting a shift overflow
2869 when it won't occur. */
2870 /* NOTE: This assumes that the significant address information is
2871 kept in the least significant bits of ADDR - the upper bits were
2872 either zero or sign extended. Should gdbarch_address_to_pointer or
2873 some ADDRESS_TO_PRINTABLE() be used to do the conversion? */
2874
2875 int addr_bit = gdbarch_addr_bit (gdbarch);
2876
2877 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2878 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
2879 return hex_string (addr);
2880 }
2881
2882 /* This function is described in "defs.h". */
2883
2884 const char *
2885 print_core_address (struct gdbarch *gdbarch, CORE_ADDR address)
2886 {
2887 int addr_bit = gdbarch_addr_bit (gdbarch);
2888
2889 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2890 address &= ((CORE_ADDR) 1 << addr_bit) - 1;
2891
2892 /* FIXME: cagney/2002-05-03: Need local_address_string() function
2893 that returns the language localized string formatted to a width
2894 based on gdbarch_addr_bit. */
2895 if (addr_bit <= 32)
2896 return hex_string_custom (address, 8);
2897 else
2898 return hex_string_custom (address, 16);
2899 }
2900
2901 /* Callback hash_f for htab_create_alloc or htab_create_alloc_ex. */
2902
2903 hashval_t
2904 core_addr_hash (const void *ap)
2905 {
2906 const CORE_ADDR *addrp = (const CORE_ADDR *) ap;
2907
2908 return *addrp;
2909 }
2910
2911 /* Callback eq_f for htab_create_alloc or htab_create_alloc_ex. */
2912
2913 int
2914 core_addr_eq (const void *ap, const void *bp)
2915 {
2916 const CORE_ADDR *addr_ap = (const CORE_ADDR *) ap;
2917 const CORE_ADDR *addr_bp = (const CORE_ADDR *) bp;
2918
2919 return *addr_ap == *addr_bp;
2920 }
2921
2922 /* Convert a string back into a CORE_ADDR. */
2923 CORE_ADDR
2924 string_to_core_addr (const char *my_string)
2925 {
2926 CORE_ADDR addr = 0;
2927
2928 if (my_string[0] == '0' && tolower (my_string[1]) == 'x')
2929 {
2930 /* Assume that it is in hex. */
2931 int i;
2932
2933 for (i = 2; my_string[i] != '\0'; i++)
2934 {
2935 if (isdigit (my_string[i]))
2936 addr = (my_string[i] - '0') + (addr * 16);
2937 else if (isxdigit (my_string[i]))
2938 addr = (tolower (my_string[i]) - 'a' + 0xa) + (addr * 16);
2939 else
2940 error (_("invalid hex \"%s\""), my_string);
2941 }
2942 }
2943 else
2944 {
2945 /* Assume that it is in decimal. */
2946 int i;
2947
2948 for (i = 0; my_string[i] != '\0'; i++)
2949 {
2950 if (isdigit (my_string[i]))
2951 addr = (my_string[i] - '0') + (addr * 10);
2952 else
2953 error (_("invalid decimal \"%s\""), my_string);
2954 }
2955 }
2956
2957 return addr;
2958 }
2959
2960 #if GDB_SELF_TEST
2961
2962 static void
2963 gdb_realpath_check_trailer (const char *input, const char *trailer)
2964 {
2965 gdb::unique_xmalloc_ptr<char> result = gdb_realpath (input);
2966
2967 size_t len = strlen (result.get ());
2968 size_t trail_len = strlen (trailer);
2969
2970 SELF_CHECK (len >= trail_len
2971 && strcmp (result.get () + len - trail_len, trailer) == 0);
2972 }
2973
2974 static void
2975 gdb_realpath_tests ()
2976 {
2977 /* A file which contains a directory prefix. */
2978 gdb_realpath_check_trailer ("./xfullpath.exp", "/xfullpath.exp");
2979 /* A file which contains a directory prefix. */
2980 gdb_realpath_check_trailer ("../../defs.h", "/defs.h");
2981 /* A one-character filename. */
2982 gdb_realpath_check_trailer ("./a", "/a");
2983 /* A file in the root directory. */
2984 gdb_realpath_check_trailer ("/root_file_which_should_exist",
2985 "/root_file_which_should_exist");
2986 /* A file which does not have a directory prefix. */
2987 gdb_realpath_check_trailer ("xfullpath.exp", "xfullpath.exp");
2988 /* A one-char filename without any directory prefix. */
2989 gdb_realpath_check_trailer ("a", "a");
2990 /* An empty filename. */
2991 gdb_realpath_check_trailer ("", "");
2992 }
2993
2994 #endif /* GDB_SELF_TEST */
2995
2996 /* Allocation function for the libiberty hash table which uses an
2997 obstack. The obstack is passed as DATA. */
2998
2999 void *
3000 hashtab_obstack_allocate (void *data, size_t size, size_t count)
3001 {
3002 size_t total = size * count;
3003 void *ptr = obstack_alloc ((struct obstack *) data, total);
3004
3005 memset (ptr, 0, total);
3006 return ptr;
3007 }
3008
3009 /* Trivial deallocation function for the libiberty splay tree and hash
3010 table - don't deallocate anything. Rely on later deletion of the
3011 obstack. DATA will be the obstack, although it is not needed
3012 here. */
3013
3014 void
3015 dummy_obstack_deallocate (void *object, void *data)
3016 {
3017 return;
3018 }
3019
3020 /* Simple, portable version of dirname that does not modify its
3021 argument. */
3022
3023 std::string
3024 ldirname (const char *filename)
3025 {
3026 std::string dirname;
3027 const char *base = lbasename (filename);
3028
3029 while (base > filename && IS_DIR_SEPARATOR (base[-1]))
3030 --base;
3031
3032 if (base == filename)
3033 return dirname;
3034
3035 dirname = std::string (filename, base - filename);
3036
3037 /* On DOS based file systems, convert "d:foo" to "d:.", so that we
3038 create "d:./bar" later instead of the (different) "d:/bar". */
3039 if (base - filename == 2 && IS_ABSOLUTE_PATH (base)
3040 && !IS_DIR_SEPARATOR (filename[0]))
3041 dirname[base++ - filename] = '.';
3042
3043 return dirname;
3044 }
3045
3046 /* See utils.h. */
3047
3048 void
3049 gdb_argv::reset (const char *s)
3050 {
3051 char **argv = buildargv (s);
3052
3053 freeargv (m_argv);
3054 m_argv = argv;
3055 }
3056
3057 #define AMBIGUOUS_MESS1 ".\nMatching formats:"
3058 #define AMBIGUOUS_MESS2 \
3059 ".\nUse \"set gnutarget format-name\" to specify the format."
3060
3061 std::string
3062 gdb_bfd_errmsg (bfd_error_type error_tag, char **matching)
3063 {
3064 char **p;
3065
3066 /* Check if errmsg just need simple return. */
3067 if (error_tag != bfd_error_file_ambiguously_recognized || matching == NULL)
3068 return bfd_errmsg (error_tag);
3069
3070 std::string ret (bfd_errmsg (error_tag));
3071 ret += AMBIGUOUS_MESS1;
3072
3073 for (p = matching; *p; p++)
3074 {
3075 ret += " ";
3076 ret += *p;
3077 }
3078 ret += AMBIGUOUS_MESS2;
3079
3080 xfree (matching);
3081
3082 return ret;
3083 }
3084
3085 /* Return ARGS parsed as a valid pid, or throw an error. */
3086
3087 int
3088 parse_pid_to_attach (const char *args)
3089 {
3090 unsigned long pid;
3091 char *dummy;
3092
3093 if (!args)
3094 error_no_arg (_("process-id to attach"));
3095
3096 dummy = (char *) args;
3097 pid = strtoul (args, &dummy, 0);
3098 /* Some targets don't set errno on errors, grrr! */
3099 if ((pid == 0 && dummy == args) || dummy != &args[strlen (args)])
3100 error (_("Illegal process-id: %s."), args);
3101
3102 return pid;
3103 }
3104
3105 /* Substitute all occurrences of string FROM by string TO in *STRINGP. *STRINGP
3106 must come from xrealloc-compatible allocator and it may be updated. FROM
3107 needs to be delimited by IS_DIR_SEPARATOR or DIRNAME_SEPARATOR (or be
3108 located at the start or end of *STRINGP. */
3109
3110 void
3111 substitute_path_component (char **stringp, const char *from, const char *to)
3112 {
3113 char *string = *stringp, *s;
3114 const size_t from_len = strlen (from);
3115 const size_t to_len = strlen (to);
3116
3117 for (s = string;;)
3118 {
3119 s = strstr (s, from);
3120 if (s == NULL)
3121 break;
3122
3123 if ((s == string || IS_DIR_SEPARATOR (s[-1])
3124 || s[-1] == DIRNAME_SEPARATOR)
3125 && (s[from_len] == '\0' || IS_DIR_SEPARATOR (s[from_len])
3126 || s[from_len] == DIRNAME_SEPARATOR))
3127 {
3128 char *string_new;
3129
3130 string_new
3131 = (char *) xrealloc (string, (strlen (string) + to_len + 1));
3132
3133 /* Relocate the current S pointer. */
3134 s = s - string + string_new;
3135 string = string_new;
3136
3137 /* Replace from by to. */
3138 memmove (&s[to_len], &s[from_len], strlen (&s[from_len]) + 1);
3139 memcpy (s, to, to_len);
3140
3141 s += to_len;
3142 }
3143 else
3144 s++;
3145 }
3146
3147 *stringp = string;
3148 }
3149
3150 #ifdef HAVE_WAITPID
3151
3152 #ifdef SIGALRM
3153
3154 /* SIGALRM handler for waitpid_with_timeout. */
3155
3156 static void
3157 sigalrm_handler (int signo)
3158 {
3159 /* Nothing to do. */
3160 }
3161
3162 #endif
3163
3164 /* Wrapper to wait for child PID to die with TIMEOUT.
3165 TIMEOUT is the time to stop waiting in seconds.
3166 If TIMEOUT is zero, pass WNOHANG to waitpid.
3167 Returns PID if it was successfully waited for, otherwise -1.
3168
3169 Timeouts are currently implemented with alarm and SIGALRM.
3170 If the host does not support them, this waits "forever".
3171 It would be odd though for a host to have waitpid and not SIGALRM. */
3172
3173 pid_t
3174 wait_to_die_with_timeout (pid_t pid, int *status, int timeout)
3175 {
3176 pid_t waitpid_result;
3177
3178 gdb_assert (pid > 0);
3179 gdb_assert (timeout >= 0);
3180
3181 if (timeout > 0)
3182 {
3183 #ifdef SIGALRM
3184 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
3185 struct sigaction sa, old_sa;
3186
3187 sa.sa_handler = sigalrm_handler;
3188 sigemptyset (&sa.sa_mask);
3189 sa.sa_flags = 0;
3190 sigaction (SIGALRM, &sa, &old_sa);
3191 #else
3192 sighandler_t ofunc;
3193
3194 ofunc = signal (SIGALRM, sigalrm_handler);
3195 #endif
3196
3197 alarm (timeout);
3198 #endif
3199
3200 waitpid_result = waitpid (pid, status, 0);
3201
3202 #ifdef SIGALRM
3203 alarm (0);
3204 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
3205 sigaction (SIGALRM, &old_sa, NULL);
3206 #else
3207 signal (SIGALRM, ofunc);
3208 #endif
3209 #endif
3210 }
3211 else
3212 waitpid_result = waitpid (pid, status, WNOHANG);
3213
3214 if (waitpid_result == pid)
3215 return pid;
3216 else
3217 return -1;
3218 }
3219
3220 #endif /* HAVE_WAITPID */
3221
3222 /* Provide fnmatch compatible function for FNM_FILE_NAME matching of host files.
3223 Both FNM_FILE_NAME and FNM_NOESCAPE must be set in FLAGS.
3224
3225 It handles correctly HAVE_DOS_BASED_FILE_SYSTEM and
3226 HAVE_CASE_INSENSITIVE_FILE_SYSTEM. */
3227
3228 int
3229 gdb_filename_fnmatch (const char *pattern, const char *string, int flags)
3230 {
3231 gdb_assert ((flags & FNM_FILE_NAME) != 0);
3232
3233 /* It is unclear how '\' escaping vs. directory separator should coexist. */
3234 gdb_assert ((flags & FNM_NOESCAPE) != 0);
3235
3236 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
3237 {
3238 char *pattern_slash, *string_slash;
3239
3240 /* Replace '\' by '/' in both strings. */
3241
3242 pattern_slash = (char *) alloca (strlen (pattern) + 1);
3243 strcpy (pattern_slash, pattern);
3244 pattern = pattern_slash;
3245 for (; *pattern_slash != 0; pattern_slash++)
3246 if (IS_DIR_SEPARATOR (*pattern_slash))
3247 *pattern_slash = '/';
3248
3249 string_slash = (char *) alloca (strlen (string) + 1);
3250 strcpy (string_slash, string);
3251 string = string_slash;
3252 for (; *string_slash != 0; string_slash++)
3253 if (IS_DIR_SEPARATOR (*string_slash))
3254 *string_slash = '/';
3255 }
3256 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
3257
3258 #ifdef HAVE_CASE_INSENSITIVE_FILE_SYSTEM
3259 flags |= FNM_CASEFOLD;
3260 #endif /* HAVE_CASE_INSENSITIVE_FILE_SYSTEM */
3261
3262 return fnmatch (pattern, string, flags);
3263 }
3264
3265 /* Return the number of path elements in PATH.
3266 / = 1
3267 /foo = 2
3268 /foo/ = 2
3269 foo/bar = 2
3270 foo/ = 1 */
3271
3272 int
3273 count_path_elements (const char *path)
3274 {
3275 int count = 0;
3276 const char *p = path;
3277
3278 if (HAS_DRIVE_SPEC (p))
3279 {
3280 p = STRIP_DRIVE_SPEC (p);
3281 ++count;
3282 }
3283
3284 while (*p != '\0')
3285 {
3286 if (IS_DIR_SEPARATOR (*p))
3287 ++count;
3288 ++p;
3289 }
3290
3291 /* Backup one if last character is /, unless it's the only one. */
3292 if (p > path + 1 && IS_DIR_SEPARATOR (p[-1]))
3293 --count;
3294
3295 /* Add one for the file name, if present. */
3296 if (p > path && !IS_DIR_SEPARATOR (p[-1]))
3297 ++count;
3298
3299 return count;
3300 }
3301
3302 /* Remove N leading path elements from PATH.
3303 N must be non-negative.
3304 If PATH has more than N path elements then return NULL.
3305 If PATH has exactly N path elements then return "".
3306 See count_path_elements for a description of how we do the counting. */
3307
3308 const char *
3309 strip_leading_path_elements (const char *path, int n)
3310 {
3311 int i = 0;
3312 const char *p = path;
3313
3314 gdb_assert (n >= 0);
3315
3316 if (n == 0)
3317 return p;
3318
3319 if (HAS_DRIVE_SPEC (p))
3320 {
3321 p = STRIP_DRIVE_SPEC (p);
3322 ++i;
3323 }
3324
3325 while (i < n)
3326 {
3327 while (*p != '\0' && !IS_DIR_SEPARATOR (*p))
3328 ++p;
3329 if (*p == '\0')
3330 {
3331 if (i + 1 == n)
3332 return "";
3333 return NULL;
3334 }
3335 ++p;
3336 ++i;
3337 }
3338
3339 return p;
3340 }
3341
3342 /* See utils.h. */
3343
3344 void
3345 copy_bitwise (gdb_byte *dest, ULONGEST dest_offset,
3346 const gdb_byte *source, ULONGEST source_offset,
3347 ULONGEST nbits, int bits_big_endian)
3348 {
3349 unsigned int buf, avail;
3350
3351 if (nbits == 0)
3352 return;
3353
3354 if (bits_big_endian)
3355 {
3356 /* Start from the end, then work backwards. */
3357 dest_offset += nbits - 1;
3358 dest += dest_offset / 8;
3359 dest_offset = 7 - dest_offset % 8;
3360 source_offset += nbits - 1;
3361 source += source_offset / 8;
3362 source_offset = 7 - source_offset % 8;
3363 }
3364 else
3365 {
3366 dest += dest_offset / 8;
3367 dest_offset %= 8;
3368 source += source_offset / 8;
3369 source_offset %= 8;
3370 }
3371
3372 /* Fill BUF with DEST_OFFSET bits from the destination and 8 -
3373 SOURCE_OFFSET bits from the source. */
3374 buf = *(bits_big_endian ? source-- : source++) >> source_offset;
3375 buf <<= dest_offset;
3376 buf |= *dest & ((1 << dest_offset) - 1);
3377
3378 /* NBITS: bits yet to be written; AVAIL: BUF's fill level. */
3379 nbits += dest_offset;
3380 avail = dest_offset + 8 - source_offset;
3381
3382 /* Flush 8 bits from BUF, if appropriate. */
3383 if (nbits >= 8 && avail >= 8)
3384 {
3385 *(bits_big_endian ? dest-- : dest++) = buf;
3386 buf >>= 8;
3387 avail -= 8;
3388 nbits -= 8;
3389 }
3390
3391 /* Copy the middle part. */
3392 if (nbits >= 8)
3393 {
3394 size_t len = nbits / 8;
3395
3396 /* Use a faster method for byte-aligned copies. */
3397 if (avail == 0)
3398 {
3399 if (bits_big_endian)
3400 {
3401 dest -= len;
3402 source -= len;
3403 memcpy (dest + 1, source + 1, len);
3404 }
3405 else
3406 {
3407 memcpy (dest, source, len);
3408 dest += len;
3409 source += len;
3410 }
3411 }
3412 else
3413 {
3414 while (len--)
3415 {
3416 buf |= *(bits_big_endian ? source-- : source++) << avail;
3417 *(bits_big_endian ? dest-- : dest++) = buf;
3418 buf >>= 8;
3419 }
3420 }
3421 nbits %= 8;
3422 }
3423
3424 /* Write the last byte. */
3425 if (nbits)
3426 {
3427 if (avail < nbits)
3428 buf |= *source << avail;
3429
3430 buf &= (1 << nbits) - 1;
3431 *dest = (*dest & (~0U << nbits)) | buf;
3432 }
3433 }
3434
3435 void _initialize_utils ();
3436 void
3437 _initialize_utils ()
3438 {
3439 add_setshow_uinteger_cmd ("width", class_support, &chars_per_line, _("\
3440 Set number of characters where GDB should wrap lines of its output."), _("\
3441 Show number of characters where GDB should wrap lines of its output."), _("\
3442 This affects where GDB wraps its output to fit the screen width.\n\
3443 Setting this to \"unlimited\" or zero prevents GDB from wrapping its output."),
3444 set_width_command,
3445 show_chars_per_line,
3446 &setlist, &showlist);
3447
3448 add_setshow_uinteger_cmd ("height", class_support, &lines_per_page, _("\
3449 Set number of lines in a page for GDB output pagination."), _("\
3450 Show number of lines in a page for GDB output pagination."), _("\
3451 This affects the number of lines after which GDB will pause\n\
3452 its output and ask you whether to continue.\n\
3453 Setting this to \"unlimited\" or zero causes GDB never pause during output."),
3454 set_height_command,
3455 show_lines_per_page,
3456 &setlist, &showlist);
3457
3458 add_setshow_boolean_cmd ("pagination", class_support,
3459 &pagination_enabled, _("\
3460 Set state of GDB output pagination."), _("\
3461 Show state of GDB output pagination."), _("\
3462 When pagination is ON, GDB pauses at end of each screenful of\n\
3463 its output and asks you whether to continue.\n\
3464 Turning pagination off is an alternative to \"set height unlimited\"."),
3465 NULL,
3466 show_pagination_enabled,
3467 &setlist, &showlist);
3468
3469 add_setshow_boolean_cmd ("sevenbit-strings", class_support,
3470 &sevenbit_strings, _("\
3471 Set printing of 8-bit characters in strings as \\nnn."), _("\
3472 Show printing of 8-bit characters in strings as \\nnn."), NULL,
3473 NULL,
3474 show_sevenbit_strings,
3475 &setprintlist, &showprintlist);
3476
3477 add_setshow_boolean_cmd ("timestamp", class_maintenance,
3478 &debug_timestamp, _("\
3479 Set timestamping of debugging messages."), _("\
3480 Show timestamping of debugging messages."), _("\
3481 When set, debugging messages will be marked with seconds and microseconds."),
3482 NULL,
3483 show_debug_timestamp,
3484 &setdebuglist, &showdebuglist);
3485
3486 add_internal_problem_command (&internal_error_problem);
3487 add_internal_problem_command (&internal_warning_problem);
3488 add_internal_problem_command (&demangler_warning_problem);
3489
3490 #if GDB_SELF_TEST
3491 selftests::register_test ("gdb_realpath", gdb_realpath_tests);
3492 #endif
3493 }