1 /* Work with executable files, for GDB.
3 Copyright (C) 1988-2015 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"
33 #include "arch-utils.h"
34 #include "gdbthread.h"
35 #include "progspace.h"
40 #include "readline/readline.h"
47 void (*deprecated_file_changed_hook) (char *);
49 /* Prototypes for local functions */
51 static void file_command (char *, int);
53 static void set_section_command (char *, int);
55 static void exec_files_info (struct target_ops *);
57 static void init_exec_ops (void);
59 void _initialize_exec (void);
61 /* The target vector for executable files. */
63 static struct target_ops exec_ops;
65 /* Whether to open exec and core files read-only or read-write. */
69 show_write_files (struct ui_file *file, int from_tty,
70 struct cmd_list_element *c, const char *value)
72 fprintf_filtered (file, _("Writing into executable and core files is %s.\n"),
78 exec_open (const char *args, int from_tty)
80 target_preopen (from_tty);
81 exec_file_attach (args, from_tty);
84 /* Close and clear exec_bfd. If we end up with no target sections to
85 read memory from, this unpushes the exec_ops target. */
96 /* Removing target sections may close the exec_ops target.
97 Clear exec_bfd before doing so to prevent recursion. */
101 remove_target_sections (&exec_bfd);
103 xfree (exec_filename);
104 exec_filename = NULL;
108 /* This is the target_close implementation. Clears all target
109 sections and closes all executable bfds from all program spaces. */
112 exec_close_1 (struct target_ops *self)
114 struct program_space *ss;
115 struct cleanup *old_chain;
117 old_chain = save_current_program_space ();
120 set_current_program_space (ss);
121 clear_section_table (current_target_sections);
125 do_cleanups (old_chain);
129 exec_file_clear (int from_tty)
131 /* Remove exec file. */
135 printf_unfiltered (_("No executable file now.\n"));
141 exec_file_locate_attach (int pid, int from_tty)
143 char *exec_file, *full_exec_path = NULL;
145 /* Do nothing if we already have an executable filename. */
146 exec_file = (char *) get_exec_file (0);
147 if (exec_file != NULL)
150 /* Try to determine a filename from the process itself. */
151 exec_file = target_pid_to_exec_file (pid);
152 if (exec_file == NULL)
155 /* If gdb_sysroot is not empty and the discovered filename
156 is absolute then prefix the filename with gdb_sysroot. */
157 if (*gdb_sysroot != '\0' && IS_ABSOLUTE_PATH (exec_file))
158 full_exec_path = exec_file_find (exec_file, NULL);
160 if (full_exec_path == NULL)
162 /* It's possible we don't have a full path, but rather just a
163 filename. Some targets, such as HP-UX, don't provide the
166 Attempt to qualify the filename against the source path.
167 (If that fails, we'll just fall back on the original
168 filename. Not much more we can do...) */
169 if (!source_full_path_of (exec_file, &full_exec_path))
170 full_exec_path = xstrdup (exec_file);
173 exec_file_attach (full_exec_path, from_tty);
174 symbol_file_add_main (full_exec_path, from_tty);
177 /* Set FILENAME as the new exec file.
179 This function is intended to be behave essentially the same
180 as exec_file_command, except that the latter will detect when
181 a target is being debugged, and will ask the user whether it
182 should be shut down first. (If the answer is "no", then the
183 new file is ignored.)
185 This file is used by exec_file_command, to do the work of opening
186 and processing the exec file after any prompting has happened.
188 And, it is used by child_attach, when the attach command was
189 given a pid but not a exec pathname, and the attach command could
190 figure out the pathname from the pid. (In this case, we shouldn't
191 ask the user whether the current target should be shut down --
192 we're supplying the exec pathname late for good reason.) */
195 exec_file_attach (const char *filename, int from_tty)
197 struct cleanup *cleanups;
199 /* First, acquire a reference to the current exec_bfd. We release
200 this at the end of the function; but acquiring it now lets the
201 BFD cache return it if this call refers to the same file. */
202 gdb_bfd_ref (exec_bfd);
203 cleanups = make_cleanup_bfd_unref (exec_bfd);
205 /* Remove any previous exec file. */
208 /* Now open and digest the file the user requested, if any. */
213 printf_unfiltered (_("No executable file now.\n"));
215 set_gdbarch_from_file (NULL);
219 int load_via_target = 0;
220 char *scratch_pathname, *canonical_pathname;
222 struct target_section *sections = NULL, *sections_end = NULL;
225 if (is_target_filename (filename))
227 if (target_filesystem_is_local ())
228 filename += strlen (TARGET_SYSROOT_PREFIX);
235 /* gdb_bfd_fopen does not support "target:" filenames. */
237 warning (_("writing into executable files is "
238 "not supported for %s sysroots"),
239 TARGET_SYSROOT_PREFIX);
241 scratch_pathname = xstrdup (filename);
242 make_cleanup (xfree, scratch_pathname);
246 canonical_pathname = scratch_pathname;
250 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST,
251 filename, write_files ?
252 O_RDWR | O_BINARY : O_RDONLY | O_BINARY,
254 #if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__)
255 if (scratch_chan < 0)
257 char *exename = alloca (strlen (filename) + 5);
259 strcat (strcpy (exename, filename), ".exe");
260 scratch_chan = openp (getenv ("PATH"), OPF_TRY_CWD_FIRST,
261 exename, write_files ?
263 : O_RDONLY | O_BINARY,
267 if (scratch_chan < 0)
268 perror_with_name (filename);
270 make_cleanup (xfree, scratch_pathname);
272 /* gdb_bfd_open (and its variants) prefers canonicalized
273 pathname for better BFD caching. */
274 canonical_pathname = gdb_realpath (scratch_pathname);
275 make_cleanup (xfree, canonical_pathname);
278 if (write_files && !load_via_target)
279 exec_bfd = gdb_bfd_fopen (canonical_pathname, gnutarget,
280 FOPEN_RUB, scratch_chan);
282 exec_bfd = gdb_bfd_open (canonical_pathname, gnutarget, scratch_chan);
286 error (_("\"%s\": could not open as an executable file: %s"),
287 scratch_pathname, bfd_errmsg (bfd_get_error ()));
290 /* gdb_realpath_keepfile resolves symlinks on the local
291 filesystem and so cannot be used for "target:" files. */
292 gdb_assert (exec_filename == NULL);
294 exec_filename = xstrdup (bfd_get_filename (exec_bfd));
296 exec_filename = gdb_realpath_keepfile (scratch_pathname);
298 if (!bfd_check_format_matches (exec_bfd, bfd_object, &matching))
300 /* Make sure to close exec_bfd, or else "run" might try to use
303 error (_("\"%s\": not in executable format: %s"),
305 gdb_bfd_errmsg (bfd_get_error (), matching));
308 if (build_section_table (exec_bfd, §ions, §ions_end))
310 /* Make sure to close exec_bfd, or else "run" might try to use
313 error (_("\"%s\": can't find the file sections: %s"),
314 scratch_pathname, bfd_errmsg (bfd_get_error ()));
317 exec_bfd_mtime = bfd_get_mtime (exec_bfd);
321 set_gdbarch_from_file (exec_bfd);
323 /* Add the executable's sections to the current address spaces'
324 list of sections. This possibly pushes the exec_ops
326 add_target_sections (&exec_bfd, sections, sections_end);
329 /* Tell display code (if any) about the changed file name. */
330 if (deprecated_exec_file_display_hook)
331 (*deprecated_exec_file_display_hook) (filename);
334 do_cleanups (cleanups);
336 bfd_cache_close_all ();
337 observer_notify_executable_changed ();
340 /* Process the first arg in ARGS as the new exec file.
342 Note that we have to explicitly ignore additional args, since we can
343 be called from file_command(), which also calls symbol_file_command()
344 which can take multiple args.
346 If ARGS is NULL, we just want to close the exec file. */
349 exec_file_command (char *args, int from_tty)
354 if (from_tty && target_has_execution
355 && !query (_("A program is being debugged already.\n"
356 "Are you sure you want to change the file? ")))
357 error (_("File not changed."));
361 struct cleanup *cleanups;
363 /* Scan through the args and pick up the first non option arg
366 argv = gdb_buildargv (args);
367 cleanups = make_cleanup_freeargv (argv);
369 for (; (*argv != NULL) && (**argv == '-'); argv++)
373 error (_("No executable file name was specified"));
375 filename = tilde_expand (*argv);
376 make_cleanup (xfree, filename);
377 exec_file_attach (filename, from_tty);
379 do_cleanups (cleanups);
382 exec_file_attach (NULL, from_tty);
385 /* Set both the exec file and the symbol file, in one command.
386 What a novelty. Why did GDB go through four major releases before this
387 command was added? */
390 file_command (char *arg, int from_tty)
392 /* FIXME, if we lose on reading the symbol file, we should revert
393 the exec file, but that's rough. */
394 exec_file_command (arg, from_tty);
395 symbol_file_command (arg, from_tty);
396 if (deprecated_file_changed_hook)
397 deprecated_file_changed_hook (arg);
401 /* Locate all mappable sections of a BFD file.
402 table_pp_char is a char * to get it through bfd_map_over_sections;
403 we cast it back to its proper type. */
406 add_to_section_table (bfd *abfd, struct bfd_section *asect,
409 struct target_section **table_pp = (struct target_section **) table_pp_char;
412 gdb_assert (abfd == asect->owner);
414 /* Check the section flags, but do not discard zero-length sections, since
415 some symbols may still be attached to this section. For instance, we
416 encountered on sparc-solaris 2.10 a shared library with an empty .bss
417 section to which a symbol named "_end" was attached. The address
418 of this symbol still needs to be relocated. */
419 aflag = bfd_get_section_flags (abfd, asect);
420 if (!(aflag & SEC_ALLOC))
423 (*table_pp)->owner = NULL;
424 (*table_pp)->the_bfd_section = asect;
425 (*table_pp)->addr = bfd_section_vma (abfd, asect);
426 (*table_pp)->endaddr = (*table_pp)->addr + bfd_section_size (abfd, asect);
433 clear_section_table (struct target_section_table *table)
435 xfree (table->sections);
436 table->sections = table->sections_end = NULL;
439 /* Resize section table TABLE by ADJUSTMENT.
440 ADJUSTMENT may be negative, in which case the caller must have already
441 removed the sections being deleted.
442 Returns the old size. */
445 resize_section_table (struct target_section_table *table, int adjustment)
450 old_count = table->sections_end - table->sections;
452 new_count = adjustment + old_count;
456 table->sections = xrealloc (table->sections,
457 sizeof (struct target_section) * new_count);
458 table->sections_end = table->sections + new_count;
461 clear_section_table (table);
466 /* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR.
467 Returns 0 if OK, 1 on error. */
470 build_section_table (struct bfd *some_bfd, struct target_section **start,
471 struct target_section **end)
475 count = bfd_count_sections (some_bfd);
478 *start = (struct target_section *) xmalloc (count * sizeof (**start));
480 bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end);
481 if (*end > *start + count)
482 internal_error (__FILE__, __LINE__,
483 _("failed internal consistency check"));
484 /* We could realloc the table, but it probably loses for most files. */
488 /* Add the sections array defined by [SECTIONS..SECTIONS_END[ to the
489 current set of target sections. */
492 add_target_sections (void *owner,
493 struct target_section *sections,
494 struct target_section *sections_end)
497 struct target_section_table *table = current_target_sections;
499 count = sections_end - sections;
503 int space = resize_section_table (table, count);
506 for (i = 0; i < count; ++i)
508 table->sections[space + i] = sections[i];
509 table->sections[space + i].owner = owner;
512 /* If these are the first file sections we can provide memory
513 from, push the file_stratum target. */
514 if (!target_is_pushed (&exec_ops))
515 push_target (&exec_ops);
519 /* Add the sections of OBJFILE to the current set of target sections. */
522 add_target_sections_of_objfile (struct objfile *objfile)
524 struct target_section_table *table = current_target_sections;
525 struct obj_section *osect;
528 struct target_section *ts;
533 /* Compute the number of sections to add. */
534 ALL_OBJFILE_OSECTIONS (objfile, osect)
536 if (bfd_get_section_size (osect->the_bfd_section) == 0)
544 space = resize_section_table (table, count);
546 ts = table->sections + space;
548 ALL_OBJFILE_OSECTIONS (objfile, osect)
550 if (bfd_get_section_size (osect->the_bfd_section) == 0)
553 gdb_assert (ts < table->sections + space + count);
555 ts->addr = obj_section_addr (osect);
556 ts->endaddr = obj_section_endaddr (osect);
557 ts->the_bfd_section = osect->the_bfd_section;
558 ts->owner = (void *) objfile;
564 /* Remove all target sections owned by OWNER.
565 OWNER must be the same value passed to add_target_sections. */
568 remove_target_sections (void *owner)
570 struct target_section *src, *dest;
571 struct target_section_table *table = current_target_sections;
573 gdb_assert (owner != NULL);
575 dest = table->sections;
576 for (src = table->sections; src < table->sections_end; src++)
577 if (src->owner != owner)
579 /* Keep this section. */
585 /* If we've dropped any sections, resize the section table. */
590 old_count = resize_section_table (table, dest - src);
592 /* If we don't have any more sections to read memory from,
593 remove the file_stratum target from the stack. */
594 if (old_count + (dest - src) == 0)
596 struct program_space *pspace;
599 if (pspace->target_sections.sections
600 != pspace->target_sections.sections_end)
603 unpush_target (&exec_ops);
610 enum target_xfer_status
611 exec_read_partial_read_only (gdb_byte *readbuf, ULONGEST offset,
612 ULONGEST len, ULONGEST *xfered_len)
614 /* It's unduly pedantic to refuse to look at the executable for
615 read-only pieces; so do the equivalent of readonly regions aka
617 if (exec_bfd != NULL)
623 for (s = exec_bfd->sections; s; s = s->next)
625 if ((s->flags & SEC_LOAD) == 0
626 || (s->flags & SEC_READONLY) == 0)
630 size = bfd_get_section_size (s);
631 if (vma <= offset && offset < (vma + size))
635 amt = (vma + size) - offset;
639 amt = bfd_get_section_contents (exec_bfd, s,
640 readbuf, offset - vma, amt);
643 return TARGET_XFER_EOF;
647 return TARGET_XFER_OK;
653 /* Indicate failure to find the requested memory block. */
654 return TARGET_XFER_E_IO;
657 /* Appends all read-only memory ranges found in the target section
658 table defined by SECTIONS and SECTIONS_END, starting at (and
659 intersected with) MEMADDR for LEN bytes. Returns the augmented
662 static VEC(mem_range_s) *
663 section_table_available_memory (VEC(mem_range_s) *memory,
664 CORE_ADDR memaddr, ULONGEST len,
665 struct target_section *sections,
666 struct target_section *sections_end)
668 struct target_section *p;
670 for (p = sections; p < sections_end; p++)
672 if ((bfd_get_section_flags (p->the_bfd_section->owner,
674 & SEC_READONLY) == 0)
677 /* Copy the meta-data, adjusted. */
678 if (mem_ranges_overlap (p->addr, p->endaddr - p->addr, memaddr, len))
680 ULONGEST lo1, hi1, lo2, hi2;
689 r = VEC_safe_push (mem_range_s, memory, NULL);
691 r->start = max (lo1, lo2);
692 r->length = min (hi1, hi2) - r->start;
699 enum target_xfer_status
700 section_table_read_available_memory (gdb_byte *readbuf, ULONGEST offset,
701 ULONGEST len, ULONGEST *xfered_len)
703 VEC(mem_range_s) *available_memory = NULL;
704 struct target_section_table *table;
705 struct cleanup *old_chain;
709 table = target_get_section_table (&exec_ops);
710 available_memory = section_table_available_memory (available_memory,
713 table->sections_end);
715 old_chain = make_cleanup (VEC_cleanup(mem_range_s),
718 normalize_mem_ranges (available_memory);
721 VEC_iterate (mem_range_s, available_memory, i, r);
724 if (mem_ranges_overlap (r->start, r->length, offset, len))
727 enum target_xfer_status status;
729 /* Get the intersection window. */
730 end = min (offset + len, r->start + r->length);
732 gdb_assert (end - offset <= len);
734 if (offset >= r->start)
735 status = exec_read_partial_read_only (readbuf, offset,
740 *xfered_len = r->start - offset;
741 status = TARGET_XFER_UNAVAILABLE;
743 do_cleanups (old_chain);
747 do_cleanups (old_chain);
750 return TARGET_XFER_UNAVAILABLE;
753 enum target_xfer_status
754 section_table_xfer_memory_partial (gdb_byte *readbuf, const gdb_byte *writebuf,
755 ULONGEST offset, ULONGEST len,
756 ULONGEST *xfered_len,
757 struct target_section *sections,
758 struct target_section *sections_end,
759 const char *section_name)
762 struct target_section *p;
763 ULONGEST memaddr = offset;
764 ULONGEST memend = memaddr + len;
767 internal_error (__FILE__, __LINE__,
768 _("failed internal consistency check"));
770 for (p = sections; p < sections_end; p++)
772 struct bfd_section *asect = p->the_bfd_section;
773 bfd *abfd = asect->owner;
775 if (section_name && strcmp (section_name, asect->name) != 0)
776 continue; /* not the section we need. */
777 if (memaddr >= p->addr)
779 if (memend <= p->endaddr)
781 /* Entire transfer is within this section. */
783 res = bfd_set_section_contents (abfd, asect,
784 writebuf, memaddr - p->addr,
787 res = bfd_get_section_contents (abfd, asect,
788 readbuf, memaddr - p->addr,
794 return TARGET_XFER_OK;
797 return TARGET_XFER_EOF;
799 else if (memaddr >= p->endaddr)
801 /* This section ends before the transfer starts. */
806 /* This section overlaps the transfer. Just do half. */
807 len = p->endaddr - memaddr;
809 res = bfd_set_section_contents (abfd, asect,
810 writebuf, memaddr - p->addr,
813 res = bfd_get_section_contents (abfd, asect,
814 readbuf, memaddr - p->addr,
819 return TARGET_XFER_OK;
822 return TARGET_XFER_EOF;
827 return TARGET_XFER_EOF; /* We can't help. */
830 static struct target_section_table *
831 exec_get_section_table (struct target_ops *ops)
833 return current_target_sections;
836 static enum target_xfer_status
837 exec_xfer_partial (struct target_ops *ops, enum target_object object,
838 const char *annex, gdb_byte *readbuf,
839 const gdb_byte *writebuf,
840 ULONGEST offset, ULONGEST len, ULONGEST *xfered_len)
842 struct target_section_table *table = target_get_section_table (ops);
844 if (object == TARGET_OBJECT_MEMORY)
845 return section_table_xfer_memory_partial (readbuf, writebuf,
846 offset, len, xfered_len,
851 return TARGET_XFER_E_IO;
856 print_section_info (struct target_section_table *t, bfd *abfd)
858 struct gdbarch *gdbarch = gdbarch_from_bfd (abfd);
859 struct target_section *p;
860 /* FIXME: 16 is not wide enough when gdbarch_addr_bit > 64. */
861 int wid = gdbarch_addr_bit (gdbarch) <= 32 ? 8 : 16;
863 printf_filtered ("\t`%s', ", bfd_get_filename (abfd));
865 printf_filtered (_("file type %s.\n"), bfd_get_target (abfd));
866 if (abfd == exec_bfd)
868 /* gcc-3.4 does not like the initialization in
869 <p == t->sections_end>. */
870 bfd_vma displacement = 0;
873 for (p = t->sections; p < t->sections_end; p++)
875 struct bfd_section *psect = p->the_bfd_section;
876 bfd *pbfd = psect->owner;
878 if ((bfd_get_section_flags (pbfd, psect) & (SEC_ALLOC | SEC_LOAD))
879 != (SEC_ALLOC | SEC_LOAD))
882 if (bfd_get_section_vma (pbfd, psect) <= abfd->start_address
883 && abfd->start_address < (bfd_get_section_vma (pbfd, psect)
884 + bfd_get_section_size (psect)))
886 displacement = p->addr - bfd_get_section_vma (pbfd, psect);
890 if (p == t->sections_end)
891 warning (_("Cannot find section for the entry point of %s."),
892 bfd_get_filename (abfd));
894 entry_point = gdbarch_addr_bits_remove (gdbarch,
895 bfd_get_start_address (abfd)
897 printf_filtered (_("\tEntry point: %s\n"),
898 paddress (gdbarch, entry_point));
900 for (p = t->sections; p < t->sections_end; p++)
902 struct bfd_section *psect = p->the_bfd_section;
903 bfd *pbfd = psect->owner;
905 printf_filtered ("\t%s", hex_string_custom (p->addr, wid));
906 printf_filtered (" - %s", hex_string_custom (p->endaddr, wid));
908 /* FIXME: A format of "08l" is not wide enough for file offsets
909 larger than 4GB. OTOH, making it "016l" isn't desirable either
910 since most output will then be much wider than necessary. It
911 may make sense to test the size of the file and choose the
912 format string accordingly. */
913 /* FIXME: i18n: Need to rewrite this sentence. */
915 printf_filtered (" @ %s",
916 hex_string_custom (psect->filepos, 8));
917 printf_filtered (" is %s", bfd_section_name (pbfd, psect));
919 printf_filtered (" in %s", bfd_get_filename (pbfd));
920 printf_filtered ("\n");
925 exec_files_info (struct target_ops *t)
928 print_section_info (current_target_sections, exec_bfd);
930 puts_filtered (_("\t<no file loaded>\n"));
934 set_section_command (char *args, int from_tty)
936 struct target_section *p;
939 unsigned long secaddr;
942 struct target_section_table *table;
945 error (_("Must specify section name and its virtual address"));
947 /* Parse out section name. */
948 for (secname = args; !isspace (*args); args++);
949 seclen = args - secname;
951 /* Parse out new virtual address. */
952 secaddr = parse_and_eval_address (args);
954 table = current_target_sections;
955 for (p = table->sections; p < table->sections_end; p++)
957 if (!strncmp (secname, bfd_section_name (p->bfd,
958 p->the_bfd_section), seclen)
959 && bfd_section_name (p->bfd, p->the_bfd_section)[seclen] == '\0')
961 offset = secaddr - p->addr;
963 p->endaddr += offset;
965 exec_files_info (&exec_ops);
969 if (seclen >= sizeof (secprint))
970 seclen = sizeof (secprint) - 1;
971 strncpy (secprint, secname, seclen);
972 secprint[seclen] = '\0';
973 error (_("Section %s not found"), secprint);
976 /* If we can find a section in FILENAME with BFD index INDEX, adjust
980 exec_set_section_address (const char *filename, int index, CORE_ADDR address)
982 struct target_section *p;
983 struct target_section_table *table;
985 table = current_target_sections;
986 for (p = table->sections; p < table->sections_end; p++)
988 if (filename_cmp (filename, p->the_bfd_section->owner->filename) == 0
989 && index == p->the_bfd_section->index)
991 p->endaddr += address - p->addr;
997 /* If mourn is being called in all the right places, this could be say
998 `gdb internal error' (since generic_mourn calls
999 breakpoint_init_inferior). */
1002 ignore (struct target_ops *ops, struct gdbarch *gdbarch,
1003 struct bp_target_info *bp_tgt)
1009 exec_has_memory (struct target_ops *ops)
1011 /* We can provide memory if we have any file/target sections to read
1013 return (current_target_sections->sections
1014 != current_target_sections->sections_end);
1018 exec_make_note_section (struct target_ops *self, bfd *obfd, int *note_size)
1020 error (_("Can't create a corefile"));
1023 /* Fill in the exec file target vector. Very few entries need to be
1027 init_exec_ops (void)
1029 exec_ops.to_shortname = "exec";
1030 exec_ops.to_longname = "Local exec file";
1031 exec_ops.to_doc = "Use an executable file as a target.\n\
1032 Specify the filename of the executable file.";
1033 exec_ops.to_open = exec_open;
1034 exec_ops.to_close = exec_close_1;
1035 exec_ops.to_xfer_partial = exec_xfer_partial;
1036 exec_ops.to_get_section_table = exec_get_section_table;
1037 exec_ops.to_files_info = exec_files_info;
1038 exec_ops.to_insert_breakpoint = ignore;
1039 exec_ops.to_remove_breakpoint = ignore;
1040 exec_ops.to_stratum = file_stratum;
1041 exec_ops.to_has_memory = exec_has_memory;
1042 exec_ops.to_make_corefile_notes = exec_make_note_section;
1043 exec_ops.to_find_memory_regions = objfile_find_memory_regions;
1044 exec_ops.to_magic = OPS_MAGIC;
1048 _initialize_exec (void)
1050 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_with_completer (&exec_ops, filename_completer);