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