gdb: remove unnecessary NULL checks before xfree
[deliverable/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 xfree (spaces);
2264 spaces = (char *) xmalloc (n + 1);
2265 for (t = spaces + n; t != spaces;)
2266 *--t = ' ';
2267 spaces[n] = '\0';
2268 max_spaces = n;
2269 }
2270
2271 return spaces + max_spaces - n;
2272 }
2273
2274 /* Print N spaces. */
2275 void
2276 print_spaces_filtered (int n, struct ui_file *stream)
2277 {
2278 fputs_filtered (n_spaces (n), stream);
2279 }
2280 \f
2281 /* C++/ObjC demangler stuff. */
2282
2283 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2284 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2285 If the name is not mangled, or the language for the name is unknown, or
2286 demangling is off, the name is printed in its "raw" form. */
2287
2288 void
2289 fprintf_symbol_filtered (struct ui_file *stream, const char *name,
2290 enum language lang, int arg_mode)
2291 {
2292 char *demangled;
2293
2294 if (name != NULL)
2295 {
2296 /* If user wants to see raw output, no problem. */
2297 if (!demangle)
2298 {
2299 fputs_filtered (name, stream);
2300 }
2301 else
2302 {
2303 demangled = language_demangle (language_def (lang), name, arg_mode);
2304 fputs_filtered (demangled ? demangled : name, stream);
2305 if (demangled != NULL)
2306 {
2307 xfree (demangled);
2308 }
2309 }
2310 }
2311 }
2312
2313 /* True if CH is a character that can be part of a symbol name. I.e.,
2314 either a number, a letter, or a '_'. */
2315
2316 static bool
2317 valid_identifier_name_char (int ch)
2318 {
2319 return (isalnum (ch) || ch == '_');
2320 }
2321
2322 /* Skip to end of token, or to END, whatever comes first. Input is
2323 assumed to be a C++ operator name. */
2324
2325 static const char *
2326 cp_skip_operator_token (const char *token, const char *end)
2327 {
2328 const char *p = token;
2329 while (p != end && !isspace (*p) && *p != '(')
2330 {
2331 if (valid_identifier_name_char (*p))
2332 {
2333 while (p != end && valid_identifier_name_char (*p))
2334 p++;
2335 return p;
2336 }
2337 else
2338 {
2339 /* Note, ordered such that among ops that share a prefix,
2340 longer comes first. This is so that the loop below can
2341 bail on first match. */
2342 static const char *ops[] =
2343 {
2344 "[",
2345 "]",
2346 "~",
2347 ",",
2348 "-=", "--", "->", "-",
2349 "+=", "++", "+",
2350 "*=", "*",
2351 "/=", "/",
2352 "%=", "%",
2353 "|=", "||", "|",
2354 "&=", "&&", "&",
2355 "^=", "^",
2356 "!=", "!",
2357 "<<=", "<=", "<<", "<",
2358 ">>=", ">=", ">>", ">",
2359 "==", "=",
2360 };
2361
2362 for (const char *op : ops)
2363 {
2364 size_t oplen = strlen (op);
2365 size_t lencmp = std::min<size_t> (oplen, end - p);
2366
2367 if (strncmp (p, op, lencmp) == 0)
2368 return p + lencmp;
2369 }
2370 /* Some unidentified character. Return it. */
2371 return p + 1;
2372 }
2373 }
2374
2375 return p;
2376 }
2377
2378 /* Advance STRING1/STRING2 past whitespace. */
2379
2380 static void
2381 skip_ws (const char *&string1, const char *&string2, const char *end_str2)
2382 {
2383 while (isspace (*string1))
2384 string1++;
2385 while (string2 < end_str2 && isspace (*string2))
2386 string2++;
2387 }
2388
2389 /* True if STRING points at the start of a C++ operator name. START
2390 is the start of the string that STRING points to, hence when
2391 reading backwards, we must not read any character before START. */
2392
2393 static bool
2394 cp_is_operator (const char *string, const char *start)
2395 {
2396 return ((string == start
2397 || !valid_identifier_name_char (string[-1]))
2398 && strncmp (string, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0
2399 && !valid_identifier_name_char (string[CP_OPERATOR_LEN]));
2400 }
2401
2402 /* If *NAME points at an ABI tag, skip it and return true. Otherwise
2403 leave *NAME unmodified and return false. (see GCC's abi_tag
2404 attribute), such names are demangled as e.g.,
2405 "function[abi:cxx11]()". */
2406
2407 static bool
2408 skip_abi_tag (const char **name)
2409 {
2410 const char *p = *name;
2411
2412 if (startswith (p, "[abi:"))
2413 {
2414 p += 5;
2415
2416 while (valid_identifier_name_char (*p))
2417 p++;
2418
2419 if (*p == ']')
2420 {
2421 p++;
2422 *name = p;
2423 return true;
2424 }
2425 }
2426 return false;
2427 }
2428
2429 /* See utils.h. */
2430
2431 int
2432 strncmp_iw_with_mode (const char *string1, const char *string2,
2433 size_t string2_len, strncmp_iw_mode mode,
2434 enum language language,
2435 completion_match_for_lcd *match_for_lcd)
2436 {
2437 const char *string1_start = string1;
2438 const char *end_str2 = string2 + string2_len;
2439 bool skip_spaces = true;
2440 bool have_colon_op = (language == language_cplus
2441 || language == language_rust
2442 || language == language_fortran);
2443
2444 while (1)
2445 {
2446 if (skip_spaces
2447 || ((isspace (*string1) && !valid_identifier_name_char (*string2))
2448 || (isspace (*string2) && !valid_identifier_name_char (*string1))))
2449 {
2450 skip_ws (string1, string2, end_str2);
2451 skip_spaces = false;
2452 }
2453
2454 /* Skip [abi:cxx11] tags in the symbol name if the lookup name
2455 doesn't include them. E.g.:
2456
2457 string1: function[abi:cxx1](int)
2458 string2: function
2459
2460 string1: function[abi:cxx1](int)
2461 string2: function(int)
2462
2463 string1: Struct[abi:cxx1]::function()
2464 string2: Struct::function()
2465
2466 string1: function(Struct[abi:cxx1], int)
2467 string2: function(Struct, int)
2468 */
2469 if (string2 == end_str2
2470 || (*string2 != '[' && !valid_identifier_name_char (*string2)))
2471 {
2472 const char *abi_start = string1;
2473
2474 /* There can be more than one tag. */
2475 while (*string1 == '[' && skip_abi_tag (&string1))
2476 ;
2477
2478 if (match_for_lcd != NULL && abi_start != string1)
2479 match_for_lcd->mark_ignored_range (abi_start, string1);
2480
2481 while (isspace (*string1))
2482 string1++;
2483 }
2484
2485 if (*string1 == '\0' || string2 == end_str2)
2486 break;
2487
2488 /* Handle the :: operator. */
2489 if (have_colon_op && string1[0] == ':' && string1[1] == ':')
2490 {
2491 if (*string2 != ':')
2492 return 1;
2493
2494 string1++;
2495 string2++;
2496
2497 if (string2 == end_str2)
2498 break;
2499
2500 if (*string2 != ':')
2501 return 1;
2502
2503 string1++;
2504 string2++;
2505
2506 while (isspace (*string1))
2507 string1++;
2508 while (string2 < end_str2 && isspace (*string2))
2509 string2++;
2510 continue;
2511 }
2512
2513 /* Handle C++ user-defined operators. */
2514 else if (language == language_cplus
2515 && *string1 == 'o')
2516 {
2517 if (cp_is_operator (string1, string1_start))
2518 {
2519 /* An operator name in STRING1. Check STRING2. */
2520 size_t cmplen
2521 = std::min<size_t> (CP_OPERATOR_LEN, end_str2 - string2);
2522 if (strncmp (string1, string2, cmplen) != 0)
2523 return 1;
2524
2525 string1 += cmplen;
2526 string2 += cmplen;
2527
2528 if (string2 != end_str2)
2529 {
2530 /* Check for "operatorX" in STRING2. */
2531 if (valid_identifier_name_char (*string2))
2532 return 1;
2533
2534 skip_ws (string1, string2, end_str2);
2535 }
2536
2537 /* Handle operator(). */
2538 if (*string1 == '(')
2539 {
2540 if (string2 == end_str2)
2541 {
2542 if (mode == strncmp_iw_mode::NORMAL)
2543 return 0;
2544 else
2545 {
2546 /* Don't break for the regular return at the
2547 bottom, because "operator" should not
2548 match "operator()", since this open
2549 parentheses is not the parameter list
2550 start. */
2551 return *string1 != '\0';
2552 }
2553 }
2554
2555 if (*string1 != *string2)
2556 return 1;
2557
2558 string1++;
2559 string2++;
2560 }
2561
2562 while (1)
2563 {
2564 skip_ws (string1, string2, end_str2);
2565
2566 /* Skip to end of token, or to END, whatever comes
2567 first. */
2568 const char *end_str1 = string1 + strlen (string1);
2569 const char *p1 = cp_skip_operator_token (string1, end_str1);
2570 const char *p2 = cp_skip_operator_token (string2, end_str2);
2571
2572 cmplen = std::min (p1 - string1, p2 - string2);
2573 if (p2 == end_str2)
2574 {
2575 if (strncmp (string1, string2, cmplen) != 0)
2576 return 1;
2577 }
2578 else
2579 {
2580 if (p1 - string1 != p2 - string2)
2581 return 1;
2582 if (strncmp (string1, string2, cmplen) != 0)
2583 return 1;
2584 }
2585
2586 string1 += cmplen;
2587 string2 += cmplen;
2588
2589 if (*string1 == '\0' || string2 == end_str2)
2590 break;
2591 if (*string1 == '(' || *string2 == '(')
2592 break;
2593 }
2594
2595 continue;
2596 }
2597 }
2598
2599 if (case_sensitivity == case_sensitive_on && *string1 != *string2)
2600 break;
2601 if (case_sensitivity == case_sensitive_off
2602 && (tolower ((unsigned char) *string1)
2603 != tolower ((unsigned char) *string2)))
2604 break;
2605
2606 /* If we see any non-whitespace, non-identifier-name character
2607 (any of "()<>*&" etc.), then skip spaces the next time
2608 around. */
2609 if (!isspace (*string1) && !valid_identifier_name_char (*string1))
2610 skip_spaces = true;
2611
2612 string1++;
2613 string2++;
2614 }
2615
2616 if (string2 == end_str2)
2617 {
2618 if (mode == strncmp_iw_mode::NORMAL)
2619 {
2620 /* Strip abi tag markers from the matched symbol name.
2621 Usually the ABI marker will be found on function name
2622 (automatically added because the function returns an
2623 object marked with an ABI tag). However, it's also
2624 possible to see a marker in one of the function
2625 parameters, for example.
2626
2627 string2 (lookup name):
2628 func
2629 symbol name:
2630 function(some_struct[abi:cxx11], int)
2631
2632 and for completion LCD computation we want to say that
2633 the match was for:
2634 function(some_struct, int)
2635 */
2636 if (match_for_lcd != NULL)
2637 {
2638 while ((string1 = strstr (string1, "[abi:")) != NULL)
2639 {
2640 const char *abi_start = string1;
2641
2642 /* There can be more than one tag. */
2643 while (skip_abi_tag (&string1) && *string1 == '[')
2644 ;
2645
2646 if (abi_start != string1)
2647 match_for_lcd->mark_ignored_range (abi_start, string1);
2648 }
2649 }
2650
2651 return 0;
2652 }
2653 else
2654 return (*string1 != '\0' && *string1 != '(');
2655 }
2656 else
2657 return 1;
2658 }
2659
2660 /* See utils.h. */
2661
2662 int
2663 strncmp_iw (const char *string1, const char *string2, size_t string2_len)
2664 {
2665 return strncmp_iw_with_mode (string1, string2, string2_len,
2666 strncmp_iw_mode::NORMAL, language_minimal);
2667 }
2668
2669 /* See utils.h. */
2670
2671 int
2672 strcmp_iw (const char *string1, const char *string2)
2673 {
2674 return strncmp_iw_with_mode (string1, string2, strlen (string2),
2675 strncmp_iw_mode::MATCH_PARAMS, language_minimal);
2676 }
2677
2678 /* This is like strcmp except that it ignores whitespace and treats
2679 '(' as the first non-NULL character in terms of ordering. Like
2680 strcmp (and unlike strcmp_iw), it returns negative if STRING1 <
2681 STRING2, 0 if STRING2 = STRING2, and positive if STRING1 > STRING2
2682 according to that ordering.
2683
2684 If a list is sorted according to this function and if you want to
2685 find names in the list that match some fixed NAME according to
2686 strcmp_iw(LIST_ELT, NAME), then the place to start looking is right
2687 where this function would put NAME.
2688
2689 This function must be neutral to the CASE_SENSITIVITY setting as the user
2690 may choose it during later lookup. Therefore this function always sorts
2691 primarily case-insensitively and secondarily case-sensitively.
2692
2693 Here are some examples of why using strcmp to sort is a bad idea:
2694
2695 Whitespace example:
2696
2697 Say your partial symtab contains: "foo<char *>", "goo". Then, if
2698 we try to do a search for "foo<char*>", strcmp will locate this
2699 after "foo<char *>" and before "goo". Then lookup_partial_symbol
2700 will start looking at strings beginning with "goo", and will never
2701 see the correct match of "foo<char *>".
2702
2703 Parenthesis example:
2704
2705 In practice, this is less like to be an issue, but I'll give it a
2706 shot. Let's assume that '$' is a legitimate character to occur in
2707 symbols. (Which may well even be the case on some systems.) Then
2708 say that the partial symbol table contains "foo$" and "foo(int)".
2709 strcmp will put them in this order, since '$' < '('. Now, if the
2710 user searches for "foo", then strcmp will sort "foo" before "foo$".
2711 Then lookup_partial_symbol will notice that strcmp_iw("foo$",
2712 "foo") is false, so it won't proceed to the actual match of
2713 "foo(int)" with "foo". */
2714
2715 int
2716 strcmp_iw_ordered (const char *string1, const char *string2)
2717 {
2718 const char *saved_string1 = string1, *saved_string2 = string2;
2719 enum case_sensitivity case_pass = case_sensitive_off;
2720
2721 for (;;)
2722 {
2723 /* C1 and C2 are valid only if *string1 != '\0' && *string2 != '\0'.
2724 Provide stub characters if we are already at the end of one of the
2725 strings. */
2726 char c1 = 'X', c2 = 'X';
2727
2728 while (*string1 != '\0' && *string2 != '\0')
2729 {
2730 while (isspace (*string1))
2731 string1++;
2732 while (isspace (*string2))
2733 string2++;
2734
2735 switch (case_pass)
2736 {
2737 case case_sensitive_off:
2738 c1 = tolower ((unsigned char) *string1);
2739 c2 = tolower ((unsigned char) *string2);
2740 break;
2741 case case_sensitive_on:
2742 c1 = *string1;
2743 c2 = *string2;
2744 break;
2745 }
2746 if (c1 != c2)
2747 break;
2748
2749 if (*string1 != '\0')
2750 {
2751 string1++;
2752 string2++;
2753 }
2754 }
2755
2756 switch (*string1)
2757 {
2758 /* Characters are non-equal unless they're both '\0'; we want to
2759 make sure we get the comparison right according to our
2760 comparison in the cases where one of them is '\0' or '('. */
2761 case '\0':
2762 if (*string2 == '\0')
2763 break;
2764 else
2765 return -1;
2766 case '(':
2767 if (*string2 == '\0')
2768 return 1;
2769 else
2770 return -1;
2771 default:
2772 if (*string2 == '\0' || *string2 == '(')
2773 return 1;
2774 else if (c1 > c2)
2775 return 1;
2776 else if (c1 < c2)
2777 return -1;
2778 /* PASSTHRU */
2779 }
2780
2781 if (case_pass == case_sensitive_on)
2782 return 0;
2783
2784 /* Otherwise the strings were equal in case insensitive way, make
2785 a more fine grained comparison in a case sensitive way. */
2786
2787 case_pass = case_sensitive_on;
2788 string1 = saved_string1;
2789 string2 = saved_string2;
2790 }
2791 }
2792
2793 /* See utils.h. */
2794
2795 bool
2796 streq (const char *lhs, const char *rhs)
2797 {
2798 return !strcmp (lhs, rhs);
2799 }
2800
2801 /* See utils.h. */
2802
2803 int
2804 streq_hash (const void *lhs, const void *rhs)
2805 {
2806 return streq ((const char *) lhs, (const char *) rhs);
2807 }
2808
2809 \f
2810
2811 /*
2812 ** subset_compare()
2813 ** Answer whether string_to_compare is a full or partial match to
2814 ** template_string. The partial match must be in sequence starting
2815 ** at index 0.
2816 */
2817 int
2818 subset_compare (const char *string_to_compare, const char *template_string)
2819 {
2820 int match;
2821
2822 if (template_string != NULL && string_to_compare != NULL
2823 && strlen (string_to_compare) <= strlen (template_string))
2824 match =
2825 (startswith (template_string, string_to_compare));
2826 else
2827 match = 0;
2828 return match;
2829 }
2830
2831 static void
2832 show_debug_timestamp (struct ui_file *file, int from_tty,
2833 struct cmd_list_element *c, const char *value)
2834 {
2835 fprintf_filtered (file, _("Timestamping debugging messages is %s.\n"),
2836 value);
2837 }
2838 \f
2839
2840 /* See utils.h. */
2841
2842 CORE_ADDR
2843 address_significant (gdbarch *gdbarch, CORE_ADDR addr)
2844 {
2845 /* Clear insignificant bits of a target address and sign extend resulting
2846 address, avoiding shifts larger or equal than the width of a CORE_ADDR.
2847 The local variable ADDR_BIT stops the compiler reporting a shift overflow
2848 when it won't occur. Skip updating of target address if current target
2849 has not set gdbarch significant_addr_bit. */
2850 int addr_bit = gdbarch_significant_addr_bit (gdbarch);
2851
2852 if (addr_bit && (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT)))
2853 {
2854 CORE_ADDR sign = (CORE_ADDR) 1 << (addr_bit - 1);
2855 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
2856 addr = (addr ^ sign) - sign;
2857 }
2858
2859 return addr;
2860 }
2861
2862 const char *
2863 paddress (struct gdbarch *gdbarch, CORE_ADDR addr)
2864 {
2865 /* Truncate address to the size of a target address, avoiding shifts
2866 larger or equal than the width of a CORE_ADDR. The local
2867 variable ADDR_BIT stops the compiler reporting a shift overflow
2868 when it won't occur. */
2869 /* NOTE: This assumes that the significant address information is
2870 kept in the least significant bits of ADDR - the upper bits were
2871 either zero or sign extended. Should gdbarch_address_to_pointer or
2872 some ADDRESS_TO_PRINTABLE() be used to do the conversion? */
2873
2874 int addr_bit = gdbarch_addr_bit (gdbarch);
2875
2876 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2877 addr &= ((CORE_ADDR) 1 << addr_bit) - 1;
2878 return hex_string (addr);
2879 }
2880
2881 /* This function is described in "defs.h". */
2882
2883 const char *
2884 print_core_address (struct gdbarch *gdbarch, CORE_ADDR address)
2885 {
2886 int addr_bit = gdbarch_addr_bit (gdbarch);
2887
2888 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
2889 address &= ((CORE_ADDR) 1 << addr_bit) - 1;
2890
2891 /* FIXME: cagney/2002-05-03: Need local_address_string() function
2892 that returns the language localized string formatted to a width
2893 based on gdbarch_addr_bit. */
2894 if (addr_bit <= 32)
2895 return hex_string_custom (address, 8);
2896 else
2897 return hex_string_custom (address, 16);
2898 }
2899
2900 /* Callback hash_f for htab_create_alloc or htab_create_alloc_ex. */
2901
2902 hashval_t
2903 core_addr_hash (const void *ap)
2904 {
2905 const CORE_ADDR *addrp = (const CORE_ADDR *) ap;
2906
2907 return *addrp;
2908 }
2909
2910 /* Callback eq_f for htab_create_alloc or htab_create_alloc_ex. */
2911
2912 int
2913 core_addr_eq (const void *ap, const void *bp)
2914 {
2915 const CORE_ADDR *addr_ap = (const CORE_ADDR *) ap;
2916 const CORE_ADDR *addr_bp = (const CORE_ADDR *) bp;
2917
2918 return *addr_ap == *addr_bp;
2919 }
2920
2921 /* Convert a string back into a CORE_ADDR. */
2922 CORE_ADDR
2923 string_to_core_addr (const char *my_string)
2924 {
2925 CORE_ADDR addr = 0;
2926
2927 if (my_string[0] == '0' && tolower (my_string[1]) == 'x')
2928 {
2929 /* Assume that it is in hex. */
2930 int i;
2931
2932 for (i = 2; my_string[i] != '\0'; i++)
2933 {
2934 if (isdigit (my_string[i]))
2935 addr = (my_string[i] - '0') + (addr * 16);
2936 else if (isxdigit (my_string[i]))
2937 addr = (tolower (my_string[i]) - 'a' + 0xa) + (addr * 16);
2938 else
2939 error (_("invalid hex \"%s\""), my_string);
2940 }
2941 }
2942 else
2943 {
2944 /* Assume that it is in decimal. */
2945 int i;
2946
2947 for (i = 0; my_string[i] != '\0'; i++)
2948 {
2949 if (isdigit (my_string[i]))
2950 addr = (my_string[i] - '0') + (addr * 10);
2951 else
2952 error (_("invalid decimal \"%s\""), my_string);
2953 }
2954 }
2955
2956 return addr;
2957 }
2958
2959 #if GDB_SELF_TEST
2960
2961 static void
2962 gdb_realpath_check_trailer (const char *input, const char *trailer)
2963 {
2964 gdb::unique_xmalloc_ptr<char> result = gdb_realpath (input);
2965
2966 size_t len = strlen (result.get ());
2967 size_t trail_len = strlen (trailer);
2968
2969 SELF_CHECK (len >= trail_len
2970 && strcmp (result.get () + len - trail_len, trailer) == 0);
2971 }
2972
2973 static void
2974 gdb_realpath_tests ()
2975 {
2976 /* A file which contains a directory prefix. */
2977 gdb_realpath_check_trailer ("./xfullpath.exp", "/xfullpath.exp");
2978 /* A file which contains a directory prefix. */
2979 gdb_realpath_check_trailer ("../../defs.h", "/defs.h");
2980 /* A one-character filename. */
2981 gdb_realpath_check_trailer ("./a", "/a");
2982 /* A file in the root directory. */
2983 gdb_realpath_check_trailer ("/root_file_which_should_exist",
2984 "/root_file_which_should_exist");
2985 /* A file which does not have a directory prefix. */
2986 gdb_realpath_check_trailer ("xfullpath.exp", "xfullpath.exp");
2987 /* A one-char filename without any directory prefix. */
2988 gdb_realpath_check_trailer ("a", "a");
2989 /* An empty filename. */
2990 gdb_realpath_check_trailer ("", "");
2991 }
2992
2993 #endif /* GDB_SELF_TEST */
2994
2995 /* Allocation function for the libiberty hash table which uses an
2996 obstack. The obstack is passed as DATA. */
2997
2998 void *
2999 hashtab_obstack_allocate (void *data, size_t size, size_t count)
3000 {
3001 size_t total = size * count;
3002 void *ptr = obstack_alloc ((struct obstack *) data, total);
3003
3004 memset (ptr, 0, total);
3005 return ptr;
3006 }
3007
3008 /* Trivial deallocation function for the libiberty splay tree and hash
3009 table - don't deallocate anything. Rely on later deletion of the
3010 obstack. DATA will be the obstack, although it is not needed
3011 here. */
3012
3013 void
3014 dummy_obstack_deallocate (void *object, void *data)
3015 {
3016 return;
3017 }
3018
3019 /* Simple, portable version of dirname that does not modify its
3020 argument. */
3021
3022 std::string
3023 ldirname (const char *filename)
3024 {
3025 std::string dirname;
3026 const char *base = lbasename (filename);
3027
3028 while (base > filename && IS_DIR_SEPARATOR (base[-1]))
3029 --base;
3030
3031 if (base == filename)
3032 return dirname;
3033
3034 dirname = std::string (filename, base - filename);
3035
3036 /* On DOS based file systems, convert "d:foo" to "d:.", so that we
3037 create "d:./bar" later instead of the (different) "d:/bar". */
3038 if (base - filename == 2 && IS_ABSOLUTE_PATH (base)
3039 && !IS_DIR_SEPARATOR (filename[0]))
3040 dirname[base++ - filename] = '.';
3041
3042 return dirname;
3043 }
3044
3045 /* See utils.h. */
3046
3047 void
3048 gdb_argv::reset (const char *s)
3049 {
3050 char **argv = buildargv (s);
3051
3052 freeargv (m_argv);
3053 m_argv = argv;
3054 }
3055
3056 #define AMBIGUOUS_MESS1 ".\nMatching formats:"
3057 #define AMBIGUOUS_MESS2 \
3058 ".\nUse \"set gnutarget format-name\" to specify the format."
3059
3060 std::string
3061 gdb_bfd_errmsg (bfd_error_type error_tag, char **matching)
3062 {
3063 char **p;
3064
3065 /* Check if errmsg just need simple return. */
3066 if (error_tag != bfd_error_file_ambiguously_recognized || matching == NULL)
3067 return bfd_errmsg (error_tag);
3068
3069 std::string ret (bfd_errmsg (error_tag));
3070 ret += AMBIGUOUS_MESS1;
3071
3072 for (p = matching; *p; p++)
3073 {
3074 ret += " ";
3075 ret += *p;
3076 }
3077 ret += AMBIGUOUS_MESS2;
3078
3079 xfree (matching);
3080
3081 return ret;
3082 }
3083
3084 /* Return ARGS parsed as a valid pid, or throw an error. */
3085
3086 int
3087 parse_pid_to_attach (const char *args)
3088 {
3089 unsigned long pid;
3090 char *dummy;
3091
3092 if (!args)
3093 error_no_arg (_("process-id to attach"));
3094
3095 dummy = (char *) args;
3096 pid = strtoul (args, &dummy, 0);
3097 /* Some targets don't set errno on errors, grrr! */
3098 if ((pid == 0 && dummy == args) || dummy != &args[strlen (args)])
3099 error (_("Illegal process-id: %s."), args);
3100
3101 return pid;
3102 }
3103
3104 /* Substitute all occurrences of string FROM by string TO in *STRINGP. *STRINGP
3105 must come from xrealloc-compatible allocator and it may be updated. FROM
3106 needs to be delimited by IS_DIR_SEPARATOR or DIRNAME_SEPARATOR (or be
3107 located at the start or end of *STRINGP. */
3108
3109 void
3110 substitute_path_component (char **stringp, const char *from, const char *to)
3111 {
3112 char *string = *stringp, *s;
3113 const size_t from_len = strlen (from);
3114 const size_t to_len = strlen (to);
3115
3116 for (s = string;;)
3117 {
3118 s = strstr (s, from);
3119 if (s == NULL)
3120 break;
3121
3122 if ((s == string || IS_DIR_SEPARATOR (s[-1])
3123 || s[-1] == DIRNAME_SEPARATOR)
3124 && (s[from_len] == '\0' || IS_DIR_SEPARATOR (s[from_len])
3125 || s[from_len] == DIRNAME_SEPARATOR))
3126 {
3127 char *string_new;
3128
3129 string_new
3130 = (char *) xrealloc (string, (strlen (string) + to_len + 1));
3131
3132 /* Relocate the current S pointer. */
3133 s = s - string + string_new;
3134 string = string_new;
3135
3136 /* Replace from by to. */
3137 memmove (&s[to_len], &s[from_len], strlen (&s[from_len]) + 1);
3138 memcpy (s, to, to_len);
3139
3140 s += to_len;
3141 }
3142 else
3143 s++;
3144 }
3145
3146 *stringp = string;
3147 }
3148
3149 #ifdef HAVE_WAITPID
3150
3151 #ifdef SIGALRM
3152
3153 /* SIGALRM handler for waitpid_with_timeout. */
3154
3155 static void
3156 sigalrm_handler (int signo)
3157 {
3158 /* Nothing to do. */
3159 }
3160
3161 #endif
3162
3163 /* Wrapper to wait for child PID to die with TIMEOUT.
3164 TIMEOUT is the time to stop waiting in seconds.
3165 If TIMEOUT is zero, pass WNOHANG to waitpid.
3166 Returns PID if it was successfully waited for, otherwise -1.
3167
3168 Timeouts are currently implemented with alarm and SIGALRM.
3169 If the host does not support them, this waits "forever".
3170 It would be odd though for a host to have waitpid and not SIGALRM. */
3171
3172 pid_t
3173 wait_to_die_with_timeout (pid_t pid, int *status, int timeout)
3174 {
3175 pid_t waitpid_result;
3176
3177 gdb_assert (pid > 0);
3178 gdb_assert (timeout >= 0);
3179
3180 if (timeout > 0)
3181 {
3182 #ifdef SIGALRM
3183 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
3184 struct sigaction sa, old_sa;
3185
3186 sa.sa_handler = sigalrm_handler;
3187 sigemptyset (&sa.sa_mask);
3188 sa.sa_flags = 0;
3189 sigaction (SIGALRM, &sa, &old_sa);
3190 #else
3191 sighandler_t ofunc;
3192
3193 ofunc = signal (SIGALRM, sigalrm_handler);
3194 #endif
3195
3196 alarm (timeout);
3197 #endif
3198
3199 waitpid_result = waitpid (pid, status, 0);
3200
3201 #ifdef SIGALRM
3202 alarm (0);
3203 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
3204 sigaction (SIGALRM, &old_sa, NULL);
3205 #else
3206 signal (SIGALRM, ofunc);
3207 #endif
3208 #endif
3209 }
3210 else
3211 waitpid_result = waitpid (pid, status, WNOHANG);
3212
3213 if (waitpid_result == pid)
3214 return pid;
3215 else
3216 return -1;
3217 }
3218
3219 #endif /* HAVE_WAITPID */
3220
3221 /* Provide fnmatch compatible function for FNM_FILE_NAME matching of host files.
3222 Both FNM_FILE_NAME and FNM_NOESCAPE must be set in FLAGS.
3223
3224 It handles correctly HAVE_DOS_BASED_FILE_SYSTEM and
3225 HAVE_CASE_INSENSITIVE_FILE_SYSTEM. */
3226
3227 int
3228 gdb_filename_fnmatch (const char *pattern, const char *string, int flags)
3229 {
3230 gdb_assert ((flags & FNM_FILE_NAME) != 0);
3231
3232 /* It is unclear how '\' escaping vs. directory separator should coexist. */
3233 gdb_assert ((flags & FNM_NOESCAPE) != 0);
3234
3235 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
3236 {
3237 char *pattern_slash, *string_slash;
3238
3239 /* Replace '\' by '/' in both strings. */
3240
3241 pattern_slash = (char *) alloca (strlen (pattern) + 1);
3242 strcpy (pattern_slash, pattern);
3243 pattern = pattern_slash;
3244 for (; *pattern_slash != 0; pattern_slash++)
3245 if (IS_DIR_SEPARATOR (*pattern_slash))
3246 *pattern_slash = '/';
3247
3248 string_slash = (char *) alloca (strlen (string) + 1);
3249 strcpy (string_slash, string);
3250 string = string_slash;
3251 for (; *string_slash != 0; string_slash++)
3252 if (IS_DIR_SEPARATOR (*string_slash))
3253 *string_slash = '/';
3254 }
3255 #endif /* HAVE_DOS_BASED_FILE_SYSTEM */
3256
3257 #ifdef HAVE_CASE_INSENSITIVE_FILE_SYSTEM
3258 flags |= FNM_CASEFOLD;
3259 #endif /* HAVE_CASE_INSENSITIVE_FILE_SYSTEM */
3260
3261 return fnmatch (pattern, string, flags);
3262 }
3263
3264 /* Return the number of path elements in PATH.
3265 / = 1
3266 /foo = 2
3267 /foo/ = 2
3268 foo/bar = 2
3269 foo/ = 1 */
3270
3271 int
3272 count_path_elements (const char *path)
3273 {
3274 int count = 0;
3275 const char *p = path;
3276
3277 if (HAS_DRIVE_SPEC (p))
3278 {
3279 p = STRIP_DRIVE_SPEC (p);
3280 ++count;
3281 }
3282
3283 while (*p != '\0')
3284 {
3285 if (IS_DIR_SEPARATOR (*p))
3286 ++count;
3287 ++p;
3288 }
3289
3290 /* Backup one if last character is /, unless it's the only one. */
3291 if (p > path + 1 && IS_DIR_SEPARATOR (p[-1]))
3292 --count;
3293
3294 /* Add one for the file name, if present. */
3295 if (p > path && !IS_DIR_SEPARATOR (p[-1]))
3296 ++count;
3297
3298 return count;
3299 }
3300
3301 /* Remove N leading path elements from PATH.
3302 N must be non-negative.
3303 If PATH has more than N path elements then return NULL.
3304 If PATH has exactly N path elements then return "".
3305 See count_path_elements for a description of how we do the counting. */
3306
3307 const char *
3308 strip_leading_path_elements (const char *path, int n)
3309 {
3310 int i = 0;
3311 const char *p = path;
3312
3313 gdb_assert (n >= 0);
3314
3315 if (n == 0)
3316 return p;
3317
3318 if (HAS_DRIVE_SPEC (p))
3319 {
3320 p = STRIP_DRIVE_SPEC (p);
3321 ++i;
3322 }
3323
3324 while (i < n)
3325 {
3326 while (*p != '\0' && !IS_DIR_SEPARATOR (*p))
3327 ++p;
3328 if (*p == '\0')
3329 {
3330 if (i + 1 == n)
3331 return "";
3332 return NULL;
3333 }
3334 ++p;
3335 ++i;
3336 }
3337
3338 return p;
3339 }
3340
3341 /* See utils.h. */
3342
3343 void
3344 copy_bitwise (gdb_byte *dest, ULONGEST dest_offset,
3345 const gdb_byte *source, ULONGEST source_offset,
3346 ULONGEST nbits, int bits_big_endian)
3347 {
3348 unsigned int buf, avail;
3349
3350 if (nbits == 0)
3351 return;
3352
3353 if (bits_big_endian)
3354 {
3355 /* Start from the end, then work backwards. */
3356 dest_offset += nbits - 1;
3357 dest += dest_offset / 8;
3358 dest_offset = 7 - dest_offset % 8;
3359 source_offset += nbits - 1;
3360 source += source_offset / 8;
3361 source_offset = 7 - source_offset % 8;
3362 }
3363 else
3364 {
3365 dest += dest_offset / 8;
3366 dest_offset %= 8;
3367 source += source_offset / 8;
3368 source_offset %= 8;
3369 }
3370
3371 /* Fill BUF with DEST_OFFSET bits from the destination and 8 -
3372 SOURCE_OFFSET bits from the source. */
3373 buf = *(bits_big_endian ? source-- : source++) >> source_offset;
3374 buf <<= dest_offset;
3375 buf |= *dest & ((1 << dest_offset) - 1);
3376
3377 /* NBITS: bits yet to be written; AVAIL: BUF's fill level. */
3378 nbits += dest_offset;
3379 avail = dest_offset + 8 - source_offset;
3380
3381 /* Flush 8 bits from BUF, if appropriate. */
3382 if (nbits >= 8 && avail >= 8)
3383 {
3384 *(bits_big_endian ? dest-- : dest++) = buf;
3385 buf >>= 8;
3386 avail -= 8;
3387 nbits -= 8;
3388 }
3389
3390 /* Copy the middle part. */
3391 if (nbits >= 8)
3392 {
3393 size_t len = nbits / 8;
3394
3395 /* Use a faster method for byte-aligned copies. */
3396 if (avail == 0)
3397 {
3398 if (bits_big_endian)
3399 {
3400 dest -= len;
3401 source -= len;
3402 memcpy (dest + 1, source + 1, len);
3403 }
3404 else
3405 {
3406 memcpy (dest, source, len);
3407 dest += len;
3408 source += len;
3409 }
3410 }
3411 else
3412 {
3413 while (len--)
3414 {
3415 buf |= *(bits_big_endian ? source-- : source++) << avail;
3416 *(bits_big_endian ? dest-- : dest++) = buf;
3417 buf >>= 8;
3418 }
3419 }
3420 nbits %= 8;
3421 }
3422
3423 /* Write the last byte. */
3424 if (nbits)
3425 {
3426 if (avail < nbits)
3427 buf |= *source << avail;
3428
3429 buf &= (1 << nbits) - 1;
3430 *dest = (*dest & (~0U << nbits)) | buf;
3431 }
3432 }
3433
3434 void _initialize_utils ();
3435 void
3436 _initialize_utils ()
3437 {
3438 add_setshow_uinteger_cmd ("width", class_support, &chars_per_line, _("\
3439 Set number of characters where GDB should wrap lines of its output."), _("\
3440 Show number of characters where GDB should wrap lines of its output."), _("\
3441 This affects where GDB wraps its output to fit the screen width.\n\
3442 Setting this to \"unlimited\" or zero prevents GDB from wrapping its output."),
3443 set_width_command,
3444 show_chars_per_line,
3445 &setlist, &showlist);
3446
3447 add_setshow_uinteger_cmd ("height", class_support, &lines_per_page, _("\
3448 Set number of lines in a page for GDB output pagination."), _("\
3449 Show number of lines in a page for GDB output pagination."), _("\
3450 This affects the number of lines after which GDB will pause\n\
3451 its output and ask you whether to continue.\n\
3452 Setting this to \"unlimited\" or zero causes GDB never pause during output."),
3453 set_height_command,
3454 show_lines_per_page,
3455 &setlist, &showlist);
3456
3457 add_setshow_boolean_cmd ("pagination", class_support,
3458 &pagination_enabled, _("\
3459 Set state of GDB output pagination."), _("\
3460 Show state of GDB output pagination."), _("\
3461 When pagination is ON, GDB pauses at end of each screenful of\n\
3462 its output and asks you whether to continue.\n\
3463 Turning pagination off is an alternative to \"set height unlimited\"."),
3464 NULL,
3465 show_pagination_enabled,
3466 &setlist, &showlist);
3467
3468 add_setshow_boolean_cmd ("sevenbit-strings", class_support,
3469 &sevenbit_strings, _("\
3470 Set printing of 8-bit characters in strings as \\nnn."), _("\
3471 Show printing of 8-bit characters in strings as \\nnn."), NULL,
3472 NULL,
3473 show_sevenbit_strings,
3474 &setprintlist, &showprintlist);
3475
3476 add_setshow_boolean_cmd ("timestamp", class_maintenance,
3477 &debug_timestamp, _("\
3478 Set timestamping of debugging messages."), _("\
3479 Show timestamping of debugging messages."), _("\
3480 When set, debugging messages will be marked with seconds and microseconds."),
3481 NULL,
3482 show_debug_timestamp,
3483 &setdebuglist, &showdebuglist);
3484
3485 add_internal_problem_command (&internal_error_problem);
3486 add_internal_problem_command (&internal_warning_problem);
3487 add_internal_problem_command (&demangler_warning_problem);
3488
3489 #if GDB_SELF_TEST
3490 selftests::register_test ("gdb_realpath", gdb_realpath_tests);
3491 #endif
3492 }
This page took 0.155641 seconds and 5 git commands to generate.