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