1 /* Work with executable files, for GDB.
3 Copyright (C) 1988-2019 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"
41 #include "readline/readline.h"
48 #include "common/pathstuff.h"
50 void (*deprecated_file_changed_hook) (const char *);
52 static const target_info exec_target_info = {
54 N_("Local exec file"),
55 N_("Use an executable file as a target.\n\
56 Specify the filename of the executable file.")
59 /* The target vector for executable files. */
61 struct exec_target final : public target_ops
63 const target_info &info () const override
64 { return exec_target_info; }
66 strata stratum () const override { return file_stratum; }
68 void close () override;
69 enum target_xfer_status xfer_partial (enum target_object object,
72 const gdb_byte *writebuf,
73 ULONGEST offset, ULONGEST len,
74 ULONGEST *xfered_len) override;
75 struct target_section_table *get_section_table () override;
76 void files_info () override;
78 bool has_memory () override;
79 char *make_corefile_notes (bfd *, int *) override;
80 int find_memory_regions (find_memory_region_ftype func, void *data) override;
83 static exec_target exec_ops;
85 /* Whether to open exec and core files read-only or read-write. */
89 show_write_files (struct ui_file *file, int from_tty,
90 struct cmd_list_element *c, const char *value)
92 fprintf_filtered (file, _("Writing into executable and core files is %s.\n"),
98 exec_target_open (const char *args, int from_tty)
100 target_preopen (from_tty);
101 exec_file_attach (args, from_tty);
104 /* Close and clear exec_bfd. If we end up with no target sections to
105 read memory from, this unpushes the exec_ops target. */
112 bfd *abfd = exec_bfd;
114 gdb_bfd_unref (abfd);
116 /* Removing target sections may close the exec_ops target.
117 Clear exec_bfd before doing so to prevent recursion. */
121 remove_target_sections (&exec_bfd);
123 xfree (exec_filename);
124 exec_filename = NULL;
128 /* This is the target_close implementation. Clears all target
129 sections and closes all executable bfds from all program spaces. */
132 exec_target::close ()
134 struct program_space *ss;
135 scoped_restore_current_program_space restore_pspace;
139 set_current_program_space (ss);
140 clear_section_table (current_target_sections);
148 try_open_exec_file (const char *exec_file_host, struct inferior *inf,
149 symfile_add_flags add_flags)
151 struct gdb_exception prev_err = exception_none;
153 /* exec_file_attach and symbol_file_add_main may throw an error if the file
154 cannot be opened either locally or remotely.
156 This happens for example, when the file is first found in the local
157 sysroot (above), and then disappears (a TOCTOU race), or when it doesn't
158 exist in the target filesystem, or when the file does exist, but
161 Even without a symbol file, the remote-based debugging session should
162 continue normally instead of ending abruptly. Hence we catch thrown
163 errors/exceptions in the following code. */
164 std::string saved_message;
167 /* We must do this step even if exec_file_host is NULL, so that
168 exec_file_attach will clear state. */
169 exec_file_attach (exec_file_host, add_flags & SYMFILE_VERBOSE);
171 CATCH (err, RETURN_MASK_ERROR)
173 if (err.message != NULL)
174 warning ("%s", err.message);
178 /* Save message so it doesn't get trashed by the catch below. */
179 if (err.message != NULL)
181 saved_message = err.message;
182 prev_err.message = saved_message.c_str ();
187 if (exec_file_host != NULL)
191 symbol_file_add_main (exec_file_host, add_flags);
193 CATCH (err, RETURN_MASK_ERROR)
195 if (!exception_print_same (prev_err, err))
196 warning ("%s", err.message);
205 exec_file_locate_attach (int pid, int defer_bp_reset, int from_tty)
207 char *exec_file_target;
208 symfile_add_flags add_flags = 0;
210 /* Do nothing if we already have an executable filename. */
211 if (get_exec_file (0) != NULL)
214 /* Try to determine a filename from the process itself. */
215 exec_file_target = target_pid_to_exec_file (pid);
216 if (exec_file_target == NULL)
218 warning (_("No executable has been specified and target does not "
220 "determining executable automatically. "
221 "Try using the \"file\" command."));
225 gdb::unique_xmalloc_ptr<char> exec_file_host
226 = exec_file_find (exec_file_target, NULL);
229 add_flags |= SYMFILE_DEFER_BP_RESET;
232 add_flags |= SYMFILE_VERBOSE;
234 /* Attempt to open the exec file. */
235 try_open_exec_file (exec_file_host.get (), current_inferior (), add_flags);
238 /* Set FILENAME as the new exec file.
240 This function is intended to be behave essentially the same
241 as exec_file_command, except that the latter will detect when
242 a target is being debugged, and will ask the user whether it
243 should be shut down first. (If the answer is "no", then the
244 new file is ignored.)
246 This file is used by exec_file_command, to do the work of opening
247 and processing the exec file after any prompting has happened.
249 And, it is used by child_attach, when the attach command was
250 given a pid but not a exec pathname, and the attach command could
251 figure out the pathname from the pid. (In this case, we shouldn't
252 ask the user whether the current target should be shut down --
253 we're supplying the exec pathname late for good reason.) */
256 exec_file_attach (const char *filename, int from_tty)
258 /* First, acquire a reference to the current exec_bfd. We release
259 this at the end of the function; but acquiring it now lets the
260 BFD cache return it if this call refers to the same file. */
261 gdb_bfd_ref_ptr exec_bfd_holder = gdb_bfd_ref_ptr::new_reference (exec_bfd);
263 /* Remove any previous exec file. */
266 /* Now open and digest the file the user requested, if any. */
271 printf_unfiltered (_("No executable file now.\n"));
273 set_gdbarch_from_file (NULL);
277 int load_via_target = 0;
278 const char *scratch_pathname, *canonical_pathname;
280 struct target_section *sections = NULL, *sections_end = NULL;
283 if (is_target_filename (filename))
285 if (target_filesystem_is_local ())
286 filename += strlen (TARGET_SYSROOT_PREFIX);
291 gdb::unique_xmalloc_ptr<char> canonical_storage, scratch_storage;
294 /* gdb_bfd_fopen does not support "target:" filenames. */
296 warning (_("writing into executable files is "
297 "not supported for %s sysroots"),
298 TARGET_SYSROOT_PREFIX);
300 scratch_pathname = filename;
302 canonical_pathname = scratch_pathname;
306 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST,
307 filename, write_files ?
308 O_RDWR | O_BINARY : O_RDONLY | O_BINARY,
310 #if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__)
311 if (scratch_chan < 0)
313 char *exename = (char *) alloca (strlen (filename) + 5);
315 strcat (strcpy (exename, filename), ".exe");
316 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST,
317 exename, write_files ?
319 : O_RDONLY | O_BINARY,
323 if (scratch_chan < 0)
324 perror_with_name (filename);
326 scratch_pathname = scratch_storage.get ();
328 /* gdb_bfd_open (and its variants) prefers canonicalized
329 pathname for better BFD caching. */
330 canonical_storage = gdb_realpath (scratch_pathname);
331 canonical_pathname = canonical_storage.get ();
334 gdb_bfd_ref_ptr temp;
335 if (write_files && !load_via_target)
336 temp = gdb_bfd_fopen (canonical_pathname, gnutarget,
337 FOPEN_RUB, scratch_chan);
339 temp = gdb_bfd_open (canonical_pathname, gnutarget, scratch_chan);
340 exec_bfd = temp.release ();
344 error (_("\"%s\": could not open as an executable file: %s."),
345 scratch_pathname, bfd_errmsg (bfd_get_error ()));
348 /* gdb_realpath_keepfile resolves symlinks on the local
349 filesystem and so cannot be used for "target:" files. */
350 gdb_assert (exec_filename == NULL);
352 exec_filename = xstrdup (bfd_get_filename (exec_bfd));
354 exec_filename = gdb_realpath_keepfile (scratch_pathname).release ();
356 if (!bfd_check_format_matches (exec_bfd, bfd_object, &matching))
358 /* Make sure to close exec_bfd, or else "run" might try to use
361 error (_("\"%s\": not in executable format: %s"),
363 gdb_bfd_errmsg (bfd_get_error (), matching).c_str ());
366 if (build_section_table (exec_bfd, §ions, §ions_end))
368 /* Make sure to close exec_bfd, or else "run" might try to use
371 error (_("\"%s\": can't find the file sections: %s"),
372 scratch_pathname, bfd_errmsg (bfd_get_error ()));
375 exec_bfd_mtime = bfd_get_mtime (exec_bfd);
379 set_gdbarch_from_file (exec_bfd);
381 /* Add the executable's sections to the current address spaces'
382 list of sections. This possibly pushes the exec_ops
384 add_target_sections (&exec_bfd, sections, sections_end);
387 /* Tell display code (if any) about the changed file name. */
388 if (deprecated_exec_file_display_hook)
389 (*deprecated_exec_file_display_hook) (filename);
392 bfd_cache_close_all ();
393 gdb::observers::executable_changed.notify ();
396 /* Process the first arg in ARGS as the new exec file.
398 Note that we have to explicitly ignore additional args, since we can
399 be called from file_command(), which also calls symbol_file_command()
400 which can take multiple args.
402 If ARGS is NULL, we just want to close the exec file. */
405 exec_file_command (const char *args, int from_tty)
407 if (from_tty && target_has_execution
408 && !query (_("A program is being debugged already.\n"
409 "Are you sure you want to change the file? ")))
410 error (_("File not changed."));
414 /* Scan through the args and pick up the first non option arg
417 gdb_argv built_argv (args);
418 char **argv = built_argv.get ();
420 for (; (*argv != NULL) && (**argv == '-'); argv++)
424 error (_("No executable file name was specified"));
426 gdb::unique_xmalloc_ptr<char> filename (tilde_expand (*argv));
427 exec_file_attach (filename.get (), from_tty);
430 exec_file_attach (NULL, from_tty);
433 /* Set both the exec file and the symbol file, in one command.
434 What a novelty. Why did GDB go through four major releases before this
435 command was added? */
438 file_command (const char *arg, int from_tty)
440 /* FIXME, if we lose on reading the symbol file, we should revert
441 the exec file, but that's rough. */
442 exec_file_command (arg, from_tty);
443 symbol_file_command (arg, from_tty);
444 if (deprecated_file_changed_hook)
445 deprecated_file_changed_hook (arg);
449 /* Locate all mappable sections of a BFD file.
450 table_pp_char is a char * to get it through bfd_map_over_sections;
451 we cast it back to its proper type. */
454 add_to_section_table (bfd *abfd, struct bfd_section *asect,
457 struct target_section **table_pp = (struct target_section **) table_pp_char;
460 gdb_assert (abfd == asect->owner);
462 /* Check the section flags, but do not discard zero-length sections, since
463 some symbols may still be attached to this section. For instance, we
464 encountered on sparc-solaris 2.10 a shared library with an empty .bss
465 section to which a symbol named "_end" was attached. The address
466 of this symbol still needs to be relocated. */
467 aflag = bfd_get_section_flags (abfd, asect);
468 if (!(aflag & SEC_ALLOC))
471 (*table_pp)->owner = NULL;
472 (*table_pp)->the_bfd_section = asect;
473 (*table_pp)->addr = bfd_section_vma (abfd, asect);
474 (*table_pp)->endaddr = (*table_pp)->addr + bfd_section_size (abfd, asect);
481 clear_section_table (struct target_section_table *table)
483 xfree (table->sections);
484 table->sections = table->sections_end = NULL;
487 /* Resize section table TABLE by ADJUSTMENT.
488 ADJUSTMENT may be negative, in which case the caller must have already
489 removed the sections being deleted.
490 Returns the old size. */
493 resize_section_table (struct target_section_table *table, int adjustment)
498 old_count = table->sections_end - table->sections;
500 new_count = adjustment + old_count;
504 table->sections = XRESIZEVEC (struct target_section, table->sections,
506 table->sections_end = table->sections + new_count;
509 clear_section_table (table);
514 /* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR.
515 Returns 0 if OK, 1 on error. */
518 build_section_table (struct bfd *some_bfd, struct target_section **start,
519 struct target_section **end)
523 count = bfd_count_sections (some_bfd);
526 *start = XNEWVEC (struct target_section, count);
528 bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end);
529 if (*end > *start + count)
530 internal_error (__FILE__, __LINE__,
531 _("failed internal consistency check"));
532 /* We could realloc the table, but it probably loses for most files. */
536 /* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
537 current set of target sections. */
540 add_target_sections (void *owner,
541 struct target_section *sections,
542 struct target_section *sections_end)
545 struct target_section_table *table = current_target_sections;
547 count = sections_end - sections;
551 int space = resize_section_table (table, count);
554 for (i = 0; i < count; ++i)
556 table->sections[space + i] = sections[i];
557 table->sections[space + i].owner = owner;
560 /* If these are the first file sections we can provide memory
561 from, push the file_stratum target. */
562 if (!target_is_pushed (&exec_ops))
563 push_target (&exec_ops);
567 /* Add the sections of OBJFILE to the current set of target sections. */
570 add_target_sections_of_objfile (struct objfile *objfile)
572 struct target_section_table *table = current_target_sections;
573 struct obj_section *osect;
576 struct target_section *ts;
581 /* Compute the number of sections to add. */
582 ALL_OBJFILE_OSECTIONS (objfile, osect)
584 if (bfd_get_section_size (osect->the_bfd_section) == 0)
592 space = resize_section_table (table, count);
594 ts = table->sections + space;
596 ALL_OBJFILE_OSECTIONS (objfile, osect)
598 if (bfd_get_section_size (osect->the_bfd_section) == 0)
601 gdb_assert (ts < table->sections + space + count);
603 ts->addr = obj_section_addr (osect);
604 ts->endaddr = obj_section_endaddr (osect);
605 ts->the_bfd_section = osect->the_bfd_section;
606 ts->owner = (void *) objfile;
612 /* Remove all target sections owned by OWNER.
613 OWNER must be the same value passed to add_target_sections. */
616 remove_target_sections (void *owner)
618 struct target_section *src, *dest;
619 struct target_section_table *table = current_target_sections;
621 gdb_assert (owner != NULL);
623 dest = table->sections;
624 for (src = table->sections; src < table->sections_end; src++)
625 if (src->owner != owner)
627 /* Keep this section. */
633 /* If we've dropped any sections, resize the section table. */
638 old_count = resize_section_table (table, dest - src);
640 /* If we don't have any more sections to read memory from,
641 remove the file_stratum target from the stack. */
642 if (old_count + (dest - src) == 0)
644 struct program_space *pspace;
647 if (pspace->target_sections.sections
648 != pspace->target_sections.sections_end)
651 unpush_target (&exec_ops);
658 enum target_xfer_status
659 exec_read_partial_read_only (gdb_byte *readbuf, ULONGEST offset,
660 ULONGEST len, ULONGEST *xfered_len)
662 /* It's unduly pedantic to refuse to look at the executable for
663 read-only pieces; so do the equivalent of readonly regions aka
665 if (exec_bfd != NULL)
671 for (s = exec_bfd->sections; s; s = s->next)
673 if ((s->flags & SEC_LOAD) == 0
674 || (s->flags & SEC_READONLY) == 0)
678 size = bfd_get_section_size (s);
679 if (vma <= offset && offset < (vma + size))
683 amt = (vma + size) - offset;
687 amt = bfd_get_section_contents (exec_bfd, s,
688 readbuf, offset - vma, amt);
691 return TARGET_XFER_EOF;
695 return TARGET_XFER_OK;
701 /* Indicate failure to find the requested memory block. */
702 return TARGET_XFER_E_IO;
705 /* Return all read-only memory ranges found in the target section
706 table defined by SECTIONS and SECTIONS_END, starting at (and
707 intersected with) MEMADDR for LEN bytes. */
709 static std::vector<mem_range>
710 section_table_available_memory (CORE_ADDR memaddr, ULONGEST len,
711 struct target_section *sections,
712 struct target_section *sections_end)
714 std::vector<mem_range> memory;
716 for (target_section *p = sections; p < sections_end; p++)
718 if ((bfd_get_section_flags (p->the_bfd_section->owner,
720 & SEC_READONLY) == 0)
723 /* Copy the meta-data, adjusted. */
724 if (mem_ranges_overlap (p->addr, p->endaddr - p->addr, memaddr, len))
726 ULONGEST lo1, hi1, lo2, hi2;
734 CORE_ADDR start = std::max (lo1, lo2);
735 int length = std::min (hi1, hi2) - start;
737 memory.emplace_back (start, length);
744 enum target_xfer_status
745 section_table_read_available_memory (gdb_byte *readbuf, ULONGEST offset,
746 ULONGEST len, ULONGEST *xfered_len)
748 target_section_table *table = target_get_section_table (&exec_ops);
749 std::vector<mem_range> available_memory
750 = section_table_available_memory (offset, len,
751 table->sections, table->sections_end);
753 normalize_mem_ranges (&available_memory);
755 for (const mem_range &r : available_memory)
757 if (mem_ranges_overlap (r.start, r.length, offset, len))
760 enum target_xfer_status status;
762 /* Get the intersection window. */
763 end = std::min<CORE_ADDR> (offset + len, r.start + r.length);
765 gdb_assert (end - offset <= len);
767 if (offset >= r.start)
768 status = exec_read_partial_read_only (readbuf, offset,
773 *xfered_len = r.start - offset;
774 status = TARGET_XFER_UNAVAILABLE;
781 return TARGET_XFER_UNAVAILABLE;
784 enum target_xfer_status
785 section_table_xfer_memory_partial (gdb_byte *readbuf, const gdb_byte *writebuf,
786 ULONGEST offset, ULONGEST len,
787 ULONGEST *xfered_len,
788 struct target_section *sections,
789 struct target_section *sections_end,
790 const char *section_name)
793 struct target_section *p;
794 ULONGEST memaddr = offset;
795 ULONGEST memend = memaddr + len;
798 internal_error (__FILE__, __LINE__,
799 _("failed internal consistency check"));
801 for (p = sections; p < sections_end; p++)
803 struct bfd_section *asect = p->the_bfd_section;
804 bfd *abfd = asect->owner;
806 if (section_name && strcmp (section_name, asect->name) != 0)
807 continue; /* not the section we need. */
808 if (memaddr >= p->addr)
810 if (memend <= p->endaddr)
812 /* Entire transfer is within this section. */
814 res = bfd_set_section_contents (abfd, asect,
815 writebuf, memaddr - p->addr,
818 res = bfd_get_section_contents (abfd, asect,
819 readbuf, memaddr - p->addr,
825 return TARGET_XFER_OK;
828 return TARGET_XFER_EOF;
830 else if (memaddr >= p->endaddr)
832 /* This section ends before the transfer starts. */
837 /* This section overlaps the transfer. Just do half. */
838 len = p->endaddr - memaddr;
840 res = bfd_set_section_contents (abfd, asect,
841 writebuf, memaddr - p->addr,
844 res = bfd_get_section_contents (abfd, asect,
845 readbuf, memaddr - p->addr,
850 return TARGET_XFER_OK;
853 return TARGET_XFER_EOF;
858 return TARGET_XFER_EOF; /* We can't help. */
861 struct target_section_table *
862 exec_target::get_section_table ()
864 return current_target_sections;
867 enum target_xfer_status
868 exec_target::xfer_partial (enum target_object object,
869 const char *annex, gdb_byte *readbuf,
870 const gdb_byte *writebuf,
871 ULONGEST offset, ULONGEST len, ULONGEST *xfered_len)
873 struct target_section_table *table = get_section_table ();
875 if (object == TARGET_OBJECT_MEMORY)
876 return section_table_xfer_memory_partial (readbuf, writebuf,
877 offset, len, xfered_len,
882 return TARGET_XFER_E_IO;
887 print_section_info (struct target_section_table *t, bfd *abfd)
889 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
890 struct target_section *p;
891 /* FIXME: 16 is not wide enough when gdbarch_addr_bit > 64. */
892 int wid = gdbarch_addr_bit (gdbarch) <= 32 ? 8 : 16;
894 printf_filtered ("\t`%s', ", bfd_get_filename (abfd));
896 printf_filtered (_("file type %s.\n"), bfd_get_target (abfd));
897 if (abfd == exec_bfd)
899 /* gcc-3.4 does not like the initialization in
900 <p == t->sections_end>. */
901 bfd_vma displacement = 0;
904 for (p = t->sections; p < t->sections_end; p++)
906 struct bfd_section *psect = p->the_bfd_section;
907 bfd *pbfd = psect->owner;
909 if ((bfd_get_section_flags (pbfd, psect) & (SEC_ALLOC | SEC_LOAD))
910 != (SEC_ALLOC | SEC_LOAD))
913 if (bfd_get_section_vma (pbfd, psect) <= abfd->start_address
914 && abfd->start_address < (bfd_get_section_vma (pbfd, psect)
915 + bfd_get_section_size (psect)))
917 displacement = p->addr - bfd_get_section_vma (pbfd, psect);
921 if (p == t->sections_end)
922 warning (_("Cannot find section for the entry point of %s."),
923 bfd_get_filename (abfd));
925 entry_point = gdbarch_addr_bits_remove (gdbarch,
926 bfd_get_start_address (abfd)
928 printf_filtered (_("\tEntry point: %s\n"),
929 paddress (gdbarch, entry_point));
931 for (p = t->sections; p < t->sections_end; p++)
933 struct bfd_section *psect = p->the_bfd_section;
934 bfd *pbfd = psect->owner;
936 printf_filtered ("\t%s", hex_string_custom (p->addr, wid));
937 printf_filtered (" - %s", hex_string_custom (p->endaddr, wid));
939 /* FIXME: A format of "08l" is not wide enough for file offsets
940 larger than 4GB. OTOH, making it "016l" isn't desirable either
941 since most output will then be much wider than necessary. It
942 may make sense to test the size of the file and choose the
943 format string accordingly. */
944 /* FIXME: i18n: Need to rewrite this sentence. */
946 printf_filtered (" @ %s",
947 hex_string_custom (psect->filepos, 8));
948 printf_filtered (" is %s", bfd_section_name (pbfd, psect));
950 printf_filtered (" in %s", bfd_get_filename (pbfd));
951 printf_filtered ("\n");
956 exec_target::files_info ()
959 print_section_info (current_target_sections, exec_bfd);
961 puts_filtered (_("\t<no file loaded>\n"));
965 set_section_command (const char *args, int from_tty)
967 struct target_section *p;
970 unsigned long secaddr;
973 struct target_section_table *table;
976 error (_("Must specify section name and its virtual address"));
978 /* Parse out section name. */
979 for (secname = args; !isspace (*args); args++);
980 seclen = args - secname;
982 /* Parse out new virtual address. */
983 secaddr = parse_and_eval_address (args);
985 table = current_target_sections;
986 for (p = table->sections; p < table->sections_end; p++)
988 if (!strncmp (secname, bfd_section_name (p->bfd,
989 p->the_bfd_section), seclen)
990 && bfd_section_name (p->bfd, p->the_bfd_section)[seclen] == '\0')
992 offset = secaddr - p->addr;
994 p->endaddr += offset;
996 exec_ops.files_info ();
1000 if (seclen >= sizeof (secprint))
1001 seclen = sizeof (secprint) - 1;
1002 strncpy (secprint, secname, seclen);
1003 secprint[seclen] = '\0';
1004 error (_("Section %s not found"), secprint);
1007 /* If we can find a section in FILENAME with BFD index INDEX, adjust
1011 exec_set_section_address (const char *filename, int index, CORE_ADDR address)
1013 struct target_section *p;
1014 struct target_section_table *table;
1016 table = current_target_sections;
1017 for (p = table->sections; p < table->sections_end; p++)
1019 if (filename_cmp (filename, p->the_bfd_section->owner->filename) == 0
1020 && index == p->the_bfd_section->index)
1022 p->endaddr += address - p->addr;
1029 exec_target::has_memory ()
1031 /* We can provide memory if we have any file/target sections to read
1033 return (current_target_sections->sections
1034 != current_target_sections->sections_end);
1038 exec_target::make_corefile_notes (bfd *obfd, int *note_size)
1040 error (_("Can't create a corefile"));
1044 exec_target::find_memory_regions (find_memory_region_ftype func, void *data)
1046 return objfile_find_memory_regions (this, func, data);
1050 _initialize_exec (void)
1052 struct cmd_list_element *c;
1056 c = add_cmd ("file", class_files, file_command, _("\
1057 Use FILE as program to be debugged.\n\
1058 It is read for its symbols, for getting the contents of pure memory,\n\
1059 and it is the program executed when you use the `run' command.\n\
1060 If FILE cannot be found as specified, your execution directory path\n\
1061 ($PATH) is searched for a command of that name.\n\
1062 No arg means to have no executable file and no symbols."), &cmdlist);
1063 set_cmd_completer (c, filename_completer);
1066 c = add_cmd ("exec-file", class_files, exec_file_command, _("\
1067 Use FILE as program for getting contents of pure memory.\n\
1068 If FILE cannot be found as specified, your execution directory path\n\
1069 is searched for a command of that name.\n\
1070 No arg means have no executable file."), &cmdlist);
1071 set_cmd_completer (c, filename_completer);
1073 add_com ("section", class_files, set_section_command, _("\
1074 Change the base address of section SECTION of the exec file to ADDR.\n\
1075 This can be used if the exec file does not contain section addresses,\n\
1076 (such as in the a.out format), or when the addresses specified in the\n\
1077 file itself are wrong. Each section must be changed separately. The\n\
1078 ``info files'' command lists all the sections and their addresses."));
1080 add_setshow_boolean_cmd ("write", class_support, &write_files, _("\
1081 Set writing into executable and core files."), _("\
1082 Show writing into executable and core files."), NULL,
1085 &setlist, &showlist);
1087 add_target (exec_target_info, exec_target_open, filename_completer);