gdb: replace some calls to internal_error with gdb_assert
[deliverable/binutils-gdb.git] / gdb / exec.c
1 /* Work with executable files, for GDB.
2
3 Copyright (C) 1988-2020 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include "defs.h"
21 #include "frame.h"
22 #include "inferior.h"
23 #include "target.h"
24 #include "gdbcmd.h"
25 #include "language.h"
26 #include "filenames.h"
27 #include "symfile.h"
28 #include "objfiles.h"
29 #include "completer.h"
30 #include "value.h"
31 #include "exec.h"
32 #include "observable.h"
33 #include "arch-utils.h"
34 #include "gdbthread.h"
35 #include "progspace.h"
36 #include "progspace-and-thread.h"
37 #include "gdb_bfd.h"
38 #include "gcore.h"
39 #include "source.h"
40
41 #include <fcntl.h>
42 #include "readline/tilde.h"
43 #include "gdbcore.h"
44
45 #include <ctype.h>
46 #include <sys/stat.h>
47 #include "solist.h"
48 #include <algorithm>
49 #include "gdbsupport/pathstuff.h"
50 #include "cli/cli-style.h"
51
52 void (*deprecated_file_changed_hook) (const char *);
53
54 static const target_info exec_target_info = {
55 "exec",
56 N_("Local exec file"),
57 N_("Use an executable file as a target.\n\
58 Specify the filename of the executable file.")
59 };
60
61 /* The target vector for executable files. */
62
63 struct exec_target final : public target_ops
64 {
65 const target_info &info () const override
66 { return exec_target_info; }
67
68 strata stratum () const override { return file_stratum; }
69
70 void close () override;
71 enum target_xfer_status xfer_partial (enum target_object object,
72 const char *annex,
73 gdb_byte *readbuf,
74 const gdb_byte *writebuf,
75 ULONGEST offset, ULONGEST len,
76 ULONGEST *xfered_len) override;
77 struct target_section_table *get_section_table () override;
78 void files_info () override;
79
80 bool has_memory () override;
81 char *make_corefile_notes (bfd *, int *) override;
82 int find_memory_regions (find_memory_region_ftype func, void *data) override;
83 };
84
85 static exec_target exec_ops;
86
87 /* How to handle a mismatch between the current exec file and the exec
88 file determined from target. */
89
90 static const char *const exec_file_mismatch_names[]
91 = {"ask", "warn", "off", NULL };
92 enum exec_file_mismatch_mode
93 {
94 exec_file_mismatch_ask, exec_file_mismatch_warn, exec_file_mismatch_off
95 };
96 static const char *exec_file_mismatch = exec_file_mismatch_names[0];
97 static enum exec_file_mismatch_mode exec_file_mismatch_mode
98 = exec_file_mismatch_ask;
99
100 /* Show command. */
101 static void
102 show_exec_file_mismatch_command (struct ui_file *file, int from_tty,
103 struct cmd_list_element *c, const char *value)
104 {
105 fprintf_filtered (gdb_stdout,
106 _("exec-file-mismatch handling is currently \"%s\".\n"),
107 exec_file_mismatch_names[exec_file_mismatch_mode]);
108 }
109
110 /* Set command. Change the setting for range checking. */
111 static void
112 set_exec_file_mismatch_command (const char *ignore,
113 int from_tty, struct cmd_list_element *c)
114 {
115 for (enum exec_file_mismatch_mode mode = exec_file_mismatch_ask;
116 ;
117 mode = static_cast<enum exec_file_mismatch_mode>(1 + (int) mode))
118 {
119 if (strcmp (exec_file_mismatch, exec_file_mismatch_names[mode]) == 0)
120 {
121 exec_file_mismatch_mode = mode;
122 return;
123 }
124 if (mode == exec_file_mismatch_off)
125 internal_error (__FILE__, __LINE__,
126 _("Unrecognized exec-file-mismatch setting: \"%s\""),
127 exec_file_mismatch);
128 }
129 }
130
131 /* Whether to open exec and core files read-only or read-write. */
132
133 bool write_files = false;
134 static void
135 show_write_files (struct ui_file *file, int from_tty,
136 struct cmd_list_element *c, const char *value)
137 {
138 fprintf_filtered (file, _("Writing into executable and core files is %s.\n"),
139 value);
140 }
141
142
143 static void
144 exec_target_open (const char *args, int from_tty)
145 {
146 target_preopen (from_tty);
147 exec_file_attach (args, from_tty);
148 }
149
150 /* Close and clear exec_bfd. If we end up with no target sections to
151 read memory from, this unpushes the exec_ops target. */
152
153 void
154 exec_close (void)
155 {
156 if (exec_bfd)
157 {
158 bfd *abfd = exec_bfd;
159
160 gdb_bfd_unref (abfd);
161
162 /* Removing target sections may close the exec_ops target.
163 Clear exec_bfd before doing so to prevent recursion. */
164 exec_bfd = NULL;
165 exec_bfd_mtime = 0;
166
167 remove_target_sections (&exec_bfd);
168
169 xfree (exec_filename);
170 exec_filename = NULL;
171 }
172 }
173
174 /* This is the target_close implementation. Clears all target
175 sections and closes all executable bfds from all program spaces. */
176
177 void
178 exec_target::close ()
179 {
180 struct program_space *ss;
181 scoped_restore_current_program_space restore_pspace;
182
183 ALL_PSPACES (ss)
184 {
185 set_current_program_space (ss);
186 clear_section_table (current_target_sections);
187 exec_close ();
188 }
189 }
190
191 /* See gdbcore.h. */
192
193 void
194 try_open_exec_file (const char *exec_file_host, struct inferior *inf,
195 symfile_add_flags add_flags)
196 {
197 struct gdb_exception prev_err;
198
199 /* exec_file_attach and symbol_file_add_main may throw an error if the file
200 cannot be opened either locally or remotely.
201
202 This happens for example, when the file is first found in the local
203 sysroot (above), and then disappears (a TOCTOU race), or when it doesn't
204 exist in the target filesystem, or when the file does exist, but
205 is not readable.
206
207 Even without a symbol file, the remote-based debugging session should
208 continue normally instead of ending abruptly. Hence we catch thrown
209 errors/exceptions in the following code. */
210 try
211 {
212 /* We must do this step even if exec_file_host is NULL, so that
213 exec_file_attach will clear state. */
214 exec_file_attach (exec_file_host, add_flags & SYMFILE_VERBOSE);
215 }
216 catch (gdb_exception_error &err)
217 {
218 if (err.message != NULL)
219 warning ("%s", err.what ());
220
221 prev_err = std::move (err);
222 }
223
224 if (exec_file_host != NULL)
225 {
226 try
227 {
228 symbol_file_add_main (exec_file_host, add_flags);
229 }
230 catch (const gdb_exception_error &err)
231 {
232 if (!exception_print_same (prev_err, err))
233 warning ("%s", err.what ());
234 }
235 }
236 }
237
238 /* See gdbcore.h. */
239
240 void
241 validate_exec_file (int from_tty)
242 {
243 /* If user asked to ignore the mismatch, do nothing. */
244 if (exec_file_mismatch_mode == exec_file_mismatch_off)
245 return;
246
247 const char *current_exec_file = get_exec_file (0);
248 struct inferior *inf = current_inferior ();
249 /* Try to determine a filename from the process itself. */
250 const char *pid_exec_file = target_pid_to_exec_file (inf->pid);
251
252 /* If wee cannot validate the exec file, return. */
253 if (current_exec_file == NULL || pid_exec_file == NULL)
254 return;
255
256 std::string exec_file_target (pid_exec_file);
257
258 /* In case the exec file is not local, exec_file_target has to point at
259 the target file system. */
260 if (is_target_filename (current_exec_file) && !target_filesystem_is_local ())
261 exec_file_target = TARGET_SYSROOT_PREFIX + exec_file_target;
262
263 if (exec_file_target != current_exec_file)
264 {
265 warning
266 (_("Mismatch between current exec-file %ps\n"
267 "and automatically determined exec-file %ps\n"
268 "exec-file-mismatch handling is currently \"%s\""),
269 styled_string (file_name_style.style (), current_exec_file),
270 styled_string (file_name_style.style (), exec_file_target.c_str ()),
271 exec_file_mismatch_names[exec_file_mismatch_mode]);
272 if (exec_file_mismatch_mode == exec_file_mismatch_ask)
273 {
274 symfile_add_flags add_flags = SYMFILE_MAINLINE;
275 if (from_tty)
276 add_flags |= SYMFILE_VERBOSE;
277 try
278 {
279 symbol_file_add_main (exec_file_target.c_str (), add_flags);
280 exec_file_attach (exec_file_target.c_str (), from_tty);
281 }
282 catch (gdb_exception_error &err)
283 {
284 warning (_("loading %ps %s"),
285 styled_string (file_name_style.style (),
286 exec_file_target.c_str ()),
287 err.message != NULL ? err.what () : "error");
288 }
289 }
290 }
291 }
292
293 /* See gdbcore.h. */
294
295 void
296 exec_file_locate_attach (int pid, int defer_bp_reset, int from_tty)
297 {
298 char *exec_file_target;
299 symfile_add_flags add_flags = 0;
300
301 /* Do nothing if we already have an executable filename. */
302 if (get_exec_file (0) != NULL)
303 return;
304
305 /* Try to determine a filename from the process itself. */
306 exec_file_target = target_pid_to_exec_file (pid);
307 if (exec_file_target == NULL)
308 {
309 warning (_("No executable has been specified and target does not "
310 "support\n"
311 "determining executable automatically. "
312 "Try using the \"file\" command."));
313 return;
314 }
315
316 gdb::unique_xmalloc_ptr<char> exec_file_host
317 = exec_file_find (exec_file_target, NULL);
318
319 if (defer_bp_reset)
320 add_flags |= SYMFILE_DEFER_BP_RESET;
321
322 if (from_tty)
323 add_flags |= SYMFILE_VERBOSE;
324
325 /* Attempt to open the exec file. */
326 try_open_exec_file (exec_file_host.get (), current_inferior (), add_flags);
327 }
328
329 /* Set FILENAME as the new exec file.
330
331 This function is intended to be behave essentially the same
332 as exec_file_command, except that the latter will detect when
333 a target is being debugged, and will ask the user whether it
334 should be shut down first. (If the answer is "no", then the
335 new file is ignored.)
336
337 This file is used by exec_file_command, to do the work of opening
338 and processing the exec file after any prompting has happened.
339
340 And, it is used by child_attach, when the attach command was
341 given a pid but not a exec pathname, and the attach command could
342 figure out the pathname from the pid. (In this case, we shouldn't
343 ask the user whether the current target should be shut down --
344 we're supplying the exec pathname late for good reason.) */
345
346 void
347 exec_file_attach (const char *filename, int from_tty)
348 {
349 /* First, acquire a reference to the current exec_bfd. We release
350 this at the end of the function; but acquiring it now lets the
351 BFD cache return it if this call refers to the same file. */
352 gdb_bfd_ref_ptr exec_bfd_holder = gdb_bfd_ref_ptr::new_reference (exec_bfd);
353
354 /* Remove any previous exec file. */
355 exec_close ();
356
357 /* Now open and digest the file the user requested, if any. */
358
359 if (!filename)
360 {
361 if (from_tty)
362 printf_unfiltered (_("No executable file now.\n"));
363
364 set_gdbarch_from_file (NULL);
365 }
366 else
367 {
368 int load_via_target = 0;
369 const char *scratch_pathname, *canonical_pathname;
370 int scratch_chan;
371 struct target_section *sections = NULL, *sections_end = NULL;
372 char **matching;
373
374 if (is_target_filename (filename))
375 {
376 if (target_filesystem_is_local ())
377 filename += strlen (TARGET_SYSROOT_PREFIX);
378 else
379 load_via_target = 1;
380 }
381
382 gdb::unique_xmalloc_ptr<char> canonical_storage, scratch_storage;
383 if (load_via_target)
384 {
385 /* gdb_bfd_fopen does not support "target:" filenames. */
386 if (write_files)
387 warning (_("writing into executable files is "
388 "not supported for %s sysroots"),
389 TARGET_SYSROOT_PREFIX);
390
391 scratch_pathname = filename;
392 scratch_chan = -1;
393 canonical_pathname = scratch_pathname;
394 }
395 else
396 {
397 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST,
398 filename, write_files ?
399 O_RDWR | O_BINARY : O_RDONLY | O_BINARY,
400 &scratch_storage);
401 #if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__)
402 if (scratch_chan < 0)
403 {
404 char *exename = (char *) alloca (strlen (filename) + 5);
405
406 strcat (strcpy (exename, filename), ".exe");
407 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST,
408 exename, write_files ?
409 O_RDWR | O_BINARY
410 : O_RDONLY | O_BINARY,
411 &scratch_storage);
412 }
413 #endif
414 if (scratch_chan < 0)
415 perror_with_name (filename);
416
417 scratch_pathname = scratch_storage.get ();
418
419 /* gdb_bfd_open (and its variants) prefers canonicalized
420 pathname for better BFD caching. */
421 canonical_storage = gdb_realpath (scratch_pathname);
422 canonical_pathname = canonical_storage.get ();
423 }
424
425 gdb_bfd_ref_ptr temp;
426 if (write_files && !load_via_target)
427 temp = gdb_bfd_fopen (canonical_pathname, gnutarget,
428 FOPEN_RUB, scratch_chan);
429 else
430 temp = gdb_bfd_open (canonical_pathname, gnutarget, scratch_chan);
431 exec_bfd = temp.release ();
432
433 if (!exec_bfd)
434 {
435 error (_("\"%ps\": could not open as an executable file: %s."),
436 styled_string (file_name_style.style (), scratch_pathname),
437 bfd_errmsg (bfd_get_error ()));
438 }
439
440 /* gdb_realpath_keepfile resolves symlinks on the local
441 filesystem and so cannot be used for "target:" files. */
442 gdb_assert (exec_filename == NULL);
443 if (load_via_target)
444 exec_filename = xstrdup (bfd_get_filename (exec_bfd));
445 else
446 exec_filename = gdb_realpath_keepfile (scratch_pathname).release ();
447
448 if (!bfd_check_format_matches (exec_bfd, bfd_object, &matching))
449 {
450 /* Make sure to close exec_bfd, or else "run" might try to use
451 it. */
452 exec_close ();
453 error (_("\"%ps\": not in executable format: %s"),
454 styled_string (file_name_style.style (), scratch_pathname),
455 gdb_bfd_errmsg (bfd_get_error (), matching).c_str ());
456 }
457
458 if (build_section_table (exec_bfd, &sections, &sections_end))
459 {
460 /* Make sure to close exec_bfd, or else "run" might try to use
461 it. */
462 exec_close ();
463 error (_("\"%ps\": can't find the file sections: %s"),
464 styled_string (file_name_style.style (), scratch_pathname),
465 bfd_errmsg (bfd_get_error ()));
466 }
467
468 exec_bfd_mtime = bfd_get_mtime (exec_bfd);
469
470 validate_files ();
471
472 set_gdbarch_from_file (exec_bfd);
473
474 /* Add the executable's sections to the current address spaces'
475 list of sections. This possibly pushes the exec_ops
476 target. */
477 add_target_sections (&exec_bfd, sections, sections_end);
478 xfree (sections);
479
480 /* Tell display code (if any) about the changed file name. */
481 if (deprecated_exec_file_display_hook)
482 (*deprecated_exec_file_display_hook) (filename);
483 }
484
485 bfd_cache_close_all ();
486 gdb::observers::executable_changed.notify ();
487 }
488
489 /* Process the first arg in ARGS as the new exec file.
490
491 Note that we have to explicitly ignore additional args, since we can
492 be called from file_command(), which also calls symbol_file_command()
493 which can take multiple args.
494
495 If ARGS is NULL, we just want to close the exec file. */
496
497 static void
498 exec_file_command (const char *args, int from_tty)
499 {
500 if (from_tty && target_has_execution
501 && !query (_("A program is being debugged already.\n"
502 "Are you sure you want to change the file? ")))
503 error (_("File not changed."));
504
505 if (args)
506 {
507 /* Scan through the args and pick up the first non option arg
508 as the filename. */
509
510 gdb_argv built_argv (args);
511 char **argv = built_argv.get ();
512
513 for (; (*argv != NULL) && (**argv == '-'); argv++)
514 {;
515 }
516 if (*argv == NULL)
517 error (_("No executable file name was specified"));
518
519 gdb::unique_xmalloc_ptr<char> filename (tilde_expand (*argv));
520 exec_file_attach (filename.get (), from_tty);
521 }
522 else
523 exec_file_attach (NULL, from_tty);
524 }
525
526 /* Set both the exec file and the symbol file, in one command.
527 What a novelty. Why did GDB go through four major releases before this
528 command was added? */
529
530 static void
531 file_command (const char *arg, int from_tty)
532 {
533 /* FIXME, if we lose on reading the symbol file, we should revert
534 the exec file, but that's rough. */
535 exec_file_command (arg, from_tty);
536 symbol_file_command (arg, from_tty);
537 if (deprecated_file_changed_hook)
538 deprecated_file_changed_hook (arg);
539 }
540 \f
541
542 /* Locate all mappable sections of a BFD file.
543 table_pp_char is a char * to get it through bfd_map_over_sections;
544 we cast it back to its proper type. */
545
546 static void
547 add_to_section_table (bfd *abfd, struct bfd_section *asect,
548 void *table_pp_char)
549 {
550 struct target_section **table_pp = (struct target_section **) table_pp_char;
551 flagword aflag;
552
553 gdb_assert (abfd == asect->owner);
554
555 /* Check the section flags, but do not discard zero-length sections, since
556 some symbols may still be attached to this section. For instance, we
557 encountered on sparc-solaris 2.10 a shared library with an empty .bss
558 section to which a symbol named "_end" was attached. The address
559 of this symbol still needs to be relocated. */
560 aflag = bfd_section_flags (asect);
561 if (!(aflag & SEC_ALLOC))
562 return;
563
564 (*table_pp)->owner = NULL;
565 (*table_pp)->the_bfd_section = asect;
566 (*table_pp)->addr = bfd_section_vma (asect);
567 (*table_pp)->endaddr = (*table_pp)->addr + bfd_section_size (asect);
568 (*table_pp)++;
569 }
570
571 /* See exec.h. */
572
573 void
574 clear_section_table (struct target_section_table *table)
575 {
576 xfree (table->sections);
577 table->sections = table->sections_end = NULL;
578 }
579
580 /* Resize section table TABLE by ADJUSTMENT.
581 ADJUSTMENT may be negative, in which case the caller must have already
582 removed the sections being deleted.
583 Returns the old size. */
584
585 static int
586 resize_section_table (struct target_section_table *table, int adjustment)
587 {
588 int old_count;
589 int new_count;
590
591 old_count = table->sections_end - table->sections;
592
593 new_count = adjustment + old_count;
594
595 if (new_count)
596 {
597 table->sections = XRESIZEVEC (struct target_section, table->sections,
598 new_count);
599 table->sections_end = table->sections + new_count;
600 }
601 else
602 clear_section_table (table);
603
604 return old_count;
605 }
606
607 /* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR.
608 Returns 0 if OK, 1 on error. */
609
610 int
611 build_section_table (struct bfd *some_bfd, struct target_section **start,
612 struct target_section **end)
613 {
614 unsigned count;
615
616 count = bfd_count_sections (some_bfd);
617 if (*start)
618 xfree (* start);
619 *start = XNEWVEC (struct target_section, count);
620 *end = *start;
621 bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end);
622
623 gdb_assert (*end <= *start + count);
624
625 /* We could realloc the table, but it probably loses for most files. */
626 return 0;
627 }
628
629 /* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
630 current set of target sections. */
631
632 void
633 add_target_sections (void *owner,
634 struct target_section *sections,
635 struct target_section *sections_end)
636 {
637 int count;
638 struct target_section_table *table = current_target_sections;
639
640 count = sections_end - sections;
641
642 if (count > 0)
643 {
644 int space = resize_section_table (table, count);
645 int i;
646
647 for (i = 0; i < count; ++i)
648 {
649 table->sections[space + i] = sections[i];
650 table->sections[space + i].owner = owner;
651 }
652
653 scoped_restore_current_pspace_and_thread restore_pspace_thread;
654 program_space *curr_pspace = current_program_space;
655
656 /* If these are the first file sections we can provide memory
657 from, push the file_stratum target. Must do this in all
658 inferiors sharing the program space. */
659 for (inferior *inf : all_inferiors ())
660 {
661 if (inf->pspace != curr_pspace)
662 continue;
663
664 if (inf->target_is_pushed (&exec_ops))
665 continue;
666
667 switch_to_inferior_no_thread (inf);
668 push_target (&exec_ops);
669 }
670 }
671 }
672
673 /* Add the sections of OBJFILE to the current set of target sections. */
674
675 void
676 add_target_sections_of_objfile (struct objfile *objfile)
677 {
678 struct target_section_table *table = current_target_sections;
679 struct obj_section *osect;
680 int space;
681 unsigned count = 0;
682 struct target_section *ts;
683
684 if (objfile == NULL)
685 return;
686
687 /* Compute the number of sections to add. */
688 ALL_OBJFILE_OSECTIONS (objfile, osect)
689 {
690 if (bfd_section_size (osect->the_bfd_section) == 0)
691 continue;
692 count++;
693 }
694
695 if (count == 0)
696 return;
697
698 space = resize_section_table (table, count);
699
700 ts = table->sections + space;
701
702 ALL_OBJFILE_OSECTIONS (objfile, osect)
703 {
704 if (bfd_section_size (osect->the_bfd_section) == 0)
705 continue;
706
707 gdb_assert (ts < table->sections + space + count);
708
709 ts->addr = obj_section_addr (osect);
710 ts->endaddr = obj_section_endaddr (osect);
711 ts->the_bfd_section = osect->the_bfd_section;
712 ts->owner = (void *) objfile;
713
714 ts++;
715 }
716 }
717
718 /* Remove all target sections owned by OWNER.
719 OWNER must be the same value passed to add_target_sections. */
720
721 void
722 remove_target_sections (void *owner)
723 {
724 struct target_section *src, *dest;
725 struct target_section_table *table = current_target_sections;
726
727 gdb_assert (owner != NULL);
728
729 dest = table->sections;
730 for (src = table->sections; src < table->sections_end; src++)
731 if (src->owner != owner)
732 {
733 /* Keep this section. */
734 if (dest < src)
735 *dest = *src;
736 dest++;
737 }
738
739 /* If we've dropped any sections, resize the section table. */
740 if (dest < src)
741 {
742 int old_count;
743
744 old_count = resize_section_table (table, dest - src);
745
746 /* If we don't have any more sections to read memory from,
747 remove the file_stratum target from the stack of each
748 inferior sharing the program space. */
749 if (old_count + (dest - src) == 0)
750 {
751 scoped_restore_current_pspace_and_thread restore_pspace_thread;
752 program_space *curr_pspace = current_program_space;
753
754 for (inferior *inf : all_inferiors ())
755 {
756 if (inf->pspace != curr_pspace)
757 continue;
758
759 if (inf->pspace->target_sections.sections
760 != inf->pspace->target_sections.sections_end)
761 continue;
762
763 switch_to_inferior_no_thread (inf);
764 unpush_target (&exec_ops);
765 }
766 }
767 }
768 }
769
770 /* See exec.h. */
771
772 void
773 exec_on_vfork ()
774 {
775 if (current_program_space->target_sections.sections
776 != current_program_space->target_sections.sections_end)
777 push_target (&exec_ops);
778 }
779
780 \f
781
782 enum target_xfer_status
783 exec_read_partial_read_only (gdb_byte *readbuf, ULONGEST offset,
784 ULONGEST len, ULONGEST *xfered_len)
785 {
786 /* It's unduly pedantic to refuse to look at the executable for
787 read-only pieces; so do the equivalent of readonly regions aka
788 QTro packet. */
789 if (exec_bfd != NULL)
790 {
791 asection *s;
792 bfd_size_type size;
793 bfd_vma vma;
794
795 for (s = exec_bfd->sections; s; s = s->next)
796 {
797 if ((s->flags & SEC_LOAD) == 0
798 || (s->flags & SEC_READONLY) == 0)
799 continue;
800
801 vma = s->vma;
802 size = bfd_section_size (s);
803 if (vma <= offset && offset < (vma + size))
804 {
805 ULONGEST amt;
806
807 amt = (vma + size) - offset;
808 if (amt > len)
809 amt = len;
810
811 amt = bfd_get_section_contents (exec_bfd, s,
812 readbuf, offset - vma, amt);
813
814 if (amt == 0)
815 return TARGET_XFER_EOF;
816 else
817 {
818 *xfered_len = amt;
819 return TARGET_XFER_OK;
820 }
821 }
822 }
823 }
824
825 /* Indicate failure to find the requested memory block. */
826 return TARGET_XFER_E_IO;
827 }
828
829 /* Return all read-only memory ranges found in the target section
830 table defined by SECTIONS and SECTIONS_END, starting at (and
831 intersected with) MEMADDR for LEN bytes. */
832
833 static std::vector<mem_range>
834 section_table_available_memory (CORE_ADDR memaddr, ULONGEST len,
835 struct target_section *sections,
836 struct target_section *sections_end)
837 {
838 std::vector<mem_range> memory;
839
840 for (target_section *p = sections; p < sections_end; p++)
841 {
842 if ((bfd_section_flags (p->the_bfd_section) & SEC_READONLY) == 0)
843 continue;
844
845 /* Copy the meta-data, adjusted. */
846 if (mem_ranges_overlap (p->addr, p->endaddr - p->addr, memaddr, len))
847 {
848 ULONGEST lo1, hi1, lo2, hi2;
849
850 lo1 = memaddr;
851 hi1 = memaddr + len;
852
853 lo2 = p->addr;
854 hi2 = p->endaddr;
855
856 CORE_ADDR start = std::max (lo1, lo2);
857 int length = std::min (hi1, hi2) - start;
858
859 memory.emplace_back (start, length);
860 }
861 }
862
863 return memory;
864 }
865
866 enum target_xfer_status
867 section_table_read_available_memory (gdb_byte *readbuf, ULONGEST offset,
868 ULONGEST len, ULONGEST *xfered_len)
869 {
870 target_section_table *table = target_get_section_table (&exec_ops);
871 std::vector<mem_range> available_memory
872 = section_table_available_memory (offset, len,
873 table->sections, table->sections_end);
874
875 normalize_mem_ranges (&available_memory);
876
877 for (const mem_range &r : available_memory)
878 {
879 if (mem_ranges_overlap (r.start, r.length, offset, len))
880 {
881 CORE_ADDR end;
882 enum target_xfer_status status;
883
884 /* Get the intersection window. */
885 end = std::min<CORE_ADDR> (offset + len, r.start + r.length);
886
887 gdb_assert (end - offset <= len);
888
889 if (offset >= r.start)
890 status = exec_read_partial_read_only (readbuf, offset,
891 end - offset,
892 xfered_len);
893 else
894 {
895 *xfered_len = r.start - offset;
896 status = TARGET_XFER_UNAVAILABLE;
897 }
898 return status;
899 }
900 }
901
902 *xfered_len = len;
903 return TARGET_XFER_UNAVAILABLE;
904 }
905
906 enum target_xfer_status
907 section_table_xfer_memory_partial (gdb_byte *readbuf, const gdb_byte *writebuf,
908 ULONGEST offset, ULONGEST len,
909 ULONGEST *xfered_len,
910 struct target_section *sections,
911 struct target_section *sections_end,
912 const char *section_name)
913 {
914 int res;
915 struct target_section *p;
916 ULONGEST memaddr = offset;
917 ULONGEST memend = memaddr + len;
918
919 gdb_assert (len != 0);
920
921 for (p = sections; p < sections_end; p++)
922 {
923 struct bfd_section *asect = p->the_bfd_section;
924 bfd *abfd = asect->owner;
925
926 if (section_name && strcmp (section_name, asect->name) != 0)
927 continue; /* not the section we need. */
928 if (memaddr >= p->addr)
929 {
930 if (memend <= p->endaddr)
931 {
932 /* Entire transfer is within this section. */
933 if (writebuf)
934 res = bfd_set_section_contents (abfd, asect,
935 writebuf, memaddr - p->addr,
936 len);
937 else
938 res = bfd_get_section_contents (abfd, asect,
939 readbuf, memaddr - p->addr,
940 len);
941
942 if (res != 0)
943 {
944 *xfered_len = len;
945 return TARGET_XFER_OK;
946 }
947 else
948 return TARGET_XFER_EOF;
949 }
950 else if (memaddr >= p->endaddr)
951 {
952 /* This section ends before the transfer starts. */
953 continue;
954 }
955 else
956 {
957 /* This section overlaps the transfer. Just do half. */
958 len = p->endaddr - memaddr;
959 if (writebuf)
960 res = bfd_set_section_contents (abfd, asect,
961 writebuf, memaddr - p->addr,
962 len);
963 else
964 res = bfd_get_section_contents (abfd, asect,
965 readbuf, memaddr - p->addr,
966 len);
967 if (res != 0)
968 {
969 *xfered_len = len;
970 return TARGET_XFER_OK;
971 }
972 else
973 return TARGET_XFER_EOF;
974 }
975 }
976 }
977
978 return TARGET_XFER_EOF; /* We can't help. */
979 }
980
981 struct target_section_table *
982 exec_target::get_section_table ()
983 {
984 return current_target_sections;
985 }
986
987 enum target_xfer_status
988 exec_target::xfer_partial (enum target_object object,
989 const char *annex, gdb_byte *readbuf,
990 const gdb_byte *writebuf,
991 ULONGEST offset, ULONGEST len, ULONGEST *xfered_len)
992 {
993 struct target_section_table *table = get_section_table ();
994
995 if (object == TARGET_OBJECT_MEMORY)
996 return section_table_xfer_memory_partial (readbuf, writebuf,
997 offset, len, xfered_len,
998 table->sections,
999 table->sections_end,
1000 NULL);
1001 else
1002 return TARGET_XFER_E_IO;
1003 }
1004 \f
1005
1006 void
1007 print_section_info (struct target_section_table *t, bfd *abfd)
1008 {
1009 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
1010 struct target_section *p;
1011 /* FIXME: 16 is not wide enough when gdbarch_addr_bit > 64. */
1012 int wid = gdbarch_addr_bit (gdbarch) <= 32 ? 8 : 16;
1013
1014 printf_filtered ("\t`%ps', ",
1015 styled_string (file_name_style.style (),
1016 bfd_get_filename (abfd)));
1017 wrap_here (" ");
1018 printf_filtered (_("file type %s.\n"), bfd_get_target (abfd));
1019 if (abfd == exec_bfd)
1020 {
1021 /* gcc-3.4 does not like the initialization in
1022 <p == t->sections_end>. */
1023 bfd_vma displacement = 0;
1024 bfd_vma entry_point;
1025
1026 for (p = t->sections; p < t->sections_end; p++)
1027 {
1028 struct bfd_section *psect = p->the_bfd_section;
1029
1030 if ((bfd_section_flags (psect) & (SEC_ALLOC | SEC_LOAD))
1031 != (SEC_ALLOC | SEC_LOAD))
1032 continue;
1033
1034 if (bfd_section_vma (psect) <= abfd->start_address
1035 && abfd->start_address < (bfd_section_vma (psect)
1036 + bfd_section_size (psect)))
1037 {
1038 displacement = p->addr - bfd_section_vma (psect);
1039 break;
1040 }
1041 }
1042 if (p == t->sections_end)
1043 warning (_("Cannot find section for the entry point of %ps."),
1044 styled_string (file_name_style.style (),
1045 bfd_get_filename (abfd)));
1046
1047 entry_point = gdbarch_addr_bits_remove (gdbarch,
1048 bfd_get_start_address (abfd)
1049 + displacement);
1050 printf_filtered (_("\tEntry point: %s\n"),
1051 paddress (gdbarch, entry_point));
1052 }
1053 for (p = t->sections; p < t->sections_end; p++)
1054 {
1055 struct bfd_section *psect = p->the_bfd_section;
1056 bfd *pbfd = psect->owner;
1057
1058 printf_filtered ("\t%s", hex_string_custom (p->addr, wid));
1059 printf_filtered (" - %s", hex_string_custom (p->endaddr, wid));
1060
1061 /* FIXME: A format of "08l" is not wide enough for file offsets
1062 larger than 4GB. OTOH, making it "016l" isn't desirable either
1063 since most output will then be much wider than necessary. It
1064 may make sense to test the size of the file and choose the
1065 format string accordingly. */
1066 /* FIXME: i18n: Need to rewrite this sentence. */
1067 if (info_verbose)
1068 printf_filtered (" @ %s",
1069 hex_string_custom (psect->filepos, 8));
1070 printf_filtered (" is %s", bfd_section_name (psect));
1071 if (pbfd != abfd)
1072 printf_filtered (" in %ps",
1073 styled_string (file_name_style.style (),
1074 bfd_get_filename (pbfd)));
1075 printf_filtered ("\n");
1076 }
1077 }
1078
1079 void
1080 exec_target::files_info ()
1081 {
1082 if (exec_bfd)
1083 print_section_info (current_target_sections, exec_bfd);
1084 else
1085 puts_filtered (_("\t<no file loaded>\n"));
1086 }
1087
1088 static void
1089 set_section_command (const char *args, int from_tty)
1090 {
1091 struct target_section *p;
1092 const char *secname;
1093 unsigned seclen;
1094 unsigned long secaddr;
1095 char secprint[100];
1096 long offset;
1097 struct target_section_table *table;
1098
1099 if (args == 0)
1100 error (_("Must specify section name and its virtual address"));
1101
1102 /* Parse out section name. */
1103 for (secname = args; !isspace (*args); args++);
1104 seclen = args - secname;
1105
1106 /* Parse out new virtual address. */
1107 secaddr = parse_and_eval_address (args);
1108
1109 table = current_target_sections;
1110 for (p = table->sections; p < table->sections_end; p++)
1111 {
1112 if (!strncmp (secname, bfd_section_name (p->the_bfd_section), seclen)
1113 && bfd_section_name (p->the_bfd_section)[seclen] == '\0')
1114 {
1115 offset = secaddr - p->addr;
1116 p->addr += offset;
1117 p->endaddr += offset;
1118 if (from_tty)
1119 exec_ops.files_info ();
1120 return;
1121 }
1122 }
1123 if (seclen >= sizeof (secprint))
1124 seclen = sizeof (secprint) - 1;
1125 strncpy (secprint, secname, seclen);
1126 secprint[seclen] = '\0';
1127 error (_("Section %s not found"), secprint);
1128 }
1129
1130 /* If we can find a section in FILENAME with BFD index INDEX, adjust
1131 it to ADDRESS. */
1132
1133 void
1134 exec_set_section_address (const char *filename, int index, CORE_ADDR address)
1135 {
1136 struct target_section *p;
1137 struct target_section_table *table;
1138
1139 table = current_target_sections;
1140 for (p = table->sections; p < table->sections_end; p++)
1141 {
1142 if (filename_cmp (filename, p->the_bfd_section->owner->filename) == 0
1143 && index == p->the_bfd_section->index)
1144 {
1145 p->endaddr += address - p->addr;
1146 p->addr = address;
1147 }
1148 }
1149 }
1150
1151 bool
1152 exec_target::has_memory ()
1153 {
1154 /* We can provide memory if we have any file/target sections to read
1155 from. */
1156 return (current_target_sections->sections
1157 != current_target_sections->sections_end);
1158 }
1159
1160 char *
1161 exec_target::make_corefile_notes (bfd *obfd, int *note_size)
1162 {
1163 error (_("Can't create a corefile"));
1164 }
1165
1166 int
1167 exec_target::find_memory_regions (find_memory_region_ftype func, void *data)
1168 {
1169 return objfile_find_memory_regions (this, func, data);
1170 }
1171
1172 void _initialize_exec ();
1173 void
1174 _initialize_exec ()
1175 {
1176 struct cmd_list_element *c;
1177
1178 if (!dbx_commands)
1179 {
1180 c = add_cmd ("file", class_files, file_command, _("\
1181 Use FILE as program to be debugged.\n\
1182 It is read for its symbols, for getting the contents of pure memory,\n\
1183 and it is the program executed when you use the `run' command.\n\
1184 If FILE cannot be found as specified, your execution directory path\n\
1185 ($PATH) is searched for a command of that name.\n\
1186 No arg means to have no executable file and no symbols."), &cmdlist);
1187 set_cmd_completer (c, filename_completer);
1188 }
1189
1190 c = add_cmd ("exec-file", class_files, exec_file_command, _("\
1191 Use FILE as program for getting contents of pure memory.\n\
1192 If FILE cannot be found as specified, your execution directory path\n\
1193 is searched for a command of that name.\n\
1194 No arg means have no executable file."), &cmdlist);
1195 set_cmd_completer (c, filename_completer);
1196
1197 add_com ("section", class_files, set_section_command, _("\
1198 Change the base address of section SECTION of the exec file to ADDR.\n\
1199 This can be used if the exec file does not contain section addresses,\n\
1200 (such as in the a.out format), or when the addresses specified in the\n\
1201 file itself are wrong. Each section must be changed separately. The\n\
1202 ``info files'' command lists all the sections and their addresses."));
1203
1204 add_setshow_boolean_cmd ("write", class_support, &write_files, _("\
1205 Set writing into executable and core files."), _("\
1206 Show writing into executable and core files."), NULL,
1207 NULL,
1208 show_write_files,
1209 &setlist, &showlist);
1210
1211 add_setshow_enum_cmd ("exec-file-mismatch", class_support,
1212 exec_file_mismatch_names,
1213 &exec_file_mismatch,
1214 _("\
1215 Set exec-file-mismatch handling (ask|warn|off)."),
1216 _("\
1217 Show exec-file-mismatch handling (ask|warn|off)."),
1218 _("\
1219 Specifies how to handle a mismatch between the current exec-file name\n\
1220 loaded by GDB and the exec-file name automatically determined when attaching\n\
1221 to a process:\n\n\
1222 ask - warn the user and ask whether to load the determined exec-file.\n\
1223 warn - warn the user, but do not change the exec-file.\n\
1224 off - do not check for mismatch."),
1225 set_exec_file_mismatch_command,
1226 show_exec_file_mismatch_command,
1227 &setlist, &showlist);
1228
1229 add_target (exec_target_info, exec_target_open, filename_completer);
1230 }
This page took 0.053306 seconds and 5 git commands to generate.