1 /* General utility routines for GDB, the GNU debugger.
2
3 Copyright 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
5 Foundation, Inc.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
23
24 #include "defs.h"
25 #include "gdb_assert.h"
26 #include <ctype.h>
27 #include "gdb_string.h"
28 #include "event-top.h"
29
30 #ifdef TUI
31 #include "tui/tui.h" /* For tui_get_command_dimension. */
32 #endif
33
34 #ifdef __GO32__
35 #include <pc.h>
36 #endif
37
38 /* SunOS's curses.h has a '#define reg register' in it. Thank you Sun. */
39 #ifdef reg
40 #undef reg
41 #endif
42
43 #include <signal.h>
44 #include "gdbcmd.h"
45 #include "serial.h"
46 #include "bfd.h"
47 #include "target.h"
48 #include "demangle.h"
49 #include "expression.h"
50 #include "language.h"
51 #include "charset.h"
52 #include "annotate.h"
53 #include "filenames.h"
54 #include "symfile.h"
55
56 #include "inferior.h" /* for signed_pointer_to_address */
57
58 #include <sys/param.h> /* For MAXPATHLEN */
59
60 #ifdef HAVE_CURSES_H
61 #include <curses.h>
62 #endif
63 #ifdef HAVE_TERM_H
64 #include <term.h>
65 #endif
66
67 #include "readline/readline.h"
68
69 #ifdef NEED_DECLARATION_MALLOC
70 extern PTR malloc (); /* OK: PTR */
71 #endif
72 #ifdef NEED_DECLARATION_REALLOC
73 extern PTR realloc (); /* OK: PTR */
74 #endif
75 #ifdef NEED_DECLARATION_FREE
76 extern void free ();
77 #endif
78 /* Actually, we'll never have the decl, since we don't define _GNU_SOURCE. */
79 #if defined(HAVE_CANONICALIZE_FILE_NAME) \
80 && defined(NEED_DECLARATION_CANONICALIZE_FILE_NAME)
81 extern char *canonicalize_file_name (const char *);
82 #endif
83
84 /* readline defines this. */
85 #undef savestring
86
87 void (*deprecated_error_begin_hook) (void);
88
89 /* Holds the last error message issued by gdb */
90
91 static struct ui_file *gdb_lasterr;
92
93 /* Prototypes for local functions */
94
95 static void vfprintf_maybe_filtered (struct ui_file *, const char *,
96 va_list, int);
97
98 static void fputs_maybe_filtered (const char *, struct ui_file *, int);
99
100 static void do_my_cleanups (struct cleanup **, struct cleanup *);
101
102 static void prompt_for_continue (void);
103
104 static void set_screen_size (void);
105 static void set_width (void);
106
107 /* Chain of cleanup actions established with make_cleanup,
108 to be executed if an error happens. */
109
110 static struct cleanup *cleanup_chain; /* cleaned up after a failed command */
111 static struct cleanup *final_cleanup_chain; /* cleaned up when gdb exits */
112 static struct cleanup *run_cleanup_chain; /* cleaned up on each 'run' */
113 static struct cleanup *exec_cleanup_chain; /* cleaned up on each execution command */
114 /* cleaned up on each error from within an execution command */
115 static struct cleanup *exec_error_cleanup_chain;
116
117 /* Pointer to what is left to do for an execution command after the
118 target stops. Used only in asynchronous mode, by targets that
119 support async execution. The finish and until commands use it. So
120 does the target extended-remote command. */
121 struct continuation *cmd_continuation;
122 struct continuation *intermediate_continuation;
123
124 /* Nonzero if we have job control. */
125
126 int job_control;
127
128 /* Nonzero means a quit has been requested. */
129
130 int quit_flag;
131
132 /* Nonzero means quit immediately if Control-C is typed now, rather
133 than waiting until QUIT is executed. Be careful in setting this;
134 code which executes with immediate_quit set has to be very careful
135 about being able to deal with being interrupted at any time. It is
136 almost always better to use QUIT; the only exception I can think of
137 is being able to quit out of a system call (using EINTR loses if
138 the SIGINT happens between the previous QUIT and the system call).
139 To immediately quit in the case in which a SIGINT happens between
140 the previous QUIT and setting immediate_quit (desirable anytime we
141 expect to block), call QUIT after setting immediate_quit. */
142
143 int immediate_quit;
144
145 /* Nonzero means that encoded C++/ObjC names should be printed out in their
146 C++/ObjC form rather than raw. */
147
148 int demangle = 1;
149
150 /* Nonzero means that encoded C++/ObjC names should be printed out in their
151 C++/ObjC form even in assembler language displays. If this is set, but
152 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
153
154 int asm_demangle = 0;
155
156 /* Nonzero means that strings with character values >0x7F should be printed
157 as octal escapes. Zero means just print the value (e.g. it's an
158 international character, and the terminal or window can cope.) */
159
160 int sevenbit_strings = 0;
161
162 /* String to be printed before error messages, if any. */
163
164 char *error_pre_print;
165
166 /* String to be printed before quit messages, if any. */
167
168 char *quit_pre_print;
169
170 /* String to be printed before warning messages, if any. */
171
172 char *warning_pre_print = "\nwarning: ";
173
174 int pagination_enabled = 1;
175
176
177 /* Add a new cleanup to the cleanup_chain,
178 and return the previous chain pointer
179 to be passed later to do_cleanups or discard_cleanups.
180 Args are FUNCTION to clean up with, and ARG to pass to it. */
181
182 struct cleanup *
make_cleanup(make_cleanup_ftype * function,void * arg)183 make_cleanup (make_cleanup_ftype *function, void *arg)
184 {
185 return make_my_cleanup (&cleanup_chain, function, arg);
186 }
187
188 struct cleanup *
make_final_cleanup(make_cleanup_ftype * function,void * arg)189 make_final_cleanup (make_cleanup_ftype *function, void *arg)
190 {
191 return make_my_cleanup (&final_cleanup_chain, function, arg);
192 }
193
194 struct cleanup *
make_run_cleanup(make_cleanup_ftype * function,void * arg)195 make_run_cleanup (make_cleanup_ftype *function, void *arg)
196 {
197 return make_my_cleanup (&run_cleanup_chain, function, arg);
198 }
199
200 struct cleanup *
make_exec_cleanup(make_cleanup_ftype * function,void * arg)201 make_exec_cleanup (make_cleanup_ftype *function, void *arg)
202 {
203 return make_my_cleanup (&exec_cleanup_chain, function, arg);
204 }
205
206 struct cleanup *
make_exec_error_cleanup(make_cleanup_ftype * function,void * arg)207 make_exec_error_cleanup (make_cleanup_ftype *function, void *arg)
208 {
209 return make_my_cleanup (&exec_error_cleanup_chain, function, arg);
210 }
211
212 static void
do_freeargv(void * arg)213 do_freeargv (void *arg)
214 {
215 freeargv ((char **) arg);
216 }
217
218 struct cleanup *
make_cleanup_freeargv(char ** arg)219 make_cleanup_freeargv (char **arg)
220 {
221 return make_my_cleanup (&cleanup_chain, do_freeargv, arg);
222 }
223
224 static void
do_bfd_close_cleanup(void * arg)225 do_bfd_close_cleanup (void *arg)
226 {
227 bfd_close (arg);
228 }
229
230 struct cleanup *
make_cleanup_bfd_close(bfd * abfd)231 make_cleanup_bfd_close (bfd *abfd)
232 {
233 return make_cleanup (do_bfd_close_cleanup, abfd);
234 }
235
236 static void
do_close_cleanup(void * arg)237 do_close_cleanup (void *arg)
238 {
239 int *fd = arg;
240 close (*fd);
241 xfree (fd);
242 }
243
244 struct cleanup *
make_cleanup_close(int fd)245 make_cleanup_close (int fd)
246 {
247 int *saved_fd = xmalloc (sizeof (fd));
248 *saved_fd = fd;
249 return make_cleanup (do_close_cleanup, saved_fd);
250 }
251
252 static void
do_ui_file_delete(void * arg)253 do_ui_file_delete (void *arg)
254 {
255 ui_file_delete (arg);
256 }
257
258 struct cleanup *
make_cleanup_ui_file_delete(struct ui_file * arg)259 make_cleanup_ui_file_delete (struct ui_file *arg)
260 {
261 return make_my_cleanup (&cleanup_chain, do_ui_file_delete, arg);
262 }
263
264 static void
do_free_section_addr_info(void * arg)265 do_free_section_addr_info (void *arg)
266 {
267 free_section_addr_info (arg);
268 }
269
270 struct cleanup *
make_cleanup_free_section_addr_info(struct section_addr_info * addrs)271 make_cleanup_free_section_addr_info (struct section_addr_info *addrs)
272 {
273 return make_my_cleanup (&cleanup_chain, do_free_section_addr_info, addrs);
274 }
275
276
277 struct cleanup *
make_my_cleanup(struct cleanup ** pmy_chain,make_cleanup_ftype * function,void * arg)278 make_my_cleanup (struct cleanup **pmy_chain, make_cleanup_ftype *function,
279 void *arg)
280 {
281 struct cleanup *new
282 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
283 struct cleanup *old_chain = *pmy_chain;
284
285 new->next = *pmy_chain;
286 new->function = function;
287 new->arg = arg;
288 *pmy_chain = new;
289
290 return old_chain;
291 }
292
293 /* Discard cleanups and do the actions they describe
294 until we get back to the point OLD_CHAIN in the cleanup_chain. */
295
296 void
do_cleanups(struct cleanup * old_chain)297 do_cleanups (struct cleanup *old_chain)
298 {
299 do_my_cleanups (&cleanup_chain, old_chain);
300 }
301
302 void
do_final_cleanups(struct cleanup * old_chain)303 do_final_cleanups (struct cleanup *old_chain)
304 {
305 do_my_cleanups (&final_cleanup_chain, old_chain);
306 }
307
308 void
do_run_cleanups(struct cleanup * old_chain)309 do_run_cleanups (struct cleanup *old_chain)
310 {
311 do_my_cleanups (&run_cleanup_chain, old_chain);
312 }
313
314 void
do_exec_cleanups(struct cleanup * old_chain)315 do_exec_cleanups (struct cleanup *old_chain)
316 {
317 do_my_cleanups (&exec_cleanup_chain, old_chain);
318 }
319
320 void
do_exec_error_cleanups(struct cleanup * old_chain)321 do_exec_error_cleanups (struct cleanup *old_chain)
322 {
323 do_my_cleanups (&exec_error_cleanup_chain, old_chain);
324 }
325
326 static void
do_my_cleanups(struct cleanup ** pmy_chain,struct cleanup * old_chain)327 do_my_cleanups (struct cleanup **pmy_chain,
328 struct cleanup *old_chain)
329 {
330 struct cleanup *ptr;
331 while ((ptr = *pmy_chain) != old_chain)
332 {
333 *pmy_chain = ptr->next; /* Do this first incase recursion */
334 (*ptr->function) (ptr->arg);
335 xfree (ptr);
336 }
337 }
338
339 /* Discard cleanups, not doing the actions they describe,
340 until we get back to the point OLD_CHAIN in the cleanup_chain. */
341
342 void
discard_cleanups(struct cleanup * old_chain)343 discard_cleanups (struct cleanup *old_chain)
344 {
345 discard_my_cleanups (&cleanup_chain, old_chain);
346 }
347
348 void
discard_final_cleanups(struct cleanup * old_chain)349 discard_final_cleanups (struct cleanup *old_chain)
350 {
351 discard_my_cleanups (&final_cleanup_chain, old_chain);
352 }
353
354 void
discard_exec_error_cleanups(struct cleanup * old_chain)355 discard_exec_error_cleanups (struct cleanup *old_chain)
356 {
357 discard_my_cleanups (&exec_error_cleanup_chain, old_chain);
358 }
359
360 void
discard_my_cleanups(struct cleanup ** pmy_chain,struct cleanup * old_chain)361 discard_my_cleanups (struct cleanup **pmy_chain,
362 struct cleanup *old_chain)
363 {
364 struct cleanup *ptr;
365 while ((ptr = *pmy_chain) != old_chain)
366 {
367 *pmy_chain = ptr->next;
368 xfree (ptr);
369 }
370 }
371
372 /* Set the cleanup_chain to 0, and return the old cleanup chain. */
373 struct cleanup *
save_cleanups(void)374 save_cleanups (void)
375 {
376 return save_my_cleanups (&cleanup_chain);
377 }
378
379 struct cleanup *
save_final_cleanups(void)380 save_final_cleanups (void)
381 {
382 return save_my_cleanups (&final_cleanup_chain);
383 }
384
385 struct cleanup *
save_my_cleanups(struct cleanup ** pmy_chain)386 save_my_cleanups (struct cleanup **pmy_chain)
387 {
388 struct cleanup *old_chain = *pmy_chain;
389
390 *pmy_chain = 0;
391 return old_chain;
392 }
393
394 /* Restore the cleanup chain from a previously saved chain. */
395 void
restore_cleanups(struct cleanup * chain)396 restore_cleanups (struct cleanup *chain)
397 {
398 restore_my_cleanups (&cleanup_chain, chain);
399 }
400
401 void
restore_final_cleanups(struct cleanup * chain)402 restore_final_cleanups (struct cleanup *chain)
403 {
404 restore_my_cleanups (&final_cleanup_chain, chain);
405 }
406
407 void
restore_my_cleanups(struct cleanup ** pmy_chain,struct cleanup * chain)408 restore_my_cleanups (struct cleanup **pmy_chain, struct cleanup *chain)
409 {
410 *pmy_chain = chain;
411 }
412
413 /* This function is useful for cleanups.
414 Do
415
416 foo = xmalloc (...);
417 old_chain = make_cleanup (free_current_contents, &foo);
418
419 to arrange to free the object thus allocated. */
420
421 void
free_current_contents(void * ptr)422 free_current_contents (void *ptr)
423 {
424 void **location = ptr;
425 if (location == NULL)
426 internal_error (__FILE__, __LINE__,
427 "free_current_contents: NULL pointer");
428 if (*location != NULL)
429 {
430 xfree (*location);
431 *location = NULL;
432 }
433 }
434
435 /* Provide a known function that does nothing, to use as a base for
436 for a possibly long chain of cleanups. This is useful where we
437 use the cleanup chain for handling normal cleanups as well as dealing
438 with cleanups that need to be done as a result of a call to error().
439 In such cases, we may not be certain where the first cleanup is, unless
440 we have a do-nothing one to always use as the base. */
441
442 void
null_cleanup(void * arg)443 null_cleanup (void *arg)
444 {
445 }
446
447 /* Add a continuation to the continuation list, the global list
448 cmd_continuation. The new continuation will be added at the front.*/
449 void
add_continuation(void (* continuation_hook)(struct continuation_arg *),struct continuation_arg * arg_list)450 add_continuation (void (*continuation_hook) (struct continuation_arg *),
451 struct continuation_arg *arg_list)
452 {
453 struct continuation *continuation_ptr;
454
455 continuation_ptr =
456 (struct continuation *) xmalloc (sizeof (struct continuation));
457 continuation_ptr->continuation_hook = continuation_hook;
458 continuation_ptr->arg_list = arg_list;
459 continuation_ptr->next = cmd_continuation;
460 cmd_continuation = continuation_ptr;
461 }
462
463 /* Walk down the cmd_continuation list, and execute all the
464 continuations. There is a problem though. In some cases new
465 continuations may be added while we are in the middle of this
466 loop. If this happens they will be added in the front, and done
467 before we have a chance of exhausting those that were already
468 there. We need to then save the beginning of the list in a pointer
469 and do the continuations from there on, instead of using the
470 global beginning of list as our iteration pointer.*/
471 void
do_all_continuations(void)472 do_all_continuations (void)
473 {
474 struct continuation *continuation_ptr;
475 struct continuation *saved_continuation;
476
477 /* Copy the list header into another pointer, and set the global
478 list header to null, so that the global list can change as a side
479 effect of invoking the continuations and the processing of
480 the preexisting continuations will not be affected. */
481 continuation_ptr = cmd_continuation;
482 cmd_continuation = NULL;
483
484 /* Work now on the list we have set aside. */
485 while (continuation_ptr)
486 {
487 (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
488 saved_continuation = continuation_ptr;
489 continuation_ptr = continuation_ptr->next;
490 xfree (saved_continuation);
491 }
492 }
493
494 /* Walk down the cmd_continuation list, and get rid of all the
495 continuations. */
496 void
discard_all_continuations(void)497 discard_all_continuations (void)
498 {
499 struct continuation *continuation_ptr;
500
501 while (cmd_continuation)
502 {
503 continuation_ptr = cmd_continuation;
504 cmd_continuation = continuation_ptr->next;
505 xfree (continuation_ptr);
506 }
507 }
508
509 /* Add a continuation to the continuation list, the global list
510 intermediate_continuation. The new continuation will be added at the front.*/
511 void
add_intermediate_continuation(void (* continuation_hook)(struct continuation_arg *),struct continuation_arg * arg_list)512 add_intermediate_continuation (void (*continuation_hook)
513 (struct continuation_arg *),
514 struct continuation_arg *arg_list)
515 {
516 struct continuation *continuation_ptr;
517
518 continuation_ptr =
519 (struct continuation *) xmalloc (sizeof (struct continuation));
520 continuation_ptr->continuation_hook = continuation_hook;
521 continuation_ptr->arg_list = arg_list;
522 continuation_ptr->next = intermediate_continuation;
523 intermediate_continuation = continuation_ptr;
524 }
525
526 /* Walk down the cmd_continuation list, and execute all the
527 continuations. There is a problem though. In some cases new
528 continuations may be added while we are in the middle of this
529 loop. If this happens they will be added in the front, and done
530 before we have a chance of exhausting those that were already
531 there. We need to then save the beginning of the list in a pointer
532 and do the continuations from there on, instead of using the
533 global beginning of list as our iteration pointer.*/
534 void
do_all_intermediate_continuations(void)535 do_all_intermediate_continuations (void)
536 {
537 struct continuation *continuation_ptr;
538 struct continuation *saved_continuation;
539
540 /* Copy the list header into another pointer, and set the global
541 list header to null, so that the global list can change as a side
542 effect of invoking the continuations and the processing of
543 the preexisting continuations will not be affected. */
544 continuation_ptr = intermediate_continuation;
545 intermediate_continuation = NULL;
546
547 /* Work now on the list we have set aside. */
548 while (continuation_ptr)
549 {
550 (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
551 saved_continuation = continuation_ptr;
552 continuation_ptr = continuation_ptr->next;
553 xfree (saved_continuation);
554 }
555 }
556
557 /* Walk down the cmd_continuation list, and get rid of all the
558 continuations. */
559 void
discard_all_intermediate_continuations(void)560 discard_all_intermediate_continuations (void)
561 {
562 struct continuation *continuation_ptr;
563
564 while (intermediate_continuation)
565 {
566 continuation_ptr = intermediate_continuation;
567 intermediate_continuation = continuation_ptr->next;
568 xfree (continuation_ptr);
569 }
570 }
571
572
573
574 /* Print a warning message. The first argument STRING is the warning
575 message, used as an fprintf format string, the second is the
576 va_list of arguments for that string. A warning is unfiltered (not
577 paginated) so that the user does not need to page through each
578 screen full of warnings when there are lots of them. */
579
580 void
vwarning(const char * string,va_list args)581 vwarning (const char *string, va_list args)
582 {
583 if (deprecated_warning_hook)
584 (*deprecated_warning_hook) (string, args);
585 else
586 {
587 target_terminal_ours ();
588 wrap_here (""); /* Force out any buffered output */
589 gdb_flush (gdb_stdout);
590 if (warning_pre_print)
591 fputs_unfiltered (warning_pre_print, gdb_stderr);
592 vfprintf_unfiltered (gdb_stderr, string, args);
593 fprintf_unfiltered (gdb_stderr, "\n");
594 va_end (args);
595 }
596 }
597
598 /* Print a warning message.
599 The first argument STRING is the warning message, used as a fprintf string,
600 and the remaining args are passed as arguments to it.
601 The primary difference between warnings and errors is that a warning
602 does not force the return to command level. */
603
604 void
warning(const char * string,...)605 warning (const char *string, ...)
606 {
607 va_list args;
608 va_start (args, string);
609 vwarning (string, args);
610 va_end (args);
611 }
612
613 /* Print an error message and return to command level.
614 The first argument STRING is the error message, used as a fprintf string,
615 and the remaining args are passed as arguments to it. */
616
617 NORETURN void
verror(const char * string,va_list args)618 verror (const char *string, va_list args)
619 {
620 struct ui_file *tmp_stream = mem_fileopen ();
621 make_cleanup_ui_file_delete (tmp_stream);
622 vfprintf_unfiltered (tmp_stream, string, args);
623 error_stream (tmp_stream);
624 }
625
626 NORETURN void
error(const char * string,...)627 error (const char *string, ...)
628 {
629 va_list args;
630 va_start (args, string);
631 verror (string, args);
632 va_end (args);
633 }
634
635 static void
do_write(void * data,const char * buffer,long length_buffer)636 do_write (void *data, const char *buffer, long length_buffer)
637 {
638 ui_file_write (data, buffer, length_buffer);
639 }
640
641 /* Cause a silent error to occur. Any error message is recorded
642 though it is not issued. */
643 NORETURN void
error_silent(const char * string,...)644 error_silent (const char *string, ...)
645 {
646 va_list args;
647 struct ui_file *tmp_stream = mem_fileopen ();
648 va_start (args, string);
649 make_cleanup_ui_file_delete (tmp_stream);
650 vfprintf_unfiltered (tmp_stream, string, args);
651 /* Copy the stream into the GDB_LASTERR buffer. */
652 ui_file_rewind (gdb_lasterr);
653 ui_file_put (tmp_stream, do_write, gdb_lasterr);
654 va_end (args);
655
656 throw_exception (RETURN_ERROR);
657 }
658
659 /* Output an error message including any pre-print text to gdb_stderr. */
660 void
error_output_message(char * pre_print,char * msg)661 error_output_message (char *pre_print, char *msg)
662 {
663 target_terminal_ours ();
664 wrap_here (""); /* Force out any buffered output */
665 gdb_flush (gdb_stdout);
666 annotate_error_begin ();
667 if (pre_print)
668 fputs_filtered (pre_print, gdb_stderr);
669 fputs_filtered (msg, gdb_stderr);
670 fprintf_filtered (gdb_stderr, "\n");
671 }
672
673 NORETURN void
error_stream(struct ui_file * stream)674 error_stream (struct ui_file *stream)
675 {
676 if (deprecated_error_begin_hook)
677 deprecated_error_begin_hook ();
678
679 /* Copy the stream into the GDB_LASTERR buffer. */
680 ui_file_rewind (gdb_lasterr);
681 ui_file_put (stream, do_write, gdb_lasterr);
682
683 /* Write the message plus any error_pre_print to gdb_stderr. */
684 target_terminal_ours ();
685 wrap_here (""); /* Force out any buffered output */
686 gdb_flush (gdb_stdout);
687 annotate_error_begin ();
688 if (error_pre_print)
689 fputs_filtered (error_pre_print, gdb_stderr);
690 ui_file_put (stream, do_write, gdb_stderr);
691 fprintf_filtered (gdb_stderr, "\n");
692
693 throw_exception (RETURN_ERROR);
694 }
695
696 /* Get the last error message issued by gdb */
697
698 char *
error_last_message(void)699 error_last_message (void)
700 {
701 long len;
702 return ui_file_xstrdup (gdb_lasterr, &len);
703 }
704
705 /* This is to be called by main() at the very beginning */
706
707 void
error_init(void)708 error_init (void)
709 {
710 gdb_lasterr = mem_fileopen ();
711 }
712
713 /* Print a message reporting an internal error/warning. Ask the user
714 if they want to continue, dump core, or just exit. Return
715 something to indicate a quit. */
716
717 struct internal_problem
718 {
719 const char *name;
720 /* FIXME: cagney/2002-08-15: There should be ``maint set/show''
721 commands available for controlling these variables. */
722 enum auto_boolean should_quit;
723 enum auto_boolean should_dump_core;
724 };
725
726 /* Report a problem, internal to GDB, to the user. Once the problem
727 has been reported, and assuming GDB didn't quit, the caller can
728 either allow execution to resume or throw an error. */
729
730 static void
internal_vproblem(struct internal_problem * problem,const char * file,int line,const char * fmt,va_list ap)731 internal_vproblem (struct internal_problem *problem,
732 const char *file, int line, const char *fmt, va_list ap)
733 {
734 static int dejavu;
735 int quit_p;
736 int dump_core_p;
737 char *reason;
738
739 /* Don't allow infinite error/warning recursion. */
740 {
741 static char msg[] = "Recursive internal problem.\n";
742 switch (dejavu)
743 {
744 case 0:
745 dejavu = 1;
746 break;
747 case 1:
748 dejavu = 2;
749 fputs_unfiltered (msg, gdb_stderr);
750 abort (); /* NOTE: GDB has only three calls to abort(). */
751 default:
752 dejavu = 3;
753 write (STDERR_FILENO, msg, sizeof (msg));
754 exit (1);
755 }
756 }
757
758 /* Try to get the message out and at the start of a new line. */
759 target_terminal_ours ();
760 begin_line ();
761
762 /* Create a string containing the full error/warning message. Need
763 to call query with this full string, as otherwize the reason
764 (error/warning) and question become separated. Format using a
765 style similar to a compiler error message. Include extra detail
766 so that the user knows that they are living on the edge. */
767 {
768 char *msg;
769 msg = xstrvprintf (fmt, ap);
770 reason = xstrprintf ("\
771 %s:%d: %s: %s\n\
772 A problem internal to GDB has been detected,\n\
773 further debugging may prove unreliable.", file, line, problem->name, msg);
774 xfree (msg);
775 make_cleanup (xfree, reason);
776 }
777
778 switch (problem->should_quit)
779 {
780 case AUTO_BOOLEAN_AUTO:
781 /* Default (yes/batch case) is to quit GDB. When in batch mode
782 this lessens the likelhood of GDB going into an infinate
783 loop. */
784 quit_p = query ("%s\nQuit this debugging session? ", reason);
785 break;
786 case AUTO_BOOLEAN_TRUE:
787 quit_p = 1;
788 break;
789 case AUTO_BOOLEAN_FALSE:
790 quit_p = 0;
791 break;
792 default:
793 internal_error (__FILE__, __LINE__, "bad switch");
794 }
795
796 switch (problem->should_dump_core)
797 {
798 case AUTO_BOOLEAN_AUTO:
799 /* Default (yes/batch case) is to dump core. This leaves a GDB
800 `dropping' so that it is easier to see that something went
801 wrong in GDB. */
802 dump_core_p = query ("%s\nCreate a core file of GDB? ", reason);
803 break;
804 break;
805 case AUTO_BOOLEAN_TRUE:
806 dump_core_p = 1;
807 break;
808 case AUTO_BOOLEAN_FALSE:
809 dump_core_p = 0;
810 break;
811 default:
812 internal_error (__FILE__, __LINE__, "bad switch");
813 }
814
815 if (quit_p)
816 {
817 if (dump_core_p)
818 abort (); /* NOTE: GDB has only three calls to abort(). */
819 else
820 exit (1);
821 }
822 else
823 {
824 if (dump_core_p)
825 {
826 if (fork () == 0)
827 abort (); /* NOTE: GDB has only three calls to abort(). */
828 }
829 }
830
831 dejavu = 0;
832 }
833
834 static struct internal_problem internal_error_problem = {
835 "internal-error", AUTO_BOOLEAN_AUTO, AUTO_BOOLEAN_AUTO
836 };
837
838 NORETURN void
internal_verror(const char * file,int line,const char * fmt,va_list ap)839 internal_verror (const char *file, int line, const char *fmt, va_list ap)
840 {
841 internal_vproblem (&internal_error_problem, file, line, fmt, ap);
842 throw_exception (RETURN_ERROR);
843 }
844
845 NORETURN void
internal_error(const char * file,int line,const char * string,...)846 internal_error (const char *file, int line, const char *string, ...)
847 {
848 va_list ap;
849 va_start (ap, string);
850 internal_verror (file, line, string, ap);
851 va_end (ap);
852 }
853
854 static struct internal_problem internal_warning_problem = {
855 "internal-warning", AUTO_BOOLEAN_AUTO, AUTO_BOOLEAN_AUTO
856 };
857
858 void
internal_vwarning(const char * file,int line,const char * fmt,va_list ap)859 internal_vwarning (const char *file, int line, const char *fmt, va_list ap)
860 {
861 internal_vproblem (&internal_warning_problem, file, line, fmt, ap);
862 }
863
864 void
internal_warning(const char * file,int line,const char * string,...)865 internal_warning (const char *file, int line, const char *string, ...)
866 {
867 va_list ap;
868 va_start (ap, string);
869 internal_vwarning (file, line, string, ap);
870 va_end (ap);
871 }
872
873 /* The strerror() function can return NULL for errno values that are
874 out of range. Provide a "safe" version that always returns a
875 printable string. */
876
877 char *
safe_strerror(int errnum)878 safe_strerror (int errnum)
879 {
880 char *msg;
881 static char buf[32];
882
883 msg = strerror (errnum);
884 if (msg == NULL)
885 {
886 sprintf (buf, "(undocumented errno %d)", errnum);
887 msg = buf;
888 }
889 return (msg);
890 }
891
892 /* Print the system error message for errno, and also mention STRING
893 as the file name for which the error was encountered.
894 Then return to command level. */
895
896 NORETURN void
perror_with_name(const char * string)897 perror_with_name (const char *string)
898 {
899 char *err;
900 char *combined;
901
902 err = safe_strerror (errno);
903 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
904 strcpy (combined, string);
905 strcat (combined, ": ");
906 strcat (combined, err);
907
908 /* I understand setting these is a matter of taste. Still, some people
909 may clear errno but not know about bfd_error. Doing this here is not
910 unreasonable. */
911 bfd_set_error (bfd_error_no_error);
912 errno = 0;
913
914 error ("%s.", combined);
915 }
916
917 /* Print the system error message for ERRCODE, and also mention STRING
918 as the file name for which the error was encountered. */
919
920 void
print_sys_errmsg(const char * string,int errcode)921 print_sys_errmsg (const char *string, int errcode)
922 {
923 char *err;
924 char *combined;
925
926 err = safe_strerror (errcode);
927 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
928 strcpy (combined, string);
929 strcat (combined, ": ");
930 strcat (combined, err);
931
932 /* We want anything which was printed on stdout to come out first, before
933 this message. */
934 gdb_flush (gdb_stdout);
935 fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
936 }
937
938 /* Control C eventually causes this to be called, at a convenient time. */
939
940 void
quit(void)941 quit (void)
942 {
943 struct serial *gdb_stdout_serial = serial_fdopen (1);
944
945 target_terminal_ours ();
946
947 /* We want all output to appear now, before we print "Quit". We
948 have 3 levels of buffering we have to flush (it's possible that
949 some of these should be changed to flush the lower-level ones
950 too): */
951
952 /* 1. The _filtered buffer. */
953 wrap_here ((char *) 0);
954
955 /* 2. The stdio buffer. */
956 gdb_flush (gdb_stdout);
957 gdb_flush (gdb_stderr);
958
959 /* 3. The system-level buffer. */
960 serial_drain_output (gdb_stdout_serial);
961 serial_un_fdopen (gdb_stdout_serial);
962
963 annotate_error_begin ();
964
965 /* Don't use *_filtered; we don't want to prompt the user to continue. */
966 if (quit_pre_print)
967 fputs_unfiltered (quit_pre_print, gdb_stderr);
968
969 #ifdef __MSDOS__
970 /* No steenking SIGINT will ever be coming our way when the
971 program is resumed. Don't lie. */
972 fprintf_unfiltered (gdb_stderr, "Quit\n");
973 #else
974 if (job_control
975 /* If there is no terminal switching for this target, then we can't
976 possibly get screwed by the lack of job control. */
977 || current_target.to_terminal_ours == NULL)
978 fprintf_unfiltered (gdb_stderr, "Quit\n");
979 else
980 fprintf_unfiltered (gdb_stderr,
981 "Quit (expect signal SIGINT when the program is resumed)\n");
982 #endif
983 throw_exception (RETURN_QUIT);
984 }
985
986 /* Control C comes here */
987 void
request_quit(int signo)988 request_quit (int signo)
989 {
990 quit_flag = 1;
991 /* Restore the signal handler. Harmless with BSD-style signals,
992 needed for System V-style signals. */
993 signal (signo, request_quit);
994
995 if (immediate_quit)
996 quit ();
997 }
998
999 /* Called when a memory allocation fails, with the number of bytes of
1000 memory requested in SIZE. */
1001
1002 NORETURN void
nomem(long size)1003 nomem (long size)
1004 {
1005 if (size > 0)
1006 {
1007 internal_error (__FILE__, __LINE__,
1008 "virtual memory exhausted: can't allocate %ld bytes.",
1009 size);
1010 }
1011 else
1012 {
1013 internal_error (__FILE__, __LINE__, "virtual memory exhausted.");
1014 }
1015 }
1016
1017 /* The xmalloc() (libiberty.h) family of memory management routines.
1018
1019 These are like the ISO-C malloc() family except that they implement
1020 consistent semantics and guard against typical memory management
1021 problems. */
1022
1023 /* NOTE: These are declared using PTR to ensure consistency with
1024 "libiberty.h". xfree() is GDB local. */
1025
1026 PTR /* OK: PTR */
xmalloc(size_t size)1027 xmalloc (size_t size)
1028 {
1029 void *val;
1030
1031 /* See libiberty/xmalloc.c. This function need's to match that's
1032 semantics. It never returns NULL. */
1033 if (size == 0)
1034 size = 1;
1035
1036 val = malloc (size); /* OK: malloc */
1037 if (val == NULL)
1038 nomem (size);
1039
1040 return (val);
1041 }
1042
1043 PTR /* OK: PTR */
xrealloc(PTR ptr,size_t size)1044 xrealloc (PTR ptr, size_t size) /* OK: PTR */
1045 {
1046 void *val;
1047
1048 /* See libiberty/xmalloc.c. This function need's to match that's
1049 semantics. It never returns NULL. */
1050 if (size == 0)
1051 size = 1;
1052
1053 if (ptr != NULL)
1054 val = realloc (ptr, size); /* OK: realloc */
1055 else
1056 val = malloc (size); /* OK: malloc */
1057 if (val == NULL)
1058 nomem (size);
1059
1060 return (val);
1061 }
1062
1063 PTR /* OK: PTR */
xcalloc(size_t number,size_t size)1064 xcalloc (size_t number, size_t size)
1065 {
1066 void *mem;
1067
1068 /* See libiberty/xmalloc.c. This function need's to match that's
1069 semantics. It never returns NULL. */
1070 if (number == 0 || size == 0)
1071 {
1072 number = 1;
1073 size = 1;
1074 }
1075
1076 mem = calloc (number, size); /* OK: xcalloc */
1077 if (mem == NULL)
1078 nomem (number * size);
1079
1080 return mem;
1081 }
1082
1083 void
xfree(void * ptr)1084 xfree (void *ptr)
1085 {
1086 if (ptr != NULL)
1087 free (ptr); /* OK: free */
1088 }
1089
1090
1091 /* Like asprintf/vasprintf but get an internal_error if the call
1092 fails. */
1093
1094 char *
xstrprintf(const char * format,...)1095 xstrprintf (const char *format, ...)
1096 {
1097 char *ret;
1098 va_list args;
1099 va_start (args, format);
1100 ret = xstrvprintf (format, args);
1101 va_end (args);
1102 return ret;
1103 }
1104
1105 void
xasprintf(char ** ret,const char * format,...)1106 xasprintf (char **ret, const char *format, ...)
1107 {
1108 va_list args;
1109 va_start (args, format);
1110 (*ret) = xstrvprintf (format, args);
1111 va_end (args);
1112 }
1113
1114 void
xvasprintf(char ** ret,const char * format,va_list ap)1115 xvasprintf (char **ret, const char *format, va_list ap)
1116 {
1117 (*ret) = xstrvprintf (format, ap);
1118 }
1119
1120 char *
xstrvprintf(const char * format,va_list ap)1121 xstrvprintf (const char *format, va_list ap)
1122 {
1123 char *ret = NULL;
1124 int status = vasprintf (&ret, format, ap);
1125 /* NULL is returned when there was a memory allocation problem. */
1126 if (ret == NULL)
1127 nomem (0);
1128 /* A negative status (the printed length) with a non-NULL buffer
1129 should never happen, but just to be sure. */
1130 if (status < 0)
1131 internal_error (__FILE__, __LINE__,
1132 "vasprintf call failed (errno %d)", errno);
1133 return ret;
1134 }
1135
1136 int
xsnprintf(char * str,size_t size,const char * format,...)1137 xsnprintf (char *str, size_t size, const char *format, ...)
1138 {
1139 va_list args;
1140 int ret;
1141
1142 va_start (args, format);
1143 ret = vsnprintf (str, size, format, args);
1144 gdb_assert (ret < size);
1145 va_end (args);
1146
1147 return ret;
1148 }
1149
1150 /* My replacement for the read system call.
1151 Used like `read' but keeps going if `read' returns too soon. */
1152
1153 int
myread(int desc,char * addr,int len)1154 myread (int desc, char *addr, int len)
1155 {
1156 int val;
1157 int orglen = len;
1158
1159 while (len > 0)
1160 {
1161 val = read (desc, addr, len);
1162 if (val < 0)
1163 return val;
1164 if (val == 0)
1165 return orglen - len;
1166 len -= val;
1167 addr += val;
1168 }
1169 return orglen;
1170 }
1171
1172 /* Make a copy of the string at PTR with SIZE characters
1173 (and add a null character at the end in the copy).
1174 Uses malloc to get the space. Returns the address of the copy. */
1175
1176 char *
savestring(const char * ptr,size_t size)1177 savestring (const char *ptr, size_t size)
1178 {
1179 char *p = (char *) xmalloc (size + 1);
1180 memcpy (p, ptr, size);
1181 p[size] = 0;
1182 return p;
1183 }
1184
1185 void
print_spaces(int n,struct ui_file * file)1186 print_spaces (int n, struct ui_file *file)
1187 {
1188 fputs_unfiltered (n_spaces (n), file);
1189 }
1190
1191 /* Print a host address. */
1192
1193 void
gdb_print_host_address(const void * addr,struct ui_file * stream)1194 gdb_print_host_address (const void *addr, struct ui_file *stream)
1195 {
1196
1197 /* We could use the %p conversion specifier to fprintf if we had any
1198 way of knowing whether this host supports it. But the following
1199 should work on the Alpha and on 32 bit machines. */
1200
1201 fprintf_filtered (stream, "0x%lx", (unsigned long) addr);
1202 }
1203
1204 /* Ask user a y-or-n question and return 1 iff answer is yes.
1205 Takes three args which are given to printf to print the question.
1206 The first, a control string, should end in "? ".
1207 It should not say how to answer, because we do that. */
1208
1209 /* VARARGS */
1210 int
query(const char * ctlstr,...)1211 query (const char *ctlstr, ...)
1212 {
1213 va_list args;
1214 int answer;
1215 int ans2;
1216 int retval;
1217
1218 if (deprecated_query_hook)
1219 {
1220 va_start (args, ctlstr);
1221 return deprecated_query_hook (ctlstr, args);
1222 }
1223
1224 /* Automatically answer "yes" if input is not from a terminal. */
1225 if (!input_from_terminal_p ())
1226 return 1;
1227
1228 while (1)
1229 {
1230 wrap_here (""); /* Flush any buffered output */
1231 gdb_flush (gdb_stdout);
1232
1233 if (annotation_level > 1)
1234 printf_filtered ("\n\032\032pre-query\n");
1235
1236 va_start (args, ctlstr);
1237 vfprintf_filtered (gdb_stdout, ctlstr, args);
1238 va_end (args);
1239 printf_filtered ("(y or n) ");
1240
1241 if (annotation_level > 1)
1242 printf_filtered ("\n\032\032query\n");
1243
1244 wrap_here ("");
1245 gdb_flush (gdb_stdout);
1246
1247 answer = fgetc (stdin);
1248 clearerr (stdin); /* in case of C-d */
1249 if (answer == EOF) /* C-d */
1250 {
1251 retval = 1;
1252 break;
1253 }
1254 /* Eat rest of input line, to EOF or newline */
1255 if (answer != '\n')
1256 do
1257 {
1258 ans2 = fgetc (stdin);
1259 clearerr (stdin);
1260 }
1261 while (ans2 != EOF && ans2 != '\n' && ans2 != '\r');
1262
1263 if (answer >= 'a')
1264 answer -= 040;
1265 if (answer == 'Y')
1266 {
1267 retval = 1;
1268 break;
1269 }
1270 if (answer == 'N')
1271 {
1272 retval = 0;
1273 break;
1274 }
1275 printf_filtered ("Please answer y or n.\n");
1276 }
1277
1278 if (annotation_level > 1)
1279 printf_filtered ("\n\032\032post-query\n");
1280 return retval;
1281 }
1282
1283
1284 /* This function supports the nquery() and yquery() functions.
1285 Ask user a y-or-n question and return 0 if answer is no, 1 if
1286 answer is yes, or default the answer to the specified default.
1287 DEFCHAR is either 'y' or 'n' and refers to the default answer.
1288 CTLSTR is the control string and should end in "? ". It should
1289 not say how to answer, because we do that.
1290 ARGS are the arguments passed along with the CTLSTR argument to
1291 printf. */
1292
1293 static int
defaulted_query(const char * ctlstr,const char defchar,va_list args)1294 defaulted_query (const char *ctlstr, const char defchar, va_list args)
1295 {
1296 int answer;
1297 int ans2;
1298 int retval;
1299 int def_value;
1300 char def_answer, not_def_answer;
1301 char *y_string, *n_string;
1302
1303 /* Set up according to which answer is the default. */
1304 if (defchar == 'y')
1305 {
1306 def_value = 1;
1307 def_answer = 'Y';
1308 not_def_answer = 'N';
1309 y_string = "[y]";
1310 n_string = "n";
1311 }
1312 else
1313 {
1314 def_value = 0;
1315 def_answer = 'N';
1316 not_def_answer = 'Y';
1317 y_string = "y";
1318 n_string = "[n]";
1319 }
1320
1321 if (deprecated_query_hook)
1322 {
1323 return deprecated_query_hook (ctlstr, args);
1324 }
1325
1326 /* Automatically answer default value if input is not from a terminal. */
1327 if (!input_from_terminal_p ())
1328 return def_value;
1329
1330 while (1)
1331 {
1332 wrap_here (""); /* Flush any buffered output */
1333 gdb_flush (gdb_stdout);
1334
1335 if (annotation_level > 1)
1336 printf_filtered ("\n\032\032pre-query\n");
1337
1338 vfprintf_filtered (gdb_stdout, ctlstr, args);
1339 printf_filtered ("(%s or %s) ", y_string, n_string);
1340
1341 if (annotation_level > 1)
1342 printf_filtered ("\n\032\032query\n");
1343
1344 wrap_here ("");
1345 gdb_flush (gdb_stdout);
1346
1347 answer = fgetc (stdin);
1348 clearerr (stdin); /* in case of C-d */
1349 if (answer == EOF) /* C-d */
1350 {
1351 retval = def_value;
1352 break;
1353 }
1354 /* Eat rest of input line, to EOF or newline */
1355 if (answer != '\n')
1356 do
1357 {
1358 ans2 = fgetc (stdin);
1359 clearerr (stdin);
1360 }
1361 while (ans2 != EOF && ans2 != '\n' && ans2 != '\r');
1362
1363 if (answer >= 'a')
1364 answer -= 040;
1365 /* Check answer. For the non-default, the user must specify
1366 the non-default explicitly. */
1367 if (answer == not_def_answer)
1368 {
1369 retval = !def_value;
1370 break;
1371 }
1372 /* Otherwise, for the default, the user may either specify
1373 the required input or have it default by entering nothing. */
1374 if (answer == def_answer || answer == '\n' ||
1375 answer == '\r' || answer == EOF)
1376 {
1377 retval = def_value;
1378 break;
1379 }
1380 /* Invalid entries are not defaulted and require another selection. */
1381 printf_filtered ("Please answer %s or %s.\n",
1382 y_string, n_string);
1383 }
1384
1385 if (annotation_level > 1)
1386 printf_filtered ("\n\032\032post-query\n");
1387 return retval;
1388 }
1389
1390
1391 /* Ask user a y-or-n question and return 0 if answer is no, 1 if
1392 answer is yes, or 0 if answer is defaulted.
1393 Takes three args which are given to printf to print the question.
1394 The first, a control string, should end in "? ".
1395 It should not say how to answer, because we do that. */
1396
1397 int
nquery(const char * ctlstr,...)1398 nquery (const char *ctlstr, ...)
1399 {
1400 va_list args;
1401
1402 va_start (args, ctlstr);
1403 return defaulted_query (ctlstr, 'n', args);
1404 va_end (args);
1405 }
1406
1407 /* Ask user a y-or-n question and return 0 if answer is no, 1 if
1408 answer is yes, or 1 if answer is defaulted.
1409 Takes three args which are given to printf to print the question.
1410 The first, a control string, should end in "? ".
1411 It should not say how to answer, because we do that. */
1412
1413 int
yquery(const char * ctlstr,...)1414 yquery (const char *ctlstr, ...)
1415 {
1416 va_list args;
1417
1418 va_start (args, ctlstr);
1419 return defaulted_query (ctlstr, 'y', args);
1420 va_end (args);
1421 }
1422
1423 /* Print an error message saying that we couldn't make sense of a
1424 \^mumble sequence in a string or character constant. START and END
1425 indicate a substring of some larger string that contains the
1426 erroneous backslash sequence, missing the initial backslash. */
1427 static NORETURN int
no_control_char_error(const char * start,const char * end)1428 no_control_char_error (const char *start, const char *end)
1429 {
1430 int len = end - start;
1431 char *copy = alloca (end - start + 1);
1432
1433 memcpy (copy, start, len);
1434 copy[len] = '\0';
1435
1436 error ("There is no control character `\\%s' in the `%s' character set.",
1437 copy, target_charset ());
1438 }
1439
1440 /* Parse a C escape sequence. STRING_PTR points to a variable
1441 containing a pointer to the string to parse. That pointer
1442 should point to the character after the \. That pointer
1443 is updated past the characters we use. The value of the
1444 escape sequence is returned.
1445
1446 A negative value means the sequence \ newline was seen,
1447 which is supposed to be equivalent to nothing at all.
1448
1449 If \ is followed by a null character, we return a negative
1450 value and leave the string pointer pointing at the null character.
1451
1452 If \ is followed by 000, we return 0 and leave the string pointer
1453 after the zeros. A value of 0 does not mean end of string. */
1454
1455 int
parse_escape(char ** string_ptr)1456 parse_escape (char **string_ptr)
1457 {
1458 int target_char;
1459 int c = *(*string_ptr)++;
1460 if (c_parse_backslash (c, &target_char))
1461 return target_char;
1462 else
1463 switch (c)
1464 {
1465 case '\n':
1466 return -2;
1467 case 0:
1468 (*string_ptr)--;
1469 return 0;
1470 case '^':
1471 {
1472 /* Remember where this escape sequence started, for reporting
1473 errors. */
1474 char *sequence_start_pos = *string_ptr - 1;
1475
1476 c = *(*string_ptr)++;
1477
1478 if (c == '?')
1479 {
1480 /* XXXCHARSET: What is `delete' in the host character set? */
1481 c = 0177;
1482
1483 if (!host_char_to_target (c, &target_char))
1484 error ("There is no character corresponding to `Delete' "
1485 "in the target character set `%s'.", host_charset ());
1486
1487 return target_char;
1488 }
1489 else if (c == '\\')
1490 target_char = parse_escape (string_ptr);
1491 else
1492 {
1493 if (!host_char_to_target (c, &target_char))
1494 no_control_char_error (sequence_start_pos, *string_ptr);
1495 }
1496
1497 /* Now target_char is something like `c', and we want to find
1498 its control-character equivalent. */
1499 if (!target_char_to_control_char (target_char, &target_char))
1500 no_control_char_error (sequence_start_pos, *string_ptr);
1501
1502 return target_char;
1503 }
1504
1505 /* XXXCHARSET: we need to use isdigit and value-of-digit
1506 methods of the host character set here. */
1507
1508 case '0':
1509 case '1':
1510 case '2':
1511 case '3':
1512 case '4':
1513 case '5':
1514 case '6':
1515 case '7':
1516 {
1517 int i = c - '0';
1518 int count = 0;
1519 while (++count < 3)
1520 {
1521 c = (**string_ptr);
1522 if (c >= '0' && c <= '7')
1523 {
1524 (*string_ptr)++;
1525 i *= 8;
1526 i += c - '0';
1527 }
1528 else
1529 {
1530 break;
1531 }
1532 }
1533 return i;
1534 }
1535 default:
1536 if (!host_char_to_target (c, &target_char))
1537 error
1538 ("The escape sequence `\%c' is equivalent to plain `%c', which"
1539 " has no equivalent\n" "in the `%s' character set.", c, c,
1540 target_charset ());
1541 return target_char;
1542 }
1543 }
1544
1545 /* Print the character C on STREAM as part of the contents of a literal
1546 string whose delimiter is QUOTER. Note that this routine should only
1547 be call for printing things which are independent of the language
1548 of the program being debugged. */
1549
1550 static void
printchar(int c,void (* do_fputs)(const char *,struct ui_file *),void (* do_fprintf)(struct ui_file *,const char *,...),struct ui_file * stream,int quoter)1551 printchar (int c, void (*do_fputs) (const char *, struct ui_file *),
1552 void (*do_fprintf) (struct ui_file *, const char *, ...),
1553 struct ui_file *stream, int quoter)
1554 {
1555
1556 c &= 0xFF; /* Avoid sign bit follies */
1557
1558 if (c < 0x20 || /* Low control chars */
1559 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
1560 (sevenbit_strings && c >= 0x80))
1561 { /* high order bit set */
1562 switch (c)
1563 {
1564 case '\n':
1565 do_fputs ("\\n", stream);
1566 break;
1567 case '\b':
1568 do_fputs ("\\b", stream);
1569 break;
1570 case '\t':
1571 do_fputs ("\\t", stream);
1572 break;
1573 case '\f':
1574 do_fputs ("\\f", stream);
1575 break;
1576 case '\r':
1577 do_fputs ("\\r", stream);
1578 break;
1579 case '\033':
1580 do_fputs ("\\e", stream);
1581 break;
1582 case '\007':
1583 do_fputs ("\\a", stream);
1584 break;
1585 default:
1586 do_fprintf (stream, "\\%.3o", (unsigned int) c);
1587 break;
1588 }
1589 }
1590 else
1591 {
1592 if (c == '\\' || c == quoter)
1593 do_fputs ("\\", stream);
1594 do_fprintf (stream, "%c", c);
1595 }
1596 }
1597
1598 /* Print the character C on STREAM as part of the contents of a
1599 literal string whose delimiter is QUOTER. Note that these routines
1600 should only be call for printing things which are independent of
1601 the language of the program being debugged. */
1602
1603 void
fputstr_filtered(const char * str,int quoter,struct ui_file * stream)1604 fputstr_filtered (const char *str, int quoter, struct ui_file *stream)
1605 {
1606 while (*str)
1607 printchar (*str++, fputs_filtered, fprintf_filtered, stream, quoter);
1608 }
1609
1610 void
fputstr_unfiltered(const char * str,int quoter,struct ui_file * stream)1611 fputstr_unfiltered (const char *str, int quoter, struct ui_file *stream)
1612 {
1613 while (*str)
1614 printchar (*str++, fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1615 }
1616
1617 void
fputstrn_unfiltered(const char * str,int n,int quoter,struct ui_file * stream)1618 fputstrn_unfiltered (const char *str, int n, int quoter,
1619 struct ui_file *stream)
1620 {
1621 int i;
1622 for (i = 0; i < n; i++)
1623 printchar (str[i], fputs_unfiltered, fprintf_unfiltered, stream, quoter);
1624 }
1625
1626
1627 /* Number of lines per page or UINT_MAX if paging is disabled. */
1628 static unsigned int lines_per_page;
1629
1630 /* Number of chars per line or UINT_MAX if line folding is disabled. */
1631 static unsigned int chars_per_line;
1632
1633 /* Current count of lines printed on this page, chars on this line. */
1634 static unsigned int lines_printed, chars_printed;
1635
1636 /* Buffer and start column of buffered text, for doing smarter word-
1637 wrapping. When someone calls wrap_here(), we start buffering output
1638 that comes through fputs_filtered(). If we see a newline, we just
1639 spit it out and forget about the wrap_here(). If we see another
1640 wrap_here(), we spit it out and remember the newer one. If we see
1641 the end of the line, we spit out a newline, the indent, and then
1642 the buffered output. */
1643
1644 /* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which
1645 are waiting to be output (they have already been counted in chars_printed).
1646 When wrap_buffer[0] is null, the buffer is empty. */
1647 static char *wrap_buffer;
1648
1649 /* Pointer in wrap_buffer to the next character to fill. */
1650 static char *wrap_pointer;
1651
1652 /* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1653 is non-zero. */
1654 static char *wrap_indent;
1655
1656 /* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1657 is not in effect. */
1658 static int wrap_column;
1659
1660
1661 /* Inialize the number of lines per page and chars per line. */
1662
1663 void
init_page_info(void)1664 init_page_info (void)
1665 {
1666 #if defined(TUI)
1667 if (!tui_get_command_dimension (&chars_per_line, &lines_per_page))
1668 #endif
1669 {
1670 int rows, cols;
1671
1672 #if defined(__GO32__)
1673 rows = ScreenRows ();
1674 cols = ScreenCols ();
1675 lines_per_page = rows;
1676 chars_per_line = cols;
1677 #else
1678 /* Make sure Readline has initialized its terminal settings. */
1679 rl_reset_terminal (NULL);
1680
1681 /* Get the screen size from Readline. */
1682 rl_get_screen_size (&rows, &cols);
1683 lines_per_page = rows;
1684 chars_per_line = cols;
1685
1686 /* Readline should have fetched the termcap entry for us. */
1687 if (tgetnum ("li") < 0 || getenv ("EMACS"))
1688 {
1689 /* The number of lines per page is not mentioned in the
1690 terminal description. This probably means that paging is
1691 not useful (e.g. emacs shell window), so disable paging. */
1692 lines_per_page = UINT_MAX;
1693 }
1694
1695 /* FIXME: Get rid of this junk. */
1696 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1697 SIGWINCH_HANDLER (SIGWINCH);
1698 #endif
1699
1700 /* If the output is not a terminal, don't paginate it. */
1701 if (!ui_file_isatty (gdb_stdout))
1702 lines_per_page = UINT_MAX;
1703 #endif
1704 }
1705
1706 set_screen_size ();
1707 set_width ();
1708 }
1709
1710 /* Set the screen size based on LINES_PER_PAGE and CHARS_PER_LINE. */
1711
1712 static void
set_screen_size(void)1713 set_screen_size (void)
1714 {
1715 int rows = lines_per_page;
1716 int cols = chars_per_line;
1717
1718 if (rows <= 0)
1719 rows = INT_MAX;
1720
1721 if (cols <= 0)
1722 rl_get_screen_size (NULL, &cols);
1723
1724 /* Update Readline's idea of the terminal size. */
1725 rl_set_screen_size (rows, cols);
1726 }
1727
1728 /* Reinitialize WRAP_BUFFER according to the current value of
1729 CHARS_PER_LINE. */
1730
1731 static void
set_width(void)1732 set_width (void)
1733 {
1734 if (chars_per_line == 0)
1735 init_page_info ();
1736
1737 if (!wrap_buffer)
1738 {
1739 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1740 wrap_buffer[0] = '\0';
1741 }
1742 else
1743 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
1744 wrap_pointer = wrap_buffer; /* Start it at the beginning. */
1745 }
1746
1747 static void
set_width_command(char * args,int from_tty,struct cmd_list_element * c)1748 set_width_command (char *args, int from_tty, struct cmd_list_element *c)
1749 {
1750 set_screen_size ();
1751 set_width ();
1752 }
1753
1754 static void
set_height_command(char * args,int from_tty,struct cmd_list_element * c)1755 set_height_command (char *args, int from_tty, struct cmd_list_element *c)
1756 {
1757 set_screen_size ();
1758 }
1759
1760 /* Wait, so the user can read what's on the screen. Prompt the user
1761 to continue by pressing RETURN. */
1762
1763 static void
prompt_for_continue(void)1764 prompt_for_continue (void)
1765 {
1766 char *ignore;
1767 char cont_prompt[120];
1768
1769 if (annotation_level > 1)
1770 printf_unfiltered ("\n\032\032pre-prompt-for-continue\n");
1771
1772 strcpy (cont_prompt,
1773 "---Type <return> to continue, or q <return> to quit---");
1774 if (annotation_level > 1)
1775 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
1776
1777 /* We must do this *before* we call gdb_readline, else it will eventually
1778 call us -- thinking that we're trying to print beyond the end of the
1779 screen. */
1780 reinitialize_more_filter ();
1781
1782 immediate_quit++;
1783 /* On a real operating system, the user can quit with SIGINT.
1784 But not on GO32.
1785
1786 'q' is provided on all systems so users don't have to change habits
1787 from system to system, and because telling them what to do in
1788 the prompt is more user-friendly than expecting them to think of
1789 SIGINT. */
1790 /* Call readline, not gdb_readline, because GO32 readline handles control-C
1791 whereas control-C to gdb_readline will cause the user to get dumped
1792 out to DOS. */
1793 ignore = gdb_readline_wrapper (cont_prompt);
1794
1795 if (annotation_level > 1)
1796 printf_unfiltered ("\n\032\032post-prompt-for-continue\n");
1797
1798 if (ignore)
1799 {
1800 char *p = ignore;
1801 while (*p == ' ' || *p == '\t')
1802 ++p;
1803 if (p[0] == 'q')
1804 async_request_quit (0);
1805 xfree (ignore);
1806 }
1807 immediate_quit--;
1808
1809 /* Now we have to do this again, so that GDB will know that it doesn't
1810 need to save the ---Type <return>--- line at the top of the screen. */
1811 reinitialize_more_filter ();
1812
1813 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
1814 }
1815
1816 /* Reinitialize filter; ie. tell it to reset to original values. */
1817
1818 void
reinitialize_more_filter(void)1819 reinitialize_more_filter (void)
1820 {
1821 lines_printed = 0;
1822 chars_printed = 0;
1823 }
1824
1825 /* Indicate that if the next sequence of characters overflows the line,
1826 a newline should be inserted here rather than when it hits the end.
1827 If INDENT is non-null, it is a string to be printed to indent the
1828 wrapped part on the next line. INDENT must remain accessible until
1829 the next call to wrap_here() or until a newline is printed through
1830 fputs_filtered().
1831
1832 If the line is already overfull, we immediately print a newline and
1833 the indentation, and disable further wrapping.
1834
1835 If we don't know the width of lines, but we know the page height,
1836 we must not wrap words, but should still keep track of newlines
1837 that were explicitly printed.
1838
1839 INDENT should not contain tabs, as that will mess up the char count
1840 on the next line. FIXME.
1841
1842 This routine is guaranteed to force out any output which has been
1843 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1844 used to force out output from the wrap_buffer. */
1845
1846 void
wrap_here(char * indent)1847 wrap_here (char *indent)
1848 {
1849 /* This should have been allocated, but be paranoid anyway. */
1850 if (!wrap_buffer)
1851 internal_error (__FILE__, __LINE__, "failed internal consistency check");
1852
1853 if (wrap_buffer[0])
1854 {
1855 *wrap_pointer = '\0';
1856 fputs_unfiltered (wrap_buffer, gdb_stdout);
1857 }
1858 wrap_pointer = wrap_buffer;
1859 wrap_buffer[0] = '\0';
1860 if (chars_per_line == UINT_MAX) /* No line overflow checking */
1861 {
1862 wrap_column = 0;
1863 }
1864 else if (chars_printed >= chars_per_line)
1865 {
1866 puts_filtered ("\n");
1867 if (indent != NULL)
1868 puts_filtered (indent);
1869 wrap_column = 0;
1870 }
1871 else
1872 {
1873 wrap_column = chars_printed;
1874 if (indent == NULL)
1875 wrap_indent = "";
1876 else
1877 wrap_indent = indent;
1878 }
1879 }
1880
1881 /* Print input string to gdb_stdout, filtered, with wrap,
1882 arranging strings in columns of n chars. String can be
1883 right or left justified in the column. Never prints
1884 trailing spaces. String should never be longer than
1885 width. FIXME: this could be useful for the EXAMINE
1886 command, which currently doesn't tabulate very well */
1887
1888 void
puts_filtered_tabular(char * string,int width,int right)1889 puts_filtered_tabular (char *string, int width, int right)
1890 {
1891 int spaces = 0;
1892 int stringlen;
1893 char *spacebuf;
1894
1895 gdb_assert (chars_per_line > 0);
1896 if (chars_per_line == UINT_MAX)
1897 {
1898 fputs_filtered (string, gdb_stdout);
1899 fputs_filtered ("\n", gdb_stdout);
1900 return;
1901 }
1902
1903 if (((chars_printed - 1) / width + 2) * width >= chars_per_line)
1904 fputs_filtered ("\n", gdb_stdout);
1905
1906 if (width >= chars_per_line)
1907 width = chars_per_line - 1;
1908
1909 stringlen = strlen (string);
1910
1911 if (chars_printed > 0)
1912 spaces = width - (chars_printed - 1) % width - 1;
1913 if (right)
1914 spaces += width - stringlen;
1915
1916 spacebuf = alloca (spaces + 1);
1917 spacebuf[spaces] = '\0';
1918 while (spaces--)
1919 spacebuf[spaces] = ' ';
1920
1921 fputs_filtered (spacebuf, gdb_stdout);
1922 fputs_filtered (string, gdb_stdout);
1923 }
1924
1925
1926 /* Ensure that whatever gets printed next, using the filtered output
1927 commands, starts at the beginning of the line. I.E. if there is
1928 any pending output for the current line, flush it and start a new
1929 line. Otherwise do nothing. */
1930
1931 void
begin_line(void)1932 begin_line (void)
1933 {
1934 if (chars_printed > 0)
1935 {
1936 puts_filtered ("\n");
1937 }
1938 }
1939
1940
1941 /* Like fputs but if FILTER is true, pause after every screenful.
1942
1943 Regardless of FILTER can wrap at points other than the final
1944 character of a line.
1945
1946 Unlike fputs, fputs_maybe_filtered does not return a value.
1947 It is OK for LINEBUFFER to be NULL, in which case just don't print
1948 anything.
1949
1950 Note that a longjmp to top level may occur in this routine (only if
1951 FILTER is true) (since prompt_for_continue may do so) so this
1952 routine should not be called when cleanups are not in place. */
1953
1954 static void
fputs_maybe_filtered(const char * linebuffer,struct ui_file * stream,int filter)1955 fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream,
1956 int filter)
1957 {
1958 const char *lineptr;
1959
1960 if (linebuffer == 0)
1961 return;
1962
1963 /* Don't do any filtering if it is disabled. */
1964 if ((stream != gdb_stdout) || !pagination_enabled
1965 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
1966 {
1967 fputs_unfiltered (linebuffer, stream);
1968 return;
1969 }
1970
1971 /* Go through and output each character. Show line extension
1972 when this is necessary; prompt user for new page when this is
1973 necessary. */
1974
1975 lineptr = linebuffer;
1976 while (*lineptr)
1977 {
1978 /* Possible new page. */
1979 if (filter && (lines_printed >= lines_per_page - 1))
1980 prompt_for_continue ();
1981
1982 while (*lineptr && *lineptr != '\n')
1983 {
1984 /* Print a single line. */
1985 if (*lineptr == '\t')
1986 {
1987 if (wrap_column)
1988 *wrap_pointer++ = '\t';
1989 else
1990 fputc_unfiltered ('\t', stream);
1991 /* Shifting right by 3 produces the number of tab stops
1992 we have already passed, and then adding one and
1993 shifting left 3 advances to the next tab stop. */
1994 chars_printed = ((chars_printed >> 3) + 1) << 3;
1995 lineptr++;
1996 }
1997 else
1998 {
1999 if (wrap_column)
2000 *wrap_pointer++ = *lineptr;
2001 else
2002 fputc_unfiltered (*lineptr, stream);
2003 chars_printed++;
2004 lineptr++;
2005 }
2006
2007 if (chars_printed >= chars_per_line)
2008 {
2009 unsigned int save_chars = chars_printed;
2010
2011 chars_printed = 0;
2012 lines_printed++;
2013 /* If we aren't actually wrapping, don't output newline --
2014 if chars_per_line is right, we probably just overflowed
2015 anyway; if it's wrong, let us keep going. */
2016 if (wrap_column)
2017 fputc_unfiltered ('\n', stream);
2018
2019 /* Possible new page. */
2020 if (lines_printed >= lines_per_page - 1)
2021 prompt_for_continue ();
2022
2023 /* Now output indentation and wrapped string */
2024 if (wrap_column)
2025 {
2026 fputs_unfiltered (wrap_indent, stream);
2027 *wrap_pointer = '\0'; /* Null-terminate saved stuff */
2028 fputs_unfiltered (wrap_buffer, stream); /* and eject it */
2029 /* FIXME, this strlen is what prevents wrap_indent from
2030 containing tabs. However, if we recurse to print it
2031 and count its chars, we risk trouble if wrap_indent is
2032 longer than (the user settable) chars_per_line.
2033 Note also that this can set chars_printed > chars_per_line
2034 if we are printing a long string. */
2035 chars_printed = strlen (wrap_indent)
2036 + (save_chars - wrap_column);
2037 wrap_pointer = wrap_buffer; /* Reset buffer */
2038 wrap_buffer[0] = '\0';
2039 wrap_column = 0; /* And disable fancy wrap */
2040 }
2041 }
2042 }
2043
2044 if (*lineptr == '\n')
2045 {
2046 chars_printed = 0;
2047 wrap_here ((char *) 0); /* Spit out chars, cancel further wraps */
2048 lines_printed++;
2049 fputc_unfiltered ('\n', stream);
2050 lineptr++;
2051 }
2052 }
2053 }
2054
2055 void
fputs_filtered(const char * linebuffer,struct ui_file * stream)2056 fputs_filtered (const char *linebuffer, struct ui_file *stream)
2057 {
2058 fputs_maybe_filtered (linebuffer, stream, 1);
2059 }
2060
2061 int
putchar_unfiltered(int c)2062 putchar_unfiltered (int c)
2063 {
2064 char buf = c;
2065 ui_file_write (gdb_stdout, &buf, 1);
2066 return c;
2067 }
2068
2069 /* Write character C to gdb_stdout using GDB's paging mechanism and return C.
2070 May return nonlocally. */
2071
2072 int
putchar_filtered(int c)2073 putchar_filtered (int c)
2074 {
2075 return fputc_filtered (c, gdb_stdout);
2076 }
2077
2078 int
fputc_unfiltered(int c,struct ui_file * stream)2079 fputc_unfiltered (int c, struct ui_file *stream)
2080 {
2081 char buf = c;
2082 ui_file_write (stream, &buf, 1);
2083 return c;
2084 }
2085
2086 int
fputc_filtered(int c,struct ui_file * stream)2087 fputc_filtered (int c, struct ui_file *stream)
2088 {
2089 char buf[2];
2090
2091 buf[0] = c;
2092 buf[1] = 0;
2093 fputs_filtered (buf, stream);
2094 return c;
2095 }
2096
2097 /* puts_debug is like fputs_unfiltered, except it prints special
2098 characters in printable fashion. */
2099
2100 void
puts_debug(char * prefix,char * string,char * suffix)2101 puts_debug (char *prefix, char *string, char *suffix)
2102 {
2103 int ch;
2104
2105 /* Print prefix and suffix after each line. */
2106 static int new_line = 1;
2107 static int return_p = 0;
2108 static char *prev_prefix = "";
2109 static char *prev_suffix = "";
2110
2111 if (*string == '\n')
2112 return_p = 0;
2113
2114 /* If the prefix is changing, print the previous suffix, a new line,
2115 and the new prefix. */
2116 if ((return_p || (strcmp (prev_prefix, prefix) != 0)) && !new_line)
2117 {
2118 fputs_unfiltered (prev_suffix, gdb_stdlog);
2119 fputs_unfiltered ("\n", gdb_stdlog);
2120 fputs_unfiltered (prefix, gdb_stdlog);
2121 }
2122
2123 /* Print prefix if we printed a newline during the previous call. */
2124 if (new_line)
2125 {
2126 new_line = 0;
2127 fputs_unfiltered (prefix, gdb_stdlog);
2128 }
2129
2130 prev_prefix = prefix;
2131 prev_suffix = suffix;
2132
2133 /* Output characters in a printable format. */
2134 while ((ch = *string++) != '\0')
2135 {
2136 switch (ch)
2137 {
2138 default:
2139 if (isprint (ch))
2140 fputc_unfiltered (ch, gdb_stdlog);
2141
2142 else
2143 fprintf_unfiltered (gdb_stdlog, "\\x%02x", ch & 0xff);
2144 break;
2145
2146 case '\\':
2147 fputs_unfiltered ("\\\\", gdb_stdlog);
2148 break;
2149 case '\b':
2150 fputs_unfiltered ("\\b", gdb_stdlog);
2151 break;
2152 case '\f':
2153 fputs_unfiltered ("\\f", gdb_stdlog);
2154 break;
2155 case '\n':
2156 new_line = 1;
2157 fputs_unfiltered ("\\n", gdb_stdlog);
2158 break;
2159 case '\r':
2160 fputs_unfiltered ("\\r", gdb_stdlog);
2161 break;
2162 case '\t':
2163 fputs_unfiltered ("\\t", gdb_stdlog);
2164 break;
2165 case '\v':
2166 fputs_unfiltered ("\\v", gdb_stdlog);
2167 break;
2168 }
2169
2170 return_p = ch == '\r';
2171 }
2172
2173 /* Print suffix if we printed a newline. */
2174 if (new_line)
2175 {
2176 fputs_unfiltered (suffix, gdb_stdlog);
2177 fputs_unfiltered ("\n", gdb_stdlog);
2178 }
2179 }
2180
2181
2182 /* Print a variable number of ARGS using format FORMAT. If this
2183 information is going to put the amount written (since the last call
2184 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
2185 call prompt_for_continue to get the users permision to continue.
2186
2187 Unlike fprintf, this function does not return a value.
2188
2189 We implement three variants, vfprintf (takes a vararg list and stream),
2190 fprintf (takes a stream to write on), and printf (the usual).
2191
2192 Note also that a longjmp to top level may occur in this routine
2193 (since prompt_for_continue may do so) so this routine should not be
2194 called when cleanups are not in place. */
2195
2196 static void
vfprintf_maybe_filtered(struct ui_file * stream,const char * format,va_list args,int filter)2197 vfprintf_maybe_filtered (struct ui_file *stream, const char *format,
2198 va_list args, int filter)
2199 {
2200 char *linebuffer;
2201 struct cleanup *old_cleanups;
2202
2203 linebuffer = xstrvprintf (format, args);
2204 old_cleanups = make_cleanup (xfree, linebuffer);
2205 fputs_maybe_filtered (linebuffer, stream, filter);
2206 do_cleanups (old_cleanups);
2207 }
2208
2209
2210 void
vfprintf_filtered(struct ui_file * stream,const char * format,va_list args)2211 vfprintf_filtered (struct ui_file *stream, const char *format, va_list args)
2212 {
2213 vfprintf_maybe_filtered (stream, format, args, 1);
2214 }
2215
2216 void
vfprintf_unfiltered(struct ui_file * stream,const char * format,va_list args)2217 vfprintf_unfiltered (struct ui_file *stream, const char *format, va_list args)
2218 {
2219 char *linebuffer;
2220 struct cleanup *old_cleanups;
2221
2222 linebuffer = xstrvprintf (format, args);
2223 old_cleanups = make_cleanup (xfree, linebuffer);
2224 fputs_unfiltered (linebuffer, stream);
2225 do_cleanups (old_cleanups);
2226 }
2227
2228 void
vprintf_filtered(const char * format,va_list args)2229 vprintf_filtered (const char *format, va_list args)
2230 {
2231 vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
2232 }
2233
2234 void
vprintf_unfiltered(const char * format,va_list args)2235 vprintf_unfiltered (const char *format, va_list args)
2236 {
2237 vfprintf_unfiltered (gdb_stdout, format, args);
2238 }
2239
2240 void
fprintf_filtered(struct ui_file * stream,const char * format,...)2241 fprintf_filtered (struct ui_file *stream, const char *format, ...)
2242 {
2243 va_list args;
2244 va_start (args, format);
2245 vfprintf_filtered (stream, format, args);
2246 va_end (args);
2247 }
2248
2249 void
fprintf_unfiltered(struct ui_file * stream,const char * format,...)2250 fprintf_unfiltered (struct ui_file *stream, const char *format, ...)
2251 {
2252 va_list args;
2253 va_start (args, format);
2254 vfprintf_unfiltered (stream, format, args);
2255 va_end (args);
2256 }
2257
2258 /* Like fprintf_filtered, but prints its result indented.
2259 Called as fprintfi_filtered (spaces, stream, format, ...); */
2260
2261 void
fprintfi_filtered(int spaces,struct ui_file * stream,const char * format,...)2262 fprintfi_filtered (int spaces, struct ui_file *stream, const char *format,
2263 ...)
2264 {
2265 va_list args;
2266 va_start (args, format);
2267 print_spaces_filtered (spaces, stream);
2268
2269 vfprintf_filtered (stream, format, args);
2270 va_end (args);
2271 }
2272
2273
2274 void
printf_filtered(const char * format,...)2275 printf_filtered (const char *format, ...)
2276 {
2277 va_list args;
2278 va_start (args, format);
2279 vfprintf_filtered (gdb_stdout, format, args);
2280 va_end (args);
2281 }
2282
2283
2284 void
printf_unfiltered(const char * format,...)2285 printf_unfiltered (const char *format, ...)
2286 {
2287 va_list args;
2288 va_start (args, format);
2289 vfprintf_unfiltered (gdb_stdout, format, args);
2290 va_end (args);
2291 }
2292
2293 /* Like printf_filtered, but prints it's result indented.
2294 Called as printfi_filtered (spaces, format, ...); */
2295
2296 void
printfi_filtered(int spaces,const char * format,...)2297 printfi_filtered (int spaces, const char *format, ...)
2298 {
2299 va_list args;
2300 va_start (args, format);
2301 print_spaces_filtered (spaces, gdb_stdout);
2302 vfprintf_filtered (gdb_stdout, format, args);
2303 va_end (args);
2304 }
2305
2306 /* Easy -- but watch out!
2307
2308 This routine is *not* a replacement for puts()! puts() appends a newline.
2309 This one doesn't, and had better not! */
2310
2311 void
puts_filtered(const char * string)2312 puts_filtered (const char *string)
2313 {
2314 fputs_filtered (string, gdb_stdout);
2315 }
2316
2317 void
puts_unfiltered(const char * string)2318 puts_unfiltered (const char *string)
2319 {
2320 fputs_unfiltered (string, gdb_stdout);
2321 }
2322
2323 /* Return a pointer to N spaces and a null. The pointer is good
2324 until the next call to here. */
2325 char *
n_spaces(int n)2326 n_spaces (int n)
2327 {
2328 char *t;
2329 static char *spaces = 0;
2330 static int max_spaces = -1;
2331
2332 if (n > max_spaces)
2333 {
2334 if (spaces)
2335 xfree (spaces);
2336 spaces = (char *) xmalloc (n + 1);
2337 for (t = spaces + n; t != spaces;)
2338 *--t = ' ';
2339 spaces[n] = '\0';
2340 max_spaces = n;
2341 }
2342
2343 return spaces + max_spaces - n;
2344 }
2345
2346 /* Print N spaces. */
2347 void
print_spaces_filtered(int n,struct ui_file * stream)2348 print_spaces_filtered (int n, struct ui_file *stream)
2349 {
2350 fputs_filtered (n_spaces (n), stream);
2351 }
2352
2353 /* C++/ObjC demangler stuff. */
2354
2355 /* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
2356 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
2357 If the name is not mangled, or the language for the name is unknown, or
2358 demangling is off, the name is printed in its "raw" form. */
2359
2360 void
fprintf_symbol_filtered(struct ui_file * stream,char * name,enum language lang,int arg_mode)2361 fprintf_symbol_filtered (struct ui_file *stream, char *name,
2362 enum language lang, int arg_mode)
2363 {
2364 char *demangled;
2365
2366 if (name != NULL)
2367 {
2368 /* If user wants to see raw output, no problem. */
2369 if (!demangle)
2370 {
2371 fputs_filtered (name, stream);
2372 }
2373 else
2374 {
2375 demangled = language_demangle (language_def (lang), name, arg_mode);
2376 fputs_filtered (demangled ? demangled : name, stream);
2377 if (demangled != NULL)
2378 {
2379 xfree (demangled);
2380 }
2381 }
2382 }
2383 }
2384
2385 /* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
2386 differences in whitespace. Returns 0 if they match, non-zero if they
2387 don't (slightly different than strcmp()'s range of return values).
2388
2389 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
2390 This "feature" is useful when searching for matching C++ function names
2391 (such as if the user types 'break FOO', where FOO is a mangled C++
2392 function). */
2393
2394 int
strcmp_iw(const char * string1,const char * string2)2395 strcmp_iw (const char *string1, const char *string2)
2396 {
2397 while ((*string1 != '\0') && (*string2 != '\0'))
2398 {
2399 while (isspace (*string1))
2400 {
2401 string1++;
2402 }
2403 while (isspace (*string2))
2404 {
2405 string2++;
2406 }
2407 if (*string1 != *string2)
2408 {
2409 break;
2410 }
2411 if (*string1 != '\0')
2412 {
2413 string1++;
2414 string2++;
2415 }
2416 }
2417 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
2418 }
2419
2420 /* This is like strcmp except that it ignores whitespace and treats
2421 '(' as the first non-NULL character in terms of ordering. Like
2422 strcmp (and unlike strcmp_iw), it returns negative if STRING1 <
2423 STRING2, 0 if STRING2 = STRING2, and positive if STRING1 > STRING2
2424 according to that ordering.
2425
2426 If a list is sorted according to this function and if you want to
2427 find names in the list that match some fixed NAME according to
2428 strcmp_iw(LIST_ELT, NAME), then the place to start looking is right
2429 where this function would put NAME.
2430
2431 Here are some examples of why using strcmp to sort is a bad idea:
2432
2433 Whitespace example:
2434
2435 Say your partial symtab contains: "foo<char *>", "goo". Then, if
2436 we try to do a search for "foo<char*>", strcmp will locate this
2437 after "foo<char *>" and before "goo". Then lookup_partial_symbol
2438 will start looking at strings beginning with "goo", and will never
2439 see the correct match of "foo<char *>".
2440
2441 Parenthesis example:
2442
2443 In practice, this is less like to be an issue, but I'll give it a
2444 shot. Let's assume that '$' is a legitimate character to occur in
2445 symbols. (Which may well even be the case on some systems.) Then
2446 say that the partial symbol table contains "foo$" and "foo(int)".
2447 strcmp will put them in this order, since '$' < '('. Now, if the
2448 user searches for "foo", then strcmp will sort "foo" before "foo$".
2449 Then lookup_partial_symbol will notice that strcmp_iw("foo$",
2450 "foo") is false, so it won't proceed to the actual match of
2451 "foo(int)" with "foo". */
2452
2453 int
strcmp_iw_ordered(const char * string1,const char * string2)2454 strcmp_iw_ordered (const char *string1, const char *string2)
2455 {
2456 while ((*string1 != '\0') && (*string2 != '\0'))
2457 {
2458 while (isspace (*string1))
2459 {
2460 string1++;
2461 }
2462 while (isspace (*string2))
2463 {
2464 string2++;
2465 }
2466 if (*string1 != *string2)
2467 {
2468 break;
2469 }
2470 if (*string1 != '\0')
2471 {
2472 string1++;
2473 string2++;
2474 }
2475 }
2476
2477 switch (*string1)
2478 {
2479 /* Characters are non-equal unless they're both '\0'; we want to
2480 make sure we get the comparison right according to our
2481 comparison in the cases where one of them is '\0' or '('. */
2482 case '\0':
2483 if (*string2 == '\0')
2484 return 0;
2485 else
2486 return -1;
2487 case '(':
2488 if (*string2 == '\0')
2489 return 1;
2490 else
2491 return -1;
2492 default:
2493 if (*string2 == '(')
2494 return 1;
2495 else
2496 return *string1 - *string2;
2497 }
2498 }
2499
2500 /* A simple comparison function with opposite semantics to strcmp. */
2501
2502 int
streq(const char * lhs,const char * rhs)2503 streq (const char *lhs, const char *rhs)
2504 {
2505 return !strcmp (lhs, rhs);
2506 }
2507
2508
2509 /*
2510 ** subset_compare()
2511 ** Answer whether string_to_compare is a full or partial match to
2512 ** template_string. The partial match must be in sequence starting
2513 ** at index 0.
2514 */
2515 int
subset_compare(char * string_to_compare,char * template_string)2516 subset_compare (char *string_to_compare, char *template_string)
2517 {
2518 int match;
2519 if (template_string != (char *) NULL && string_to_compare != (char *) NULL
2520 && strlen (string_to_compare) <= strlen (template_string))
2521 match =
2522 (strncmp
2523 (template_string, string_to_compare, strlen (string_to_compare)) == 0);
2524 else
2525 match = 0;
2526 return match;
2527 }
2528
2529
2530 static void pagination_on_command (char *arg, int from_tty);
2531 static void
pagination_on_command(char * arg,int from_tty)2532 pagination_on_command (char *arg, int from_tty)
2533 {
2534 pagination_enabled = 1;
2535 }
2536
2537 static void pagination_on_command (char *arg, int from_tty);
2538 static void
pagination_off_command(char * arg,int from_tty)2539 pagination_off_command (char *arg, int from_tty)
2540 {
2541 pagination_enabled = 0;
2542 }
2543
2544
2545 void
initialize_utils(void)2546 initialize_utils (void)
2547 {
2548 struct cmd_list_element *c;
2549
2550 c = add_set_cmd ("width", class_support, var_uinteger, &chars_per_line,
2551 "Set number of characters gdb thinks are in a line.",
2552 &setlist);
2553 deprecated_add_show_from_set (c, &showlist);
2554 set_cmd_sfunc (c, set_width_command);
2555
2556 c = add_set_cmd ("height", class_support, var_uinteger, &lines_per_page,
2557 "Set number of lines gdb thinks are in a page.", &setlist);
2558 deprecated_add_show_from_set (c, &showlist);
2559 set_cmd_sfunc (c, set_height_command);
2560
2561 init_page_info ();
2562
2563 deprecated_add_show_from_set
2564 (add_set_cmd ("demangle", class_support, var_boolean,
2565 (char *) &demangle,
2566 "Set demangling of encoded C++/ObjC names when displaying symbols.",
2567 &setprintlist), &showprintlist);
2568
2569 deprecated_add_show_from_set
2570 (add_set_cmd ("pagination", class_support,
2571 var_boolean, (char *) &pagination_enabled,
2572 "Set state of pagination.", &setlist), &showlist);
2573
2574 if (xdb_commands)
2575 {
2576 add_com ("am", class_support, pagination_on_command,
2577 "Enable pagination");
2578 add_com ("sm", class_support, pagination_off_command,
2579 "Disable pagination");
2580 }
2581
2582 deprecated_add_show_from_set
2583 (add_set_cmd ("sevenbit-strings", class_support, var_boolean,
2584 (char *) &sevenbit_strings,
2585 "Set printing of 8-bit characters in strings as \\nnn.",
2586 &setprintlist), &showprintlist);
2587
2588 deprecated_add_show_from_set
2589 (add_set_cmd ("asm-demangle", class_support, var_boolean,
2590 (char *) &asm_demangle,
2591 "Set demangling of C++/ObjC names in disassembly listings.",
2592 &setprintlist), &showprintlist);
2593 }
2594
2595 /* Machine specific function to handle SIGWINCH signal. */
2596
2597 #ifdef SIGWINCH_HANDLER_BODY
2598 SIGWINCH_HANDLER_BODY
2599 #endif
2600 /* print routines to handle variable size regs, etc. */
2601 /* temporary storage using circular buffer */
2602 #define NUMCELLS 16
2603 #define CELLSIZE 50
2604 static char *
get_cell(void)2605 get_cell (void)
2606 {
2607 static char buf[NUMCELLS][CELLSIZE];
2608 static int cell = 0;
2609 if (++cell >= NUMCELLS)
2610 cell = 0;
2611 return buf[cell];
2612 }
2613
2614 int
strlen_paddr(void)2615 strlen_paddr (void)
2616 {
2617 return (TARGET_ADDR_BIT / 8 * 2);
2618 }
2619
2620 char *
paddr(CORE_ADDR addr)2621 paddr (CORE_ADDR addr)
2622 {
2623 return phex (addr, TARGET_ADDR_BIT / 8);
2624 }
2625
2626 char *
paddr_nz(CORE_ADDR addr)2627 paddr_nz (CORE_ADDR addr)
2628 {
2629 return phex_nz (addr, TARGET_ADDR_BIT / 8);
2630 }
2631
2632 static void
decimal2str(char * paddr_str,char * sign,ULONGEST addr,int width)2633 decimal2str (char *paddr_str, char *sign, ULONGEST addr, int width)
2634 {
2635 /* steal code from valprint.c:print_decimal(). Should this worry
2636 about the real size of addr as the above does? */
2637 unsigned long temp[3];
2638 int i = 0;
2639 do
2640 {
2641 temp[i] = addr % (1000 * 1000 * 1000);
2642 addr /= (1000 * 1000 * 1000);
2643 i++;
2644 width -= 9;
2645 }
2646 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
2647 width += 9;
2648 if (width < 0)
2649 width = 0;
2650 switch (i)
2651 {
2652 case 1:
2653 sprintf (paddr_str, "%s%0*lu", sign, width, temp[0]);
2654 break;
2655 case 2:
2656 sprintf (paddr_str, "%s%0*lu%09lu", sign, width, temp[1], temp[0]);
2657 break;
2658 case 3:
2659 sprintf (paddr_str, "%s%0*lu%09lu%09lu", sign, width,
2660 temp[2], temp[1], temp[0]);
2661 break;
2662 default:
2663 internal_error (__FILE__, __LINE__,
2664 "failed internal consistency check");
2665 }
2666 }
2667
2668 static void
octal2str(char * paddr_str,ULONGEST addr,int width)2669 octal2str (char *paddr_str, ULONGEST addr, int width)
2670 {
2671 unsigned long temp[3];
2672 int i = 0;
2673 do
2674 {
2675 temp[i] = addr % (0100000 * 0100000);
2676 addr /= (0100000 * 0100000);
2677 i++;
2678 width -= 10;
2679 }
2680 while (addr != 0 && i < (sizeof (temp) / sizeof (temp[0])));
2681 width += 10;
2682 if (width < 0)
2683 width = 0;
2684 switch (i)
2685 {
2686 case 1:
2687 if (temp[0] == 0)
2688 sprintf (paddr_str, "%*o", width, 0);
2689 else
2690 sprintf (paddr_str, "0%0*lo", width, temp[0]);
2691 break;
2692 case 2:
2693 sprintf (paddr_str, "0%0*lo%010lo", width, temp[1], temp[0]);
2694 break;
2695 case 3:
2696 sprintf (paddr_str, "0%0*lo%010lo%010lo", width,
2697 temp[2], temp[1], temp[0]);
2698 break;
2699 default:
2700 internal_error (__FILE__, __LINE__,
2701 "failed internal consistency check");
2702 }
2703 }
2704
2705 char *
paddr_u(CORE_ADDR addr)2706 paddr_u (CORE_ADDR addr)
2707 {
2708 char *paddr_str = get_cell ();
2709 decimal2str (paddr_str, "", addr, 0);
2710 return paddr_str;
2711 }
2712
2713 char *
paddr_d(LONGEST addr)2714 paddr_d (LONGEST addr)
2715 {
2716 char *paddr_str = get_cell ();
2717 if (addr < 0)
2718 decimal2str (paddr_str, "-", -addr, 0);
2719 else
2720 decimal2str (paddr_str, "", addr, 0);
2721 return paddr_str;
2722 }
2723
2724 /* eliminate warning from compiler on 32-bit systems */
2725 static int thirty_two = 32;
2726
2727 char *
phex(ULONGEST l,int sizeof_l)2728 phex (ULONGEST l, int sizeof_l)
2729 {
2730 char *str;
2731 switch (sizeof_l)
2732 {
2733 case 8:
2734 str = get_cell ();
2735 sprintf (str, "%08lx%08lx",
2736 (unsigned long) (l >> thirty_two),
2737 (unsigned long) (l & 0xffffffff));
2738 break;
2739 case 4:
2740 str = get_cell ();
2741 sprintf (str, "%08lx", (unsigned long) l);
2742 break;
2743 case 2:
2744 str = get_cell ();
2745 sprintf (str, "%04x", (unsigned short) (l & 0xffff));
2746 break;
2747 default:
2748 str = phex (l, sizeof (l));
2749 break;
2750 }
2751 return str;
2752 }
2753
2754 char *
phex_nz(ULONGEST l,int sizeof_l)2755 phex_nz (ULONGEST l, int sizeof_l)
2756 {
2757 char *str;
2758 switch (sizeof_l)
2759 {
2760 case 8:
2761 {
2762 unsigned long high = (unsigned long) (l >> thirty_two);
2763 str = get_cell ();
2764 if (high == 0)
2765 sprintf (str, "%lx", (unsigned long) (l & 0xffffffff));
2766 else
2767 sprintf (str, "%lx%08lx", high, (unsigned long) (l & 0xffffffff));
2768 break;
2769 }
2770 case 4:
2771 str = get_cell ();
2772 sprintf (str, "%lx", (unsigned long) l);
2773 break;
2774 case 2:
2775 str = get_cell ();
2776 sprintf (str, "%x", (unsigned short) (l & 0xffff));
2777 break;
2778 default:
2779 str = phex_nz (l, sizeof (l));
2780 break;
2781 }
2782 return str;
2783 }
2784
2785 /* Converts a LONGEST to a C-format hexadecimal literal and stores it
2786 in a static string. Returns a pointer to this string. */
2787 char *
hex_string(LONGEST num)2788 hex_string (LONGEST num)
2789 {
2790 char *result = get_cell ();
2791 snprintf (result, CELLSIZE, "0x%s", phex_nz (num, sizeof (num)));
2792 return result;
2793 }
2794
2795 /* Converts a LONGEST number to a C-format hexadecimal literal and
2796 stores it in a static string. Returns a pointer to this string
2797 that is valid until the next call. The number is padded on the
2798 left with 0s to at least WIDTH characters. */
2799 char *
hex_string_custom(LONGEST num,int width)2800 hex_string_custom (LONGEST num, int width)
2801 {
2802 char *result = get_cell ();
2803 char *result_end = result + CELLSIZE - 1;
2804 const char *hex = phex_nz (num, sizeof (num));
2805 int hex_len = strlen (hex);
2806
2807 if (hex_len > width)
2808 width = hex_len;
2809 if (width + 2 >= CELLSIZE)
2810 internal_error (__FILE__, __LINE__,
2811 "hex_string_custom: insufficient space to store result");
2812
2813 strcpy (result_end - width - 2, "0x");
2814 memset (result_end - width, '0', width);
2815 strcpy (result_end - hex_len, hex);
2816 return result_end - width - 2;
2817 }
2818
2819 /* Convert VAL to a numeral in the given radix. For
2820 * radix 10, IS_SIGNED may be true, indicating a signed quantity;
2821 * otherwise VAL is interpreted as unsigned. If WIDTH is supplied,
2822 * it is the minimum width (0-padded if needed). USE_C_FORMAT means
2823 * to use C format in all cases. If it is false, then 'x'
2824 * and 'o' formats do not include a prefix (0x or leading 0). */
2825
2826 char *
int_string(LONGEST val,int radix,int is_signed,int width,int use_c_format)2827 int_string (LONGEST val, int radix, int is_signed, int width,
2828 int use_c_format)
2829 {
2830 switch (radix)
2831 {
2832 case 16:
2833 {
2834 char *result;
2835 if (width == 0)
2836 result = hex_string (val);
2837 else
2838 result = hex_string_custom (val, width);
2839 if (! use_c_format)
2840 result += 2;
2841 return result;
2842 }
2843 case 10:
2844 {
2845 char *result = get_cell ();
2846 if (is_signed && val < 0)
2847 decimal2str (result, "-", -val, width);
2848 else
2849 decimal2str (result, "", val, width);
2850 return result;
2851 }
2852 case 8:
2853 {
2854 char *result = get_cell ();
2855 octal2str (result, val, width);
2856 if (use_c_format || val == 0)
2857 return result;
2858 else
2859 return result + 1;
2860 }
2861 default:
2862 internal_error (__FILE__, __LINE__,
2863 "failed internal consistency check");
2864 }
2865 }
2866
2867 /* Convert a CORE_ADDR into a string. */
2868 const char *
core_addr_to_string(const CORE_ADDR addr)2869 core_addr_to_string (const CORE_ADDR addr)
2870 {
2871 char *str = get_cell ();
2872 strcpy (str, "0x");
2873 strcat (str, phex (addr, sizeof (addr)));
2874 return str;
2875 }
2876
2877 const char *
core_addr_to_string_nz(const CORE_ADDR addr)2878 core_addr_to_string_nz (const CORE_ADDR addr)
2879 {
2880 char *str = get_cell ();
2881 strcpy (str, "0x");
2882 strcat (str, phex_nz (addr, sizeof (addr)));
2883 return str;
2884 }
2885
2886 /* Convert a string back into a CORE_ADDR. */
2887 CORE_ADDR
string_to_core_addr(const char * my_string)2888 string_to_core_addr (const char *my_string)
2889 {
2890 CORE_ADDR addr = 0;
2891 if (my_string[0] == '0' && tolower (my_string[1]) == 'x')
2892 {
2893 /* Assume that it is in decimal. */
2894 int i;
2895 for (i = 2; my_string[i] != '\0'; i++)
2896 {
2897 if (isdigit (my_string[i]))
2898 addr = (my_string[i] - '0') + (addr * 16);
2899 else if (isxdigit (my_string[i]))
2900 addr = (tolower (my_string[i]) - 'a' + 0xa) + (addr * 16);
2901 else
2902 internal_error (__FILE__, __LINE__, "invalid hex");
2903 }
2904 }
2905 else
2906 {
2907 /* Assume that it is in decimal. */
2908 int i;
2909 for (i = 0; my_string[i] != '\0'; i++)
2910 {
2911 if (isdigit (my_string[i]))
2912 addr = (my_string[i] - '0') + (addr * 10);
2913 else
2914 internal_error (__FILE__, __LINE__, "invalid decimal");
2915 }
2916 }
2917 return addr;
2918 }
2919
2920 char *
gdb_realpath(const char * filename)2921 gdb_realpath (const char *filename)
2922 {
2923 /* Method 1: The system has a compile time upper bound on a filename
2924 path. Use that and realpath() to canonicalize the name. This is
2925 the most common case. Note that, if there isn't a compile time
2926 upper bound, you want to avoid realpath() at all costs. */
2927 #if defined(HAVE_REALPATH)
2928 {
2929 # if defined (PATH_MAX)
2930 char buf[PATH_MAX];
2931 # define USE_REALPATH
2932 # elif defined (MAXPATHLEN)
2933 char buf[MAXPATHLEN];
2934 # define USE_REALPATH
2935 # endif
2936 # if defined (USE_REALPATH)
2937 const char *rp = realpath (filename, buf);
2938 if (rp == NULL)
2939 rp = filename;
2940 return xstrdup (rp);
2941 # endif
2942 }
2943 #endif /* HAVE_REALPATH */
2944
2945 /* Method 2: The host system (i.e., GNU) has the function
2946 canonicalize_file_name() which malloc's a chunk of memory and
2947 returns that, use that. */
2948 #if defined(HAVE_CANONICALIZE_FILE_NAME)
2949 {
2950 char *rp = canonicalize_file_name (filename);
2951 if (rp == NULL)
2952 return xstrdup (filename);
2953 else
2954 return rp;
2955 }
2956 #endif
2957
2958 /* FIXME: cagney/2002-11-13:
2959
2960 Method 2a: Use realpath() with a NULL buffer. Some systems, due
2961 to the problems described in in method 3, have modified their
2962 realpath() implementation so that it will allocate a buffer when
2963 NULL is passed in. Before this can be used, though, some sort of
2964 configure time test would need to be added. Otherwize the code
2965 will likely core dump. */
2966
2967 /* Method 3: Now we're getting desperate! The system doesn't have a
2968 compile time buffer size and no alternative function. Query the
2969 OS, using pathconf(), for the buffer limit. Care is needed
2970 though, some systems do not limit PATH_MAX (return -1 for
2971 pathconf()) making it impossible to pass a correctly sized buffer
2972 to realpath() (it could always overflow). On those systems, we
2973 skip this. */
2974 #if defined (HAVE_REALPATH) && defined (HAVE_UNISTD_H) && defined(HAVE_ALLOCA)
2975 {
2976 /* Find out the max path size. */
2977 long path_max = pathconf ("/", _PC_PATH_MAX);
2978 if (path_max > 0)
2979 {
2980 /* PATH_MAX is bounded. */
2981 char *buf = alloca (path_max);
2982 char *rp = realpath (filename, buf);
2983 return xstrdup (rp ? rp : filename);
2984 }
2985 }
2986 #endif
2987
2988 /* This system is a lost cause, just dup the buffer. */
2989 return xstrdup (filename);
2990 }
2991
2992 /* Return a copy of FILENAME, with its directory prefix canonicalized
2993 by gdb_realpath. */
2994
2995 char *
xfullpath(const char * filename)2996 xfullpath (const char *filename)
2997 {
2998 const char *base_name = lbasename (filename);
2999 char *dir_name;
3000 char *real_path;
3001 char *result;
3002
3003 /* Extract the basename of filename, and return immediately
3004 a copy of filename if it does not contain any directory prefix. */
3005 if (base_name == filename)
3006 return xstrdup (filename);
3007
3008 dir_name = alloca ((size_t) (base_name - filename + 2));
3009 /* Allocate enough space to store the dir_name + plus one extra
3010 character sometimes needed under Windows (see below), and
3011 then the closing \000 character */
3012 strncpy (dir_name, filename, base_name - filename);
3013 dir_name[base_name - filename] = '\000';
3014
3015 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
3016 /* We need to be careful when filename is of the form 'd:foo', which
3017 is equivalent of d:./foo, which is totally different from d:/foo. */
3018 if (strlen (dir_name) == 2 && isalpha (dir_name[0]) && dir_name[1] == ':')
3019 {
3020 dir_name[2] = '.';
3021 dir_name[3] = '\000';
3022 }
3023 #endif
3024
3025 /* Canonicalize the directory prefix, and build the resulting
3026 filename. If the dirname realpath already contains an ending
3027 directory separator, avoid doubling it. */
3028 real_path = gdb_realpath (dir_name);
3029 if (IS_DIR_SEPARATOR (real_path[strlen (real_path) - 1]))
3030 result = concat (real_path, base_name, NULL);
3031 else
3032 result = concat (real_path, SLASH_STRING, base_name, NULL);
3033
3034 xfree (real_path);
3035 return result;
3036 }
3037
3038
3039 /* This is the 32-bit CRC function used by the GNU separate debug
3040 facility. An executable may contain a section named
3041 .gnu_debuglink, which holds the name of a separate executable file
3042 containing its debug info, and a checksum of that file's contents,
3043 computed using this function. */
3044 unsigned long
gnu_debuglink_crc32(unsigned long crc,unsigned char * buf,size_t len)3045 gnu_debuglink_crc32 (unsigned long crc, unsigned char *buf, size_t len)
3046 {
3047 static const unsigned long crc32_table[256] = {
3048 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
3049 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
3050 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
3051 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
3052 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
3053 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
3054 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
3055 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
3056 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
3057 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
3058 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
3059 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
3060 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
3061 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
3062 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
3063 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
3064 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
3065 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
3066 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
3067 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
3068 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
3069 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
3070 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
3071 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
3072 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
3073 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
3074 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
3075 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
3076 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
3077 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
3078 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
3079 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
3080 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
3081 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
3082 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
3083 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
3084 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
3085 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
3086 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
3087 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
3088 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
3089 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
3090 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
3091 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
3092 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
3093 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
3094 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
3095 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
3096 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
3097 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
3098 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
3099 0x2d02ef8d
3100 };
3101 unsigned char *end;
3102
3103 crc = ~crc & 0xffffffff;
3104 for (end = buf + len; buf < end; ++buf)
3105 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
3106 return ~crc & 0xffffffff;;
3107 }
3108
3109 ULONGEST
align_up(ULONGEST v,int n)3110 align_up (ULONGEST v, int n)
3111 {
3112 /* Check that N is really a power of two. */
3113 gdb_assert (n && (n & (n-1)) == 0);
3114 return (v + n - 1) & -n;
3115 }
3116
3117 ULONGEST
align_down(ULONGEST v,int n)3118 align_down (ULONGEST v, int n)
3119 {
3120 /* Check that N is really a power of two. */
3121 gdb_assert (n && (n & (n-1)) == 0);
3122 return (v & -n);
3123 }
3124