]>
Commit | Line | Data |
---|---|---|
db232882 KR |
1 | /* BFD back-end data structures for ELF files. |
2 | Copyright (C) 1992, 1993 Free Software Foundation, Inc. | |
3 | Written by Cygnus Support. | |
4 | ||
5 | This file is part of BFD, the Binary File Descriptor library. | |
6 | ||
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 2 of the License, or | |
10 | (at your option) any later version. | |
11 | ||
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. | |
16 | ||
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 | |
19 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
20 | ||
21 | #ifndef _LIBELF_H_ | |
22 | #define _LIBELF_H_ 1 | |
23 | ||
81187b54 KR |
24 | #include "elf/common.h" |
25 | #include "elf/internal.h" | |
26 | #include "elf/external.h" | |
6ec3bb6a | 27 | #include "bfdlink.h" |
81187b54 | 28 | |
998ce1e0 | 29 | /* If size isn't specified as 64 or 32, NAME macro should fail. */ |
9942e684 | 30 | #ifndef NAME |
7050286d | 31 | #if ARCH_SIZE==64 |
638616ca | 32 | #define NAME(x,y) CAT4(x,64,_,y) |
998ce1e0 KR |
33 | #endif |
34 | #if ARCH_SIZE==32 | |
638616ca | 35 | #define NAME(x,y) CAT4(x,32,_,y) |
9942e684 KR |
36 | #endif |
37 | #endif | |
38 | ||
153cb9ad KR |
39 | #ifndef NAME |
40 | #define NAME(x,y) CAT4(x,NOSIZE,_,y) | |
41 | #endif | |
42 | ||
638616ca KR |
43 | #define ElfNAME(X) NAME(Elf,X) |
44 | #define elfNAME(X) NAME(elf,X) | |
45 | ||
95469b02 ILT |
46 | /* Information held for an ELF symbol. The first field is the |
47 | corresponding asymbol. Every symbol is an ELF file is actually a | |
48 | pointer to this structure, although it is often handled as a | |
49 | pointer to an asymbol. */ | |
50 | ||
db232882 KR |
51 | typedef struct |
52 | { | |
95469b02 | 53 | /* The BFD symbol. */ |
db232882 | 54 | asymbol symbol; |
95469b02 | 55 | /* ELF symbol information. */ |
268f94ac | 56 | Elf_Internal_Sym internal_elf_sym; |
95469b02 | 57 | /* Backend specific information. */ |
7050286d KR |
58 | union |
59 | { | |
60 | unsigned int hppa_arg_reloc; | |
cf286547 | 61 | PTR mips_extr; |
7050286d KR |
62 | PTR any; |
63 | } | |
64 | tc_data; | |
ee8cb548 | 65 | } elf_symbol_type; |
013dec1a ILT |
66 | \f |
67 | /* ELF linker hash table entries. */ | |
68 | ||
69 | struct elf_link_hash_entry | |
70 | { | |
71 | struct bfd_link_hash_entry root; | |
72 | ||
73 | /* Symbol index in output file. This is initialized to -1. It is | |
74 | set to -2 if the symbol is used by a reloc. */ | |
75 | long indx; | |
76 | ||
77 | /* Symbol size. */ | |
78 | bfd_size_type size; | |
79 | ||
013dec1a ILT |
80 | /* Symbol index as a dynamic symbol. Initialized to -1, and remains |
81 | -1 if this is not a dynamic symbol. */ | |
82 | long dynindx; | |
83 | ||
84 | /* String table index in .dynstr if this is a dynamic symbol. */ | |
85 | unsigned long dynstr_index; | |
86 | ||
87 | /* If this is a weak defined symbol from a dynamic object, this | |
88 | field points to a defined symbol with the same value, if there is | |
89 | one. Otherwise it is NULL. */ | |
90 | struct elf_link_hash_entry *weakdef; | |
91 | ||
374d2ef9 ILT |
92 | /* If this symbol requires an entry in the global offset table, the |
93 | processor specific backend uses this field to hold the offset | |
94 | into the .got section. If this field is -1, then the symbol does | |
95 | not require a global offset table entry. */ | |
96 | bfd_vma got_offset; | |
97 | ||
98 | /* If this symbol requires an entry in the procedure linkage table, | |
99 | the processor specific backend uses these two fields to hold the | |
100 | offset into the procedure linkage section and the offset into the | |
101 | .got section. If plt_offset is -1, then the symbol does not | |
102 | require an entry in the procedure linkage table. */ | |
103 | bfd_vma plt_offset; | |
7c6da9ca | 104 | |
013dec1a ILT |
105 | /* Symbol type (STT_NOTYPE, STT_OBJECT, etc.). */ |
106 | char type; | |
107 | ||
108 | /* Some flags; legal values follow. */ | |
109 | unsigned char elf_link_hash_flags; | |
110 | /* Symbol is referenced by a non-shared object. */ | |
111 | #define ELF_LINK_HASH_REF_REGULAR 01 | |
112 | /* Symbol is defined by a non-shared object. */ | |
113 | #define ELF_LINK_HASH_DEF_REGULAR 02 | |
114 | /* Symbol is referenced by a shared object. */ | |
115 | #define ELF_LINK_HASH_REF_DYNAMIC 04 | |
116 | /* Symbol is defined by a shared object. */ | |
117 | #define ELF_LINK_HASH_DEF_DYNAMIC 010 | |
013dec1a | 118 | /* Dynamic symbol has been adjustd. */ |
374d2ef9 | 119 | #define ELF_LINK_HASH_DYNAMIC_ADJUSTED 020 |
374d2ef9 | 120 | /* Symbol needs a copy reloc. */ |
0bef7f72 | 121 | #define ELF_LINK_HASH_NEEDS_COPY 040 |
12662be4 | 122 | /* Symbol needs a procedure linkage table entry. */ |
0bef7f72 | 123 | #define ELF_LINK_HASH_NEEDS_PLT 0100 |
013dec1a ILT |
124 | }; |
125 | ||
126 | /* ELF linker hash table. */ | |
7050286d | 127 | |
013dec1a ILT |
128 | struct elf_link_hash_table |
129 | { | |
130 | struct bfd_link_hash_table root; | |
12662be4 ILT |
131 | /* Whether we have created the special dynamic sections required |
132 | when linking against or generating a shared object. */ | |
133 | boolean dynamic_sections_created; | |
134 | /* The BFD used to hold special sections created by the linker. | |
135 | This will be the first BFD found which requires these sections to | |
136 | be created. */ | |
013dec1a ILT |
137 | bfd *dynobj; |
138 | /* The number of symbols found in the link which must be put into | |
139 | the .dynsym section. */ | |
140 | size_t dynsymcount; | |
141 | /* The string table of dynamic symbols, which becomes the .dynstr | |
142 | section. */ | |
eb4267a3 | 143 | struct bfd_strtab_hash *dynstr; |
013dec1a ILT |
144 | /* The number of buckets in the hash table in the .hash section. |
145 | This is based on the number of dynamic symbols. */ | |
146 | size_t bucketcount; | |
59474174 ILT |
147 | /* Whether we are linking against a dynamic object which has a |
148 | DT_NEEDED entry in the .dynamic section. This may need to become | |
149 | a list of DT_NEEDED entries. */ | |
150 | boolean saw_needed; | |
013dec1a ILT |
151 | }; |
152 | ||
153 | /* Look up an entry in an ELF linker hash table. */ | |
154 | ||
155 | #define elf_link_hash_lookup(table, string, create, copy, follow) \ | |
156 | ((struct elf_link_hash_entry *) \ | |
157 | bfd_link_hash_lookup (&(table)->root, (string), (create), \ | |
158 | (copy), (follow))) | |
159 | ||
160 | /* Traverse an ELF linker hash table. */ | |
161 | ||
162 | #define elf_link_hash_traverse(table, func, info) \ | |
163 | (bfd_link_hash_traverse \ | |
164 | (&(table)->root, \ | |
165 | (boolean (*) PARAMS ((struct bfd_link_hash_entry *, PTR))) (func), \ | |
166 | (info))) | |
167 | ||
168 | /* Get the ELF linker hash table from a link_info structure. */ | |
169 | ||
170 | #define elf_hash_table(p) ((struct elf_link_hash_table *) ((p)->hash)) | |
171 | \f | |
95469b02 ILT |
172 | /* Constant information held for an ELF backend. */ |
173 | ||
268f94ac | 174 | struct elf_backend_data |
7050286d | 175 | { |
95469b02 ILT |
176 | /* Whether the backend uses REL or RELA relocations. FIXME: some |
177 | ELF backends use both. When we need to support one, this whole | |
178 | approach will need to be changed. */ | |
7050286d | 179 | int use_rela_p; |
95469b02 | 180 | |
95469b02 | 181 | /* The architecture for this backend. */ |
81187b54 | 182 | enum bfd_architecture arch; |
95469b02 | 183 | |
a5ccdad1 ILT |
184 | /* The ELF machine code (EM_xxxx) for this backend. */ |
185 | int elf_machine_code; | |
186 | ||
95469b02 ILT |
187 | /* The maximum page size for this backend. */ |
188 | bfd_vma maxpagesize; | |
189 | ||
6ec3bb6a ILT |
190 | /* This is true if the linker should act like collect and gather |
191 | global constructors and destructors by name. This is true for | |
192 | MIPS ELF because the Irix 5 tools can not handle the .init | |
193 | section. */ | |
194 | boolean collect; | |
195 | ||
95469b02 ILT |
196 | /* A function to translate an ELF RELA relocation to a BFD arelent |
197 | structure. */ | |
7050286d | 198 | void (*elf_info_to_howto) PARAMS ((bfd *, arelent *, |
268f94ac | 199 | Elf_Internal_Rela *)); |
95469b02 ILT |
200 | |
201 | /* A function to translate an ELF REL relocation to a BFD arelent | |
202 | structure. */ | |
7050286d | 203 | void (*elf_info_to_howto_rel) PARAMS ((bfd *, arelent *, |
268f94ac | 204 | Elf_Internal_Rel *)); |
db232882 | 205 | |
643e9fc7 ILT |
206 | /* A function to determine whether a symbol is global when |
207 | partitioning the symbol table into local and global symbols. | |
208 | This should be NULL for most targets, in which case the correct | |
209 | thing will be done. MIPS ELF, at least on the Irix 5, has | |
210 | special requirements. */ | |
211 | boolean (*elf_backend_sym_is_global) PARAMS ((bfd *, asymbol *)); | |
212 | ||
95469b02 ILT |
213 | /* The remaining functions are hooks which are called only if they |
214 | are not NULL. */ | |
215 | ||
a5ccdad1 ILT |
216 | /* A function to permit a backend specific check on whether a |
217 | particular BFD format is relevant for an object file, and to | |
218 | permit the backend to set any global information it wishes. When | |
219 | this is called elf_elfheader is set, but anything else should be | |
220 | used with caution. If this returns false, the check_format | |
d1ad85a6 | 221 | routine will return a bfd_error_wrong_format error. */ |
a5ccdad1 ILT |
222 | boolean (*elf_backend_object_p) PARAMS ((bfd *)); |
223 | ||
95469b02 ILT |
224 | /* A function to do additional symbol processing when reading the |
225 | ELF symbol table. This is where any processor-specific special | |
226 | section indices are handled. */ | |
e2a422b8 | 227 | void (*elf_backend_symbol_processing) PARAMS ((bfd *, asymbol *)); |
95469b02 ILT |
228 | |
229 | /* A function to do additional symbol processing after reading the | |
230 | entire ELF symbol table. */ | |
231 | boolean (*elf_backend_symbol_table_processing) PARAMS ((bfd *, | |
232 | elf_symbol_type *, | |
233 | int)); | |
234 | ||
235 | /* A function to do additional processing on the ELF section header | |
236 | just before writing it out. This is used to set the flags and | |
237 | type fields for some sections, or to actually write out data for | |
238 | unusual sections. */ | |
239 | boolean (*elf_backend_section_processing) PARAMS ((bfd *, | |
240 | Elf32_Internal_Shdr *)); | |
241 | ||
242 | /* A function to handle unusual section types when creating BFD | |
243 | sections from ELF sections. */ | |
244 | boolean (*elf_backend_section_from_shdr) PARAMS ((bfd *, | |
245 | Elf32_Internal_Shdr *, | |
246 | char *)); | |
247 | ||
248 | /* A function to set up the ELF section header for a BFD section in | |
249 | preparation for writing it out. This is where the flags and type | |
250 | fields are set for unusual sections. */ | |
251 | boolean (*elf_backend_fake_sections) PARAMS ((bfd *, Elf32_Internal_Shdr *, | |
252 | asection *)); | |
253 | ||
254 | /* A function to get the ELF section index for a BFD section. If | |
255 | this returns true, the section was found. If it is a normal ELF | |
256 | section, *RETVAL should be left unchanged. If it is not a normal | |
257 | ELF section *RETVAL should be set to the SHN_xxxx index. */ | |
258 | boolean (*elf_backend_section_from_bfd_section) | |
259 | PARAMS ((bfd *, Elf32_Internal_Shdr *, asection *, int *retval)); | |
260 | ||
6ec3bb6a ILT |
261 | /* If this field is not NULL, it is called by the add_symbols phase |
262 | of a link just before adding a symbol to the global linker hash | |
263 | table. It may modify any of the fields as it wishes. If *NAME | |
264 | is set to NULL, the symbol will be skipped rather than being | |
265 | added to the hash table. This function is responsible for | |
266 | handling all processor dependent symbol bindings and section | |
267 | indices, and must set at least *FLAGS and *SEC for each processor | |
268 | dependent case; failure to do so will cause a link error. */ | |
269 | boolean (*elf_add_symbol_hook) | |
270 | PARAMS ((bfd *abfd, struct bfd_link_info *info, | |
271 | const Elf_Internal_Sym *, const char **name, | |
272 | flagword *flags, asection **sec, bfd_vma *value)); | |
273 | ||
ff5a090f JL |
274 | /* If this field is not NULL, it is called by the elf_link_output_sym |
275 | phase of a link for each symbol which will appear in the object file. */ | |
276 | boolean (*elf_backend_link_output_symbol_hook) | |
277 | PARAMS ((bfd *, struct bfd_link_info *info, const char *, | |
278 | Elf_Internal_Sym *, asection *)); | |
279 | ||
013dec1a ILT |
280 | /* The CREATE_DYNAMIC_SECTIONS function is called by the ELF backend |
281 | linker the first time it encounters a dynamic object in the link. | |
282 | This function must create any sections required for dynamic | |
283 | linking. The ABFD argument is a dynamic object. The .interp, | |
284 | .dynamic, .dynsym, .dynstr, and .hash functions have already been | |
285 | created, and this function may modify the section flags if | |
286 | desired. This function will normally create the .got and .plt | |
287 | sections, but different backends have different requirements. */ | |
288 | boolean (*elf_backend_create_dynamic_sections) | |
289 | PARAMS ((bfd *abfd, struct bfd_link_info *info)); | |
290 | ||
374d2ef9 ILT |
291 | /* The CHECK_RELOCS function is called by the add_symbols phase of |
292 | the ELF backend linker. It is called once for each section with | |
293 | relocs of an object file, just after the symbols for the object | |
294 | file have been added to the global linker hash table. The | |
295 | function must look through the relocs and do any special handling | |
296 | required. This generally means allocating space in the global | |
297 | offset table, and perhaps allocating space for a reloc. The | |
298 | relocs are always passed as Rela structures; if the section | |
299 | actually uses Rel structures, the r_addend field will always be | |
300 | zero. */ | |
301 | boolean (*check_relocs) | |
302 | PARAMS ((bfd *abfd, struct bfd_link_info *info, asection *o, | |
303 | const Elf_Internal_Rela *relocs)); | |
304 | ||
013dec1a ILT |
305 | /* The ADJUST_DYNAMIC_SYMBOL function is called by the ELF backend |
306 | linker for every symbol which is defined by a dynamic object and | |
307 | referenced by a regular object. This is called after all the | |
308 | input files have been seen, but before the SIZE_DYNAMIC_SECTIONS | |
309 | function has been called. The hash table entry should be | |
6c97aedf ILT |
310 | bfd_link_hash_defined ore bfd_link_hash_defweak, and it should be |
311 | defined in a section from a dynamic object. Dynamic object | |
312 | sections are not included in the final link, and this function is | |
313 | responsible for changing the value to something which the rest of | |
314 | the link can deal with. This will normally involve adding an | |
315 | entry to the .plt or .got or some such section, and setting the | |
316 | symbol to point to that. */ | |
013dec1a ILT |
317 | boolean (*elf_backend_adjust_dynamic_symbol) |
318 | PARAMS ((struct bfd_link_info *info, struct elf_link_hash_entry *h)); | |
319 | ||
320 | /* The SIZE_DYNAMIC_SECTIONS function is called by the ELF backend | |
321 | linker after all the linker input files have been seen but before | |
322 | the sections sizes have been set. This is called after | |
323 | ADJUST_DYNAMIC_SYMBOL has been called on all appropriate symbols. | |
324 | It is only called when linking against a dynamic object. It must | |
325 | set the sizes of the dynamic sections, and may fill in their | |
326 | contents as well. The generic ELF linker can handle the .dynsym, | |
327 | .dynstr and .hash sections. This function must handle the | |
328 | .interp section and any sections created by the | |
329 | CREATE_DYNAMIC_SECTIONS entry point. */ | |
330 | boolean (*elf_backend_size_dynamic_sections) | |
331 | PARAMS ((bfd *output_bfd, struct bfd_link_info *info)); | |
332 | ||
6ec3bb6a ILT |
333 | /* The RELOCATE_SECTION function is called by the ELF backend linker |
334 | to handle the relocations for a section. | |
335 | ||
336 | The relocs are always passed as Rela structures; if the section | |
337 | actually uses Rel structures, the r_addend field will always be | |
338 | zero. | |
339 | ||
340 | This function is responsible for adjust the section contents as | |
341 | necessary, and (if using Rela relocs and generating a | |
342 | relocateable output file) adjusting the reloc addend as | |
343 | necessary. | |
344 | ||
345 | This function does not have to worry about setting the reloc | |
346 | address or the reloc symbol index. | |
347 | ||
348 | LOCAL_SYMS is a pointer to the swapped in local symbols. | |
349 | ||
350 | LOCAL_SECTIONS is an array giving the section in the input file | |
351 | corresponding to the st_shndx field of each local symbol. | |
352 | ||
353 | The global hash table entry for the global symbols can be found | |
354 | via elf_sym_hashes (input_bfd). | |
355 | ||
356 | When generating relocateable output, this function must handle | |
357 | STB_LOCAL/STT_SECTION symbols specially. The output symbol is | |
358 | going to be the section symbol corresponding to the output | |
359 | section, which means that the addend must be adjusted | |
360 | accordingly. */ | |
361 | boolean (*elf_backend_relocate_section) | |
362 | PARAMS ((bfd *output_bfd, struct bfd_link_info *info, | |
363 | bfd *input_bfd, asection *input_section, bfd_byte *contents, | |
364 | Elf_Internal_Rela *relocs, Elf_Internal_Sym *local_syms, | |
eb4267a3 | 365 | asection **local_sections)); |
6ec3bb6a | 366 | |
013dec1a ILT |
367 | /* The FINISH_DYNAMIC_SYMBOL function is called by the ELF backend |
368 | linker just before it writes a symbol out to the .dynsym section. | |
369 | The processor backend may make any required adjustment to the | |
370 | symbol. It may also take the opportunity to set contents of the | |
371 | dynamic sections. Note that FINISH_DYNAMIC_SYMBOL is called on | |
372 | all .dynsym symbols, while ADJUST_DYNAMIC_SYMBOL is only called | |
373 | on those symbols which are defined by a dynamic object. */ | |
374 | boolean (*elf_backend_finish_dynamic_symbol) | |
375 | PARAMS ((bfd *output_bfd, struct bfd_link_info *info, | |
376 | struct elf_link_hash_entry *h, Elf_Internal_Sym *sym)); | |
377 | ||
378 | /* The FINISH_DYNAMIC_SECTIONS function is called by the ELF backend | |
379 | linker just before it writes all the dynamic sections out to the | |
380 | output file. The FINISH_DYNAMIC_SYMBOL will have been called on | |
381 | all dynamic symbols. */ | |
382 | boolean (*elf_backend_finish_dynamic_sections) | |
383 | PARAMS ((bfd *output_bfd, struct bfd_link_info *info)); | |
384 | ||
99a6c761 JL |
385 | /* A function to do any beginning processing needed for the ELF file |
386 | before building the ELF headers and computing file positions. */ | |
ff5a090f JL |
387 | void (*elf_backend_begin_write_processing) |
388 | PARAMS ((bfd *, struct bfd_link_info *)); | |
99a6c761 | 389 | |
643e9fc7 | 390 | /* A function to do any final processing needed for the ELF file |
1208625d ILT |
391 | before writing it out. The LINKER argument is true if this BFD |
392 | was created by the ELF backend linker. */ | |
ff5a090f | 393 | void (*elf_backend_final_write_processing) |
1208625d | 394 | PARAMS ((bfd *, boolean linker)); |
643e9fc7 | 395 | |
95469b02 ILT |
396 | /* The swapping table to use when dealing with ECOFF information. |
397 | Used for the MIPS ELF .mdebug section. */ | |
398 | const struct ecoff_debug_swap *elf_backend_ecoff_debug_swap; | |
8c9bfee3 MM |
399 | |
400 | /* Alternate EM_xxxx machine codes for this backend. */ | |
401 | int elf_machine_alt1; | |
402 | int elf_machine_alt2; | |
81187b54 KR |
403 | }; |
404 | ||
ea617174 ILT |
405 | /* Information stored for each BFD section in an ELF file. This |
406 | structure is allocated by elf_new_section_hook. */ | |
407 | ||
32090b8e | 408 | struct bfd_elf_section_data { |
ea617174 | 409 | /* The ELF header for this section. */ |
32090b8e | 410 | Elf_Internal_Shdr this_hdr; |
ea617174 ILT |
411 | /* The ELF header for the reloc section associated with this |
412 | section, if any. */ | |
32090b8e | 413 | Elf_Internal_Shdr rel_hdr; |
ea617174 ILT |
414 | /* The ELF section number of this section. Only used for an output |
415 | file. */ | |
416 | int this_idx; | |
417 | /* The ELF section number of the reloc section associated with this | |
418 | section, if any. Only used for an output file. */ | |
419 | int rel_idx; | |
420 | /* Used by the backend linker to store the symbol hash table entries | |
421 | associated with relocs against global symbols. */ | |
6ec3bb6a | 422 | struct elf_link_hash_entry **rel_hashes; |
374d2ef9 ILT |
423 | /* A pointer to the swapped relocs. If the section uses REL relocs, |
424 | rather than RELA, all the r_addend fields will be zero. This | |
425 | pointer may be NULL. It is used by the backend linker. */ | |
426 | Elf_Internal_Rela *relocs; | |
14cac507 ILT |
427 | /* Used by the backend linker when generating a shared library to |
428 | record the dynamic symbol index for a section symbol | |
429 | corresponding to this section. */ | |
430 | long dynindx; | |
32090b8e | 431 | }; |
ea617174 | 432 | |
32090b8e | 433 | #define elf_section_data(sec) ((struct bfd_elf_section_data*)sec->used_by_bfd) |
32090b8e KR |
434 | |
435 | #define get_elf_backend_data(abfd) \ | |
436 | ((struct elf_backend_data *) (abfd)->xvec->backend_data) | |
437 | ||
32090b8e KR |
438 | /* Some private data is stashed away for future use using the tdata pointer |
439 | in the bfd structure. */ | |
440 | ||
441 | struct elf_obj_tdata | |
442 | { | |
443 | Elf_Internal_Ehdr elf_header[1]; /* Actual data, but ref like ptr */ | |
444 | Elf_Internal_Shdr **elf_sect_ptr; | |
d79ab07c | 445 | Elf_Internal_Phdr *phdr; |
eb4267a3 | 446 | struct bfd_strtab_hash *strtab_ptr; |
32090b8e KR |
447 | int num_locals; |
448 | int num_globals; | |
d24928c0 | 449 | asymbol **section_syms; /* STT_SECTION symbols for each section */ |
32090b8e KR |
450 | Elf_Internal_Shdr symtab_hdr; |
451 | Elf_Internal_Shdr shstrtab_hdr; | |
452 | Elf_Internal_Shdr strtab_hdr; | |
cb71adf1 PS |
453 | Elf_Internal_Shdr dynsymtab_hdr; |
454 | Elf_Internal_Shdr dynstrtab_hdr; | |
455 | int symtab_section, shstrtab_section, strtab_section, dynsymtab_section; | |
32090b8e KR |
456 | file_ptr next_file_pos; |
457 | void *prstatus; /* The raw /proc prstatus structure */ | |
458 | void *prpsinfo; /* The raw /proc prpsinfo structure */ | |
d5a30a08 ILT |
459 | bfd_vma gp; /* The gp value (MIPS only, for now) */ |
460 | int gp_size; /* The gp size (MIPS only, for now) */ | |
6ec3bb6a | 461 | |
1208625d ILT |
462 | /* This is set to true if the object was created by the backend |
463 | linker. */ | |
464 | boolean linker; | |
465 | ||
6ec3bb6a ILT |
466 | /* A mapping from external symbols to entries in the linker hash |
467 | table, used when linking. This is indexed by the symbol index | |
468 | minus the sh_info field of the symbol table header. */ | |
469 | struct elf_link_hash_entry **sym_hashes; | |
5315c428 | 470 | |
374d2ef9 ILT |
471 | /* A mapping from local symbols to offsets into the global offset |
472 | table, used when linking. This is indexed by the symbol index. */ | |
473 | bfd_vma *local_got_offsets; | |
474 | ||
c1f84521 ILT |
475 | /* The linker ELF emulation code needs to let the backend ELF linker |
476 | know what filename should be used for a dynamic object if the | |
477 | dynamic object is found using a search. This field is used to | |
478 | hold that information. */ | |
479 | const char *dt_needed_name; | |
480 | ||
5315c428 ILT |
481 | /* Irix 5 often screws up the symbol table, sorting local symbols |
482 | after global symbols. This flag is set if the symbol table in | |
483 | this BFD appears to be screwed up. If it is, we ignore the | |
484 | sh_info field in the symbol table header, and always read all the | |
485 | symbols. */ | |
486 | boolean bad_symtab; | |
ef6fb95d DE |
487 | |
488 | /* Records the result of `get_program_header_size'. */ | |
489 | bfd_size_type program_header_size; | |
580102b0 ILT |
490 | |
491 | /* Used by MIPS ELF find_nearest_line entry point. The structure | |
492 | could be included directly in this one, but there's no point to | |
493 | wasting the memory just for the infrequently called | |
494 | find_nearest_line. */ | |
495 | struct mips_elf_find_line *find_line_info; | |
d5fb1e2a MM |
496 | |
497 | /* Used by PowerPC to determine if the e_flags field has been intiialized */ | |
498 | boolean ppc_flags_init; | |
32090b8e KR |
499 | }; |
500 | ||
501 | #define elf_tdata(bfd) ((bfd) -> tdata.elf_obj_data) | |
502 | #define elf_elfheader(bfd) (elf_tdata(bfd) -> elf_header) | |
503 | #define elf_elfsections(bfd) (elf_tdata(bfd) -> elf_sect_ptr) | |
504 | #define elf_shstrtab(bfd) (elf_tdata(bfd) -> strtab_ptr) | |
505 | #define elf_onesymtab(bfd) (elf_tdata(bfd) -> symtab_section) | |
cb71adf1 | 506 | #define elf_dynsymtab(bfd) (elf_tdata(bfd) -> dynsymtab_section) |
32090b8e KR |
507 | #define elf_num_locals(bfd) (elf_tdata(bfd) -> num_locals) |
508 | #define elf_num_globals(bfd) (elf_tdata(bfd) -> num_globals) | |
d24928c0 | 509 | #define elf_section_syms(bfd) (elf_tdata(bfd) -> section_syms) |
32090b8e KR |
510 | #define core_prpsinfo(bfd) (elf_tdata(bfd) -> prpsinfo) |
511 | #define core_prstatus(bfd) (elf_tdata(bfd) -> prstatus) | |
d5a30a08 ILT |
512 | #define elf_gp(bfd) (elf_tdata(bfd) -> gp) |
513 | #define elf_gp_size(bfd) (elf_tdata(bfd) -> gp_size) | |
6ec3bb6a | 514 | #define elf_sym_hashes(bfd) (elf_tdata(bfd) -> sym_hashes) |
374d2ef9 | 515 | #define elf_local_got_offsets(bfd) (elf_tdata(bfd) -> local_got_offsets) |
c1f84521 | 516 | #define elf_dt_needed_name(bfd) (elf_tdata(bfd) -> dt_needed_name) |
5315c428 | 517 | #define elf_bad_symtab(bfd) (elf_tdata(bfd) -> bad_symtab) |
d5fb1e2a | 518 | #define elf_ppc_flags_init(bfd) (elf_tdata(bfd) -> ppc_flags_init) |
6ec3bb6a | 519 | \f |
32090b8e KR |
520 | extern char * elf_string_from_elf_section PARAMS ((bfd *, unsigned, unsigned)); |
521 | extern char * elf_get_str_section PARAMS ((bfd *, unsigned)); | |
522 | ||
64e21e0f KR |
523 | extern void bfd_elf_print_symbol PARAMS ((bfd *, PTR, asymbol *, |
524 | bfd_print_symbol_type)); | |
525 | ||
526 | #define bfd_elf32_print_symbol bfd_elf_print_symbol | |
527 | #define bfd_elf64_print_symbol bfd_elf_print_symbol | |
32090b8e KR |
528 | #define bfd_elf32_mkobject bfd_elf_mkobject |
529 | #define bfd_elf64_mkobject bfd_elf_mkobject | |
530 | #define elf_mkobject bfd_elf_mkobject | |
531 | ||
153cb9ad | 532 | extern unsigned long bfd_elf_hash PARAMS ((CONST unsigned char *)); |
7e37f9ff | 533 | |
32090b8e KR |
534 | extern bfd_reloc_status_type bfd_elf_generic_reloc PARAMS ((bfd *, |
535 | arelent *, | |
536 | asymbol *, | |
537 | PTR, | |
538 | asection *, | |
4c3721d5 ILT |
539 | bfd *, |
540 | char **)); | |
998ce1e0 | 541 | extern boolean bfd_elf_mkobject PARAMS ((bfd *)); |
e2a422b8 | 542 | extern Elf_Internal_Shdr *bfd_elf_find_section PARAMS ((bfd *, char *)); |
497c5434 ILT |
543 | extern boolean _bfd_elf_make_section_from_shdr |
544 | PARAMS ((bfd *abfd, Elf_Internal_Shdr *hdr, const char *name)); | |
5315c428 ILT |
545 | extern struct bfd_hash_entry *_bfd_elf_link_hash_newfunc |
546 | PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *)); | |
6ec3bb6a ILT |
547 | extern struct bfd_link_hash_table *_bfd_elf_link_hash_table_create |
548 | PARAMS ((bfd *)); | |
5315c428 ILT |
549 | extern boolean _bfd_elf_link_hash_table_init |
550 | PARAMS ((struct elf_link_hash_table *, bfd *, | |
551 | struct bfd_hash_entry *(*) (struct bfd_hash_entry *, | |
552 | struct bfd_hash_table *, | |
553 | const char *))); | |
6ec3bb6a | 554 | |
9942e684 | 555 | extern boolean bfd_elf32_write_object_contents PARAMS ((bfd *)); |
32090b8e KR |
556 | extern boolean bfd_elf64_write_object_contents PARAMS ((bfd *)); |
557 | ||
2f3508ad ILT |
558 | extern const bfd_target *bfd_elf32_object_p PARAMS ((bfd *)); |
559 | extern const bfd_target *bfd_elf32_core_file_p PARAMS ((bfd *)); | |
9942e684 KR |
560 | extern char *bfd_elf32_core_file_failing_command PARAMS ((bfd *)); |
561 | extern int bfd_elf32_core_file_failing_signal PARAMS ((bfd *)); | |
562 | extern boolean bfd_elf32_core_file_matches_executable_p PARAMS ((bfd *, | |
563 | bfd *)); | |
564 | extern boolean bfd_elf32_set_section_contents PARAMS ((bfd *, sec_ptr, PTR, | |
565 | file_ptr, | |
566 | bfd_size_type)); | |
7050286d | 567 | |
326e32d7 ILT |
568 | extern long bfd_elf32_get_symtab_upper_bound PARAMS ((bfd *)); |
569 | extern long bfd_elf32_get_symtab PARAMS ((bfd *, asymbol **)); | |
cb71adf1 PS |
570 | extern long bfd_elf32_get_dynamic_symtab_upper_bound PARAMS ((bfd *)); |
571 | extern long bfd_elf32_canonicalize_dynamic_symtab PARAMS ((bfd *, asymbol **)); | |
326e32d7 ILT |
572 | extern long bfd_elf32_get_reloc_upper_bound PARAMS ((bfd *, sec_ptr)); |
573 | extern long bfd_elf32_canonicalize_reloc PARAMS ((bfd *, sec_ptr, | |
574 | arelent **, asymbol **)); | |
9942e684 | 575 | extern asymbol *bfd_elf32_make_empty_symbol PARAMS ((bfd *)); |
9942e684 | 576 | extern void bfd_elf32_get_symbol_info PARAMS ((bfd *, asymbol *, |
7050286d | 577 | symbol_info *)); |
9942e684 KR |
578 | extern alent *bfd_elf32_get_lineno PARAMS ((bfd *, asymbol *)); |
579 | extern boolean bfd_elf32_set_arch_mach PARAMS ((bfd *, enum bfd_architecture, | |
580 | unsigned long)); | |
581 | extern boolean bfd_elf32_find_nearest_line PARAMS ((bfd *, asection *, | |
582 | asymbol **, | |
583 | bfd_vma, CONST char **, | |
584 | CONST char **, | |
585 | unsigned int *)); | |
586 | extern int bfd_elf32_sizeof_headers PARAMS ((bfd *, boolean)); | |
e6858d1b | 587 | extern boolean bfd_elf32_new_section_hook PARAMS ((bfd *, asection *)); |
6ec3bb6a ILT |
588 | extern boolean bfd_elf32_bfd_link_add_symbols |
589 | PARAMS ((bfd *, struct bfd_link_info *)); | |
590 | extern boolean bfd_elf32_bfd_final_link | |
591 | PARAMS ((bfd *, struct bfd_link_info *)); | |
81187b54 | 592 | |
840846da ILT |
593 | extern void bfd_elf32_swap_symbol_in |
594 | PARAMS ((bfd *, Elf32_External_Sym *, Elf_Internal_Sym *)); | |
595 | extern void bfd_elf32_swap_symbol_out | |
596 | PARAMS ((bfd *, Elf_Internal_Sym *, Elf32_External_Sym *)); | |
013dec1a ILT |
597 | extern void bfd_elf32_swap_reloc_in |
598 | PARAMS ((bfd *, Elf32_External_Rel *, Elf_Internal_Rel *)); | |
599 | extern void bfd_elf32_swap_reloc_out | |
600 | PARAMS ((bfd *, Elf_Internal_Rel *, Elf32_External_Rel *)); | |
601 | extern void bfd_elf32_swap_reloca_in | |
602 | PARAMS ((bfd *, Elf32_External_Rela *, Elf_Internal_Rela *)); | |
603 | extern void bfd_elf32_swap_reloca_out | |
604 | PARAMS ((bfd *, Elf_Internal_Rela *, Elf32_External_Rela *)); | |
605 | extern void bfd_elf32_swap_dyn_in | |
606 | PARAMS ((bfd *, const Elf32_External_Dyn *, Elf_Internal_Dyn *)); | |
607 | extern void bfd_elf32_swap_dyn_out | |
608 | PARAMS ((bfd *, const Elf_Internal_Dyn *, Elf32_External_Dyn *)); | |
609 | extern boolean bfd_elf32_add_dynamic_entry | |
610 | PARAMS ((struct bfd_link_info *, bfd_vma, bfd_vma)); | |
374d2ef9 ILT |
611 | extern boolean bfd_elf32_link_create_dynamic_sections |
612 | PARAMS ((bfd *, struct bfd_link_info *)); | |
613 | extern boolean bfd_elf32_link_record_dynamic_symbol | |
614 | PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *)); | |
013dec1a | 615 | |
81187b54 | 616 | /* If the target doesn't have reloc handling written yet: */ |
9942e684 KR |
617 | extern void bfd_elf32_no_info_to_howto PARAMS ((bfd *, arelent *, |
618 | Elf32_Internal_Rela *)); | |
db232882 | 619 | |
2f3508ad ILT |
620 | extern const bfd_target *bfd_elf64_object_p PARAMS ((bfd *)); |
621 | extern const bfd_target *bfd_elf64_core_file_p PARAMS ((bfd *)); | |
7d9bb6da KR |
622 | extern char *bfd_elf64_core_file_failing_command PARAMS ((bfd *)); |
623 | extern int bfd_elf64_core_file_failing_signal PARAMS ((bfd *)); | |
624 | extern boolean bfd_elf64_core_file_matches_executable_p PARAMS ((bfd *, | |
625 | bfd *)); | |
626 | extern boolean bfd_elf64_set_section_contents PARAMS ((bfd *, sec_ptr, PTR, | |
627 | file_ptr, | |
628 | bfd_size_type)); | |
629 | ||
326e32d7 ILT |
630 | extern long bfd_elf64_get_symtab_upper_bound PARAMS ((bfd *)); |
631 | extern long bfd_elf64_get_symtab PARAMS ((bfd *, asymbol **)); | |
cb71adf1 PS |
632 | extern long bfd_elf64_get_dynamic_symtab_upper_bound PARAMS ((bfd *)); |
633 | extern long bfd_elf64_canonicalize_dynamic_symtab PARAMS ((bfd *, asymbol **)); | |
326e32d7 ILT |
634 | extern long bfd_elf64_get_reloc_upper_bound PARAMS ((bfd *, sec_ptr)); |
635 | extern long bfd_elf64_canonicalize_reloc PARAMS ((bfd *, sec_ptr, | |
636 | arelent **, asymbol **)); | |
7d9bb6da | 637 | extern asymbol *bfd_elf64_make_empty_symbol PARAMS ((bfd *)); |
7d9bb6da KR |
638 | extern void bfd_elf64_get_symbol_info PARAMS ((bfd *, asymbol *, |
639 | symbol_info *)); | |
640 | extern alent *bfd_elf64_get_lineno PARAMS ((bfd *, asymbol *)); | |
641 | extern boolean bfd_elf64_set_arch_mach PARAMS ((bfd *, enum bfd_architecture, | |
642 | unsigned long)); | |
643 | extern boolean bfd_elf64_find_nearest_line PARAMS ((bfd *, asection *, | |
644 | asymbol **, | |
645 | bfd_vma, CONST char **, | |
646 | CONST char **, | |
647 | unsigned int *)); | |
648 | extern int bfd_elf64_sizeof_headers PARAMS ((bfd *, boolean)); | |
649 | extern boolean bfd_elf64_new_section_hook PARAMS ((bfd *, asection *)); | |
6ec3bb6a ILT |
650 | extern boolean bfd_elf64_bfd_link_add_symbols |
651 | PARAMS ((bfd *, struct bfd_link_info *)); | |
652 | extern boolean bfd_elf64_bfd_final_link | |
653 | PARAMS ((bfd *, struct bfd_link_info *)); | |
7d9bb6da | 654 | |
840846da ILT |
655 | extern void bfd_elf64_swap_symbol_in |
656 | PARAMS ((bfd *, Elf64_External_Sym *, Elf_Internal_Sym *)); | |
657 | extern void bfd_elf64_swap_symbol_out | |
658 | PARAMS ((bfd *, Elf_Internal_Sym *, Elf64_External_Sym *)); | |
013dec1a ILT |
659 | extern void bfd_elf64_swap_reloc_in |
660 | PARAMS ((bfd *, Elf64_External_Rel *, Elf_Internal_Rel *)); | |
661 | extern void bfd_elf64_swap_reloc_out | |
662 | PARAMS ((bfd *, Elf_Internal_Rel *, Elf64_External_Rel *)); | |
663 | extern void bfd_elf64_swap_reloca_in | |
664 | PARAMS ((bfd *, Elf64_External_Rela *, Elf_Internal_Rela *)); | |
665 | extern void bfd_elf64_swap_reloca_out | |
666 | PARAMS ((bfd *, Elf_Internal_Rela *, Elf64_External_Rela *)); | |
667 | extern void bfd_elf64_swap_dyn_in | |
668 | PARAMS ((bfd *, const Elf64_External_Dyn *, Elf_Internal_Dyn *)); | |
669 | extern void bfd_elf64_swap_dyn_out | |
670 | PARAMS ((bfd *, const Elf_Internal_Dyn *, Elf64_External_Dyn *)); | |
671 | extern boolean bfd_elf64_add_dynamic_entry | |
672 | PARAMS ((struct bfd_link_info *, bfd_vma, bfd_vma)); | |
374d2ef9 ILT |
673 | extern boolean bfd_elf64_link_create_dynamic_sections |
674 | PARAMS ((bfd *, struct bfd_link_info *)); | |
675 | extern boolean bfd_elf64_link_record_dynamic_symbol | |
676 | PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *)); | |
013dec1a | 677 | |
7d9bb6da KR |
678 | /* If the target doesn't have reloc handling written yet: */ |
679 | extern void bfd_elf64_no_info_to_howto PARAMS ((bfd *, arelent *, | |
680 | Elf64_Internal_Rela *)); | |
681 | ||
db232882 | 682 | #endif /* _LIBELF_H_ */ |