Fix building Loongarch BFD with a 32-bit compiler
[binutils-gdb.git] / gdb / exec.c
blob3d392b198a1bc185d1b8c183408837d076cfd3f4
1 /* Work with executable files, for GDB.
3 Copyright (C) 1988-2024 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
20 #include "frame.h"
21 #include "inferior.h"
22 #include "target.h"
23 #include "cli/cli-cmds.h"
24 #include "language.h"
25 #include "filenames.h"
26 #include "symfile.h"
27 #include "objfiles.h"
28 #include "completer.h"
29 #include "value.h"
30 #include "exec.h"
31 #include "observable.h"
32 #include "arch-utils.h"
33 #include "gdbthread.h"
34 #include "progspace.h"
35 #include "progspace-and-thread.h"
36 #include "gdb_bfd.h"
37 #include "gcore.h"
38 #include "source.h"
39 #include "build-id.h"
41 #include <fcntl.h>
42 #include "readline/tilde.h"
43 #include "gdbcore.h"
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 #include "gdbsupport/buildargv.h"
53 void (*deprecated_file_changed_hook) (const char *);
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.")
62 /* The target vector for executable files. */
64 struct exec_target final : public target_ops
66 const target_info &info () const override
67 { return exec_target_info; }
69 strata stratum () const override { return file_stratum; }
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 void files_info () override;
80 bool has_memory () override;
81 gdb::unique_xmalloc_ptr<char> make_corefile_notes (bfd *, int *) override;
82 int find_memory_regions (find_memory_region_ftype func, void *data) override;
85 static exec_target exec_ops;
87 /* How to handle a mismatch between the current exec file and the exec
88 file determined from target. */
90 static const char *const exec_file_mismatch_names[]
91 = {"ask", "warn", "off", NULL };
92 enum exec_file_mismatch_mode
94 exec_file_mismatch_ask, exec_file_mismatch_warn, exec_file_mismatch_off
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;
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)
105 gdb_printf (file,
106 _("exec-file-mismatch handling is currently \"%s\".\n"),
107 exec_file_mismatch_names[exec_file_mismatch_mode]);
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)
115 for (enum exec_file_mismatch_mode mode = exec_file_mismatch_ask;
117 mode = static_cast<enum exec_file_mismatch_mode>(1 + (int) mode))
119 if (strcmp (exec_file_mismatch, exec_file_mismatch_names[mode]) == 0)
121 exec_file_mismatch_mode = mode;
122 return;
124 if (mode == exec_file_mismatch_off)
125 internal_error (_("Unrecognized exec-file-mismatch setting: \"%s\""),
126 exec_file_mismatch);
130 /* Whether to open exec and core files read-only or read-write. */
132 bool write_files = false;
133 static void
134 show_write_files (struct ui_file *file, int from_tty,
135 struct cmd_list_element *c, const char *value)
137 gdb_printf (file, _("Writing into executable and core files is %s.\n"),
138 value);
142 static void
143 exec_target_open (const char *args, int from_tty)
145 target_preopen (from_tty);
146 exec_file_attach (args, from_tty);
149 /* This is the target_close implementation. Clears all target
150 sections and closes all executable bfds from all program spaces. */
152 void
153 exec_target::close ()
155 for (struct program_space *ss : program_spaces)
157 ss->clear_target_sections ();
158 ss->exec_close ();
162 /* See gdbcore.h. */
164 void
165 try_open_exec_file (const char *exec_file_host, struct inferior *inf,
166 symfile_add_flags add_flags)
168 struct gdb_exception prev_err;
170 /* exec_file_attach and symbol_file_add_main may throw an error if the file
171 cannot be opened either locally or remotely.
173 This happens for example, when the file is first found in the local
174 sysroot (above), and then disappears (a TOCTOU race), or when it doesn't
175 exist in the target filesystem, or when the file does exist, but
176 is not readable.
178 Even without a symbol file, the remote-based debugging session should
179 continue normally instead of ending abruptly. Hence we catch thrown
180 errors/exceptions in the following code. */
183 /* We must do this step even if exec_file_host is NULL, so that
184 exec_file_attach will clear state. */
185 exec_file_attach (exec_file_host, add_flags & SYMFILE_VERBOSE);
187 catch (gdb_exception_error &err)
189 if (err.message != NULL)
190 warning ("%s", err.what ());
192 prev_err = std::move (err);
195 if (exec_file_host != NULL)
199 symbol_file_add_main (exec_file_host, add_flags);
201 catch (const gdb_exception_error &err)
203 if (prev_err != err)
204 warning ("%s", err.what ());
209 /* See gdbcore.h. */
211 void
212 validate_exec_file (int from_tty)
214 /* If user asked to ignore the mismatch, do nothing. */
215 if (exec_file_mismatch_mode == exec_file_mismatch_off)
216 return;
218 const char *current_exec_file = get_exec_file (0);
219 struct inferior *inf = current_inferior ();
220 /* Try to determine a filename from the process itself. */
221 const char *pid_exec_file = target_pid_to_exec_file (inf->pid);
222 bool build_id_mismatch = false;
224 /* If we cannot validate the exec file, return. */
225 if (current_exec_file == NULL || pid_exec_file == NULL)
226 return;
228 /* Try validating via build-id, if available. This is the most
229 reliable check. */
231 /* In case current_exec_file was changed, reopen_exec_file ensures
232 an up to date build_id (will do nothing if the file timestamp
233 did not change). If exec file changed, reopen_exec_file has
234 allocated another file name, so get_exec_file again. */
235 reopen_exec_file ();
236 current_exec_file = get_exec_file (0);
238 const bfd_build_id *exec_file_build_id
239 = build_id_bfd_get (current_program_space->exec_bfd ());
240 if (exec_file_build_id != nullptr)
242 /* Prepend the target prefix, to force gdb_bfd_open to open the
243 file on the remote file system (if indeed remote). */
244 std::string target_pid_exec_file
245 = std::string (TARGET_SYSROOT_PREFIX) + pid_exec_file;
247 gdb_bfd_ref_ptr abfd (gdb_bfd_open (target_pid_exec_file.c_str (),
248 gnutarget, -1, false));
249 if (abfd != nullptr)
251 const bfd_build_id *target_exec_file_build_id
252 = build_id_bfd_get (abfd.get ());
254 if (target_exec_file_build_id != nullptr)
256 if (exec_file_build_id->size == target_exec_file_build_id->size
257 && memcmp (exec_file_build_id->data,
258 target_exec_file_build_id->data,
259 exec_file_build_id->size) == 0)
261 /* Match. */
262 return;
264 else
265 build_id_mismatch = true;
270 if (build_id_mismatch)
272 std::string exec_file_target (pid_exec_file);
274 /* In case the exec file is not local, exec_file_target has to point at
275 the target file system. */
276 if (is_target_filename (current_exec_file) && !target_filesystem_is_local ())
277 exec_file_target = TARGET_SYSROOT_PREFIX + exec_file_target;
279 warning
280 (_("Build ID mismatch between current exec-file %ps\n"
281 "and automatically determined exec-file %ps\n"
282 "exec-file-mismatch handling is currently \"%s\""),
283 styled_string (file_name_style.style (), current_exec_file),
284 styled_string (file_name_style.style (), exec_file_target.c_str ()),
285 exec_file_mismatch_names[exec_file_mismatch_mode]);
286 if (exec_file_mismatch_mode == exec_file_mismatch_ask)
288 symfile_add_flags add_flags = SYMFILE_MAINLINE;
289 if (from_tty)
291 add_flags |= SYMFILE_VERBOSE;
292 add_flags |= SYMFILE_ALWAYS_CONFIRM;
296 symbol_file_add_main (exec_file_target.c_str (), add_flags);
297 exec_file_attach (exec_file_target.c_str (), from_tty);
299 catch (gdb_exception_error &err)
301 warning (_("loading %ps %s"),
302 styled_string (file_name_style.style (),
303 exec_file_target.c_str ()),
304 err.message != NULL ? err.what () : "error");
310 /* See gdbcore.h. */
312 void
313 exec_file_locate_attach (int pid, int defer_bp_reset, int from_tty)
315 const char *exec_file_target;
316 symfile_add_flags add_flags = 0;
318 /* Do nothing if we already have an executable filename. */
319 if (get_exec_file (0) != NULL)
320 return;
322 /* Try to determine a filename from the process itself. */
323 exec_file_target = target_pid_to_exec_file (pid);
324 if (exec_file_target == NULL)
326 warning (_("No executable has been specified and target does not "
327 "support\n"
328 "determining executable automatically. "
329 "Try using the \"file\" command."));
330 return;
333 gdb::unique_xmalloc_ptr<char> exec_file_host
334 = exec_file_find (exec_file_target, NULL);
336 if (defer_bp_reset)
337 add_flags |= SYMFILE_DEFER_BP_RESET;
339 if (from_tty)
340 add_flags |= SYMFILE_VERBOSE;
342 /* Attempt to open the exec file. */
343 try_open_exec_file (exec_file_host.get (), current_inferior (), add_flags);
346 /* Set FILENAME as the new exec file.
348 This function is intended to be behave essentially the same
349 as exec_file_command, except that the latter will detect when
350 a target is being debugged, and will ask the user whether it
351 should be shut down first. (If the answer is "no", then the
352 new file is ignored.)
354 This file is used by exec_file_command, to do the work of opening
355 and processing the exec file after any prompting has happened.
357 And, it is used by child_attach, when the attach command was
358 given a pid but not a exec pathname, and the attach command could
359 figure out the pathname from the pid. (In this case, we shouldn't
360 ask the user whether the current target should be shut down --
361 we're supplying the exec pathname late for good reason.) */
363 void
364 exec_file_attach (const char *filename, int from_tty)
366 /* First, acquire a reference to the exec_bfd. We release
367 this at the end of the function; but acquiring it now lets the
368 BFD cache return it if this call refers to the same file. */
369 gdb_bfd_ref_ptr exec_bfd_holder
370 = gdb_bfd_ref_ptr::new_reference (current_program_space->exec_bfd ());
372 /* Remove any previous exec file. */
373 current_program_space->exec_close ();
375 /* Now open and digest the file the user requested, if any. */
377 if (!filename)
379 if (from_tty)
380 gdb_printf (_("No executable file now.\n"));
382 set_gdbarch_from_file (NULL);
384 else
386 int load_via_target = 0;
387 const char *scratch_pathname, *canonical_pathname;
388 int scratch_chan;
389 char **matching;
391 if (is_target_filename (filename))
393 if (target_filesystem_is_local ())
394 filename += strlen (TARGET_SYSROOT_PREFIX);
395 else
396 load_via_target = 1;
399 gdb::unique_xmalloc_ptr<char> canonical_storage, scratch_storage;
400 if (load_via_target)
402 /* gdb_bfd_fopen does not support "target:" filenames. */
403 if (write_files)
404 warning (_("writing into executable files is "
405 "not supported for %s sysroots"),
406 TARGET_SYSROOT_PREFIX);
408 scratch_pathname = filename;
409 scratch_chan = -1;
410 canonical_pathname = scratch_pathname;
412 else
414 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST,
415 filename, write_files ?
416 O_RDWR | O_BINARY : O_RDONLY | O_BINARY,
417 &scratch_storage);
418 #if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__)
419 if (scratch_chan < 0)
421 int first_errno = errno;
422 char *exename = (char *) alloca (strlen (filename) + 5);
424 strcat (strcpy (exename, filename), ".exe");
425 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST,
426 exename, write_files ?
427 O_RDWR | O_BINARY
428 : O_RDONLY | O_BINARY,
429 &scratch_storage);
430 if (scratch_chan < 0)
431 errno = first_errno;
433 #endif
434 if (scratch_chan < 0)
435 perror_with_name (filename);
437 scratch_pathname = scratch_storage.get ();
439 /* gdb_bfd_open (and its variants) prefers canonicalized
440 pathname for better BFD caching. */
441 canonical_storage = gdb_realpath (scratch_pathname);
442 canonical_pathname = canonical_storage.get ();
445 gdb_bfd_ref_ptr temp;
446 if (write_files && !load_via_target)
447 temp = gdb_bfd_fopen (canonical_pathname, gnutarget,
448 FOPEN_RUB, scratch_chan);
449 else
450 temp = gdb_bfd_open (canonical_pathname, gnutarget, scratch_chan);
451 current_program_space->set_exec_bfd (std::move (temp));
453 if (!current_program_space->exec_bfd ())
455 error (_("\"%s\": could not open as an executable file: %s."),
456 scratch_pathname, bfd_errmsg (bfd_get_error ()));
459 /* gdb_realpath_keepfile resolves symlinks on the local
460 filesystem and so cannot be used for "target:" files. */
461 gdb_assert (current_program_space->exec_filename == nullptr);
462 if (load_via_target)
463 current_program_space->exec_filename
464 = (make_unique_xstrdup
465 (bfd_get_filename (current_program_space->exec_bfd ())));
466 else
467 current_program_space->exec_filename
468 = make_unique_xstrdup (gdb_realpath_keepfile
469 (scratch_pathname).c_str ());
471 if (!bfd_check_format_matches (current_program_space->exec_bfd (),
472 bfd_object, &matching))
474 /* Make sure to close exec_bfd, or else "run" might try to use
475 it. */
476 current_program_space->exec_close ();
477 error (_("\"%s\": not in executable format: %s"), scratch_pathname,
478 gdb_bfd_errmsg (bfd_get_error (), matching).c_str ());
481 std::vector<target_section> sections
482 = build_section_table (current_program_space->exec_bfd ());
484 current_program_space->ebfd_mtime
485 = bfd_get_mtime (current_program_space->exec_bfd ());
487 validate_files ();
489 set_gdbarch_from_file (current_program_space->exec_bfd ());
491 /* Add the executable's sections to the current address spaces'
492 list of sections. This possibly pushes the exec_ops
493 target. */
494 current_program_space->add_target_sections
495 (current_program_space->ebfd.get (), sections);
498 /* Are are loading the same executable? */
499 bfd *prev_bfd = exec_bfd_holder.get ();
500 bfd *curr_bfd = current_program_space->exec_bfd ();
501 bool reload_p = (((prev_bfd != nullptr) == (curr_bfd != nullptr))
502 && (prev_bfd == nullptr
503 || (strcmp (bfd_get_filename (prev_bfd),
504 bfd_get_filename (curr_bfd)) == 0)));
506 gdb::observers::executable_changed.notify (current_program_space, reload_p);
509 /* Process the first arg in ARGS as the new exec file.
511 Note that we have to explicitly ignore additional args, since we can
512 be called from file_command(), which also calls symbol_file_command()
513 which can take multiple args.
515 If ARGS is NULL, we just want to close the exec file. */
517 static void
518 exec_file_command (const char *args, int from_tty)
520 if (from_tty && target_has_execution ()
521 && !query (_("A program is being debugged already.\n"
522 "Are you sure you want to change the file? ")))
523 error (_("File not changed."));
525 if (args)
527 /* Scan through the args and pick up the first non option arg
528 as the filename. */
530 gdb_argv built_argv (args);
531 char **argv = built_argv.get ();
533 for (; (*argv != NULL) && (**argv == '-'); argv++)
536 if (*argv == NULL)
537 error (_("No executable file name was specified"));
539 gdb::unique_xmalloc_ptr<char> filename (tilde_expand (*argv));
540 exec_file_attach (filename.get (), from_tty);
542 else
543 exec_file_attach (NULL, from_tty);
546 /* Set both the exec file and the symbol file, in one command.
547 What a novelty. Why did GDB go through four major releases before this
548 command was added? */
550 static void
551 file_command (const char *arg, int from_tty)
553 /* FIXME, if we lose on reading the symbol file, we should revert
554 the exec file, but that's rough. */
555 exec_file_command (arg, from_tty);
556 symbol_file_command (arg, from_tty);
557 if (deprecated_file_changed_hook)
558 deprecated_file_changed_hook (arg);
562 /* Builds a section table, given args BFD, TABLE. */
564 std::vector<target_section>
565 build_section_table (struct bfd *some_bfd)
567 std::vector<target_section> table;
569 for (asection *asect : gdb_bfd_sections (some_bfd))
571 flagword aflag;
573 /* Check the section flags, but do not discard zero-length
574 sections, since some symbols may still be attached to this
575 section. For instance, we encountered on sparc-solaris 2.10
576 a shared library with an empty .bss section to which a symbol
577 named "_end" was attached. The address of this symbol still
578 needs to be relocated. */
579 aflag = bfd_section_flags (asect);
580 if (!(aflag & SEC_ALLOC))
581 continue;
583 table.emplace_back (bfd_section_vma (asect),
584 bfd_section_vma (asect) + bfd_section_size (asect),
585 asect);
588 return table;
591 /* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
592 current set of target sections. */
594 void
595 program_space::add_target_sections
596 (target_section_owner owner, const std::vector<target_section> &sections)
598 if (!sections.empty ())
600 for (const target_section &s : sections)
602 m_target_sections.push_back (s);
603 m_target_sections.back ().owner = owner;
606 scoped_restore_current_pspace_and_thread restore_pspace_thread;
608 /* If these are the first file sections we can provide memory
609 from, push the file_stratum target. Must do this in all
610 inferiors sharing the program space. */
611 for (inferior *inf : all_inferiors ())
613 if (inf->pspace != this)
614 continue;
616 if (inf->target_is_pushed (&exec_ops))
617 continue;
619 switch_to_inferior_no_thread (inf);
620 inf->push_target (&exec_ops);
625 /* Add the sections of OBJFILE to the current set of target sections. */
627 void
628 program_space::add_target_sections (struct objfile *objfile)
630 gdb_assert (objfile != nullptr);
632 /* Compute the number of sections to add. */
633 for (obj_section *osect : objfile->sections ())
635 if (bfd_section_size (osect->the_bfd_section) == 0)
636 continue;
638 m_target_sections.emplace_back (osect->addr (), osect->endaddr (),
639 osect->the_bfd_section, objfile);
643 /* Remove all target sections owned by OWNER.
644 OWNER must be the same value passed to add_target_sections. */
646 void
647 program_space::remove_target_sections (target_section_owner owner)
649 gdb_assert (owner.v () != nullptr);
651 auto it = std::remove_if (m_target_sections.begin (),
652 m_target_sections.end (),
653 [&] (target_section &sect)
655 return sect.owner.v () == owner.v ();
657 m_target_sections.erase (it, m_target_sections.end ());
659 /* If we don't have any more sections to read memory from,
660 remove the file_stratum target from the stack of each
661 inferior sharing the program space. */
662 if (m_target_sections.empty ())
664 scoped_restore_current_pspace_and_thread restore_pspace_thread;
666 for (inferior *inf : all_inferiors ())
668 if (inf->pspace != this)
669 continue;
671 switch_to_inferior_no_thread (inf);
672 inf->unpush_target (&exec_ops);
677 /* See exec.h. */
679 void
680 exec_on_vfork (inferior *vfork_child)
682 if (!vfork_child->pspace->target_sections ().empty ())
683 vfork_child->push_target (&exec_ops);
688 enum target_xfer_status
689 exec_read_partial_read_only (gdb_byte *readbuf, ULONGEST offset,
690 ULONGEST len, ULONGEST *xfered_len)
692 /* It's unduly pedantic to refuse to look at the executable for
693 read-only pieces; so do the equivalent of readonly regions aka
694 QTro packet. */
695 if (current_program_space->exec_bfd () != NULL)
697 asection *s;
698 bfd_size_type size;
699 bfd_vma vma;
701 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
703 if ((s->flags & SEC_LOAD) == 0
704 || (s->flags & SEC_READONLY) == 0)
705 continue;
707 vma = s->vma;
708 size = bfd_section_size (s);
709 if (vma <= offset && offset < (vma + size))
711 ULONGEST amt;
713 amt = (vma + size) - offset;
714 if (amt > len)
715 amt = len;
717 amt = bfd_get_section_contents (current_program_space->exec_bfd (), s,
718 readbuf, offset - vma, amt);
720 if (amt == 0)
721 return TARGET_XFER_EOF;
722 else
724 *xfered_len = amt;
725 return TARGET_XFER_OK;
731 /* Indicate failure to find the requested memory block. */
732 return TARGET_XFER_E_IO;
735 /* Return all read-only memory ranges found in the target section
736 table defined by SECTIONS and SECTIONS_END, starting at (and
737 intersected with) MEMADDR for LEN bytes. */
739 static std::vector<mem_range>
740 section_table_available_memory (CORE_ADDR memaddr, ULONGEST len,
741 const std::vector<target_section> &sections)
743 std::vector<mem_range> memory;
745 for (const target_section &p : sections)
747 if ((bfd_section_flags (p.the_bfd_section) & SEC_READONLY) == 0)
748 continue;
750 /* Copy the meta-data, adjusted. */
751 if (mem_ranges_overlap (p.addr, p.endaddr - p.addr, memaddr, len))
753 ULONGEST lo1, hi1, lo2, hi2;
755 lo1 = memaddr;
756 hi1 = memaddr + len;
758 lo2 = p.addr;
759 hi2 = p.endaddr;
761 CORE_ADDR start = std::max (lo1, lo2);
762 int length = std::min (hi1, hi2) - start;
764 memory.emplace_back (start, length);
768 return memory;
771 enum target_xfer_status
772 section_table_read_available_memory (gdb_byte *readbuf, ULONGEST offset,
773 ULONGEST len, ULONGEST *xfered_len)
775 const std::vector<target_section> *table
776 = target_get_section_table (current_inferior ()->top_target ());
777 std::vector<mem_range> available_memory
778 = section_table_available_memory (offset, len, *table);
780 normalize_mem_ranges (&available_memory);
782 for (const mem_range &r : available_memory)
784 if (mem_ranges_overlap (r.start, r.length, offset, len))
786 CORE_ADDR end;
787 enum target_xfer_status status;
789 /* Get the intersection window. */
790 end = std::min<CORE_ADDR> (offset + len, r.start + r.length);
792 gdb_assert (end - offset <= len);
794 if (offset >= r.start)
795 status = exec_read_partial_read_only (readbuf, offset,
796 end - offset,
797 xfered_len);
798 else
800 *xfered_len = r.start - offset;
801 status = TARGET_XFER_UNAVAILABLE;
803 return status;
807 *xfered_len = len;
808 return TARGET_XFER_UNAVAILABLE;
811 enum target_xfer_status
812 section_table_xfer_memory_partial (gdb_byte *readbuf, const gdb_byte *writebuf,
813 ULONGEST offset, ULONGEST len,
814 ULONGEST *xfered_len,
815 const std::vector<target_section> &sections,
816 gdb::function_view<bool
817 (const struct target_section *)> match_cb)
819 int res;
820 ULONGEST memaddr = offset;
821 ULONGEST memend = memaddr + len;
823 gdb_assert (len != 0);
825 for (const target_section &p : sections)
827 struct bfd_section *asect = p.the_bfd_section;
828 bfd *abfd = asect->owner;
830 if (match_cb != nullptr && !match_cb (&p))
831 continue; /* not the section we need. */
832 if (memaddr >= p.addr)
834 if (memend <= p.endaddr)
836 /* Entire transfer is within this section. */
837 if (writebuf)
838 res = bfd_set_section_contents (abfd, asect,
839 writebuf, memaddr - p.addr,
840 len);
841 else
842 res = bfd_get_section_contents (abfd, asect,
843 readbuf, memaddr - p.addr,
844 len);
846 if (res != 0)
848 *xfered_len = len;
849 return TARGET_XFER_OK;
851 else
852 return TARGET_XFER_EOF;
854 else if (memaddr >= p.endaddr)
856 /* This section ends before the transfer starts. */
857 continue;
859 else
861 /* This section overlaps the transfer. Just do half. */
862 len = p.endaddr - memaddr;
863 if (writebuf)
864 res = bfd_set_section_contents (abfd, asect,
865 writebuf, memaddr - p.addr,
866 len);
867 else
868 res = bfd_get_section_contents (abfd, asect,
869 readbuf, memaddr - p.addr,
870 len);
871 if (res != 0)
873 *xfered_len = len;
874 return TARGET_XFER_OK;
876 else
877 return TARGET_XFER_EOF;
882 return TARGET_XFER_EOF; /* We can't help. */
885 enum target_xfer_status
886 exec_target::xfer_partial (enum target_object object,
887 const char *annex, gdb_byte *readbuf,
888 const gdb_byte *writebuf,
889 ULONGEST offset, ULONGEST len, ULONGEST *xfered_len)
891 const std::vector<target_section> *table = target_get_section_table (this);
893 if (object == TARGET_OBJECT_MEMORY)
894 return section_table_xfer_memory_partial (readbuf, writebuf,
895 offset, len, xfered_len,
896 *table);
897 else
898 return TARGET_XFER_E_IO;
902 void
903 print_section_info (const std::vector<target_section> *t, bfd *abfd)
905 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
906 /* FIXME: 16 is not wide enough when gdbarch_addr_bit > 64. */
907 int wid = gdbarch_addr_bit (gdbarch) <= 32 ? 8 : 16;
909 gdb_printf ("\t`%ps', ",
910 styled_string (file_name_style.style (),
911 bfd_get_filename (abfd)));
912 gdb_stdout->wrap_here (8);
913 gdb_printf (_("file type %s.\n"), bfd_get_target (abfd));
914 if (abfd == current_program_space->exec_bfd ())
916 /* gcc-3.4 does not like the initialization in
917 <p == t->sections_end>. */
918 bfd_vma displacement = 0;
919 bfd_vma entry_point;
920 bool found = false;
922 for (const target_section &p : *t)
924 struct bfd_section *psect = p.the_bfd_section;
926 if ((bfd_section_flags (psect) & (SEC_ALLOC | SEC_LOAD))
927 != (SEC_ALLOC | SEC_LOAD))
928 continue;
930 if (bfd_section_vma (psect) <= abfd->start_address
931 && abfd->start_address < (bfd_section_vma (psect)
932 + bfd_section_size (psect)))
934 displacement = p.addr - bfd_section_vma (psect);
935 found = true;
936 break;
939 if (!found)
940 warning (_("Cannot find section for the entry point of %ps."),
941 styled_string (file_name_style.style (),
942 bfd_get_filename (abfd)));
944 entry_point = gdbarch_addr_bits_remove (gdbarch,
945 bfd_get_start_address (abfd)
946 + displacement);
947 gdb_printf (_("\tEntry point: %s\n"),
948 paddress (gdbarch, entry_point));
950 for (const target_section &p : *t)
952 struct bfd_section *psect = p.the_bfd_section;
953 bfd *pbfd = psect->owner;
955 gdb_printf ("\t%s", hex_string_custom (p.addr, wid));
956 gdb_printf (" - %s", hex_string_custom (p.endaddr, wid));
958 /* FIXME: A format of "08l" is not wide enough for file offsets
959 larger than 4GB. OTOH, making it "016l" isn't desirable either
960 since most output will then be much wider than necessary. It
961 may make sense to test the size of the file and choose the
962 format string accordingly. */
963 /* FIXME: i18n: Need to rewrite this sentence. */
964 if (info_verbose)
965 gdb_printf (" @ %s",
966 hex_string_custom (psect->filepos, 8));
967 gdb_printf (" is %s", bfd_section_name (psect));
968 if (pbfd != abfd)
969 gdb_printf (" in %ps",
970 styled_string (file_name_style.style (),
971 bfd_get_filename (pbfd)));
972 gdb_printf ("\n");
976 void
977 exec_target::files_info ()
979 if (current_program_space->exec_bfd ())
980 print_section_info (&current_program_space->target_sections (),
981 current_program_space->exec_bfd ());
982 else
983 gdb_puts (_("\t<no file loaded>\n"));
986 static void
987 set_section_command (const char *args, int from_tty)
989 const char *secname;
991 if (args == 0)
992 error (_("Must specify section name and its virtual address"));
994 /* Parse out section name. */
995 for (secname = args; !isspace (*args); args++);
996 unsigned seclen = args - secname;
998 /* Parse out new virtual address. */
999 CORE_ADDR secaddr = parse_and_eval_address (args);
1001 for (target_section &p : current_program_space->target_sections ())
1003 if (!strncmp (secname, bfd_section_name (p.the_bfd_section), seclen)
1004 && bfd_section_name (p.the_bfd_section)[seclen] == '\0')
1006 long offset = secaddr - p.addr;
1007 p.addr += offset;
1008 p.endaddr += offset;
1009 if (from_tty)
1010 exec_ops.files_info ();
1011 return;
1015 std::string secprint (secname, seclen);
1016 error (_("Section %s not found"), secprint.c_str ());
1019 /* If we can find a section in FILENAME with BFD index INDEX, adjust
1020 it to ADDRESS. */
1022 void
1023 exec_set_section_address (const char *filename, int index, CORE_ADDR address)
1025 for (target_section &p : current_program_space->target_sections ())
1027 if (filename_cmp (filename,
1028 bfd_get_filename (p.the_bfd_section->owner)) == 0
1029 && index == p.the_bfd_section->index)
1031 p.endaddr += address - p.addr;
1032 p.addr = address;
1037 bool
1038 exec_target::has_memory ()
1040 /* We can provide memory if we have any file/target sections to read
1041 from. */
1042 return !current_program_space->target_sections ().empty ();
1045 gdb::unique_xmalloc_ptr<char>
1046 exec_target::make_corefile_notes (bfd *obfd, int *note_size)
1048 error (_("Can't create a corefile"));
1052 exec_target::find_memory_regions (find_memory_region_ftype func, void *data)
1054 return objfile_find_memory_regions (this, func, data);
1057 void _initialize_exec ();
1058 void
1059 _initialize_exec ()
1061 struct cmd_list_element *c;
1063 c = add_cmd ("file", class_files, file_command, _("\
1064 Use FILE as program to be debugged.\n\
1065 It is read for its symbols, for getting the contents of pure memory,\n\
1066 and it is the program executed when you use the `run' command.\n\
1067 If FILE cannot be found as specified, your execution directory path\n\
1068 ($PATH) is searched for a command of that name.\n\
1069 No arg means to have no executable file and no symbols."), &cmdlist);
1070 set_cmd_completer (c, filename_completer);
1072 c = add_cmd ("exec-file", class_files, exec_file_command, _("\
1073 Use FILE as program for getting contents of pure memory.\n\
1074 If FILE cannot be found as specified, your execution directory path\n\
1075 is searched for a command of that name.\n\
1076 No arg means have no executable file."), &cmdlist);
1077 set_cmd_completer (c, filename_completer);
1079 add_com ("section", class_files, set_section_command, _("\
1080 Change the base address of section SECTION of the exec file to ADDR.\n\
1081 This can be used if the exec file does not contain section addresses,\n\
1082 (such as in the a.out format), or when the addresses specified in the\n\
1083 file itself are wrong. Each section must be changed separately. The\n\
1084 ``info files'' command lists all the sections and their addresses."));
1086 add_setshow_boolean_cmd ("write", class_support, &write_files, _("\
1087 Set writing into executable and core files."), _("\
1088 Show writing into executable and core files."), NULL,
1089 NULL,
1090 show_write_files,
1091 &setlist, &showlist);
1093 add_setshow_enum_cmd ("exec-file-mismatch", class_support,
1094 exec_file_mismatch_names,
1095 &exec_file_mismatch,
1096 _("\
1097 Set exec-file-mismatch handling (ask|warn|off)."),
1098 _("\
1099 Show exec-file-mismatch handling (ask|warn|off)."),
1100 _("\
1101 Specifies how to handle a mismatch between the current exec-file\n\
1102 loaded by GDB and the exec-file automatically determined when attaching\n\
1103 to a process:\n\n\
1104 ask - warn the user and ask whether to load the determined exec-file.\n\
1105 warn - warn the user, but do not change the exec-file.\n\
1106 off - do not check for mismatch.\n\
1108 GDB detects a mismatch by comparing the build IDs of the files.\n\
1109 If the user confirms loading the determined exec-file, then its symbols\n\
1110 will be loaded as well."),
1111 set_exec_file_mismatch_command,
1112 show_exec_file_mismatch_command,
1113 &setlist, &showlist);
1115 add_target (exec_target_info, exec_target_open, filename_completer);