daily update
[deliverable/binutils-gdb.git] / bfd / elfcore.h
CommitLineData
252b5132 1/* ELF core file support for BFD.
cd123cb7 2 Copyright 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2005, 2007
7898deda 3 Free Software Foundation, Inc.
252b5132 4
3193e234 5 This file is part of BFD, the Binary File Descriptor library.
252b5132 6
3193e234
NC
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
cd123cb7 9 the Free Software Foundation; either version 3 of the License, or
3193e234 10 (at your option) any later version.
252b5132 11
3193e234
NC
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.
252b5132 16
3193e234
NC
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
cd123cb7
NC
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
252b5132 21
252b5132 22char*
268b6b39 23elf_core_file_failing_command (bfd *abfd)
252b5132
RH
24{
25 return elf_tdata (abfd)->core_command;
26}
27
28int
268b6b39 29elf_core_file_failing_signal (bfd *abfd)
252b5132
RH
30{
31 return elf_tdata (abfd)->core_signal;
32}
33
b34976b6 34bfd_boolean
268b6b39 35elf_core_file_matches_executable_p (bfd *core_bfd, bfd *exec_bfd)
252b5132
RH
36{
37 char* corename;
38
3e932841 39 /* xvecs must match if both are ELF files for the same target. */
252b5132
RH
40
41 if (core_bfd->xvec != exec_bfd->xvec)
42 {
43 bfd_set_error (bfd_error_system_call);
b34976b6 44 return FALSE;
252b5132
RH
45 }
46
3e932841 47 /* See if the name in the corefile matches the executable name. */
252b5132
RH
48 corename = elf_tdata (core_bfd)->core_program;
49 if (corename != NULL)
50 {
51 const char* execname = strrchr (exec_bfd->filename, '/');
3193e234 52
252b5132
RH
53 execname = execname ? execname + 1 : exec_bfd->filename;
54
268b6b39 55 if (strcmp (execname, corename) != 0)
b34976b6 56 return FALSE;
252b5132
RH
57 }
58
b34976b6 59 return TRUE;
252b5132
RH
60}
61
252b5132
RH
62/* Core files are simply standard ELF formatted files that partition
63 the file using the execution view of the file (program header table)
64 rather than the linking view. In fact, there is no section header
65 table in a core file.
66
67 The process status information (including the contents of the general
68 register set) and the floating point register set are stored in a
69 segment of type PT_NOTE. We handcraft a couple of extra bfd sections
70 that allow standard bfd access to the general registers (.reg) and the
3193e234 71 floating point registers (.reg2). */
252b5132
RH
72
73const bfd_target *
268b6b39 74elf_core_file_p (bfd *abfd)
252b5132 75{
3193e234
NC
76 Elf_External_Ehdr x_ehdr; /* Elf file header, external form. */
77 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form. */
78 Elf_Internal_Phdr *i_phdrp; /* Elf program header, internal form. */
252b5132 79 unsigned int phindex;
9c5bfbb7 80 const struct elf_backend_data *ebd;
ed591155 81 struct bfd_preserve preserve;
dc810e39 82 bfd_size_type amt;
252b5132 83
a7f84125 84 preserve.marker = NULL;
12e1f53e 85
252b5132 86 /* Read in the ELF header in external format. */
268b6b39 87 if (bfd_bread (&x_ehdr, sizeof (x_ehdr), abfd) != sizeof (x_ehdr))
252b5132
RH
88 {
89 if (bfd_get_error () != bfd_error_system_call)
a7f84125
AM
90 goto wrong;
91 else
92 goto fail;
252b5132
RH
93 }
94
3e932841 95 /* Check the magic number. */
82e51918 96 if (! elf_file_p (&x_ehdr))
60bcf0fa 97 goto wrong;
252b5132 98
3193e234 99 /* FIXME: Check EI_VERSION here ! */
252b5132 100
3e932841 101 /* Check the address size ("class"). */
252b5132
RH
102 if (x_ehdr.e_ident[EI_CLASS] != ELFCLASS)
103 goto wrong;
104
3e932841 105 /* Check the byteorder. */
252b5132
RH
106 switch (x_ehdr.e_ident[EI_DATA])
107 {
3193e234 108 case ELFDATA2MSB: /* Big-endian. */
252b5132
RH
109 if (! bfd_big_endian (abfd))
110 goto wrong;
111 break;
3193e234 112 case ELFDATA2LSB: /* Little-endian. */
252b5132
RH
113 if (! bfd_little_endian (abfd))
114 goto wrong;
115 break;
116 default:
117 goto wrong;
118 }
119
a7f84125 120 if (!bfd_preserve_save (abfd, &preserve))
ed591155
AM
121 goto fail;
122
0c83546a
AM
123 /* Give abfd an elf_obj_tdata. */
124 if (! (*abfd->xvec->_bfd_set_format[bfd_core]) (abfd))
125 goto fail;
126 preserve.marker = elf_tdata (abfd);
a7f84125 127
3e932841 128 /* Swap in the rest of the header, now that we have the byte order. */
252b5132
RH
129 i_ehdrp = elf_elfheader (abfd);
130 elf_swap_ehdr_in (abfd, &x_ehdr, i_ehdrp);
131
132#if DEBUG & 1
133 elf_debug_file (i_ehdrp);
134#endif
135
136 ebd = get_elf_backend_data (abfd);
137
138 /* Check that the ELF e_machine field matches what this particular
139 BFD format expects. */
140
141 if (ebd->elf_machine_code != i_ehdrp->e_machine
142 && (ebd->elf_machine_alt1 == 0
143 || i_ehdrp->e_machine != ebd->elf_machine_alt1)
144 && (ebd->elf_machine_alt2 == 0
145 || i_ehdrp->e_machine != ebd->elf_machine_alt2))
146 {
147 const bfd_target * const *target_ptr;
148
149 if (ebd->elf_machine_code != EM_NONE)
150 goto wrong;
151
152 /* This is the generic ELF target. Let it match any ELF target
153 for which we do not have a specific backend. */
154
155 for (target_ptr = bfd_target_vector; *target_ptr != NULL; target_ptr++)
156 {
9c5bfbb7 157 const struct elf_backend_data *back;
252b5132
RH
158
159 if ((*target_ptr)->flavour != bfd_target_elf_flavour)
160 continue;
f7231afc 161 back = xvec_get_elf_backend_data (*target_ptr);
3193e234
NC
162 if (back->elf_machine_code == i_ehdrp->e_machine
163 || (back->elf_machine_alt1 != 0
164 && i_ehdrp->e_machine == back->elf_machine_alt1)
165 || (back->elf_machine_alt2 != 0
166 && i_ehdrp->e_machine == back->elf_machine_alt2))
252b5132
RH
167 {
168 /* target_ptr is an ELF backend which matches this
169 object file, so reject the generic ELF target. */
170 goto wrong;
171 }
172 }
173 }
174
175 /* If there is no program header, or the type is not a core file, then
3e932841 176 we are hosed. */
252b5132
RH
177 if (i_ehdrp->e_phoff == 0 || i_ehdrp->e_type != ET_CORE)
178 goto wrong;
179
180 /* Does BFD's idea of the phdr size match the size
181 recorded in the file? */
182 if (i_ehdrp->e_phentsize != sizeof (Elf_External_Phdr))
183 goto wrong;
184
d20966a7 185 /* Move to the start of the program headers. */
dc810e39 186 if (bfd_seek (abfd, (file_ptr) i_ehdrp->e_phoff, SEEK_SET) != 0)
d20966a7 187 goto wrong;
3e932841
KH
188
189 /* Allocate space for the program headers. */
dc810e39 190 amt = sizeof (*i_phdrp) * i_ehdrp->e_phnum;
268b6b39 191 i_phdrp = bfd_alloc (abfd, amt);
252b5132 192 if (!i_phdrp)
0ab2f69a 193 goto fail;
252b5132
RH
194
195 elf_tdata (abfd)->phdr = i_phdrp;
196
3e932841 197 /* Read and convert to internal form. */
252b5132
RH
198 for (phindex = 0; phindex < i_ehdrp->e_phnum; ++phindex)
199 {
200 Elf_External_Phdr x_phdr;
3193e234 201
268b6b39 202 if (bfd_bread (&x_phdr, sizeof (x_phdr), abfd) != sizeof (x_phdr))
0ab2f69a 203 goto fail;
252b5132
RH
204
205 elf_swap_phdr_in (abfd, &x_phdr, i_phdrp + phindex);
206 }
207
702248bb
JT
208 /* Set the machine architecture. Do this before processing the
209 program headers since we need to know the architecture type
210 when processing the notes of some systems' core files. */
5cba516c 211 if (! bfd_default_set_arch_mach (abfd, ebd->arch, 0)
252b5132 212 /* It's OK if this fails for the generic target. */
5cba516c
NC
213 && ebd->elf_machine_code != EM_NONE)
214 goto fail;
215
216 /* Let the backend double check the format and override global
217 information. We do this before processing the program headers
218 to allow the correct machine (as opposed to just the default
219 machine) to be set, making it possible for grok_prstatus and
220 grok_psinfo to rely on the mach setting. */
221 if (ebd->elf_backend_object_p != NULL
222 && ! ebd->elf_backend_object_p (abfd))
223 goto wrong;
252b5132 224
a94cef6a
JT
225 /* Process each program header. */
226 for (phindex = 0; phindex < i_ehdrp->e_phnum; ++phindex)
3193e234
NC
227 if (! bfd_section_from_phdr (abfd, i_phdrp + phindex, (int) phindex))
228 goto fail;
a94cef6a 229
3e932841 230 /* Save the entry point from the ELF header. */
252b5132
RH
231 bfd_get_start_address (abfd) = i_ehdrp->e_entry;
232
a7f84125 233 bfd_preserve_finish (abfd, &preserve);
252b5132 234 return abfd->xvec;
0ab2f69a
MS
235
236wrong:
12e1f53e
HPN
237 /* There is way too much undoing of half-known state here. The caller,
238 bfd_check_format_matches, really shouldn't iterate on live bfd's to
239 check match/no-match like it does. We have to rely on that a call to
240 bfd_default_set_arch_mach with the previously known mach, undoes what
241 was done by the first bfd_default_set_arch_mach (with mach 0) here.
242 For this to work, only elf-data and the mach may be changed by the
243 target-specific elf_backend_object_p function. Note that saving the
244 whole bfd here and restoring it would be even worse; the first thing
245 you notice is that the cached bfd file position gets out of sync. */
0ab2f69a 246 bfd_set_error (bfd_error_wrong_format);
ed591155 247
0ab2f69a 248fail:
a7f84125
AM
249 if (preserve.marker != NULL)
250 bfd_preserve_restore (abfd, &preserve);
0ab2f69a 251 return NULL;
252b5132 252}
This page took 0.471763 seconds and 4 git commands to generate.