1 /* Work with executable files, for GDB.
3 Copyright (C) 1988-2022 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/>. */
26 #include "filenames.h"
29 #include "completer.h"
32 #include "observable.h"
33 #include "arch-utils.h"
34 #include "gdbthread.h"
35 #include "progspace.h"
36 #include "progspace-and-thread.h"
43 #include "readline/tilde.h"
50 #include "gdbsupport/pathstuff.h"
51 #include "cli/cli-style.h"
53 void (*deprecated_file_changed_hook
) (const char *);
55 static const target_info exec_target_info
= {
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
,
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
;
102 show_exec_file_mismatch_command (struct ui_file
*file
, int from_tty
,
103 struct cmd_list_element
*c
, const char *value
)
105 fprintf_filtered (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. */
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
;
124 if (mode
== exec_file_mismatch_off
)
125 internal_error (__FILE__
, __LINE__
,
126 _("Unrecognized exec-file-mismatch setting: \"%s\""),
131 /* Whether to open exec and core files read-only or read-write. */
133 bool write_files
= false;
135 show_write_files (struct ui_file
*file
, int from_tty
,
136 struct cmd_list_element
*c
, const char *value
)
138 fprintf_filtered (file
, _("Writing into executable and core files is %s.\n"),
144 exec_target_open (const char *args
, int from_tty
)
146 target_preopen (from_tty
);
147 exec_file_attach (args
, from_tty
);
150 /* This is the target_close implementation. Clears all target
151 sections and closes all executable bfds from all program spaces. */
154 exec_target::close ()
156 for (struct program_space
*ss
: program_spaces
)
158 ss
->clear_target_sections ();
166 try_open_exec_file (const char *exec_file_host
, struct inferior
*inf
,
167 symfile_add_flags add_flags
)
169 struct gdb_exception prev_err
;
171 /* exec_file_attach and symbol_file_add_main may throw an error if the file
172 cannot be opened either locally or remotely.
174 This happens for example, when the file is first found in the local
175 sysroot (above), and then disappears (a TOCTOU race), or when it doesn't
176 exist in the target filesystem, or when the file does exist, but
179 Even without a symbol file, the remote-based debugging session should
180 continue normally instead of ending abruptly. Hence we catch thrown
181 errors/exceptions in the following code. */
184 /* We must do this step even if exec_file_host is NULL, so that
185 exec_file_attach will clear state. */
186 exec_file_attach (exec_file_host
, add_flags
& SYMFILE_VERBOSE
);
188 catch (gdb_exception_error
&err
)
190 if (err
.message
!= NULL
)
191 warning ("%s", err
.what ());
193 prev_err
= std::move (err
);
196 if (exec_file_host
!= NULL
)
200 symbol_file_add_main (exec_file_host
, add_flags
);
202 catch (const gdb_exception_error
&err
)
205 warning ("%s", err
.what ());
213 validate_exec_file (int from_tty
)
215 /* If user asked to ignore the mismatch, do nothing. */
216 if (exec_file_mismatch_mode
== exec_file_mismatch_off
)
219 const char *current_exec_file
= get_exec_file (0);
220 struct inferior
*inf
= current_inferior ();
221 /* Try to determine a filename from the process itself. */
222 const char *pid_exec_file
= target_pid_to_exec_file (inf
->pid
);
223 bool build_id_mismatch
= false;
225 /* If we cannot validate the exec file, return. */
226 if (current_exec_file
== NULL
|| pid_exec_file
== NULL
)
229 /* Try validating via build-id, if available. This is the most
232 /* In case current_exec_file was changed, reopen_exec_file ensures
233 an up to date build_id (will do nothing if the file timestamp
234 did not change). If exec file changed, reopen_exec_file has
235 allocated another file name, so get_exec_file again. */
237 current_exec_file
= get_exec_file (0);
239 const bfd_build_id
*exec_file_build_id
240 = build_id_bfd_get (current_program_space
->exec_bfd ());
241 if (exec_file_build_id
!= nullptr)
243 /* Prepend the target prefix, to force gdb_bfd_open to open the
244 file on the remote file system (if indeed remote). */
245 std::string target_pid_exec_file
246 = std::string (TARGET_SYSROOT_PREFIX
) + pid_exec_file
;
248 gdb_bfd_ref_ptr
abfd (gdb_bfd_open (target_pid_exec_file
.c_str (),
249 gnutarget
, -1, false));
252 const bfd_build_id
*target_exec_file_build_id
253 = build_id_bfd_get (abfd
.get ());
255 if (target_exec_file_build_id
!= nullptr)
257 if (exec_file_build_id
->size
== target_exec_file_build_id
->size
258 && memcmp (exec_file_build_id
->data
,
259 target_exec_file_build_id
->data
,
260 exec_file_build_id
->size
) == 0)
266 build_id_mismatch
= true;
271 if (build_id_mismatch
)
273 std::string
exec_file_target (pid_exec_file
);
275 /* In case the exec file is not local, exec_file_target has to point at
276 the target file system. */
277 if (is_target_filename (current_exec_file
) && !target_filesystem_is_local ())
278 exec_file_target
= TARGET_SYSROOT_PREFIX
+ exec_file_target
;
281 (_("Build ID mismatch between current exec-file %ps\n"
282 "and automatically determined exec-file %ps\n"
283 "exec-file-mismatch handling is currently \"%s\""),
284 styled_string (file_name_style
.style (), current_exec_file
),
285 styled_string (file_name_style
.style (), exec_file_target
.c_str ()),
286 exec_file_mismatch_names
[exec_file_mismatch_mode
]);
287 if (exec_file_mismatch_mode
== exec_file_mismatch_ask
)
289 symfile_add_flags add_flags
= SYMFILE_MAINLINE
;
292 add_flags
|= SYMFILE_VERBOSE
;
293 add_flags
|= SYMFILE_ALWAYS_CONFIRM
;
297 symbol_file_add_main (exec_file_target
.c_str (), add_flags
);
298 exec_file_attach (exec_file_target
.c_str (), from_tty
);
300 catch (gdb_exception_error
&err
)
302 warning (_("loading %ps %s"),
303 styled_string (file_name_style
.style (),
304 exec_file_target
.c_str ()),
305 err
.message
!= NULL
? err
.what () : "error");
314 exec_file_locate_attach (int pid
, int defer_bp_reset
, int from_tty
)
316 char *exec_file_target
;
317 symfile_add_flags add_flags
= 0;
319 /* Do nothing if we already have an executable filename. */
320 if (get_exec_file (0) != NULL
)
323 /* Try to determine a filename from the process itself. */
324 exec_file_target
= target_pid_to_exec_file (pid
);
325 if (exec_file_target
== NULL
)
327 warning (_("No executable has been specified and target does not "
329 "determining executable automatically. "
330 "Try using the \"file\" command."));
334 gdb::unique_xmalloc_ptr
<char> exec_file_host
335 = exec_file_find (exec_file_target
, NULL
);
338 add_flags
|= SYMFILE_DEFER_BP_RESET
;
341 add_flags
|= SYMFILE_VERBOSE
;
343 /* Attempt to open the exec file. */
344 try_open_exec_file (exec_file_host
.get (), current_inferior (), add_flags
);
347 /* Set FILENAME as the new exec file.
349 This function is intended to be behave essentially the same
350 as exec_file_command, except that the latter will detect when
351 a target is being debugged, and will ask the user whether it
352 should be shut down first. (If the answer is "no", then the
353 new file is ignored.)
355 This file is used by exec_file_command, to do the work of opening
356 and processing the exec file after any prompting has happened.
358 And, it is used by child_attach, when the attach command was
359 given a pid but not a exec pathname, and the attach command could
360 figure out the pathname from the pid. (In this case, we shouldn't
361 ask the user whether the current target should be shut down --
362 we're supplying the exec pathname late for good reason.) */
365 exec_file_attach (const char *filename
, int from_tty
)
367 /* First, acquire a reference to the exec_bfd. We release
368 this at the end of the function; but acquiring it now lets the
369 BFD cache return it if this call refers to the same file. */
370 gdb_bfd_ref_ptr exec_bfd_holder
371 = gdb_bfd_ref_ptr::new_reference (current_program_space
->exec_bfd ());
373 /* Remove any previous exec file. */
374 current_program_space
->exec_close ();
376 /* Now open and digest the file the user requested, if any. */
381 printf_unfiltered (_("No executable file now.\n"));
383 set_gdbarch_from_file (NULL
);
387 int load_via_target
= 0;
388 const char *scratch_pathname
, *canonical_pathname
;
392 if (is_target_filename (filename
))
394 if (target_filesystem_is_local ())
395 filename
+= strlen (TARGET_SYSROOT_PREFIX
);
400 gdb::unique_xmalloc_ptr
<char> canonical_storage
, scratch_storage
;
403 /* gdb_bfd_fopen does not support "target:" filenames. */
405 warning (_("writing into executable files is "
406 "not supported for %s sysroots"),
407 TARGET_SYSROOT_PREFIX
);
409 scratch_pathname
= filename
;
411 canonical_pathname
= scratch_pathname
;
415 scratch_chan
= openp (getenv ("PATH"), OPF_TRY_CWD_FIRST
,
416 filename
, write_files
?
417 O_RDWR
| O_BINARY
: O_RDONLY
| O_BINARY
,
419 #if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__)
420 if (scratch_chan
< 0)
422 int first_errno
= errno
;
423 char *exename
= (char *) alloca (strlen (filename
) + 5);
425 strcat (strcpy (exename
, filename
), ".exe");
426 scratch_chan
= openp (getenv ("PATH"), OPF_TRY_CWD_FIRST
,
427 exename
, write_files
?
429 : O_RDONLY
| O_BINARY
,
431 if (scratch_chan
< 0)
435 if (scratch_chan
< 0)
436 perror_with_name (filename
);
438 scratch_pathname
= scratch_storage
.get ();
440 /* gdb_bfd_open (and its variants) prefers canonicalized
441 pathname for better BFD caching. */
442 canonical_storage
= gdb_realpath (scratch_pathname
);
443 canonical_pathname
= canonical_storage
.get ();
446 gdb_bfd_ref_ptr temp
;
447 if (write_files
&& !load_via_target
)
448 temp
= gdb_bfd_fopen (canonical_pathname
, gnutarget
,
449 FOPEN_RUB
, scratch_chan
);
451 temp
= gdb_bfd_open (canonical_pathname
, gnutarget
, scratch_chan
);
452 current_program_space
->set_exec_bfd (std::move (temp
));
454 if (!current_program_space
->exec_bfd ())
456 error (_("\"%s\": could not open as an executable file: %s."),
457 scratch_pathname
, bfd_errmsg (bfd_get_error ()));
460 /* gdb_realpath_keepfile resolves symlinks on the local
461 filesystem and so cannot be used for "target:" files. */
462 gdb_assert (current_program_space
->exec_filename
== nullptr);
464 current_program_space
->exec_filename
465 = (make_unique_xstrdup
466 (bfd_get_filename (current_program_space
->exec_bfd ())));
468 current_program_space
->exec_filename
469 = gdb_realpath_keepfile (scratch_pathname
);
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
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 target_section_table 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 ());
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
494 current_program_space
->add_target_sections (¤t_program_space
->ebfd
,
497 /* Tell display code (if any) about the changed file name. */
498 if (deprecated_exec_file_display_hook
)
499 (*deprecated_exec_file_display_hook
) (filename
);
502 bfd_cache_close_all ();
503 gdb::observers::executable_changed
.notify ();
506 /* Process the first arg in ARGS as the new exec file.
508 Note that we have to explicitly ignore additional args, since we can
509 be called from file_command(), which also calls symbol_file_command()
510 which can take multiple args.
512 If ARGS is NULL, we just want to close the exec file. */
515 exec_file_command (const char *args
, int from_tty
)
517 if (from_tty
&& target_has_execution ()
518 && !query (_("A program is being debugged already.\n"
519 "Are you sure you want to change the file? ")))
520 error (_("File not changed."));
524 /* Scan through the args and pick up the first non option arg
527 gdb_argv
built_argv (args
);
528 char **argv
= built_argv
.get ();
530 for (; (*argv
!= NULL
) && (**argv
== '-'); argv
++)
534 error (_("No executable file name was specified"));
536 gdb::unique_xmalloc_ptr
<char> filename (tilde_expand (*argv
));
537 exec_file_attach (filename
.get (), from_tty
);
540 exec_file_attach (NULL
, from_tty
);
543 /* Set both the exec file and the symbol file, in one command.
544 What a novelty. Why did GDB go through four major releases before this
545 command was added? */
548 file_command (const char *arg
, int from_tty
)
550 /* FIXME, if we lose on reading the symbol file, we should revert
551 the exec file, but that's rough. */
552 exec_file_command (arg
, from_tty
);
553 symbol_file_command (arg
, from_tty
);
554 if (deprecated_file_changed_hook
)
555 deprecated_file_changed_hook (arg
);
559 /* Builds a section table, given args BFD, TABLE. */
562 build_section_table (struct bfd
*some_bfd
)
564 target_section_table table
;
566 for (asection
*asect
: gdb_bfd_sections (some_bfd
))
570 /* Check the section flags, but do not discard zero-length
571 sections, since some symbols may still be attached to this
572 section. For instance, we encountered on sparc-solaris 2.10
573 a shared library with an empty .bss section to which a symbol
574 named "_end" was attached. The address of this symbol still
575 needs to be relocated. */
576 aflag
= bfd_section_flags (asect
);
577 if (!(aflag
& SEC_ALLOC
))
580 table
.emplace_back (bfd_section_vma (asect
),
581 bfd_section_vma (asect
) + bfd_section_size (asect
),
588 /* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
589 current set of target sections. */
592 program_space::add_target_sections (void *owner
,
593 const target_section_table
§ions
)
595 if (!sections
.empty ())
597 for (const target_section
&s
: sections
)
599 m_target_sections
.push_back (s
);
600 m_target_sections
.back ().owner
= owner
;
603 scoped_restore_current_pspace_and_thread restore_pspace_thread
;
605 /* If these are the first file sections we can provide memory
606 from, push the file_stratum target. Must do this in all
607 inferiors sharing the program space. */
608 for (inferior
*inf
: all_inferiors ())
610 if (inf
->pspace
!= this)
613 if (inf
->target_is_pushed (&exec_ops
))
616 switch_to_inferior_no_thread (inf
);
617 inf
->push_target (&exec_ops
);
622 /* Add the sections of OBJFILE to the current set of target sections. */
625 program_space::add_target_sections (struct objfile
*objfile
)
627 struct obj_section
*osect
;
629 gdb_assert (objfile
!= nullptr);
631 /* Compute the number of sections to add. */
632 ALL_OBJFILE_OSECTIONS (objfile
, osect
)
634 if (bfd_section_size (osect
->the_bfd_section
) == 0)
637 m_target_sections
.emplace_back (osect
->addr (), osect
->endaddr (),
638 osect
->the_bfd_section
, (void *) objfile
);
642 /* Remove all target sections owned by OWNER.
643 OWNER must be the same value passed to add_target_sections. */
646 program_space::remove_target_sections (void *owner
)
648 gdb_assert (owner
!= NULL
);
650 auto it
= std::remove_if (m_target_sections
.begin (),
651 m_target_sections
.end (),
652 [&] (target_section
§
)
654 return sect
.owner
== owner
;
656 m_target_sections
.erase (it
, m_target_sections
.end ());
658 /* If we don't have any more sections to read memory from,
659 remove the file_stratum target from the stack of each
660 inferior sharing the program space. */
661 if (m_target_sections
.empty ())
663 scoped_restore_current_pspace_and_thread restore_pspace_thread
;
665 for (inferior
*inf
: all_inferiors ())
667 if (inf
->pspace
!= this)
670 switch_to_inferior_no_thread (inf
);
671 inf
->unpush_target (&exec_ops
);
679 exec_on_vfork (inferior
*vfork_child
)
681 if (!vfork_child
->pspace
->target_sections ().empty ())
682 vfork_child
->push_target (&exec_ops
);
687 enum target_xfer_status
688 exec_read_partial_read_only (gdb_byte
*readbuf
, ULONGEST offset
,
689 ULONGEST len
, ULONGEST
*xfered_len
)
691 /* It's unduly pedantic to refuse to look at the executable for
692 read-only pieces; so do the equivalent of readonly regions aka
694 if (current_program_space
->exec_bfd () != NULL
)
700 for (s
= current_program_space
->exec_bfd ()->sections
; s
; s
= s
->next
)
702 if ((s
->flags
& SEC_LOAD
) == 0
703 || (s
->flags
& SEC_READONLY
) == 0)
707 size
= bfd_section_size (s
);
708 if (vma
<= offset
&& offset
< (vma
+ size
))
712 amt
= (vma
+ size
) - offset
;
716 amt
= bfd_get_section_contents (current_program_space
->exec_bfd (), s
,
717 readbuf
, offset
- vma
, amt
);
720 return TARGET_XFER_EOF
;
724 return TARGET_XFER_OK
;
730 /* Indicate failure to find the requested memory block. */
731 return TARGET_XFER_E_IO
;
734 /* Return all read-only memory ranges found in the target section
735 table defined by SECTIONS and SECTIONS_END, starting at (and
736 intersected with) MEMADDR for LEN bytes. */
738 static std::vector
<mem_range
>
739 section_table_available_memory (CORE_ADDR memaddr
, ULONGEST len
,
740 const target_section_table
§ions
)
742 std::vector
<mem_range
> memory
;
744 for (const target_section
&p
: sections
)
746 if ((bfd_section_flags (p
.the_bfd_section
) & SEC_READONLY
) == 0)
749 /* Copy the meta-data, adjusted. */
750 if (mem_ranges_overlap (p
.addr
, p
.endaddr
- p
.addr
, memaddr
, len
))
752 ULONGEST lo1
, hi1
, lo2
, hi2
;
760 CORE_ADDR start
= std::max (lo1
, lo2
);
761 int length
= std::min (hi1
, hi2
) - start
;
763 memory
.emplace_back (start
, length
);
770 enum target_xfer_status
771 section_table_read_available_memory (gdb_byte
*readbuf
, ULONGEST offset
,
772 ULONGEST len
, ULONGEST
*xfered_len
)
774 const target_section_table
*table
775 = target_get_section_table (current_inferior ()->top_target ());
776 std::vector
<mem_range
> available_memory
777 = section_table_available_memory (offset
, len
, *table
);
779 normalize_mem_ranges (&available_memory
);
781 for (const mem_range
&r
: available_memory
)
783 if (mem_ranges_overlap (r
.start
, r
.length
, offset
, len
))
786 enum target_xfer_status status
;
788 /* Get the intersection window. */
789 end
= std::min
<CORE_ADDR
> (offset
+ len
, r
.start
+ r
.length
);
791 gdb_assert (end
- offset
<= len
);
793 if (offset
>= r
.start
)
794 status
= exec_read_partial_read_only (readbuf
, offset
,
799 *xfered_len
= r
.start
- offset
;
800 status
= TARGET_XFER_UNAVAILABLE
;
807 return TARGET_XFER_UNAVAILABLE
;
810 enum target_xfer_status
811 section_table_xfer_memory_partial (gdb_byte
*readbuf
, const gdb_byte
*writebuf
,
812 ULONGEST offset
, ULONGEST len
,
813 ULONGEST
*xfered_len
,
814 const target_section_table
§ions
,
815 gdb::function_view
<bool
816 (const struct target_section
*)> match_cb
)
819 ULONGEST memaddr
= offset
;
820 ULONGEST memend
= memaddr
+ len
;
822 gdb_assert (len
!= 0);
824 for (const target_section
&p
: sections
)
826 struct bfd_section
*asect
= p
.the_bfd_section
;
827 bfd
*abfd
= asect
->owner
;
829 if (match_cb
!= nullptr && !match_cb (&p
))
830 continue; /* not the section we need. */
831 if (memaddr
>= p
.addr
)
833 if (memend
<= p
.endaddr
)
835 /* Entire transfer is within this section. */
837 res
= bfd_set_section_contents (abfd
, asect
,
838 writebuf
, memaddr
- p
.addr
,
841 res
= bfd_get_section_contents (abfd
, asect
,
842 readbuf
, memaddr
- p
.addr
,
848 return TARGET_XFER_OK
;
851 return TARGET_XFER_EOF
;
853 else if (memaddr
>= p
.endaddr
)
855 /* This section ends before the transfer starts. */
860 /* This section overlaps the transfer. Just do half. */
861 len
= p
.endaddr
- memaddr
;
863 res
= bfd_set_section_contents (abfd
, asect
,
864 writebuf
, memaddr
- p
.addr
,
867 res
= bfd_get_section_contents (abfd
, asect
,
868 readbuf
, memaddr
- p
.addr
,
873 return TARGET_XFER_OK
;
876 return TARGET_XFER_EOF
;
881 return TARGET_XFER_EOF
; /* We can't help. */
884 enum target_xfer_status
885 exec_target::xfer_partial (enum target_object object
,
886 const char *annex
, gdb_byte
*readbuf
,
887 const gdb_byte
*writebuf
,
888 ULONGEST offset
, ULONGEST len
, ULONGEST
*xfered_len
)
890 const target_section_table
*table
= target_get_section_table (this);
892 if (object
== TARGET_OBJECT_MEMORY
)
893 return section_table_xfer_memory_partial (readbuf
, writebuf
,
894 offset
, len
, xfered_len
,
897 return TARGET_XFER_E_IO
;
902 print_section_info (const target_section_table
*t
, bfd
*abfd
)
904 struct gdbarch
*gdbarch
= gdbarch_from_bfd (abfd
);
905 /* FIXME: 16 is not wide enough when gdbarch_addr_bit > 64. */
906 int wid
= gdbarch_addr_bit (gdbarch
) <= 32 ? 8 : 16;
908 printf_filtered ("\t`%ps', ",
909 styled_string (file_name_style
.style (),
910 bfd_get_filename (abfd
)));
912 printf_filtered (_("file type %s.\n"), bfd_get_target (abfd
));
913 if (abfd
== current_program_space
->exec_bfd ())
915 /* gcc-3.4 does not like the initialization in
916 <p == t->sections_end>. */
917 bfd_vma displacement
= 0;
921 for (const target_section
&p
: *t
)
923 struct bfd_section
*psect
= p
.the_bfd_section
;
925 if ((bfd_section_flags (psect
) & (SEC_ALLOC
| SEC_LOAD
))
926 != (SEC_ALLOC
| SEC_LOAD
))
929 if (bfd_section_vma (psect
) <= abfd
->start_address
930 && abfd
->start_address
< (bfd_section_vma (psect
)
931 + bfd_section_size (psect
)))
933 displacement
= p
.addr
- bfd_section_vma (psect
);
939 warning (_("Cannot find section for the entry point of %ps."),
940 styled_string (file_name_style
.style (),
941 bfd_get_filename (abfd
)));
943 entry_point
= gdbarch_addr_bits_remove (gdbarch
,
944 bfd_get_start_address (abfd
)
946 printf_filtered (_("\tEntry point: %s\n"),
947 paddress (gdbarch
, entry_point
));
949 for (const target_section
&p
: *t
)
951 struct bfd_section
*psect
= p
.the_bfd_section
;
952 bfd
*pbfd
= psect
->owner
;
954 printf_filtered ("\t%s", hex_string_custom (p
.addr
, wid
));
955 printf_filtered (" - %s", hex_string_custom (p
.endaddr
, wid
));
957 /* FIXME: A format of "08l" is not wide enough for file offsets
958 larger than 4GB. OTOH, making it "016l" isn't desirable either
959 since most output will then be much wider than necessary. It
960 may make sense to test the size of the file and choose the
961 format string accordingly. */
962 /* FIXME: i18n: Need to rewrite this sentence. */
964 printf_filtered (" @ %s",
965 hex_string_custom (psect
->filepos
, 8));
966 printf_filtered (" is %s", bfd_section_name (psect
));
968 printf_filtered (" in %ps",
969 styled_string (file_name_style
.style (),
970 bfd_get_filename (pbfd
)));
971 printf_filtered ("\n");
976 exec_target::files_info ()
978 if (current_program_space
->exec_bfd ())
979 print_section_info (¤t_program_space
->target_sections (),
980 current_program_space
->exec_bfd ());
982 puts_filtered (_("\t<no file loaded>\n"));
986 set_section_command (const char *args
, int from_tty
)
991 error (_("Must specify section name and its virtual address"));
993 /* Parse out section name. */
994 for (secname
= args
; !isspace (*args
); args
++);
995 unsigned seclen
= args
- secname
;
997 /* Parse out new virtual address. */
998 CORE_ADDR secaddr
= parse_and_eval_address (args
);
1000 for (target_section
&p
: current_program_space
->target_sections ())
1002 if (!strncmp (secname
, bfd_section_name (p
.the_bfd_section
), seclen
)
1003 && bfd_section_name (p
.the_bfd_section
)[seclen
] == '\0')
1005 long offset
= secaddr
- p
.addr
;
1007 p
.endaddr
+= offset
;
1009 exec_ops
.files_info ();
1014 std::string
secprint (secname
, seclen
);
1015 error (_("Section %s not found"), secprint
.c_str ());
1018 /* If we can find a section in FILENAME with BFD index INDEX, adjust
1022 exec_set_section_address (const char *filename
, int index
, CORE_ADDR address
)
1024 for (target_section
&p
: current_program_space
->target_sections ())
1026 if (filename_cmp (filename
,
1027 bfd_get_filename (p
.the_bfd_section
->owner
)) == 0
1028 && index
== p
.the_bfd_section
->index
)
1030 p
.endaddr
+= address
- p
.addr
;
1037 exec_target::has_memory ()
1039 /* We can provide memory if we have any file/target sections to read
1041 return !current_program_space
->target_sections ().empty ();
1044 gdb::unique_xmalloc_ptr
<char>
1045 exec_target::make_corefile_notes (bfd
*obfd
, int *note_size
)
1047 error (_("Can't create a corefile"));
1051 exec_target::find_memory_regions (find_memory_region_ftype func
, void *data
)
1053 return objfile_find_memory_regions (this, func
, data
);
1056 void _initialize_exec ();
1060 struct cmd_list_element
*c
;
1064 c
= add_cmd ("file", class_files
, file_command
, _("\
1065 Use FILE as program to be debugged.\n\
1066 It is read for its symbols, for getting the contents of pure memory,\n\
1067 and it is the program executed when you use the `run' command.\n\
1068 If FILE cannot be found as specified, your execution directory path\n\
1069 ($PATH) is searched for a command of that name.\n\
1070 No arg means to have no executable file and no symbols."), &cmdlist
);
1071 set_cmd_completer (c
, filename_completer
);
1074 c
= add_cmd ("exec-file", class_files
, exec_file_command
, _("\
1075 Use FILE as program for getting contents of pure memory.\n\
1076 If FILE cannot be found as specified, your execution directory path\n\
1077 is searched for a command of that name.\n\
1078 No arg means have no executable file."), &cmdlist
);
1079 set_cmd_completer (c
, filename_completer
);
1081 add_com ("section", class_files
, set_section_command
, _("\
1082 Change the base address of section SECTION of the exec file to ADDR.\n\
1083 This can be used if the exec file does not contain section addresses,\n\
1084 (such as in the a.out format), or when the addresses specified in the\n\
1085 file itself are wrong. Each section must be changed separately. The\n\
1086 ``info files'' command lists all the sections and their addresses."));
1088 add_setshow_boolean_cmd ("write", class_support
, &write_files
, _("\
1089 Set writing into executable and core files."), _("\
1090 Show writing into executable and core files."), NULL
,
1093 &setlist
, &showlist
);
1095 add_setshow_enum_cmd ("exec-file-mismatch", class_support
,
1096 exec_file_mismatch_names
,
1097 &exec_file_mismatch
,
1099 Set exec-file-mismatch handling (ask|warn|off)."),
1101 Show exec-file-mismatch handling (ask|warn|off)."),
1103 Specifies how to handle a mismatch between the current exec-file\n\
1104 loaded by GDB and the exec-file automatically determined when attaching\n\
1106 ask - warn the user and ask whether to load the determined exec-file.\n\
1107 warn - warn the user, but do not change the exec-file.\n\
1108 off - do not check for mismatch.\n\
1110 GDB detects a mismatch by comparing the build IDs of the files.\n\
1111 If the user confirms loading the determined exec-file, then its symbols\n\
1112 will be loaded as well."),
1113 set_exec_file_mismatch_command
,
1114 show_exec_file_mismatch_command
,
1115 &setlist
, &showlist
);
1117 add_target (exec_target_info
, exec_target_open
, filename_completer
);