1 /* Work with executable files, for GDB.
3 Copyright (C) 1988-2018 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
64 { to_stratum = file_stratum; }
66 const target_info &info () const override
67 { return exec_target_info; }
69 void close () override;
70 enum target_xfer_status xfer_partial (enum target_object object,
73 const gdb_byte *writebuf,
74 ULONGEST offset, ULONGEST len,
75 ULONGEST *xfered_len) override;
76 struct target_section_table *get_section_table () override;
77 void files_info () override;
79 bool has_memory () override;
80 char *make_corefile_notes (bfd *, int *) override;
81 int find_memory_regions (find_memory_region_ftype func, void *data) override;
84 static exec_target exec_ops;
86 /* Whether to open exec and core files read-only or read-write. */
90 show_write_files (struct ui_file *file, int from_tty,
91 struct cmd_list_element *c, const char *value)
93 fprintf_filtered (file, _("Writing into executable and core files is %s.\n"),
99 exec_target_open (const char *args, int from_tty)
101 target_preopen (from_tty);
102 exec_file_attach (args, from_tty);
105 /* Close and clear exec_bfd. If we end up with no target sections to
106 read memory from, this unpushes the exec_ops target. */
113 bfd *abfd = exec_bfd;
115 gdb_bfd_unref (abfd);
117 /* Removing target sections may close the exec_ops target.
118 Clear exec_bfd before doing so to prevent recursion. */
122 remove_target_sections (&exec_bfd);
124 xfree (exec_filename);
125 exec_filename = NULL;
129 /* This is the target_close implementation. Clears all target
130 sections and closes all executable bfds from all program spaces. */
133 exec_target::close ()
135 struct program_space *ss;
136 scoped_restore_current_program_space restore_pspace;
140 set_current_program_space (ss);
141 clear_section_table (current_target_sections);
149 try_open_exec_file (const char *exec_file_host, struct inferior *inf,
150 symfile_add_flags add_flags)
152 struct gdb_exception prev_err = exception_none;
154 /* exec_file_attach and symbol_file_add_main may throw an error if the file
155 cannot be opened either locally or remotely.
157 This happens for example, when the file is first found in the local
158 sysroot (above), and then disappears (a TOCTOU race), or when it doesn't
159 exist in the target filesystem, or when the file does exist, but
162 Even without a symbol file, the remote-based debugging session should
163 continue normally instead of ending abruptly. Hence we catch thrown
164 errors/exceptions in the following code. */
165 std::string saved_message;
168 /* We must do this step even if exec_file_host is NULL, so that
169 exec_file_attach will clear state. */
170 exec_file_attach (exec_file_host, add_flags & SYMFILE_VERBOSE);
172 CATCH (err, RETURN_MASK_ERROR)
174 if (err.message != NULL)
175 warning ("%s", err.message);
179 /* Save message so it doesn't get trashed by the catch below. */
180 if (err.message != NULL)
182 saved_message = err.message;
183 prev_err.message = saved_message.c_str ();
188 if (exec_file_host != NULL)
192 symbol_file_add_main (exec_file_host, add_flags);
194 CATCH (err, RETURN_MASK_ERROR)
196 if (!exception_print_same (prev_err, err))
197 warning ("%s", err.message);
206 exec_file_locate_attach (int pid, int defer_bp_reset, int from_tty)
208 char *exec_file_target;
209 symfile_add_flags add_flags = 0;
211 /* Do nothing if we already have an executable filename. */
212 if (get_exec_file (0) != NULL)
215 /* Try to determine a filename from the process itself. */
216 exec_file_target = target_pid_to_exec_file (pid);
217 if (exec_file_target == NULL)
219 warning (_("No executable has been specified and target does not "
221 "determining executable automatically. "
222 "Try using the \"file\" command."));
226 gdb::unique_xmalloc_ptr<char> exec_file_host
227 = exec_file_find (exec_file_target, NULL);
230 add_flags |= SYMFILE_DEFER_BP_RESET;
233 add_flags |= SYMFILE_VERBOSE;
235 /* Attempt to open the exec file. */
236 try_open_exec_file (exec_file_host.get (), current_inferior (), add_flags);
239 /* Set FILENAME as the new exec file.
241 This function is intended to be behave essentially the same
242 as exec_file_command, except that the latter will detect when
243 a target is being debugged, and will ask the user whether it
244 should be shut down first. (If the answer is "no", then the
245 new file is ignored.)
247 This file is used by exec_file_command, to do the work of opening
248 and processing the exec file after any prompting has happened.
250 And, it is used by child_attach, when the attach command was
251 given a pid but not a exec pathname, and the attach command could
252 figure out the pathname from the pid. (In this case, we shouldn't
253 ask the user whether the current target should be shut down --
254 we're supplying the exec pathname late for good reason.) */
257 exec_file_attach (const char *filename, int from_tty)
259 /* First, acquire a reference to the current exec_bfd. We release
260 this at the end of the function; but acquiring it now lets the
261 BFD cache return it if this call refers to the same file. */
262 gdb_bfd_ref_ptr exec_bfd_holder = gdb_bfd_ref_ptr::new_reference (exec_bfd);
264 /* Remove any previous exec file. */
267 /* Now open and digest the file the user requested, if any. */
272 printf_unfiltered (_("No executable file now.\n"));
274 set_gdbarch_from_file (NULL);
278 int load_via_target = 0;
279 const char *scratch_pathname, *canonical_pathname;
281 struct target_section *sections = NULL, *sections_end = NULL;
284 if (is_target_filename (filename))
286 if (target_filesystem_is_local ())
287 filename += strlen (TARGET_SYSROOT_PREFIX);
292 gdb::unique_xmalloc_ptr<char> canonical_storage, scratch_storage;
295 /* gdb_bfd_fopen does not support "target:" filenames. */
297 warning (_("writing into executable files is "
298 "not supported for %s sysroots"),
299 TARGET_SYSROOT_PREFIX);
301 scratch_pathname = filename;
303 canonical_pathname = scratch_pathname;
307 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST,
308 filename, write_files ?
309 O_RDWR | O_BINARY : O_RDONLY | O_BINARY,
311 #if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__)
312 if (scratch_chan < 0)
314 char *exename = (char *) alloca (strlen (filename) + 5);
316 strcat (strcpy (exename, filename), ".exe");
317 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST,
318 exename, write_files ?
320 : O_RDONLY | O_BINARY,
324 if (scratch_chan < 0)
325 perror_with_name (filename);
327 scratch_pathname = scratch_storage.get ();
329 /* gdb_bfd_open (and its variants) prefers canonicalized
330 pathname for better BFD caching. */
331 canonical_storage = gdb_realpath (scratch_pathname);
332 canonical_pathname = canonical_storage.get ();
335 gdb_bfd_ref_ptr temp;
336 if (write_files && !load_via_target)
337 temp = gdb_bfd_fopen (canonical_pathname, gnutarget,
338 FOPEN_RUB, scratch_chan);
340 temp = gdb_bfd_open (canonical_pathname, gnutarget, scratch_chan);
341 exec_bfd = temp.release ();
345 error (_("\"%s\": could not open as an executable file: %s."),
346 scratch_pathname, bfd_errmsg (bfd_get_error ()));
349 /* gdb_realpath_keepfile resolves symlinks on the local
350 filesystem and so cannot be used for "target:" files. */
351 gdb_assert (exec_filename == NULL);
353 exec_filename = xstrdup (bfd_get_filename (exec_bfd));
355 exec_filename = gdb_realpath_keepfile (scratch_pathname).release ();
357 if (!bfd_check_format_matches (exec_bfd, bfd_object, &matching))
359 /* Make sure to close exec_bfd, or else "run" might try to use
362 error (_("\"%s\": not in executable format: %s"),
364 gdb_bfd_errmsg (bfd_get_error (), matching).c_str ());
367 if (build_section_table (exec_bfd, §ions, §ions_end))
369 /* Make sure to close exec_bfd, or else "run" might try to use
372 error (_("\"%s\": can't find the file sections: %s"),
373 scratch_pathname, bfd_errmsg (bfd_get_error ()));
376 exec_bfd_mtime = bfd_get_mtime (exec_bfd);
380 set_gdbarch_from_file (exec_bfd);
382 /* Add the executable's sections to the current address spaces'
383 list of sections. This possibly pushes the exec_ops
385 add_target_sections (&exec_bfd, sections, sections_end);
388 /* Tell display code (if any) about the changed file name. */
389 if (deprecated_exec_file_display_hook)
390 (*deprecated_exec_file_display_hook) (filename);
393 bfd_cache_close_all ();
394 gdb::observers::executable_changed.notify ();
397 /* Process the first arg in ARGS as the new exec file.
399 Note that we have to explicitly ignore additional args, since we can
400 be called from file_command(), which also calls symbol_file_command()
401 which can take multiple args.
403 If ARGS is NULL, we just want to close the exec file. */
406 exec_file_command (const char *args, int from_tty)
408 if (from_tty && target_has_execution
409 && !query (_("A program is being debugged already.\n"
410 "Are you sure you want to change the file? ")))
411 error (_("File not changed."));
415 /* Scan through the args and pick up the first non option arg
418 gdb_argv built_argv (args);
419 char **argv = built_argv.get ();
421 for (; (*argv != NULL) && (**argv == '-'); argv++)
425 error (_("No executable file name was specified"));
427 gdb::unique_xmalloc_ptr<char> filename (tilde_expand (*argv));
428 exec_file_attach (filename.get (), from_tty);
431 exec_file_attach (NULL, from_tty);
434 /* Set both the exec file and the symbol file, in one command.
435 What a novelty. Why did GDB go through four major releases before this
436 command was added? */
439 file_command (const char *arg, int from_tty)
441 /* FIXME, if we lose on reading the symbol file, we should revert
442 the exec file, but that's rough. */
443 exec_file_command (arg, from_tty);
444 symbol_file_command (arg, from_tty);
445 if (deprecated_file_changed_hook)
446 deprecated_file_changed_hook (arg);
450 /* Locate all mappable sections of a BFD file.
451 table_pp_char is a char * to get it through bfd_map_over_sections;
452 we cast it back to its proper type. */
455 add_to_section_table (bfd *abfd, struct bfd_section *asect,
458 struct target_section **table_pp = (struct target_section **) table_pp_char;
461 gdb_assert (abfd == asect->owner);
463 /* Check the section flags, but do not discard zero-length sections, since
464 some symbols may still be attached to this section. For instance, we
465 encountered on sparc-solaris 2.10 a shared library with an empty .bss
466 section to which a symbol named "_end" was attached. The address
467 of this symbol still needs to be relocated. */
468 aflag = bfd_get_section_flags (abfd, asect);
469 if (!(aflag & SEC_ALLOC))
472 (*table_pp)->owner = NULL;
473 (*table_pp)->the_bfd_section = asect;
474 (*table_pp)->addr = bfd_section_vma (abfd, asect);
475 (*table_pp)->endaddr = (*table_pp)->addr + bfd_section_size (abfd, asect);
482 clear_section_table (struct target_section_table *table)
484 xfree (table->sections);
485 table->sections = table->sections_end = NULL;
488 /* Resize section table TABLE by ADJUSTMENT.
489 ADJUSTMENT may be negative, in which case the caller must have already
490 removed the sections being deleted.
491 Returns the old size. */
494 resize_section_table (struct target_section_table *table, int adjustment)
499 old_count = table->sections_end - table->sections;
501 new_count = adjustment + old_count;
505 table->sections = XRESIZEVEC (struct target_section, table->sections,
507 table->sections_end = table->sections + new_count;
510 clear_section_table (table);
515 /* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR.
516 Returns 0 if OK, 1 on error. */
519 build_section_table (struct bfd *some_bfd, struct target_section **start,
520 struct target_section **end)
524 count = bfd_count_sections (some_bfd);
527 *start = XNEWVEC (struct target_section, count);
529 bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end);
530 if (*end > *start + count)
531 internal_error (__FILE__, __LINE__,
532 _("failed internal consistency check"));
533 /* We could realloc the table, but it probably loses for most files. */
537 /* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
538 current set of target sections. */
541 add_target_sections (void *owner,
542 struct target_section *sections,
543 struct target_section *sections_end)
546 struct target_section_table *table = current_target_sections;
548 count = sections_end - sections;
552 int space = resize_section_table (table, count);
555 for (i = 0; i < count; ++i)
557 table->sections[space + i] = sections[i];
558 table->sections[space + i].owner = owner;
561 /* If these are the first file sections we can provide memory
562 from, push the file_stratum target. */
563 if (!target_is_pushed (&exec_ops))
564 push_target (&exec_ops);
568 /* Add the sections of OBJFILE to the current set of target sections. */
571 add_target_sections_of_objfile (struct objfile *objfile)
573 struct target_section_table *table = current_target_sections;
574 struct obj_section *osect;
577 struct target_section *ts;
582 /* Compute the number of sections to add. */
583 ALL_OBJFILE_OSECTIONS (objfile, osect)
585 if (bfd_get_section_size (osect->the_bfd_section) == 0)
593 space = resize_section_table (table, count);
595 ts = table->sections + space;
597 ALL_OBJFILE_OSECTIONS (objfile, osect)
599 if (bfd_get_section_size (osect->the_bfd_section) == 0)
602 gdb_assert (ts < table->sections + space + count);
604 ts->addr = obj_section_addr (osect);
605 ts->endaddr = obj_section_endaddr (osect);
606 ts->the_bfd_section = osect->the_bfd_section;
607 ts->owner = (void *) objfile;
613 /* Remove all target sections owned by OWNER.
614 OWNER must be the same value passed to add_target_sections. */
617 remove_target_sections (void *owner)
619 struct target_section *src, *dest;
620 struct target_section_table *table = current_target_sections;
622 gdb_assert (owner != NULL);
624 dest = table->sections;
625 for (src = table->sections; src < table->sections_end; src++)
626 if (src->owner != owner)
628 /* Keep this section. */
634 /* If we've dropped any sections, resize the section table. */
639 old_count = resize_section_table (table, dest - src);
641 /* If we don't have any more sections to read memory from,
642 remove the file_stratum target from the stack. */
643 if (old_count + (dest - src) == 0)
645 struct program_space *pspace;
648 if (pspace->target_sections.sections
649 != pspace->target_sections.sections_end)
652 unpush_target (&exec_ops);
659 enum target_xfer_status
660 exec_read_partial_read_only (gdb_byte *readbuf, ULONGEST offset,
661 ULONGEST len, ULONGEST *xfered_len)
663 /* It's unduly pedantic to refuse to look at the executable for
664 read-only pieces; so do the equivalent of readonly regions aka
666 if (exec_bfd != NULL)
672 for (s = exec_bfd->sections; s; s = s->next)
674 if ((s->flags & SEC_LOAD) == 0
675 || (s->flags & SEC_READONLY) == 0)
679 size = bfd_get_section_size (s);
680 if (vma <= offset && offset < (vma + size))
684 amt = (vma + size) - offset;
688 amt = bfd_get_section_contents (exec_bfd, s,
689 readbuf, offset - vma, amt);
692 return TARGET_XFER_EOF;
696 return TARGET_XFER_OK;
702 /* Indicate failure to find the requested memory block. */
703 return TARGET_XFER_E_IO;
706 /* Return all read-only memory ranges found in the target section
707 table defined by SECTIONS and SECTIONS_END, starting at (and
708 intersected with) MEMADDR for LEN bytes. */
710 static std::vector<mem_range>
711 section_table_available_memory (CORE_ADDR memaddr, ULONGEST len,
712 struct target_section *sections,
713 struct target_section *sections_end)
715 std::vector<mem_range> memory;
717 for (target_section *p = sections; p < sections_end; p++)
719 if ((bfd_get_section_flags (p->the_bfd_section->owner,
721 & SEC_READONLY) == 0)
724 /* Copy the meta-data, adjusted. */
725 if (mem_ranges_overlap (p->addr, p->endaddr - p->addr, memaddr, len))
727 ULONGEST lo1, hi1, lo2, hi2;
735 CORE_ADDR start = std::max (lo1, lo2);
736 int length = std::min (hi1, hi2) - start;
738 memory.emplace_back (start, length);
745 enum target_xfer_status
746 section_table_read_available_memory (gdb_byte *readbuf, ULONGEST offset,
747 ULONGEST len, ULONGEST *xfered_len)
749 target_section_table *table = target_get_section_table (&exec_ops);
750 std::vector<mem_range> available_memory
751 = section_table_available_memory (offset, len,
752 table->sections, table->sections_end);
754 normalize_mem_ranges (&available_memory);
756 for (const mem_range &r : available_memory)
758 if (mem_ranges_overlap (r.start, r.length, offset, len))
761 enum target_xfer_status status;
763 /* Get the intersection window. */
764 end = std::min<CORE_ADDR> (offset + len, r.start + r.length);
766 gdb_assert (end - offset <= len);
768 if (offset >= r.start)
769 status = exec_read_partial_read_only (readbuf, offset,
774 *xfered_len = r.start - offset;
775 status = TARGET_XFER_UNAVAILABLE;
782 return TARGET_XFER_UNAVAILABLE;
785 enum target_xfer_status
786 section_table_xfer_memory_partial (gdb_byte *readbuf, const gdb_byte *writebuf,
787 ULONGEST offset, ULONGEST len,
788 ULONGEST *xfered_len,
789 struct target_section *sections,
790 struct target_section *sections_end,
791 const char *section_name)
794 struct target_section *p;
795 ULONGEST memaddr = offset;
796 ULONGEST memend = memaddr + len;
799 internal_error (__FILE__, __LINE__,
800 _("failed internal consistency check"));
802 for (p = sections; p < sections_end; p++)
804 struct bfd_section *asect = p->the_bfd_section;
805 bfd *abfd = asect->owner;
807 if (section_name && strcmp (section_name, asect->name) != 0)
808 continue; /* not the section we need. */
809 if (memaddr >= p->addr)
811 if (memend <= p->endaddr)
813 /* Entire transfer is within this section. */
815 res = bfd_set_section_contents (abfd, asect,
816 writebuf, memaddr - p->addr,
819 res = bfd_get_section_contents (abfd, asect,
820 readbuf, memaddr - p->addr,
826 return TARGET_XFER_OK;
829 return TARGET_XFER_EOF;
831 else if (memaddr >= p->endaddr)
833 /* This section ends before the transfer starts. */
838 /* This section overlaps the transfer. Just do half. */
839 len = p->endaddr - memaddr;
841 res = bfd_set_section_contents (abfd, asect,
842 writebuf, memaddr - p->addr,
845 res = bfd_get_section_contents (abfd, asect,
846 readbuf, memaddr - p->addr,
851 return TARGET_XFER_OK;
854 return TARGET_XFER_EOF;
859 return TARGET_XFER_EOF; /* We can't help. */
862 struct target_section_table *
863 exec_target::get_section_table ()
865 return current_target_sections;
868 enum target_xfer_status
869 exec_target::xfer_partial (enum target_object object,
870 const char *annex, gdb_byte *readbuf,
871 const gdb_byte *writebuf,
872 ULONGEST offset, ULONGEST len, ULONGEST *xfered_len)
874 struct target_section_table *table = get_section_table ();
876 if (object == TARGET_OBJECT_MEMORY)
877 return section_table_xfer_memory_partial (readbuf, writebuf,
878 offset, len, xfered_len,
883 return TARGET_XFER_E_IO;
888 print_section_info (struct target_section_table *t, bfd *abfd)
890 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
891 struct target_section *p;
892 /* FIXME: 16 is not wide enough when gdbarch_addr_bit > 64. */
893 int wid = gdbarch_addr_bit (gdbarch) <= 32 ? 8 : 16;
895 printf_filtered ("\t`%s', ", bfd_get_filename (abfd));
897 printf_filtered (_("file type %s.\n"), bfd_get_target (abfd));
898 if (abfd == exec_bfd)
900 /* gcc-3.4 does not like the initialization in
901 <p == t->sections_end>. */
902 bfd_vma displacement = 0;
905 for (p = t->sections; p < t->sections_end; p++)
907 struct bfd_section *psect = p->the_bfd_section;
908 bfd *pbfd = psect->owner;
910 if ((bfd_get_section_flags (pbfd, psect) & (SEC_ALLOC | SEC_LOAD))
911 != (SEC_ALLOC | SEC_LOAD))
914 if (bfd_get_section_vma (pbfd, psect) <= abfd->start_address
915 && abfd->start_address < (bfd_get_section_vma (pbfd, psect)
916 + bfd_get_section_size (psect)))
918 displacement = p->addr - bfd_get_section_vma (pbfd, psect);
922 if (p == t->sections_end)
923 warning (_("Cannot find section for the entry point of %s."),
924 bfd_get_filename (abfd));
926 entry_point = gdbarch_addr_bits_remove (gdbarch,
927 bfd_get_start_address (abfd)
929 printf_filtered (_("\tEntry point: %s\n"),
930 paddress (gdbarch, entry_point));
932 for (p = t->sections; p < t->sections_end; p++)
934 struct bfd_section *psect = p->the_bfd_section;
935 bfd *pbfd = psect->owner;
937 printf_filtered ("\t%s", hex_string_custom (p->addr, wid));
938 printf_filtered (" - %s", hex_string_custom (p->endaddr, wid));
940 /* FIXME: A format of "08l" is not wide enough for file offsets
941 larger than 4GB. OTOH, making it "016l" isn't desirable either
942 since most output will then be much wider than necessary. It
943 may make sense to test the size of the file and choose the
944 format string accordingly. */
945 /* FIXME: i18n: Need to rewrite this sentence. */
947 printf_filtered (" @ %s",
948 hex_string_custom (psect->filepos, 8));
949 printf_filtered (" is %s", bfd_section_name (pbfd, psect));
951 printf_filtered (" in %s", bfd_get_filename (pbfd));
952 printf_filtered ("\n");
957 exec_target::files_info ()
960 print_section_info (current_target_sections, exec_bfd);
962 puts_filtered (_("\t<no file loaded>\n"));
966 set_section_command (const char *args, int from_tty)
968 struct target_section *p;
971 unsigned long secaddr;
974 struct target_section_table *table;
977 error (_("Must specify section name and its virtual address"));
979 /* Parse out section name. */
980 for (secname = args; !isspace (*args); args++);
981 seclen = args - secname;
983 /* Parse out new virtual address. */
984 secaddr = parse_and_eval_address (args);
986 table = current_target_sections;
987 for (p = table->sections; p < table->sections_end; p++)
989 if (!strncmp (secname, bfd_section_name (p->bfd,
990 p->the_bfd_section), seclen)
991 && bfd_section_name (p->bfd, p->the_bfd_section)[seclen] == '\0')
993 offset = secaddr - p->addr;
995 p->endaddr += offset;
997 exec_ops.files_info ();
1001 if (seclen >= sizeof (secprint))
1002 seclen = sizeof (secprint) - 1;
1003 strncpy (secprint, secname, seclen);
1004 secprint[seclen] = '\0';
1005 error (_("Section %s not found"), secprint);
1008 /* If we can find a section in FILENAME with BFD index INDEX, adjust
1012 exec_set_section_address (const char *filename, int index, CORE_ADDR address)
1014 struct target_section *p;
1015 struct target_section_table *table;
1017 table = current_target_sections;
1018 for (p = table->sections; p < table->sections_end; p++)
1020 if (filename_cmp (filename, p->the_bfd_section->owner->filename) == 0
1021 && index == p->the_bfd_section->index)
1023 p->endaddr += address - p->addr;
1030 exec_target::has_memory ()
1032 /* We can provide memory if we have any file/target sections to read
1034 return (current_target_sections->sections
1035 != current_target_sections->sections_end);
1039 exec_target::make_corefile_notes (bfd *obfd, int *note_size)
1041 error (_("Can't create a corefile"));
1045 exec_target::find_memory_regions (find_memory_region_ftype func, void *data)
1047 return objfile_find_memory_regions (this, func, data);
1051 _initialize_exec (void)
1053 struct cmd_list_element *c;
1057 c = add_cmd ("file", class_files, file_command, _("\
1058 Use FILE as program to be debugged.\n\
1059 It is read for its symbols, for getting the contents of pure memory,\n\
1060 and it is the program executed when you use the `run' command.\n\
1061 If FILE cannot be found as specified, your execution directory path\n\
1062 ($PATH) is searched for a command of that name.\n\
1063 No arg means to have no executable file and no symbols."), &cmdlist);
1064 set_cmd_completer (c, filename_completer);
1067 c = add_cmd ("exec-file", class_files, exec_file_command, _("\
1068 Use FILE as program for getting contents of pure memory.\n\
1069 If FILE cannot be found as specified, your execution directory path\n\
1070 is searched for a command of that name.\n\
1071 No arg means have no executable file."), &cmdlist);
1072 set_cmd_completer (c, filename_completer);
1074 add_com ("section", class_files, set_section_command, _("\
1075 Change the base address of section SECTION of the exec file to ADDR.\n\
1076 This can be used if the exec file does not contain section addresses,\n\
1077 (such as in the a.out format), or when the addresses specified in the\n\
1078 file itself are wrong. Each section must be changed separately. The\n\
1079 ``info files'' command lists all the sections and their addresses."));
1081 add_setshow_boolean_cmd ("write", class_support, &write_files, _("\
1082 Set writing into executable and core files."), _("\
1083 Show writing into executable and core files."), NULL,
1086 &setlist, &showlist);
1088 add_target (exec_target_info, exec_target_open, filename_completer);