Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* ELF linking support for BFD. |
544008aa | 2 | Copyright 1995-2013 Free Software Foundation, Inc. |
252b5132 | 3 | |
8fdd7217 | 4 | This file is part of BFD, the Binary File Descriptor library. |
252b5132 | 5 | |
8fdd7217 NC |
6 | This program is free software; you can redistribute it and/or modify |
7 | it under the terms of the GNU General Public License as published by | |
cd123cb7 | 8 | the Free Software Foundation; either version 3 of the License, or |
8fdd7217 | 9 | (at your option) any later version. |
252b5132 | 10 | |
8fdd7217 NC |
11 | This program is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
252b5132 | 15 | |
8fdd7217 NC |
16 | You should have received a copy of the GNU General Public License |
17 | along with this program; if not, write to the Free Software | |
cd123cb7 NC |
18 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, |
19 | MA 02110-1301, USA. */ | |
252b5132 | 20 | |
252b5132 | 21 | #include "sysdep.h" |
3db64b00 | 22 | #include "bfd.h" |
252b5132 RH |
23 | #include "bfdlink.h" |
24 | #include "libbfd.h" | |
25 | #define ARCH_SIZE 0 | |
26 | #include "elf-bfd.h" | |
4ad4eba5 | 27 | #include "safe-ctype.h" |
ccf2f652 | 28 | #include "libiberty.h" |
66eb6687 | 29 | #include "objalloc.h" |
252b5132 | 30 | |
28caa186 AM |
31 | /* This struct is used to pass information to routines called via |
32 | elf_link_hash_traverse which must return failure. */ | |
33 | ||
34 | struct elf_info_failed | |
35 | { | |
36 | struct bfd_link_info *info; | |
28caa186 AM |
37 | bfd_boolean failed; |
38 | }; | |
39 | ||
40 | /* This structure is used to pass information to | |
41 | _bfd_elf_link_find_version_dependencies. */ | |
42 | ||
43 | struct elf_find_verdep_info | |
44 | { | |
45 | /* General link information. */ | |
46 | struct bfd_link_info *info; | |
47 | /* The number of dependencies. */ | |
48 | unsigned int vers; | |
49 | /* Whether we had a failure. */ | |
50 | bfd_boolean failed; | |
51 | }; | |
52 | ||
53 | static bfd_boolean _bfd_elf_fix_symbol_flags | |
54 | (struct elf_link_hash_entry *, struct elf_info_failed *); | |
55 | ||
d98685ac AM |
56 | /* Define a symbol in a dynamic linkage section. */ |
57 | ||
58 | struct elf_link_hash_entry * | |
59 | _bfd_elf_define_linkage_sym (bfd *abfd, | |
60 | struct bfd_link_info *info, | |
61 | asection *sec, | |
62 | const char *name) | |
63 | { | |
64 | struct elf_link_hash_entry *h; | |
65 | struct bfd_link_hash_entry *bh; | |
ccabcbe5 | 66 | const struct elf_backend_data *bed; |
d98685ac AM |
67 | |
68 | h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE); | |
69 | if (h != NULL) | |
70 | { | |
71 | /* Zap symbol defined in an as-needed lib that wasn't linked. | |
72 | This is a symptom of a larger problem: Absolute symbols | |
73 | defined in shared libraries can't be overridden, because we | |
74 | lose the link to the bfd which is via the symbol section. */ | |
75 | h->root.type = bfd_link_hash_new; | |
76 | } | |
77 | ||
78 | bh = &h->root; | |
79 | if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL, | |
80 | sec, 0, NULL, FALSE, | |
81 | get_elf_backend_data (abfd)->collect, | |
82 | &bh)) | |
83 | return NULL; | |
84 | h = (struct elf_link_hash_entry *) bh; | |
85 | h->def_regular = 1; | |
e28df02b | 86 | h->non_elf = 0; |
d98685ac | 87 | h->type = STT_OBJECT; |
00b7642b AM |
88 | if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL) |
89 | h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN; | |
d98685ac | 90 | |
ccabcbe5 AM |
91 | bed = get_elf_backend_data (abfd); |
92 | (*bed->elf_backend_hide_symbol) (info, h, TRUE); | |
d98685ac AM |
93 | return h; |
94 | } | |
95 | ||
b34976b6 | 96 | bfd_boolean |
268b6b39 | 97 | _bfd_elf_create_got_section (bfd *abfd, struct bfd_link_info *info) |
252b5132 RH |
98 | { |
99 | flagword flags; | |
aad5d350 | 100 | asection *s; |
252b5132 | 101 | struct elf_link_hash_entry *h; |
9c5bfbb7 | 102 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); |
6de2ae4a | 103 | struct elf_link_hash_table *htab = elf_hash_table (info); |
252b5132 RH |
104 | |
105 | /* This function may be called more than once. */ | |
3d4d4302 AM |
106 | s = bfd_get_linker_section (abfd, ".got"); |
107 | if (s != NULL) | |
b34976b6 | 108 | return TRUE; |
252b5132 | 109 | |
e5a52504 | 110 | flags = bed->dynamic_sec_flags; |
252b5132 | 111 | |
14b2f831 AM |
112 | s = bfd_make_section_anyway_with_flags (abfd, |
113 | (bed->rela_plts_and_copies_p | |
114 | ? ".rela.got" : ".rel.got"), | |
115 | (bed->dynamic_sec_flags | |
116 | | SEC_READONLY)); | |
6de2ae4a L |
117 | if (s == NULL |
118 | || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align)) | |
119 | return FALSE; | |
120 | htab->srelgot = s; | |
252b5132 | 121 | |
14b2f831 | 122 | s = bfd_make_section_anyway_with_flags (abfd, ".got", flags); |
64e77c6d L |
123 | if (s == NULL |
124 | || !bfd_set_section_alignment (abfd, s, bed->s->log_file_align)) | |
125 | return FALSE; | |
126 | htab->sgot = s; | |
127 | ||
252b5132 RH |
128 | if (bed->want_got_plt) |
129 | { | |
14b2f831 | 130 | s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags); |
252b5132 | 131 | if (s == NULL |
6de2ae4a L |
132 | || !bfd_set_section_alignment (abfd, s, |
133 | bed->s->log_file_align)) | |
b34976b6 | 134 | return FALSE; |
6de2ae4a | 135 | htab->sgotplt = s; |
252b5132 RH |
136 | } |
137 | ||
64e77c6d L |
138 | /* The first bit of the global offset table is the header. */ |
139 | s->size += bed->got_header_size; | |
140 | ||
2517a57f AM |
141 | if (bed->want_got_sym) |
142 | { | |
143 | /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got | |
144 | (or .got.plt) section. We don't do this in the linker script | |
145 | because we don't want to define the symbol if we are not creating | |
146 | a global offset table. */ | |
6de2ae4a L |
147 | h = _bfd_elf_define_linkage_sym (abfd, info, s, |
148 | "_GLOBAL_OFFSET_TABLE_"); | |
2517a57f | 149 | elf_hash_table (info)->hgot = h; |
d98685ac AM |
150 | if (h == NULL) |
151 | return FALSE; | |
2517a57f | 152 | } |
252b5132 | 153 | |
b34976b6 | 154 | return TRUE; |
252b5132 RH |
155 | } |
156 | \f | |
7e9f0867 AM |
157 | /* Create a strtab to hold the dynamic symbol names. */ |
158 | static bfd_boolean | |
159 | _bfd_elf_link_create_dynstrtab (bfd *abfd, struct bfd_link_info *info) | |
160 | { | |
161 | struct elf_link_hash_table *hash_table; | |
162 | ||
163 | hash_table = elf_hash_table (info); | |
164 | if (hash_table->dynobj == NULL) | |
165 | hash_table->dynobj = abfd; | |
166 | ||
167 | if (hash_table->dynstr == NULL) | |
168 | { | |
169 | hash_table->dynstr = _bfd_elf_strtab_init (); | |
170 | if (hash_table->dynstr == NULL) | |
171 | return FALSE; | |
172 | } | |
173 | return TRUE; | |
174 | } | |
175 | ||
45d6a902 AM |
176 | /* Create some sections which will be filled in with dynamic linking |
177 | information. ABFD is an input file which requires dynamic sections | |
178 | to be created. The dynamic sections take up virtual memory space | |
179 | when the final executable is run, so we need to create them before | |
180 | addresses are assigned to the output sections. We work out the | |
181 | actual contents and size of these sections later. */ | |
252b5132 | 182 | |
b34976b6 | 183 | bfd_boolean |
268b6b39 | 184 | _bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info) |
252b5132 | 185 | { |
45d6a902 | 186 | flagword flags; |
91d6fa6a | 187 | asection *s; |
9c5bfbb7 | 188 | const struct elf_backend_data *bed; |
9637f6ef | 189 | struct elf_link_hash_entry *h; |
252b5132 | 190 | |
0eddce27 | 191 | if (! is_elf_hash_table (info->hash)) |
45d6a902 AM |
192 | return FALSE; |
193 | ||
194 | if (elf_hash_table (info)->dynamic_sections_created) | |
195 | return TRUE; | |
196 | ||
7e9f0867 AM |
197 | if (!_bfd_elf_link_create_dynstrtab (abfd, info)) |
198 | return FALSE; | |
45d6a902 | 199 | |
7e9f0867 | 200 | abfd = elf_hash_table (info)->dynobj; |
e5a52504 MM |
201 | bed = get_elf_backend_data (abfd); |
202 | ||
203 | flags = bed->dynamic_sec_flags; | |
45d6a902 AM |
204 | |
205 | /* A dynamically linked executable has a .interp section, but a | |
206 | shared library does not. */ | |
36af4a4e | 207 | if (info->executable) |
252b5132 | 208 | { |
14b2f831 AM |
209 | s = bfd_make_section_anyway_with_flags (abfd, ".interp", |
210 | flags | SEC_READONLY); | |
3496cb2a | 211 | if (s == NULL) |
45d6a902 AM |
212 | return FALSE; |
213 | } | |
bb0deeff | 214 | |
45d6a902 AM |
215 | /* Create sections to hold version informations. These are removed |
216 | if they are not needed. */ | |
14b2f831 AM |
217 | s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_d", |
218 | flags | SEC_READONLY); | |
45d6a902 | 219 | if (s == NULL |
45d6a902 AM |
220 | || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align)) |
221 | return FALSE; | |
222 | ||
14b2f831 AM |
223 | s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version", |
224 | flags | SEC_READONLY); | |
45d6a902 | 225 | if (s == NULL |
45d6a902 AM |
226 | || ! bfd_set_section_alignment (abfd, s, 1)) |
227 | return FALSE; | |
228 | ||
14b2f831 AM |
229 | s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_r", |
230 | flags | SEC_READONLY); | |
45d6a902 | 231 | if (s == NULL |
45d6a902 AM |
232 | || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align)) |
233 | return FALSE; | |
234 | ||
14b2f831 AM |
235 | s = bfd_make_section_anyway_with_flags (abfd, ".dynsym", |
236 | flags | SEC_READONLY); | |
45d6a902 | 237 | if (s == NULL |
45d6a902 AM |
238 | || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align)) |
239 | return FALSE; | |
240 | ||
14b2f831 AM |
241 | s = bfd_make_section_anyway_with_flags (abfd, ".dynstr", |
242 | flags | SEC_READONLY); | |
3496cb2a | 243 | if (s == NULL) |
45d6a902 AM |
244 | return FALSE; |
245 | ||
14b2f831 | 246 | s = bfd_make_section_anyway_with_flags (abfd, ".dynamic", flags); |
45d6a902 | 247 | if (s == NULL |
45d6a902 AM |
248 | || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align)) |
249 | return FALSE; | |
250 | ||
251 | /* The special symbol _DYNAMIC is always set to the start of the | |
77cfaee6 AM |
252 | .dynamic section. We could set _DYNAMIC in a linker script, but we |
253 | only want to define it if we are, in fact, creating a .dynamic | |
254 | section. We don't want to define it if there is no .dynamic | |
255 | section, since on some ELF platforms the start up code examines it | |
256 | to decide how to initialize the process. */ | |
9637f6ef L |
257 | h = _bfd_elf_define_linkage_sym (abfd, info, s, "_DYNAMIC"); |
258 | elf_hash_table (info)->hdynamic = h; | |
259 | if (h == NULL) | |
45d6a902 AM |
260 | return FALSE; |
261 | ||
fdc90cb4 JJ |
262 | if (info->emit_hash) |
263 | { | |
14b2f831 AM |
264 | s = bfd_make_section_anyway_with_flags (abfd, ".hash", |
265 | flags | SEC_READONLY); | |
fdc90cb4 JJ |
266 | if (s == NULL |
267 | || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align)) | |
268 | return FALSE; | |
269 | elf_section_data (s)->this_hdr.sh_entsize = bed->s->sizeof_hash_entry; | |
270 | } | |
271 | ||
272 | if (info->emit_gnu_hash) | |
273 | { | |
14b2f831 AM |
274 | s = bfd_make_section_anyway_with_flags (abfd, ".gnu.hash", |
275 | flags | SEC_READONLY); | |
fdc90cb4 JJ |
276 | if (s == NULL |
277 | || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align)) | |
278 | return FALSE; | |
279 | /* For 64-bit ELF, .gnu.hash is a non-uniform entity size section: | |
280 | 4 32-bit words followed by variable count of 64-bit words, then | |
281 | variable count of 32-bit words. */ | |
282 | if (bed->s->arch_size == 64) | |
283 | elf_section_data (s)->this_hdr.sh_entsize = 0; | |
284 | else | |
285 | elf_section_data (s)->this_hdr.sh_entsize = 4; | |
286 | } | |
45d6a902 AM |
287 | |
288 | /* Let the backend create the rest of the sections. This lets the | |
289 | backend set the right flags. The backend will normally create | |
290 | the .got and .plt sections. */ | |
894891db NC |
291 | if (bed->elf_backend_create_dynamic_sections == NULL |
292 | || ! (*bed->elf_backend_create_dynamic_sections) (abfd, info)) | |
45d6a902 AM |
293 | return FALSE; |
294 | ||
295 | elf_hash_table (info)->dynamic_sections_created = TRUE; | |
296 | ||
297 | return TRUE; | |
298 | } | |
299 | ||
300 | /* Create dynamic sections when linking against a dynamic object. */ | |
301 | ||
302 | bfd_boolean | |
268b6b39 | 303 | _bfd_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info) |
45d6a902 AM |
304 | { |
305 | flagword flags, pltflags; | |
7325306f | 306 | struct elf_link_hash_entry *h; |
45d6a902 | 307 | asection *s; |
9c5bfbb7 | 308 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); |
6de2ae4a | 309 | struct elf_link_hash_table *htab = elf_hash_table (info); |
45d6a902 | 310 | |
252b5132 RH |
311 | /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and |
312 | .rel[a].bss sections. */ | |
e5a52504 | 313 | flags = bed->dynamic_sec_flags; |
252b5132 RH |
314 | |
315 | pltflags = flags; | |
252b5132 | 316 | if (bed->plt_not_loaded) |
6df4d94c MM |
317 | /* We do not clear SEC_ALLOC here because we still want the OS to |
318 | allocate space for the section; it's just that there's nothing | |
319 | to read in from the object file. */ | |
5d1634d7 | 320 | pltflags &= ~ (SEC_CODE | SEC_LOAD | SEC_HAS_CONTENTS); |
6df4d94c MM |
321 | else |
322 | pltflags |= SEC_ALLOC | SEC_CODE | SEC_LOAD; | |
252b5132 RH |
323 | if (bed->plt_readonly) |
324 | pltflags |= SEC_READONLY; | |
325 | ||
14b2f831 | 326 | s = bfd_make_section_anyway_with_flags (abfd, ".plt", pltflags); |
252b5132 | 327 | if (s == NULL |
252b5132 | 328 | || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment)) |
b34976b6 | 329 | return FALSE; |
6de2ae4a | 330 | htab->splt = s; |
252b5132 | 331 | |
d98685ac AM |
332 | /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the |
333 | .plt section. */ | |
7325306f RS |
334 | if (bed->want_plt_sym) |
335 | { | |
336 | h = _bfd_elf_define_linkage_sym (abfd, info, s, | |
337 | "_PROCEDURE_LINKAGE_TABLE_"); | |
338 | elf_hash_table (info)->hplt = h; | |
339 | if (h == NULL) | |
340 | return FALSE; | |
341 | } | |
252b5132 | 342 | |
14b2f831 AM |
343 | s = bfd_make_section_anyway_with_flags (abfd, |
344 | (bed->rela_plts_and_copies_p | |
345 | ? ".rela.plt" : ".rel.plt"), | |
346 | flags | SEC_READONLY); | |
252b5132 | 347 | if (s == NULL |
45d6a902 | 348 | || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align)) |
b34976b6 | 349 | return FALSE; |
6de2ae4a | 350 | htab->srelplt = s; |
252b5132 RH |
351 | |
352 | if (! _bfd_elf_create_got_section (abfd, info)) | |
b34976b6 | 353 | return FALSE; |
252b5132 | 354 | |
3018b441 RH |
355 | if (bed->want_dynbss) |
356 | { | |
357 | /* The .dynbss section is a place to put symbols which are defined | |
358 | by dynamic objects, are referenced by regular objects, and are | |
359 | not functions. We must allocate space for them in the process | |
360 | image and use a R_*_COPY reloc to tell the dynamic linker to | |
361 | initialize them at run time. The linker script puts the .dynbss | |
362 | section into the .bss section of the final image. */ | |
14b2f831 AM |
363 | s = bfd_make_section_anyway_with_flags (abfd, ".dynbss", |
364 | (SEC_ALLOC | SEC_LINKER_CREATED)); | |
3496cb2a | 365 | if (s == NULL) |
b34976b6 | 366 | return FALSE; |
252b5132 | 367 | |
3018b441 | 368 | /* The .rel[a].bss section holds copy relocs. This section is not |
77cfaee6 AM |
369 | normally needed. We need to create it here, though, so that the |
370 | linker will map it to an output section. We can't just create it | |
371 | only if we need it, because we will not know whether we need it | |
372 | until we have seen all the input files, and the first time the | |
373 | main linker code calls BFD after examining all the input files | |
374 | (size_dynamic_sections) the input sections have already been | |
375 | mapped to the output sections. If the section turns out not to | |
376 | be needed, we can discard it later. We will never need this | |
377 | section when generating a shared object, since they do not use | |
378 | copy relocs. */ | |
3018b441 RH |
379 | if (! info->shared) |
380 | { | |
14b2f831 AM |
381 | s = bfd_make_section_anyway_with_flags (abfd, |
382 | (bed->rela_plts_and_copies_p | |
383 | ? ".rela.bss" : ".rel.bss"), | |
384 | flags | SEC_READONLY); | |
3018b441 | 385 | if (s == NULL |
45d6a902 | 386 | || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align)) |
b34976b6 | 387 | return FALSE; |
3018b441 | 388 | } |
252b5132 RH |
389 | } |
390 | ||
b34976b6 | 391 | return TRUE; |
252b5132 RH |
392 | } |
393 | \f | |
252b5132 RH |
394 | /* Record a new dynamic symbol. We record the dynamic symbols as we |
395 | read the input files, since we need to have a list of all of them | |
396 | before we can determine the final sizes of the output sections. | |
397 | Note that we may actually call this function even though we are not | |
398 | going to output any dynamic symbols; in some cases we know that a | |
399 | symbol should be in the dynamic symbol table, but only if there is | |
400 | one. */ | |
401 | ||
b34976b6 | 402 | bfd_boolean |
c152c796 AM |
403 | bfd_elf_link_record_dynamic_symbol (struct bfd_link_info *info, |
404 | struct elf_link_hash_entry *h) | |
252b5132 RH |
405 | { |
406 | if (h->dynindx == -1) | |
407 | { | |
2b0f7ef9 | 408 | struct elf_strtab_hash *dynstr; |
68b6ddd0 | 409 | char *p; |
252b5132 | 410 | const char *name; |
252b5132 RH |
411 | bfd_size_type indx; |
412 | ||
7a13edea NC |
413 | /* XXX: The ABI draft says the linker must turn hidden and |
414 | internal symbols into STB_LOCAL symbols when producing the | |
415 | DSO. However, if ld.so honors st_other in the dynamic table, | |
416 | this would not be necessary. */ | |
417 | switch (ELF_ST_VISIBILITY (h->other)) | |
418 | { | |
419 | case STV_INTERNAL: | |
420 | case STV_HIDDEN: | |
9d6eee78 L |
421 | if (h->root.type != bfd_link_hash_undefined |
422 | && h->root.type != bfd_link_hash_undefweak) | |
38048eb9 | 423 | { |
f5385ebf | 424 | h->forced_local = 1; |
67687978 PB |
425 | if (!elf_hash_table (info)->is_relocatable_executable) |
426 | return TRUE; | |
7a13edea | 427 | } |
0444bdd4 | 428 | |
7a13edea NC |
429 | default: |
430 | break; | |
431 | } | |
432 | ||
252b5132 RH |
433 | h->dynindx = elf_hash_table (info)->dynsymcount; |
434 | ++elf_hash_table (info)->dynsymcount; | |
435 | ||
436 | dynstr = elf_hash_table (info)->dynstr; | |
437 | if (dynstr == NULL) | |
438 | { | |
439 | /* Create a strtab to hold the dynamic symbol names. */ | |
2b0f7ef9 | 440 | elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init (); |
252b5132 | 441 | if (dynstr == NULL) |
b34976b6 | 442 | return FALSE; |
252b5132 RH |
443 | } |
444 | ||
445 | /* We don't put any version information in the dynamic string | |
aad5d350 | 446 | table. */ |
252b5132 RH |
447 | name = h->root.root.string; |
448 | p = strchr (name, ELF_VER_CHR); | |
68b6ddd0 AM |
449 | if (p != NULL) |
450 | /* We know that the p points into writable memory. In fact, | |
451 | there are only a few symbols that have read-only names, being | |
452 | those like _GLOBAL_OFFSET_TABLE_ that are created specially | |
453 | by the backends. Most symbols will have names pointing into | |
454 | an ELF string table read from a file, or to objalloc memory. */ | |
455 | *p = 0; | |
456 | ||
457 | indx = _bfd_elf_strtab_add (dynstr, name, p != NULL); | |
458 | ||
459 | if (p != NULL) | |
460 | *p = ELF_VER_CHR; | |
252b5132 RH |
461 | |
462 | if (indx == (bfd_size_type) -1) | |
b34976b6 | 463 | return FALSE; |
252b5132 RH |
464 | h->dynstr_index = indx; |
465 | } | |
466 | ||
b34976b6 | 467 | return TRUE; |
252b5132 | 468 | } |
45d6a902 | 469 | \f |
55255dae L |
470 | /* Mark a symbol dynamic. */ |
471 | ||
28caa186 | 472 | static void |
55255dae | 473 | bfd_elf_link_mark_dynamic_symbol (struct bfd_link_info *info, |
40b36307 L |
474 | struct elf_link_hash_entry *h, |
475 | Elf_Internal_Sym *sym) | |
55255dae | 476 | { |
40b36307 | 477 | struct bfd_elf_dynamic_list *d = info->dynamic_list; |
55255dae | 478 | |
40b36307 L |
479 | /* It may be called more than once on the same H. */ |
480 | if(h->dynamic || info->relocatable) | |
55255dae L |
481 | return; |
482 | ||
40b36307 L |
483 | if ((info->dynamic_data |
484 | && (h->type == STT_OBJECT | |
485 | || (sym != NULL | |
486 | && ELF_ST_TYPE (sym->st_info) == STT_OBJECT))) | |
a0c8462f | 487 | || (d != NULL |
40b36307 L |
488 | && h->root.type == bfd_link_hash_new |
489 | && (*d->match) (&d->head, NULL, h->root.root.string))) | |
55255dae L |
490 | h->dynamic = 1; |
491 | } | |
492 | ||
45d6a902 AM |
493 | /* Record an assignment to a symbol made by a linker script. We need |
494 | this in case some dynamic object refers to this symbol. */ | |
495 | ||
496 | bfd_boolean | |
fe21a8fc L |
497 | bfd_elf_record_link_assignment (bfd *output_bfd, |
498 | struct bfd_link_info *info, | |
268b6b39 | 499 | const char *name, |
fe21a8fc L |
500 | bfd_boolean provide, |
501 | bfd_boolean hidden) | |
45d6a902 | 502 | { |
00cbee0a | 503 | struct elf_link_hash_entry *h, *hv; |
4ea42fb7 | 504 | struct elf_link_hash_table *htab; |
00cbee0a | 505 | const struct elf_backend_data *bed; |
45d6a902 | 506 | |
0eddce27 | 507 | if (!is_elf_hash_table (info->hash)) |
45d6a902 AM |
508 | return TRUE; |
509 | ||
4ea42fb7 AM |
510 | htab = elf_hash_table (info); |
511 | h = elf_link_hash_lookup (htab, name, !provide, TRUE, FALSE); | |
45d6a902 | 512 | if (h == NULL) |
4ea42fb7 | 513 | return provide; |
45d6a902 | 514 | |
00cbee0a | 515 | switch (h->root.type) |
77cfaee6 | 516 | { |
00cbee0a L |
517 | case bfd_link_hash_defined: |
518 | case bfd_link_hash_defweak: | |
519 | case bfd_link_hash_common: | |
520 | break; | |
521 | case bfd_link_hash_undefweak: | |
522 | case bfd_link_hash_undefined: | |
523 | /* Since we're defining the symbol, don't let it seem to have not | |
524 | been defined. record_dynamic_symbol and size_dynamic_sections | |
525 | may depend on this. */ | |
4ea42fb7 | 526 | h->root.type = bfd_link_hash_new; |
77cfaee6 AM |
527 | if (h->root.u.undef.next != NULL || htab->root.undefs_tail == &h->root) |
528 | bfd_link_repair_undef_list (&htab->root); | |
00cbee0a L |
529 | break; |
530 | case bfd_link_hash_new: | |
40b36307 | 531 | bfd_elf_link_mark_dynamic_symbol (info, h, NULL); |
55255dae | 532 | h->non_elf = 0; |
00cbee0a L |
533 | break; |
534 | case bfd_link_hash_indirect: | |
535 | /* We had a versioned symbol in a dynamic library. We make the | |
a0c8462f | 536 | the versioned symbol point to this one. */ |
00cbee0a L |
537 | bed = get_elf_backend_data (output_bfd); |
538 | hv = h; | |
539 | while (hv->root.type == bfd_link_hash_indirect | |
540 | || hv->root.type == bfd_link_hash_warning) | |
541 | hv = (struct elf_link_hash_entry *) hv->root.u.i.link; | |
542 | /* We don't need to update h->root.u since linker will set them | |
543 | later. */ | |
544 | h->root.type = bfd_link_hash_undefined; | |
545 | hv->root.type = bfd_link_hash_indirect; | |
546 | hv->root.u.i.link = (struct bfd_link_hash_entry *) h; | |
547 | (*bed->elf_backend_copy_indirect_symbol) (info, h, hv); | |
548 | break; | |
549 | case bfd_link_hash_warning: | |
550 | abort (); | |
551 | break; | |
55255dae | 552 | } |
45d6a902 AM |
553 | |
554 | /* If this symbol is being provided by the linker script, and it is | |
555 | currently defined by a dynamic object, but not by a regular | |
556 | object, then mark it as undefined so that the generic linker will | |
557 | force the correct value. */ | |
558 | if (provide | |
f5385ebf AM |
559 | && h->def_dynamic |
560 | && !h->def_regular) | |
45d6a902 AM |
561 | h->root.type = bfd_link_hash_undefined; |
562 | ||
563 | /* If this symbol is not being provided by the linker script, and it is | |
564 | currently defined by a dynamic object, but not by a regular object, | |
565 | then clear out any version information because the symbol will not be | |
566 | associated with the dynamic object any more. */ | |
567 | if (!provide | |
f5385ebf AM |
568 | && h->def_dynamic |
569 | && !h->def_regular) | |
45d6a902 AM |
570 | h->verinfo.verdef = NULL; |
571 | ||
f5385ebf | 572 | h->def_regular = 1; |
45d6a902 | 573 | |
eb8476a6 | 574 | if (hidden) |
fe21a8fc | 575 | { |
91d6fa6a | 576 | bed = get_elf_backend_data (output_bfd); |
b8297068 AM |
577 | if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL) |
578 | h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN; | |
fe21a8fc L |
579 | (*bed->elf_backend_hide_symbol) (info, h, TRUE); |
580 | } | |
581 | ||
6fa3860b PB |
582 | /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects |
583 | and executables. */ | |
584 | if (!info->relocatable | |
585 | && h->dynindx != -1 | |
586 | && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN | |
587 | || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)) | |
588 | h->forced_local = 1; | |
589 | ||
f5385ebf AM |
590 | if ((h->def_dynamic |
591 | || h->ref_dynamic | |
67687978 PB |
592 | || info->shared |
593 | || (info->executable && elf_hash_table (info)->is_relocatable_executable)) | |
45d6a902 AM |
594 | && h->dynindx == -1) |
595 | { | |
c152c796 | 596 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) |
45d6a902 AM |
597 | return FALSE; |
598 | ||
599 | /* If this is a weak defined symbol, and we know a corresponding | |
600 | real symbol from the same dynamic object, make sure the real | |
601 | symbol is also made into a dynamic symbol. */ | |
f6e332e6 AM |
602 | if (h->u.weakdef != NULL |
603 | && h->u.weakdef->dynindx == -1) | |
45d6a902 | 604 | { |
f6e332e6 | 605 | if (! bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef)) |
45d6a902 AM |
606 | return FALSE; |
607 | } | |
608 | } | |
609 | ||
610 | return TRUE; | |
611 | } | |
42751cf3 | 612 | |
8c58d23b AM |
613 | /* Record a new local dynamic symbol. Returns 0 on failure, 1 on |
614 | success, and 2 on a failure caused by attempting to record a symbol | |
615 | in a discarded section, eg. a discarded link-once section symbol. */ | |
616 | ||
617 | int | |
c152c796 AM |
618 | bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info, |
619 | bfd *input_bfd, | |
620 | long input_indx) | |
8c58d23b AM |
621 | { |
622 | bfd_size_type amt; | |
623 | struct elf_link_local_dynamic_entry *entry; | |
624 | struct elf_link_hash_table *eht; | |
625 | struct elf_strtab_hash *dynstr; | |
626 | unsigned long dynstr_index; | |
627 | char *name; | |
628 | Elf_External_Sym_Shndx eshndx; | |
629 | char esym[sizeof (Elf64_External_Sym)]; | |
630 | ||
0eddce27 | 631 | if (! is_elf_hash_table (info->hash)) |
8c58d23b AM |
632 | return 0; |
633 | ||
634 | /* See if the entry exists already. */ | |
635 | for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next) | |
636 | if (entry->input_bfd == input_bfd && entry->input_indx == input_indx) | |
637 | return 1; | |
638 | ||
639 | amt = sizeof (*entry); | |
a50b1753 | 640 | entry = (struct elf_link_local_dynamic_entry *) bfd_alloc (input_bfd, amt); |
8c58d23b AM |
641 | if (entry == NULL) |
642 | return 0; | |
643 | ||
644 | /* Go find the symbol, so that we can find it's name. */ | |
645 | if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr, | |
268b6b39 | 646 | 1, input_indx, &entry->isym, esym, &eshndx)) |
8c58d23b AM |
647 | { |
648 | bfd_release (input_bfd, entry); | |
649 | return 0; | |
650 | } | |
651 | ||
652 | if (entry->isym.st_shndx != SHN_UNDEF | |
4fbb74a6 | 653 | && entry->isym.st_shndx < SHN_LORESERVE) |
8c58d23b AM |
654 | { |
655 | asection *s; | |
656 | ||
657 | s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx); | |
658 | if (s == NULL || bfd_is_abs_section (s->output_section)) | |
659 | { | |
660 | /* We can still bfd_release here as nothing has done another | |
661 | bfd_alloc. We can't do this later in this function. */ | |
662 | bfd_release (input_bfd, entry); | |
663 | return 2; | |
664 | } | |
665 | } | |
666 | ||
667 | name = (bfd_elf_string_from_elf_section | |
668 | (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link, | |
669 | entry->isym.st_name)); | |
670 | ||
671 | dynstr = elf_hash_table (info)->dynstr; | |
672 | if (dynstr == NULL) | |
673 | { | |
674 | /* Create a strtab to hold the dynamic symbol names. */ | |
675 | elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init (); | |
676 | if (dynstr == NULL) | |
677 | return 0; | |
678 | } | |
679 | ||
b34976b6 | 680 | dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE); |
8c58d23b AM |
681 | if (dynstr_index == (unsigned long) -1) |
682 | return 0; | |
683 | entry->isym.st_name = dynstr_index; | |
684 | ||
685 | eht = elf_hash_table (info); | |
686 | ||
687 | entry->next = eht->dynlocal; | |
688 | eht->dynlocal = entry; | |
689 | entry->input_bfd = input_bfd; | |
690 | entry->input_indx = input_indx; | |
691 | eht->dynsymcount++; | |
692 | ||
693 | /* Whatever binding the symbol had before, it's now local. */ | |
694 | entry->isym.st_info | |
695 | = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info)); | |
696 | ||
697 | /* The dynindx will be set at the end of size_dynamic_sections. */ | |
698 | ||
699 | return 1; | |
700 | } | |
701 | ||
30b30c21 | 702 | /* Return the dynindex of a local dynamic symbol. */ |
42751cf3 | 703 | |
30b30c21 | 704 | long |
268b6b39 AM |
705 | _bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info, |
706 | bfd *input_bfd, | |
707 | long input_indx) | |
30b30c21 RH |
708 | { |
709 | struct elf_link_local_dynamic_entry *e; | |
710 | ||
711 | for (e = elf_hash_table (info)->dynlocal; e ; e = e->next) | |
712 | if (e->input_bfd == input_bfd && e->input_indx == input_indx) | |
713 | return e->dynindx; | |
714 | return -1; | |
715 | } | |
716 | ||
717 | /* This function is used to renumber the dynamic symbols, if some of | |
718 | them are removed because they are marked as local. This is called | |
719 | via elf_link_hash_traverse. */ | |
720 | ||
b34976b6 | 721 | static bfd_boolean |
268b6b39 AM |
722 | elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h, |
723 | void *data) | |
42751cf3 | 724 | { |
a50b1753 | 725 | size_t *count = (size_t *) data; |
30b30c21 | 726 | |
6fa3860b PB |
727 | if (h->forced_local) |
728 | return TRUE; | |
729 | ||
730 | if (h->dynindx != -1) | |
731 | h->dynindx = ++(*count); | |
732 | ||
733 | return TRUE; | |
734 | } | |
735 | ||
736 | ||
737 | /* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with | |
738 | STB_LOCAL binding. */ | |
739 | ||
740 | static bfd_boolean | |
741 | elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h, | |
742 | void *data) | |
743 | { | |
a50b1753 | 744 | size_t *count = (size_t *) data; |
6fa3860b | 745 | |
6fa3860b PB |
746 | if (!h->forced_local) |
747 | return TRUE; | |
748 | ||
42751cf3 | 749 | if (h->dynindx != -1) |
30b30c21 RH |
750 | h->dynindx = ++(*count); |
751 | ||
b34976b6 | 752 | return TRUE; |
42751cf3 | 753 | } |
30b30c21 | 754 | |
aee6f5b4 AO |
755 | /* Return true if the dynamic symbol for a given section should be |
756 | omitted when creating a shared library. */ | |
757 | bfd_boolean | |
758 | _bfd_elf_link_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED, | |
759 | struct bfd_link_info *info, | |
760 | asection *p) | |
761 | { | |
74541ad4 AM |
762 | struct elf_link_hash_table *htab; |
763 | ||
aee6f5b4 AO |
764 | switch (elf_section_data (p)->this_hdr.sh_type) |
765 | { | |
766 | case SHT_PROGBITS: | |
767 | case SHT_NOBITS: | |
768 | /* If sh_type is yet undecided, assume it could be | |
769 | SHT_PROGBITS/SHT_NOBITS. */ | |
770 | case SHT_NULL: | |
74541ad4 AM |
771 | htab = elf_hash_table (info); |
772 | if (p == htab->tls_sec) | |
773 | return FALSE; | |
774 | ||
775 | if (htab->text_index_section != NULL) | |
776 | return p != htab->text_index_section && p != htab->data_index_section; | |
777 | ||
aee6f5b4 AO |
778 | if (strcmp (p->name, ".got") == 0 |
779 | || strcmp (p->name, ".got.plt") == 0 | |
780 | || strcmp (p->name, ".plt") == 0) | |
781 | { | |
782 | asection *ip; | |
aee6f5b4 | 783 | |
74541ad4 | 784 | if (htab->dynobj != NULL |
3d4d4302 | 785 | && (ip = bfd_get_linker_section (htab->dynobj, p->name)) != NULL |
aee6f5b4 AO |
786 | && ip->output_section == p) |
787 | return TRUE; | |
788 | } | |
789 | return FALSE; | |
790 | ||
791 | /* There shouldn't be section relative relocations | |
792 | against any other section. */ | |
793 | default: | |
794 | return TRUE; | |
795 | } | |
796 | } | |
797 | ||
062e2358 | 798 | /* Assign dynsym indices. In a shared library we generate a section |
6fa3860b PB |
799 | symbol for each output section, which come first. Next come symbols |
800 | which have been forced to local binding. Then all of the back-end | |
801 | allocated local dynamic syms, followed by the rest of the global | |
802 | symbols. */ | |
30b30c21 | 803 | |
554220db AM |
804 | static unsigned long |
805 | _bfd_elf_link_renumber_dynsyms (bfd *output_bfd, | |
806 | struct bfd_link_info *info, | |
807 | unsigned long *section_sym_count) | |
30b30c21 RH |
808 | { |
809 | unsigned long dynsymcount = 0; | |
810 | ||
67687978 | 811 | if (info->shared || elf_hash_table (info)->is_relocatable_executable) |
30b30c21 | 812 | { |
aee6f5b4 | 813 | const struct elf_backend_data *bed = get_elf_backend_data (output_bfd); |
30b30c21 RH |
814 | asection *p; |
815 | for (p = output_bfd->sections; p ; p = p->next) | |
8c37241b | 816 | if ((p->flags & SEC_EXCLUDE) == 0 |
aee6f5b4 AO |
817 | && (p->flags & SEC_ALLOC) != 0 |
818 | && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p)) | |
819 | elf_section_data (p)->dynindx = ++dynsymcount; | |
74541ad4 AM |
820 | else |
821 | elf_section_data (p)->dynindx = 0; | |
30b30c21 | 822 | } |
554220db | 823 | *section_sym_count = dynsymcount; |
30b30c21 | 824 | |
6fa3860b PB |
825 | elf_link_hash_traverse (elf_hash_table (info), |
826 | elf_link_renumber_local_hash_table_dynsyms, | |
827 | &dynsymcount); | |
828 | ||
30b30c21 RH |
829 | if (elf_hash_table (info)->dynlocal) |
830 | { | |
831 | struct elf_link_local_dynamic_entry *p; | |
832 | for (p = elf_hash_table (info)->dynlocal; p ; p = p->next) | |
833 | p->dynindx = ++dynsymcount; | |
834 | } | |
835 | ||
836 | elf_link_hash_traverse (elf_hash_table (info), | |
837 | elf_link_renumber_hash_table_dynsyms, | |
838 | &dynsymcount); | |
839 | ||
840 | /* There is an unused NULL entry at the head of the table which | |
841 | we must account for in our count. Unless there weren't any | |
842 | symbols, which means we'll have no table at all. */ | |
843 | if (dynsymcount != 0) | |
844 | ++dynsymcount; | |
845 | ||
ccabcbe5 AM |
846 | elf_hash_table (info)->dynsymcount = dynsymcount; |
847 | return dynsymcount; | |
30b30c21 | 848 | } |
252b5132 | 849 | |
54ac0771 L |
850 | /* Merge st_other field. */ |
851 | ||
852 | static void | |
853 | elf_merge_st_other (bfd *abfd, struct elf_link_hash_entry *h, | |
854 | Elf_Internal_Sym *isym, bfd_boolean definition, | |
855 | bfd_boolean dynamic) | |
856 | { | |
857 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
858 | ||
859 | /* If st_other has a processor-specific meaning, specific | |
860 | code might be needed here. We never merge the visibility | |
861 | attribute with the one from a dynamic object. */ | |
862 | if (bed->elf_backend_merge_symbol_attribute) | |
863 | (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition, | |
864 | dynamic); | |
865 | ||
866 | /* If this symbol has default visibility and the user has requested | |
867 | we not re-export it, then mark it as hidden. */ | |
868 | if (definition | |
869 | && !dynamic | |
870 | && (abfd->no_export | |
871 | || (abfd->my_archive && abfd->my_archive->no_export)) | |
872 | && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL) | |
873 | isym->st_other = (STV_HIDDEN | |
874 | | (isym->st_other & ~ELF_ST_VISIBILITY (-1))); | |
875 | ||
876 | if (!dynamic && ELF_ST_VISIBILITY (isym->st_other) != 0) | |
877 | { | |
878 | unsigned char hvis, symvis, other, nvis; | |
879 | ||
880 | /* Only merge the visibility. Leave the remainder of the | |
881 | st_other field to elf_backend_merge_symbol_attribute. */ | |
882 | other = h->other & ~ELF_ST_VISIBILITY (-1); | |
883 | ||
884 | /* Combine visibilities, using the most constraining one. */ | |
885 | hvis = ELF_ST_VISIBILITY (h->other); | |
886 | symvis = ELF_ST_VISIBILITY (isym->st_other); | |
887 | if (! hvis) | |
888 | nvis = symvis; | |
889 | else if (! symvis) | |
890 | nvis = hvis; | |
891 | else | |
892 | nvis = hvis < symvis ? hvis : symvis; | |
893 | ||
894 | h->other = other | nvis; | |
895 | } | |
896 | } | |
897 | ||
4f3fedcf AM |
898 | /* This function is called when we want to merge a new symbol with an |
899 | existing symbol. It handles the various cases which arise when we | |
900 | find a definition in a dynamic object, or when there is already a | |
901 | definition in a dynamic object. The new symbol is described by | |
902 | NAME, SYM, PSEC, and PVALUE. We set SYM_HASH to the hash table | |
903 | entry. We set POLDBFD to the old symbol's BFD. We set POLD_WEAK | |
904 | if the old symbol was weak. We set POLD_ALIGNMENT to the alignment | |
905 | of an old common symbol. We set OVERRIDE if the old symbol is | |
906 | overriding a new definition. We set TYPE_CHANGE_OK if it is OK for | |
907 | the type to change. We set SIZE_CHANGE_OK if it is OK for the size | |
908 | to change. By OK to change, we mean that we shouldn't warn if the | |
909 | type or size does change. */ | |
45d6a902 | 910 | |
8a56bd02 | 911 | static bfd_boolean |
268b6b39 AM |
912 | _bfd_elf_merge_symbol (bfd *abfd, |
913 | struct bfd_link_info *info, | |
914 | const char *name, | |
915 | Elf_Internal_Sym *sym, | |
916 | asection **psec, | |
917 | bfd_vma *pvalue, | |
4f3fedcf AM |
918 | struct elf_link_hash_entry **sym_hash, |
919 | bfd **poldbfd, | |
37a9e49a | 920 | bfd_boolean *pold_weak, |
af44c138 | 921 | unsigned int *pold_alignment, |
268b6b39 AM |
922 | bfd_boolean *skip, |
923 | bfd_boolean *override, | |
924 | bfd_boolean *type_change_ok, | |
0f8a2703 | 925 | bfd_boolean *size_change_ok) |
252b5132 | 926 | { |
7479dfd4 | 927 | asection *sec, *oldsec; |
45d6a902 | 928 | struct elf_link_hash_entry *h; |
90c984fc | 929 | struct elf_link_hash_entry *hi; |
45d6a902 AM |
930 | struct elf_link_hash_entry *flip; |
931 | int bind; | |
932 | bfd *oldbfd; | |
933 | bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon; | |
0a36a439 | 934 | bfd_boolean newweak, oldweak, newfunc, oldfunc; |
a4d8e49b | 935 | const struct elf_backend_data *bed; |
45d6a902 AM |
936 | |
937 | *skip = FALSE; | |
938 | *override = FALSE; | |
939 | ||
940 | sec = *psec; | |
941 | bind = ELF_ST_BIND (sym->st_info); | |
942 | ||
943 | if (! bfd_is_und_section (sec)) | |
944 | h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE); | |
945 | else | |
946 | h = ((struct elf_link_hash_entry *) | |
947 | bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE)); | |
948 | if (h == NULL) | |
949 | return FALSE; | |
950 | *sym_hash = h; | |
252b5132 | 951 | |
88ba32a0 L |
952 | bed = get_elf_backend_data (abfd); |
953 | ||
90c984fc L |
954 | /* For merging, we only care about real symbols. But we need to make |
955 | sure that indirect symbol dynamic flags are updated. */ | |
956 | hi = h; | |
45d6a902 AM |
957 | while (h->root.type == bfd_link_hash_indirect |
958 | || h->root.type == bfd_link_hash_warning) | |
959 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
960 | ||
934bce08 AM |
961 | /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the |
962 | existing symbol. */ | |
963 | ||
964 | oldbfd = NULL; | |
965 | oldsec = NULL; | |
966 | switch (h->root.type) | |
967 | { | |
968 | default: | |
969 | break; | |
970 | ||
971 | case bfd_link_hash_undefined: | |
972 | case bfd_link_hash_undefweak: | |
973 | oldbfd = h->root.u.undef.abfd; | |
974 | break; | |
975 | ||
976 | case bfd_link_hash_defined: | |
977 | case bfd_link_hash_defweak: | |
978 | oldbfd = h->root.u.def.section->owner; | |
979 | oldsec = h->root.u.def.section; | |
980 | break; | |
981 | ||
982 | case bfd_link_hash_common: | |
983 | oldbfd = h->root.u.c.p->section->owner; | |
984 | oldsec = h->root.u.c.p->section; | |
985 | if (pold_alignment) | |
986 | *pold_alignment = h->root.u.c.p->alignment_power; | |
987 | break; | |
988 | } | |
989 | if (poldbfd && *poldbfd == NULL) | |
990 | *poldbfd = oldbfd; | |
991 | ||
992 | /* Differentiate strong and weak symbols. */ | |
993 | newweak = bind == STB_WEAK; | |
994 | oldweak = (h->root.type == bfd_link_hash_defweak | |
995 | || h->root.type == bfd_link_hash_undefweak); | |
996 | if (pold_weak) | |
997 | *pold_weak = oldweak; | |
998 | ||
999 | /* This code is for coping with dynamic objects, and is only useful | |
1000 | if we are doing an ELF link. */ | |
1001 | if (!(*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec)) | |
1002 | return TRUE; | |
1003 | ||
40b36307 | 1004 | /* We have to check it for every instance since the first few may be |
ee659f1f | 1005 | references and not all compilers emit symbol type for undefined |
40b36307 L |
1006 | symbols. */ |
1007 | bfd_elf_link_mark_dynamic_symbol (info, h, sym); | |
1008 | ||
ee659f1f AM |
1009 | /* NEWDYN and OLDDYN indicate whether the new or old symbol, |
1010 | respectively, is from a dynamic object. */ | |
1011 | ||
1012 | newdyn = (abfd->flags & DYNAMIC) != 0; | |
1013 | ||
1014 | /* ref_dynamic_nonweak and dynamic_def flags track actual undefined | |
1015 | syms and defined syms in dynamic libraries respectively. | |
1016 | ref_dynamic on the other hand can be set for a symbol defined in | |
1017 | a dynamic library, and def_dynamic may not be set; When the | |
1018 | definition in a dynamic lib is overridden by a definition in the | |
1019 | executable use of the symbol in the dynamic lib becomes a | |
1020 | reference to the executable symbol. */ | |
1021 | if (newdyn) | |
1022 | { | |
1023 | if (bfd_is_und_section (sec)) | |
1024 | { | |
1025 | if (bind != STB_WEAK) | |
1026 | { | |
1027 | h->ref_dynamic_nonweak = 1; | |
1028 | hi->ref_dynamic_nonweak = 1; | |
1029 | } | |
1030 | } | |
1031 | else | |
1032 | { | |
1033 | h->dynamic_def = 1; | |
1034 | hi->dynamic_def = 1; | |
1035 | } | |
1036 | } | |
1037 | ||
45d6a902 AM |
1038 | /* If we just created the symbol, mark it as being an ELF symbol. |
1039 | Other than that, there is nothing to do--there is no merge issue | |
1040 | with a newly defined symbol--so we just return. */ | |
1041 | ||
1042 | if (h->root.type == bfd_link_hash_new) | |
252b5132 | 1043 | { |
f5385ebf | 1044 | h->non_elf = 0; |
45d6a902 AM |
1045 | return TRUE; |
1046 | } | |
252b5132 | 1047 | |
45d6a902 AM |
1048 | /* In cases involving weak versioned symbols, we may wind up trying |
1049 | to merge a symbol with itself. Catch that here, to avoid the | |
1050 | confusion that results if we try to override a symbol with | |
1051 | itself. The additional tests catch cases like | |
1052 | _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a | |
1053 | dynamic object, which we do want to handle here. */ | |
1054 | if (abfd == oldbfd | |
895fa45f | 1055 | && (newweak || oldweak) |
45d6a902 | 1056 | && ((abfd->flags & DYNAMIC) == 0 |
f5385ebf | 1057 | || !h->def_regular)) |
45d6a902 AM |
1058 | return TRUE; |
1059 | ||
707bba77 | 1060 | olddyn = FALSE; |
45d6a902 AM |
1061 | if (oldbfd != NULL) |
1062 | olddyn = (oldbfd->flags & DYNAMIC) != 0; | |
707bba77 | 1063 | else if (oldsec != NULL) |
45d6a902 | 1064 | { |
707bba77 | 1065 | /* This handles the special SHN_MIPS_{TEXT,DATA} section |
45d6a902 | 1066 | indices used by MIPS ELF. */ |
707bba77 | 1067 | olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0; |
45d6a902 | 1068 | } |
252b5132 | 1069 | |
45d6a902 AM |
1070 | /* NEWDEF and OLDDEF indicate whether the new or old symbol, |
1071 | respectively, appear to be a definition rather than reference. */ | |
1072 | ||
707bba77 | 1073 | newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec); |
45d6a902 | 1074 | |
707bba77 AM |
1075 | olddef = (h->root.type != bfd_link_hash_undefined |
1076 | && h->root.type != bfd_link_hash_undefweak | |
1077 | && h->root.type != bfd_link_hash_common); | |
45d6a902 | 1078 | |
0a36a439 L |
1079 | /* NEWFUNC and OLDFUNC indicate whether the new or old symbol, |
1080 | respectively, appear to be a function. */ | |
1081 | ||
1082 | newfunc = (ELF_ST_TYPE (sym->st_info) != STT_NOTYPE | |
1083 | && bed->is_function_type (ELF_ST_TYPE (sym->st_info))); | |
1084 | ||
1085 | oldfunc = (h->type != STT_NOTYPE | |
1086 | && bed->is_function_type (h->type)); | |
1087 | ||
580a2b6e L |
1088 | /* When we try to create a default indirect symbol from the dynamic |
1089 | definition with the default version, we skip it if its type and | |
1090 | the type of existing regular definition mismatch. We only do it | |
1091 | if the existing regular definition won't be dynamic. */ | |
1092 | if (pold_alignment == NULL | |
1093 | && !info->shared | |
1094 | && !info->export_dynamic | |
1095 | && !h->ref_dynamic | |
1096 | && newdyn | |
1097 | && newdef | |
1098 | && !olddyn | |
1099 | && (olddef || h->root.type == bfd_link_hash_common) | |
1100 | && ELF_ST_TYPE (sym->st_info) != h->type | |
1101 | && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE | |
fcb93ecf | 1102 | && h->type != STT_NOTYPE |
0a36a439 | 1103 | && !(newfunc && oldfunc)) |
580a2b6e L |
1104 | { |
1105 | *skip = TRUE; | |
1106 | return TRUE; | |
1107 | } | |
1108 | ||
3a5dbfb2 AM |
1109 | /* Plugin symbol type isn't currently set. Stop bogus errors. */ |
1110 | if (oldbfd != NULL && (oldbfd->flags & BFD_PLUGIN) != 0) | |
1111 | *type_change_ok = TRUE; | |
1112 | ||
68f49ba3 L |
1113 | /* Check TLS symbol. We don't check undefined symbol introduced by |
1114 | "ld -u". */ | |
3a5dbfb2 AM |
1115 | else if (oldbfd != NULL |
1116 | && ELF_ST_TYPE (sym->st_info) != h->type | |
1117 | && (ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS)) | |
7479dfd4 L |
1118 | { |
1119 | bfd *ntbfd, *tbfd; | |
1120 | bfd_boolean ntdef, tdef; | |
1121 | asection *ntsec, *tsec; | |
1122 | ||
1123 | if (h->type == STT_TLS) | |
1124 | { | |
3b36f7e6 | 1125 | ntbfd = abfd; |
7479dfd4 L |
1126 | ntsec = sec; |
1127 | ntdef = newdef; | |
1128 | tbfd = oldbfd; | |
1129 | tsec = oldsec; | |
1130 | tdef = olddef; | |
1131 | } | |
1132 | else | |
1133 | { | |
1134 | ntbfd = oldbfd; | |
1135 | ntsec = oldsec; | |
1136 | ntdef = olddef; | |
1137 | tbfd = abfd; | |
1138 | tsec = sec; | |
1139 | tdef = newdef; | |
1140 | } | |
1141 | ||
1142 | if (tdef && ntdef) | |
1143 | (*_bfd_error_handler) | |
191c0c42 AM |
1144 | (_("%s: TLS definition in %B section %A " |
1145 | "mismatches non-TLS definition in %B section %A"), | |
7479dfd4 L |
1146 | tbfd, tsec, ntbfd, ntsec, h->root.root.string); |
1147 | else if (!tdef && !ntdef) | |
1148 | (*_bfd_error_handler) | |
191c0c42 AM |
1149 | (_("%s: TLS reference in %B " |
1150 | "mismatches non-TLS reference in %B"), | |
7479dfd4 L |
1151 | tbfd, ntbfd, h->root.root.string); |
1152 | else if (tdef) | |
1153 | (*_bfd_error_handler) | |
191c0c42 AM |
1154 | (_("%s: TLS definition in %B section %A " |
1155 | "mismatches non-TLS reference in %B"), | |
7479dfd4 L |
1156 | tbfd, tsec, ntbfd, h->root.root.string); |
1157 | else | |
1158 | (*_bfd_error_handler) | |
191c0c42 AM |
1159 | (_("%s: TLS reference in %B " |
1160 | "mismatches non-TLS definition in %B section %A"), | |
7479dfd4 L |
1161 | tbfd, ntbfd, ntsec, h->root.root.string); |
1162 | ||
1163 | bfd_set_error (bfd_error_bad_value); | |
1164 | return FALSE; | |
1165 | } | |
1166 | ||
45d6a902 AM |
1167 | /* If the old symbol has non-default visibility, we ignore the new |
1168 | definition from a dynamic object. */ | |
1169 | if (newdyn | |
9c7a29a3 | 1170 | && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT |
45d6a902 AM |
1171 | && !bfd_is_und_section (sec)) |
1172 | { | |
1173 | *skip = TRUE; | |
1174 | /* Make sure this symbol is dynamic. */ | |
f5385ebf | 1175 | h->ref_dynamic = 1; |
90c984fc | 1176 | hi->ref_dynamic = 1; |
45d6a902 AM |
1177 | /* A protected symbol has external availability. Make sure it is |
1178 | recorded as dynamic. | |
1179 | ||
1180 | FIXME: Should we check type and size for protected symbol? */ | |
1181 | if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED) | |
c152c796 | 1182 | return bfd_elf_link_record_dynamic_symbol (info, h); |
45d6a902 AM |
1183 | else |
1184 | return TRUE; | |
1185 | } | |
1186 | else if (!newdyn | |
9c7a29a3 | 1187 | && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT |
f5385ebf | 1188 | && h->def_dynamic) |
45d6a902 AM |
1189 | { |
1190 | /* If the new symbol with non-default visibility comes from a | |
1191 | relocatable file and the old definition comes from a dynamic | |
1192 | object, we remove the old definition. */ | |
6c9b78e6 | 1193 | if (hi->root.type == bfd_link_hash_indirect) |
d2dee3b2 L |
1194 | { |
1195 | /* Handle the case where the old dynamic definition is | |
1196 | default versioned. We need to copy the symbol info from | |
1197 | the symbol with default version to the normal one if it | |
1198 | was referenced before. */ | |
1199 | if (h->ref_regular) | |
1200 | { | |
6c9b78e6 | 1201 | hi->root.type = h->root.type; |
d2dee3b2 | 1202 | h->root.type = bfd_link_hash_indirect; |
6c9b78e6 | 1203 | (*bed->elf_backend_copy_indirect_symbol) (info, hi, h); |
aed81c4e | 1204 | |
6c9b78e6 | 1205 | h->root.u.i.link = (struct bfd_link_hash_entry *) hi; |
aed81c4e | 1206 | if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED) |
d2dee3b2 | 1207 | { |
aed81c4e MR |
1208 | /* If the new symbol is hidden or internal, completely undo |
1209 | any dynamic link state. */ | |
1210 | (*bed->elf_backend_hide_symbol) (info, h, TRUE); | |
1211 | h->forced_local = 0; | |
1212 | h->ref_dynamic = 0; | |
d2dee3b2 L |
1213 | } |
1214 | else | |
aed81c4e MR |
1215 | h->ref_dynamic = 1; |
1216 | ||
1217 | h->def_dynamic = 0; | |
aed81c4e MR |
1218 | /* FIXME: Should we check type and size for protected symbol? */ |
1219 | h->size = 0; | |
1220 | h->type = 0; | |
1221 | ||
6c9b78e6 | 1222 | h = hi; |
d2dee3b2 L |
1223 | } |
1224 | else | |
6c9b78e6 | 1225 | h = hi; |
d2dee3b2 | 1226 | } |
1de1a317 | 1227 | |
f5eda473 AM |
1228 | /* If the old symbol was undefined before, then it will still be |
1229 | on the undefs list. If the new symbol is undefined or | |
1230 | common, we can't make it bfd_link_hash_new here, because new | |
1231 | undefined or common symbols will be added to the undefs list | |
1232 | by _bfd_generic_link_add_one_symbol. Symbols may not be | |
1233 | added twice to the undefs list. Also, if the new symbol is | |
1234 | undefweak then we don't want to lose the strong undef. */ | |
1235 | if (h->root.u.undef.next || info->hash->undefs_tail == &h->root) | |
1de1a317 | 1236 | { |
1de1a317 | 1237 | h->root.type = bfd_link_hash_undefined; |
1de1a317 L |
1238 | h->root.u.undef.abfd = abfd; |
1239 | } | |
1240 | else | |
1241 | { | |
1242 | h->root.type = bfd_link_hash_new; | |
1243 | h->root.u.undef.abfd = NULL; | |
1244 | } | |
1245 | ||
f5eda473 | 1246 | if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED) |
252b5132 | 1247 | { |
f5eda473 AM |
1248 | /* If the new symbol is hidden or internal, completely undo |
1249 | any dynamic link state. */ | |
1250 | (*bed->elf_backend_hide_symbol) (info, h, TRUE); | |
1251 | h->forced_local = 0; | |
1252 | h->ref_dynamic = 0; | |
45d6a902 | 1253 | } |
f5eda473 AM |
1254 | else |
1255 | h->ref_dynamic = 1; | |
1256 | h->def_dynamic = 0; | |
45d6a902 AM |
1257 | /* FIXME: Should we check type and size for protected symbol? */ |
1258 | h->size = 0; | |
1259 | h->type = 0; | |
1260 | return TRUE; | |
1261 | } | |
14a793b2 | 1262 | |
15b43f48 AM |
1263 | /* If a new weak symbol definition comes from a regular file and the |
1264 | old symbol comes from a dynamic library, we treat the new one as | |
1265 | strong. Similarly, an old weak symbol definition from a regular | |
1266 | file is treated as strong when the new symbol comes from a dynamic | |
1267 | library. Further, an old weak symbol from a dynamic library is | |
1268 | treated as strong if the new symbol is from a dynamic library. | |
1269 | This reflects the way glibc's ld.so works. | |
1270 | ||
1271 | Do this before setting *type_change_ok or *size_change_ok so that | |
1272 | we warn properly when dynamic library symbols are overridden. */ | |
1273 | ||
1274 | if (newdef && !newdyn && olddyn) | |
0f8a2703 | 1275 | newweak = FALSE; |
15b43f48 | 1276 | if (olddef && newdyn) |
0f8a2703 AM |
1277 | oldweak = FALSE; |
1278 | ||
d334575b | 1279 | /* Allow changes between different types of function symbol. */ |
0a36a439 | 1280 | if (newfunc && oldfunc) |
fcb93ecf PB |
1281 | *type_change_ok = TRUE; |
1282 | ||
79349b09 AM |
1283 | /* It's OK to change the type if either the existing symbol or the |
1284 | new symbol is weak. A type change is also OK if the old symbol | |
1285 | is undefined and the new symbol is defined. */ | |
252b5132 | 1286 | |
79349b09 AM |
1287 | if (oldweak |
1288 | || newweak | |
1289 | || (newdef | |
1290 | && h->root.type == bfd_link_hash_undefined)) | |
1291 | *type_change_ok = TRUE; | |
1292 | ||
1293 | /* It's OK to change the size if either the existing symbol or the | |
1294 | new symbol is weak, or if the old symbol is undefined. */ | |
1295 | ||
1296 | if (*type_change_ok | |
1297 | || h->root.type == bfd_link_hash_undefined) | |
1298 | *size_change_ok = TRUE; | |
45d6a902 | 1299 | |
45d6a902 AM |
1300 | /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old |
1301 | symbol, respectively, appears to be a common symbol in a dynamic | |
1302 | object. If a symbol appears in an uninitialized section, and is | |
1303 | not weak, and is not a function, then it may be a common symbol | |
1304 | which was resolved when the dynamic object was created. We want | |
1305 | to treat such symbols specially, because they raise special | |
1306 | considerations when setting the symbol size: if the symbol | |
1307 | appears as a common symbol in a regular object, and the size in | |
1308 | the regular object is larger, we must make sure that we use the | |
1309 | larger size. This problematic case can always be avoided in C, | |
1310 | but it must be handled correctly when using Fortran shared | |
1311 | libraries. | |
1312 | ||
1313 | Note that if NEWDYNCOMMON is set, NEWDEF will be set, and | |
1314 | likewise for OLDDYNCOMMON and OLDDEF. | |
1315 | ||
1316 | Note that this test is just a heuristic, and that it is quite | |
1317 | possible to have an uninitialized symbol in a shared object which | |
1318 | is really a definition, rather than a common symbol. This could | |
1319 | lead to some minor confusion when the symbol really is a common | |
1320 | symbol in some regular object. However, I think it will be | |
1321 | harmless. */ | |
1322 | ||
1323 | if (newdyn | |
1324 | && newdef | |
79349b09 | 1325 | && !newweak |
45d6a902 AM |
1326 | && (sec->flags & SEC_ALLOC) != 0 |
1327 | && (sec->flags & SEC_LOAD) == 0 | |
1328 | && sym->st_size > 0 | |
0a36a439 | 1329 | && !newfunc) |
45d6a902 AM |
1330 | newdyncommon = TRUE; |
1331 | else | |
1332 | newdyncommon = FALSE; | |
1333 | ||
1334 | if (olddyn | |
1335 | && olddef | |
1336 | && h->root.type == bfd_link_hash_defined | |
f5385ebf | 1337 | && h->def_dynamic |
45d6a902 AM |
1338 | && (h->root.u.def.section->flags & SEC_ALLOC) != 0 |
1339 | && (h->root.u.def.section->flags & SEC_LOAD) == 0 | |
1340 | && h->size > 0 | |
0a36a439 | 1341 | && !oldfunc) |
45d6a902 AM |
1342 | olddyncommon = TRUE; |
1343 | else | |
1344 | olddyncommon = FALSE; | |
1345 | ||
a4d8e49b L |
1346 | /* We now know everything about the old and new symbols. We ask the |
1347 | backend to check if we can merge them. */ | |
5d13b3b3 AM |
1348 | if (bed->merge_symbol != NULL) |
1349 | { | |
1350 | if (!bed->merge_symbol (h, sym, psec, newdef, olddef, oldbfd, oldsec)) | |
1351 | return FALSE; | |
1352 | sec = *psec; | |
1353 | } | |
a4d8e49b | 1354 | |
45d6a902 AM |
1355 | /* If both the old and the new symbols look like common symbols in a |
1356 | dynamic object, set the size of the symbol to the larger of the | |
1357 | two. */ | |
1358 | ||
1359 | if (olddyncommon | |
1360 | && newdyncommon | |
1361 | && sym->st_size != h->size) | |
1362 | { | |
1363 | /* Since we think we have two common symbols, issue a multiple | |
1364 | common warning if desired. Note that we only warn if the | |
1365 | size is different. If the size is the same, we simply let | |
1366 | the old symbol override the new one as normally happens with | |
1367 | symbols defined in dynamic objects. */ | |
1368 | ||
1369 | if (! ((*info->callbacks->multiple_common) | |
24f58f47 | 1370 | (info, &h->root, abfd, bfd_link_hash_common, sym->st_size))) |
45d6a902 | 1371 | return FALSE; |
252b5132 | 1372 | |
45d6a902 AM |
1373 | if (sym->st_size > h->size) |
1374 | h->size = sym->st_size; | |
252b5132 | 1375 | |
45d6a902 | 1376 | *size_change_ok = TRUE; |
252b5132 RH |
1377 | } |
1378 | ||
45d6a902 AM |
1379 | /* If we are looking at a dynamic object, and we have found a |
1380 | definition, we need to see if the symbol was already defined by | |
1381 | some other object. If so, we want to use the existing | |
1382 | definition, and we do not want to report a multiple symbol | |
1383 | definition error; we do this by clobbering *PSEC to be | |
1384 | bfd_und_section_ptr. | |
1385 | ||
1386 | We treat a common symbol as a definition if the symbol in the | |
1387 | shared library is a function, since common symbols always | |
1388 | represent variables; this can cause confusion in principle, but | |
1389 | any such confusion would seem to indicate an erroneous program or | |
1390 | shared library. We also permit a common symbol in a regular | |
79349b09 | 1391 | object to override a weak symbol in a shared object. */ |
45d6a902 AM |
1392 | |
1393 | if (newdyn | |
1394 | && newdef | |
77cfaee6 | 1395 | && (olddef |
45d6a902 | 1396 | || (h->root.type == bfd_link_hash_common |
0a36a439 | 1397 | && (newweak || newfunc)))) |
45d6a902 AM |
1398 | { |
1399 | *override = TRUE; | |
1400 | newdef = FALSE; | |
1401 | newdyncommon = FALSE; | |
252b5132 | 1402 | |
45d6a902 AM |
1403 | *psec = sec = bfd_und_section_ptr; |
1404 | *size_change_ok = TRUE; | |
252b5132 | 1405 | |
45d6a902 AM |
1406 | /* If we get here when the old symbol is a common symbol, then |
1407 | we are explicitly letting it override a weak symbol or | |
1408 | function in a dynamic object, and we don't want to warn about | |
1409 | a type change. If the old symbol is a defined symbol, a type | |
1410 | change warning may still be appropriate. */ | |
252b5132 | 1411 | |
45d6a902 AM |
1412 | if (h->root.type == bfd_link_hash_common) |
1413 | *type_change_ok = TRUE; | |
1414 | } | |
1415 | ||
1416 | /* Handle the special case of an old common symbol merging with a | |
1417 | new symbol which looks like a common symbol in a shared object. | |
1418 | We change *PSEC and *PVALUE to make the new symbol look like a | |
91134c82 L |
1419 | common symbol, and let _bfd_generic_link_add_one_symbol do the |
1420 | right thing. */ | |
45d6a902 AM |
1421 | |
1422 | if (newdyncommon | |
1423 | && h->root.type == bfd_link_hash_common) | |
1424 | { | |
1425 | *override = TRUE; | |
1426 | newdef = FALSE; | |
1427 | newdyncommon = FALSE; | |
1428 | *pvalue = sym->st_size; | |
a4d8e49b | 1429 | *psec = sec = bed->common_section (oldsec); |
45d6a902 AM |
1430 | *size_change_ok = TRUE; |
1431 | } | |
1432 | ||
c5e2cead | 1433 | /* Skip weak definitions of symbols that are already defined. */ |
f41d945b | 1434 | if (newdef && olddef && newweak) |
54ac0771 | 1435 | { |
35ed3f94 | 1436 | /* Don't skip new non-IR weak syms. */ |
3a5dbfb2 AM |
1437 | if (!(oldbfd != NULL |
1438 | && (oldbfd->flags & BFD_PLUGIN) != 0 | |
35ed3f94 | 1439 | && (abfd->flags & BFD_PLUGIN) == 0)) |
57fa7b8c AM |
1440 | { |
1441 | newdef = FALSE; | |
1442 | *skip = TRUE; | |
1443 | } | |
54ac0771 L |
1444 | |
1445 | /* Merge st_other. If the symbol already has a dynamic index, | |
1446 | but visibility says it should not be visible, turn it into a | |
1447 | local symbol. */ | |
1448 | elf_merge_st_other (abfd, h, sym, newdef, newdyn); | |
1449 | if (h->dynindx != -1) | |
1450 | switch (ELF_ST_VISIBILITY (h->other)) | |
1451 | { | |
1452 | case STV_INTERNAL: | |
1453 | case STV_HIDDEN: | |
1454 | (*bed->elf_backend_hide_symbol) (info, h, TRUE); | |
1455 | break; | |
1456 | } | |
1457 | } | |
c5e2cead | 1458 | |
45d6a902 AM |
1459 | /* If the old symbol is from a dynamic object, and the new symbol is |
1460 | a definition which is not from a dynamic object, then the new | |
1461 | symbol overrides the old symbol. Symbols from regular files | |
1462 | always take precedence over symbols from dynamic objects, even if | |
1463 | they are defined after the dynamic object in the link. | |
1464 | ||
1465 | As above, we again permit a common symbol in a regular object to | |
1466 | override a definition in a shared object if the shared object | |
0f8a2703 | 1467 | symbol is a function or is weak. */ |
45d6a902 AM |
1468 | |
1469 | flip = NULL; | |
77cfaee6 | 1470 | if (!newdyn |
45d6a902 AM |
1471 | && (newdef |
1472 | || (bfd_is_com_section (sec) | |
0a36a439 | 1473 | && (oldweak || oldfunc))) |
45d6a902 AM |
1474 | && olddyn |
1475 | && olddef | |
f5385ebf | 1476 | && h->def_dynamic) |
45d6a902 AM |
1477 | { |
1478 | /* Change the hash table entry to undefined, and let | |
1479 | _bfd_generic_link_add_one_symbol do the right thing with the | |
1480 | new definition. */ | |
1481 | ||
1482 | h->root.type = bfd_link_hash_undefined; | |
1483 | h->root.u.undef.abfd = h->root.u.def.section->owner; | |
1484 | *size_change_ok = TRUE; | |
1485 | ||
1486 | olddef = FALSE; | |
1487 | olddyncommon = FALSE; | |
1488 | ||
1489 | /* We again permit a type change when a common symbol may be | |
1490 | overriding a function. */ | |
1491 | ||
1492 | if (bfd_is_com_section (sec)) | |
0a36a439 L |
1493 | { |
1494 | if (oldfunc) | |
1495 | { | |
1496 | /* If a common symbol overrides a function, make sure | |
1497 | that it isn't defined dynamically nor has type | |
1498 | function. */ | |
1499 | h->def_dynamic = 0; | |
1500 | h->type = STT_NOTYPE; | |
1501 | } | |
1502 | *type_change_ok = TRUE; | |
1503 | } | |
45d6a902 | 1504 | |
6c9b78e6 AM |
1505 | if (hi->root.type == bfd_link_hash_indirect) |
1506 | flip = hi; | |
45d6a902 AM |
1507 | else |
1508 | /* This union may have been set to be non-NULL when this symbol | |
1509 | was seen in a dynamic object. We must force the union to be | |
1510 | NULL, so that it is correct for a regular symbol. */ | |
1511 | h->verinfo.vertree = NULL; | |
1512 | } | |
1513 | ||
1514 | /* Handle the special case of a new common symbol merging with an | |
1515 | old symbol that looks like it might be a common symbol defined in | |
1516 | a shared object. Note that we have already handled the case in | |
1517 | which a new common symbol should simply override the definition | |
1518 | in the shared library. */ | |
1519 | ||
1520 | if (! newdyn | |
1521 | && bfd_is_com_section (sec) | |
1522 | && olddyncommon) | |
1523 | { | |
1524 | /* It would be best if we could set the hash table entry to a | |
1525 | common symbol, but we don't know what to use for the section | |
1526 | or the alignment. */ | |
1527 | if (! ((*info->callbacks->multiple_common) | |
24f58f47 | 1528 | (info, &h->root, abfd, bfd_link_hash_common, sym->st_size))) |
45d6a902 AM |
1529 | return FALSE; |
1530 | ||
4cc11e76 | 1531 | /* If the presumed common symbol in the dynamic object is |
45d6a902 AM |
1532 | larger, pretend that the new symbol has its size. */ |
1533 | ||
1534 | if (h->size > *pvalue) | |
1535 | *pvalue = h->size; | |
1536 | ||
af44c138 L |
1537 | /* We need to remember the alignment required by the symbol |
1538 | in the dynamic object. */ | |
1539 | BFD_ASSERT (pold_alignment); | |
1540 | *pold_alignment = h->root.u.def.section->alignment_power; | |
45d6a902 AM |
1541 | |
1542 | olddef = FALSE; | |
1543 | olddyncommon = FALSE; | |
1544 | ||
1545 | h->root.type = bfd_link_hash_undefined; | |
1546 | h->root.u.undef.abfd = h->root.u.def.section->owner; | |
1547 | ||
1548 | *size_change_ok = TRUE; | |
1549 | *type_change_ok = TRUE; | |
1550 | ||
6c9b78e6 AM |
1551 | if (hi->root.type == bfd_link_hash_indirect) |
1552 | flip = hi; | |
45d6a902 AM |
1553 | else |
1554 | h->verinfo.vertree = NULL; | |
1555 | } | |
1556 | ||
1557 | if (flip != NULL) | |
1558 | { | |
1559 | /* Handle the case where we had a versioned symbol in a dynamic | |
1560 | library and now find a definition in a normal object. In this | |
1561 | case, we make the versioned symbol point to the normal one. */ | |
45d6a902 | 1562 | flip->root.type = h->root.type; |
00cbee0a | 1563 | flip->root.u.undef.abfd = h->root.u.undef.abfd; |
45d6a902 AM |
1564 | h->root.type = bfd_link_hash_indirect; |
1565 | h->root.u.i.link = (struct bfd_link_hash_entry *) flip; | |
fcfa13d2 | 1566 | (*bed->elf_backend_copy_indirect_symbol) (info, flip, h); |
f5385ebf | 1567 | if (h->def_dynamic) |
45d6a902 | 1568 | { |
f5385ebf AM |
1569 | h->def_dynamic = 0; |
1570 | flip->ref_dynamic = 1; | |
45d6a902 AM |
1571 | } |
1572 | } | |
1573 | ||
45d6a902 AM |
1574 | return TRUE; |
1575 | } | |
1576 | ||
1577 | /* This function is called to create an indirect symbol from the | |
1578 | default for the symbol with the default version if needed. The | |
4f3fedcf | 1579 | symbol is described by H, NAME, SYM, SEC, and VALUE. We |
0f8a2703 | 1580 | set DYNSYM if the new indirect symbol is dynamic. */ |
45d6a902 | 1581 | |
28caa186 | 1582 | static bfd_boolean |
268b6b39 AM |
1583 | _bfd_elf_add_default_symbol (bfd *abfd, |
1584 | struct bfd_link_info *info, | |
1585 | struct elf_link_hash_entry *h, | |
1586 | const char *name, | |
1587 | Elf_Internal_Sym *sym, | |
4f3fedcf AM |
1588 | asection *sec, |
1589 | bfd_vma value, | |
1590 | bfd **poldbfd, | |
e3c9d234 | 1591 | bfd_boolean *dynsym) |
45d6a902 AM |
1592 | { |
1593 | bfd_boolean type_change_ok; | |
1594 | bfd_boolean size_change_ok; | |
1595 | bfd_boolean skip; | |
1596 | char *shortname; | |
1597 | struct elf_link_hash_entry *hi; | |
1598 | struct bfd_link_hash_entry *bh; | |
9c5bfbb7 | 1599 | const struct elf_backend_data *bed; |
45d6a902 AM |
1600 | bfd_boolean collect; |
1601 | bfd_boolean dynamic; | |
e3c9d234 | 1602 | bfd_boolean override; |
45d6a902 AM |
1603 | char *p; |
1604 | size_t len, shortlen; | |
ffd65175 | 1605 | asection *tmp_sec; |
45d6a902 AM |
1606 | |
1607 | /* If this symbol has a version, and it is the default version, we | |
1608 | create an indirect symbol from the default name to the fully | |
1609 | decorated name. This will cause external references which do not | |
1610 | specify a version to be bound to this version of the symbol. */ | |
1611 | p = strchr (name, ELF_VER_CHR); | |
1612 | if (p == NULL || p[1] != ELF_VER_CHR) | |
1613 | return TRUE; | |
1614 | ||
45d6a902 AM |
1615 | bed = get_elf_backend_data (abfd); |
1616 | collect = bed->collect; | |
1617 | dynamic = (abfd->flags & DYNAMIC) != 0; | |
1618 | ||
1619 | shortlen = p - name; | |
a50b1753 | 1620 | shortname = (char *) bfd_hash_allocate (&info->hash->table, shortlen + 1); |
45d6a902 AM |
1621 | if (shortname == NULL) |
1622 | return FALSE; | |
1623 | memcpy (shortname, name, shortlen); | |
1624 | shortname[shortlen] = '\0'; | |
1625 | ||
1626 | /* We are going to create a new symbol. Merge it with any existing | |
1627 | symbol with this name. For the purposes of the merge, act as | |
1628 | though we were defining the symbol we just defined, although we | |
1629 | actually going to define an indirect symbol. */ | |
1630 | type_change_ok = FALSE; | |
1631 | size_change_ok = FALSE; | |
ffd65175 AM |
1632 | tmp_sec = sec; |
1633 | if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value, | |
4f3fedcf | 1634 | &hi, poldbfd, NULL, NULL, &skip, &override, |
af44c138 | 1635 | &type_change_ok, &size_change_ok)) |
45d6a902 AM |
1636 | return FALSE; |
1637 | ||
1638 | if (skip) | |
1639 | goto nondefault; | |
1640 | ||
1641 | if (! override) | |
1642 | { | |
1643 | bh = &hi->root; | |
1644 | if (! (_bfd_generic_link_add_one_symbol | |
1645 | (info, abfd, shortname, BSF_INDIRECT, bfd_ind_section_ptr, | |
268b6b39 | 1646 | 0, name, FALSE, collect, &bh))) |
45d6a902 AM |
1647 | return FALSE; |
1648 | hi = (struct elf_link_hash_entry *) bh; | |
1649 | } | |
1650 | else | |
1651 | { | |
1652 | /* In this case the symbol named SHORTNAME is overriding the | |
1653 | indirect symbol we want to add. We were planning on making | |
1654 | SHORTNAME an indirect symbol referring to NAME. SHORTNAME | |
1655 | is the name without a version. NAME is the fully versioned | |
1656 | name, and it is the default version. | |
1657 | ||
1658 | Overriding means that we already saw a definition for the | |
1659 | symbol SHORTNAME in a regular object, and it is overriding | |
1660 | the symbol defined in the dynamic object. | |
1661 | ||
1662 | When this happens, we actually want to change NAME, the | |
1663 | symbol we just added, to refer to SHORTNAME. This will cause | |
1664 | references to NAME in the shared object to become references | |
1665 | to SHORTNAME in the regular object. This is what we expect | |
1666 | when we override a function in a shared object: that the | |
1667 | references in the shared object will be mapped to the | |
1668 | definition in the regular object. */ | |
1669 | ||
1670 | while (hi->root.type == bfd_link_hash_indirect | |
1671 | || hi->root.type == bfd_link_hash_warning) | |
1672 | hi = (struct elf_link_hash_entry *) hi->root.u.i.link; | |
1673 | ||
1674 | h->root.type = bfd_link_hash_indirect; | |
1675 | h->root.u.i.link = (struct bfd_link_hash_entry *) hi; | |
f5385ebf | 1676 | if (h->def_dynamic) |
45d6a902 | 1677 | { |
f5385ebf AM |
1678 | h->def_dynamic = 0; |
1679 | hi->ref_dynamic = 1; | |
1680 | if (hi->ref_regular | |
1681 | || hi->def_regular) | |
45d6a902 | 1682 | { |
c152c796 | 1683 | if (! bfd_elf_link_record_dynamic_symbol (info, hi)) |
45d6a902 AM |
1684 | return FALSE; |
1685 | } | |
1686 | } | |
1687 | ||
1688 | /* Now set HI to H, so that the following code will set the | |
1689 | other fields correctly. */ | |
1690 | hi = h; | |
1691 | } | |
1692 | ||
fab4a87f L |
1693 | /* Check if HI is a warning symbol. */ |
1694 | if (hi->root.type == bfd_link_hash_warning) | |
1695 | hi = (struct elf_link_hash_entry *) hi->root.u.i.link; | |
1696 | ||
45d6a902 AM |
1697 | /* If there is a duplicate definition somewhere, then HI may not |
1698 | point to an indirect symbol. We will have reported an error to | |
1699 | the user in that case. */ | |
1700 | ||
1701 | if (hi->root.type == bfd_link_hash_indirect) | |
1702 | { | |
1703 | struct elf_link_hash_entry *ht; | |
1704 | ||
45d6a902 | 1705 | ht = (struct elf_link_hash_entry *) hi->root.u.i.link; |
fcfa13d2 | 1706 | (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi); |
45d6a902 | 1707 | |
68c88cd4 AM |
1708 | /* A reference to the SHORTNAME symbol from a dynamic library |
1709 | will be satisfied by the versioned symbol at runtime. In | |
1710 | effect, we have a reference to the versioned symbol. */ | |
1711 | ht->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak; | |
1712 | hi->dynamic_def |= ht->dynamic_def; | |
1713 | ||
45d6a902 AM |
1714 | /* See if the new flags lead us to realize that the symbol must |
1715 | be dynamic. */ | |
1716 | if (! *dynsym) | |
1717 | { | |
1718 | if (! dynamic) | |
1719 | { | |
ca4a656b | 1720 | if (! info->executable |
90c984fc | 1721 | || hi->def_dynamic |
f5385ebf | 1722 | || hi->ref_dynamic) |
45d6a902 AM |
1723 | *dynsym = TRUE; |
1724 | } | |
1725 | else | |
1726 | { | |
f5385ebf | 1727 | if (hi->ref_regular) |
45d6a902 AM |
1728 | *dynsym = TRUE; |
1729 | } | |
1730 | } | |
1731 | } | |
1732 | ||
1733 | /* We also need to define an indirection from the nondefault version | |
1734 | of the symbol. */ | |
1735 | ||
1736 | nondefault: | |
1737 | len = strlen (name); | |
a50b1753 | 1738 | shortname = (char *) bfd_hash_allocate (&info->hash->table, len); |
45d6a902 AM |
1739 | if (shortname == NULL) |
1740 | return FALSE; | |
1741 | memcpy (shortname, name, shortlen); | |
1742 | memcpy (shortname + shortlen, p + 1, len - shortlen); | |
1743 | ||
1744 | /* Once again, merge with any existing symbol. */ | |
1745 | type_change_ok = FALSE; | |
1746 | size_change_ok = FALSE; | |
ffd65175 AM |
1747 | tmp_sec = sec; |
1748 | if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value, | |
4f3fedcf | 1749 | &hi, NULL, NULL, NULL, &skip, &override, |
af44c138 | 1750 | &type_change_ok, &size_change_ok)) |
45d6a902 AM |
1751 | return FALSE; |
1752 | ||
1753 | if (skip) | |
1754 | return TRUE; | |
1755 | ||
1756 | if (override) | |
1757 | { | |
1758 | /* Here SHORTNAME is a versioned name, so we don't expect to see | |
1759 | the type of override we do in the case above unless it is | |
4cc11e76 | 1760 | overridden by a versioned definition. */ |
45d6a902 AM |
1761 | if (hi->root.type != bfd_link_hash_defined |
1762 | && hi->root.type != bfd_link_hash_defweak) | |
1763 | (*_bfd_error_handler) | |
d003868e AM |
1764 | (_("%B: unexpected redefinition of indirect versioned symbol `%s'"), |
1765 | abfd, shortname); | |
45d6a902 AM |
1766 | } |
1767 | else | |
1768 | { | |
1769 | bh = &hi->root; | |
1770 | if (! (_bfd_generic_link_add_one_symbol | |
1771 | (info, abfd, shortname, BSF_INDIRECT, | |
268b6b39 | 1772 | bfd_ind_section_ptr, 0, name, FALSE, collect, &bh))) |
45d6a902 AM |
1773 | return FALSE; |
1774 | hi = (struct elf_link_hash_entry *) bh; | |
1775 | ||
1776 | /* If there is a duplicate definition somewhere, then HI may not | |
1777 | point to an indirect symbol. We will have reported an error | |
1778 | to the user in that case. */ | |
1779 | ||
1780 | if (hi->root.type == bfd_link_hash_indirect) | |
1781 | { | |
fcfa13d2 | 1782 | (*bed->elf_backend_copy_indirect_symbol) (info, h, hi); |
68c88cd4 AM |
1783 | h->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak; |
1784 | hi->dynamic_def |= h->dynamic_def; | |
45d6a902 AM |
1785 | |
1786 | /* See if the new flags lead us to realize that the symbol | |
1787 | must be dynamic. */ | |
1788 | if (! *dynsym) | |
1789 | { | |
1790 | if (! dynamic) | |
1791 | { | |
ca4a656b | 1792 | if (! info->executable |
f5385ebf | 1793 | || hi->ref_dynamic) |
45d6a902 AM |
1794 | *dynsym = TRUE; |
1795 | } | |
1796 | else | |
1797 | { | |
f5385ebf | 1798 | if (hi->ref_regular) |
45d6a902 AM |
1799 | *dynsym = TRUE; |
1800 | } | |
1801 | } | |
1802 | } | |
1803 | } | |
1804 | ||
1805 | return TRUE; | |
1806 | } | |
1807 | \f | |
1808 | /* This routine is used to export all defined symbols into the dynamic | |
1809 | symbol table. It is called via elf_link_hash_traverse. */ | |
1810 | ||
28caa186 | 1811 | static bfd_boolean |
268b6b39 | 1812 | _bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data) |
45d6a902 | 1813 | { |
a50b1753 | 1814 | struct elf_info_failed *eif = (struct elf_info_failed *) data; |
45d6a902 AM |
1815 | |
1816 | /* Ignore indirect symbols. These are added by the versioning code. */ | |
1817 | if (h->root.type == bfd_link_hash_indirect) | |
1818 | return TRUE; | |
1819 | ||
7686d77d AM |
1820 | /* Ignore this if we won't export it. */ |
1821 | if (!eif->info->export_dynamic && !h->dynamic) | |
1822 | return TRUE; | |
45d6a902 AM |
1823 | |
1824 | if (h->dynindx == -1 | |
fd91d419 L |
1825 | && (h->def_regular || h->ref_regular) |
1826 | && ! bfd_hide_sym_by_version (eif->info->version_info, | |
1827 | h->root.root.string)) | |
45d6a902 | 1828 | { |
fd91d419 | 1829 | if (! bfd_elf_link_record_dynamic_symbol (eif->info, h)) |
45d6a902 | 1830 | { |
fd91d419 L |
1831 | eif->failed = TRUE; |
1832 | return FALSE; | |
45d6a902 AM |
1833 | } |
1834 | } | |
1835 | ||
1836 | return TRUE; | |
1837 | } | |
1838 | \f | |
1839 | /* Look through the symbols which are defined in other shared | |
1840 | libraries and referenced here. Update the list of version | |
1841 | dependencies. This will be put into the .gnu.version_r section. | |
1842 | This function is called via elf_link_hash_traverse. */ | |
1843 | ||
28caa186 | 1844 | static bfd_boolean |
268b6b39 AM |
1845 | _bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h, |
1846 | void *data) | |
45d6a902 | 1847 | { |
a50b1753 | 1848 | struct elf_find_verdep_info *rinfo = (struct elf_find_verdep_info *) data; |
45d6a902 AM |
1849 | Elf_Internal_Verneed *t; |
1850 | Elf_Internal_Vernaux *a; | |
1851 | bfd_size_type amt; | |
1852 | ||
45d6a902 AM |
1853 | /* We only care about symbols defined in shared objects with version |
1854 | information. */ | |
f5385ebf AM |
1855 | if (!h->def_dynamic |
1856 | || h->def_regular | |
45d6a902 AM |
1857 | || h->dynindx == -1 |
1858 | || h->verinfo.verdef == NULL) | |
1859 | return TRUE; | |
1860 | ||
1861 | /* See if we already know about this version. */ | |
28caa186 AM |
1862 | for (t = elf_tdata (rinfo->info->output_bfd)->verref; |
1863 | t != NULL; | |
1864 | t = t->vn_nextref) | |
45d6a902 AM |
1865 | { |
1866 | if (t->vn_bfd != h->verinfo.verdef->vd_bfd) | |
1867 | continue; | |
1868 | ||
1869 | for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr) | |
1870 | if (a->vna_nodename == h->verinfo.verdef->vd_nodename) | |
1871 | return TRUE; | |
1872 | ||
1873 | break; | |
1874 | } | |
1875 | ||
1876 | /* This is a new version. Add it to tree we are building. */ | |
1877 | ||
1878 | if (t == NULL) | |
1879 | { | |
1880 | amt = sizeof *t; | |
a50b1753 | 1881 | t = (Elf_Internal_Verneed *) bfd_zalloc (rinfo->info->output_bfd, amt); |
45d6a902 AM |
1882 | if (t == NULL) |
1883 | { | |
1884 | rinfo->failed = TRUE; | |
1885 | return FALSE; | |
1886 | } | |
1887 | ||
1888 | t->vn_bfd = h->verinfo.verdef->vd_bfd; | |
28caa186 AM |
1889 | t->vn_nextref = elf_tdata (rinfo->info->output_bfd)->verref; |
1890 | elf_tdata (rinfo->info->output_bfd)->verref = t; | |
45d6a902 AM |
1891 | } |
1892 | ||
1893 | amt = sizeof *a; | |
a50b1753 | 1894 | a = (Elf_Internal_Vernaux *) bfd_zalloc (rinfo->info->output_bfd, amt); |
14b1c01e AM |
1895 | if (a == NULL) |
1896 | { | |
1897 | rinfo->failed = TRUE; | |
1898 | return FALSE; | |
1899 | } | |
45d6a902 AM |
1900 | |
1901 | /* Note that we are copying a string pointer here, and testing it | |
1902 | above. If bfd_elf_string_from_elf_section is ever changed to | |
1903 | discard the string data when low in memory, this will have to be | |
1904 | fixed. */ | |
1905 | a->vna_nodename = h->verinfo.verdef->vd_nodename; | |
1906 | ||
1907 | a->vna_flags = h->verinfo.verdef->vd_flags; | |
1908 | a->vna_nextptr = t->vn_auxptr; | |
1909 | ||
1910 | h->verinfo.verdef->vd_exp_refno = rinfo->vers; | |
1911 | ++rinfo->vers; | |
1912 | ||
1913 | a->vna_other = h->verinfo.verdef->vd_exp_refno + 1; | |
1914 | ||
1915 | t->vn_auxptr = a; | |
1916 | ||
1917 | return TRUE; | |
1918 | } | |
1919 | ||
1920 | /* Figure out appropriate versions for all the symbols. We may not | |
1921 | have the version number script until we have read all of the input | |
1922 | files, so until that point we don't know which symbols should be | |
1923 | local. This function is called via elf_link_hash_traverse. */ | |
1924 | ||
28caa186 | 1925 | static bfd_boolean |
268b6b39 | 1926 | _bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data) |
45d6a902 | 1927 | { |
28caa186 | 1928 | struct elf_info_failed *sinfo; |
45d6a902 | 1929 | struct bfd_link_info *info; |
9c5bfbb7 | 1930 | const struct elf_backend_data *bed; |
45d6a902 AM |
1931 | struct elf_info_failed eif; |
1932 | char *p; | |
1933 | bfd_size_type amt; | |
1934 | ||
a50b1753 | 1935 | sinfo = (struct elf_info_failed *) data; |
45d6a902 AM |
1936 | info = sinfo->info; |
1937 | ||
45d6a902 AM |
1938 | /* Fix the symbol flags. */ |
1939 | eif.failed = FALSE; | |
1940 | eif.info = info; | |
1941 | if (! _bfd_elf_fix_symbol_flags (h, &eif)) | |
1942 | { | |
1943 | if (eif.failed) | |
1944 | sinfo->failed = TRUE; | |
1945 | return FALSE; | |
1946 | } | |
1947 | ||
1948 | /* We only need version numbers for symbols defined in regular | |
1949 | objects. */ | |
f5385ebf | 1950 | if (!h->def_regular) |
45d6a902 AM |
1951 | return TRUE; |
1952 | ||
28caa186 | 1953 | bed = get_elf_backend_data (info->output_bfd); |
45d6a902 AM |
1954 | p = strchr (h->root.root.string, ELF_VER_CHR); |
1955 | if (p != NULL && h->verinfo.vertree == NULL) | |
1956 | { | |
1957 | struct bfd_elf_version_tree *t; | |
1958 | bfd_boolean hidden; | |
1959 | ||
1960 | hidden = TRUE; | |
1961 | ||
1962 | /* There are two consecutive ELF_VER_CHR characters if this is | |
1963 | not a hidden symbol. */ | |
1964 | ++p; | |
1965 | if (*p == ELF_VER_CHR) | |
1966 | { | |
1967 | hidden = FALSE; | |
1968 | ++p; | |
1969 | } | |
1970 | ||
1971 | /* If there is no version string, we can just return out. */ | |
1972 | if (*p == '\0') | |
1973 | { | |
1974 | if (hidden) | |
f5385ebf | 1975 | h->hidden = 1; |
45d6a902 AM |
1976 | return TRUE; |
1977 | } | |
1978 | ||
1979 | /* Look for the version. If we find it, it is no longer weak. */ | |
fd91d419 | 1980 | for (t = sinfo->info->version_info; t != NULL; t = t->next) |
45d6a902 AM |
1981 | { |
1982 | if (strcmp (t->name, p) == 0) | |
1983 | { | |
1984 | size_t len; | |
1985 | char *alc; | |
1986 | struct bfd_elf_version_expr *d; | |
1987 | ||
1988 | len = p - h->root.root.string; | |
a50b1753 | 1989 | alc = (char *) bfd_malloc (len); |
45d6a902 | 1990 | if (alc == NULL) |
14b1c01e AM |
1991 | { |
1992 | sinfo->failed = TRUE; | |
1993 | return FALSE; | |
1994 | } | |
45d6a902 AM |
1995 | memcpy (alc, h->root.root.string, len - 1); |
1996 | alc[len - 1] = '\0'; | |
1997 | if (alc[len - 2] == ELF_VER_CHR) | |
1998 | alc[len - 2] = '\0'; | |
1999 | ||
2000 | h->verinfo.vertree = t; | |
2001 | t->used = TRUE; | |
2002 | d = NULL; | |
2003 | ||
108ba305 JJ |
2004 | if (t->globals.list != NULL) |
2005 | d = (*t->match) (&t->globals, NULL, alc); | |
45d6a902 AM |
2006 | |
2007 | /* See if there is anything to force this symbol to | |
2008 | local scope. */ | |
108ba305 | 2009 | if (d == NULL && t->locals.list != NULL) |
45d6a902 | 2010 | { |
108ba305 JJ |
2011 | d = (*t->match) (&t->locals, NULL, alc); |
2012 | if (d != NULL | |
2013 | && h->dynindx != -1 | |
108ba305 JJ |
2014 | && ! info->export_dynamic) |
2015 | (*bed->elf_backend_hide_symbol) (info, h, TRUE); | |
45d6a902 AM |
2016 | } |
2017 | ||
2018 | free (alc); | |
2019 | break; | |
2020 | } | |
2021 | } | |
2022 | ||
2023 | /* If we are building an application, we need to create a | |
2024 | version node for this version. */ | |
36af4a4e | 2025 | if (t == NULL && info->executable) |
45d6a902 AM |
2026 | { |
2027 | struct bfd_elf_version_tree **pp; | |
2028 | int version_index; | |
2029 | ||
2030 | /* If we aren't going to export this symbol, we don't need | |
2031 | to worry about it. */ | |
2032 | if (h->dynindx == -1) | |
2033 | return TRUE; | |
2034 | ||
2035 | amt = sizeof *t; | |
a50b1753 | 2036 | t = (struct bfd_elf_version_tree *) bfd_zalloc (info->output_bfd, amt); |
45d6a902 AM |
2037 | if (t == NULL) |
2038 | { | |
2039 | sinfo->failed = TRUE; | |
2040 | return FALSE; | |
2041 | } | |
2042 | ||
45d6a902 | 2043 | t->name = p; |
45d6a902 AM |
2044 | t->name_indx = (unsigned int) -1; |
2045 | t->used = TRUE; | |
2046 | ||
2047 | version_index = 1; | |
2048 | /* Don't count anonymous version tag. */ | |
fd91d419 L |
2049 | if (sinfo->info->version_info != NULL |
2050 | && sinfo->info->version_info->vernum == 0) | |
45d6a902 | 2051 | version_index = 0; |
fd91d419 L |
2052 | for (pp = &sinfo->info->version_info; |
2053 | *pp != NULL; | |
2054 | pp = &(*pp)->next) | |
45d6a902 AM |
2055 | ++version_index; |
2056 | t->vernum = version_index; | |
2057 | ||
2058 | *pp = t; | |
2059 | ||
2060 | h->verinfo.vertree = t; | |
2061 | } | |
2062 | else if (t == NULL) | |
2063 | { | |
2064 | /* We could not find the version for a symbol when | |
2065 | generating a shared archive. Return an error. */ | |
2066 | (*_bfd_error_handler) | |
c55fe096 | 2067 | (_("%B: version node not found for symbol %s"), |
28caa186 | 2068 | info->output_bfd, h->root.root.string); |
45d6a902 AM |
2069 | bfd_set_error (bfd_error_bad_value); |
2070 | sinfo->failed = TRUE; | |
2071 | return FALSE; | |
2072 | } | |
2073 | ||
2074 | if (hidden) | |
f5385ebf | 2075 | h->hidden = 1; |
45d6a902 AM |
2076 | } |
2077 | ||
2078 | /* If we don't have a version for this symbol, see if we can find | |
2079 | something. */ | |
fd91d419 | 2080 | if (h->verinfo.vertree == NULL && sinfo->info->version_info != NULL) |
45d6a902 | 2081 | { |
1e8fa21e | 2082 | bfd_boolean hide; |
ae5a3597 | 2083 | |
fd91d419 L |
2084 | h->verinfo.vertree |
2085 | = bfd_find_version_for_sym (sinfo->info->version_info, | |
2086 | h->root.root.string, &hide); | |
1e8fa21e AM |
2087 | if (h->verinfo.vertree != NULL && hide) |
2088 | (*bed->elf_backend_hide_symbol) (info, h, TRUE); | |
45d6a902 AM |
2089 | } |
2090 | ||
2091 | return TRUE; | |
2092 | } | |
2093 | \f | |
45d6a902 AM |
2094 | /* Read and swap the relocs from the section indicated by SHDR. This |
2095 | may be either a REL or a RELA section. The relocations are | |
2096 | translated into RELA relocations and stored in INTERNAL_RELOCS, | |
2097 | which should have already been allocated to contain enough space. | |
2098 | The EXTERNAL_RELOCS are a buffer where the external form of the | |
2099 | relocations should be stored. | |
2100 | ||
2101 | Returns FALSE if something goes wrong. */ | |
2102 | ||
2103 | static bfd_boolean | |
268b6b39 | 2104 | elf_link_read_relocs_from_section (bfd *abfd, |
243ef1e0 | 2105 | asection *sec, |
268b6b39 AM |
2106 | Elf_Internal_Shdr *shdr, |
2107 | void *external_relocs, | |
2108 | Elf_Internal_Rela *internal_relocs) | |
45d6a902 | 2109 | { |
9c5bfbb7 | 2110 | const struct elf_backend_data *bed; |
268b6b39 | 2111 | void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *); |
45d6a902 AM |
2112 | const bfd_byte *erela; |
2113 | const bfd_byte *erelaend; | |
2114 | Elf_Internal_Rela *irela; | |
243ef1e0 L |
2115 | Elf_Internal_Shdr *symtab_hdr; |
2116 | size_t nsyms; | |
45d6a902 | 2117 | |
45d6a902 AM |
2118 | /* Position ourselves at the start of the section. */ |
2119 | if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0) | |
2120 | return FALSE; | |
2121 | ||
2122 | /* Read the relocations. */ | |
2123 | if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size) | |
2124 | return FALSE; | |
2125 | ||
243ef1e0 | 2126 | symtab_hdr = &elf_tdata (abfd)->symtab_hdr; |
ce98a316 | 2127 | nsyms = NUM_SHDR_ENTRIES (symtab_hdr); |
243ef1e0 | 2128 | |
45d6a902 AM |
2129 | bed = get_elf_backend_data (abfd); |
2130 | ||
2131 | /* Convert the external relocations to the internal format. */ | |
2132 | if (shdr->sh_entsize == bed->s->sizeof_rel) | |
2133 | swap_in = bed->s->swap_reloc_in; | |
2134 | else if (shdr->sh_entsize == bed->s->sizeof_rela) | |
2135 | swap_in = bed->s->swap_reloca_in; | |
2136 | else | |
2137 | { | |
2138 | bfd_set_error (bfd_error_wrong_format); | |
2139 | return FALSE; | |
2140 | } | |
2141 | ||
a50b1753 | 2142 | erela = (const bfd_byte *) external_relocs; |
51992aec | 2143 | erelaend = erela + shdr->sh_size; |
45d6a902 AM |
2144 | irela = internal_relocs; |
2145 | while (erela < erelaend) | |
2146 | { | |
243ef1e0 L |
2147 | bfd_vma r_symndx; |
2148 | ||
45d6a902 | 2149 | (*swap_in) (abfd, erela, irela); |
243ef1e0 L |
2150 | r_symndx = ELF32_R_SYM (irela->r_info); |
2151 | if (bed->s->arch_size == 64) | |
2152 | r_symndx >>= 24; | |
ce98a316 NC |
2153 | if (nsyms > 0) |
2154 | { | |
2155 | if ((size_t) r_symndx >= nsyms) | |
2156 | { | |
2157 | (*_bfd_error_handler) | |
2158 | (_("%B: bad reloc symbol index (0x%lx >= 0x%lx)" | |
2159 | " for offset 0x%lx in section `%A'"), | |
2160 | abfd, sec, | |
2161 | (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset); | |
2162 | bfd_set_error (bfd_error_bad_value); | |
2163 | return FALSE; | |
2164 | } | |
2165 | } | |
cf35638d | 2166 | else if (r_symndx != STN_UNDEF) |
243ef1e0 L |
2167 | { |
2168 | (*_bfd_error_handler) | |
ce98a316 NC |
2169 | (_("%B: non-zero symbol index (0x%lx) for offset 0x%lx in section `%A'" |
2170 | " when the object file has no symbol table"), | |
d003868e AM |
2171 | abfd, sec, |
2172 | (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset); | |
243ef1e0 L |
2173 | bfd_set_error (bfd_error_bad_value); |
2174 | return FALSE; | |
2175 | } | |
45d6a902 AM |
2176 | irela += bed->s->int_rels_per_ext_rel; |
2177 | erela += shdr->sh_entsize; | |
2178 | } | |
2179 | ||
2180 | return TRUE; | |
2181 | } | |
2182 | ||
2183 | /* Read and swap the relocs for a section O. They may have been | |
2184 | cached. If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are | |
2185 | not NULL, they are used as buffers to read into. They are known to | |
2186 | be large enough. If the INTERNAL_RELOCS relocs argument is NULL, | |
2187 | the return value is allocated using either malloc or bfd_alloc, | |
2188 | according to the KEEP_MEMORY argument. If O has two relocation | |
2189 | sections (both REL and RELA relocations), then the REL_HDR | |
2190 | relocations will appear first in INTERNAL_RELOCS, followed by the | |
d4730f92 | 2191 | RELA_HDR relocations. */ |
45d6a902 AM |
2192 | |
2193 | Elf_Internal_Rela * | |
268b6b39 AM |
2194 | _bfd_elf_link_read_relocs (bfd *abfd, |
2195 | asection *o, | |
2196 | void *external_relocs, | |
2197 | Elf_Internal_Rela *internal_relocs, | |
2198 | bfd_boolean keep_memory) | |
45d6a902 | 2199 | { |
268b6b39 | 2200 | void *alloc1 = NULL; |
45d6a902 | 2201 | Elf_Internal_Rela *alloc2 = NULL; |
9c5bfbb7 | 2202 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); |
d4730f92 BS |
2203 | struct bfd_elf_section_data *esdo = elf_section_data (o); |
2204 | Elf_Internal_Rela *internal_rela_relocs; | |
45d6a902 | 2205 | |
d4730f92 BS |
2206 | if (esdo->relocs != NULL) |
2207 | return esdo->relocs; | |
45d6a902 AM |
2208 | |
2209 | if (o->reloc_count == 0) | |
2210 | return NULL; | |
2211 | ||
45d6a902 AM |
2212 | if (internal_relocs == NULL) |
2213 | { | |
2214 | bfd_size_type size; | |
2215 | ||
2216 | size = o->reloc_count; | |
2217 | size *= bed->s->int_rels_per_ext_rel * sizeof (Elf_Internal_Rela); | |
2218 | if (keep_memory) | |
a50b1753 | 2219 | internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_alloc (abfd, size); |
45d6a902 | 2220 | else |
a50b1753 | 2221 | internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_malloc (size); |
45d6a902 AM |
2222 | if (internal_relocs == NULL) |
2223 | goto error_return; | |
2224 | } | |
2225 | ||
2226 | if (external_relocs == NULL) | |
2227 | { | |
d4730f92 BS |
2228 | bfd_size_type size = 0; |
2229 | ||
2230 | if (esdo->rel.hdr) | |
2231 | size += esdo->rel.hdr->sh_size; | |
2232 | if (esdo->rela.hdr) | |
2233 | size += esdo->rela.hdr->sh_size; | |
45d6a902 | 2234 | |
268b6b39 | 2235 | alloc1 = bfd_malloc (size); |
45d6a902 AM |
2236 | if (alloc1 == NULL) |
2237 | goto error_return; | |
2238 | external_relocs = alloc1; | |
2239 | } | |
2240 | ||
d4730f92 BS |
2241 | internal_rela_relocs = internal_relocs; |
2242 | if (esdo->rel.hdr) | |
2243 | { | |
2244 | if (!elf_link_read_relocs_from_section (abfd, o, esdo->rel.hdr, | |
2245 | external_relocs, | |
2246 | internal_relocs)) | |
2247 | goto error_return; | |
2248 | external_relocs = (((bfd_byte *) external_relocs) | |
2249 | + esdo->rel.hdr->sh_size); | |
2250 | internal_rela_relocs += (NUM_SHDR_ENTRIES (esdo->rel.hdr) | |
2251 | * bed->s->int_rels_per_ext_rel); | |
2252 | } | |
2253 | ||
2254 | if (esdo->rela.hdr | |
2255 | && (!elf_link_read_relocs_from_section (abfd, o, esdo->rela.hdr, | |
2256 | external_relocs, | |
2257 | internal_rela_relocs))) | |
45d6a902 AM |
2258 | goto error_return; |
2259 | ||
2260 | /* Cache the results for next time, if we can. */ | |
2261 | if (keep_memory) | |
d4730f92 | 2262 | esdo->relocs = internal_relocs; |
45d6a902 AM |
2263 | |
2264 | if (alloc1 != NULL) | |
2265 | free (alloc1); | |
2266 | ||
2267 | /* Don't free alloc2, since if it was allocated we are passing it | |
2268 | back (under the name of internal_relocs). */ | |
2269 | ||
2270 | return internal_relocs; | |
2271 | ||
2272 | error_return: | |
2273 | if (alloc1 != NULL) | |
2274 | free (alloc1); | |
2275 | if (alloc2 != NULL) | |
4dd07732 AM |
2276 | { |
2277 | if (keep_memory) | |
2278 | bfd_release (abfd, alloc2); | |
2279 | else | |
2280 | free (alloc2); | |
2281 | } | |
45d6a902 AM |
2282 | return NULL; |
2283 | } | |
2284 | ||
2285 | /* Compute the size of, and allocate space for, REL_HDR which is the | |
2286 | section header for a section containing relocations for O. */ | |
2287 | ||
28caa186 | 2288 | static bfd_boolean |
268b6b39 | 2289 | _bfd_elf_link_size_reloc_section (bfd *abfd, |
d4730f92 | 2290 | struct bfd_elf_section_reloc_data *reldata) |
45d6a902 | 2291 | { |
d4730f92 | 2292 | Elf_Internal_Shdr *rel_hdr = reldata->hdr; |
45d6a902 AM |
2293 | |
2294 | /* That allows us to calculate the size of the section. */ | |
d4730f92 | 2295 | rel_hdr->sh_size = rel_hdr->sh_entsize * reldata->count; |
45d6a902 AM |
2296 | |
2297 | /* The contents field must last into write_object_contents, so we | |
2298 | allocate it with bfd_alloc rather than malloc. Also since we | |
2299 | cannot be sure that the contents will actually be filled in, | |
2300 | we zero the allocated space. */ | |
a50b1753 | 2301 | rel_hdr->contents = (unsigned char *) bfd_zalloc (abfd, rel_hdr->sh_size); |
45d6a902 AM |
2302 | if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0) |
2303 | return FALSE; | |
2304 | ||
d4730f92 | 2305 | if (reldata->hashes == NULL && reldata->count) |
45d6a902 AM |
2306 | { |
2307 | struct elf_link_hash_entry **p; | |
2308 | ||
a50b1753 | 2309 | p = (struct elf_link_hash_entry **) |
d4730f92 | 2310 | bfd_zmalloc (reldata->count * sizeof (struct elf_link_hash_entry *)); |
45d6a902 AM |
2311 | if (p == NULL) |
2312 | return FALSE; | |
2313 | ||
d4730f92 | 2314 | reldata->hashes = p; |
45d6a902 AM |
2315 | } |
2316 | ||
2317 | return TRUE; | |
2318 | } | |
2319 | ||
2320 | /* Copy the relocations indicated by the INTERNAL_RELOCS (which | |
2321 | originated from the section given by INPUT_REL_HDR) to the | |
2322 | OUTPUT_BFD. */ | |
2323 | ||
2324 | bfd_boolean | |
268b6b39 AM |
2325 | _bfd_elf_link_output_relocs (bfd *output_bfd, |
2326 | asection *input_section, | |
2327 | Elf_Internal_Shdr *input_rel_hdr, | |
eac338cf PB |
2328 | Elf_Internal_Rela *internal_relocs, |
2329 | struct elf_link_hash_entry **rel_hash | |
2330 | ATTRIBUTE_UNUSED) | |
45d6a902 AM |
2331 | { |
2332 | Elf_Internal_Rela *irela; | |
2333 | Elf_Internal_Rela *irelaend; | |
2334 | bfd_byte *erel; | |
d4730f92 | 2335 | struct bfd_elf_section_reloc_data *output_reldata; |
45d6a902 | 2336 | asection *output_section; |
9c5bfbb7 | 2337 | const struct elf_backend_data *bed; |
268b6b39 | 2338 | void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *); |
d4730f92 | 2339 | struct bfd_elf_section_data *esdo; |
45d6a902 AM |
2340 | |
2341 | output_section = input_section->output_section; | |
45d6a902 | 2342 | |
d4730f92 BS |
2343 | bed = get_elf_backend_data (output_bfd); |
2344 | esdo = elf_section_data (output_section); | |
2345 | if (esdo->rel.hdr && esdo->rel.hdr->sh_entsize == input_rel_hdr->sh_entsize) | |
45d6a902 | 2346 | { |
d4730f92 BS |
2347 | output_reldata = &esdo->rel; |
2348 | swap_out = bed->s->swap_reloc_out; | |
45d6a902 | 2349 | } |
d4730f92 BS |
2350 | else if (esdo->rela.hdr |
2351 | && esdo->rela.hdr->sh_entsize == input_rel_hdr->sh_entsize) | |
45d6a902 | 2352 | { |
d4730f92 BS |
2353 | output_reldata = &esdo->rela; |
2354 | swap_out = bed->s->swap_reloca_out; | |
45d6a902 AM |
2355 | } |
2356 | else | |
2357 | { | |
2358 | (*_bfd_error_handler) | |
d003868e AM |
2359 | (_("%B: relocation size mismatch in %B section %A"), |
2360 | output_bfd, input_section->owner, input_section); | |
297d8443 | 2361 | bfd_set_error (bfd_error_wrong_format); |
45d6a902 AM |
2362 | return FALSE; |
2363 | } | |
2364 | ||
d4730f92 BS |
2365 | erel = output_reldata->hdr->contents; |
2366 | erel += output_reldata->count * input_rel_hdr->sh_entsize; | |
45d6a902 AM |
2367 | irela = internal_relocs; |
2368 | irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr) | |
2369 | * bed->s->int_rels_per_ext_rel); | |
2370 | while (irela < irelaend) | |
2371 | { | |
2372 | (*swap_out) (output_bfd, irela, erel); | |
2373 | irela += bed->s->int_rels_per_ext_rel; | |
2374 | erel += input_rel_hdr->sh_entsize; | |
2375 | } | |
2376 | ||
2377 | /* Bump the counter, so that we know where to add the next set of | |
2378 | relocations. */ | |
d4730f92 | 2379 | output_reldata->count += NUM_SHDR_ENTRIES (input_rel_hdr); |
45d6a902 AM |
2380 | |
2381 | return TRUE; | |
2382 | } | |
2383 | \f | |
508c3946 L |
2384 | /* Make weak undefined symbols in PIE dynamic. */ |
2385 | ||
2386 | bfd_boolean | |
2387 | _bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info, | |
2388 | struct elf_link_hash_entry *h) | |
2389 | { | |
2390 | if (info->pie | |
2391 | && h->dynindx == -1 | |
2392 | && h->root.type == bfd_link_hash_undefweak) | |
2393 | return bfd_elf_link_record_dynamic_symbol (info, h); | |
2394 | ||
2395 | return TRUE; | |
2396 | } | |
2397 | ||
45d6a902 AM |
2398 | /* Fix up the flags for a symbol. This handles various cases which |
2399 | can only be fixed after all the input files are seen. This is | |
2400 | currently called by both adjust_dynamic_symbol and | |
2401 | assign_sym_version, which is unnecessary but perhaps more robust in | |
2402 | the face of future changes. */ | |
2403 | ||
28caa186 | 2404 | static bfd_boolean |
268b6b39 AM |
2405 | _bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h, |
2406 | struct elf_info_failed *eif) | |
45d6a902 | 2407 | { |
33774f08 | 2408 | const struct elf_backend_data *bed; |
508c3946 | 2409 | |
45d6a902 AM |
2410 | /* If this symbol was mentioned in a non-ELF file, try to set |
2411 | DEF_REGULAR and REF_REGULAR correctly. This is the only way to | |
2412 | permit a non-ELF file to correctly refer to a symbol defined in | |
2413 | an ELF dynamic object. */ | |
f5385ebf | 2414 | if (h->non_elf) |
45d6a902 AM |
2415 | { |
2416 | while (h->root.type == bfd_link_hash_indirect) | |
2417 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
2418 | ||
2419 | if (h->root.type != bfd_link_hash_defined | |
2420 | && h->root.type != bfd_link_hash_defweak) | |
f5385ebf AM |
2421 | { |
2422 | h->ref_regular = 1; | |
2423 | h->ref_regular_nonweak = 1; | |
2424 | } | |
45d6a902 AM |
2425 | else |
2426 | { | |
2427 | if (h->root.u.def.section->owner != NULL | |
2428 | && (bfd_get_flavour (h->root.u.def.section->owner) | |
2429 | == bfd_target_elf_flavour)) | |
f5385ebf AM |
2430 | { |
2431 | h->ref_regular = 1; | |
2432 | h->ref_regular_nonweak = 1; | |
2433 | } | |
45d6a902 | 2434 | else |
f5385ebf | 2435 | h->def_regular = 1; |
45d6a902 AM |
2436 | } |
2437 | ||
2438 | if (h->dynindx == -1 | |
f5385ebf AM |
2439 | && (h->def_dynamic |
2440 | || h->ref_dynamic)) | |
45d6a902 | 2441 | { |
c152c796 | 2442 | if (! bfd_elf_link_record_dynamic_symbol (eif->info, h)) |
45d6a902 AM |
2443 | { |
2444 | eif->failed = TRUE; | |
2445 | return FALSE; | |
2446 | } | |
2447 | } | |
2448 | } | |
2449 | else | |
2450 | { | |
f5385ebf | 2451 | /* Unfortunately, NON_ELF is only correct if the symbol |
45d6a902 AM |
2452 | was first seen in a non-ELF file. Fortunately, if the symbol |
2453 | was first seen in an ELF file, we're probably OK unless the | |
2454 | symbol was defined in a non-ELF file. Catch that case here. | |
2455 | FIXME: We're still in trouble if the symbol was first seen in | |
2456 | a dynamic object, and then later in a non-ELF regular object. */ | |
2457 | if ((h->root.type == bfd_link_hash_defined | |
2458 | || h->root.type == bfd_link_hash_defweak) | |
f5385ebf | 2459 | && !h->def_regular |
45d6a902 AM |
2460 | && (h->root.u.def.section->owner != NULL |
2461 | ? (bfd_get_flavour (h->root.u.def.section->owner) | |
2462 | != bfd_target_elf_flavour) | |
2463 | : (bfd_is_abs_section (h->root.u.def.section) | |
f5385ebf AM |
2464 | && !h->def_dynamic))) |
2465 | h->def_regular = 1; | |
45d6a902 AM |
2466 | } |
2467 | ||
508c3946 | 2468 | /* Backend specific symbol fixup. */ |
33774f08 AM |
2469 | bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj); |
2470 | if (bed->elf_backend_fixup_symbol | |
2471 | && !(*bed->elf_backend_fixup_symbol) (eif->info, h)) | |
2472 | return FALSE; | |
508c3946 | 2473 | |
45d6a902 AM |
2474 | /* If this is a final link, and the symbol was defined as a common |
2475 | symbol in a regular object file, and there was no definition in | |
2476 | any dynamic object, then the linker will have allocated space for | |
f5385ebf | 2477 | the symbol in a common section but the DEF_REGULAR |
45d6a902 AM |
2478 | flag will not have been set. */ |
2479 | if (h->root.type == bfd_link_hash_defined | |
f5385ebf AM |
2480 | && !h->def_regular |
2481 | && h->ref_regular | |
2482 | && !h->def_dynamic | |
96f29d96 | 2483 | && (h->root.u.def.section->owner->flags & (DYNAMIC | BFD_PLUGIN)) == 0) |
f5385ebf | 2484 | h->def_regular = 1; |
45d6a902 AM |
2485 | |
2486 | /* If -Bsymbolic was used (which means to bind references to global | |
2487 | symbols to the definition within the shared object), and this | |
2488 | symbol was defined in a regular object, then it actually doesn't | |
9c7a29a3 AM |
2489 | need a PLT entry. Likewise, if the symbol has non-default |
2490 | visibility. If the symbol has hidden or internal visibility, we | |
c1be741f | 2491 | will force it local. */ |
f5385ebf | 2492 | if (h->needs_plt |
45d6a902 | 2493 | && eif->info->shared |
0eddce27 | 2494 | && is_elf_hash_table (eif->info->hash) |
55255dae | 2495 | && (SYMBOLIC_BIND (eif->info, h) |
c1be741f | 2496 | || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT) |
f5385ebf | 2497 | && h->def_regular) |
45d6a902 | 2498 | { |
45d6a902 AM |
2499 | bfd_boolean force_local; |
2500 | ||
45d6a902 AM |
2501 | force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL |
2502 | || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN); | |
2503 | (*bed->elf_backend_hide_symbol) (eif->info, h, force_local); | |
2504 | } | |
2505 | ||
2506 | /* If a weak undefined symbol has non-default visibility, we also | |
2507 | hide it from the dynamic linker. */ | |
9c7a29a3 | 2508 | if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT |
45d6a902 | 2509 | && h->root.type == bfd_link_hash_undefweak) |
33774f08 | 2510 | (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE); |
45d6a902 AM |
2511 | |
2512 | /* If this is a weak defined symbol in a dynamic object, and we know | |
2513 | the real definition in the dynamic object, copy interesting flags | |
2514 | over to the real definition. */ | |
f6e332e6 | 2515 | if (h->u.weakdef != NULL) |
45d6a902 | 2516 | { |
45d6a902 AM |
2517 | /* If the real definition is defined by a regular object file, |
2518 | don't do anything special. See the longer description in | |
2519 | _bfd_elf_adjust_dynamic_symbol, below. */ | |
4e6b54a6 | 2520 | if (h->u.weakdef->def_regular) |
f6e332e6 | 2521 | h->u.weakdef = NULL; |
45d6a902 | 2522 | else |
a26587ba | 2523 | { |
4e6b54a6 AM |
2524 | struct elf_link_hash_entry *weakdef = h->u.weakdef; |
2525 | ||
2526 | while (h->root.type == bfd_link_hash_indirect) | |
2527 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
2528 | ||
2529 | BFD_ASSERT (h->root.type == bfd_link_hash_defined | |
2530 | || h->root.type == bfd_link_hash_defweak); | |
2531 | BFD_ASSERT (weakdef->def_dynamic); | |
a26587ba RS |
2532 | BFD_ASSERT (weakdef->root.type == bfd_link_hash_defined |
2533 | || weakdef->root.type == bfd_link_hash_defweak); | |
2534 | (*bed->elf_backend_copy_indirect_symbol) (eif->info, weakdef, h); | |
2535 | } | |
45d6a902 AM |
2536 | } |
2537 | ||
2538 | return TRUE; | |
2539 | } | |
2540 | ||
2541 | /* Make the backend pick a good value for a dynamic symbol. This is | |
2542 | called via elf_link_hash_traverse, and also calls itself | |
2543 | recursively. */ | |
2544 | ||
28caa186 | 2545 | static bfd_boolean |
268b6b39 | 2546 | _bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data) |
45d6a902 | 2547 | { |
a50b1753 | 2548 | struct elf_info_failed *eif = (struct elf_info_failed *) data; |
45d6a902 | 2549 | bfd *dynobj; |
9c5bfbb7 | 2550 | const struct elf_backend_data *bed; |
45d6a902 | 2551 | |
0eddce27 | 2552 | if (! is_elf_hash_table (eif->info->hash)) |
45d6a902 AM |
2553 | return FALSE; |
2554 | ||
45d6a902 AM |
2555 | /* Ignore indirect symbols. These are added by the versioning code. */ |
2556 | if (h->root.type == bfd_link_hash_indirect) | |
2557 | return TRUE; | |
2558 | ||
2559 | /* Fix the symbol flags. */ | |
2560 | if (! _bfd_elf_fix_symbol_flags (h, eif)) | |
2561 | return FALSE; | |
2562 | ||
2563 | /* If this symbol does not require a PLT entry, and it is not | |
2564 | defined by a dynamic object, or is not referenced by a regular | |
2565 | object, ignore it. We do have to handle a weak defined symbol, | |
2566 | even if no regular object refers to it, if we decided to add it | |
2567 | to the dynamic symbol table. FIXME: Do we normally need to worry | |
2568 | about symbols which are defined by one dynamic object and | |
2569 | referenced by another one? */ | |
f5385ebf | 2570 | if (!h->needs_plt |
91e21fb7 | 2571 | && h->type != STT_GNU_IFUNC |
f5385ebf AM |
2572 | && (h->def_regular |
2573 | || !h->def_dynamic | |
2574 | || (!h->ref_regular | |
f6e332e6 | 2575 | && (h->u.weakdef == NULL || h->u.weakdef->dynindx == -1)))) |
45d6a902 | 2576 | { |
a6aa5195 | 2577 | h->plt = elf_hash_table (eif->info)->init_plt_offset; |
45d6a902 AM |
2578 | return TRUE; |
2579 | } | |
2580 | ||
2581 | /* If we've already adjusted this symbol, don't do it again. This | |
2582 | can happen via a recursive call. */ | |
f5385ebf | 2583 | if (h->dynamic_adjusted) |
45d6a902 AM |
2584 | return TRUE; |
2585 | ||
2586 | /* Don't look at this symbol again. Note that we must set this | |
2587 | after checking the above conditions, because we may look at a | |
2588 | symbol once, decide not to do anything, and then get called | |
2589 | recursively later after REF_REGULAR is set below. */ | |
f5385ebf | 2590 | h->dynamic_adjusted = 1; |
45d6a902 AM |
2591 | |
2592 | /* If this is a weak definition, and we know a real definition, and | |
2593 | the real symbol is not itself defined by a regular object file, | |
2594 | then get a good value for the real definition. We handle the | |
2595 | real symbol first, for the convenience of the backend routine. | |
2596 | ||
2597 | Note that there is a confusing case here. If the real definition | |
2598 | is defined by a regular object file, we don't get the real symbol | |
2599 | from the dynamic object, but we do get the weak symbol. If the | |
2600 | processor backend uses a COPY reloc, then if some routine in the | |
2601 | dynamic object changes the real symbol, we will not see that | |
2602 | change in the corresponding weak symbol. This is the way other | |
2603 | ELF linkers work as well, and seems to be a result of the shared | |
2604 | library model. | |
2605 | ||
2606 | I will clarify this issue. Most SVR4 shared libraries define the | |
2607 | variable _timezone and define timezone as a weak synonym. The | |
2608 | tzset call changes _timezone. If you write | |
2609 | extern int timezone; | |
2610 | int _timezone = 5; | |
2611 | int main () { tzset (); printf ("%d %d\n", timezone, _timezone); } | |
2612 | you might expect that, since timezone is a synonym for _timezone, | |
2613 | the same number will print both times. However, if the processor | |
2614 | backend uses a COPY reloc, then actually timezone will be copied | |
2615 | into your process image, and, since you define _timezone | |
2616 | yourself, _timezone will not. Thus timezone and _timezone will | |
2617 | wind up at different memory locations. The tzset call will set | |
2618 | _timezone, leaving timezone unchanged. */ | |
2619 | ||
f6e332e6 | 2620 | if (h->u.weakdef != NULL) |
45d6a902 | 2621 | { |
ec24dc88 AM |
2622 | /* If we get to this point, there is an implicit reference to |
2623 | H->U.WEAKDEF by a regular object file via the weak symbol H. */ | |
f6e332e6 | 2624 | h->u.weakdef->ref_regular = 1; |
45d6a902 | 2625 | |
ec24dc88 AM |
2626 | /* Ensure that the backend adjust_dynamic_symbol function sees |
2627 | H->U.WEAKDEF before H by recursively calling ourselves. */ | |
f6e332e6 | 2628 | if (! _bfd_elf_adjust_dynamic_symbol (h->u.weakdef, eif)) |
45d6a902 AM |
2629 | return FALSE; |
2630 | } | |
2631 | ||
2632 | /* If a symbol has no type and no size and does not require a PLT | |
2633 | entry, then we are probably about to do the wrong thing here: we | |
2634 | are probably going to create a COPY reloc for an empty object. | |
2635 | This case can arise when a shared object is built with assembly | |
2636 | code, and the assembly code fails to set the symbol type. */ | |
2637 | if (h->size == 0 | |
2638 | && h->type == STT_NOTYPE | |
f5385ebf | 2639 | && !h->needs_plt) |
45d6a902 AM |
2640 | (*_bfd_error_handler) |
2641 | (_("warning: type and size of dynamic symbol `%s' are not defined"), | |
2642 | h->root.root.string); | |
2643 | ||
2644 | dynobj = elf_hash_table (eif->info)->dynobj; | |
2645 | bed = get_elf_backend_data (dynobj); | |
e7c33416 | 2646 | |
45d6a902 AM |
2647 | if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h)) |
2648 | { | |
2649 | eif->failed = TRUE; | |
2650 | return FALSE; | |
2651 | } | |
2652 | ||
2653 | return TRUE; | |
2654 | } | |
2655 | ||
027297b7 L |
2656 | /* Adjust the dynamic symbol, H, for copy in the dynamic bss section, |
2657 | DYNBSS. */ | |
2658 | ||
2659 | bfd_boolean | |
2660 | _bfd_elf_adjust_dynamic_copy (struct elf_link_hash_entry *h, | |
2661 | asection *dynbss) | |
2662 | { | |
91ac5911 | 2663 | unsigned int power_of_two; |
027297b7 L |
2664 | bfd_vma mask; |
2665 | asection *sec = h->root.u.def.section; | |
2666 | ||
2667 | /* The section aligment of definition is the maximum alignment | |
91ac5911 L |
2668 | requirement of symbols defined in the section. Since we don't |
2669 | know the symbol alignment requirement, we start with the | |
2670 | maximum alignment and check low bits of the symbol address | |
2671 | for the minimum alignment. */ | |
2672 | power_of_two = bfd_get_section_alignment (sec->owner, sec); | |
2673 | mask = ((bfd_vma) 1 << power_of_two) - 1; | |
2674 | while ((h->root.u.def.value & mask) != 0) | |
2675 | { | |
2676 | mask >>= 1; | |
2677 | --power_of_two; | |
2678 | } | |
027297b7 | 2679 | |
91ac5911 L |
2680 | if (power_of_two > bfd_get_section_alignment (dynbss->owner, |
2681 | dynbss)) | |
027297b7 L |
2682 | { |
2683 | /* Adjust the section alignment if needed. */ | |
2684 | if (! bfd_set_section_alignment (dynbss->owner, dynbss, | |
91ac5911 | 2685 | power_of_two)) |
027297b7 L |
2686 | return FALSE; |
2687 | } | |
2688 | ||
91ac5911 | 2689 | /* We make sure that the symbol will be aligned properly. */ |
027297b7 L |
2690 | dynbss->size = BFD_ALIGN (dynbss->size, mask + 1); |
2691 | ||
2692 | /* Define the symbol as being at this point in DYNBSS. */ | |
2693 | h->root.u.def.section = dynbss; | |
2694 | h->root.u.def.value = dynbss->size; | |
2695 | ||
2696 | /* Increment the size of DYNBSS to make room for the symbol. */ | |
2697 | dynbss->size += h->size; | |
2698 | ||
2699 | return TRUE; | |
2700 | } | |
2701 | ||
45d6a902 AM |
2702 | /* Adjust all external symbols pointing into SEC_MERGE sections |
2703 | to reflect the object merging within the sections. */ | |
2704 | ||
28caa186 | 2705 | static bfd_boolean |
268b6b39 | 2706 | _bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data) |
45d6a902 AM |
2707 | { |
2708 | asection *sec; | |
2709 | ||
45d6a902 AM |
2710 | if ((h->root.type == bfd_link_hash_defined |
2711 | || h->root.type == bfd_link_hash_defweak) | |
2712 | && ((sec = h->root.u.def.section)->flags & SEC_MERGE) | |
dbaa2011 | 2713 | && sec->sec_info_type == SEC_INFO_TYPE_MERGE) |
45d6a902 | 2714 | { |
a50b1753 | 2715 | bfd *output_bfd = (bfd *) data; |
45d6a902 AM |
2716 | |
2717 | h->root.u.def.value = | |
2718 | _bfd_merged_section_offset (output_bfd, | |
2719 | &h->root.u.def.section, | |
2720 | elf_section_data (sec)->sec_info, | |
753731ee | 2721 | h->root.u.def.value); |
45d6a902 AM |
2722 | } |
2723 | ||
2724 | return TRUE; | |
2725 | } | |
986a241f RH |
2726 | |
2727 | /* Returns false if the symbol referred to by H should be considered | |
2728 | to resolve local to the current module, and true if it should be | |
2729 | considered to bind dynamically. */ | |
2730 | ||
2731 | bfd_boolean | |
268b6b39 AM |
2732 | _bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h, |
2733 | struct bfd_link_info *info, | |
89a2ee5a | 2734 | bfd_boolean not_local_protected) |
986a241f RH |
2735 | { |
2736 | bfd_boolean binding_stays_local_p; | |
fcb93ecf PB |
2737 | const struct elf_backend_data *bed; |
2738 | struct elf_link_hash_table *hash_table; | |
986a241f RH |
2739 | |
2740 | if (h == NULL) | |
2741 | return FALSE; | |
2742 | ||
2743 | while (h->root.type == bfd_link_hash_indirect | |
2744 | || h->root.type == bfd_link_hash_warning) | |
2745 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
2746 | ||
2747 | /* If it was forced local, then clearly it's not dynamic. */ | |
2748 | if (h->dynindx == -1) | |
2749 | return FALSE; | |
f5385ebf | 2750 | if (h->forced_local) |
986a241f RH |
2751 | return FALSE; |
2752 | ||
2753 | /* Identify the cases where name binding rules say that a | |
2754 | visible symbol resolves locally. */ | |
55255dae | 2755 | binding_stays_local_p = info->executable || SYMBOLIC_BIND (info, h); |
986a241f RH |
2756 | |
2757 | switch (ELF_ST_VISIBILITY (h->other)) | |
2758 | { | |
2759 | case STV_INTERNAL: | |
2760 | case STV_HIDDEN: | |
2761 | return FALSE; | |
2762 | ||
2763 | case STV_PROTECTED: | |
fcb93ecf PB |
2764 | hash_table = elf_hash_table (info); |
2765 | if (!is_elf_hash_table (hash_table)) | |
2766 | return FALSE; | |
2767 | ||
2768 | bed = get_elf_backend_data (hash_table->dynobj); | |
2769 | ||
986a241f RH |
2770 | /* Proper resolution for function pointer equality may require |
2771 | that these symbols perhaps be resolved dynamically, even though | |
2772 | we should be resolving them to the current module. */ | |
89a2ee5a | 2773 | if (!not_local_protected || !bed->is_function_type (h->type)) |
986a241f RH |
2774 | binding_stays_local_p = TRUE; |
2775 | break; | |
2776 | ||
2777 | default: | |
986a241f RH |
2778 | break; |
2779 | } | |
2780 | ||
aa37626c | 2781 | /* If it isn't defined locally, then clearly it's dynamic. */ |
89a2ee5a | 2782 | if (!h->def_regular && !ELF_COMMON_DEF_P (h)) |
aa37626c L |
2783 | return TRUE; |
2784 | ||
986a241f RH |
2785 | /* Otherwise, the symbol is dynamic if binding rules don't tell |
2786 | us that it remains local. */ | |
2787 | return !binding_stays_local_p; | |
2788 | } | |
f6c52c13 AM |
2789 | |
2790 | /* Return true if the symbol referred to by H should be considered | |
2791 | to resolve local to the current module, and false otherwise. Differs | |
2792 | from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of | |
2e76e85a | 2793 | undefined symbols. The two functions are virtually identical except |
89a2ee5a AM |
2794 | for the place where forced_local and dynindx == -1 are tested. If |
2795 | either of those tests are true, _bfd_elf_dynamic_symbol_p will say | |
2796 | the symbol is local, while _bfd_elf_symbol_refs_local_p will say | |
2797 | the symbol is local only for defined symbols. | |
2798 | It might seem that _bfd_elf_dynamic_symbol_p could be rewritten as | |
2799 | !_bfd_elf_symbol_refs_local_p, except that targets differ in their | |
2800 | treatment of undefined weak symbols. For those that do not make | |
2801 | undefined weak symbols dynamic, both functions may return false. */ | |
f6c52c13 AM |
2802 | |
2803 | bfd_boolean | |
268b6b39 AM |
2804 | _bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h, |
2805 | struct bfd_link_info *info, | |
2806 | bfd_boolean local_protected) | |
f6c52c13 | 2807 | { |
fcb93ecf PB |
2808 | const struct elf_backend_data *bed; |
2809 | struct elf_link_hash_table *hash_table; | |
2810 | ||
f6c52c13 AM |
2811 | /* If it's a local sym, of course we resolve locally. */ |
2812 | if (h == NULL) | |
2813 | return TRUE; | |
2814 | ||
d95edcac L |
2815 | /* STV_HIDDEN or STV_INTERNAL ones must be local. */ |
2816 | if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN | |
2817 | || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL) | |
2818 | return TRUE; | |
2819 | ||
7e2294f9 AO |
2820 | /* Common symbols that become definitions don't get the DEF_REGULAR |
2821 | flag set, so test it first, and don't bail out. */ | |
2822 | if (ELF_COMMON_DEF_P (h)) | |
2823 | /* Do nothing. */; | |
f6c52c13 | 2824 | /* If we don't have a definition in a regular file, then we can't |
49ff44d6 L |
2825 | resolve locally. The sym is either undefined or dynamic. */ |
2826 | else if (!h->def_regular) | |
f6c52c13 AM |
2827 | return FALSE; |
2828 | ||
2829 | /* Forced local symbols resolve locally. */ | |
f5385ebf | 2830 | if (h->forced_local) |
f6c52c13 AM |
2831 | return TRUE; |
2832 | ||
2833 | /* As do non-dynamic symbols. */ | |
2834 | if (h->dynindx == -1) | |
2835 | return TRUE; | |
2836 | ||
2837 | /* At this point, we know the symbol is defined and dynamic. In an | |
2838 | executable it must resolve locally, likewise when building symbolic | |
2839 | shared libraries. */ | |
55255dae | 2840 | if (info->executable || SYMBOLIC_BIND (info, h)) |
f6c52c13 AM |
2841 | return TRUE; |
2842 | ||
2843 | /* Now deal with defined dynamic symbols in shared libraries. Ones | |
2844 | with default visibility might not resolve locally. */ | |
2845 | if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT) | |
2846 | return FALSE; | |
2847 | ||
fcb93ecf PB |
2848 | hash_table = elf_hash_table (info); |
2849 | if (!is_elf_hash_table (hash_table)) | |
2850 | return TRUE; | |
2851 | ||
2852 | bed = get_elf_backend_data (hash_table->dynobj); | |
2853 | ||
1c16dfa5 | 2854 | /* STV_PROTECTED non-function symbols are local. */ |
fcb93ecf | 2855 | if (!bed->is_function_type (h->type)) |
1c16dfa5 L |
2856 | return TRUE; |
2857 | ||
f6c52c13 | 2858 | /* Function pointer equality tests may require that STV_PROTECTED |
2676a7d9 AM |
2859 | symbols be treated as dynamic symbols. If the address of a |
2860 | function not defined in an executable is set to that function's | |
2861 | plt entry in the executable, then the address of the function in | |
2862 | a shared library must also be the plt entry in the executable. */ | |
f6c52c13 AM |
2863 | return local_protected; |
2864 | } | |
e1918d23 AM |
2865 | |
2866 | /* Caches some TLS segment info, and ensures that the TLS segment vma is | |
2867 | aligned. Returns the first TLS output section. */ | |
2868 | ||
2869 | struct bfd_section * | |
2870 | _bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info) | |
2871 | { | |
2872 | struct bfd_section *sec, *tls; | |
2873 | unsigned int align = 0; | |
2874 | ||
2875 | for (sec = obfd->sections; sec != NULL; sec = sec->next) | |
2876 | if ((sec->flags & SEC_THREAD_LOCAL) != 0) | |
2877 | break; | |
2878 | tls = sec; | |
2879 | ||
2880 | for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next) | |
2881 | if (sec->alignment_power > align) | |
2882 | align = sec->alignment_power; | |
2883 | ||
2884 | elf_hash_table (info)->tls_sec = tls; | |
2885 | ||
2886 | /* Ensure the alignment of the first section is the largest alignment, | |
2887 | so that the tls segment starts aligned. */ | |
2888 | if (tls != NULL) | |
2889 | tls->alignment_power = align; | |
2890 | ||
2891 | return tls; | |
2892 | } | |
0ad989f9 L |
2893 | |
2894 | /* Return TRUE iff this is a non-common, definition of a non-function symbol. */ | |
2895 | static bfd_boolean | |
2896 | is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED, | |
2897 | Elf_Internal_Sym *sym) | |
2898 | { | |
a4d8e49b L |
2899 | const struct elf_backend_data *bed; |
2900 | ||
0ad989f9 L |
2901 | /* Local symbols do not count, but target specific ones might. */ |
2902 | if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL | |
2903 | && ELF_ST_BIND (sym->st_info) < STB_LOOS) | |
2904 | return FALSE; | |
2905 | ||
fcb93ecf | 2906 | bed = get_elf_backend_data (abfd); |
0ad989f9 | 2907 | /* Function symbols do not count. */ |
fcb93ecf | 2908 | if (bed->is_function_type (ELF_ST_TYPE (sym->st_info))) |
0ad989f9 L |
2909 | return FALSE; |
2910 | ||
2911 | /* If the section is undefined, then so is the symbol. */ | |
2912 | if (sym->st_shndx == SHN_UNDEF) | |
2913 | return FALSE; | |
2914 | ||
2915 | /* If the symbol is defined in the common section, then | |
2916 | it is a common definition and so does not count. */ | |
a4d8e49b | 2917 | if (bed->common_definition (sym)) |
0ad989f9 L |
2918 | return FALSE; |
2919 | ||
2920 | /* If the symbol is in a target specific section then we | |
2921 | must rely upon the backend to tell us what it is. */ | |
2922 | if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS) | |
2923 | /* FIXME - this function is not coded yet: | |
2924 | ||
2925 | return _bfd_is_global_symbol_definition (abfd, sym); | |
2926 | ||
2927 | Instead for now assume that the definition is not global, | |
2928 | Even if this is wrong, at least the linker will behave | |
2929 | in the same way that it used to do. */ | |
2930 | return FALSE; | |
2931 | ||
2932 | return TRUE; | |
2933 | } | |
2934 | ||
2935 | /* Search the symbol table of the archive element of the archive ABFD | |
2936 | whose archive map contains a mention of SYMDEF, and determine if | |
2937 | the symbol is defined in this element. */ | |
2938 | static bfd_boolean | |
2939 | elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef) | |
2940 | { | |
2941 | Elf_Internal_Shdr * hdr; | |
2942 | bfd_size_type symcount; | |
2943 | bfd_size_type extsymcount; | |
2944 | bfd_size_type extsymoff; | |
2945 | Elf_Internal_Sym *isymbuf; | |
2946 | Elf_Internal_Sym *isym; | |
2947 | Elf_Internal_Sym *isymend; | |
2948 | bfd_boolean result; | |
2949 | ||
2950 | abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset); | |
2951 | if (abfd == NULL) | |
2952 | return FALSE; | |
2953 | ||
2954 | if (! bfd_check_format (abfd, bfd_object)) | |
2955 | return FALSE; | |
2956 | ||
2957 | /* If we have already included the element containing this symbol in the | |
2958 | link then we do not need to include it again. Just claim that any symbol | |
2959 | it contains is not a definition, so that our caller will not decide to | |
2960 | (re)include this element. */ | |
2961 | if (abfd->archive_pass) | |
2962 | return FALSE; | |
2963 | ||
2964 | /* Select the appropriate symbol table. */ | |
2965 | if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0) | |
2966 | hdr = &elf_tdata (abfd)->symtab_hdr; | |
2967 | else | |
2968 | hdr = &elf_tdata (abfd)->dynsymtab_hdr; | |
2969 | ||
2970 | symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym; | |
2971 | ||
2972 | /* The sh_info field of the symtab header tells us where the | |
2973 | external symbols start. We don't care about the local symbols. */ | |
2974 | if (elf_bad_symtab (abfd)) | |
2975 | { | |
2976 | extsymcount = symcount; | |
2977 | extsymoff = 0; | |
2978 | } | |
2979 | else | |
2980 | { | |
2981 | extsymcount = symcount - hdr->sh_info; | |
2982 | extsymoff = hdr->sh_info; | |
2983 | } | |
2984 | ||
2985 | if (extsymcount == 0) | |
2986 | return FALSE; | |
2987 | ||
2988 | /* Read in the symbol table. */ | |
2989 | isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff, | |
2990 | NULL, NULL, NULL); | |
2991 | if (isymbuf == NULL) | |
2992 | return FALSE; | |
2993 | ||
2994 | /* Scan the symbol table looking for SYMDEF. */ | |
2995 | result = FALSE; | |
2996 | for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++) | |
2997 | { | |
2998 | const char *name; | |
2999 | ||
3000 | name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link, | |
3001 | isym->st_name); | |
3002 | if (name == NULL) | |
3003 | break; | |
3004 | ||
3005 | if (strcmp (name, symdef->name) == 0) | |
3006 | { | |
3007 | result = is_global_data_symbol_definition (abfd, isym); | |
3008 | break; | |
3009 | } | |
3010 | } | |
3011 | ||
3012 | free (isymbuf); | |
3013 | ||
3014 | return result; | |
3015 | } | |
3016 | \f | |
5a580b3a AM |
3017 | /* Add an entry to the .dynamic table. */ |
3018 | ||
3019 | bfd_boolean | |
3020 | _bfd_elf_add_dynamic_entry (struct bfd_link_info *info, | |
3021 | bfd_vma tag, | |
3022 | bfd_vma val) | |
3023 | { | |
3024 | struct elf_link_hash_table *hash_table; | |
3025 | const struct elf_backend_data *bed; | |
3026 | asection *s; | |
3027 | bfd_size_type newsize; | |
3028 | bfd_byte *newcontents; | |
3029 | Elf_Internal_Dyn dyn; | |
3030 | ||
3031 | hash_table = elf_hash_table (info); | |
3032 | if (! is_elf_hash_table (hash_table)) | |
3033 | return FALSE; | |
3034 | ||
3035 | bed = get_elf_backend_data (hash_table->dynobj); | |
3d4d4302 | 3036 | s = bfd_get_linker_section (hash_table->dynobj, ".dynamic"); |
5a580b3a AM |
3037 | BFD_ASSERT (s != NULL); |
3038 | ||
eea6121a | 3039 | newsize = s->size + bed->s->sizeof_dyn; |
a50b1753 | 3040 | newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize); |
5a580b3a AM |
3041 | if (newcontents == NULL) |
3042 | return FALSE; | |
3043 | ||
3044 | dyn.d_tag = tag; | |
3045 | dyn.d_un.d_val = val; | |
eea6121a | 3046 | bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size); |
5a580b3a | 3047 | |
eea6121a | 3048 | s->size = newsize; |
5a580b3a AM |
3049 | s->contents = newcontents; |
3050 | ||
3051 | return TRUE; | |
3052 | } | |
3053 | ||
3054 | /* Add a DT_NEEDED entry for this dynamic object if DO_IT is true, | |
3055 | otherwise just check whether one already exists. Returns -1 on error, | |
3056 | 1 if a DT_NEEDED tag already exists, and 0 on success. */ | |
3057 | ||
4ad4eba5 | 3058 | static int |
7e9f0867 AM |
3059 | elf_add_dt_needed_tag (bfd *abfd, |
3060 | struct bfd_link_info *info, | |
4ad4eba5 AM |
3061 | const char *soname, |
3062 | bfd_boolean do_it) | |
5a580b3a AM |
3063 | { |
3064 | struct elf_link_hash_table *hash_table; | |
5a580b3a AM |
3065 | bfd_size_type strindex; |
3066 | ||
7e9f0867 AM |
3067 | if (!_bfd_elf_link_create_dynstrtab (abfd, info)) |
3068 | return -1; | |
3069 | ||
5a580b3a | 3070 | hash_table = elf_hash_table (info); |
5a580b3a AM |
3071 | strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE); |
3072 | if (strindex == (bfd_size_type) -1) | |
3073 | return -1; | |
3074 | ||
02be4619 | 3075 | if (_bfd_elf_strtab_refcount (hash_table->dynstr, strindex) != 1) |
5a580b3a AM |
3076 | { |
3077 | asection *sdyn; | |
3078 | const struct elf_backend_data *bed; | |
3079 | bfd_byte *extdyn; | |
3080 | ||
3081 | bed = get_elf_backend_data (hash_table->dynobj); | |
3d4d4302 | 3082 | sdyn = bfd_get_linker_section (hash_table->dynobj, ".dynamic"); |
7e9f0867 AM |
3083 | if (sdyn != NULL) |
3084 | for (extdyn = sdyn->contents; | |
3085 | extdyn < sdyn->contents + sdyn->size; | |
3086 | extdyn += bed->s->sizeof_dyn) | |
3087 | { | |
3088 | Elf_Internal_Dyn dyn; | |
5a580b3a | 3089 | |
7e9f0867 AM |
3090 | bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn); |
3091 | if (dyn.d_tag == DT_NEEDED | |
3092 | && dyn.d_un.d_val == strindex) | |
3093 | { | |
3094 | _bfd_elf_strtab_delref (hash_table->dynstr, strindex); | |
3095 | return 1; | |
3096 | } | |
3097 | } | |
5a580b3a AM |
3098 | } |
3099 | ||
3100 | if (do_it) | |
3101 | { | |
7e9f0867 AM |
3102 | if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info)) |
3103 | return -1; | |
3104 | ||
5a580b3a AM |
3105 | if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex)) |
3106 | return -1; | |
3107 | } | |
3108 | else | |
3109 | /* We were just checking for existence of the tag. */ | |
3110 | _bfd_elf_strtab_delref (hash_table->dynstr, strindex); | |
3111 | ||
3112 | return 0; | |
3113 | } | |
3114 | ||
010e5ae2 AM |
3115 | static bfd_boolean |
3116 | on_needed_list (const char *soname, struct bfd_link_needed_list *needed) | |
3117 | { | |
3118 | for (; needed != NULL; needed = needed->next) | |
3119 | if (strcmp (soname, needed->name) == 0) | |
3120 | return TRUE; | |
3121 | ||
3122 | return FALSE; | |
3123 | } | |
3124 | ||
14160578 | 3125 | /* Sort symbol by value, section, and size. */ |
4ad4eba5 AM |
3126 | static int |
3127 | elf_sort_symbol (const void *arg1, const void *arg2) | |
5a580b3a AM |
3128 | { |
3129 | const struct elf_link_hash_entry *h1; | |
3130 | const struct elf_link_hash_entry *h2; | |
10b7e05b | 3131 | bfd_signed_vma vdiff; |
5a580b3a AM |
3132 | |
3133 | h1 = *(const struct elf_link_hash_entry **) arg1; | |
3134 | h2 = *(const struct elf_link_hash_entry **) arg2; | |
10b7e05b NC |
3135 | vdiff = h1->root.u.def.value - h2->root.u.def.value; |
3136 | if (vdiff != 0) | |
3137 | return vdiff > 0 ? 1 : -1; | |
3138 | else | |
3139 | { | |
3140 | long sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id; | |
3141 | if (sdiff != 0) | |
3142 | return sdiff > 0 ? 1 : -1; | |
3143 | } | |
14160578 AM |
3144 | vdiff = h1->size - h2->size; |
3145 | return vdiff == 0 ? 0 : vdiff > 0 ? 1 : -1; | |
5a580b3a | 3146 | } |
4ad4eba5 | 3147 | |
5a580b3a AM |
3148 | /* This function is used to adjust offsets into .dynstr for |
3149 | dynamic symbols. This is called via elf_link_hash_traverse. */ | |
3150 | ||
3151 | static bfd_boolean | |
3152 | elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data) | |
3153 | { | |
a50b1753 | 3154 | struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data; |
5a580b3a | 3155 | |
5a580b3a AM |
3156 | if (h->dynindx != -1) |
3157 | h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index); | |
3158 | return TRUE; | |
3159 | } | |
3160 | ||
3161 | /* Assign string offsets in .dynstr, update all structures referencing | |
3162 | them. */ | |
3163 | ||
4ad4eba5 AM |
3164 | static bfd_boolean |
3165 | elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info) | |
5a580b3a AM |
3166 | { |
3167 | struct elf_link_hash_table *hash_table = elf_hash_table (info); | |
3168 | struct elf_link_local_dynamic_entry *entry; | |
3169 | struct elf_strtab_hash *dynstr = hash_table->dynstr; | |
3170 | bfd *dynobj = hash_table->dynobj; | |
3171 | asection *sdyn; | |
3172 | bfd_size_type size; | |
3173 | const struct elf_backend_data *bed; | |
3174 | bfd_byte *extdyn; | |
3175 | ||
3176 | _bfd_elf_strtab_finalize (dynstr); | |
3177 | size = _bfd_elf_strtab_size (dynstr); | |
3178 | ||
3179 | bed = get_elf_backend_data (dynobj); | |
3d4d4302 | 3180 | sdyn = bfd_get_linker_section (dynobj, ".dynamic"); |
5a580b3a AM |
3181 | BFD_ASSERT (sdyn != NULL); |
3182 | ||
3183 | /* Update all .dynamic entries referencing .dynstr strings. */ | |
3184 | for (extdyn = sdyn->contents; | |
eea6121a | 3185 | extdyn < sdyn->contents + sdyn->size; |
5a580b3a AM |
3186 | extdyn += bed->s->sizeof_dyn) |
3187 | { | |
3188 | Elf_Internal_Dyn dyn; | |
3189 | ||
3190 | bed->s->swap_dyn_in (dynobj, extdyn, &dyn); | |
3191 | switch (dyn.d_tag) | |
3192 | { | |
3193 | case DT_STRSZ: | |
3194 | dyn.d_un.d_val = size; | |
3195 | break; | |
3196 | case DT_NEEDED: | |
3197 | case DT_SONAME: | |
3198 | case DT_RPATH: | |
3199 | case DT_RUNPATH: | |
3200 | case DT_FILTER: | |
3201 | case DT_AUXILIARY: | |
7ee314fa AM |
3202 | case DT_AUDIT: |
3203 | case DT_DEPAUDIT: | |
5a580b3a AM |
3204 | dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val); |
3205 | break; | |
3206 | default: | |
3207 | continue; | |
3208 | } | |
3209 | bed->s->swap_dyn_out (dynobj, &dyn, extdyn); | |
3210 | } | |
3211 | ||
3212 | /* Now update local dynamic symbols. */ | |
3213 | for (entry = hash_table->dynlocal; entry ; entry = entry->next) | |
3214 | entry->isym.st_name = _bfd_elf_strtab_offset (dynstr, | |
3215 | entry->isym.st_name); | |
3216 | ||
3217 | /* And the rest of dynamic symbols. */ | |
3218 | elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr); | |
3219 | ||
3220 | /* Adjust version definitions. */ | |
3221 | if (elf_tdata (output_bfd)->cverdefs) | |
3222 | { | |
3223 | asection *s; | |
3224 | bfd_byte *p; | |
3225 | bfd_size_type i; | |
3226 | Elf_Internal_Verdef def; | |
3227 | Elf_Internal_Verdaux defaux; | |
3228 | ||
3d4d4302 | 3229 | s = bfd_get_linker_section (dynobj, ".gnu.version_d"); |
5a580b3a AM |
3230 | p = s->contents; |
3231 | do | |
3232 | { | |
3233 | _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p, | |
3234 | &def); | |
3235 | p += sizeof (Elf_External_Verdef); | |
3e3b46e5 PB |
3236 | if (def.vd_aux != sizeof (Elf_External_Verdef)) |
3237 | continue; | |
5a580b3a AM |
3238 | for (i = 0; i < def.vd_cnt; ++i) |
3239 | { | |
3240 | _bfd_elf_swap_verdaux_in (output_bfd, | |
3241 | (Elf_External_Verdaux *) p, &defaux); | |
3242 | defaux.vda_name = _bfd_elf_strtab_offset (dynstr, | |
3243 | defaux.vda_name); | |
3244 | _bfd_elf_swap_verdaux_out (output_bfd, | |
3245 | &defaux, (Elf_External_Verdaux *) p); | |
3246 | p += sizeof (Elf_External_Verdaux); | |
3247 | } | |
3248 | } | |
3249 | while (def.vd_next); | |
3250 | } | |
3251 | ||
3252 | /* Adjust version references. */ | |
3253 | if (elf_tdata (output_bfd)->verref) | |
3254 | { | |
3255 | asection *s; | |
3256 | bfd_byte *p; | |
3257 | bfd_size_type i; | |
3258 | Elf_Internal_Verneed need; | |
3259 | Elf_Internal_Vernaux needaux; | |
3260 | ||
3d4d4302 | 3261 | s = bfd_get_linker_section (dynobj, ".gnu.version_r"); |
5a580b3a AM |
3262 | p = s->contents; |
3263 | do | |
3264 | { | |
3265 | _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p, | |
3266 | &need); | |
3267 | need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file); | |
3268 | _bfd_elf_swap_verneed_out (output_bfd, &need, | |
3269 | (Elf_External_Verneed *) p); | |
3270 | p += sizeof (Elf_External_Verneed); | |
3271 | for (i = 0; i < need.vn_cnt; ++i) | |
3272 | { | |
3273 | _bfd_elf_swap_vernaux_in (output_bfd, | |
3274 | (Elf_External_Vernaux *) p, &needaux); | |
3275 | needaux.vna_name = _bfd_elf_strtab_offset (dynstr, | |
3276 | needaux.vna_name); | |
3277 | _bfd_elf_swap_vernaux_out (output_bfd, | |
3278 | &needaux, | |
3279 | (Elf_External_Vernaux *) p); | |
3280 | p += sizeof (Elf_External_Vernaux); | |
3281 | } | |
3282 | } | |
3283 | while (need.vn_next); | |
3284 | } | |
3285 | ||
3286 | return TRUE; | |
3287 | } | |
3288 | \f | |
13285a1b AM |
3289 | /* Return TRUE iff relocations for INPUT are compatible with OUTPUT. |
3290 | The default is to only match when the INPUT and OUTPUT are exactly | |
3291 | the same target. */ | |
3292 | ||
3293 | bfd_boolean | |
3294 | _bfd_elf_default_relocs_compatible (const bfd_target *input, | |
3295 | const bfd_target *output) | |
3296 | { | |
3297 | return input == output; | |
3298 | } | |
3299 | ||
3300 | /* Return TRUE iff relocations for INPUT are compatible with OUTPUT. | |
3301 | This version is used when different targets for the same architecture | |
3302 | are virtually identical. */ | |
3303 | ||
3304 | bfd_boolean | |
3305 | _bfd_elf_relocs_compatible (const bfd_target *input, | |
3306 | const bfd_target *output) | |
3307 | { | |
3308 | const struct elf_backend_data *obed, *ibed; | |
3309 | ||
3310 | if (input == output) | |
3311 | return TRUE; | |
3312 | ||
3313 | ibed = xvec_get_elf_backend_data (input); | |
3314 | obed = xvec_get_elf_backend_data (output); | |
3315 | ||
3316 | if (ibed->arch != obed->arch) | |
3317 | return FALSE; | |
3318 | ||
3319 | /* If both backends are using this function, deem them compatible. */ | |
3320 | return ibed->relocs_compatible == obed->relocs_compatible; | |
3321 | } | |
3322 | ||
e5034e59 AM |
3323 | /* Make a special call to the linker "notice" function to tell it that |
3324 | we are about to handle an as-needed lib, or have finished | |
3325 | processing the lib. */ | |
3326 | ||
3327 | bfd_boolean | |
3328 | _bfd_elf_notice_as_needed (bfd *ibfd, | |
3329 | struct bfd_link_info *info, | |
3330 | enum notice_asneeded_action act) | |
3331 | { | |
3332 | return (*info->callbacks->notice) (info, NULL, ibfd, NULL, act, 0, NULL); | |
3333 | } | |
3334 | ||
4ad4eba5 AM |
3335 | /* Add symbols from an ELF object file to the linker hash table. */ |
3336 | ||
3337 | static bfd_boolean | |
3338 | elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info) | |
3339 | { | |
a0c402a5 | 3340 | Elf_Internal_Ehdr *ehdr; |
4ad4eba5 AM |
3341 | Elf_Internal_Shdr *hdr; |
3342 | bfd_size_type symcount; | |
3343 | bfd_size_type extsymcount; | |
3344 | bfd_size_type extsymoff; | |
3345 | struct elf_link_hash_entry **sym_hash; | |
3346 | bfd_boolean dynamic; | |
3347 | Elf_External_Versym *extversym = NULL; | |
3348 | Elf_External_Versym *ever; | |
3349 | struct elf_link_hash_entry *weaks; | |
3350 | struct elf_link_hash_entry **nondeflt_vers = NULL; | |
3351 | bfd_size_type nondeflt_vers_cnt = 0; | |
3352 | Elf_Internal_Sym *isymbuf = NULL; | |
3353 | Elf_Internal_Sym *isym; | |
3354 | Elf_Internal_Sym *isymend; | |
3355 | const struct elf_backend_data *bed; | |
3356 | bfd_boolean add_needed; | |
66eb6687 | 3357 | struct elf_link_hash_table *htab; |
4ad4eba5 | 3358 | bfd_size_type amt; |
66eb6687 | 3359 | void *alloc_mark = NULL; |
4f87808c AM |
3360 | struct bfd_hash_entry **old_table = NULL; |
3361 | unsigned int old_size = 0; | |
3362 | unsigned int old_count = 0; | |
66eb6687 | 3363 | void *old_tab = NULL; |
66eb6687 AM |
3364 | void *old_ent; |
3365 | struct bfd_link_hash_entry *old_undefs = NULL; | |
3366 | struct bfd_link_hash_entry *old_undefs_tail = NULL; | |
3367 | long old_dynsymcount = 0; | |
a4542f1b | 3368 | bfd_size_type old_dynstr_size = 0; |
66eb6687 | 3369 | size_t tabsize = 0; |
db6a5d5f | 3370 | asection *s; |
4ad4eba5 | 3371 | |
66eb6687 | 3372 | htab = elf_hash_table (info); |
4ad4eba5 | 3373 | bed = get_elf_backend_data (abfd); |
4ad4eba5 AM |
3374 | |
3375 | if ((abfd->flags & DYNAMIC) == 0) | |
3376 | dynamic = FALSE; | |
3377 | else | |
3378 | { | |
3379 | dynamic = TRUE; | |
3380 | ||
3381 | /* You can't use -r against a dynamic object. Also, there's no | |
3382 | hope of using a dynamic object which does not exactly match | |
3383 | the format of the output file. */ | |
3384 | if (info->relocatable | |
66eb6687 | 3385 | || !is_elf_hash_table (htab) |
f13a99db | 3386 | || info->output_bfd->xvec != abfd->xvec) |
4ad4eba5 | 3387 | { |
9a0789ec NC |
3388 | if (info->relocatable) |
3389 | bfd_set_error (bfd_error_invalid_operation); | |
3390 | else | |
3391 | bfd_set_error (bfd_error_wrong_format); | |
4ad4eba5 AM |
3392 | goto error_return; |
3393 | } | |
3394 | } | |
3395 | ||
a0c402a5 L |
3396 | ehdr = elf_elfheader (abfd); |
3397 | if (info->warn_alternate_em | |
3398 | && bed->elf_machine_code != ehdr->e_machine | |
3399 | && ((bed->elf_machine_alt1 != 0 | |
3400 | && ehdr->e_machine == bed->elf_machine_alt1) | |
3401 | || (bed->elf_machine_alt2 != 0 | |
3402 | && ehdr->e_machine == bed->elf_machine_alt2))) | |
3403 | info->callbacks->einfo | |
3404 | (_("%P: alternate ELF machine code found (%d) in %B, expecting %d\n"), | |
3405 | ehdr->e_machine, abfd, bed->elf_machine_code); | |
3406 | ||
4ad4eba5 AM |
3407 | /* As a GNU extension, any input sections which are named |
3408 | .gnu.warning.SYMBOL are treated as warning symbols for the given | |
3409 | symbol. This differs from .gnu.warning sections, which generate | |
3410 | warnings when they are included in an output file. */ | |
dd98f8d2 | 3411 | /* PR 12761: Also generate this warning when building shared libraries. */ |
db6a5d5f | 3412 | for (s = abfd->sections; s != NULL; s = s->next) |
4ad4eba5 | 3413 | { |
db6a5d5f | 3414 | const char *name; |
4ad4eba5 | 3415 | |
db6a5d5f AM |
3416 | name = bfd_get_section_name (abfd, s); |
3417 | if (CONST_STRNEQ (name, ".gnu.warning.")) | |
4ad4eba5 | 3418 | { |
db6a5d5f AM |
3419 | char *msg; |
3420 | bfd_size_type sz; | |
3421 | ||
3422 | name += sizeof ".gnu.warning." - 1; | |
3423 | ||
3424 | /* If this is a shared object, then look up the symbol | |
3425 | in the hash table. If it is there, and it is already | |
3426 | been defined, then we will not be using the entry | |
3427 | from this shared object, so we don't need to warn. | |
3428 | FIXME: If we see the definition in a regular object | |
3429 | later on, we will warn, but we shouldn't. The only | |
3430 | fix is to keep track of what warnings we are supposed | |
3431 | to emit, and then handle them all at the end of the | |
3432 | link. */ | |
3433 | if (dynamic) | |
4ad4eba5 | 3434 | { |
db6a5d5f AM |
3435 | struct elf_link_hash_entry *h; |
3436 | ||
3437 | h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE); | |
3438 | ||
3439 | /* FIXME: What about bfd_link_hash_common? */ | |
3440 | if (h != NULL | |
3441 | && (h->root.type == bfd_link_hash_defined | |
3442 | || h->root.type == bfd_link_hash_defweak)) | |
3443 | continue; | |
3444 | } | |
4ad4eba5 | 3445 | |
db6a5d5f AM |
3446 | sz = s->size; |
3447 | msg = (char *) bfd_alloc (abfd, sz + 1); | |
3448 | if (msg == NULL) | |
3449 | goto error_return; | |
4ad4eba5 | 3450 | |
db6a5d5f AM |
3451 | if (! bfd_get_section_contents (abfd, s, msg, 0, sz)) |
3452 | goto error_return; | |
4ad4eba5 | 3453 | |
db6a5d5f | 3454 | msg[sz] = '\0'; |
4ad4eba5 | 3455 | |
db6a5d5f AM |
3456 | if (! (_bfd_generic_link_add_one_symbol |
3457 | (info, abfd, name, BSF_WARNING, s, 0, msg, | |
3458 | FALSE, bed->collect, NULL))) | |
3459 | goto error_return; | |
4ad4eba5 | 3460 | |
db6a5d5f AM |
3461 | if (!info->relocatable && info->executable) |
3462 | { | |
3463 | /* Clobber the section size so that the warning does | |
3464 | not get copied into the output file. */ | |
3465 | s->size = 0; | |
11d2f718 | 3466 | |
db6a5d5f AM |
3467 | /* Also set SEC_EXCLUDE, so that symbols defined in |
3468 | the warning section don't get copied to the output. */ | |
3469 | s->flags |= SEC_EXCLUDE; | |
4ad4eba5 AM |
3470 | } |
3471 | } | |
3472 | } | |
3473 | ||
3474 | add_needed = TRUE; | |
3475 | if (! dynamic) | |
3476 | { | |
3477 | /* If we are creating a shared library, create all the dynamic | |
3478 | sections immediately. We need to attach them to something, | |
3479 | so we attach them to this BFD, provided it is the right | |
3480 | format. FIXME: If there are no input BFD's of the same | |
3481 | format as the output, we can't make a shared library. */ | |
3482 | if (info->shared | |
66eb6687 | 3483 | && is_elf_hash_table (htab) |
f13a99db | 3484 | && info->output_bfd->xvec == abfd->xvec |
66eb6687 | 3485 | && !htab->dynamic_sections_created) |
4ad4eba5 AM |
3486 | { |
3487 | if (! _bfd_elf_link_create_dynamic_sections (abfd, info)) | |
3488 | goto error_return; | |
3489 | } | |
3490 | } | |
66eb6687 | 3491 | else if (!is_elf_hash_table (htab)) |
4ad4eba5 AM |
3492 | goto error_return; |
3493 | else | |
3494 | { | |
4ad4eba5 | 3495 | const char *soname = NULL; |
7ee314fa | 3496 | char *audit = NULL; |
4ad4eba5 AM |
3497 | struct bfd_link_needed_list *rpath = NULL, *runpath = NULL; |
3498 | int ret; | |
3499 | ||
3500 | /* ld --just-symbols and dynamic objects don't mix very well. | |
92fd189d | 3501 | ld shouldn't allow it. */ |
4ad4eba5 | 3502 | if ((s = abfd->sections) != NULL |
dbaa2011 | 3503 | && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS) |
92fd189d | 3504 | abort (); |
4ad4eba5 AM |
3505 | |
3506 | /* If this dynamic lib was specified on the command line with | |
3507 | --as-needed in effect, then we don't want to add a DT_NEEDED | |
3508 | tag unless the lib is actually used. Similary for libs brought | |
e56f61be L |
3509 | in by another lib's DT_NEEDED. When --no-add-needed is used |
3510 | on a dynamic lib, we don't want to add a DT_NEEDED entry for | |
3511 | any dynamic library in DT_NEEDED tags in the dynamic lib at | |
3512 | all. */ | |
3513 | add_needed = (elf_dyn_lib_class (abfd) | |
3514 | & (DYN_AS_NEEDED | DYN_DT_NEEDED | |
3515 | | DYN_NO_NEEDED)) == 0; | |
4ad4eba5 AM |
3516 | |
3517 | s = bfd_get_section_by_name (abfd, ".dynamic"); | |
3518 | if (s != NULL) | |
3519 | { | |
3520 | bfd_byte *dynbuf; | |
3521 | bfd_byte *extdyn; | |
cb33740c | 3522 | unsigned int elfsec; |
4ad4eba5 AM |
3523 | unsigned long shlink; |
3524 | ||
eea6121a | 3525 | if (!bfd_malloc_and_get_section (abfd, s, &dynbuf)) |
f8703194 L |
3526 | { |
3527 | error_free_dyn: | |
3528 | free (dynbuf); | |
3529 | goto error_return; | |
3530 | } | |
4ad4eba5 AM |
3531 | |
3532 | elfsec = _bfd_elf_section_from_bfd_section (abfd, s); | |
cb33740c | 3533 | if (elfsec == SHN_BAD) |
4ad4eba5 AM |
3534 | goto error_free_dyn; |
3535 | shlink = elf_elfsections (abfd)[elfsec]->sh_link; | |
3536 | ||
3537 | for (extdyn = dynbuf; | |
eea6121a | 3538 | extdyn < dynbuf + s->size; |
4ad4eba5 AM |
3539 | extdyn += bed->s->sizeof_dyn) |
3540 | { | |
3541 | Elf_Internal_Dyn dyn; | |
3542 | ||
3543 | bed->s->swap_dyn_in (abfd, extdyn, &dyn); | |
3544 | if (dyn.d_tag == DT_SONAME) | |
3545 | { | |
3546 | unsigned int tagv = dyn.d_un.d_val; | |
3547 | soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv); | |
3548 | if (soname == NULL) | |
3549 | goto error_free_dyn; | |
3550 | } | |
3551 | if (dyn.d_tag == DT_NEEDED) | |
3552 | { | |
3553 | struct bfd_link_needed_list *n, **pn; | |
3554 | char *fnm, *anm; | |
3555 | unsigned int tagv = dyn.d_un.d_val; | |
3556 | ||
3557 | amt = sizeof (struct bfd_link_needed_list); | |
a50b1753 | 3558 | n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt); |
4ad4eba5 AM |
3559 | fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv); |
3560 | if (n == NULL || fnm == NULL) | |
3561 | goto error_free_dyn; | |
3562 | amt = strlen (fnm) + 1; | |
a50b1753 | 3563 | anm = (char *) bfd_alloc (abfd, amt); |
4ad4eba5 AM |
3564 | if (anm == NULL) |
3565 | goto error_free_dyn; | |
3566 | memcpy (anm, fnm, amt); | |
3567 | n->name = anm; | |
3568 | n->by = abfd; | |
3569 | n->next = NULL; | |
66eb6687 | 3570 | for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next) |
4ad4eba5 AM |
3571 | ; |
3572 | *pn = n; | |
3573 | } | |
3574 | if (dyn.d_tag == DT_RUNPATH) | |
3575 | { | |
3576 | struct bfd_link_needed_list *n, **pn; | |
3577 | char *fnm, *anm; | |
3578 | unsigned int tagv = dyn.d_un.d_val; | |
3579 | ||
3580 | amt = sizeof (struct bfd_link_needed_list); | |
a50b1753 | 3581 | n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt); |
4ad4eba5 AM |
3582 | fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv); |
3583 | if (n == NULL || fnm == NULL) | |
3584 | goto error_free_dyn; | |
3585 | amt = strlen (fnm) + 1; | |
a50b1753 | 3586 | anm = (char *) bfd_alloc (abfd, amt); |
4ad4eba5 AM |
3587 | if (anm == NULL) |
3588 | goto error_free_dyn; | |
3589 | memcpy (anm, fnm, amt); | |
3590 | n->name = anm; | |
3591 | n->by = abfd; | |
3592 | n->next = NULL; | |
3593 | for (pn = & runpath; | |
3594 | *pn != NULL; | |
3595 | pn = &(*pn)->next) | |
3596 | ; | |
3597 | *pn = n; | |
3598 | } | |
3599 | /* Ignore DT_RPATH if we have seen DT_RUNPATH. */ | |
3600 | if (!runpath && dyn.d_tag == DT_RPATH) | |
3601 | { | |
3602 | struct bfd_link_needed_list *n, **pn; | |
3603 | char *fnm, *anm; | |
3604 | unsigned int tagv = dyn.d_un.d_val; | |
3605 | ||
3606 | amt = sizeof (struct bfd_link_needed_list); | |
a50b1753 | 3607 | n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt); |
4ad4eba5 AM |
3608 | fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv); |
3609 | if (n == NULL || fnm == NULL) | |
3610 | goto error_free_dyn; | |
3611 | amt = strlen (fnm) + 1; | |
a50b1753 | 3612 | anm = (char *) bfd_alloc (abfd, amt); |
4ad4eba5 | 3613 | if (anm == NULL) |
f8703194 | 3614 | goto error_free_dyn; |
4ad4eba5 AM |
3615 | memcpy (anm, fnm, amt); |
3616 | n->name = anm; | |
3617 | n->by = abfd; | |
3618 | n->next = NULL; | |
3619 | for (pn = & rpath; | |
3620 | *pn != NULL; | |
3621 | pn = &(*pn)->next) | |
3622 | ; | |
3623 | *pn = n; | |
3624 | } | |
7ee314fa AM |
3625 | if (dyn.d_tag == DT_AUDIT) |
3626 | { | |
3627 | unsigned int tagv = dyn.d_un.d_val; | |
3628 | audit = bfd_elf_string_from_elf_section (abfd, shlink, tagv); | |
3629 | } | |
4ad4eba5 AM |
3630 | } |
3631 | ||
3632 | free (dynbuf); | |
3633 | } | |
3634 | ||
3635 | /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that | |
3636 | frees all more recently bfd_alloc'd blocks as well. */ | |
3637 | if (runpath) | |
3638 | rpath = runpath; | |
3639 | ||
3640 | if (rpath) | |
3641 | { | |
3642 | struct bfd_link_needed_list **pn; | |
66eb6687 | 3643 | for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next) |
4ad4eba5 AM |
3644 | ; |
3645 | *pn = rpath; | |
3646 | } | |
3647 | ||
3648 | /* We do not want to include any of the sections in a dynamic | |
3649 | object in the output file. We hack by simply clobbering the | |
3650 | list of sections in the BFD. This could be handled more | |
3651 | cleanly by, say, a new section flag; the existing | |
3652 | SEC_NEVER_LOAD flag is not the one we want, because that one | |
3653 | still implies that the section takes up space in the output | |
3654 | file. */ | |
3655 | bfd_section_list_clear (abfd); | |
3656 | ||
4ad4eba5 AM |
3657 | /* Find the name to use in a DT_NEEDED entry that refers to this |
3658 | object. If the object has a DT_SONAME entry, we use it. | |
3659 | Otherwise, if the generic linker stuck something in | |
3660 | elf_dt_name, we use that. Otherwise, we just use the file | |
3661 | name. */ | |
3662 | if (soname == NULL || *soname == '\0') | |
3663 | { | |
3664 | soname = elf_dt_name (abfd); | |
3665 | if (soname == NULL || *soname == '\0') | |
3666 | soname = bfd_get_filename (abfd); | |
3667 | } | |
3668 | ||
3669 | /* Save the SONAME because sometimes the linker emulation code | |
3670 | will need to know it. */ | |
3671 | elf_dt_name (abfd) = soname; | |
3672 | ||
7e9f0867 | 3673 | ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed); |
4ad4eba5 AM |
3674 | if (ret < 0) |
3675 | goto error_return; | |
3676 | ||
3677 | /* If we have already included this dynamic object in the | |
3678 | link, just ignore it. There is no reason to include a | |
3679 | particular dynamic object more than once. */ | |
3680 | if (ret > 0) | |
3681 | return TRUE; | |
7ee314fa AM |
3682 | |
3683 | /* Save the DT_AUDIT entry for the linker emulation code. */ | |
68ffbac6 | 3684 | elf_dt_audit (abfd) = audit; |
4ad4eba5 AM |
3685 | } |
3686 | ||
3687 | /* If this is a dynamic object, we always link against the .dynsym | |
3688 | symbol table, not the .symtab symbol table. The dynamic linker | |
3689 | will only see the .dynsym symbol table, so there is no reason to | |
3690 | look at .symtab for a dynamic object. */ | |
3691 | ||
3692 | if (! dynamic || elf_dynsymtab (abfd) == 0) | |
3693 | hdr = &elf_tdata (abfd)->symtab_hdr; | |
3694 | else | |
3695 | hdr = &elf_tdata (abfd)->dynsymtab_hdr; | |
3696 | ||
3697 | symcount = hdr->sh_size / bed->s->sizeof_sym; | |
3698 | ||
3699 | /* The sh_info field of the symtab header tells us where the | |
3700 | external symbols start. We don't care about the local symbols at | |
3701 | this point. */ | |
3702 | if (elf_bad_symtab (abfd)) | |
3703 | { | |
3704 | extsymcount = symcount; | |
3705 | extsymoff = 0; | |
3706 | } | |
3707 | else | |
3708 | { | |
3709 | extsymcount = symcount - hdr->sh_info; | |
3710 | extsymoff = hdr->sh_info; | |
3711 | } | |
3712 | ||
f45794cb | 3713 | sym_hash = elf_sym_hashes (abfd); |
012b2306 | 3714 | if (extsymcount != 0) |
4ad4eba5 AM |
3715 | { |
3716 | isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff, | |
3717 | NULL, NULL, NULL); | |
3718 | if (isymbuf == NULL) | |
3719 | goto error_return; | |
3720 | ||
4ad4eba5 | 3721 | if (sym_hash == NULL) |
012b2306 AM |
3722 | { |
3723 | /* We store a pointer to the hash table entry for each | |
3724 | external symbol. */ | |
3725 | amt = extsymcount * sizeof (struct elf_link_hash_entry *); | |
3726 | sym_hash = (struct elf_link_hash_entry **) bfd_zalloc (abfd, amt); | |
3727 | if (sym_hash == NULL) | |
3728 | goto error_free_sym; | |
3729 | elf_sym_hashes (abfd) = sym_hash; | |
3730 | } | |
4ad4eba5 AM |
3731 | } |
3732 | ||
3733 | if (dynamic) | |
3734 | { | |
3735 | /* Read in any version definitions. */ | |
fc0e6df6 PB |
3736 | if (!_bfd_elf_slurp_version_tables (abfd, |
3737 | info->default_imported_symver)) | |
4ad4eba5 AM |
3738 | goto error_free_sym; |
3739 | ||
3740 | /* Read in the symbol versions, but don't bother to convert them | |
3741 | to internal format. */ | |
3742 | if (elf_dynversym (abfd) != 0) | |
3743 | { | |
3744 | Elf_Internal_Shdr *versymhdr; | |
3745 | ||
3746 | versymhdr = &elf_tdata (abfd)->dynversym_hdr; | |
a50b1753 | 3747 | extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size); |
4ad4eba5 AM |
3748 | if (extversym == NULL) |
3749 | goto error_free_sym; | |
3750 | amt = versymhdr->sh_size; | |
3751 | if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0 | |
3752 | || bfd_bread (extversym, amt, abfd) != amt) | |
3753 | goto error_free_vers; | |
3754 | } | |
3755 | } | |
3756 | ||
66eb6687 AM |
3757 | /* If we are loading an as-needed shared lib, save the symbol table |
3758 | state before we start adding symbols. If the lib turns out | |
3759 | to be unneeded, restore the state. */ | |
3760 | if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0) | |
3761 | { | |
3762 | unsigned int i; | |
3763 | size_t entsize; | |
3764 | ||
3765 | for (entsize = 0, i = 0; i < htab->root.table.size; i++) | |
3766 | { | |
3767 | struct bfd_hash_entry *p; | |
2de92251 | 3768 | struct elf_link_hash_entry *h; |
66eb6687 AM |
3769 | |
3770 | for (p = htab->root.table.table[i]; p != NULL; p = p->next) | |
2de92251 AM |
3771 | { |
3772 | h = (struct elf_link_hash_entry *) p; | |
3773 | entsize += htab->root.table.entsize; | |
3774 | if (h->root.type == bfd_link_hash_warning) | |
3775 | entsize += htab->root.table.entsize; | |
3776 | } | |
66eb6687 AM |
3777 | } |
3778 | ||
3779 | tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *); | |
f45794cb | 3780 | old_tab = bfd_malloc (tabsize + entsize); |
66eb6687 AM |
3781 | if (old_tab == NULL) |
3782 | goto error_free_vers; | |
3783 | ||
3784 | /* Remember the current objalloc pointer, so that all mem for | |
3785 | symbols added can later be reclaimed. */ | |
3786 | alloc_mark = bfd_hash_allocate (&htab->root.table, 1); | |
3787 | if (alloc_mark == NULL) | |
3788 | goto error_free_vers; | |
3789 | ||
5061a885 AM |
3790 | /* Make a special call to the linker "notice" function to |
3791 | tell it that we are about to handle an as-needed lib. */ | |
e5034e59 | 3792 | if (!(*bed->notice_as_needed) (abfd, info, notice_as_needed)) |
9af2a943 | 3793 | goto error_free_vers; |
5061a885 | 3794 | |
f45794cb AM |
3795 | /* Clone the symbol table. Remember some pointers into the |
3796 | symbol table, and dynamic symbol count. */ | |
3797 | old_ent = (char *) old_tab + tabsize; | |
66eb6687 | 3798 | memcpy (old_tab, htab->root.table.table, tabsize); |
66eb6687 AM |
3799 | old_undefs = htab->root.undefs; |
3800 | old_undefs_tail = htab->root.undefs_tail; | |
4f87808c AM |
3801 | old_table = htab->root.table.table; |
3802 | old_size = htab->root.table.size; | |
3803 | old_count = htab->root.table.count; | |
66eb6687 | 3804 | old_dynsymcount = htab->dynsymcount; |
a4542f1b | 3805 | old_dynstr_size = _bfd_elf_strtab_size (htab->dynstr); |
66eb6687 AM |
3806 | |
3807 | for (i = 0; i < htab->root.table.size; i++) | |
3808 | { | |
3809 | struct bfd_hash_entry *p; | |
2de92251 | 3810 | struct elf_link_hash_entry *h; |
66eb6687 AM |
3811 | |
3812 | for (p = htab->root.table.table[i]; p != NULL; p = p->next) | |
3813 | { | |
3814 | memcpy (old_ent, p, htab->root.table.entsize); | |
3815 | old_ent = (char *) old_ent + htab->root.table.entsize; | |
2de92251 AM |
3816 | h = (struct elf_link_hash_entry *) p; |
3817 | if (h->root.type == bfd_link_hash_warning) | |
3818 | { | |
3819 | memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize); | |
3820 | old_ent = (char *) old_ent + htab->root.table.entsize; | |
3821 | } | |
66eb6687 AM |
3822 | } |
3823 | } | |
3824 | } | |
4ad4eba5 | 3825 | |
66eb6687 | 3826 | weaks = NULL; |
4ad4eba5 AM |
3827 | ever = extversym != NULL ? extversym + extsymoff : NULL; |
3828 | for (isym = isymbuf, isymend = isymbuf + extsymcount; | |
3829 | isym < isymend; | |
3830 | isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL)) | |
3831 | { | |
3832 | int bind; | |
3833 | bfd_vma value; | |
af44c138 | 3834 | asection *sec, *new_sec; |
4ad4eba5 AM |
3835 | flagword flags; |
3836 | const char *name; | |
3837 | struct elf_link_hash_entry *h; | |
90c984fc | 3838 | struct elf_link_hash_entry *hi; |
4ad4eba5 AM |
3839 | bfd_boolean definition; |
3840 | bfd_boolean size_change_ok; | |
3841 | bfd_boolean type_change_ok; | |
3842 | bfd_boolean new_weakdef; | |
37a9e49a L |
3843 | bfd_boolean new_weak; |
3844 | bfd_boolean old_weak; | |
4ad4eba5 | 3845 | bfd_boolean override; |
a4d8e49b | 3846 | bfd_boolean common; |
4ad4eba5 AM |
3847 | unsigned int old_alignment; |
3848 | bfd *old_bfd; | |
3849 | ||
3850 | override = FALSE; | |
3851 | ||
3852 | flags = BSF_NO_FLAGS; | |
3853 | sec = NULL; | |
3854 | value = isym->st_value; | |
a4d8e49b | 3855 | common = bed->common_definition (isym); |
4ad4eba5 AM |
3856 | |
3857 | bind = ELF_ST_BIND (isym->st_info); | |
3e7a7d11 | 3858 | switch (bind) |
4ad4eba5 | 3859 | { |
3e7a7d11 | 3860 | case STB_LOCAL: |
4ad4eba5 AM |
3861 | /* This should be impossible, since ELF requires that all |
3862 | global symbols follow all local symbols, and that sh_info | |
3863 | point to the first global symbol. Unfortunately, Irix 5 | |
3864 | screws this up. */ | |
3865 | continue; | |
3e7a7d11 NC |
3866 | |
3867 | case STB_GLOBAL: | |
a4d8e49b | 3868 | if (isym->st_shndx != SHN_UNDEF && !common) |
4ad4eba5 | 3869 | flags = BSF_GLOBAL; |
3e7a7d11 NC |
3870 | break; |
3871 | ||
3872 | case STB_WEAK: | |
3873 | flags = BSF_WEAK; | |
3874 | break; | |
3875 | ||
3876 | case STB_GNU_UNIQUE: | |
3877 | flags = BSF_GNU_UNIQUE; | |
3878 | break; | |
3879 | ||
3880 | default: | |
4ad4eba5 | 3881 | /* Leave it up to the processor backend. */ |
3e7a7d11 | 3882 | break; |
4ad4eba5 AM |
3883 | } |
3884 | ||
3885 | if (isym->st_shndx == SHN_UNDEF) | |
3886 | sec = bfd_und_section_ptr; | |
cb33740c AM |
3887 | else if (isym->st_shndx == SHN_ABS) |
3888 | sec = bfd_abs_section_ptr; | |
3889 | else if (isym->st_shndx == SHN_COMMON) | |
3890 | { | |
3891 | sec = bfd_com_section_ptr; | |
3892 | /* What ELF calls the size we call the value. What ELF | |
3893 | calls the value we call the alignment. */ | |
3894 | value = isym->st_size; | |
3895 | } | |
3896 | else | |
4ad4eba5 AM |
3897 | { |
3898 | sec = bfd_section_from_elf_index (abfd, isym->st_shndx); | |
3899 | if (sec == NULL) | |
3900 | sec = bfd_abs_section_ptr; | |
dbaa2011 | 3901 | else if (discarded_section (sec)) |
529fcb95 | 3902 | { |
e5d08002 L |
3903 | /* Symbols from discarded section are undefined. We keep |
3904 | its visibility. */ | |
529fcb95 PB |
3905 | sec = bfd_und_section_ptr; |
3906 | isym->st_shndx = SHN_UNDEF; | |
3907 | } | |
4ad4eba5 AM |
3908 | else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0) |
3909 | value -= sec->vma; | |
3910 | } | |
4ad4eba5 AM |
3911 | |
3912 | name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link, | |
3913 | isym->st_name); | |
3914 | if (name == NULL) | |
3915 | goto error_free_vers; | |
3916 | ||
3917 | if (isym->st_shndx == SHN_COMMON | |
02d00247 AM |
3918 | && (abfd->flags & BFD_PLUGIN) != 0) |
3919 | { | |
3920 | asection *xc = bfd_get_section_by_name (abfd, "COMMON"); | |
3921 | ||
3922 | if (xc == NULL) | |
3923 | { | |
3924 | flagword sflags = (SEC_ALLOC | SEC_IS_COMMON | SEC_KEEP | |
3925 | | SEC_EXCLUDE); | |
3926 | xc = bfd_make_section_with_flags (abfd, "COMMON", sflags); | |
3927 | if (xc == NULL) | |
3928 | goto error_free_vers; | |
3929 | } | |
3930 | sec = xc; | |
3931 | } | |
3932 | else if (isym->st_shndx == SHN_COMMON | |
3933 | && ELF_ST_TYPE (isym->st_info) == STT_TLS | |
3934 | && !info->relocatable) | |
4ad4eba5 AM |
3935 | { |
3936 | asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon"); | |
3937 | ||
3938 | if (tcomm == NULL) | |
3939 | { | |
02d00247 AM |
3940 | flagword sflags = (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_IS_COMMON |
3941 | | SEC_LINKER_CREATED); | |
3942 | tcomm = bfd_make_section_with_flags (abfd, ".tcommon", sflags); | |
3496cb2a | 3943 | if (tcomm == NULL) |
4ad4eba5 AM |
3944 | goto error_free_vers; |
3945 | } | |
3946 | sec = tcomm; | |
3947 | } | |
66eb6687 | 3948 | else if (bed->elf_add_symbol_hook) |
4ad4eba5 | 3949 | { |
66eb6687 AM |
3950 | if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags, |
3951 | &sec, &value)) | |
4ad4eba5 AM |
3952 | goto error_free_vers; |
3953 | ||
3954 | /* The hook function sets the name to NULL if this symbol | |
3955 | should be skipped for some reason. */ | |
3956 | if (name == NULL) | |
3957 | continue; | |
3958 | } | |
3959 | ||
3960 | /* Sanity check that all possibilities were handled. */ | |
3961 | if (sec == NULL) | |
3962 | { | |
3963 | bfd_set_error (bfd_error_bad_value); | |
3964 | goto error_free_vers; | |
3965 | } | |
3966 | ||
191c0c42 AM |
3967 | /* Silently discard TLS symbols from --just-syms. There's |
3968 | no way to combine a static TLS block with a new TLS block | |
3969 | for this executable. */ | |
3970 | if (ELF_ST_TYPE (isym->st_info) == STT_TLS | |
3971 | && sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS) | |
3972 | continue; | |
3973 | ||
4ad4eba5 AM |
3974 | if (bfd_is_und_section (sec) |
3975 | || bfd_is_com_section (sec)) | |
3976 | definition = FALSE; | |
3977 | else | |
3978 | definition = TRUE; | |
3979 | ||
3980 | size_change_ok = FALSE; | |
66eb6687 | 3981 | type_change_ok = bed->type_change_ok; |
37a9e49a | 3982 | old_weak = FALSE; |
4ad4eba5 AM |
3983 | old_alignment = 0; |
3984 | old_bfd = NULL; | |
af44c138 | 3985 | new_sec = sec; |
4ad4eba5 | 3986 | |
66eb6687 | 3987 | if (is_elf_hash_table (htab)) |
4ad4eba5 AM |
3988 | { |
3989 | Elf_Internal_Versym iver; | |
3990 | unsigned int vernum = 0; | |
3991 | bfd_boolean skip; | |
3992 | ||
fc0e6df6 | 3993 | if (ever == NULL) |
4ad4eba5 | 3994 | { |
fc0e6df6 PB |
3995 | if (info->default_imported_symver) |
3996 | /* Use the default symbol version created earlier. */ | |
3997 | iver.vs_vers = elf_tdata (abfd)->cverdefs; | |
3998 | else | |
3999 | iver.vs_vers = 0; | |
4000 | } | |
4001 | else | |
4002 | _bfd_elf_swap_versym_in (abfd, ever, &iver); | |
4003 | ||
4004 | vernum = iver.vs_vers & VERSYM_VERSION; | |
4005 | ||
4006 | /* If this is a hidden symbol, or if it is not version | |
4007 | 1, we append the version name to the symbol name. | |
cc86ff91 EB |
4008 | However, we do not modify a non-hidden absolute symbol |
4009 | if it is not a function, because it might be the version | |
4010 | symbol itself. FIXME: What if it isn't? */ | |
fc0e6df6 | 4011 | if ((iver.vs_vers & VERSYM_HIDDEN) != 0 |
fcb93ecf PB |
4012 | || (vernum > 1 |
4013 | && (!bfd_is_abs_section (sec) | |
4014 | || bed->is_function_type (ELF_ST_TYPE (isym->st_info))))) | |
fc0e6df6 PB |
4015 | { |
4016 | const char *verstr; | |
4017 | size_t namelen, verlen, newlen; | |
4018 | char *newname, *p; | |
4019 | ||
4020 | if (isym->st_shndx != SHN_UNDEF) | |
4ad4eba5 | 4021 | { |
fc0e6df6 PB |
4022 | if (vernum > elf_tdata (abfd)->cverdefs) |
4023 | verstr = NULL; | |
4024 | else if (vernum > 1) | |
4025 | verstr = | |
4026 | elf_tdata (abfd)->verdef[vernum - 1].vd_nodename; | |
4027 | else | |
4028 | verstr = ""; | |
4ad4eba5 | 4029 | |
fc0e6df6 | 4030 | if (verstr == NULL) |
4ad4eba5 | 4031 | { |
fc0e6df6 PB |
4032 | (*_bfd_error_handler) |
4033 | (_("%B: %s: invalid version %u (max %d)"), | |
4034 | abfd, name, vernum, | |
4035 | elf_tdata (abfd)->cverdefs); | |
4036 | bfd_set_error (bfd_error_bad_value); | |
4037 | goto error_free_vers; | |
4ad4eba5 | 4038 | } |
fc0e6df6 PB |
4039 | } |
4040 | else | |
4041 | { | |
4042 | /* We cannot simply test for the number of | |
4043 | entries in the VERNEED section since the | |
4044 | numbers for the needed versions do not start | |
4045 | at 0. */ | |
4046 | Elf_Internal_Verneed *t; | |
4047 | ||
4048 | verstr = NULL; | |
4049 | for (t = elf_tdata (abfd)->verref; | |
4050 | t != NULL; | |
4051 | t = t->vn_nextref) | |
4ad4eba5 | 4052 | { |
fc0e6df6 | 4053 | Elf_Internal_Vernaux *a; |
4ad4eba5 | 4054 | |
fc0e6df6 PB |
4055 | for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr) |
4056 | { | |
4057 | if (a->vna_other == vernum) | |
4ad4eba5 | 4058 | { |
fc0e6df6 PB |
4059 | verstr = a->vna_nodename; |
4060 | break; | |
4ad4eba5 | 4061 | } |
4ad4eba5 | 4062 | } |
fc0e6df6 PB |
4063 | if (a != NULL) |
4064 | break; | |
4065 | } | |
4066 | if (verstr == NULL) | |
4067 | { | |
4068 | (*_bfd_error_handler) | |
4069 | (_("%B: %s: invalid needed version %d"), | |
4070 | abfd, name, vernum); | |
4071 | bfd_set_error (bfd_error_bad_value); | |
4072 | goto error_free_vers; | |
4ad4eba5 | 4073 | } |
4ad4eba5 | 4074 | } |
fc0e6df6 PB |
4075 | |
4076 | namelen = strlen (name); | |
4077 | verlen = strlen (verstr); | |
4078 | newlen = namelen + verlen + 2; | |
4079 | if ((iver.vs_vers & VERSYM_HIDDEN) == 0 | |
4080 | && isym->st_shndx != SHN_UNDEF) | |
4081 | ++newlen; | |
4082 | ||
a50b1753 | 4083 | newname = (char *) bfd_hash_allocate (&htab->root.table, newlen); |
fc0e6df6 PB |
4084 | if (newname == NULL) |
4085 | goto error_free_vers; | |
4086 | memcpy (newname, name, namelen); | |
4087 | p = newname + namelen; | |
4088 | *p++ = ELF_VER_CHR; | |
4089 | /* If this is a defined non-hidden version symbol, | |
4090 | we add another @ to the name. This indicates the | |
4091 | default version of the symbol. */ | |
4092 | if ((iver.vs_vers & VERSYM_HIDDEN) == 0 | |
4093 | && isym->st_shndx != SHN_UNDEF) | |
4094 | *p++ = ELF_VER_CHR; | |
4095 | memcpy (p, verstr, verlen + 1); | |
4096 | ||
4097 | name = newname; | |
4ad4eba5 AM |
4098 | } |
4099 | ||
4f3fedcf AM |
4100 | if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec, &value, |
4101 | sym_hash, &old_bfd, &old_weak, | |
4102 | &old_alignment, &skip, &override, | |
4ad4eba5 AM |
4103 | &type_change_ok, &size_change_ok)) |
4104 | goto error_free_vers; | |
4105 | ||
4106 | if (skip) | |
4107 | continue; | |
4108 | ||
4109 | if (override) | |
4110 | definition = FALSE; | |
4111 | ||
4112 | h = *sym_hash; | |
4113 | while (h->root.type == bfd_link_hash_indirect | |
4114 | || h->root.type == bfd_link_hash_warning) | |
4115 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
4116 | ||
4ad4eba5 | 4117 | if (elf_tdata (abfd)->verdef != NULL |
4ad4eba5 AM |
4118 | && vernum > 1 |
4119 | && definition) | |
4120 | h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1]; | |
4121 | } | |
4122 | ||
4123 | if (! (_bfd_generic_link_add_one_symbol | |
66eb6687 | 4124 | (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect, |
4ad4eba5 AM |
4125 | (struct bfd_link_hash_entry **) sym_hash))) |
4126 | goto error_free_vers; | |
4127 | ||
4128 | h = *sym_hash; | |
90c984fc L |
4129 | /* We need to make sure that indirect symbol dynamic flags are |
4130 | updated. */ | |
4131 | hi = h; | |
4ad4eba5 AM |
4132 | while (h->root.type == bfd_link_hash_indirect |
4133 | || h->root.type == bfd_link_hash_warning) | |
4134 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
3e7a7d11 | 4135 | |
4ad4eba5 AM |
4136 | *sym_hash = h; |
4137 | ||
37a9e49a | 4138 | new_weak = (flags & BSF_WEAK) != 0; |
4ad4eba5 AM |
4139 | new_weakdef = FALSE; |
4140 | if (dynamic | |
4141 | && definition | |
37a9e49a | 4142 | && new_weak |
fcb93ecf | 4143 | && !bed->is_function_type (ELF_ST_TYPE (isym->st_info)) |
66eb6687 | 4144 | && is_elf_hash_table (htab) |
f6e332e6 | 4145 | && h->u.weakdef == NULL) |
4ad4eba5 AM |
4146 | { |
4147 | /* Keep a list of all weak defined non function symbols from | |
4148 | a dynamic object, using the weakdef field. Later in this | |
4149 | function we will set the weakdef field to the correct | |
4150 | value. We only put non-function symbols from dynamic | |
4151 | objects on this list, because that happens to be the only | |
4152 | time we need to know the normal symbol corresponding to a | |
4153 | weak symbol, and the information is time consuming to | |
4154 | figure out. If the weakdef field is not already NULL, | |
4155 | then this symbol was already defined by some previous | |
4156 | dynamic object, and we will be using that previous | |
4157 | definition anyhow. */ | |
4158 | ||
f6e332e6 | 4159 | h->u.weakdef = weaks; |
4ad4eba5 AM |
4160 | weaks = h; |
4161 | new_weakdef = TRUE; | |
4162 | } | |
4163 | ||
4164 | /* Set the alignment of a common symbol. */ | |
a4d8e49b | 4165 | if ((common || bfd_is_com_section (sec)) |
4ad4eba5 AM |
4166 | && h->root.type == bfd_link_hash_common) |
4167 | { | |
4168 | unsigned int align; | |
4169 | ||
a4d8e49b | 4170 | if (common) |
af44c138 L |
4171 | align = bfd_log2 (isym->st_value); |
4172 | else | |
4173 | { | |
4174 | /* The new symbol is a common symbol in a shared object. | |
4175 | We need to get the alignment from the section. */ | |
4176 | align = new_sec->alignment_power; | |
4177 | } | |
595213d4 | 4178 | if (align > old_alignment) |
4ad4eba5 AM |
4179 | h->root.u.c.p->alignment_power = align; |
4180 | else | |
4181 | h->root.u.c.p->alignment_power = old_alignment; | |
4182 | } | |
4183 | ||
66eb6687 | 4184 | if (is_elf_hash_table (htab)) |
4ad4eba5 | 4185 | { |
4f3fedcf AM |
4186 | /* Set a flag in the hash table entry indicating the type of |
4187 | reference or definition we just found. A dynamic symbol | |
4188 | is one which is referenced or defined by both a regular | |
4189 | object and a shared object. */ | |
4190 | bfd_boolean dynsym = FALSE; | |
4191 | ||
4192 | /* Plugin symbols aren't normal. Don't set def_regular or | |
4193 | ref_regular for them, or make them dynamic. */ | |
4194 | if ((abfd->flags & BFD_PLUGIN) != 0) | |
4195 | ; | |
4196 | else if (! dynamic) | |
4197 | { | |
4198 | if (! definition) | |
4199 | { | |
4200 | h->ref_regular = 1; | |
4201 | if (bind != STB_WEAK) | |
4202 | h->ref_regular_nonweak = 1; | |
4203 | } | |
4204 | else | |
4205 | { | |
4206 | h->def_regular = 1; | |
4207 | if (h->def_dynamic) | |
4208 | { | |
4209 | h->def_dynamic = 0; | |
4210 | h->ref_dynamic = 1; | |
4211 | } | |
4212 | } | |
4213 | ||
4214 | /* If the indirect symbol has been forced local, don't | |
4215 | make the real symbol dynamic. */ | |
4216 | if ((h == hi || !hi->forced_local) | |
4217 | && (! info->executable | |
4218 | || h->def_dynamic | |
4219 | || h->ref_dynamic)) | |
4220 | dynsym = TRUE; | |
4221 | } | |
4222 | else | |
4223 | { | |
4224 | if (! definition) | |
4225 | { | |
4226 | h->ref_dynamic = 1; | |
4227 | hi->ref_dynamic = 1; | |
4228 | } | |
4229 | else | |
4230 | { | |
4231 | h->def_dynamic = 1; | |
4232 | hi->def_dynamic = 1; | |
4233 | } | |
4234 | ||
4235 | /* If the indirect symbol has been forced local, don't | |
4236 | make the real symbol dynamic. */ | |
4237 | if ((h == hi || !hi->forced_local) | |
4238 | && (h->def_regular | |
4239 | || h->ref_regular | |
4240 | || (h->u.weakdef != NULL | |
4241 | && ! new_weakdef | |
4242 | && h->u.weakdef->dynindx != -1))) | |
4243 | dynsym = TRUE; | |
4244 | } | |
4245 | ||
4246 | /* Check to see if we need to add an indirect symbol for | |
4247 | the default name. */ | |
4248 | if (definition | |
4249 | || (!override && h->root.type == bfd_link_hash_common)) | |
4250 | if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym, | |
4251 | sec, value, &old_bfd, &dynsym)) | |
4252 | goto error_free_vers; | |
4ad4eba5 AM |
4253 | |
4254 | /* Check the alignment when a common symbol is involved. This | |
4255 | can change when a common symbol is overridden by a normal | |
4256 | definition or a common symbol is ignored due to the old | |
4257 | normal definition. We need to make sure the maximum | |
4258 | alignment is maintained. */ | |
a4d8e49b | 4259 | if ((old_alignment || common) |
4ad4eba5 AM |
4260 | && h->root.type != bfd_link_hash_common) |
4261 | { | |
4262 | unsigned int common_align; | |
4263 | unsigned int normal_align; | |
4264 | unsigned int symbol_align; | |
4265 | bfd *normal_bfd; | |
4266 | bfd *common_bfd; | |
4267 | ||
3a81e825 AM |
4268 | BFD_ASSERT (h->root.type == bfd_link_hash_defined |
4269 | || h->root.type == bfd_link_hash_defweak); | |
4270 | ||
4ad4eba5 AM |
4271 | symbol_align = ffs (h->root.u.def.value) - 1; |
4272 | if (h->root.u.def.section->owner != NULL | |
4273 | && (h->root.u.def.section->owner->flags & DYNAMIC) == 0) | |
4274 | { | |
4275 | normal_align = h->root.u.def.section->alignment_power; | |
4276 | if (normal_align > symbol_align) | |
4277 | normal_align = symbol_align; | |
4278 | } | |
4279 | else | |
4280 | normal_align = symbol_align; | |
4281 | ||
4282 | if (old_alignment) | |
4283 | { | |
4284 | common_align = old_alignment; | |
4285 | common_bfd = old_bfd; | |
4286 | normal_bfd = abfd; | |
4287 | } | |
4288 | else | |
4289 | { | |
4290 | common_align = bfd_log2 (isym->st_value); | |
4291 | common_bfd = abfd; | |
4292 | normal_bfd = old_bfd; | |
4293 | } | |
4294 | ||
4295 | if (normal_align < common_align) | |
d07676f8 NC |
4296 | { |
4297 | /* PR binutils/2735 */ | |
4298 | if (normal_bfd == NULL) | |
4299 | (*_bfd_error_handler) | |
4f3fedcf AM |
4300 | (_("Warning: alignment %u of common symbol `%s' in %B is" |
4301 | " greater than the alignment (%u) of its section %A"), | |
d07676f8 NC |
4302 | common_bfd, h->root.u.def.section, |
4303 | 1 << common_align, name, 1 << normal_align); | |
4304 | else | |
4305 | (*_bfd_error_handler) | |
4306 | (_("Warning: alignment %u of symbol `%s' in %B" | |
4307 | " is smaller than %u in %B"), | |
4308 | normal_bfd, common_bfd, | |
4309 | 1 << normal_align, name, 1 << common_align); | |
4310 | } | |
4ad4eba5 AM |
4311 | } |
4312 | ||
83ad0046 | 4313 | /* Remember the symbol size if it isn't undefined. */ |
3a81e825 AM |
4314 | if (isym->st_size != 0 |
4315 | && isym->st_shndx != SHN_UNDEF | |
4ad4eba5 AM |
4316 | && (definition || h->size == 0)) |
4317 | { | |
83ad0046 L |
4318 | if (h->size != 0 |
4319 | && h->size != isym->st_size | |
4320 | && ! size_change_ok) | |
4ad4eba5 | 4321 | (*_bfd_error_handler) |
d003868e AM |
4322 | (_("Warning: size of symbol `%s' changed" |
4323 | " from %lu in %B to %lu in %B"), | |
4324 | old_bfd, abfd, | |
4ad4eba5 | 4325 | name, (unsigned long) h->size, |
d003868e | 4326 | (unsigned long) isym->st_size); |
4ad4eba5 AM |
4327 | |
4328 | h->size = isym->st_size; | |
4329 | } | |
4330 | ||
4331 | /* If this is a common symbol, then we always want H->SIZE | |
4332 | to be the size of the common symbol. The code just above | |
4333 | won't fix the size if a common symbol becomes larger. We | |
4334 | don't warn about a size change here, because that is | |
4f3fedcf | 4335 | covered by --warn-common. Allow changes between different |
fcb93ecf | 4336 | function types. */ |
4ad4eba5 AM |
4337 | if (h->root.type == bfd_link_hash_common) |
4338 | h->size = h->root.u.c.size; | |
4339 | ||
4340 | if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE | |
37a9e49a L |
4341 | && ((definition && !new_weak) |
4342 | || (old_weak && h->root.type == bfd_link_hash_common) | |
4343 | || h->type == STT_NOTYPE)) | |
4ad4eba5 | 4344 | { |
2955ec4c L |
4345 | unsigned int type = ELF_ST_TYPE (isym->st_info); |
4346 | ||
4347 | /* Turn an IFUNC symbol from a DSO into a normal FUNC | |
4348 | symbol. */ | |
4349 | if (type == STT_GNU_IFUNC | |
4350 | && (abfd->flags & DYNAMIC) != 0) | |
4351 | type = STT_FUNC; | |
4ad4eba5 | 4352 | |
2955ec4c L |
4353 | if (h->type != type) |
4354 | { | |
4355 | if (h->type != STT_NOTYPE && ! type_change_ok) | |
4356 | (*_bfd_error_handler) | |
4357 | (_("Warning: type of symbol `%s' changed" | |
4358 | " from %d to %d in %B"), | |
4359 | abfd, name, h->type, type); | |
4360 | ||
4361 | h->type = type; | |
4362 | } | |
4ad4eba5 AM |
4363 | } |
4364 | ||
54ac0771 L |
4365 | /* Merge st_other field. */ |
4366 | elf_merge_st_other (abfd, h, isym, definition, dynamic); | |
4ad4eba5 | 4367 | |
c3df8c14 | 4368 | /* We don't want to make debug symbol dynamic. */ |
b2064611 | 4369 | if (definition && (sec->flags & SEC_DEBUGGING) && !info->relocatable) |
c3df8c14 AM |
4370 | dynsym = FALSE; |
4371 | ||
4f3fedcf AM |
4372 | /* Nor should we make plugin symbols dynamic. */ |
4373 | if ((abfd->flags & BFD_PLUGIN) != 0) | |
4374 | dynsym = FALSE; | |
4375 | ||
35fc36a8 | 4376 | if (definition) |
35399224 L |
4377 | { |
4378 | h->target_internal = isym->st_target_internal; | |
4379 | h->unique_global = (flags & BSF_GNU_UNIQUE) != 0; | |
4380 | } | |
35fc36a8 | 4381 | |
4ad4eba5 AM |
4382 | if (definition && !dynamic) |
4383 | { | |
4384 | char *p = strchr (name, ELF_VER_CHR); | |
4385 | if (p != NULL && p[1] != ELF_VER_CHR) | |
4386 | { | |
4387 | /* Queue non-default versions so that .symver x, x@FOO | |
4388 | aliases can be checked. */ | |
66eb6687 | 4389 | if (!nondeflt_vers) |
4ad4eba5 | 4390 | { |
66eb6687 AM |
4391 | amt = ((isymend - isym + 1) |
4392 | * sizeof (struct elf_link_hash_entry *)); | |
a50b1753 NC |
4393 | nondeflt_vers = |
4394 | (struct elf_link_hash_entry **) bfd_malloc (amt); | |
14b1c01e AM |
4395 | if (!nondeflt_vers) |
4396 | goto error_free_vers; | |
4ad4eba5 | 4397 | } |
66eb6687 | 4398 | nondeflt_vers[nondeflt_vers_cnt++] = h; |
4ad4eba5 AM |
4399 | } |
4400 | } | |
4401 | ||
4402 | if (dynsym && h->dynindx == -1) | |
4403 | { | |
c152c796 | 4404 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) |
4ad4eba5 | 4405 | goto error_free_vers; |
f6e332e6 | 4406 | if (h->u.weakdef != NULL |
4ad4eba5 | 4407 | && ! new_weakdef |
f6e332e6 | 4408 | && h->u.weakdef->dynindx == -1) |
4ad4eba5 | 4409 | { |
66eb6687 | 4410 | if (!bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef)) |
4ad4eba5 AM |
4411 | goto error_free_vers; |
4412 | } | |
4413 | } | |
4414 | else if (dynsym && h->dynindx != -1) | |
4415 | /* If the symbol already has a dynamic index, but | |
4416 | visibility says it should not be visible, turn it into | |
4417 | a local symbol. */ | |
4418 | switch (ELF_ST_VISIBILITY (h->other)) | |
4419 | { | |
4420 | case STV_INTERNAL: | |
4421 | case STV_HIDDEN: | |
4422 | (*bed->elf_backend_hide_symbol) (info, h, TRUE); | |
4423 | dynsym = FALSE; | |
4424 | break; | |
4425 | } | |
4426 | ||
3d5bef4c | 4427 | /* Don't add DT_NEEDED for references from the dummy bfd. */ |
4ad4eba5 AM |
4428 | if (!add_needed |
4429 | && definition | |
010e5ae2 | 4430 | && ((dynsym |
ffa9430d | 4431 | && h->ref_regular_nonweak |
4f3fedcf AM |
4432 | && (old_bfd == NULL |
4433 | || (old_bfd->flags & BFD_PLUGIN) == 0)) | |
ffa9430d | 4434 | || (h->ref_dynamic_nonweak |
010e5ae2 AM |
4435 | && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0 |
4436 | && !on_needed_list (elf_dt_name (abfd), htab->needed)))) | |
4ad4eba5 AM |
4437 | { |
4438 | int ret; | |
4439 | const char *soname = elf_dt_name (abfd); | |
4440 | ||
4441 | /* A symbol from a library loaded via DT_NEEDED of some | |
4442 | other library is referenced by a regular object. | |
e56f61be | 4443 | Add a DT_NEEDED entry for it. Issue an error if |
b918acf9 NC |
4444 | --no-add-needed is used and the reference was not |
4445 | a weak one. */ | |
4f3fedcf | 4446 | if (old_bfd != NULL |
b918acf9 | 4447 | && (elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0) |
e56f61be L |
4448 | { |
4449 | (*_bfd_error_handler) | |
3cbc5de0 | 4450 | (_("%B: undefined reference to symbol '%s'"), |
4f3fedcf | 4451 | old_bfd, name); |
ff5ac77b | 4452 | bfd_set_error (bfd_error_missing_dso); |
e56f61be L |
4453 | goto error_free_vers; |
4454 | } | |
4455 | ||
a50b1753 NC |
4456 | elf_dyn_lib_class (abfd) = (enum dynamic_lib_link_class) |
4457 | (elf_dyn_lib_class (abfd) & ~DYN_AS_NEEDED); | |
a5db907e | 4458 | |
4ad4eba5 | 4459 | add_needed = TRUE; |
7e9f0867 | 4460 | ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed); |
4ad4eba5 AM |
4461 | if (ret < 0) |
4462 | goto error_free_vers; | |
4463 | ||
4464 | BFD_ASSERT (ret == 0); | |
4465 | } | |
4466 | } | |
4467 | } | |
4468 | ||
66eb6687 AM |
4469 | if (extversym != NULL) |
4470 | { | |
4471 | free (extversym); | |
4472 | extversym = NULL; | |
4473 | } | |
4474 | ||
4475 | if (isymbuf != NULL) | |
4476 | { | |
4477 | free (isymbuf); | |
4478 | isymbuf = NULL; | |
4479 | } | |
4480 | ||
4481 | if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0) | |
4482 | { | |
4483 | unsigned int i; | |
4484 | ||
4485 | /* Restore the symbol table. */ | |
f45794cb AM |
4486 | old_ent = (char *) old_tab + tabsize; |
4487 | memset (elf_sym_hashes (abfd), 0, | |
4488 | extsymcount * sizeof (struct elf_link_hash_entry *)); | |
4f87808c AM |
4489 | htab->root.table.table = old_table; |
4490 | htab->root.table.size = old_size; | |
4491 | htab->root.table.count = old_count; | |
66eb6687 | 4492 | memcpy (htab->root.table.table, old_tab, tabsize); |
66eb6687 AM |
4493 | htab->root.undefs = old_undefs; |
4494 | htab->root.undefs_tail = old_undefs_tail; | |
d45f8bda | 4495 | _bfd_elf_strtab_restore_size (htab->dynstr, old_dynstr_size); |
66eb6687 AM |
4496 | for (i = 0; i < htab->root.table.size; i++) |
4497 | { | |
4498 | struct bfd_hash_entry *p; | |
4499 | struct elf_link_hash_entry *h; | |
3e0882af L |
4500 | bfd_size_type size; |
4501 | unsigned int alignment_power; | |
66eb6687 AM |
4502 | |
4503 | for (p = htab->root.table.table[i]; p != NULL; p = p->next) | |
4504 | { | |
4505 | h = (struct elf_link_hash_entry *) p; | |
2de92251 AM |
4506 | if (h->root.type == bfd_link_hash_warning) |
4507 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
a4542f1b AM |
4508 | if (h->dynindx >= old_dynsymcount |
4509 | && h->dynstr_index < old_dynstr_size) | |
66eb6687 | 4510 | _bfd_elf_strtab_delref (htab->dynstr, h->dynstr_index); |
2de92251 | 4511 | |
3e0882af L |
4512 | /* Preserve the maximum alignment and size for common |
4513 | symbols even if this dynamic lib isn't on DT_NEEDED | |
a4542f1b | 4514 | since it can still be loaded at run time by another |
3e0882af L |
4515 | dynamic lib. */ |
4516 | if (h->root.type == bfd_link_hash_common) | |
4517 | { | |
4518 | size = h->root.u.c.size; | |
4519 | alignment_power = h->root.u.c.p->alignment_power; | |
4520 | } | |
4521 | else | |
4522 | { | |
4523 | size = 0; | |
4524 | alignment_power = 0; | |
4525 | } | |
66eb6687 AM |
4526 | memcpy (p, old_ent, htab->root.table.entsize); |
4527 | old_ent = (char *) old_ent + htab->root.table.entsize; | |
2de92251 AM |
4528 | h = (struct elf_link_hash_entry *) p; |
4529 | if (h->root.type == bfd_link_hash_warning) | |
4530 | { | |
4531 | memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize); | |
4532 | old_ent = (char *) old_ent + htab->root.table.entsize; | |
a4542f1b | 4533 | h = (struct elf_link_hash_entry *) h->root.u.i.link; |
2de92251 | 4534 | } |
a4542f1b | 4535 | if (h->root.type == bfd_link_hash_common) |
3e0882af L |
4536 | { |
4537 | if (size > h->root.u.c.size) | |
4538 | h->root.u.c.size = size; | |
4539 | if (alignment_power > h->root.u.c.p->alignment_power) | |
4540 | h->root.u.c.p->alignment_power = alignment_power; | |
4541 | } | |
66eb6687 AM |
4542 | } |
4543 | } | |
4544 | ||
5061a885 AM |
4545 | /* Make a special call to the linker "notice" function to |
4546 | tell it that symbols added for crefs may need to be removed. */ | |
e5034e59 | 4547 | if (!(*bed->notice_as_needed) (abfd, info, notice_not_needed)) |
9af2a943 | 4548 | goto error_free_vers; |
5061a885 | 4549 | |
66eb6687 AM |
4550 | free (old_tab); |
4551 | objalloc_free_block ((struct objalloc *) htab->root.table.memory, | |
4552 | alloc_mark); | |
4553 | if (nondeflt_vers != NULL) | |
4554 | free (nondeflt_vers); | |
4555 | return TRUE; | |
4556 | } | |
2de92251 | 4557 | |
66eb6687 AM |
4558 | if (old_tab != NULL) |
4559 | { | |
e5034e59 | 4560 | if (!(*bed->notice_as_needed) (abfd, info, notice_needed)) |
9af2a943 | 4561 | goto error_free_vers; |
66eb6687 AM |
4562 | free (old_tab); |
4563 | old_tab = NULL; | |
4564 | } | |
4565 | ||
4ad4eba5 AM |
4566 | /* Now that all the symbols from this input file are created, handle |
4567 | .symver foo, foo@BAR such that any relocs against foo become foo@BAR. */ | |
4568 | if (nondeflt_vers != NULL) | |
4569 | { | |
4570 | bfd_size_type cnt, symidx; | |
4571 | ||
4572 | for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt) | |
4573 | { | |
4574 | struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi; | |
4575 | char *shortname, *p; | |
4576 | ||
4577 | p = strchr (h->root.root.string, ELF_VER_CHR); | |
4578 | if (p == NULL | |
4579 | || (h->root.type != bfd_link_hash_defined | |
4580 | && h->root.type != bfd_link_hash_defweak)) | |
4581 | continue; | |
4582 | ||
4583 | amt = p - h->root.root.string; | |
a50b1753 | 4584 | shortname = (char *) bfd_malloc (amt + 1); |
14b1c01e AM |
4585 | if (!shortname) |
4586 | goto error_free_vers; | |
4ad4eba5 AM |
4587 | memcpy (shortname, h->root.root.string, amt); |
4588 | shortname[amt] = '\0'; | |
4589 | ||
4590 | hi = (struct elf_link_hash_entry *) | |
66eb6687 | 4591 | bfd_link_hash_lookup (&htab->root, shortname, |
4ad4eba5 AM |
4592 | FALSE, FALSE, FALSE); |
4593 | if (hi != NULL | |
4594 | && hi->root.type == h->root.type | |
4595 | && hi->root.u.def.value == h->root.u.def.value | |
4596 | && hi->root.u.def.section == h->root.u.def.section) | |
4597 | { | |
4598 | (*bed->elf_backend_hide_symbol) (info, hi, TRUE); | |
4599 | hi->root.type = bfd_link_hash_indirect; | |
4600 | hi->root.u.i.link = (struct bfd_link_hash_entry *) h; | |
fcfa13d2 | 4601 | (*bed->elf_backend_copy_indirect_symbol) (info, h, hi); |
4ad4eba5 AM |
4602 | sym_hash = elf_sym_hashes (abfd); |
4603 | if (sym_hash) | |
4604 | for (symidx = 0; symidx < extsymcount; ++symidx) | |
4605 | if (sym_hash[symidx] == hi) | |
4606 | { | |
4607 | sym_hash[symidx] = h; | |
4608 | break; | |
4609 | } | |
4610 | } | |
4611 | free (shortname); | |
4612 | } | |
4613 | free (nondeflt_vers); | |
4614 | nondeflt_vers = NULL; | |
4615 | } | |
4616 | ||
4ad4eba5 AM |
4617 | /* Now set the weakdefs field correctly for all the weak defined |
4618 | symbols we found. The only way to do this is to search all the | |
4619 | symbols. Since we only need the information for non functions in | |
4620 | dynamic objects, that's the only time we actually put anything on | |
4621 | the list WEAKS. We need this information so that if a regular | |
4622 | object refers to a symbol defined weakly in a dynamic object, the | |
4623 | real symbol in the dynamic object is also put in the dynamic | |
4624 | symbols; we also must arrange for both symbols to point to the | |
4625 | same memory location. We could handle the general case of symbol | |
4626 | aliasing, but a general symbol alias can only be generated in | |
4627 | assembler code, handling it correctly would be very time | |
4628 | consuming, and other ELF linkers don't handle general aliasing | |
4629 | either. */ | |
4630 | if (weaks != NULL) | |
4631 | { | |
4632 | struct elf_link_hash_entry **hpp; | |
4633 | struct elf_link_hash_entry **hppend; | |
4634 | struct elf_link_hash_entry **sorted_sym_hash; | |
4635 | struct elf_link_hash_entry *h; | |
4636 | size_t sym_count; | |
4637 | ||
4638 | /* Since we have to search the whole symbol list for each weak | |
4639 | defined symbol, search time for N weak defined symbols will be | |
4640 | O(N^2). Binary search will cut it down to O(NlogN). */ | |
4641 | amt = extsymcount * sizeof (struct elf_link_hash_entry *); | |
a50b1753 | 4642 | sorted_sym_hash = (struct elf_link_hash_entry **) bfd_malloc (amt); |
4ad4eba5 AM |
4643 | if (sorted_sym_hash == NULL) |
4644 | goto error_return; | |
4645 | sym_hash = sorted_sym_hash; | |
4646 | hpp = elf_sym_hashes (abfd); | |
4647 | hppend = hpp + extsymcount; | |
4648 | sym_count = 0; | |
4649 | for (; hpp < hppend; hpp++) | |
4650 | { | |
4651 | h = *hpp; | |
4652 | if (h != NULL | |
4653 | && h->root.type == bfd_link_hash_defined | |
fcb93ecf | 4654 | && !bed->is_function_type (h->type)) |
4ad4eba5 AM |
4655 | { |
4656 | *sym_hash = h; | |
4657 | sym_hash++; | |
4658 | sym_count++; | |
4659 | } | |
4660 | } | |
4661 | ||
4662 | qsort (sorted_sym_hash, sym_count, | |
4663 | sizeof (struct elf_link_hash_entry *), | |
4664 | elf_sort_symbol); | |
4665 | ||
4666 | while (weaks != NULL) | |
4667 | { | |
4668 | struct elf_link_hash_entry *hlook; | |
4669 | asection *slook; | |
4670 | bfd_vma vlook; | |
ed54588d | 4671 | size_t i, j, idx = 0; |
4ad4eba5 AM |
4672 | |
4673 | hlook = weaks; | |
f6e332e6 AM |
4674 | weaks = hlook->u.weakdef; |
4675 | hlook->u.weakdef = NULL; | |
4ad4eba5 AM |
4676 | |
4677 | BFD_ASSERT (hlook->root.type == bfd_link_hash_defined | |
4678 | || hlook->root.type == bfd_link_hash_defweak | |
4679 | || hlook->root.type == bfd_link_hash_common | |
4680 | || hlook->root.type == bfd_link_hash_indirect); | |
4681 | slook = hlook->root.u.def.section; | |
4682 | vlook = hlook->root.u.def.value; | |
4683 | ||
4ad4eba5 AM |
4684 | i = 0; |
4685 | j = sym_count; | |
14160578 | 4686 | while (i != j) |
4ad4eba5 AM |
4687 | { |
4688 | bfd_signed_vma vdiff; | |
4689 | idx = (i + j) / 2; | |
14160578 | 4690 | h = sorted_sym_hash[idx]; |
4ad4eba5 AM |
4691 | vdiff = vlook - h->root.u.def.value; |
4692 | if (vdiff < 0) | |
4693 | j = idx; | |
4694 | else if (vdiff > 0) | |
4695 | i = idx + 1; | |
4696 | else | |
4697 | { | |
a9b881be | 4698 | long sdiff = slook->id - h->root.u.def.section->id; |
4ad4eba5 AM |
4699 | if (sdiff < 0) |
4700 | j = idx; | |
4701 | else if (sdiff > 0) | |
4702 | i = idx + 1; | |
4703 | else | |
14160578 | 4704 | break; |
4ad4eba5 AM |
4705 | } |
4706 | } | |
4707 | ||
4708 | /* We didn't find a value/section match. */ | |
14160578 | 4709 | if (i == j) |
4ad4eba5 AM |
4710 | continue; |
4711 | ||
14160578 AM |
4712 | /* With multiple aliases, or when the weak symbol is already |
4713 | strongly defined, we have multiple matching symbols and | |
4714 | the binary search above may land on any of them. Step | |
4715 | one past the matching symbol(s). */ | |
4716 | while (++idx != j) | |
4717 | { | |
4718 | h = sorted_sym_hash[idx]; | |
4719 | if (h->root.u.def.section != slook | |
4720 | || h->root.u.def.value != vlook) | |
4721 | break; | |
4722 | } | |
4723 | ||
4724 | /* Now look back over the aliases. Since we sorted by size | |
4725 | as well as value and section, we'll choose the one with | |
4726 | the largest size. */ | |
4727 | while (idx-- != i) | |
4ad4eba5 | 4728 | { |
14160578 | 4729 | h = sorted_sym_hash[idx]; |
4ad4eba5 AM |
4730 | |
4731 | /* Stop if value or section doesn't match. */ | |
14160578 AM |
4732 | if (h->root.u.def.section != slook |
4733 | || h->root.u.def.value != vlook) | |
4ad4eba5 AM |
4734 | break; |
4735 | else if (h != hlook) | |
4736 | { | |
f6e332e6 | 4737 | hlook->u.weakdef = h; |
4ad4eba5 AM |
4738 | |
4739 | /* If the weak definition is in the list of dynamic | |
4740 | symbols, make sure the real definition is put | |
4741 | there as well. */ | |
4742 | if (hlook->dynindx != -1 && h->dynindx == -1) | |
4743 | { | |
c152c796 | 4744 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) |
4dd07732 AM |
4745 | { |
4746 | err_free_sym_hash: | |
4747 | free (sorted_sym_hash); | |
4748 | goto error_return; | |
4749 | } | |
4ad4eba5 AM |
4750 | } |
4751 | ||
4752 | /* If the real definition is in the list of dynamic | |
4753 | symbols, make sure the weak definition is put | |
4754 | there as well. If we don't do this, then the | |
4755 | dynamic loader might not merge the entries for the | |
4756 | real definition and the weak definition. */ | |
4757 | if (h->dynindx != -1 && hlook->dynindx == -1) | |
4758 | { | |
c152c796 | 4759 | if (! bfd_elf_link_record_dynamic_symbol (info, hlook)) |
4dd07732 | 4760 | goto err_free_sym_hash; |
4ad4eba5 AM |
4761 | } |
4762 | break; | |
4763 | } | |
4764 | } | |
4765 | } | |
4766 | ||
4767 | free (sorted_sym_hash); | |
4768 | } | |
4769 | ||
33177bb1 AM |
4770 | if (bed->check_directives |
4771 | && !(*bed->check_directives) (abfd, info)) | |
4772 | return FALSE; | |
85fbca6a | 4773 | |
4ad4eba5 AM |
4774 | /* If this object is the same format as the output object, and it is |
4775 | not a shared library, then let the backend look through the | |
4776 | relocs. | |
4777 | ||
4778 | This is required to build global offset table entries and to | |
4779 | arrange for dynamic relocs. It is not required for the | |
4780 | particular common case of linking non PIC code, even when linking | |
4781 | against shared libraries, but unfortunately there is no way of | |
4782 | knowing whether an object file has been compiled PIC or not. | |
4783 | Looking through the relocs is not particularly time consuming. | |
4784 | The problem is that we must either (1) keep the relocs in memory, | |
4785 | which causes the linker to require additional runtime memory or | |
4786 | (2) read the relocs twice from the input file, which wastes time. | |
4787 | This would be a good case for using mmap. | |
4788 | ||
4789 | I have no idea how to handle linking PIC code into a file of a | |
4790 | different format. It probably can't be done. */ | |
4ad4eba5 | 4791 | if (! dynamic |
66eb6687 | 4792 | && is_elf_hash_table (htab) |
13285a1b | 4793 | && bed->check_relocs != NULL |
39334f3a | 4794 | && elf_object_id (abfd) == elf_hash_table_id (htab) |
f13a99db | 4795 | && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec)) |
4ad4eba5 AM |
4796 | { |
4797 | asection *o; | |
4798 | ||
4799 | for (o = abfd->sections; o != NULL; o = o->next) | |
4800 | { | |
4801 | Elf_Internal_Rela *internal_relocs; | |
4802 | bfd_boolean ok; | |
4803 | ||
4804 | if ((o->flags & SEC_RELOC) == 0 | |
4805 | || o->reloc_count == 0 | |
4806 | || ((info->strip == strip_all || info->strip == strip_debugger) | |
4807 | && (o->flags & SEC_DEBUGGING) != 0) | |
4808 | || bfd_is_abs_section (o->output_section)) | |
4809 | continue; | |
4810 | ||
4811 | internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL, | |
4812 | info->keep_memory); | |
4813 | if (internal_relocs == NULL) | |
4814 | goto error_return; | |
4815 | ||
66eb6687 | 4816 | ok = (*bed->check_relocs) (abfd, info, o, internal_relocs); |
4ad4eba5 AM |
4817 | |
4818 | if (elf_section_data (o)->relocs != internal_relocs) | |
4819 | free (internal_relocs); | |
4820 | ||
4821 | if (! ok) | |
4822 | goto error_return; | |
4823 | } | |
4824 | } | |
4825 | ||
4826 | /* If this is a non-traditional link, try to optimize the handling | |
4827 | of the .stab/.stabstr sections. */ | |
4828 | if (! dynamic | |
4829 | && ! info->traditional_format | |
66eb6687 | 4830 | && is_elf_hash_table (htab) |
4ad4eba5 AM |
4831 | && (info->strip != strip_all && info->strip != strip_debugger)) |
4832 | { | |
4833 | asection *stabstr; | |
4834 | ||
4835 | stabstr = bfd_get_section_by_name (abfd, ".stabstr"); | |
4836 | if (stabstr != NULL) | |
4837 | { | |
4838 | bfd_size_type string_offset = 0; | |
4839 | asection *stab; | |
4840 | ||
4841 | for (stab = abfd->sections; stab; stab = stab->next) | |
0112cd26 | 4842 | if (CONST_STRNEQ (stab->name, ".stab") |
4ad4eba5 AM |
4843 | && (!stab->name[5] || |
4844 | (stab->name[5] == '.' && ISDIGIT (stab->name[6]))) | |
4845 | && (stab->flags & SEC_MERGE) == 0 | |
4846 | && !bfd_is_abs_section (stab->output_section)) | |
4847 | { | |
4848 | struct bfd_elf_section_data *secdata; | |
4849 | ||
4850 | secdata = elf_section_data (stab); | |
66eb6687 AM |
4851 | if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab, |
4852 | stabstr, &secdata->sec_info, | |
4ad4eba5 AM |
4853 | &string_offset)) |
4854 | goto error_return; | |
4855 | if (secdata->sec_info) | |
dbaa2011 | 4856 | stab->sec_info_type = SEC_INFO_TYPE_STABS; |
4ad4eba5 AM |
4857 | } |
4858 | } | |
4859 | } | |
4860 | ||
66eb6687 | 4861 | if (is_elf_hash_table (htab) && add_needed) |
4ad4eba5 AM |
4862 | { |
4863 | /* Add this bfd to the loaded list. */ | |
4864 | struct elf_link_loaded_list *n; | |
4865 | ||
a50b1753 NC |
4866 | n = (struct elf_link_loaded_list *) |
4867 | bfd_alloc (abfd, sizeof (struct elf_link_loaded_list)); | |
4ad4eba5 AM |
4868 | if (n == NULL) |
4869 | goto error_return; | |
4870 | n->abfd = abfd; | |
66eb6687 AM |
4871 | n->next = htab->loaded; |
4872 | htab->loaded = n; | |
4ad4eba5 AM |
4873 | } |
4874 | ||
4875 | return TRUE; | |
4876 | ||
4877 | error_free_vers: | |
66eb6687 AM |
4878 | if (old_tab != NULL) |
4879 | free (old_tab); | |
4ad4eba5 AM |
4880 | if (nondeflt_vers != NULL) |
4881 | free (nondeflt_vers); | |
4882 | if (extversym != NULL) | |
4883 | free (extversym); | |
4884 | error_free_sym: | |
4885 | if (isymbuf != NULL) | |
4886 | free (isymbuf); | |
4887 | error_return: | |
4888 | return FALSE; | |
4889 | } | |
4890 | ||
8387904d AM |
4891 | /* Return the linker hash table entry of a symbol that might be |
4892 | satisfied by an archive symbol. Return -1 on error. */ | |
4893 | ||
4894 | struct elf_link_hash_entry * | |
4895 | _bfd_elf_archive_symbol_lookup (bfd *abfd, | |
4896 | struct bfd_link_info *info, | |
4897 | const char *name) | |
4898 | { | |
4899 | struct elf_link_hash_entry *h; | |
4900 | char *p, *copy; | |
4901 | size_t len, first; | |
4902 | ||
2a41f396 | 4903 | h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE); |
8387904d AM |
4904 | if (h != NULL) |
4905 | return h; | |
4906 | ||
4907 | /* If this is a default version (the name contains @@), look up the | |
4908 | symbol again with only one `@' as well as without the version. | |
4909 | The effect is that references to the symbol with and without the | |
4910 | version will be matched by the default symbol in the archive. */ | |
4911 | ||
4912 | p = strchr (name, ELF_VER_CHR); | |
4913 | if (p == NULL || p[1] != ELF_VER_CHR) | |
4914 | return h; | |
4915 | ||
4916 | /* First check with only one `@'. */ | |
4917 | len = strlen (name); | |
a50b1753 | 4918 | copy = (char *) bfd_alloc (abfd, len); |
8387904d AM |
4919 | if (copy == NULL) |
4920 | return (struct elf_link_hash_entry *) 0 - 1; | |
4921 | ||
4922 | first = p - name + 1; | |
4923 | memcpy (copy, name, first); | |
4924 | memcpy (copy + first, name + first + 1, len - first); | |
4925 | ||
2a41f396 | 4926 | h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE); |
8387904d AM |
4927 | if (h == NULL) |
4928 | { | |
4929 | /* We also need to check references to the symbol without the | |
4930 | version. */ | |
4931 | copy[first - 1] = '\0'; | |
4932 | h = elf_link_hash_lookup (elf_hash_table (info), copy, | |
2a41f396 | 4933 | FALSE, FALSE, TRUE); |
8387904d AM |
4934 | } |
4935 | ||
4936 | bfd_release (abfd, copy); | |
4937 | return h; | |
4938 | } | |
4939 | ||
0ad989f9 L |
4940 | /* Add symbols from an ELF archive file to the linker hash table. We |
4941 | don't use _bfd_generic_link_add_archive_symbols because of a | |
4942 | problem which arises on UnixWare. The UnixWare libc.so is an | |
4943 | archive which includes an entry libc.so.1 which defines a bunch of | |
4944 | symbols. The libc.so archive also includes a number of other | |
4945 | object files, which also define symbols, some of which are the same | |
4946 | as those defined in libc.so.1. Correct linking requires that we | |
4947 | consider each object file in turn, and include it if it defines any | |
4948 | symbols we need. _bfd_generic_link_add_archive_symbols does not do | |
4949 | this; it looks through the list of undefined symbols, and includes | |
4950 | any object file which defines them. When this algorithm is used on | |
4951 | UnixWare, it winds up pulling in libc.so.1 early and defining a | |
4952 | bunch of symbols. This means that some of the other objects in the | |
4953 | archive are not included in the link, which is incorrect since they | |
4954 | precede libc.so.1 in the archive. | |
4955 | ||
4956 | Fortunately, ELF archive handling is simpler than that done by | |
4957 | _bfd_generic_link_add_archive_symbols, which has to allow for a.out | |
4958 | oddities. In ELF, if we find a symbol in the archive map, and the | |
4959 | symbol is currently undefined, we know that we must pull in that | |
4960 | object file. | |
4961 | ||
4962 | Unfortunately, we do have to make multiple passes over the symbol | |
4963 | table until nothing further is resolved. */ | |
4964 | ||
4ad4eba5 AM |
4965 | static bfd_boolean |
4966 | elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info) | |
0ad989f9 L |
4967 | { |
4968 | symindex c; | |
4969 | bfd_boolean *defined = NULL; | |
4970 | bfd_boolean *included = NULL; | |
4971 | carsym *symdefs; | |
4972 | bfd_boolean loop; | |
4973 | bfd_size_type amt; | |
8387904d AM |
4974 | const struct elf_backend_data *bed; |
4975 | struct elf_link_hash_entry * (*archive_symbol_lookup) | |
4976 | (bfd *, struct bfd_link_info *, const char *); | |
0ad989f9 L |
4977 | |
4978 | if (! bfd_has_map (abfd)) | |
4979 | { | |
4980 | /* An empty archive is a special case. */ | |
4981 | if (bfd_openr_next_archived_file (abfd, NULL) == NULL) | |
4982 | return TRUE; | |
4983 | bfd_set_error (bfd_error_no_armap); | |
4984 | return FALSE; | |
4985 | } | |
4986 | ||
4987 | /* Keep track of all symbols we know to be already defined, and all | |
4988 | files we know to be already included. This is to speed up the | |
4989 | second and subsequent passes. */ | |
4990 | c = bfd_ardata (abfd)->symdef_count; | |
4991 | if (c == 0) | |
4992 | return TRUE; | |
4993 | amt = c; | |
4994 | amt *= sizeof (bfd_boolean); | |
a50b1753 NC |
4995 | defined = (bfd_boolean *) bfd_zmalloc (amt); |
4996 | included = (bfd_boolean *) bfd_zmalloc (amt); | |
0ad989f9 L |
4997 | if (defined == NULL || included == NULL) |
4998 | goto error_return; | |
4999 | ||
5000 | symdefs = bfd_ardata (abfd)->symdefs; | |
8387904d AM |
5001 | bed = get_elf_backend_data (abfd); |
5002 | archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup; | |
0ad989f9 L |
5003 | |
5004 | do | |
5005 | { | |
5006 | file_ptr last; | |
5007 | symindex i; | |
5008 | carsym *symdef; | |
5009 | carsym *symdefend; | |
5010 | ||
5011 | loop = FALSE; | |
5012 | last = -1; | |
5013 | ||
5014 | symdef = symdefs; | |
5015 | symdefend = symdef + c; | |
5016 | for (i = 0; symdef < symdefend; symdef++, i++) | |
5017 | { | |
5018 | struct elf_link_hash_entry *h; | |
5019 | bfd *element; | |
5020 | struct bfd_link_hash_entry *undefs_tail; | |
5021 | symindex mark; | |
5022 | ||
5023 | if (defined[i] || included[i]) | |
5024 | continue; | |
5025 | if (symdef->file_offset == last) | |
5026 | { | |
5027 | included[i] = TRUE; | |
5028 | continue; | |
5029 | } | |
5030 | ||
8387904d AM |
5031 | h = archive_symbol_lookup (abfd, info, symdef->name); |
5032 | if (h == (struct elf_link_hash_entry *) 0 - 1) | |
5033 | goto error_return; | |
0ad989f9 L |
5034 | |
5035 | if (h == NULL) | |
5036 | continue; | |
5037 | ||
5038 | if (h->root.type == bfd_link_hash_common) | |
5039 | { | |
5040 | /* We currently have a common symbol. The archive map contains | |
5041 | a reference to this symbol, so we may want to include it. We | |
5042 | only want to include it however, if this archive element | |
5043 | contains a definition of the symbol, not just another common | |
5044 | declaration of it. | |
5045 | ||
5046 | Unfortunately some archivers (including GNU ar) will put | |
5047 | declarations of common symbols into their archive maps, as | |
5048 | well as real definitions, so we cannot just go by the archive | |
5049 | map alone. Instead we must read in the element's symbol | |
5050 | table and check that to see what kind of symbol definition | |
5051 | this is. */ | |
5052 | if (! elf_link_is_defined_archive_symbol (abfd, symdef)) | |
5053 | continue; | |
5054 | } | |
5055 | else if (h->root.type != bfd_link_hash_undefined) | |
5056 | { | |
5057 | if (h->root.type != bfd_link_hash_undefweak) | |
5058 | defined[i] = TRUE; | |
5059 | continue; | |
5060 | } | |
5061 | ||
5062 | /* We need to include this archive member. */ | |
5063 | element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset); | |
5064 | if (element == NULL) | |
5065 | goto error_return; | |
5066 | ||
5067 | if (! bfd_check_format (element, bfd_object)) | |
5068 | goto error_return; | |
5069 | ||
5070 | /* Doublecheck that we have not included this object | |
5071 | already--it should be impossible, but there may be | |
5072 | something wrong with the archive. */ | |
5073 | if (element->archive_pass != 0) | |
5074 | { | |
5075 | bfd_set_error (bfd_error_bad_value); | |
5076 | goto error_return; | |
5077 | } | |
5078 | element->archive_pass = 1; | |
5079 | ||
5080 | undefs_tail = info->hash->undefs_tail; | |
5081 | ||
0e144ba7 AM |
5082 | if (!(*info->callbacks |
5083 | ->add_archive_element) (info, element, symdef->name, &element)) | |
0ad989f9 | 5084 | goto error_return; |
0e144ba7 | 5085 | if (!bfd_link_add_symbols (element, info)) |
0ad989f9 L |
5086 | goto error_return; |
5087 | ||
5088 | /* If there are any new undefined symbols, we need to make | |
5089 | another pass through the archive in order to see whether | |
5090 | they can be defined. FIXME: This isn't perfect, because | |
5091 | common symbols wind up on undefs_tail and because an | |
5092 | undefined symbol which is defined later on in this pass | |
5093 | does not require another pass. This isn't a bug, but it | |
5094 | does make the code less efficient than it could be. */ | |
5095 | if (undefs_tail != info->hash->undefs_tail) | |
5096 | loop = TRUE; | |
5097 | ||
5098 | /* Look backward to mark all symbols from this object file | |
5099 | which we have already seen in this pass. */ | |
5100 | mark = i; | |
5101 | do | |
5102 | { | |
5103 | included[mark] = TRUE; | |
5104 | if (mark == 0) | |
5105 | break; | |
5106 | --mark; | |
5107 | } | |
5108 | while (symdefs[mark].file_offset == symdef->file_offset); | |
5109 | ||
5110 | /* We mark subsequent symbols from this object file as we go | |
5111 | on through the loop. */ | |
5112 | last = symdef->file_offset; | |
5113 | } | |
5114 | } | |
5115 | while (loop); | |
5116 | ||
5117 | free (defined); | |
5118 | free (included); | |
5119 | ||
5120 | return TRUE; | |
5121 | ||
5122 | error_return: | |
5123 | if (defined != NULL) | |
5124 | free (defined); | |
5125 | if (included != NULL) | |
5126 | free (included); | |
5127 | return FALSE; | |
5128 | } | |
4ad4eba5 AM |
5129 | |
5130 | /* Given an ELF BFD, add symbols to the global hash table as | |
5131 | appropriate. */ | |
5132 | ||
5133 | bfd_boolean | |
5134 | bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info) | |
5135 | { | |
5136 | switch (bfd_get_format (abfd)) | |
5137 | { | |
5138 | case bfd_object: | |
5139 | return elf_link_add_object_symbols (abfd, info); | |
5140 | case bfd_archive: | |
5141 | return elf_link_add_archive_symbols (abfd, info); | |
5142 | default: | |
5143 | bfd_set_error (bfd_error_wrong_format); | |
5144 | return FALSE; | |
5145 | } | |
5146 | } | |
5a580b3a | 5147 | \f |
14b1c01e AM |
5148 | struct hash_codes_info |
5149 | { | |
5150 | unsigned long *hashcodes; | |
5151 | bfd_boolean error; | |
5152 | }; | |
a0c8462f | 5153 | |
5a580b3a AM |
5154 | /* This function will be called though elf_link_hash_traverse to store |
5155 | all hash value of the exported symbols in an array. */ | |
5156 | ||
5157 | static bfd_boolean | |
5158 | elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data) | |
5159 | { | |
a50b1753 | 5160 | struct hash_codes_info *inf = (struct hash_codes_info *) data; |
5a580b3a AM |
5161 | const char *name; |
5162 | char *p; | |
5163 | unsigned long ha; | |
5164 | char *alc = NULL; | |
5165 | ||
5a580b3a AM |
5166 | /* Ignore indirect symbols. These are added by the versioning code. */ |
5167 | if (h->dynindx == -1) | |
5168 | return TRUE; | |
5169 | ||
5170 | name = h->root.root.string; | |
5171 | p = strchr (name, ELF_VER_CHR); | |
5172 | if (p != NULL) | |
5173 | { | |
a50b1753 | 5174 | alc = (char *) bfd_malloc (p - name + 1); |
14b1c01e AM |
5175 | if (alc == NULL) |
5176 | { | |
5177 | inf->error = TRUE; | |
5178 | return FALSE; | |
5179 | } | |
5a580b3a AM |
5180 | memcpy (alc, name, p - name); |
5181 | alc[p - name] = '\0'; | |
5182 | name = alc; | |
5183 | } | |
5184 | ||
5185 | /* Compute the hash value. */ | |
5186 | ha = bfd_elf_hash (name); | |
5187 | ||
5188 | /* Store the found hash value in the array given as the argument. */ | |
14b1c01e | 5189 | *(inf->hashcodes)++ = ha; |
5a580b3a AM |
5190 | |
5191 | /* And store it in the struct so that we can put it in the hash table | |
5192 | later. */ | |
f6e332e6 | 5193 | h->u.elf_hash_value = ha; |
5a580b3a AM |
5194 | |
5195 | if (alc != NULL) | |
5196 | free (alc); | |
5197 | ||
5198 | return TRUE; | |
5199 | } | |
5200 | ||
fdc90cb4 JJ |
5201 | struct collect_gnu_hash_codes |
5202 | { | |
5203 | bfd *output_bfd; | |
5204 | const struct elf_backend_data *bed; | |
5205 | unsigned long int nsyms; | |
5206 | unsigned long int maskbits; | |
5207 | unsigned long int *hashcodes; | |
5208 | unsigned long int *hashval; | |
5209 | unsigned long int *indx; | |
5210 | unsigned long int *counts; | |
5211 | bfd_vma *bitmask; | |
5212 | bfd_byte *contents; | |
5213 | long int min_dynindx; | |
5214 | unsigned long int bucketcount; | |
5215 | unsigned long int symindx; | |
5216 | long int local_indx; | |
5217 | long int shift1, shift2; | |
5218 | unsigned long int mask; | |
14b1c01e | 5219 | bfd_boolean error; |
fdc90cb4 JJ |
5220 | }; |
5221 | ||
5222 | /* This function will be called though elf_link_hash_traverse to store | |
5223 | all hash value of the exported symbols in an array. */ | |
5224 | ||
5225 | static bfd_boolean | |
5226 | elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data) | |
5227 | { | |
a50b1753 | 5228 | struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data; |
fdc90cb4 JJ |
5229 | const char *name; |
5230 | char *p; | |
5231 | unsigned long ha; | |
5232 | char *alc = NULL; | |
5233 | ||
fdc90cb4 JJ |
5234 | /* Ignore indirect symbols. These are added by the versioning code. */ |
5235 | if (h->dynindx == -1) | |
5236 | return TRUE; | |
5237 | ||
5238 | /* Ignore also local symbols and undefined symbols. */ | |
5239 | if (! (*s->bed->elf_hash_symbol) (h)) | |
5240 | return TRUE; | |
5241 | ||
5242 | name = h->root.root.string; | |
5243 | p = strchr (name, ELF_VER_CHR); | |
5244 | if (p != NULL) | |
5245 | { | |
a50b1753 | 5246 | alc = (char *) bfd_malloc (p - name + 1); |
14b1c01e AM |
5247 | if (alc == NULL) |
5248 | { | |
5249 | s->error = TRUE; | |
5250 | return FALSE; | |
5251 | } | |
fdc90cb4 JJ |
5252 | memcpy (alc, name, p - name); |
5253 | alc[p - name] = '\0'; | |
5254 | name = alc; | |
5255 | } | |
5256 | ||
5257 | /* Compute the hash value. */ | |
5258 | ha = bfd_elf_gnu_hash (name); | |
5259 | ||
5260 | /* Store the found hash value in the array for compute_bucket_count, | |
5261 | and also for .dynsym reordering purposes. */ | |
5262 | s->hashcodes[s->nsyms] = ha; | |
5263 | s->hashval[h->dynindx] = ha; | |
5264 | ++s->nsyms; | |
5265 | if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx) | |
5266 | s->min_dynindx = h->dynindx; | |
5267 | ||
5268 | if (alc != NULL) | |
5269 | free (alc); | |
5270 | ||
5271 | return TRUE; | |
5272 | } | |
5273 | ||
5274 | /* This function will be called though elf_link_hash_traverse to do | |
5275 | final dynaminc symbol renumbering. */ | |
5276 | ||
5277 | static bfd_boolean | |
5278 | elf_renumber_gnu_hash_syms (struct elf_link_hash_entry *h, void *data) | |
5279 | { | |
a50b1753 | 5280 | struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data; |
fdc90cb4 JJ |
5281 | unsigned long int bucket; |
5282 | unsigned long int val; | |
5283 | ||
fdc90cb4 JJ |
5284 | /* Ignore indirect symbols. */ |
5285 | if (h->dynindx == -1) | |
5286 | return TRUE; | |
5287 | ||
5288 | /* Ignore also local symbols and undefined symbols. */ | |
5289 | if (! (*s->bed->elf_hash_symbol) (h)) | |
5290 | { | |
5291 | if (h->dynindx >= s->min_dynindx) | |
5292 | h->dynindx = s->local_indx++; | |
5293 | return TRUE; | |
5294 | } | |
5295 | ||
5296 | bucket = s->hashval[h->dynindx] % s->bucketcount; | |
5297 | val = (s->hashval[h->dynindx] >> s->shift1) | |
5298 | & ((s->maskbits >> s->shift1) - 1); | |
5299 | s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask); | |
5300 | s->bitmask[val] | |
5301 | |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask); | |
5302 | val = s->hashval[h->dynindx] & ~(unsigned long int) 1; | |
5303 | if (s->counts[bucket] == 1) | |
5304 | /* Last element terminates the chain. */ | |
5305 | val |= 1; | |
5306 | bfd_put_32 (s->output_bfd, val, | |
5307 | s->contents + (s->indx[bucket] - s->symindx) * 4); | |
5308 | --s->counts[bucket]; | |
5309 | h->dynindx = s->indx[bucket]++; | |
5310 | return TRUE; | |
5311 | } | |
5312 | ||
5313 | /* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */ | |
5314 | ||
5315 | bfd_boolean | |
5316 | _bfd_elf_hash_symbol (struct elf_link_hash_entry *h) | |
5317 | { | |
5318 | return !(h->forced_local | |
5319 | || h->root.type == bfd_link_hash_undefined | |
5320 | || h->root.type == bfd_link_hash_undefweak | |
5321 | || ((h->root.type == bfd_link_hash_defined | |
5322 | || h->root.type == bfd_link_hash_defweak) | |
5323 | && h->root.u.def.section->output_section == NULL)); | |
5324 | } | |
5325 | ||
5a580b3a AM |
5326 | /* Array used to determine the number of hash table buckets to use |
5327 | based on the number of symbols there are. If there are fewer than | |
5328 | 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets, | |
5329 | fewer than 37 we use 17 buckets, and so forth. We never use more | |
5330 | than 32771 buckets. */ | |
5331 | ||
5332 | static const size_t elf_buckets[] = | |
5333 | { | |
5334 | 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209, | |
5335 | 16411, 32771, 0 | |
5336 | }; | |
5337 | ||
5338 | /* Compute bucket count for hashing table. We do not use a static set | |
5339 | of possible tables sizes anymore. Instead we determine for all | |
5340 | possible reasonable sizes of the table the outcome (i.e., the | |
5341 | number of collisions etc) and choose the best solution. The | |
5342 | weighting functions are not too simple to allow the table to grow | |
5343 | without bounds. Instead one of the weighting factors is the size. | |
5344 | Therefore the result is always a good payoff between few collisions | |
5345 | (= short chain lengths) and table size. */ | |
5346 | static size_t | |
b20dd2ce | 5347 | compute_bucket_count (struct bfd_link_info *info ATTRIBUTE_UNUSED, |
d40f3da9 AM |
5348 | unsigned long int *hashcodes ATTRIBUTE_UNUSED, |
5349 | unsigned long int nsyms, | |
5350 | int gnu_hash) | |
5a580b3a | 5351 | { |
5a580b3a | 5352 | size_t best_size = 0; |
5a580b3a | 5353 | unsigned long int i; |
5a580b3a | 5354 | |
5a580b3a AM |
5355 | /* We have a problem here. The following code to optimize the table |
5356 | size requires an integer type with more the 32 bits. If | |
5357 | BFD_HOST_U_64_BIT is set we know about such a type. */ | |
5358 | #ifdef BFD_HOST_U_64_BIT | |
5359 | if (info->optimize) | |
5360 | { | |
5a580b3a AM |
5361 | size_t minsize; |
5362 | size_t maxsize; | |
5363 | BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0); | |
5a580b3a | 5364 | bfd *dynobj = elf_hash_table (info)->dynobj; |
d40f3da9 | 5365 | size_t dynsymcount = elf_hash_table (info)->dynsymcount; |
5a580b3a | 5366 | const struct elf_backend_data *bed = get_elf_backend_data (dynobj); |
fdc90cb4 | 5367 | unsigned long int *counts; |
d40f3da9 | 5368 | bfd_size_type amt; |
0883b6e0 | 5369 | unsigned int no_improvement_count = 0; |
5a580b3a AM |
5370 | |
5371 | /* Possible optimization parameters: if we have NSYMS symbols we say | |
5372 | that the hashing table must at least have NSYMS/4 and at most | |
5373 | 2*NSYMS buckets. */ | |
5374 | minsize = nsyms / 4; | |
5375 | if (minsize == 0) | |
5376 | minsize = 1; | |
5377 | best_size = maxsize = nsyms * 2; | |
fdc90cb4 JJ |
5378 | if (gnu_hash) |
5379 | { | |
5380 | if (minsize < 2) | |
5381 | minsize = 2; | |
5382 | if ((best_size & 31) == 0) | |
5383 | ++best_size; | |
5384 | } | |
5a580b3a AM |
5385 | |
5386 | /* Create array where we count the collisions in. We must use bfd_malloc | |
5387 | since the size could be large. */ | |
5388 | amt = maxsize; | |
5389 | amt *= sizeof (unsigned long int); | |
a50b1753 | 5390 | counts = (unsigned long int *) bfd_malloc (amt); |
5a580b3a | 5391 | if (counts == NULL) |
fdc90cb4 | 5392 | return 0; |
5a580b3a AM |
5393 | |
5394 | /* Compute the "optimal" size for the hash table. The criteria is a | |
5395 | minimal chain length. The minor criteria is (of course) the size | |
5396 | of the table. */ | |
5397 | for (i = minsize; i < maxsize; ++i) | |
5398 | { | |
5399 | /* Walk through the array of hashcodes and count the collisions. */ | |
5400 | BFD_HOST_U_64_BIT max; | |
5401 | unsigned long int j; | |
5402 | unsigned long int fact; | |
5403 | ||
fdc90cb4 JJ |
5404 | if (gnu_hash && (i & 31) == 0) |
5405 | continue; | |
5406 | ||
5a580b3a AM |
5407 | memset (counts, '\0', i * sizeof (unsigned long int)); |
5408 | ||
5409 | /* Determine how often each hash bucket is used. */ | |
5410 | for (j = 0; j < nsyms; ++j) | |
5411 | ++counts[hashcodes[j] % i]; | |
5412 | ||
5413 | /* For the weight function we need some information about the | |
5414 | pagesize on the target. This is information need not be 100% | |
5415 | accurate. Since this information is not available (so far) we | |
5416 | define it here to a reasonable default value. If it is crucial | |
5417 | to have a better value some day simply define this value. */ | |
5418 | # ifndef BFD_TARGET_PAGESIZE | |
5419 | # define BFD_TARGET_PAGESIZE (4096) | |
5420 | # endif | |
5421 | ||
fdc90cb4 JJ |
5422 | /* We in any case need 2 + DYNSYMCOUNT entries for the size values |
5423 | and the chains. */ | |
5424 | max = (2 + dynsymcount) * bed->s->sizeof_hash_entry; | |
5a580b3a AM |
5425 | |
5426 | # if 1 | |
5427 | /* Variant 1: optimize for short chains. We add the squares | |
5428 | of all the chain lengths (which favors many small chain | |
5429 | over a few long chains). */ | |
5430 | for (j = 0; j < i; ++j) | |
5431 | max += counts[j] * counts[j]; | |
5432 | ||
5433 | /* This adds penalties for the overall size of the table. */ | |
fdc90cb4 | 5434 | fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1; |
5a580b3a AM |
5435 | max *= fact * fact; |
5436 | # else | |
5437 | /* Variant 2: Optimize a lot more for small table. Here we | |
5438 | also add squares of the size but we also add penalties for | |
5439 | empty slots (the +1 term). */ | |
5440 | for (j = 0; j < i; ++j) | |
5441 | max += (1 + counts[j]) * (1 + counts[j]); | |
5442 | ||
5443 | /* The overall size of the table is considered, but not as | |
5444 | strong as in variant 1, where it is squared. */ | |
fdc90cb4 | 5445 | fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1; |
5a580b3a AM |
5446 | max *= fact; |
5447 | # endif | |
5448 | ||
5449 | /* Compare with current best results. */ | |
5450 | if (max < best_chlen) | |
5451 | { | |
5452 | best_chlen = max; | |
5453 | best_size = i; | |
0883b6e0 | 5454 | no_improvement_count = 0; |
5a580b3a | 5455 | } |
0883b6e0 NC |
5456 | /* PR 11843: Avoid futile long searches for the best bucket size |
5457 | when there are a large number of symbols. */ | |
5458 | else if (++no_improvement_count == 100) | |
5459 | break; | |
5a580b3a AM |
5460 | } |
5461 | ||
5462 | free (counts); | |
5463 | } | |
5464 | else | |
5465 | #endif /* defined (BFD_HOST_U_64_BIT) */ | |
5466 | { | |
5467 | /* This is the fallback solution if no 64bit type is available or if we | |
5468 | are not supposed to spend much time on optimizations. We select the | |
5469 | bucket count using a fixed set of numbers. */ | |
5470 | for (i = 0; elf_buckets[i] != 0; i++) | |
5471 | { | |
5472 | best_size = elf_buckets[i]; | |
fdc90cb4 | 5473 | if (nsyms < elf_buckets[i + 1]) |
5a580b3a AM |
5474 | break; |
5475 | } | |
fdc90cb4 JJ |
5476 | if (gnu_hash && best_size < 2) |
5477 | best_size = 2; | |
5a580b3a AM |
5478 | } |
5479 | ||
5a580b3a AM |
5480 | return best_size; |
5481 | } | |
5482 | ||
d0bf826b AM |
5483 | /* Size any SHT_GROUP section for ld -r. */ |
5484 | ||
5485 | bfd_boolean | |
5486 | _bfd_elf_size_group_sections (struct bfd_link_info *info) | |
5487 | { | |
5488 | bfd *ibfd; | |
5489 | ||
5490 | for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next) | |
5491 | if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour | |
5492 | && !_bfd_elf_fixup_group_sections (ibfd, bfd_abs_section_ptr)) | |
5493 | return FALSE; | |
5494 | return TRUE; | |
5495 | } | |
5496 | ||
04c3a755 NS |
5497 | /* Set a default stack segment size. The value in INFO wins. If it |
5498 | is unset, LEGACY_SYMBOL's value is used, and if that symbol is | |
5499 | undefined it is initialized. */ | |
5500 | ||
5501 | bfd_boolean | |
5502 | bfd_elf_stack_segment_size (bfd *output_bfd, | |
5503 | struct bfd_link_info *info, | |
5504 | const char *legacy_symbol, | |
5505 | bfd_vma default_size) | |
5506 | { | |
5507 | struct elf_link_hash_entry *h = NULL; | |
5508 | ||
5509 | /* Look for legacy symbol. */ | |
5510 | if (legacy_symbol) | |
5511 | h = elf_link_hash_lookup (elf_hash_table (info), legacy_symbol, | |
5512 | FALSE, FALSE, FALSE); | |
5513 | if (h && (h->root.type == bfd_link_hash_defined | |
5514 | || h->root.type == bfd_link_hash_defweak) | |
5515 | && h->def_regular | |
5516 | && (h->type == STT_NOTYPE || h->type == STT_OBJECT)) | |
5517 | { | |
5518 | /* The symbol has no type if specified on the command line. */ | |
5519 | h->type = STT_OBJECT; | |
5520 | if (info->stacksize) | |
5521 | (*_bfd_error_handler) (_("%B: stack size specified and %s set"), | |
5522 | output_bfd, legacy_symbol); | |
5523 | else if (h->root.u.def.section != bfd_abs_section_ptr) | |
5524 | (*_bfd_error_handler) (_("%B: %s not absolute"), | |
5525 | output_bfd, legacy_symbol); | |
5526 | else | |
5527 | info->stacksize = h->root.u.def.value; | |
5528 | } | |
5529 | ||
5530 | if (!info->stacksize) | |
5531 | /* If the user didn't set a size, or explicitly inhibit the | |
5532 | size, set it now. */ | |
5533 | info->stacksize = default_size; | |
5534 | ||
5535 | /* Provide the legacy symbol, if it is referenced. */ | |
5536 | if (h && (h->root.type == bfd_link_hash_undefined | |
5537 | || h->root.type == bfd_link_hash_undefweak)) | |
5538 | { | |
5539 | struct bfd_link_hash_entry *bh = NULL; | |
5540 | ||
5541 | if (!(_bfd_generic_link_add_one_symbol | |
5542 | (info, output_bfd, legacy_symbol, | |
5543 | BSF_GLOBAL, bfd_abs_section_ptr, | |
5544 | info->stacksize >= 0 ? info->stacksize : 0, | |
5545 | NULL, FALSE, get_elf_backend_data (output_bfd)->collect, &bh))) | |
5546 | return FALSE; | |
5547 | ||
5548 | h = (struct elf_link_hash_entry *) bh; | |
5549 | h->def_regular = 1; | |
5550 | h->type = STT_OBJECT; | |
5551 | } | |
5552 | ||
5553 | return TRUE; | |
5554 | } | |
5555 | ||
5a580b3a AM |
5556 | /* Set up the sizes and contents of the ELF dynamic sections. This is |
5557 | called by the ELF linker emulation before_allocation routine. We | |
5558 | must set the sizes of the sections before the linker sets the | |
5559 | addresses of the various sections. */ | |
5560 | ||
5561 | bfd_boolean | |
5562 | bfd_elf_size_dynamic_sections (bfd *output_bfd, | |
5563 | const char *soname, | |
5564 | const char *rpath, | |
5565 | const char *filter_shlib, | |
7ee314fa AM |
5566 | const char *audit, |
5567 | const char *depaudit, | |
5a580b3a AM |
5568 | const char * const *auxiliary_filters, |
5569 | struct bfd_link_info *info, | |
fd91d419 | 5570 | asection **sinterpptr) |
5a580b3a AM |
5571 | { |
5572 | bfd_size_type soname_indx; | |
5573 | bfd *dynobj; | |
5574 | const struct elf_backend_data *bed; | |
28caa186 | 5575 | struct elf_info_failed asvinfo; |
5a580b3a AM |
5576 | |
5577 | *sinterpptr = NULL; | |
5578 | ||
5579 | soname_indx = (bfd_size_type) -1; | |
5580 | ||
5581 | if (!is_elf_hash_table (info->hash)) | |
5582 | return TRUE; | |
5583 | ||
6bfdb61b | 5584 | bed = get_elf_backend_data (output_bfd); |
04c3a755 NS |
5585 | |
5586 | /* Any syms created from now on start with -1 in | |
5587 | got.refcount/offset and plt.refcount/offset. */ | |
5588 | elf_hash_table (info)->init_got_refcount | |
5589 | = elf_hash_table (info)->init_got_offset; | |
5590 | elf_hash_table (info)->init_plt_refcount | |
5591 | = elf_hash_table (info)->init_plt_offset; | |
5592 | ||
5593 | if (info->relocatable | |
5594 | && !_bfd_elf_size_group_sections (info)) | |
5595 | return FALSE; | |
5596 | ||
5597 | /* The backend may have to create some sections regardless of whether | |
5598 | we're dynamic or not. */ | |
5599 | if (bed->elf_backend_always_size_sections | |
5600 | && ! (*bed->elf_backend_always_size_sections) (output_bfd, info)) | |
5601 | return FALSE; | |
5602 | ||
5603 | /* Determine any GNU_STACK segment requirements, after the backend | |
5604 | has had a chance to set a default segment size. */ | |
5a580b3a | 5605 | if (info->execstack) |
12bd6957 | 5606 | elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X; |
5a580b3a | 5607 | else if (info->noexecstack) |
12bd6957 | 5608 | elf_stack_flags (output_bfd) = PF_R | PF_W; |
5a580b3a AM |
5609 | else |
5610 | { | |
5611 | bfd *inputobj; | |
5612 | asection *notesec = NULL; | |
5613 | int exec = 0; | |
5614 | ||
5615 | for (inputobj = info->input_bfds; | |
5616 | inputobj; | |
5617 | inputobj = inputobj->link_next) | |
5618 | { | |
5619 | asection *s; | |
5620 | ||
a92c088a L |
5621 | if (inputobj->flags |
5622 | & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED)) | |
5a580b3a AM |
5623 | continue; |
5624 | s = bfd_get_section_by_name (inputobj, ".note.GNU-stack"); | |
5625 | if (s) | |
5626 | { | |
5627 | if (s->flags & SEC_CODE) | |
5628 | exec = PF_X; | |
5629 | notesec = s; | |
5630 | } | |
6bfdb61b | 5631 | else if (bed->default_execstack) |
5a580b3a AM |
5632 | exec = PF_X; |
5633 | } | |
04c3a755 | 5634 | if (notesec || info->stacksize > 0) |
12bd6957 | 5635 | elf_stack_flags (output_bfd) = PF_R | PF_W | exec; |
04c3a755 NS |
5636 | if (notesec && exec && info->relocatable |
5637 | && notesec->output_section != bfd_abs_section_ptr) | |
5638 | notesec->output_section->flags |= SEC_CODE; | |
5a580b3a AM |
5639 | } |
5640 | ||
5a580b3a AM |
5641 | dynobj = elf_hash_table (info)->dynobj; |
5642 | ||
9a2a56cc | 5643 | if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created) |
5a580b3a AM |
5644 | { |
5645 | struct elf_info_failed eif; | |
5646 | struct elf_link_hash_entry *h; | |
5647 | asection *dynstr; | |
5648 | struct bfd_elf_version_tree *t; | |
5649 | struct bfd_elf_version_expr *d; | |
046183de | 5650 | asection *s; |
5a580b3a AM |
5651 | bfd_boolean all_defined; |
5652 | ||
3d4d4302 | 5653 | *sinterpptr = bfd_get_linker_section (dynobj, ".interp"); |
5a580b3a AM |
5654 | BFD_ASSERT (*sinterpptr != NULL || !info->executable); |
5655 | ||
5656 | if (soname != NULL) | |
5657 | { | |
5658 | soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, | |
5659 | soname, TRUE); | |
5660 | if (soname_indx == (bfd_size_type) -1 | |
5661 | || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx)) | |
5662 | return FALSE; | |
5663 | } | |
5664 | ||
5665 | if (info->symbolic) | |
5666 | { | |
5667 | if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0)) | |
5668 | return FALSE; | |
5669 | info->flags |= DF_SYMBOLIC; | |
5670 | } | |
5671 | ||
5672 | if (rpath != NULL) | |
5673 | { | |
5674 | bfd_size_type indx; | |
b1b00fcc | 5675 | bfd_vma tag; |
5a580b3a AM |
5676 | |
5677 | indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath, | |
5678 | TRUE); | |
b1b00fcc | 5679 | if (indx == (bfd_size_type) -1) |
5a580b3a AM |
5680 | return FALSE; |
5681 | ||
b1b00fcc MF |
5682 | tag = info->new_dtags ? DT_RUNPATH : DT_RPATH; |
5683 | if (!_bfd_elf_add_dynamic_entry (info, tag, indx)) | |
5684 | return FALSE; | |
5a580b3a AM |
5685 | } |
5686 | ||
5687 | if (filter_shlib != NULL) | |
5688 | { | |
5689 | bfd_size_type indx; | |
5690 | ||
5691 | indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, | |
5692 | filter_shlib, TRUE); | |
5693 | if (indx == (bfd_size_type) -1 | |
5694 | || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx)) | |
5695 | return FALSE; | |
5696 | } | |
5697 | ||
5698 | if (auxiliary_filters != NULL) | |
5699 | { | |
5700 | const char * const *p; | |
5701 | ||
5702 | for (p = auxiliary_filters; *p != NULL; p++) | |
5703 | { | |
5704 | bfd_size_type indx; | |
5705 | ||
5706 | indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, | |
5707 | *p, TRUE); | |
5708 | if (indx == (bfd_size_type) -1 | |
5709 | || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx)) | |
5710 | return FALSE; | |
5711 | } | |
5712 | } | |
5713 | ||
7ee314fa AM |
5714 | if (audit != NULL) |
5715 | { | |
5716 | bfd_size_type indx; | |
5717 | ||
5718 | indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, audit, | |
5719 | TRUE); | |
5720 | if (indx == (bfd_size_type) -1 | |
5721 | || !_bfd_elf_add_dynamic_entry (info, DT_AUDIT, indx)) | |
5722 | return FALSE; | |
5723 | } | |
5724 | ||
5725 | if (depaudit != NULL) | |
5726 | { | |
5727 | bfd_size_type indx; | |
5728 | ||
5729 | indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, depaudit, | |
5730 | TRUE); | |
5731 | if (indx == (bfd_size_type) -1 | |
5732 | || !_bfd_elf_add_dynamic_entry (info, DT_DEPAUDIT, indx)) | |
5733 | return FALSE; | |
5734 | } | |
5735 | ||
5a580b3a | 5736 | eif.info = info; |
5a580b3a AM |
5737 | eif.failed = FALSE; |
5738 | ||
5739 | /* If we are supposed to export all symbols into the dynamic symbol | |
5740 | table (this is not the normal case), then do so. */ | |
55255dae L |
5741 | if (info->export_dynamic |
5742 | || (info->executable && info->dynamic)) | |
5a580b3a AM |
5743 | { |
5744 | elf_link_hash_traverse (elf_hash_table (info), | |
5745 | _bfd_elf_export_symbol, | |
5746 | &eif); | |
5747 | if (eif.failed) | |
5748 | return FALSE; | |
5749 | } | |
5750 | ||
5751 | /* Make all global versions with definition. */ | |
fd91d419 | 5752 | for (t = info->version_info; t != NULL; t = t->next) |
5a580b3a | 5753 | for (d = t->globals.list; d != NULL; d = d->next) |
ae5a3597 | 5754 | if (!d->symver && d->literal) |
5a580b3a AM |
5755 | { |
5756 | const char *verstr, *name; | |
5757 | size_t namelen, verlen, newlen; | |
93252b1c | 5758 | char *newname, *p, leading_char; |
5a580b3a AM |
5759 | struct elf_link_hash_entry *newh; |
5760 | ||
93252b1c | 5761 | leading_char = bfd_get_symbol_leading_char (output_bfd); |
ae5a3597 | 5762 | name = d->pattern; |
93252b1c | 5763 | namelen = strlen (name) + (leading_char != '\0'); |
5a580b3a AM |
5764 | verstr = t->name; |
5765 | verlen = strlen (verstr); | |
5766 | newlen = namelen + verlen + 3; | |
5767 | ||
a50b1753 | 5768 | newname = (char *) bfd_malloc (newlen); |
5a580b3a AM |
5769 | if (newname == NULL) |
5770 | return FALSE; | |
93252b1c MF |
5771 | newname[0] = leading_char; |
5772 | memcpy (newname + (leading_char != '\0'), name, namelen); | |
5a580b3a AM |
5773 | |
5774 | /* Check the hidden versioned definition. */ | |
5775 | p = newname + namelen; | |
5776 | *p++ = ELF_VER_CHR; | |
5777 | memcpy (p, verstr, verlen + 1); | |
5778 | newh = elf_link_hash_lookup (elf_hash_table (info), | |
5779 | newname, FALSE, FALSE, | |
5780 | FALSE); | |
5781 | if (newh == NULL | |
5782 | || (newh->root.type != bfd_link_hash_defined | |
5783 | && newh->root.type != bfd_link_hash_defweak)) | |
5784 | { | |
5785 | /* Check the default versioned definition. */ | |
5786 | *p++ = ELF_VER_CHR; | |
5787 | memcpy (p, verstr, verlen + 1); | |
5788 | newh = elf_link_hash_lookup (elf_hash_table (info), | |
5789 | newname, FALSE, FALSE, | |
5790 | FALSE); | |
5791 | } | |
5792 | free (newname); | |
5793 | ||
5794 | /* Mark this version if there is a definition and it is | |
5795 | not defined in a shared object. */ | |
5796 | if (newh != NULL | |
f5385ebf | 5797 | && !newh->def_dynamic |
5a580b3a AM |
5798 | && (newh->root.type == bfd_link_hash_defined |
5799 | || newh->root.type == bfd_link_hash_defweak)) | |
5800 | d->symver = 1; | |
5801 | } | |
5802 | ||
5803 | /* Attach all the symbols to their version information. */ | |
5a580b3a | 5804 | asvinfo.info = info; |
5a580b3a AM |
5805 | asvinfo.failed = FALSE; |
5806 | ||
5807 | elf_link_hash_traverse (elf_hash_table (info), | |
5808 | _bfd_elf_link_assign_sym_version, | |
5809 | &asvinfo); | |
5810 | if (asvinfo.failed) | |
5811 | return FALSE; | |
5812 | ||
5813 | if (!info->allow_undefined_version) | |
5814 | { | |
5815 | /* Check if all global versions have a definition. */ | |
5816 | all_defined = TRUE; | |
fd91d419 | 5817 | for (t = info->version_info; t != NULL; t = t->next) |
5a580b3a | 5818 | for (d = t->globals.list; d != NULL; d = d->next) |
ae5a3597 | 5819 | if (d->literal && !d->symver && !d->script) |
5a580b3a AM |
5820 | { |
5821 | (*_bfd_error_handler) | |
5822 | (_("%s: undefined version: %s"), | |
5823 | d->pattern, t->name); | |
5824 | all_defined = FALSE; | |
5825 | } | |
5826 | ||
5827 | if (!all_defined) | |
5828 | { | |
5829 | bfd_set_error (bfd_error_bad_value); | |
5830 | return FALSE; | |
5831 | } | |
5832 | } | |
5833 | ||
5834 | /* Find all symbols which were defined in a dynamic object and make | |
5835 | the backend pick a reasonable value for them. */ | |
5836 | elf_link_hash_traverse (elf_hash_table (info), | |
5837 | _bfd_elf_adjust_dynamic_symbol, | |
5838 | &eif); | |
5839 | if (eif.failed) | |
5840 | return FALSE; | |
5841 | ||
5842 | /* Add some entries to the .dynamic section. We fill in some of the | |
ee75fd95 | 5843 | values later, in bfd_elf_final_link, but we must add the entries |
5a580b3a AM |
5844 | now so that we know the final size of the .dynamic section. */ |
5845 | ||
5846 | /* If there are initialization and/or finalization functions to | |
5847 | call then add the corresponding DT_INIT/DT_FINI entries. */ | |
5848 | h = (info->init_function | |
5849 | ? elf_link_hash_lookup (elf_hash_table (info), | |
5850 | info->init_function, FALSE, | |
5851 | FALSE, FALSE) | |
5852 | : NULL); | |
5853 | if (h != NULL | |
f5385ebf AM |
5854 | && (h->ref_regular |
5855 | || h->def_regular)) | |
5a580b3a AM |
5856 | { |
5857 | if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0)) | |
5858 | return FALSE; | |
5859 | } | |
5860 | h = (info->fini_function | |
5861 | ? elf_link_hash_lookup (elf_hash_table (info), | |
5862 | info->fini_function, FALSE, | |
5863 | FALSE, FALSE) | |
5864 | : NULL); | |
5865 | if (h != NULL | |
f5385ebf AM |
5866 | && (h->ref_regular |
5867 | || h->def_regular)) | |
5a580b3a AM |
5868 | { |
5869 | if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0)) | |
5870 | return FALSE; | |
5871 | } | |
5872 | ||
046183de AM |
5873 | s = bfd_get_section_by_name (output_bfd, ".preinit_array"); |
5874 | if (s != NULL && s->linker_has_input) | |
5a580b3a AM |
5875 | { |
5876 | /* DT_PREINIT_ARRAY is not allowed in shared library. */ | |
5877 | if (! info->executable) | |
5878 | { | |
5879 | bfd *sub; | |
5880 | asection *o; | |
5881 | ||
5882 | for (sub = info->input_bfds; sub != NULL; | |
5883 | sub = sub->link_next) | |
3fcd97f1 JJ |
5884 | if (bfd_get_flavour (sub) == bfd_target_elf_flavour) |
5885 | for (o = sub->sections; o != NULL; o = o->next) | |
5886 | if (elf_section_data (o)->this_hdr.sh_type | |
5887 | == SHT_PREINIT_ARRAY) | |
5888 | { | |
5889 | (*_bfd_error_handler) | |
5890 | (_("%B: .preinit_array section is not allowed in DSO"), | |
5891 | sub); | |
5892 | break; | |
5893 | } | |
5a580b3a AM |
5894 | |
5895 | bfd_set_error (bfd_error_nonrepresentable_section); | |
5896 | return FALSE; | |
5897 | } | |
5898 | ||
5899 | if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0) | |
5900 | || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0)) | |
5901 | return FALSE; | |
5902 | } | |
046183de AM |
5903 | s = bfd_get_section_by_name (output_bfd, ".init_array"); |
5904 | if (s != NULL && s->linker_has_input) | |
5a580b3a AM |
5905 | { |
5906 | if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0) | |
5907 | || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0)) | |
5908 | return FALSE; | |
5909 | } | |
046183de AM |
5910 | s = bfd_get_section_by_name (output_bfd, ".fini_array"); |
5911 | if (s != NULL && s->linker_has_input) | |
5a580b3a AM |
5912 | { |
5913 | if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0) | |
5914 | || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0)) | |
5915 | return FALSE; | |
5916 | } | |
5917 | ||
3d4d4302 | 5918 | dynstr = bfd_get_linker_section (dynobj, ".dynstr"); |
5a580b3a AM |
5919 | /* If .dynstr is excluded from the link, we don't want any of |
5920 | these tags. Strictly, we should be checking each section | |
5921 | individually; This quick check covers for the case where | |
5922 | someone does a /DISCARD/ : { *(*) }. */ | |
5923 | if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr) | |
5924 | { | |
5925 | bfd_size_type strsize; | |
5926 | ||
5927 | strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr); | |
fdc90cb4 JJ |
5928 | if ((info->emit_hash |
5929 | && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0)) | |
5930 | || (info->emit_gnu_hash | |
5931 | && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0)) | |
5a580b3a AM |
5932 | || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0) |
5933 | || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0) | |
5934 | || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize) | |
5935 | || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT, | |
5936 | bed->s->sizeof_sym)) | |
5937 | return FALSE; | |
5938 | } | |
5939 | } | |
5940 | ||
5941 | /* The backend must work out the sizes of all the other dynamic | |
5942 | sections. */ | |
9a2a56cc AM |
5943 | if (dynobj != NULL |
5944 | && bed->elf_backend_size_dynamic_sections != NULL | |
5a580b3a AM |
5945 | && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info)) |
5946 | return FALSE; | |
5947 | ||
9a2a56cc AM |
5948 | if (! _bfd_elf_maybe_strip_eh_frame_hdr (info)) |
5949 | return FALSE; | |
5950 | ||
5951 | if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created) | |
5a580b3a | 5952 | { |
554220db | 5953 | unsigned long section_sym_count; |
fd91d419 | 5954 | struct bfd_elf_version_tree *verdefs; |
5a580b3a | 5955 | asection *s; |
5a580b3a AM |
5956 | |
5957 | /* Set up the version definition section. */ | |
3d4d4302 | 5958 | s = bfd_get_linker_section (dynobj, ".gnu.version_d"); |
5a580b3a AM |
5959 | BFD_ASSERT (s != NULL); |
5960 | ||
5961 | /* We may have created additional version definitions if we are | |
5962 | just linking a regular application. */ | |
fd91d419 | 5963 | verdefs = info->version_info; |
5a580b3a AM |
5964 | |
5965 | /* Skip anonymous version tag. */ | |
5966 | if (verdefs != NULL && verdefs->vernum == 0) | |
5967 | verdefs = verdefs->next; | |
5968 | ||
3e3b46e5 | 5969 | if (verdefs == NULL && !info->create_default_symver) |
8423293d | 5970 | s->flags |= SEC_EXCLUDE; |
5a580b3a AM |
5971 | else |
5972 | { | |
5973 | unsigned int cdefs; | |
5974 | bfd_size_type size; | |
5975 | struct bfd_elf_version_tree *t; | |
5976 | bfd_byte *p; | |
5977 | Elf_Internal_Verdef def; | |
5978 | Elf_Internal_Verdaux defaux; | |
3e3b46e5 PB |
5979 | struct bfd_link_hash_entry *bh; |
5980 | struct elf_link_hash_entry *h; | |
5981 | const char *name; | |
5a580b3a AM |
5982 | |
5983 | cdefs = 0; | |
5984 | size = 0; | |
5985 | ||
5986 | /* Make space for the base version. */ | |
5987 | size += sizeof (Elf_External_Verdef); | |
5988 | size += sizeof (Elf_External_Verdaux); | |
5989 | ++cdefs; | |
5990 | ||
3e3b46e5 PB |
5991 | /* Make space for the default version. */ |
5992 | if (info->create_default_symver) | |
5993 | { | |
5994 | size += sizeof (Elf_External_Verdef); | |
5995 | ++cdefs; | |
5996 | } | |
5997 | ||
5a580b3a AM |
5998 | for (t = verdefs; t != NULL; t = t->next) |
5999 | { | |
6000 | struct bfd_elf_version_deps *n; | |
6001 | ||
a6cc6b3b RO |
6002 | /* Don't emit base version twice. */ |
6003 | if (t->vernum == 0) | |
6004 | continue; | |
6005 | ||
5a580b3a AM |
6006 | size += sizeof (Elf_External_Verdef); |
6007 | size += sizeof (Elf_External_Verdaux); | |
6008 | ++cdefs; | |
6009 | ||
6010 | for (n = t->deps; n != NULL; n = n->next) | |
6011 | size += sizeof (Elf_External_Verdaux); | |
6012 | } | |
6013 | ||
eea6121a | 6014 | s->size = size; |
a50b1753 | 6015 | s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size); |
eea6121a | 6016 | if (s->contents == NULL && s->size != 0) |
5a580b3a AM |
6017 | return FALSE; |
6018 | ||
6019 | /* Fill in the version definition section. */ | |
6020 | ||
6021 | p = s->contents; | |
6022 | ||
6023 | def.vd_version = VER_DEF_CURRENT; | |
6024 | def.vd_flags = VER_FLG_BASE; | |
6025 | def.vd_ndx = 1; | |
6026 | def.vd_cnt = 1; | |
3e3b46e5 PB |
6027 | if (info->create_default_symver) |
6028 | { | |
6029 | def.vd_aux = 2 * sizeof (Elf_External_Verdef); | |
6030 | def.vd_next = sizeof (Elf_External_Verdef); | |
6031 | } | |
6032 | else | |
6033 | { | |
6034 | def.vd_aux = sizeof (Elf_External_Verdef); | |
6035 | def.vd_next = (sizeof (Elf_External_Verdef) | |
6036 | + sizeof (Elf_External_Verdaux)); | |
6037 | } | |
5a580b3a AM |
6038 | |
6039 | if (soname_indx != (bfd_size_type) -1) | |
6040 | { | |
6041 | _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr, | |
6042 | soname_indx); | |
6043 | def.vd_hash = bfd_elf_hash (soname); | |
6044 | defaux.vda_name = soname_indx; | |
3e3b46e5 | 6045 | name = soname; |
5a580b3a AM |
6046 | } |
6047 | else | |
6048 | { | |
5a580b3a AM |
6049 | bfd_size_type indx; |
6050 | ||
06084812 | 6051 | name = lbasename (output_bfd->filename); |
5a580b3a AM |
6052 | def.vd_hash = bfd_elf_hash (name); |
6053 | indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, | |
6054 | name, FALSE); | |
6055 | if (indx == (bfd_size_type) -1) | |
6056 | return FALSE; | |
6057 | defaux.vda_name = indx; | |
6058 | } | |
6059 | defaux.vda_next = 0; | |
6060 | ||
6061 | _bfd_elf_swap_verdef_out (output_bfd, &def, | |
6062 | (Elf_External_Verdef *) p); | |
6063 | p += sizeof (Elf_External_Verdef); | |
3e3b46e5 PB |
6064 | if (info->create_default_symver) |
6065 | { | |
6066 | /* Add a symbol representing this version. */ | |
6067 | bh = NULL; | |
6068 | if (! (_bfd_generic_link_add_one_symbol | |
6069 | (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr, | |
6070 | 0, NULL, FALSE, | |
6071 | get_elf_backend_data (dynobj)->collect, &bh))) | |
6072 | return FALSE; | |
6073 | h = (struct elf_link_hash_entry *) bh; | |
6074 | h->non_elf = 0; | |
6075 | h->def_regular = 1; | |
6076 | h->type = STT_OBJECT; | |
6077 | h->verinfo.vertree = NULL; | |
6078 | ||
6079 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) | |
6080 | return FALSE; | |
6081 | ||
6082 | /* Create a duplicate of the base version with the same | |
6083 | aux block, but different flags. */ | |
6084 | def.vd_flags = 0; | |
6085 | def.vd_ndx = 2; | |
6086 | def.vd_aux = sizeof (Elf_External_Verdef); | |
6087 | if (verdefs) | |
6088 | def.vd_next = (sizeof (Elf_External_Verdef) | |
6089 | + sizeof (Elf_External_Verdaux)); | |
6090 | else | |
6091 | def.vd_next = 0; | |
6092 | _bfd_elf_swap_verdef_out (output_bfd, &def, | |
6093 | (Elf_External_Verdef *) p); | |
6094 | p += sizeof (Elf_External_Verdef); | |
6095 | } | |
5a580b3a AM |
6096 | _bfd_elf_swap_verdaux_out (output_bfd, &defaux, |
6097 | (Elf_External_Verdaux *) p); | |
6098 | p += sizeof (Elf_External_Verdaux); | |
6099 | ||
6100 | for (t = verdefs; t != NULL; t = t->next) | |
6101 | { | |
6102 | unsigned int cdeps; | |
6103 | struct bfd_elf_version_deps *n; | |
5a580b3a | 6104 | |
a6cc6b3b RO |
6105 | /* Don't emit the base version twice. */ |
6106 | if (t->vernum == 0) | |
6107 | continue; | |
6108 | ||
5a580b3a AM |
6109 | cdeps = 0; |
6110 | for (n = t->deps; n != NULL; n = n->next) | |
6111 | ++cdeps; | |
6112 | ||
6113 | /* Add a symbol representing this version. */ | |
6114 | bh = NULL; | |
6115 | if (! (_bfd_generic_link_add_one_symbol | |
6116 | (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr, | |
6117 | 0, NULL, FALSE, | |
6118 | get_elf_backend_data (dynobj)->collect, &bh))) | |
6119 | return FALSE; | |
6120 | h = (struct elf_link_hash_entry *) bh; | |
f5385ebf AM |
6121 | h->non_elf = 0; |
6122 | h->def_regular = 1; | |
5a580b3a AM |
6123 | h->type = STT_OBJECT; |
6124 | h->verinfo.vertree = t; | |
6125 | ||
c152c796 | 6126 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) |
5a580b3a AM |
6127 | return FALSE; |
6128 | ||
6129 | def.vd_version = VER_DEF_CURRENT; | |
6130 | def.vd_flags = 0; | |
6131 | if (t->globals.list == NULL | |
6132 | && t->locals.list == NULL | |
6133 | && ! t->used) | |
6134 | def.vd_flags |= VER_FLG_WEAK; | |
3e3b46e5 | 6135 | def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1); |
5a580b3a AM |
6136 | def.vd_cnt = cdeps + 1; |
6137 | def.vd_hash = bfd_elf_hash (t->name); | |
6138 | def.vd_aux = sizeof (Elf_External_Verdef); | |
6139 | def.vd_next = 0; | |
a6cc6b3b RO |
6140 | |
6141 | /* If a basever node is next, it *must* be the last node in | |
6142 | the chain, otherwise Verdef construction breaks. */ | |
6143 | if (t->next != NULL && t->next->vernum == 0) | |
6144 | BFD_ASSERT (t->next->next == NULL); | |
6145 | ||
6146 | if (t->next != NULL && t->next->vernum != 0) | |
5a580b3a AM |
6147 | def.vd_next = (sizeof (Elf_External_Verdef) |
6148 | + (cdeps + 1) * sizeof (Elf_External_Verdaux)); | |
6149 | ||
6150 | _bfd_elf_swap_verdef_out (output_bfd, &def, | |
6151 | (Elf_External_Verdef *) p); | |
6152 | p += sizeof (Elf_External_Verdef); | |
6153 | ||
6154 | defaux.vda_name = h->dynstr_index; | |
6155 | _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr, | |
6156 | h->dynstr_index); | |
6157 | defaux.vda_next = 0; | |
6158 | if (t->deps != NULL) | |
6159 | defaux.vda_next = sizeof (Elf_External_Verdaux); | |
6160 | t->name_indx = defaux.vda_name; | |
6161 | ||
6162 | _bfd_elf_swap_verdaux_out (output_bfd, &defaux, | |
6163 | (Elf_External_Verdaux *) p); | |
6164 | p += sizeof (Elf_External_Verdaux); | |
6165 | ||
6166 | for (n = t->deps; n != NULL; n = n->next) | |
6167 | { | |
6168 | if (n->version_needed == NULL) | |
6169 | { | |
6170 | /* This can happen if there was an error in the | |
6171 | version script. */ | |
6172 | defaux.vda_name = 0; | |
6173 | } | |
6174 | else | |
6175 | { | |
6176 | defaux.vda_name = n->version_needed->name_indx; | |
6177 | _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr, | |
6178 | defaux.vda_name); | |
6179 | } | |
6180 | if (n->next == NULL) | |
6181 | defaux.vda_next = 0; | |
6182 | else | |
6183 | defaux.vda_next = sizeof (Elf_External_Verdaux); | |
6184 | ||
6185 | _bfd_elf_swap_verdaux_out (output_bfd, &defaux, | |
6186 | (Elf_External_Verdaux *) p); | |
6187 | p += sizeof (Elf_External_Verdaux); | |
6188 | } | |
6189 | } | |
6190 | ||
6191 | if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0) | |
6192 | || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, cdefs)) | |
6193 | return FALSE; | |
6194 | ||
6195 | elf_tdata (output_bfd)->cverdefs = cdefs; | |
6196 | } | |
6197 | ||
6198 | if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS)) | |
6199 | { | |
6200 | if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags)) | |
6201 | return FALSE; | |
6202 | } | |
6203 | else if (info->flags & DF_BIND_NOW) | |
6204 | { | |
6205 | if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0)) | |
6206 | return FALSE; | |
6207 | } | |
6208 | ||
6209 | if (info->flags_1) | |
6210 | { | |
6211 | if (info->executable) | |
6212 | info->flags_1 &= ~ (DF_1_INITFIRST | |
6213 | | DF_1_NODELETE | |
6214 | | DF_1_NOOPEN); | |
6215 | if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1)) | |
6216 | return FALSE; | |
6217 | } | |
6218 | ||
6219 | /* Work out the size of the version reference section. */ | |
6220 | ||
3d4d4302 | 6221 | s = bfd_get_linker_section (dynobj, ".gnu.version_r"); |
5a580b3a AM |
6222 | BFD_ASSERT (s != NULL); |
6223 | { | |
6224 | struct elf_find_verdep_info sinfo; | |
6225 | ||
5a580b3a AM |
6226 | sinfo.info = info; |
6227 | sinfo.vers = elf_tdata (output_bfd)->cverdefs; | |
6228 | if (sinfo.vers == 0) | |
6229 | sinfo.vers = 1; | |
6230 | sinfo.failed = FALSE; | |
6231 | ||
6232 | elf_link_hash_traverse (elf_hash_table (info), | |
6233 | _bfd_elf_link_find_version_dependencies, | |
6234 | &sinfo); | |
14b1c01e AM |
6235 | if (sinfo.failed) |
6236 | return FALSE; | |
5a580b3a AM |
6237 | |
6238 | if (elf_tdata (output_bfd)->verref == NULL) | |
8423293d | 6239 | s->flags |= SEC_EXCLUDE; |
5a580b3a AM |
6240 | else |
6241 | { | |
6242 | Elf_Internal_Verneed *t; | |
6243 | unsigned int size; | |
6244 | unsigned int crefs; | |
6245 | bfd_byte *p; | |
6246 | ||
a6cc6b3b | 6247 | /* Build the version dependency section. */ |
5a580b3a AM |
6248 | size = 0; |
6249 | crefs = 0; | |
6250 | for (t = elf_tdata (output_bfd)->verref; | |
6251 | t != NULL; | |
6252 | t = t->vn_nextref) | |
6253 | { | |
6254 | Elf_Internal_Vernaux *a; | |
6255 | ||
6256 | size += sizeof (Elf_External_Verneed); | |
6257 | ++crefs; | |
6258 | for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr) | |
6259 | size += sizeof (Elf_External_Vernaux); | |
6260 | } | |
6261 | ||
eea6121a | 6262 | s->size = size; |
a50b1753 | 6263 | s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size); |
5a580b3a AM |
6264 | if (s->contents == NULL) |
6265 | return FALSE; | |
6266 | ||
6267 | p = s->contents; | |
6268 | for (t = elf_tdata (output_bfd)->verref; | |
6269 | t != NULL; | |
6270 | t = t->vn_nextref) | |
6271 | { | |
6272 | unsigned int caux; | |
6273 | Elf_Internal_Vernaux *a; | |
6274 | bfd_size_type indx; | |
6275 | ||
6276 | caux = 0; | |
6277 | for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr) | |
6278 | ++caux; | |
6279 | ||
6280 | t->vn_version = VER_NEED_CURRENT; | |
6281 | t->vn_cnt = caux; | |
6282 | indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, | |
6283 | elf_dt_name (t->vn_bfd) != NULL | |
6284 | ? elf_dt_name (t->vn_bfd) | |
06084812 | 6285 | : lbasename (t->vn_bfd->filename), |
5a580b3a AM |
6286 | FALSE); |
6287 | if (indx == (bfd_size_type) -1) | |
6288 | return FALSE; | |
6289 | t->vn_file = indx; | |
6290 | t->vn_aux = sizeof (Elf_External_Verneed); | |
6291 | if (t->vn_nextref == NULL) | |
6292 | t->vn_next = 0; | |
6293 | else | |
6294 | t->vn_next = (sizeof (Elf_External_Verneed) | |
6295 | + caux * sizeof (Elf_External_Vernaux)); | |
6296 | ||
6297 | _bfd_elf_swap_verneed_out (output_bfd, t, | |
6298 | (Elf_External_Verneed *) p); | |
6299 | p += sizeof (Elf_External_Verneed); | |
6300 | ||
6301 | for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr) | |
6302 | { | |
6303 | a->vna_hash = bfd_elf_hash (a->vna_nodename); | |
6304 | indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, | |
6305 | a->vna_nodename, FALSE); | |
6306 | if (indx == (bfd_size_type) -1) | |
6307 | return FALSE; | |
6308 | a->vna_name = indx; | |
6309 | if (a->vna_nextptr == NULL) | |
6310 | a->vna_next = 0; | |
6311 | else | |
6312 | a->vna_next = sizeof (Elf_External_Vernaux); | |
6313 | ||
6314 | _bfd_elf_swap_vernaux_out (output_bfd, a, | |
6315 | (Elf_External_Vernaux *) p); | |
6316 | p += sizeof (Elf_External_Vernaux); | |
6317 | } | |
6318 | } | |
6319 | ||
6320 | if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0) | |
6321 | || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs)) | |
6322 | return FALSE; | |
6323 | ||
6324 | elf_tdata (output_bfd)->cverrefs = crefs; | |
6325 | } | |
6326 | } | |
6327 | ||
8423293d AM |
6328 | if ((elf_tdata (output_bfd)->cverrefs == 0 |
6329 | && elf_tdata (output_bfd)->cverdefs == 0) | |
6330 | || _bfd_elf_link_renumber_dynsyms (output_bfd, info, | |
6331 | §ion_sym_count) == 0) | |
6332 | { | |
3d4d4302 | 6333 | s = bfd_get_linker_section (dynobj, ".gnu.version"); |
8423293d AM |
6334 | s->flags |= SEC_EXCLUDE; |
6335 | } | |
6336 | } | |
6337 | return TRUE; | |
6338 | } | |
6339 | ||
74541ad4 AM |
6340 | /* Find the first non-excluded output section. We'll use its |
6341 | section symbol for some emitted relocs. */ | |
6342 | void | |
6343 | _bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info) | |
6344 | { | |
6345 | asection *s; | |
6346 | ||
6347 | for (s = output_bfd->sections; s != NULL; s = s->next) | |
6348 | if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC | |
6349 | && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s)) | |
6350 | { | |
6351 | elf_hash_table (info)->text_index_section = s; | |
6352 | break; | |
6353 | } | |
6354 | } | |
6355 | ||
6356 | /* Find two non-excluded output sections, one for code, one for data. | |
6357 | We'll use their section symbols for some emitted relocs. */ | |
6358 | void | |
6359 | _bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info) | |
6360 | { | |
6361 | asection *s; | |
6362 | ||
266b05cf DJ |
6363 | /* Data first, since setting text_index_section changes |
6364 | _bfd_elf_link_omit_section_dynsym. */ | |
74541ad4 | 6365 | for (s = output_bfd->sections; s != NULL; s = s->next) |
266b05cf | 6366 | if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY)) == SEC_ALLOC) |
74541ad4 AM |
6367 | && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s)) |
6368 | { | |
266b05cf | 6369 | elf_hash_table (info)->data_index_section = s; |
74541ad4 AM |
6370 | break; |
6371 | } | |
6372 | ||
6373 | for (s = output_bfd->sections; s != NULL; s = s->next) | |
266b05cf DJ |
6374 | if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY)) |
6375 | == (SEC_ALLOC | SEC_READONLY)) | |
74541ad4 AM |
6376 | && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s)) |
6377 | { | |
266b05cf | 6378 | elf_hash_table (info)->text_index_section = s; |
74541ad4 AM |
6379 | break; |
6380 | } | |
6381 | ||
6382 | if (elf_hash_table (info)->text_index_section == NULL) | |
6383 | elf_hash_table (info)->text_index_section | |
6384 | = elf_hash_table (info)->data_index_section; | |
6385 | } | |
6386 | ||
8423293d AM |
6387 | bfd_boolean |
6388 | bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info) | |
6389 | { | |
74541ad4 AM |
6390 | const struct elf_backend_data *bed; |
6391 | ||
8423293d AM |
6392 | if (!is_elf_hash_table (info->hash)) |
6393 | return TRUE; | |
6394 | ||
74541ad4 AM |
6395 | bed = get_elf_backend_data (output_bfd); |
6396 | (*bed->elf_backend_init_index_section) (output_bfd, info); | |
6397 | ||
8423293d AM |
6398 | if (elf_hash_table (info)->dynamic_sections_created) |
6399 | { | |
6400 | bfd *dynobj; | |
8423293d AM |
6401 | asection *s; |
6402 | bfd_size_type dynsymcount; | |
6403 | unsigned long section_sym_count; | |
8423293d AM |
6404 | unsigned int dtagcount; |
6405 | ||
6406 | dynobj = elf_hash_table (info)->dynobj; | |
6407 | ||
5a580b3a AM |
6408 | /* Assign dynsym indicies. In a shared library we generate a |
6409 | section symbol for each output section, which come first. | |
6410 | Next come all of the back-end allocated local dynamic syms, | |
6411 | followed by the rest of the global symbols. */ | |
6412 | ||
554220db AM |
6413 | dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info, |
6414 | §ion_sym_count); | |
5a580b3a AM |
6415 | |
6416 | /* Work out the size of the symbol version section. */ | |
3d4d4302 | 6417 | s = bfd_get_linker_section (dynobj, ".gnu.version"); |
5a580b3a | 6418 | BFD_ASSERT (s != NULL); |
8423293d AM |
6419 | if (dynsymcount != 0 |
6420 | && (s->flags & SEC_EXCLUDE) == 0) | |
5a580b3a | 6421 | { |
eea6121a | 6422 | s->size = dynsymcount * sizeof (Elf_External_Versym); |
a50b1753 | 6423 | s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size); |
5a580b3a AM |
6424 | if (s->contents == NULL) |
6425 | return FALSE; | |
6426 | ||
6427 | if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0)) | |
6428 | return FALSE; | |
6429 | } | |
6430 | ||
6431 | /* Set the size of the .dynsym and .hash sections. We counted | |
6432 | the number of dynamic symbols in elf_link_add_object_symbols. | |
6433 | We will build the contents of .dynsym and .hash when we build | |
6434 | the final symbol table, because until then we do not know the | |
6435 | correct value to give the symbols. We built the .dynstr | |
6436 | section as we went along in elf_link_add_object_symbols. */ | |
3d4d4302 | 6437 | s = bfd_get_linker_section (dynobj, ".dynsym"); |
5a580b3a | 6438 | BFD_ASSERT (s != NULL); |
eea6121a | 6439 | s->size = dynsymcount * bed->s->sizeof_sym; |
5a580b3a AM |
6440 | |
6441 | if (dynsymcount != 0) | |
6442 | { | |
a50b1753 | 6443 | s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size); |
554220db AM |
6444 | if (s->contents == NULL) |
6445 | return FALSE; | |
5a580b3a | 6446 | |
554220db AM |
6447 | /* The first entry in .dynsym is a dummy symbol. |
6448 | Clear all the section syms, in case we don't output them all. */ | |
6449 | ++section_sym_count; | |
6450 | memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym); | |
5a580b3a AM |
6451 | } |
6452 | ||
fdc90cb4 JJ |
6453 | elf_hash_table (info)->bucketcount = 0; |
6454 | ||
5a580b3a AM |
6455 | /* Compute the size of the hashing table. As a side effect this |
6456 | computes the hash values for all the names we export. */ | |
fdc90cb4 JJ |
6457 | if (info->emit_hash) |
6458 | { | |
6459 | unsigned long int *hashcodes; | |
14b1c01e | 6460 | struct hash_codes_info hashinf; |
fdc90cb4 JJ |
6461 | bfd_size_type amt; |
6462 | unsigned long int nsyms; | |
6463 | size_t bucketcount; | |
6464 | size_t hash_entry_size; | |
6465 | ||
6466 | /* Compute the hash values for all exported symbols. At the same | |
6467 | time store the values in an array so that we could use them for | |
6468 | optimizations. */ | |
6469 | amt = dynsymcount * sizeof (unsigned long int); | |
a50b1753 | 6470 | hashcodes = (unsigned long int *) bfd_malloc (amt); |
fdc90cb4 JJ |
6471 | if (hashcodes == NULL) |
6472 | return FALSE; | |
14b1c01e AM |
6473 | hashinf.hashcodes = hashcodes; |
6474 | hashinf.error = FALSE; | |
5a580b3a | 6475 | |
fdc90cb4 JJ |
6476 | /* Put all hash values in HASHCODES. */ |
6477 | elf_link_hash_traverse (elf_hash_table (info), | |
14b1c01e AM |
6478 | elf_collect_hash_codes, &hashinf); |
6479 | if (hashinf.error) | |
4dd07732 AM |
6480 | { |
6481 | free (hashcodes); | |
6482 | return FALSE; | |
6483 | } | |
5a580b3a | 6484 | |
14b1c01e | 6485 | nsyms = hashinf.hashcodes - hashcodes; |
fdc90cb4 JJ |
6486 | bucketcount |
6487 | = compute_bucket_count (info, hashcodes, nsyms, 0); | |
6488 | free (hashcodes); | |
6489 | ||
6490 | if (bucketcount == 0) | |
6491 | return FALSE; | |
5a580b3a | 6492 | |
fdc90cb4 JJ |
6493 | elf_hash_table (info)->bucketcount = bucketcount; |
6494 | ||
3d4d4302 | 6495 | s = bfd_get_linker_section (dynobj, ".hash"); |
fdc90cb4 JJ |
6496 | BFD_ASSERT (s != NULL); |
6497 | hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize; | |
6498 | s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size); | |
a50b1753 | 6499 | s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size); |
fdc90cb4 JJ |
6500 | if (s->contents == NULL) |
6501 | return FALSE; | |
6502 | ||
6503 | bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents); | |
6504 | bfd_put (8 * hash_entry_size, output_bfd, dynsymcount, | |
6505 | s->contents + hash_entry_size); | |
6506 | } | |
6507 | ||
6508 | if (info->emit_gnu_hash) | |
6509 | { | |
6510 | size_t i, cnt; | |
6511 | unsigned char *contents; | |
6512 | struct collect_gnu_hash_codes cinfo; | |
6513 | bfd_size_type amt; | |
6514 | size_t bucketcount; | |
6515 | ||
6516 | memset (&cinfo, 0, sizeof (cinfo)); | |
6517 | ||
6518 | /* Compute the hash values for all exported symbols. At the same | |
6519 | time store the values in an array so that we could use them for | |
6520 | optimizations. */ | |
6521 | amt = dynsymcount * 2 * sizeof (unsigned long int); | |
a50b1753 | 6522 | cinfo.hashcodes = (long unsigned int *) bfd_malloc (amt); |
fdc90cb4 JJ |
6523 | if (cinfo.hashcodes == NULL) |
6524 | return FALSE; | |
6525 | ||
6526 | cinfo.hashval = cinfo.hashcodes + dynsymcount; | |
6527 | cinfo.min_dynindx = -1; | |
6528 | cinfo.output_bfd = output_bfd; | |
6529 | cinfo.bed = bed; | |
6530 | ||
6531 | /* Put all hash values in HASHCODES. */ | |
6532 | elf_link_hash_traverse (elf_hash_table (info), | |
6533 | elf_collect_gnu_hash_codes, &cinfo); | |
14b1c01e | 6534 | if (cinfo.error) |
4dd07732 AM |
6535 | { |
6536 | free (cinfo.hashcodes); | |
6537 | return FALSE; | |
6538 | } | |
fdc90cb4 JJ |
6539 | |
6540 | bucketcount | |
6541 | = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1); | |
6542 | ||
6543 | if (bucketcount == 0) | |
6544 | { | |
6545 | free (cinfo.hashcodes); | |
6546 | return FALSE; | |
6547 | } | |
6548 | ||
3d4d4302 | 6549 | s = bfd_get_linker_section (dynobj, ".gnu.hash"); |
fdc90cb4 JJ |
6550 | BFD_ASSERT (s != NULL); |
6551 | ||
6552 | if (cinfo.nsyms == 0) | |
6553 | { | |
6554 | /* Empty .gnu.hash section is special. */ | |
6555 | BFD_ASSERT (cinfo.min_dynindx == -1); | |
6556 | free (cinfo.hashcodes); | |
6557 | s->size = 5 * 4 + bed->s->arch_size / 8; | |
a50b1753 | 6558 | contents = (unsigned char *) bfd_zalloc (output_bfd, s->size); |
fdc90cb4 JJ |
6559 | if (contents == NULL) |
6560 | return FALSE; | |
6561 | s->contents = contents; | |
6562 | /* 1 empty bucket. */ | |
6563 | bfd_put_32 (output_bfd, 1, contents); | |
6564 | /* SYMIDX above the special symbol 0. */ | |
6565 | bfd_put_32 (output_bfd, 1, contents + 4); | |
6566 | /* Just one word for bitmask. */ | |
6567 | bfd_put_32 (output_bfd, 1, contents + 8); | |
6568 | /* Only hash fn bloom filter. */ | |
6569 | bfd_put_32 (output_bfd, 0, contents + 12); | |
6570 | /* No hashes are valid - empty bitmask. */ | |
6571 | bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16); | |
6572 | /* No hashes in the only bucket. */ | |
6573 | bfd_put_32 (output_bfd, 0, | |
6574 | contents + 16 + bed->s->arch_size / 8); | |
6575 | } | |
6576 | else | |
6577 | { | |
9e6619e2 | 6578 | unsigned long int maskwords, maskbitslog2, x; |
0b33793d | 6579 | BFD_ASSERT (cinfo.min_dynindx != -1); |
fdc90cb4 | 6580 | |
9e6619e2 AM |
6581 | x = cinfo.nsyms; |
6582 | maskbitslog2 = 1; | |
6583 | while ((x >>= 1) != 0) | |
6584 | ++maskbitslog2; | |
fdc90cb4 JJ |
6585 | if (maskbitslog2 < 3) |
6586 | maskbitslog2 = 5; | |
6587 | else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms) | |
6588 | maskbitslog2 = maskbitslog2 + 3; | |
6589 | else | |
6590 | maskbitslog2 = maskbitslog2 + 2; | |
6591 | if (bed->s->arch_size == 64) | |
6592 | { | |
6593 | if (maskbitslog2 == 5) | |
6594 | maskbitslog2 = 6; | |
6595 | cinfo.shift1 = 6; | |
6596 | } | |
6597 | else | |
6598 | cinfo.shift1 = 5; | |
6599 | cinfo.mask = (1 << cinfo.shift1) - 1; | |
2ccdbfcc | 6600 | cinfo.shift2 = maskbitslog2; |
fdc90cb4 JJ |
6601 | cinfo.maskbits = 1 << maskbitslog2; |
6602 | maskwords = 1 << (maskbitslog2 - cinfo.shift1); | |
6603 | amt = bucketcount * sizeof (unsigned long int) * 2; | |
6604 | amt += maskwords * sizeof (bfd_vma); | |
a50b1753 | 6605 | cinfo.bitmask = (bfd_vma *) bfd_malloc (amt); |
fdc90cb4 JJ |
6606 | if (cinfo.bitmask == NULL) |
6607 | { | |
6608 | free (cinfo.hashcodes); | |
6609 | return FALSE; | |
6610 | } | |
6611 | ||
a50b1753 | 6612 | cinfo.counts = (long unsigned int *) (cinfo.bitmask + maskwords); |
fdc90cb4 JJ |
6613 | cinfo.indx = cinfo.counts + bucketcount; |
6614 | cinfo.symindx = dynsymcount - cinfo.nsyms; | |
6615 | memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma)); | |
6616 | ||
6617 | /* Determine how often each hash bucket is used. */ | |
6618 | memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0])); | |
6619 | for (i = 0; i < cinfo.nsyms; ++i) | |
6620 | ++cinfo.counts[cinfo.hashcodes[i] % bucketcount]; | |
6621 | ||
6622 | for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i) | |
6623 | if (cinfo.counts[i] != 0) | |
6624 | { | |
6625 | cinfo.indx[i] = cnt; | |
6626 | cnt += cinfo.counts[i]; | |
6627 | } | |
6628 | BFD_ASSERT (cnt == dynsymcount); | |
6629 | cinfo.bucketcount = bucketcount; | |
6630 | cinfo.local_indx = cinfo.min_dynindx; | |
6631 | ||
6632 | s->size = (4 + bucketcount + cinfo.nsyms) * 4; | |
6633 | s->size += cinfo.maskbits / 8; | |
a50b1753 | 6634 | contents = (unsigned char *) bfd_zalloc (output_bfd, s->size); |
fdc90cb4 JJ |
6635 | if (contents == NULL) |
6636 | { | |
6637 | free (cinfo.bitmask); | |
6638 | free (cinfo.hashcodes); | |
6639 | return FALSE; | |
6640 | } | |
6641 | ||
6642 | s->contents = contents; | |
6643 | bfd_put_32 (output_bfd, bucketcount, contents); | |
6644 | bfd_put_32 (output_bfd, cinfo.symindx, contents + 4); | |
6645 | bfd_put_32 (output_bfd, maskwords, contents + 8); | |
6646 | bfd_put_32 (output_bfd, cinfo.shift2, contents + 12); | |
6647 | contents += 16 + cinfo.maskbits / 8; | |
6648 | ||
6649 | for (i = 0; i < bucketcount; ++i) | |
6650 | { | |
6651 | if (cinfo.counts[i] == 0) | |
6652 | bfd_put_32 (output_bfd, 0, contents); | |
6653 | else | |
6654 | bfd_put_32 (output_bfd, cinfo.indx[i], contents); | |
6655 | contents += 4; | |
6656 | } | |
6657 | ||
6658 | cinfo.contents = contents; | |
6659 | ||
6660 | /* Renumber dynamic symbols, populate .gnu.hash section. */ | |
6661 | elf_link_hash_traverse (elf_hash_table (info), | |
6662 | elf_renumber_gnu_hash_syms, &cinfo); | |
6663 | ||
6664 | contents = s->contents + 16; | |
6665 | for (i = 0; i < maskwords; ++i) | |
6666 | { | |
6667 | bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i], | |
6668 | contents); | |
6669 | contents += bed->s->arch_size / 8; | |
6670 | } | |
6671 | ||
6672 | free (cinfo.bitmask); | |
6673 | free (cinfo.hashcodes); | |
6674 | } | |
6675 | } | |
5a580b3a | 6676 | |
3d4d4302 | 6677 | s = bfd_get_linker_section (dynobj, ".dynstr"); |
5a580b3a AM |
6678 | BFD_ASSERT (s != NULL); |
6679 | ||
4ad4eba5 | 6680 | elf_finalize_dynstr (output_bfd, info); |
5a580b3a | 6681 | |
eea6121a | 6682 | s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr); |
5a580b3a AM |
6683 | |
6684 | for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount) | |
6685 | if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0)) | |
6686 | return FALSE; | |
6687 | } | |
6688 | ||
6689 | return TRUE; | |
6690 | } | |
4d269e42 | 6691 | \f |
4d269e42 AM |
6692 | /* Make sure sec_info_type is cleared if sec_info is cleared too. */ |
6693 | ||
6694 | static void | |
6695 | merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED, | |
6696 | asection *sec) | |
6697 | { | |
dbaa2011 AM |
6698 | BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_MERGE); |
6699 | sec->sec_info_type = SEC_INFO_TYPE_NONE; | |
4d269e42 AM |
6700 | } |
6701 | ||
6702 | /* Finish SHF_MERGE section merging. */ | |
6703 | ||
6704 | bfd_boolean | |
6705 | _bfd_elf_merge_sections (bfd *abfd, struct bfd_link_info *info) | |
6706 | { | |
6707 | bfd *ibfd; | |
6708 | asection *sec; | |
6709 | ||
6710 | if (!is_elf_hash_table (info->hash)) | |
6711 | return FALSE; | |
6712 | ||
6713 | for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next) | |
6714 | if ((ibfd->flags & DYNAMIC) == 0) | |
6715 | for (sec = ibfd->sections; sec != NULL; sec = sec->next) | |
6716 | if ((sec->flags & SEC_MERGE) != 0 | |
6717 | && !bfd_is_abs_section (sec->output_section)) | |
6718 | { | |
6719 | struct bfd_elf_section_data *secdata; | |
6720 | ||
6721 | secdata = elf_section_data (sec); | |
6722 | if (! _bfd_add_merge_section (abfd, | |
6723 | &elf_hash_table (info)->merge_info, | |
6724 | sec, &secdata->sec_info)) | |
6725 | return FALSE; | |
6726 | else if (secdata->sec_info) | |
dbaa2011 | 6727 | sec->sec_info_type = SEC_INFO_TYPE_MERGE; |
4d269e42 AM |
6728 | } |
6729 | ||
6730 | if (elf_hash_table (info)->merge_info != NULL) | |
6731 | _bfd_merge_sections (abfd, info, elf_hash_table (info)->merge_info, | |
6732 | merge_sections_remove_hook); | |
6733 | return TRUE; | |
6734 | } | |
6735 | ||
6736 | /* Create an entry in an ELF linker hash table. */ | |
6737 | ||
6738 | struct bfd_hash_entry * | |
6739 | _bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry, | |
6740 | struct bfd_hash_table *table, | |
6741 | const char *string) | |
6742 | { | |
6743 | /* Allocate the structure if it has not already been allocated by a | |
6744 | subclass. */ | |
6745 | if (entry == NULL) | |
6746 | { | |
a50b1753 NC |
6747 | entry = (struct bfd_hash_entry *) |
6748 | bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry)); | |
4d269e42 AM |
6749 | if (entry == NULL) |
6750 | return entry; | |
6751 | } | |
6752 | ||
6753 | /* Call the allocation method of the superclass. */ | |
6754 | entry = _bfd_link_hash_newfunc (entry, table, string); | |
6755 | if (entry != NULL) | |
6756 | { | |
6757 | struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry; | |
6758 | struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table; | |
6759 | ||
6760 | /* Set local fields. */ | |
6761 | ret->indx = -1; | |
6762 | ret->dynindx = -1; | |
6763 | ret->got = htab->init_got_refcount; | |
6764 | ret->plt = htab->init_plt_refcount; | |
6765 | memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry) | |
6766 | - offsetof (struct elf_link_hash_entry, size))); | |
6767 | /* Assume that we have been called by a non-ELF symbol reader. | |
6768 | This flag is then reset by the code which reads an ELF input | |
6769 | file. This ensures that a symbol created by a non-ELF symbol | |
6770 | reader will have the flag set correctly. */ | |
6771 | ret->non_elf = 1; | |
6772 | } | |
6773 | ||
6774 | return entry; | |
6775 | } | |
6776 | ||
6777 | /* Copy data from an indirect symbol to its direct symbol, hiding the | |
6778 | old indirect symbol. Also used for copying flags to a weakdef. */ | |
6779 | ||
6780 | void | |
6781 | _bfd_elf_link_hash_copy_indirect (struct bfd_link_info *info, | |
6782 | struct elf_link_hash_entry *dir, | |
6783 | struct elf_link_hash_entry *ind) | |
6784 | { | |
6785 | struct elf_link_hash_table *htab; | |
6786 | ||
6787 | /* Copy down any references that we may have already seen to the | |
6788 | symbol which just became indirect. */ | |
6789 | ||
6790 | dir->ref_dynamic |= ind->ref_dynamic; | |
6791 | dir->ref_regular |= ind->ref_regular; | |
6792 | dir->ref_regular_nonweak |= ind->ref_regular_nonweak; | |
6793 | dir->non_got_ref |= ind->non_got_ref; | |
6794 | dir->needs_plt |= ind->needs_plt; | |
6795 | dir->pointer_equality_needed |= ind->pointer_equality_needed; | |
6796 | ||
6797 | if (ind->root.type != bfd_link_hash_indirect) | |
6798 | return; | |
6799 | ||
6800 | /* Copy over the global and procedure linkage table refcount entries. | |
6801 | These may have been already set up by a check_relocs routine. */ | |
6802 | htab = elf_hash_table (info); | |
6803 | if (ind->got.refcount > htab->init_got_refcount.refcount) | |
6804 | { | |
6805 | if (dir->got.refcount < 0) | |
6806 | dir->got.refcount = 0; | |
6807 | dir->got.refcount += ind->got.refcount; | |
6808 | ind->got.refcount = htab->init_got_refcount.refcount; | |
6809 | } | |
6810 | ||
6811 | if (ind->plt.refcount > htab->init_plt_refcount.refcount) | |
6812 | { | |
6813 | if (dir->plt.refcount < 0) | |
6814 | dir->plt.refcount = 0; | |
6815 | dir->plt.refcount += ind->plt.refcount; | |
6816 | ind->plt.refcount = htab->init_plt_refcount.refcount; | |
6817 | } | |
6818 | ||
6819 | if (ind->dynindx != -1) | |
6820 | { | |
6821 | if (dir->dynindx != -1) | |
6822 | _bfd_elf_strtab_delref (htab->dynstr, dir->dynstr_index); | |
6823 | dir->dynindx = ind->dynindx; | |
6824 | dir->dynstr_index = ind->dynstr_index; | |
6825 | ind->dynindx = -1; | |
6826 | ind->dynstr_index = 0; | |
6827 | } | |
6828 | } | |
6829 | ||
6830 | void | |
6831 | _bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info, | |
6832 | struct elf_link_hash_entry *h, | |
6833 | bfd_boolean force_local) | |
6834 | { | |
3aa14d16 L |
6835 | /* STT_GNU_IFUNC symbol must go through PLT. */ |
6836 | if (h->type != STT_GNU_IFUNC) | |
6837 | { | |
6838 | h->plt = elf_hash_table (info)->init_plt_offset; | |
6839 | h->needs_plt = 0; | |
6840 | } | |
4d269e42 AM |
6841 | if (force_local) |
6842 | { | |
6843 | h->forced_local = 1; | |
6844 | if (h->dynindx != -1) | |
6845 | { | |
6846 | h->dynindx = -1; | |
6847 | _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr, | |
6848 | h->dynstr_index); | |
6849 | } | |
6850 | } | |
6851 | } | |
6852 | ||
7bf52ea2 AM |
6853 | /* Initialize an ELF linker hash table. *TABLE has been zeroed by our |
6854 | caller. */ | |
4d269e42 AM |
6855 | |
6856 | bfd_boolean | |
6857 | _bfd_elf_link_hash_table_init | |
6858 | (struct elf_link_hash_table *table, | |
6859 | bfd *abfd, | |
6860 | struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *, | |
6861 | struct bfd_hash_table *, | |
6862 | const char *), | |
4dfe6ac6 NC |
6863 | unsigned int entsize, |
6864 | enum elf_target_id target_id) | |
4d269e42 AM |
6865 | { |
6866 | bfd_boolean ret; | |
6867 | int can_refcount = get_elf_backend_data (abfd)->can_refcount; | |
6868 | ||
4d269e42 AM |
6869 | table->init_got_refcount.refcount = can_refcount - 1; |
6870 | table->init_plt_refcount.refcount = can_refcount - 1; | |
6871 | table->init_got_offset.offset = -(bfd_vma) 1; | |
6872 | table->init_plt_offset.offset = -(bfd_vma) 1; | |
6873 | /* The first dynamic symbol is a dummy. */ | |
6874 | table->dynsymcount = 1; | |
6875 | ||
6876 | ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize); | |
4dfe6ac6 | 6877 | |
4d269e42 | 6878 | table->root.type = bfd_link_elf_hash_table; |
4dfe6ac6 | 6879 | table->hash_table_id = target_id; |
4d269e42 AM |
6880 | |
6881 | return ret; | |
6882 | } | |
6883 | ||
6884 | /* Create an ELF linker hash table. */ | |
6885 | ||
6886 | struct bfd_link_hash_table * | |
6887 | _bfd_elf_link_hash_table_create (bfd *abfd) | |
6888 | { | |
6889 | struct elf_link_hash_table *ret; | |
6890 | bfd_size_type amt = sizeof (struct elf_link_hash_table); | |
6891 | ||
7bf52ea2 | 6892 | ret = (struct elf_link_hash_table *) bfd_zmalloc (amt); |
4d269e42 AM |
6893 | if (ret == NULL) |
6894 | return NULL; | |
6895 | ||
6896 | if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc, | |
4dfe6ac6 NC |
6897 | sizeof (struct elf_link_hash_entry), |
6898 | GENERIC_ELF_DATA)) | |
4d269e42 AM |
6899 | { |
6900 | free (ret); | |
6901 | return NULL; | |
6902 | } | |
6903 | ||
6904 | return &ret->root; | |
6905 | } | |
6906 | ||
9f7c3e5e AM |
6907 | /* Destroy an ELF linker hash table. */ |
6908 | ||
6909 | void | |
6910 | _bfd_elf_link_hash_table_free (struct bfd_link_hash_table *hash) | |
6911 | { | |
6912 | struct elf_link_hash_table *htab = (struct elf_link_hash_table *) hash; | |
6913 | if (htab->dynstr != NULL) | |
6914 | _bfd_elf_strtab_free (htab->dynstr); | |
6915 | _bfd_merge_sections_free (htab->merge_info); | |
6916 | _bfd_generic_link_hash_table_free (hash); | |
6917 | } | |
6918 | ||
4d269e42 AM |
6919 | /* This is a hook for the ELF emulation code in the generic linker to |
6920 | tell the backend linker what file name to use for the DT_NEEDED | |
6921 | entry for a dynamic object. */ | |
6922 | ||
6923 | void | |
6924 | bfd_elf_set_dt_needed_name (bfd *abfd, const char *name) | |
6925 | { | |
6926 | if (bfd_get_flavour (abfd) == bfd_target_elf_flavour | |
6927 | && bfd_get_format (abfd) == bfd_object) | |
6928 | elf_dt_name (abfd) = name; | |
6929 | } | |
6930 | ||
6931 | int | |
6932 | bfd_elf_get_dyn_lib_class (bfd *abfd) | |
6933 | { | |
6934 | int lib_class; | |
6935 | if (bfd_get_flavour (abfd) == bfd_target_elf_flavour | |
6936 | && bfd_get_format (abfd) == bfd_object) | |
6937 | lib_class = elf_dyn_lib_class (abfd); | |
6938 | else | |
6939 | lib_class = 0; | |
6940 | return lib_class; | |
6941 | } | |
6942 | ||
6943 | void | |
6944 | bfd_elf_set_dyn_lib_class (bfd *abfd, enum dynamic_lib_link_class lib_class) | |
6945 | { | |
6946 | if (bfd_get_flavour (abfd) == bfd_target_elf_flavour | |
6947 | && bfd_get_format (abfd) == bfd_object) | |
6948 | elf_dyn_lib_class (abfd) = lib_class; | |
6949 | } | |
6950 | ||
6951 | /* Get the list of DT_NEEDED entries for a link. This is a hook for | |
6952 | the linker ELF emulation code. */ | |
6953 | ||
6954 | struct bfd_link_needed_list * | |
6955 | bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED, | |
6956 | struct bfd_link_info *info) | |
6957 | { | |
6958 | if (! is_elf_hash_table (info->hash)) | |
6959 | return NULL; | |
6960 | return elf_hash_table (info)->needed; | |
6961 | } | |
6962 | ||
6963 | /* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a | |
6964 | hook for the linker ELF emulation code. */ | |
6965 | ||
6966 | struct bfd_link_needed_list * | |
6967 | bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED, | |
6968 | struct bfd_link_info *info) | |
6969 | { | |
6970 | if (! is_elf_hash_table (info->hash)) | |
6971 | return NULL; | |
6972 | return elf_hash_table (info)->runpath; | |
6973 | } | |
6974 | ||
6975 | /* Get the name actually used for a dynamic object for a link. This | |
6976 | is the SONAME entry if there is one. Otherwise, it is the string | |
6977 | passed to bfd_elf_set_dt_needed_name, or it is the filename. */ | |
6978 | ||
6979 | const char * | |
6980 | bfd_elf_get_dt_soname (bfd *abfd) | |
6981 | { | |
6982 | if (bfd_get_flavour (abfd) == bfd_target_elf_flavour | |
6983 | && bfd_get_format (abfd) == bfd_object) | |
6984 | return elf_dt_name (abfd); | |
6985 | return NULL; | |
6986 | } | |
6987 | ||
6988 | /* Get the list of DT_NEEDED entries from a BFD. This is a hook for | |
6989 | the ELF linker emulation code. */ | |
6990 | ||
6991 | bfd_boolean | |
6992 | bfd_elf_get_bfd_needed_list (bfd *abfd, | |
6993 | struct bfd_link_needed_list **pneeded) | |
6994 | { | |
6995 | asection *s; | |
6996 | bfd_byte *dynbuf = NULL; | |
cb33740c | 6997 | unsigned int elfsec; |
4d269e42 AM |
6998 | unsigned long shlink; |
6999 | bfd_byte *extdyn, *extdynend; | |
7000 | size_t extdynsize; | |
7001 | void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *); | |
7002 | ||
7003 | *pneeded = NULL; | |
7004 | ||
7005 | if (bfd_get_flavour (abfd) != bfd_target_elf_flavour | |
7006 | || bfd_get_format (abfd) != bfd_object) | |
7007 | return TRUE; | |
7008 | ||
7009 | s = bfd_get_section_by_name (abfd, ".dynamic"); | |
7010 | if (s == NULL || s->size == 0) | |
7011 | return TRUE; | |
7012 | ||
7013 | if (!bfd_malloc_and_get_section (abfd, s, &dynbuf)) | |
7014 | goto error_return; | |
7015 | ||
7016 | elfsec = _bfd_elf_section_from_bfd_section (abfd, s); | |
cb33740c | 7017 | if (elfsec == SHN_BAD) |
4d269e42 AM |
7018 | goto error_return; |
7019 | ||
7020 | shlink = elf_elfsections (abfd)[elfsec]->sh_link; | |
c152c796 | 7021 | |
4d269e42 AM |
7022 | extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn; |
7023 | swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in; | |
7024 | ||
7025 | extdyn = dynbuf; | |
7026 | extdynend = extdyn + s->size; | |
7027 | for (; extdyn < extdynend; extdyn += extdynsize) | |
7028 | { | |
7029 | Elf_Internal_Dyn dyn; | |
7030 | ||
7031 | (*swap_dyn_in) (abfd, extdyn, &dyn); | |
7032 | ||
7033 | if (dyn.d_tag == DT_NULL) | |
7034 | break; | |
7035 | ||
7036 | if (dyn.d_tag == DT_NEEDED) | |
7037 | { | |
7038 | const char *string; | |
7039 | struct bfd_link_needed_list *l; | |
7040 | unsigned int tagv = dyn.d_un.d_val; | |
7041 | bfd_size_type amt; | |
7042 | ||
7043 | string = bfd_elf_string_from_elf_section (abfd, shlink, tagv); | |
7044 | if (string == NULL) | |
7045 | goto error_return; | |
7046 | ||
7047 | amt = sizeof *l; | |
a50b1753 | 7048 | l = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt); |
4d269e42 AM |
7049 | if (l == NULL) |
7050 | goto error_return; | |
7051 | ||
7052 | l->by = abfd; | |
7053 | l->name = string; | |
7054 | l->next = *pneeded; | |
7055 | *pneeded = l; | |
7056 | } | |
7057 | } | |
7058 | ||
7059 | free (dynbuf); | |
7060 | ||
7061 | return TRUE; | |
7062 | ||
7063 | error_return: | |
7064 | if (dynbuf != NULL) | |
7065 | free (dynbuf); | |
7066 | return FALSE; | |
7067 | } | |
7068 | ||
7069 | struct elf_symbuf_symbol | |
7070 | { | |
7071 | unsigned long st_name; /* Symbol name, index in string tbl */ | |
7072 | unsigned char st_info; /* Type and binding attributes */ | |
7073 | unsigned char st_other; /* Visibilty, and target specific */ | |
7074 | }; | |
7075 | ||
7076 | struct elf_symbuf_head | |
7077 | { | |
7078 | struct elf_symbuf_symbol *ssym; | |
7079 | bfd_size_type count; | |
7080 | unsigned int st_shndx; | |
7081 | }; | |
7082 | ||
7083 | struct elf_symbol | |
7084 | { | |
7085 | union | |
7086 | { | |
7087 | Elf_Internal_Sym *isym; | |
7088 | struct elf_symbuf_symbol *ssym; | |
7089 | } u; | |
7090 | const char *name; | |
7091 | }; | |
7092 | ||
7093 | /* Sort references to symbols by ascending section number. */ | |
7094 | ||
7095 | static int | |
7096 | elf_sort_elf_symbol (const void *arg1, const void *arg2) | |
7097 | { | |
7098 | const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1; | |
7099 | const Elf_Internal_Sym *s2 = *(const Elf_Internal_Sym **) arg2; | |
7100 | ||
7101 | return s1->st_shndx - s2->st_shndx; | |
7102 | } | |
7103 | ||
7104 | static int | |
7105 | elf_sym_name_compare (const void *arg1, const void *arg2) | |
7106 | { | |
7107 | const struct elf_symbol *s1 = (const struct elf_symbol *) arg1; | |
7108 | const struct elf_symbol *s2 = (const struct elf_symbol *) arg2; | |
7109 | return strcmp (s1->name, s2->name); | |
7110 | } | |
7111 | ||
7112 | static struct elf_symbuf_head * | |
7113 | elf_create_symbuf (bfd_size_type symcount, Elf_Internal_Sym *isymbuf) | |
7114 | { | |
14b1c01e | 7115 | Elf_Internal_Sym **ind, **indbufend, **indbuf; |
4d269e42 AM |
7116 | struct elf_symbuf_symbol *ssym; |
7117 | struct elf_symbuf_head *ssymbuf, *ssymhead; | |
3ae181ee | 7118 | bfd_size_type i, shndx_count, total_size; |
4d269e42 | 7119 | |
a50b1753 | 7120 | indbuf = (Elf_Internal_Sym **) bfd_malloc2 (symcount, sizeof (*indbuf)); |
4d269e42 AM |
7121 | if (indbuf == NULL) |
7122 | return NULL; | |
7123 | ||
7124 | for (ind = indbuf, i = 0; i < symcount; i++) | |
7125 | if (isymbuf[i].st_shndx != SHN_UNDEF) | |
7126 | *ind++ = &isymbuf[i]; | |
7127 | indbufend = ind; | |
7128 | ||
7129 | qsort (indbuf, indbufend - indbuf, sizeof (Elf_Internal_Sym *), | |
7130 | elf_sort_elf_symbol); | |
7131 | ||
7132 | shndx_count = 0; | |
7133 | if (indbufend > indbuf) | |
7134 | for (ind = indbuf, shndx_count++; ind < indbufend - 1; ind++) | |
7135 | if (ind[0]->st_shndx != ind[1]->st_shndx) | |
7136 | shndx_count++; | |
7137 | ||
3ae181ee L |
7138 | total_size = ((shndx_count + 1) * sizeof (*ssymbuf) |
7139 | + (indbufend - indbuf) * sizeof (*ssym)); | |
a50b1753 | 7140 | ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size); |
4d269e42 AM |
7141 | if (ssymbuf == NULL) |
7142 | { | |
7143 | free (indbuf); | |
7144 | return NULL; | |
7145 | } | |
7146 | ||
3ae181ee | 7147 | ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1); |
4d269e42 AM |
7148 | ssymbuf->ssym = NULL; |
7149 | ssymbuf->count = shndx_count; | |
7150 | ssymbuf->st_shndx = 0; | |
7151 | for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++) | |
7152 | { | |
7153 | if (ind == indbuf || ssymhead->st_shndx != (*ind)->st_shndx) | |
7154 | { | |
7155 | ssymhead++; | |
7156 | ssymhead->ssym = ssym; | |
7157 | ssymhead->count = 0; | |
7158 | ssymhead->st_shndx = (*ind)->st_shndx; | |
7159 | } | |
7160 | ssym->st_name = (*ind)->st_name; | |
7161 | ssym->st_info = (*ind)->st_info; | |
7162 | ssym->st_other = (*ind)->st_other; | |
7163 | ssymhead->count++; | |
7164 | } | |
3ae181ee L |
7165 | BFD_ASSERT ((bfd_size_type) (ssymhead - ssymbuf) == shndx_count |
7166 | && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf) | |
7167 | == total_size)); | |
4d269e42 AM |
7168 | |
7169 | free (indbuf); | |
7170 | return ssymbuf; | |
7171 | } | |
7172 | ||
7173 | /* Check if 2 sections define the same set of local and global | |
7174 | symbols. */ | |
7175 | ||
8f317e31 | 7176 | static bfd_boolean |
4d269e42 AM |
7177 | bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2, |
7178 | struct bfd_link_info *info) | |
7179 | { | |
7180 | bfd *bfd1, *bfd2; | |
7181 | const struct elf_backend_data *bed1, *bed2; | |
7182 | Elf_Internal_Shdr *hdr1, *hdr2; | |
7183 | bfd_size_type symcount1, symcount2; | |
7184 | Elf_Internal_Sym *isymbuf1, *isymbuf2; | |
7185 | struct elf_symbuf_head *ssymbuf1, *ssymbuf2; | |
7186 | Elf_Internal_Sym *isym, *isymend; | |
7187 | struct elf_symbol *symtable1 = NULL, *symtable2 = NULL; | |
7188 | bfd_size_type count1, count2, i; | |
cb33740c | 7189 | unsigned int shndx1, shndx2; |
4d269e42 AM |
7190 | bfd_boolean result; |
7191 | ||
7192 | bfd1 = sec1->owner; | |
7193 | bfd2 = sec2->owner; | |
7194 | ||
4d269e42 AM |
7195 | /* Both sections have to be in ELF. */ |
7196 | if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour | |
7197 | || bfd_get_flavour (bfd2) != bfd_target_elf_flavour) | |
7198 | return FALSE; | |
7199 | ||
7200 | if (elf_section_type (sec1) != elf_section_type (sec2)) | |
7201 | return FALSE; | |
7202 | ||
4d269e42 AM |
7203 | shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1); |
7204 | shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2); | |
cb33740c | 7205 | if (shndx1 == SHN_BAD || shndx2 == SHN_BAD) |
4d269e42 AM |
7206 | return FALSE; |
7207 | ||
7208 | bed1 = get_elf_backend_data (bfd1); | |
7209 | bed2 = get_elf_backend_data (bfd2); | |
7210 | hdr1 = &elf_tdata (bfd1)->symtab_hdr; | |
7211 | symcount1 = hdr1->sh_size / bed1->s->sizeof_sym; | |
7212 | hdr2 = &elf_tdata (bfd2)->symtab_hdr; | |
7213 | symcount2 = hdr2->sh_size / bed2->s->sizeof_sym; | |
7214 | ||
7215 | if (symcount1 == 0 || symcount2 == 0) | |
7216 | return FALSE; | |
7217 | ||
7218 | result = FALSE; | |
7219 | isymbuf1 = NULL; | |
7220 | isymbuf2 = NULL; | |
a50b1753 NC |
7221 | ssymbuf1 = (struct elf_symbuf_head *) elf_tdata (bfd1)->symbuf; |
7222 | ssymbuf2 = (struct elf_symbuf_head *) elf_tdata (bfd2)->symbuf; | |
4d269e42 AM |
7223 | |
7224 | if (ssymbuf1 == NULL) | |
7225 | { | |
7226 | isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0, | |
7227 | NULL, NULL, NULL); | |
7228 | if (isymbuf1 == NULL) | |
7229 | goto done; | |
7230 | ||
7231 | if (!info->reduce_memory_overheads) | |
7232 | elf_tdata (bfd1)->symbuf = ssymbuf1 | |
7233 | = elf_create_symbuf (symcount1, isymbuf1); | |
7234 | } | |
7235 | ||
7236 | if (ssymbuf1 == NULL || ssymbuf2 == NULL) | |
7237 | { | |
7238 | isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0, | |
7239 | NULL, NULL, NULL); | |
7240 | if (isymbuf2 == NULL) | |
7241 | goto done; | |
7242 | ||
7243 | if (ssymbuf1 != NULL && !info->reduce_memory_overheads) | |
7244 | elf_tdata (bfd2)->symbuf = ssymbuf2 | |
7245 | = elf_create_symbuf (symcount2, isymbuf2); | |
7246 | } | |
7247 | ||
7248 | if (ssymbuf1 != NULL && ssymbuf2 != NULL) | |
7249 | { | |
7250 | /* Optimized faster version. */ | |
7251 | bfd_size_type lo, hi, mid; | |
7252 | struct elf_symbol *symp; | |
7253 | struct elf_symbuf_symbol *ssym, *ssymend; | |
7254 | ||
7255 | lo = 0; | |
7256 | hi = ssymbuf1->count; | |
7257 | ssymbuf1++; | |
7258 | count1 = 0; | |
7259 | while (lo < hi) | |
7260 | { | |
7261 | mid = (lo + hi) / 2; | |
cb33740c | 7262 | if (shndx1 < ssymbuf1[mid].st_shndx) |
4d269e42 | 7263 | hi = mid; |
cb33740c | 7264 | else if (shndx1 > ssymbuf1[mid].st_shndx) |
4d269e42 AM |
7265 | lo = mid + 1; |
7266 | else | |
7267 | { | |
7268 | count1 = ssymbuf1[mid].count; | |
7269 | ssymbuf1 += mid; | |
7270 | break; | |
7271 | } | |
7272 | } | |
7273 | ||
7274 | lo = 0; | |
7275 | hi = ssymbuf2->count; | |
7276 | ssymbuf2++; | |
7277 | count2 = 0; | |
7278 | while (lo < hi) | |
7279 | { | |
7280 | mid = (lo + hi) / 2; | |
cb33740c | 7281 | if (shndx2 < ssymbuf2[mid].st_shndx) |
4d269e42 | 7282 | hi = mid; |
cb33740c | 7283 | else if (shndx2 > ssymbuf2[mid].st_shndx) |
4d269e42 AM |
7284 | lo = mid + 1; |
7285 | else | |
7286 | { | |
7287 | count2 = ssymbuf2[mid].count; | |
7288 | ssymbuf2 += mid; | |
7289 | break; | |
7290 | } | |
7291 | } | |
7292 | ||
7293 | if (count1 == 0 || count2 == 0 || count1 != count2) | |
7294 | goto done; | |
7295 | ||
a50b1753 NC |
7296 | symtable1 = (struct elf_symbol *) |
7297 | bfd_malloc (count1 * sizeof (struct elf_symbol)); | |
7298 | symtable2 = (struct elf_symbol *) | |
7299 | bfd_malloc (count2 * sizeof (struct elf_symbol)); | |
4d269e42 AM |
7300 | if (symtable1 == NULL || symtable2 == NULL) |
7301 | goto done; | |
7302 | ||
7303 | symp = symtable1; | |
7304 | for (ssym = ssymbuf1->ssym, ssymend = ssym + count1; | |
7305 | ssym < ssymend; ssym++, symp++) | |
7306 | { | |
7307 | symp->u.ssym = ssym; | |
7308 | symp->name = bfd_elf_string_from_elf_section (bfd1, | |
7309 | hdr1->sh_link, | |
7310 | ssym->st_name); | |
7311 | } | |
7312 | ||
7313 | symp = symtable2; | |
7314 | for (ssym = ssymbuf2->ssym, ssymend = ssym + count2; | |
7315 | ssym < ssymend; ssym++, symp++) | |
7316 | { | |
7317 | symp->u.ssym = ssym; | |
7318 | symp->name = bfd_elf_string_from_elf_section (bfd2, | |
7319 | hdr2->sh_link, | |
7320 | ssym->st_name); | |
7321 | } | |
7322 | ||
7323 | /* Sort symbol by name. */ | |
7324 | qsort (symtable1, count1, sizeof (struct elf_symbol), | |
7325 | elf_sym_name_compare); | |
7326 | qsort (symtable2, count1, sizeof (struct elf_symbol), | |
7327 | elf_sym_name_compare); | |
7328 | ||
7329 | for (i = 0; i < count1; i++) | |
7330 | /* Two symbols must have the same binding, type and name. */ | |
7331 | if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info | |
7332 | || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other | |
7333 | || strcmp (symtable1 [i].name, symtable2 [i].name) != 0) | |
7334 | goto done; | |
7335 | ||
7336 | result = TRUE; | |
7337 | goto done; | |
7338 | } | |
7339 | ||
a50b1753 NC |
7340 | symtable1 = (struct elf_symbol *) |
7341 | bfd_malloc (symcount1 * sizeof (struct elf_symbol)); | |
7342 | symtable2 = (struct elf_symbol *) | |
7343 | bfd_malloc (symcount2 * sizeof (struct elf_symbol)); | |
4d269e42 AM |
7344 | if (symtable1 == NULL || symtable2 == NULL) |
7345 | goto done; | |
7346 | ||
7347 | /* Count definitions in the section. */ | |
7348 | count1 = 0; | |
7349 | for (isym = isymbuf1, isymend = isym + symcount1; isym < isymend; isym++) | |
cb33740c | 7350 | if (isym->st_shndx == shndx1) |
4d269e42 AM |
7351 | symtable1[count1++].u.isym = isym; |
7352 | ||
7353 | count2 = 0; | |
7354 | for (isym = isymbuf2, isymend = isym + symcount2; isym < isymend; isym++) | |
cb33740c | 7355 | if (isym->st_shndx == shndx2) |
4d269e42 AM |
7356 | symtable2[count2++].u.isym = isym; |
7357 | ||
7358 | if (count1 == 0 || count2 == 0 || count1 != count2) | |
7359 | goto done; | |
7360 | ||
7361 | for (i = 0; i < count1; i++) | |
7362 | symtable1[i].name | |
7363 | = bfd_elf_string_from_elf_section (bfd1, hdr1->sh_link, | |
7364 | symtable1[i].u.isym->st_name); | |
7365 | ||
7366 | for (i = 0; i < count2; i++) | |
7367 | symtable2[i].name | |
7368 | = bfd_elf_string_from_elf_section (bfd2, hdr2->sh_link, | |
7369 | symtable2[i].u.isym->st_name); | |
7370 | ||
7371 | /* Sort symbol by name. */ | |
7372 | qsort (symtable1, count1, sizeof (struct elf_symbol), | |
7373 | elf_sym_name_compare); | |
7374 | qsort (symtable2, count1, sizeof (struct elf_symbol), | |
7375 | elf_sym_name_compare); | |
7376 | ||
7377 | for (i = 0; i < count1; i++) | |
7378 | /* Two symbols must have the same binding, type and name. */ | |
7379 | if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info | |
7380 | || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other | |
7381 | || strcmp (symtable1 [i].name, symtable2 [i].name) != 0) | |
7382 | goto done; | |
7383 | ||
7384 | result = TRUE; | |
7385 | ||
7386 | done: | |
7387 | if (symtable1) | |
7388 | free (symtable1); | |
7389 | if (symtable2) | |
7390 | free (symtable2); | |
7391 | if (isymbuf1) | |
7392 | free (isymbuf1); | |
7393 | if (isymbuf2) | |
7394 | free (isymbuf2); | |
7395 | ||
7396 | return result; | |
7397 | } | |
7398 | ||
7399 | /* Return TRUE if 2 section types are compatible. */ | |
7400 | ||
7401 | bfd_boolean | |
7402 | _bfd_elf_match_sections_by_type (bfd *abfd, const asection *asec, | |
7403 | bfd *bbfd, const asection *bsec) | |
7404 | { | |
7405 | if (asec == NULL | |
7406 | || bsec == NULL | |
7407 | || abfd->xvec->flavour != bfd_target_elf_flavour | |
7408 | || bbfd->xvec->flavour != bfd_target_elf_flavour) | |
7409 | return TRUE; | |
7410 | ||
7411 | return elf_section_type (asec) == elf_section_type (bsec); | |
7412 | } | |
7413 | \f | |
c152c796 AM |
7414 | /* Final phase of ELF linker. */ |
7415 | ||
7416 | /* A structure we use to avoid passing large numbers of arguments. */ | |
7417 | ||
7418 | struct elf_final_link_info | |
7419 | { | |
7420 | /* General link information. */ | |
7421 | struct bfd_link_info *info; | |
7422 | /* Output BFD. */ | |
7423 | bfd *output_bfd; | |
7424 | /* Symbol string table. */ | |
7425 | struct bfd_strtab_hash *symstrtab; | |
7426 | /* .dynsym section. */ | |
7427 | asection *dynsym_sec; | |
7428 | /* .hash section. */ | |
7429 | asection *hash_sec; | |
7430 | /* symbol version section (.gnu.version). */ | |
7431 | asection *symver_sec; | |
7432 | /* Buffer large enough to hold contents of any section. */ | |
7433 | bfd_byte *contents; | |
7434 | /* Buffer large enough to hold external relocs of any section. */ | |
7435 | void *external_relocs; | |
7436 | /* Buffer large enough to hold internal relocs of any section. */ | |
7437 | Elf_Internal_Rela *internal_relocs; | |
7438 | /* Buffer large enough to hold external local symbols of any input | |
7439 | BFD. */ | |
7440 | bfd_byte *external_syms; | |
7441 | /* And a buffer for symbol section indices. */ | |
7442 | Elf_External_Sym_Shndx *locsym_shndx; | |
7443 | /* Buffer large enough to hold internal local symbols of any input | |
7444 | BFD. */ | |
7445 | Elf_Internal_Sym *internal_syms; | |
7446 | /* Array large enough to hold a symbol index for each local symbol | |
7447 | of any input BFD. */ | |
7448 | long *indices; | |
7449 | /* Array large enough to hold a section pointer for each local | |
7450 | symbol of any input BFD. */ | |
7451 | asection **sections; | |
7452 | /* Buffer to hold swapped out symbols. */ | |
7453 | bfd_byte *symbuf; | |
7454 | /* And one for symbol section indices. */ | |
7455 | Elf_External_Sym_Shndx *symshndxbuf; | |
7456 | /* Number of swapped out symbols in buffer. */ | |
7457 | size_t symbuf_count; | |
7458 | /* Number of symbols which fit in symbuf. */ | |
7459 | size_t symbuf_size; | |
7460 | /* And same for symshndxbuf. */ | |
7461 | size_t shndxbuf_size; | |
ffbc01cc AM |
7462 | /* Number of STT_FILE syms seen. */ |
7463 | size_t filesym_count; | |
c152c796 AM |
7464 | }; |
7465 | ||
7466 | /* This struct is used to pass information to elf_link_output_extsym. */ | |
7467 | ||
7468 | struct elf_outext_info | |
7469 | { | |
7470 | bfd_boolean failed; | |
7471 | bfd_boolean localsyms; | |
ffbc01cc AM |
7472 | bfd_boolean need_second_pass; |
7473 | bfd_boolean second_pass; | |
34a79995 | 7474 | bfd_boolean file_sym_done; |
8b127cbc | 7475 | struct elf_final_link_info *flinfo; |
c152c796 AM |
7476 | }; |
7477 | ||
d9352518 DB |
7478 | |
7479 | /* Support for evaluating a complex relocation. | |
7480 | ||
7481 | Complex relocations are generalized, self-describing relocations. The | |
7482 | implementation of them consists of two parts: complex symbols, and the | |
a0c8462f | 7483 | relocations themselves. |
d9352518 DB |
7484 | |
7485 | The relocations are use a reserved elf-wide relocation type code (R_RELC | |
7486 | external / BFD_RELOC_RELC internal) and an encoding of relocation field | |
7487 | information (start bit, end bit, word width, etc) into the addend. This | |
7488 | information is extracted from CGEN-generated operand tables within gas. | |
7489 | ||
7490 | Complex symbols are mangled symbols (BSF_RELC external / STT_RELC | |
7491 | internal) representing prefix-notation expressions, including but not | |
7492 | limited to those sorts of expressions normally encoded as addends in the | |
7493 | addend field. The symbol mangling format is: | |
7494 | ||
7495 | <node> := <literal> | |
7496 | | <unary-operator> ':' <node> | |
7497 | | <binary-operator> ':' <node> ':' <node> | |
7498 | ; | |
7499 | ||
7500 | <literal> := 's' <digits=N> ':' <N character symbol name> | |
7501 | | 'S' <digits=N> ':' <N character section name> | |
7502 | | '#' <hexdigits> | |
7503 | ; | |
7504 | ||
7505 | <binary-operator> := as in C | |
7506 | <unary-operator> := as in C, plus "0-" for unambiguous negation. */ | |
7507 | ||
7508 | static void | |
a0c8462f AM |
7509 | set_symbol_value (bfd *bfd_with_globals, |
7510 | Elf_Internal_Sym *isymbuf, | |
7511 | size_t locsymcount, | |
7512 | size_t symidx, | |
7513 | bfd_vma val) | |
d9352518 | 7514 | { |
8977835c AM |
7515 | struct elf_link_hash_entry **sym_hashes; |
7516 | struct elf_link_hash_entry *h; | |
7517 | size_t extsymoff = locsymcount; | |
d9352518 | 7518 | |
8977835c | 7519 | if (symidx < locsymcount) |
d9352518 | 7520 | { |
8977835c AM |
7521 | Elf_Internal_Sym *sym; |
7522 | ||
7523 | sym = isymbuf + symidx; | |
7524 | if (ELF_ST_BIND (sym->st_info) == STB_LOCAL) | |
7525 | { | |
7526 | /* It is a local symbol: move it to the | |
7527 | "absolute" section and give it a value. */ | |
7528 | sym->st_shndx = SHN_ABS; | |
7529 | sym->st_value = val; | |
7530 | return; | |
7531 | } | |
7532 | BFD_ASSERT (elf_bad_symtab (bfd_with_globals)); | |
7533 | extsymoff = 0; | |
d9352518 | 7534 | } |
8977835c AM |
7535 | |
7536 | /* It is a global symbol: set its link type | |
7537 | to "defined" and give it a value. */ | |
7538 | ||
7539 | sym_hashes = elf_sym_hashes (bfd_with_globals); | |
7540 | h = sym_hashes [symidx - extsymoff]; | |
7541 | while (h->root.type == bfd_link_hash_indirect | |
7542 | || h->root.type == bfd_link_hash_warning) | |
7543 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
7544 | h->root.type = bfd_link_hash_defined; | |
7545 | h->root.u.def.value = val; | |
7546 | h->root.u.def.section = bfd_abs_section_ptr; | |
d9352518 DB |
7547 | } |
7548 | ||
a0c8462f AM |
7549 | static bfd_boolean |
7550 | resolve_symbol (const char *name, | |
7551 | bfd *input_bfd, | |
8b127cbc | 7552 | struct elf_final_link_info *flinfo, |
a0c8462f AM |
7553 | bfd_vma *result, |
7554 | Elf_Internal_Sym *isymbuf, | |
7555 | size_t locsymcount) | |
d9352518 | 7556 | { |
a0c8462f AM |
7557 | Elf_Internal_Sym *sym; |
7558 | struct bfd_link_hash_entry *global_entry; | |
7559 | const char *candidate = NULL; | |
7560 | Elf_Internal_Shdr *symtab_hdr; | |
7561 | size_t i; | |
7562 | ||
d9352518 DB |
7563 | symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr; |
7564 | ||
7565 | for (i = 0; i < locsymcount; ++ i) | |
7566 | { | |
8977835c | 7567 | sym = isymbuf + i; |
d9352518 DB |
7568 | |
7569 | if (ELF_ST_BIND (sym->st_info) != STB_LOCAL) | |
7570 | continue; | |
7571 | ||
7572 | candidate = bfd_elf_string_from_elf_section (input_bfd, | |
7573 | symtab_hdr->sh_link, | |
7574 | sym->st_name); | |
7575 | #ifdef DEBUG | |
0f02bbd9 AM |
7576 | printf ("Comparing string: '%s' vs. '%s' = 0x%lx\n", |
7577 | name, candidate, (unsigned long) sym->st_value); | |
d9352518 DB |
7578 | #endif |
7579 | if (candidate && strcmp (candidate, name) == 0) | |
7580 | { | |
8b127cbc | 7581 | asection *sec = flinfo->sections [i]; |
d9352518 | 7582 | |
0f02bbd9 AM |
7583 | *result = _bfd_elf_rel_local_sym (input_bfd, sym, &sec, 0); |
7584 | *result += sec->output_offset + sec->output_section->vma; | |
d9352518 | 7585 | #ifdef DEBUG |
0f02bbd9 AM |
7586 | printf ("Found symbol with value %8.8lx\n", |
7587 | (unsigned long) *result); | |
d9352518 DB |
7588 | #endif |
7589 | return TRUE; | |
7590 | } | |
7591 | } | |
7592 | ||
7593 | /* Hmm, haven't found it yet. perhaps it is a global. */ | |
8b127cbc | 7594 | global_entry = bfd_link_hash_lookup (flinfo->info->hash, name, |
a0c8462f | 7595 | FALSE, FALSE, TRUE); |
d9352518 DB |
7596 | if (!global_entry) |
7597 | return FALSE; | |
a0c8462f | 7598 | |
d9352518 DB |
7599 | if (global_entry->type == bfd_link_hash_defined |
7600 | || global_entry->type == bfd_link_hash_defweak) | |
7601 | { | |
a0c8462f AM |
7602 | *result = (global_entry->u.def.value |
7603 | + global_entry->u.def.section->output_section->vma | |
7604 | + global_entry->u.def.section->output_offset); | |
d9352518 | 7605 | #ifdef DEBUG |
0f02bbd9 AM |
7606 | printf ("Found GLOBAL symbol '%s' with value %8.8lx\n", |
7607 | global_entry->root.string, (unsigned long) *result); | |
d9352518 DB |
7608 | #endif |
7609 | return TRUE; | |
a0c8462f | 7610 | } |
d9352518 | 7611 | |
d9352518 DB |
7612 | return FALSE; |
7613 | } | |
7614 | ||
7615 | static bfd_boolean | |
a0c8462f AM |
7616 | resolve_section (const char *name, |
7617 | asection *sections, | |
7618 | bfd_vma *result) | |
d9352518 | 7619 | { |
a0c8462f AM |
7620 | asection *curr; |
7621 | unsigned int len; | |
d9352518 | 7622 | |
a0c8462f | 7623 | for (curr = sections; curr; curr = curr->next) |
d9352518 DB |
7624 | if (strcmp (curr->name, name) == 0) |
7625 | { | |
7626 | *result = curr->vma; | |
7627 | return TRUE; | |
7628 | } | |
7629 | ||
7630 | /* Hmm. still haven't found it. try pseudo-section names. */ | |
a0c8462f | 7631 | for (curr = sections; curr; curr = curr->next) |
d9352518 DB |
7632 | { |
7633 | len = strlen (curr->name); | |
a0c8462f | 7634 | if (len > strlen (name)) |
d9352518 DB |
7635 | continue; |
7636 | ||
7637 | if (strncmp (curr->name, name, len) == 0) | |
7638 | { | |
7639 | if (strncmp (".end", name + len, 4) == 0) | |
7640 | { | |
7641 | *result = curr->vma + curr->size; | |
7642 | return TRUE; | |
7643 | } | |
7644 | ||
7645 | /* Insert more pseudo-section names here, if you like. */ | |
7646 | } | |
7647 | } | |
a0c8462f | 7648 | |
d9352518 DB |
7649 | return FALSE; |
7650 | } | |
7651 | ||
7652 | static void | |
a0c8462f | 7653 | undefined_reference (const char *reftype, const char *name) |
d9352518 | 7654 | { |
a0c8462f AM |
7655 | _bfd_error_handler (_("undefined %s reference in complex symbol: %s"), |
7656 | reftype, name); | |
d9352518 DB |
7657 | } |
7658 | ||
7659 | static bfd_boolean | |
a0c8462f AM |
7660 | eval_symbol (bfd_vma *result, |
7661 | const char **symp, | |
7662 | bfd *input_bfd, | |
8b127cbc | 7663 | struct elf_final_link_info *flinfo, |
a0c8462f AM |
7664 | bfd_vma dot, |
7665 | Elf_Internal_Sym *isymbuf, | |
7666 | size_t locsymcount, | |
7667 | int signed_p) | |
d9352518 | 7668 | { |
4b93929b NC |
7669 | size_t len; |
7670 | size_t symlen; | |
a0c8462f AM |
7671 | bfd_vma a; |
7672 | bfd_vma b; | |
4b93929b | 7673 | char symbuf[4096]; |
0f02bbd9 | 7674 | const char *sym = *symp; |
a0c8462f AM |
7675 | const char *symend; |
7676 | bfd_boolean symbol_is_section = FALSE; | |
d9352518 DB |
7677 | |
7678 | len = strlen (sym); | |
7679 | symend = sym + len; | |
7680 | ||
4b93929b | 7681 | if (len < 1 || len > sizeof (symbuf)) |
d9352518 DB |
7682 | { |
7683 | bfd_set_error (bfd_error_invalid_operation); | |
7684 | return FALSE; | |
7685 | } | |
a0c8462f | 7686 | |
d9352518 DB |
7687 | switch (* sym) |
7688 | { | |
7689 | case '.': | |
0f02bbd9 AM |
7690 | *result = dot; |
7691 | *symp = sym + 1; | |
d9352518 DB |
7692 | return TRUE; |
7693 | ||
7694 | case '#': | |
0f02bbd9 AM |
7695 | ++sym; |
7696 | *result = strtoul (sym, (char **) symp, 16); | |
d9352518 DB |
7697 | return TRUE; |
7698 | ||
7699 | case 'S': | |
7700 | symbol_is_section = TRUE; | |
a0c8462f | 7701 | case 's': |
0f02bbd9 AM |
7702 | ++sym; |
7703 | symlen = strtol (sym, (char **) symp, 10); | |
7704 | sym = *symp + 1; /* Skip the trailing ':'. */ | |
d9352518 | 7705 | |
4b93929b | 7706 | if (symend < sym || symlen + 1 > sizeof (symbuf)) |
d9352518 DB |
7707 | { |
7708 | bfd_set_error (bfd_error_invalid_operation); | |
7709 | return FALSE; | |
7710 | } | |
7711 | ||
7712 | memcpy (symbuf, sym, symlen); | |
a0c8462f | 7713 | symbuf[symlen] = '\0'; |
0f02bbd9 | 7714 | *symp = sym + symlen; |
a0c8462f AM |
7715 | |
7716 | /* Is it always possible, with complex symbols, that gas "mis-guessed" | |
d9352518 DB |
7717 | the symbol as a section, or vice-versa. so we're pretty liberal in our |
7718 | interpretation here; section means "try section first", not "must be a | |
7719 | section", and likewise with symbol. */ | |
7720 | ||
a0c8462f | 7721 | if (symbol_is_section) |
d9352518 | 7722 | { |
8b127cbc AM |
7723 | if (!resolve_section (symbuf, flinfo->output_bfd->sections, result) |
7724 | && !resolve_symbol (symbuf, input_bfd, flinfo, result, | |
8977835c | 7725 | isymbuf, locsymcount)) |
d9352518 DB |
7726 | { |
7727 | undefined_reference ("section", symbuf); | |
7728 | return FALSE; | |
7729 | } | |
a0c8462f AM |
7730 | } |
7731 | else | |
d9352518 | 7732 | { |
8b127cbc | 7733 | if (!resolve_symbol (symbuf, input_bfd, flinfo, result, |
8977835c | 7734 | isymbuf, locsymcount) |
8b127cbc | 7735 | && !resolve_section (symbuf, flinfo->output_bfd->sections, |
8977835c | 7736 | result)) |
d9352518 DB |
7737 | { |
7738 | undefined_reference ("symbol", symbuf); | |
7739 | return FALSE; | |
7740 | } | |
7741 | } | |
7742 | ||
7743 | return TRUE; | |
a0c8462f | 7744 | |
d9352518 DB |
7745 | /* All that remains are operators. */ |
7746 | ||
7747 | #define UNARY_OP(op) \ | |
7748 | if (strncmp (sym, #op, strlen (#op)) == 0) \ | |
7749 | { \ | |
7750 | sym += strlen (#op); \ | |
a0c8462f AM |
7751 | if (*sym == ':') \ |
7752 | ++sym; \ | |
0f02bbd9 | 7753 | *symp = sym; \ |
8b127cbc | 7754 | if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \ |
0f02bbd9 | 7755 | isymbuf, locsymcount, signed_p)) \ |
a0c8462f AM |
7756 | return FALSE; \ |
7757 | if (signed_p) \ | |
0f02bbd9 | 7758 | *result = op ((bfd_signed_vma) a); \ |
a0c8462f AM |
7759 | else \ |
7760 | *result = op a; \ | |
d9352518 DB |
7761 | return TRUE; \ |
7762 | } | |
7763 | ||
7764 | #define BINARY_OP(op) \ | |
7765 | if (strncmp (sym, #op, strlen (#op)) == 0) \ | |
7766 | { \ | |
7767 | sym += strlen (#op); \ | |
a0c8462f AM |
7768 | if (*sym == ':') \ |
7769 | ++sym; \ | |
0f02bbd9 | 7770 | *symp = sym; \ |
8b127cbc | 7771 | if (!eval_symbol (&a, symp, input_bfd, flinfo, dot, \ |
0f02bbd9 | 7772 | isymbuf, locsymcount, signed_p)) \ |
a0c8462f | 7773 | return FALSE; \ |
0f02bbd9 | 7774 | ++*symp; \ |
8b127cbc | 7775 | if (!eval_symbol (&b, symp, input_bfd, flinfo, dot, \ |
0f02bbd9 | 7776 | isymbuf, locsymcount, signed_p)) \ |
a0c8462f AM |
7777 | return FALSE; \ |
7778 | if (signed_p) \ | |
0f02bbd9 | 7779 | *result = ((bfd_signed_vma) a) op ((bfd_signed_vma) b); \ |
a0c8462f AM |
7780 | else \ |
7781 | *result = a op b; \ | |
d9352518 DB |
7782 | return TRUE; \ |
7783 | } | |
7784 | ||
7785 | default: | |
7786 | UNARY_OP (0-); | |
7787 | BINARY_OP (<<); | |
7788 | BINARY_OP (>>); | |
7789 | BINARY_OP (==); | |
7790 | BINARY_OP (!=); | |
7791 | BINARY_OP (<=); | |
7792 | BINARY_OP (>=); | |
7793 | BINARY_OP (&&); | |
7794 | BINARY_OP (||); | |
7795 | UNARY_OP (~); | |
7796 | UNARY_OP (!); | |
7797 | BINARY_OP (*); | |
7798 | BINARY_OP (/); | |
7799 | BINARY_OP (%); | |
7800 | BINARY_OP (^); | |
7801 | BINARY_OP (|); | |
7802 | BINARY_OP (&); | |
7803 | BINARY_OP (+); | |
7804 | BINARY_OP (-); | |
7805 | BINARY_OP (<); | |
7806 | BINARY_OP (>); | |
7807 | #undef UNARY_OP | |
7808 | #undef BINARY_OP | |
7809 | _bfd_error_handler (_("unknown operator '%c' in complex symbol"), * sym); | |
7810 | bfd_set_error (bfd_error_invalid_operation); | |
7811 | return FALSE; | |
7812 | } | |
7813 | } | |
7814 | ||
d9352518 | 7815 | static void |
a0c8462f AM |
7816 | put_value (bfd_vma size, |
7817 | unsigned long chunksz, | |
7818 | bfd *input_bfd, | |
7819 | bfd_vma x, | |
7820 | bfd_byte *location) | |
d9352518 DB |
7821 | { |
7822 | location += (size - chunksz); | |
7823 | ||
a0c8462f | 7824 | for (; size; size -= chunksz, location -= chunksz, x >>= (chunksz * 8)) |
d9352518 DB |
7825 | { |
7826 | switch (chunksz) | |
7827 | { | |
7828 | default: | |
7829 | case 0: | |
7830 | abort (); | |
7831 | case 1: | |
7832 | bfd_put_8 (input_bfd, x, location); | |
7833 | break; | |
7834 | case 2: | |
7835 | bfd_put_16 (input_bfd, x, location); | |
7836 | break; | |
7837 | case 4: | |
7838 | bfd_put_32 (input_bfd, x, location); | |
7839 | break; | |
7840 | case 8: | |
7841 | #ifdef BFD64 | |
7842 | bfd_put_64 (input_bfd, x, location); | |
7843 | #else | |
7844 | abort (); | |
7845 | #endif | |
7846 | break; | |
7847 | } | |
7848 | } | |
7849 | } | |
7850 | ||
a0c8462f AM |
7851 | static bfd_vma |
7852 | get_value (bfd_vma size, | |
7853 | unsigned long chunksz, | |
7854 | bfd *input_bfd, | |
7855 | bfd_byte *location) | |
d9352518 | 7856 | { |
9b239e0e | 7857 | int shift; |
d9352518 DB |
7858 | bfd_vma x = 0; |
7859 | ||
9b239e0e NC |
7860 | /* Sanity checks. */ |
7861 | BFD_ASSERT (chunksz <= sizeof (x) | |
7862 | && size >= chunksz | |
7863 | && chunksz != 0 | |
7864 | && (size % chunksz) == 0 | |
7865 | && input_bfd != NULL | |
7866 | && location != NULL); | |
7867 | ||
7868 | if (chunksz == sizeof (x)) | |
7869 | { | |
7870 | BFD_ASSERT (size == chunksz); | |
7871 | ||
7872 | /* Make sure that we do not perform an undefined shift operation. | |
7873 | We know that size == chunksz so there will only be one iteration | |
7874 | of the loop below. */ | |
7875 | shift = 0; | |
7876 | } | |
7877 | else | |
7878 | shift = 8 * chunksz; | |
7879 | ||
a0c8462f | 7880 | for (; size; size -= chunksz, location += chunksz) |
d9352518 DB |
7881 | { |
7882 | switch (chunksz) | |
7883 | { | |
d9352518 | 7884 | case 1: |
9b239e0e | 7885 | x = (x << shift) | bfd_get_8 (input_bfd, location); |
d9352518 DB |
7886 | break; |
7887 | case 2: | |
9b239e0e | 7888 | x = (x << shift) | bfd_get_16 (input_bfd, location); |
d9352518 DB |
7889 | break; |
7890 | case 4: | |
9b239e0e | 7891 | x = (x << shift) | bfd_get_32 (input_bfd, location); |
d9352518 | 7892 | break; |
d9352518 | 7893 | #ifdef BFD64 |
9b239e0e NC |
7894 | case 8: |
7895 | x = (x << shift) | bfd_get_64 (input_bfd, location); | |
d9352518 | 7896 | break; |
9b239e0e NC |
7897 | #endif |
7898 | default: | |
7899 | abort (); | |
d9352518 DB |
7900 | } |
7901 | } | |
7902 | return x; | |
7903 | } | |
7904 | ||
a0c8462f AM |
7905 | static void |
7906 | decode_complex_addend (unsigned long *start, /* in bits */ | |
7907 | unsigned long *oplen, /* in bits */ | |
7908 | unsigned long *len, /* in bits */ | |
7909 | unsigned long *wordsz, /* in bytes */ | |
7910 | unsigned long *chunksz, /* in bytes */ | |
7911 | unsigned long *lsb0_p, | |
7912 | unsigned long *signed_p, | |
7913 | unsigned long *trunc_p, | |
7914 | unsigned long encoded) | |
d9352518 DB |
7915 | { |
7916 | * start = encoded & 0x3F; | |
7917 | * len = (encoded >> 6) & 0x3F; | |
7918 | * oplen = (encoded >> 12) & 0x3F; | |
7919 | * wordsz = (encoded >> 18) & 0xF; | |
7920 | * chunksz = (encoded >> 22) & 0xF; | |
7921 | * lsb0_p = (encoded >> 27) & 1; | |
7922 | * signed_p = (encoded >> 28) & 1; | |
7923 | * trunc_p = (encoded >> 29) & 1; | |
7924 | } | |
7925 | ||
cdfeee4f | 7926 | bfd_reloc_status_type |
0f02bbd9 | 7927 | bfd_elf_perform_complex_relocation (bfd *input_bfd, |
cdfeee4f | 7928 | asection *input_section ATTRIBUTE_UNUSED, |
0f02bbd9 AM |
7929 | bfd_byte *contents, |
7930 | Elf_Internal_Rela *rel, | |
7931 | bfd_vma relocation) | |
d9352518 | 7932 | { |
0f02bbd9 AM |
7933 | bfd_vma shift, x, mask; |
7934 | unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p; | |
cdfeee4f | 7935 | bfd_reloc_status_type r; |
d9352518 DB |
7936 | |
7937 | /* Perform this reloc, since it is complex. | |
7938 | (this is not to say that it necessarily refers to a complex | |
7939 | symbol; merely that it is a self-describing CGEN based reloc. | |
7940 | i.e. the addend has the complete reloc information (bit start, end, | |
a0c8462f | 7941 | word size, etc) encoded within it.). */ |
d9352518 | 7942 | |
a0c8462f AM |
7943 | decode_complex_addend (&start, &oplen, &len, &wordsz, |
7944 | &chunksz, &lsb0_p, &signed_p, | |
7945 | &trunc_p, rel->r_addend); | |
d9352518 DB |
7946 | |
7947 | mask = (((1L << (len - 1)) - 1) << 1) | 1; | |
7948 | ||
7949 | if (lsb0_p) | |
7950 | shift = (start + 1) - len; | |
7951 | else | |
7952 | shift = (8 * wordsz) - (start + len); | |
7953 | ||
5dabe785 | 7954 | /* FIXME: octets_per_byte. */ |
a0c8462f | 7955 | x = get_value (wordsz, chunksz, input_bfd, contents + rel->r_offset); |
d9352518 DB |
7956 | |
7957 | #ifdef DEBUG | |
7958 | printf ("Doing complex reloc: " | |
7959 | "lsb0? %ld, signed? %ld, trunc? %ld, wordsz %ld, " | |
7960 | "chunksz %ld, start %ld, len %ld, oplen %ld\n" | |
7961 | " dest: %8.8lx, mask: %8.8lx, reloc: %8.8lx\n", | |
7962 | lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len, | |
9ccb8af9 AM |
7963 | oplen, (unsigned long) x, (unsigned long) mask, |
7964 | (unsigned long) relocation); | |
d9352518 DB |
7965 | #endif |
7966 | ||
cdfeee4f | 7967 | r = bfd_reloc_ok; |
d9352518 | 7968 | if (! trunc_p) |
cdfeee4f AM |
7969 | /* Now do an overflow check. */ |
7970 | r = bfd_check_overflow ((signed_p | |
7971 | ? complain_overflow_signed | |
7972 | : complain_overflow_unsigned), | |
7973 | len, 0, (8 * wordsz), | |
7974 | relocation); | |
a0c8462f | 7975 | |
d9352518 DB |
7976 | /* Do the deed. */ |
7977 | x = (x & ~(mask << shift)) | ((relocation & mask) << shift); | |
7978 | ||
7979 | #ifdef DEBUG | |
7980 | printf (" relocation: %8.8lx\n" | |
7981 | " shifted mask: %8.8lx\n" | |
7982 | " shifted/masked reloc: %8.8lx\n" | |
7983 | " result: %8.8lx\n", | |
9ccb8af9 AM |
7984 | (unsigned long) relocation, (unsigned long) (mask << shift), |
7985 | (unsigned long) ((relocation & mask) << shift), (unsigned long) x); | |
d9352518 | 7986 | #endif |
5dabe785 | 7987 | /* FIXME: octets_per_byte. */ |
d9352518 | 7988 | put_value (wordsz, chunksz, input_bfd, x, contents + rel->r_offset); |
cdfeee4f | 7989 | return r; |
d9352518 DB |
7990 | } |
7991 | ||
c152c796 AM |
7992 | /* When performing a relocatable link, the input relocations are |
7993 | preserved. But, if they reference global symbols, the indices | |
d4730f92 BS |
7994 | referenced must be updated. Update all the relocations found in |
7995 | RELDATA. */ | |
c152c796 AM |
7996 | |
7997 | static void | |
7998 | elf_link_adjust_relocs (bfd *abfd, | |
d4730f92 | 7999 | struct bfd_elf_section_reloc_data *reldata) |
c152c796 AM |
8000 | { |
8001 | unsigned int i; | |
8002 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
8003 | bfd_byte *erela; | |
8004 | void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *); | |
8005 | void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *); | |
8006 | bfd_vma r_type_mask; | |
8007 | int r_sym_shift; | |
d4730f92 BS |
8008 | unsigned int count = reldata->count; |
8009 | struct elf_link_hash_entry **rel_hash = reldata->hashes; | |
c152c796 | 8010 | |
d4730f92 | 8011 | if (reldata->hdr->sh_entsize == bed->s->sizeof_rel) |
c152c796 AM |
8012 | { |
8013 | swap_in = bed->s->swap_reloc_in; | |
8014 | swap_out = bed->s->swap_reloc_out; | |
8015 | } | |
d4730f92 | 8016 | else if (reldata->hdr->sh_entsize == bed->s->sizeof_rela) |
c152c796 AM |
8017 | { |
8018 | swap_in = bed->s->swap_reloca_in; | |
8019 | swap_out = bed->s->swap_reloca_out; | |
8020 | } | |
8021 | else | |
8022 | abort (); | |
8023 | ||
8024 | if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL) | |
8025 | abort (); | |
8026 | ||
8027 | if (bed->s->arch_size == 32) | |
8028 | { | |
8029 | r_type_mask = 0xff; | |
8030 | r_sym_shift = 8; | |
8031 | } | |
8032 | else | |
8033 | { | |
8034 | r_type_mask = 0xffffffff; | |
8035 | r_sym_shift = 32; | |
8036 | } | |
8037 | ||
d4730f92 BS |
8038 | erela = reldata->hdr->contents; |
8039 | for (i = 0; i < count; i++, rel_hash++, erela += reldata->hdr->sh_entsize) | |
c152c796 AM |
8040 | { |
8041 | Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL]; | |
8042 | unsigned int j; | |
8043 | ||
8044 | if (*rel_hash == NULL) | |
8045 | continue; | |
8046 | ||
8047 | BFD_ASSERT ((*rel_hash)->indx >= 0); | |
8048 | ||
8049 | (*swap_in) (abfd, erela, irela); | |
8050 | for (j = 0; j < bed->s->int_rels_per_ext_rel; j++) | |
8051 | irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift | |
8052 | | (irela[j].r_info & r_type_mask)); | |
8053 | (*swap_out) (abfd, irela, erela); | |
8054 | } | |
8055 | } | |
8056 | ||
8057 | struct elf_link_sort_rela | |
8058 | { | |
8059 | union { | |
8060 | bfd_vma offset; | |
8061 | bfd_vma sym_mask; | |
8062 | } u; | |
8063 | enum elf_reloc_type_class type; | |
8064 | /* We use this as an array of size int_rels_per_ext_rel. */ | |
8065 | Elf_Internal_Rela rela[1]; | |
8066 | }; | |
8067 | ||
8068 | static int | |
8069 | elf_link_sort_cmp1 (const void *A, const void *B) | |
8070 | { | |
a50b1753 NC |
8071 | const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A; |
8072 | const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B; | |
c152c796 AM |
8073 | int relativea, relativeb; |
8074 | ||
8075 | relativea = a->type == reloc_class_relative; | |
8076 | relativeb = b->type == reloc_class_relative; | |
8077 | ||
8078 | if (relativea < relativeb) | |
8079 | return 1; | |
8080 | if (relativea > relativeb) | |
8081 | return -1; | |
8082 | if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask)) | |
8083 | return -1; | |
8084 | if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask)) | |
8085 | return 1; | |
8086 | if (a->rela->r_offset < b->rela->r_offset) | |
8087 | return -1; | |
8088 | if (a->rela->r_offset > b->rela->r_offset) | |
8089 | return 1; | |
8090 | return 0; | |
8091 | } | |
8092 | ||
8093 | static int | |
8094 | elf_link_sort_cmp2 (const void *A, const void *B) | |
8095 | { | |
a50b1753 NC |
8096 | const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A; |
8097 | const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B; | |
c152c796 | 8098 | |
7e612e98 | 8099 | if (a->type < b->type) |
c152c796 | 8100 | return -1; |
7e612e98 | 8101 | if (a->type > b->type) |
c152c796 | 8102 | return 1; |
7e612e98 | 8103 | if (a->u.offset < b->u.offset) |
c152c796 | 8104 | return -1; |
7e612e98 | 8105 | if (a->u.offset > b->u.offset) |
c152c796 AM |
8106 | return 1; |
8107 | if (a->rela->r_offset < b->rela->r_offset) | |
8108 | return -1; | |
8109 | if (a->rela->r_offset > b->rela->r_offset) | |
8110 | return 1; | |
8111 | return 0; | |
8112 | } | |
8113 | ||
8114 | static size_t | |
8115 | elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec) | |
8116 | { | |
3410fea8 | 8117 | asection *dynamic_relocs; |
fc66a176 L |
8118 | asection *rela_dyn; |
8119 | asection *rel_dyn; | |
c152c796 AM |
8120 | bfd_size_type count, size; |
8121 | size_t i, ret, sort_elt, ext_size; | |
8122 | bfd_byte *sort, *s_non_relative, *p; | |
8123 | struct elf_link_sort_rela *sq; | |
8124 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
8125 | int i2e = bed->s->int_rels_per_ext_rel; | |
8126 | void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *); | |
8127 | void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *); | |
8128 | struct bfd_link_order *lo; | |
8129 | bfd_vma r_sym_mask; | |
3410fea8 | 8130 | bfd_boolean use_rela; |
c152c796 | 8131 | |
3410fea8 NC |
8132 | /* Find a dynamic reloc section. */ |
8133 | rela_dyn = bfd_get_section_by_name (abfd, ".rela.dyn"); | |
8134 | rel_dyn = bfd_get_section_by_name (abfd, ".rel.dyn"); | |
8135 | if (rela_dyn != NULL && rela_dyn->size > 0 | |
8136 | && rel_dyn != NULL && rel_dyn->size > 0) | |
c152c796 | 8137 | { |
3410fea8 NC |
8138 | bfd_boolean use_rela_initialised = FALSE; |
8139 | ||
8140 | /* This is just here to stop gcc from complaining. | |
8141 | It's initialization checking code is not perfect. */ | |
8142 | use_rela = TRUE; | |
8143 | ||
8144 | /* Both sections are present. Examine the sizes | |
8145 | of the indirect sections to help us choose. */ | |
8146 | for (lo = rela_dyn->map_head.link_order; lo != NULL; lo = lo->next) | |
8147 | if (lo->type == bfd_indirect_link_order) | |
8148 | { | |
8149 | asection *o = lo->u.indirect.section; | |
8150 | ||
8151 | if ((o->size % bed->s->sizeof_rela) == 0) | |
8152 | { | |
8153 | if ((o->size % bed->s->sizeof_rel) == 0) | |
8154 | /* Section size is divisible by both rel and rela sizes. | |
8155 | It is of no help to us. */ | |
8156 | ; | |
8157 | else | |
8158 | { | |
8159 | /* Section size is only divisible by rela. */ | |
8160 | if (use_rela_initialised && (use_rela == FALSE)) | |
8161 | { | |
8162 | _bfd_error_handler | |
8163 | (_("%B: Unable to sort relocs - they are in more than one size"), abfd); | |
8164 | bfd_set_error (bfd_error_invalid_operation); | |
8165 | return 0; | |
8166 | } | |
8167 | else | |
8168 | { | |
8169 | use_rela = TRUE; | |
8170 | use_rela_initialised = TRUE; | |
8171 | } | |
8172 | } | |
8173 | } | |
8174 | else if ((o->size % bed->s->sizeof_rel) == 0) | |
8175 | { | |
8176 | /* Section size is only divisible by rel. */ | |
8177 | if (use_rela_initialised && (use_rela == TRUE)) | |
8178 | { | |
8179 | _bfd_error_handler | |
8180 | (_("%B: Unable to sort relocs - they are in more than one size"), abfd); | |
8181 | bfd_set_error (bfd_error_invalid_operation); | |
8182 | return 0; | |
8183 | } | |
8184 | else | |
8185 | { | |
8186 | use_rela = FALSE; | |
8187 | use_rela_initialised = TRUE; | |
8188 | } | |
8189 | } | |
8190 | else | |
8191 | { | |
8192 | /* The section size is not divisible by either - something is wrong. */ | |
8193 | _bfd_error_handler | |
8194 | (_("%B: Unable to sort relocs - they are of an unknown size"), abfd); | |
8195 | bfd_set_error (bfd_error_invalid_operation); | |
8196 | return 0; | |
8197 | } | |
8198 | } | |
8199 | ||
8200 | for (lo = rel_dyn->map_head.link_order; lo != NULL; lo = lo->next) | |
8201 | if (lo->type == bfd_indirect_link_order) | |
8202 | { | |
8203 | asection *o = lo->u.indirect.section; | |
8204 | ||
8205 | if ((o->size % bed->s->sizeof_rela) == 0) | |
8206 | { | |
8207 | if ((o->size % bed->s->sizeof_rel) == 0) | |
8208 | /* Section size is divisible by both rel and rela sizes. | |
8209 | It is of no help to us. */ | |
8210 | ; | |
8211 | else | |
8212 | { | |
8213 | /* Section size is only divisible by rela. */ | |
8214 | if (use_rela_initialised && (use_rela == FALSE)) | |
8215 | { | |
8216 | _bfd_error_handler | |
8217 | (_("%B: Unable to sort relocs - they are in more than one size"), abfd); | |
8218 | bfd_set_error (bfd_error_invalid_operation); | |
8219 | return 0; | |
8220 | } | |
8221 | else | |
8222 | { | |
8223 | use_rela = TRUE; | |
8224 | use_rela_initialised = TRUE; | |
8225 | } | |
8226 | } | |
8227 | } | |
8228 | else if ((o->size % bed->s->sizeof_rel) == 0) | |
8229 | { | |
8230 | /* Section size is only divisible by rel. */ | |
8231 | if (use_rela_initialised && (use_rela == TRUE)) | |
8232 | { | |
8233 | _bfd_error_handler | |
8234 | (_("%B: Unable to sort relocs - they are in more than one size"), abfd); | |
8235 | bfd_set_error (bfd_error_invalid_operation); | |
8236 | return 0; | |
8237 | } | |
8238 | else | |
8239 | { | |
8240 | use_rela = FALSE; | |
8241 | use_rela_initialised = TRUE; | |
8242 | } | |
8243 | } | |
8244 | else | |
8245 | { | |
8246 | /* The section size is not divisible by either - something is wrong. */ | |
8247 | _bfd_error_handler | |
8248 | (_("%B: Unable to sort relocs - they are of an unknown size"), abfd); | |
8249 | bfd_set_error (bfd_error_invalid_operation); | |
8250 | return 0; | |
8251 | } | |
8252 | } | |
8253 | ||
8254 | if (! use_rela_initialised) | |
8255 | /* Make a guess. */ | |
8256 | use_rela = TRUE; | |
c152c796 | 8257 | } |
fc66a176 L |
8258 | else if (rela_dyn != NULL && rela_dyn->size > 0) |
8259 | use_rela = TRUE; | |
8260 | else if (rel_dyn != NULL && rel_dyn->size > 0) | |
3410fea8 | 8261 | use_rela = FALSE; |
c152c796 | 8262 | else |
fc66a176 | 8263 | return 0; |
3410fea8 NC |
8264 | |
8265 | if (use_rela) | |
c152c796 | 8266 | { |
3410fea8 | 8267 | dynamic_relocs = rela_dyn; |
c152c796 AM |
8268 | ext_size = bed->s->sizeof_rela; |
8269 | swap_in = bed->s->swap_reloca_in; | |
8270 | swap_out = bed->s->swap_reloca_out; | |
8271 | } | |
3410fea8 NC |
8272 | else |
8273 | { | |
8274 | dynamic_relocs = rel_dyn; | |
8275 | ext_size = bed->s->sizeof_rel; | |
8276 | swap_in = bed->s->swap_reloc_in; | |
8277 | swap_out = bed->s->swap_reloc_out; | |
8278 | } | |
c152c796 AM |
8279 | |
8280 | size = 0; | |
3410fea8 | 8281 | for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next) |
c152c796 | 8282 | if (lo->type == bfd_indirect_link_order) |
3410fea8 | 8283 | size += lo->u.indirect.section->size; |
c152c796 | 8284 | |
3410fea8 | 8285 | if (size != dynamic_relocs->size) |
c152c796 AM |
8286 | return 0; |
8287 | ||
8288 | sort_elt = (sizeof (struct elf_link_sort_rela) | |
8289 | + (i2e - 1) * sizeof (Elf_Internal_Rela)); | |
3410fea8 NC |
8290 | |
8291 | count = dynamic_relocs->size / ext_size; | |
5e486aa1 NC |
8292 | if (count == 0) |
8293 | return 0; | |
a50b1753 | 8294 | sort = (bfd_byte *) bfd_zmalloc (sort_elt * count); |
3410fea8 | 8295 | |
c152c796 AM |
8296 | if (sort == NULL) |
8297 | { | |
8298 | (*info->callbacks->warning) | |
8299 | (info, _("Not enough memory to sort relocations"), 0, abfd, 0, 0); | |
8300 | return 0; | |
8301 | } | |
8302 | ||
8303 | if (bed->s->arch_size == 32) | |
8304 | r_sym_mask = ~(bfd_vma) 0xff; | |
8305 | else | |
8306 | r_sym_mask = ~(bfd_vma) 0xffffffff; | |
8307 | ||
3410fea8 | 8308 | for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next) |
c152c796 AM |
8309 | if (lo->type == bfd_indirect_link_order) |
8310 | { | |
8311 | bfd_byte *erel, *erelend; | |
8312 | asection *o = lo->u.indirect.section; | |
8313 | ||
1da212d6 AM |
8314 | if (o->contents == NULL && o->size != 0) |
8315 | { | |
8316 | /* This is a reloc section that is being handled as a normal | |
8317 | section. See bfd_section_from_shdr. We can't combine | |
8318 | relocs in this case. */ | |
8319 | free (sort); | |
8320 | return 0; | |
8321 | } | |
c152c796 | 8322 | erel = o->contents; |
eea6121a | 8323 | erelend = o->contents + o->size; |
5dabe785 | 8324 | /* FIXME: octets_per_byte. */ |
c152c796 | 8325 | p = sort + o->output_offset / ext_size * sort_elt; |
3410fea8 | 8326 | |
c152c796 AM |
8327 | while (erel < erelend) |
8328 | { | |
8329 | struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p; | |
3410fea8 | 8330 | |
c152c796 | 8331 | (*swap_in) (abfd, erel, s->rela); |
7e612e98 | 8332 | s->type = (*bed->elf_backend_reloc_type_class) (info, o, s->rela); |
c152c796 AM |
8333 | s->u.sym_mask = r_sym_mask; |
8334 | p += sort_elt; | |
8335 | erel += ext_size; | |
8336 | } | |
8337 | } | |
8338 | ||
8339 | qsort (sort, count, sort_elt, elf_link_sort_cmp1); | |
8340 | ||
8341 | for (i = 0, p = sort; i < count; i++, p += sort_elt) | |
8342 | { | |
8343 | struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p; | |
8344 | if (s->type != reloc_class_relative) | |
8345 | break; | |
8346 | } | |
8347 | ret = i; | |
8348 | s_non_relative = p; | |
8349 | ||
8350 | sq = (struct elf_link_sort_rela *) s_non_relative; | |
8351 | for (; i < count; i++, p += sort_elt) | |
8352 | { | |
8353 | struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p; | |
8354 | if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0) | |
8355 | sq = sp; | |
8356 | sp->u.offset = sq->rela->r_offset; | |
8357 | } | |
8358 | ||
8359 | qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2); | |
8360 | ||
3410fea8 | 8361 | for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next) |
c152c796 AM |
8362 | if (lo->type == bfd_indirect_link_order) |
8363 | { | |
8364 | bfd_byte *erel, *erelend; | |
8365 | asection *o = lo->u.indirect.section; | |
8366 | ||
8367 | erel = o->contents; | |
eea6121a | 8368 | erelend = o->contents + o->size; |
5dabe785 | 8369 | /* FIXME: octets_per_byte. */ |
c152c796 AM |
8370 | p = sort + o->output_offset / ext_size * sort_elt; |
8371 | while (erel < erelend) | |
8372 | { | |
8373 | struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p; | |
8374 | (*swap_out) (abfd, s->rela, erel); | |
8375 | p += sort_elt; | |
8376 | erel += ext_size; | |
8377 | } | |
8378 | } | |
8379 | ||
8380 | free (sort); | |
3410fea8 | 8381 | *psec = dynamic_relocs; |
c152c796 AM |
8382 | return ret; |
8383 | } | |
8384 | ||
8385 | /* Flush the output symbols to the file. */ | |
8386 | ||
8387 | static bfd_boolean | |
8b127cbc | 8388 | elf_link_flush_output_syms (struct elf_final_link_info *flinfo, |
c152c796 AM |
8389 | const struct elf_backend_data *bed) |
8390 | { | |
8b127cbc | 8391 | if (flinfo->symbuf_count > 0) |
c152c796 AM |
8392 | { |
8393 | Elf_Internal_Shdr *hdr; | |
8394 | file_ptr pos; | |
8395 | bfd_size_type amt; | |
8396 | ||
8b127cbc | 8397 | hdr = &elf_tdata (flinfo->output_bfd)->symtab_hdr; |
c152c796 | 8398 | pos = hdr->sh_offset + hdr->sh_size; |
8b127cbc AM |
8399 | amt = flinfo->symbuf_count * bed->s->sizeof_sym; |
8400 | if (bfd_seek (flinfo->output_bfd, pos, SEEK_SET) != 0 | |
8401 | || bfd_bwrite (flinfo->symbuf, amt, flinfo->output_bfd) != amt) | |
c152c796 AM |
8402 | return FALSE; |
8403 | ||
8404 | hdr->sh_size += amt; | |
8b127cbc | 8405 | flinfo->symbuf_count = 0; |
c152c796 AM |
8406 | } |
8407 | ||
8408 | return TRUE; | |
8409 | } | |
8410 | ||
8411 | /* Add a symbol to the output symbol table. */ | |
8412 | ||
6e0b88f1 | 8413 | static int |
8b127cbc | 8414 | elf_link_output_sym (struct elf_final_link_info *flinfo, |
c152c796 AM |
8415 | const char *name, |
8416 | Elf_Internal_Sym *elfsym, | |
8417 | asection *input_sec, | |
8418 | struct elf_link_hash_entry *h) | |
8419 | { | |
8420 | bfd_byte *dest; | |
8421 | Elf_External_Sym_Shndx *destshndx; | |
6e0b88f1 | 8422 | int (*output_symbol_hook) |
c152c796 AM |
8423 | (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *, |
8424 | struct elf_link_hash_entry *); | |
8425 | const struct elf_backend_data *bed; | |
8426 | ||
8b127cbc | 8427 | bed = get_elf_backend_data (flinfo->output_bfd); |
c152c796 AM |
8428 | output_symbol_hook = bed->elf_backend_link_output_symbol_hook; |
8429 | if (output_symbol_hook != NULL) | |
8430 | { | |
8b127cbc | 8431 | int ret = (*output_symbol_hook) (flinfo->info, name, elfsym, input_sec, h); |
6e0b88f1 AM |
8432 | if (ret != 1) |
8433 | return ret; | |
c152c796 AM |
8434 | } |
8435 | ||
8436 | if (name == NULL || *name == '\0') | |
8437 | elfsym->st_name = 0; | |
8438 | else if (input_sec->flags & SEC_EXCLUDE) | |
8439 | elfsym->st_name = 0; | |
8440 | else | |
8441 | { | |
8b127cbc | 8442 | elfsym->st_name = (unsigned long) _bfd_stringtab_add (flinfo->symstrtab, |
c152c796 AM |
8443 | name, TRUE, FALSE); |
8444 | if (elfsym->st_name == (unsigned long) -1) | |
6e0b88f1 | 8445 | return 0; |
c152c796 AM |
8446 | } |
8447 | ||
8b127cbc | 8448 | if (flinfo->symbuf_count >= flinfo->symbuf_size) |
c152c796 | 8449 | { |
8b127cbc | 8450 | if (! elf_link_flush_output_syms (flinfo, bed)) |
6e0b88f1 | 8451 | return 0; |
c152c796 AM |
8452 | } |
8453 | ||
8b127cbc AM |
8454 | dest = flinfo->symbuf + flinfo->symbuf_count * bed->s->sizeof_sym; |
8455 | destshndx = flinfo->symshndxbuf; | |
c152c796 AM |
8456 | if (destshndx != NULL) |
8457 | { | |
8b127cbc | 8458 | if (bfd_get_symcount (flinfo->output_bfd) >= flinfo->shndxbuf_size) |
c152c796 AM |
8459 | { |
8460 | bfd_size_type amt; | |
8461 | ||
8b127cbc | 8462 | amt = flinfo->shndxbuf_size * sizeof (Elf_External_Sym_Shndx); |
a50b1753 NC |
8463 | destshndx = (Elf_External_Sym_Shndx *) bfd_realloc (destshndx, |
8464 | amt * 2); | |
c152c796 | 8465 | if (destshndx == NULL) |
6e0b88f1 | 8466 | return 0; |
8b127cbc | 8467 | flinfo->symshndxbuf = destshndx; |
c152c796 | 8468 | memset ((char *) destshndx + amt, 0, amt); |
8b127cbc | 8469 | flinfo->shndxbuf_size *= 2; |
c152c796 | 8470 | } |
8b127cbc | 8471 | destshndx += bfd_get_symcount (flinfo->output_bfd); |
c152c796 AM |
8472 | } |
8473 | ||
8b127cbc AM |
8474 | bed->s->swap_symbol_out (flinfo->output_bfd, elfsym, dest, destshndx); |
8475 | flinfo->symbuf_count += 1; | |
8476 | bfd_get_symcount (flinfo->output_bfd) += 1; | |
c152c796 | 8477 | |
6e0b88f1 | 8478 | return 1; |
c152c796 AM |
8479 | } |
8480 | ||
c0d5a53d L |
8481 | /* Return TRUE if the dynamic symbol SYM in ABFD is supported. */ |
8482 | ||
8483 | static bfd_boolean | |
8484 | check_dynsym (bfd *abfd, Elf_Internal_Sym *sym) | |
8485 | { | |
4fbb74a6 AM |
8486 | if (sym->st_shndx >= (SHN_LORESERVE & 0xffff) |
8487 | && sym->st_shndx < SHN_LORESERVE) | |
c0d5a53d L |
8488 | { |
8489 | /* The gABI doesn't support dynamic symbols in output sections | |
a0c8462f | 8490 | beyond 64k. */ |
c0d5a53d L |
8491 | (*_bfd_error_handler) |
8492 | (_("%B: Too many sections: %d (>= %d)"), | |
4fbb74a6 | 8493 | abfd, bfd_count_sections (abfd), SHN_LORESERVE & 0xffff); |
c0d5a53d L |
8494 | bfd_set_error (bfd_error_nonrepresentable_section); |
8495 | return FALSE; | |
8496 | } | |
8497 | return TRUE; | |
8498 | } | |
8499 | ||
c152c796 AM |
8500 | /* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in |
8501 | allowing an unsatisfied unversioned symbol in the DSO to match a | |
8502 | versioned symbol that would normally require an explicit version. | |
8503 | We also handle the case that a DSO references a hidden symbol | |
8504 | which may be satisfied by a versioned symbol in another DSO. */ | |
8505 | ||
8506 | static bfd_boolean | |
8507 | elf_link_check_versioned_symbol (struct bfd_link_info *info, | |
8508 | const struct elf_backend_data *bed, | |
8509 | struct elf_link_hash_entry *h) | |
8510 | { | |
8511 | bfd *abfd; | |
8512 | struct elf_link_loaded_list *loaded; | |
8513 | ||
8514 | if (!is_elf_hash_table (info->hash)) | |
8515 | return FALSE; | |
8516 | ||
90c984fc L |
8517 | /* Check indirect symbol. */ |
8518 | while (h->root.type == bfd_link_hash_indirect) | |
8519 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
8520 | ||
c152c796 AM |
8521 | switch (h->root.type) |
8522 | { | |
8523 | default: | |
8524 | abfd = NULL; | |
8525 | break; | |
8526 | ||
8527 | case bfd_link_hash_undefined: | |
8528 | case bfd_link_hash_undefweak: | |
8529 | abfd = h->root.u.undef.abfd; | |
8530 | if ((abfd->flags & DYNAMIC) == 0 | |
e56f61be | 8531 | || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0) |
c152c796 AM |
8532 | return FALSE; |
8533 | break; | |
8534 | ||
8535 | case bfd_link_hash_defined: | |
8536 | case bfd_link_hash_defweak: | |
8537 | abfd = h->root.u.def.section->owner; | |
8538 | break; | |
8539 | ||
8540 | case bfd_link_hash_common: | |
8541 | abfd = h->root.u.c.p->section->owner; | |
8542 | break; | |
8543 | } | |
8544 | BFD_ASSERT (abfd != NULL); | |
8545 | ||
8546 | for (loaded = elf_hash_table (info)->loaded; | |
8547 | loaded != NULL; | |
8548 | loaded = loaded->next) | |
8549 | { | |
8550 | bfd *input; | |
8551 | Elf_Internal_Shdr *hdr; | |
8552 | bfd_size_type symcount; | |
8553 | bfd_size_type extsymcount; | |
8554 | bfd_size_type extsymoff; | |
8555 | Elf_Internal_Shdr *versymhdr; | |
8556 | Elf_Internal_Sym *isym; | |
8557 | Elf_Internal_Sym *isymend; | |
8558 | Elf_Internal_Sym *isymbuf; | |
8559 | Elf_External_Versym *ever; | |
8560 | Elf_External_Versym *extversym; | |
8561 | ||
8562 | input = loaded->abfd; | |
8563 | ||
8564 | /* We check each DSO for a possible hidden versioned definition. */ | |
8565 | if (input == abfd | |
8566 | || (input->flags & DYNAMIC) == 0 | |
8567 | || elf_dynversym (input) == 0) | |
8568 | continue; | |
8569 | ||
8570 | hdr = &elf_tdata (input)->dynsymtab_hdr; | |
8571 | ||
8572 | symcount = hdr->sh_size / bed->s->sizeof_sym; | |
8573 | if (elf_bad_symtab (input)) | |
8574 | { | |
8575 | extsymcount = symcount; | |
8576 | extsymoff = 0; | |
8577 | } | |
8578 | else | |
8579 | { | |
8580 | extsymcount = symcount - hdr->sh_info; | |
8581 | extsymoff = hdr->sh_info; | |
8582 | } | |
8583 | ||
8584 | if (extsymcount == 0) | |
8585 | continue; | |
8586 | ||
8587 | isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff, | |
8588 | NULL, NULL, NULL); | |
8589 | if (isymbuf == NULL) | |
8590 | return FALSE; | |
8591 | ||
8592 | /* Read in any version definitions. */ | |
8593 | versymhdr = &elf_tdata (input)->dynversym_hdr; | |
a50b1753 | 8594 | extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size); |
c152c796 AM |
8595 | if (extversym == NULL) |
8596 | goto error_ret; | |
8597 | ||
8598 | if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0 | |
8599 | || (bfd_bread (extversym, versymhdr->sh_size, input) | |
8600 | != versymhdr->sh_size)) | |
8601 | { | |
8602 | free (extversym); | |
8603 | error_ret: | |
8604 | free (isymbuf); | |
8605 | return FALSE; | |
8606 | } | |
8607 | ||
8608 | ever = extversym + extsymoff; | |
8609 | isymend = isymbuf + extsymcount; | |
8610 | for (isym = isymbuf; isym < isymend; isym++, ever++) | |
8611 | { | |
8612 | const char *name; | |
8613 | Elf_Internal_Versym iver; | |
8614 | unsigned short version_index; | |
8615 | ||
8616 | if (ELF_ST_BIND (isym->st_info) == STB_LOCAL | |
8617 | || isym->st_shndx == SHN_UNDEF) | |
8618 | continue; | |
8619 | ||
8620 | name = bfd_elf_string_from_elf_section (input, | |
8621 | hdr->sh_link, | |
8622 | isym->st_name); | |
8623 | if (strcmp (name, h->root.root.string) != 0) | |
8624 | continue; | |
8625 | ||
8626 | _bfd_elf_swap_versym_in (input, ever, &iver); | |
8627 | ||
d023c380 L |
8628 | if ((iver.vs_vers & VERSYM_HIDDEN) == 0 |
8629 | && !(h->def_regular | |
8630 | && h->forced_local)) | |
c152c796 AM |
8631 | { |
8632 | /* If we have a non-hidden versioned sym, then it should | |
d023c380 L |
8633 | have provided a definition for the undefined sym unless |
8634 | it is defined in a non-shared object and forced local. | |
8635 | */ | |
c152c796 AM |
8636 | abort (); |
8637 | } | |
8638 | ||
8639 | version_index = iver.vs_vers & VERSYM_VERSION; | |
8640 | if (version_index == 1 || version_index == 2) | |
8641 | { | |
8642 | /* This is the base or first version. We can use it. */ | |
8643 | free (extversym); | |
8644 | free (isymbuf); | |
8645 | return TRUE; | |
8646 | } | |
8647 | } | |
8648 | ||
8649 | free (extversym); | |
8650 | free (isymbuf); | |
8651 | } | |
8652 | ||
8653 | return FALSE; | |
8654 | } | |
8655 | ||
8656 | /* Add an external symbol to the symbol table. This is called from | |
8657 | the hash table traversal routine. When generating a shared object, | |
8658 | we go through the symbol table twice. The first time we output | |
8659 | anything that might have been forced to local scope in a version | |
8660 | script. The second time we output the symbols that are still | |
8661 | global symbols. */ | |
8662 | ||
8663 | static bfd_boolean | |
7686d77d | 8664 | elf_link_output_extsym (struct bfd_hash_entry *bh, void *data) |
c152c796 | 8665 | { |
7686d77d | 8666 | struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh; |
a50b1753 | 8667 | struct elf_outext_info *eoinfo = (struct elf_outext_info *) data; |
8b127cbc | 8668 | struct elf_final_link_info *flinfo = eoinfo->flinfo; |
c152c796 AM |
8669 | bfd_boolean strip; |
8670 | Elf_Internal_Sym sym; | |
8671 | asection *input_sec; | |
8672 | const struct elf_backend_data *bed; | |
6e0b88f1 AM |
8673 | long indx; |
8674 | int ret; | |
c152c796 AM |
8675 | |
8676 | if (h->root.type == bfd_link_hash_warning) | |
8677 | { | |
8678 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
8679 | if (h->root.type == bfd_link_hash_new) | |
8680 | return TRUE; | |
8681 | } | |
8682 | ||
8683 | /* Decide whether to output this symbol in this pass. */ | |
8684 | if (eoinfo->localsyms) | |
8685 | { | |
f5385ebf | 8686 | if (!h->forced_local) |
c152c796 | 8687 | return TRUE; |
ffbc01cc AM |
8688 | if (eoinfo->second_pass |
8689 | && !((h->root.type == bfd_link_hash_defined | |
8690 | || h->root.type == bfd_link_hash_defweak) | |
8691 | && h->root.u.def.section->output_section != NULL)) | |
8692 | return TRUE; | |
34a79995 JB |
8693 | |
8694 | if (!eoinfo->file_sym_done | |
8695 | && (eoinfo->second_pass ? eoinfo->flinfo->filesym_count == 1 | |
8696 | : eoinfo->flinfo->filesym_count > 1)) | |
8697 | { | |
8698 | /* Output a FILE symbol so that following locals are not associated | |
8699 | with the wrong input file. */ | |
8700 | memset (&sym, 0, sizeof (sym)); | |
8701 | sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE); | |
8702 | sym.st_shndx = SHN_ABS; | |
8703 | if (!elf_link_output_sym (eoinfo->flinfo, NULL, &sym, | |
8704 | bfd_und_section_ptr, NULL)) | |
8705 | return FALSE; | |
8706 | ||
8707 | eoinfo->file_sym_done = TRUE; | |
8708 | } | |
c152c796 AM |
8709 | } |
8710 | else | |
8711 | { | |
f5385ebf | 8712 | if (h->forced_local) |
c152c796 AM |
8713 | return TRUE; |
8714 | } | |
8715 | ||
8b127cbc | 8716 | bed = get_elf_backend_data (flinfo->output_bfd); |
c152c796 | 8717 | |
12ac1cf5 | 8718 | if (h->root.type == bfd_link_hash_undefined) |
c152c796 | 8719 | { |
12ac1cf5 NC |
8720 | /* If we have an undefined symbol reference here then it must have |
8721 | come from a shared library that is being linked in. (Undefined | |
98da7939 L |
8722 | references in regular files have already been handled unless |
8723 | they are in unreferenced sections which are removed by garbage | |
8724 | collection). */ | |
12ac1cf5 NC |
8725 | bfd_boolean ignore_undef = FALSE; |
8726 | ||
8727 | /* Some symbols may be special in that the fact that they're | |
8728 | undefined can be safely ignored - let backend determine that. */ | |
8729 | if (bed->elf_backend_ignore_undef_symbol) | |
8730 | ignore_undef = bed->elf_backend_ignore_undef_symbol (h); | |
8731 | ||
8732 | /* If we are reporting errors for this situation then do so now. */ | |
89a2ee5a | 8733 | if (!ignore_undef |
12ac1cf5 | 8734 | && h->ref_dynamic |
8b127cbc AM |
8735 | && (!h->ref_regular || flinfo->info->gc_sections) |
8736 | && !elf_link_check_versioned_symbol (flinfo->info, bed, h) | |
8737 | && flinfo->info->unresolved_syms_in_shared_libs != RM_IGNORE) | |
8738 | { | |
8739 | if (!(flinfo->info->callbacks->undefined_symbol | |
8740 | (flinfo->info, h->root.root.string, | |
8741 | h->ref_regular ? NULL : h->root.u.undef.abfd, | |
8742 | NULL, 0, | |
8743 | (flinfo->info->unresolved_syms_in_shared_libs | |
8744 | == RM_GENERATE_ERROR)))) | |
12ac1cf5 | 8745 | { |
17d078c5 | 8746 | bfd_set_error (bfd_error_bad_value); |
12ac1cf5 NC |
8747 | eoinfo->failed = TRUE; |
8748 | return FALSE; | |
8749 | } | |
c152c796 AM |
8750 | } |
8751 | } | |
8752 | ||
8753 | /* We should also warn if a forced local symbol is referenced from | |
8754 | shared libraries. */ | |
8b127cbc AM |
8755 | if (!flinfo->info->relocatable |
8756 | && flinfo->info->executable | |
f5385ebf AM |
8757 | && h->forced_local |
8758 | && h->ref_dynamic | |
371a5866 | 8759 | && h->def_regular |
f5385ebf | 8760 | && !h->dynamic_def |
ee659f1f | 8761 | && h->ref_dynamic_nonweak |
8b127cbc | 8762 | && !elf_link_check_versioned_symbol (flinfo->info, bed, h)) |
c152c796 | 8763 | { |
17d078c5 AM |
8764 | bfd *def_bfd; |
8765 | const char *msg; | |
90c984fc L |
8766 | struct elf_link_hash_entry *hi = h; |
8767 | ||
8768 | /* Check indirect symbol. */ | |
8769 | while (hi->root.type == bfd_link_hash_indirect) | |
8770 | hi = (struct elf_link_hash_entry *) hi->root.u.i.link; | |
17d078c5 AM |
8771 | |
8772 | if (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL) | |
8773 | msg = _("%B: internal symbol `%s' in %B is referenced by DSO"); | |
8774 | else if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN) | |
8775 | msg = _("%B: hidden symbol `%s' in %B is referenced by DSO"); | |
8776 | else | |
8777 | msg = _("%B: local symbol `%s' in %B is referenced by DSO"); | |
8b127cbc | 8778 | def_bfd = flinfo->output_bfd; |
90c984fc L |
8779 | if (hi->root.u.def.section != bfd_abs_section_ptr) |
8780 | def_bfd = hi->root.u.def.section->owner; | |
8b127cbc | 8781 | (*_bfd_error_handler) (msg, flinfo->output_bfd, def_bfd, |
17d078c5 AM |
8782 | h->root.root.string); |
8783 | bfd_set_error (bfd_error_bad_value); | |
c152c796 AM |
8784 | eoinfo->failed = TRUE; |
8785 | return FALSE; | |
8786 | } | |
8787 | ||
8788 | /* We don't want to output symbols that have never been mentioned by | |
8789 | a regular file, or that we have been told to strip. However, if | |
8790 | h->indx is set to -2, the symbol is used by a reloc and we must | |
8791 | output it. */ | |
8792 | if (h->indx == -2) | |
8793 | strip = FALSE; | |
f5385ebf | 8794 | else if ((h->def_dynamic |
77cfaee6 AM |
8795 | || h->ref_dynamic |
8796 | || h->root.type == bfd_link_hash_new) | |
f5385ebf AM |
8797 | && !h->def_regular |
8798 | && !h->ref_regular) | |
c152c796 | 8799 | strip = TRUE; |
8b127cbc | 8800 | else if (flinfo->info->strip == strip_all) |
c152c796 | 8801 | strip = TRUE; |
8b127cbc AM |
8802 | else if (flinfo->info->strip == strip_some |
8803 | && bfd_hash_lookup (flinfo->info->keep_hash, | |
c152c796 AM |
8804 | h->root.root.string, FALSE, FALSE) == NULL) |
8805 | strip = TRUE; | |
d56d55e7 AM |
8806 | else if ((h->root.type == bfd_link_hash_defined |
8807 | || h->root.type == bfd_link_hash_defweak) | |
8b127cbc | 8808 | && ((flinfo->info->strip_discarded |
dbaa2011 | 8809 | && discarded_section (h->root.u.def.section)) |
d56d55e7 AM |
8810 | || (h->root.u.def.section->owner != NULL |
8811 | && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0))) | |
c152c796 | 8812 | strip = TRUE; |
9e2278f5 AM |
8813 | else if ((h->root.type == bfd_link_hash_undefined |
8814 | || h->root.type == bfd_link_hash_undefweak) | |
8815 | && h->root.u.undef.abfd != NULL | |
8816 | && (h->root.u.undef.abfd->flags & BFD_PLUGIN) != 0) | |
8817 | strip = TRUE; | |
c152c796 AM |
8818 | else |
8819 | strip = FALSE; | |
8820 | ||
8821 | /* If we're stripping it, and it's not a dynamic symbol, there's | |
57ca8ac7 L |
8822 | nothing else to do unless it is a forced local symbol or a |
8823 | STT_GNU_IFUNC symbol. */ | |
c152c796 AM |
8824 | if (strip |
8825 | && h->dynindx == -1 | |
57ca8ac7 | 8826 | && h->type != STT_GNU_IFUNC |
f5385ebf | 8827 | && !h->forced_local) |
c152c796 AM |
8828 | return TRUE; |
8829 | ||
8830 | sym.st_value = 0; | |
8831 | sym.st_size = h->size; | |
8832 | sym.st_other = h->other; | |
f5385ebf | 8833 | if (h->forced_local) |
935bd1e0 L |
8834 | { |
8835 | sym.st_info = ELF_ST_INFO (STB_LOCAL, h->type); | |
8836 | /* Turn off visibility on local symbol. */ | |
8837 | sym.st_other &= ~ELF_ST_VISIBILITY (-1); | |
8838 | } | |
02acbe22 L |
8839 | /* Set STB_GNU_UNIQUE only if symbol is defined in regular object. */ |
8840 | else if (h->unique_global && h->def_regular) | |
3e7a7d11 | 8841 | sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, h->type); |
c152c796 AM |
8842 | else if (h->root.type == bfd_link_hash_undefweak |
8843 | || h->root.type == bfd_link_hash_defweak) | |
8844 | sym.st_info = ELF_ST_INFO (STB_WEAK, h->type); | |
8845 | else | |
8846 | sym.st_info = ELF_ST_INFO (STB_GLOBAL, h->type); | |
35fc36a8 | 8847 | sym.st_target_internal = h->target_internal; |
c152c796 AM |
8848 | |
8849 | switch (h->root.type) | |
8850 | { | |
8851 | default: | |
8852 | case bfd_link_hash_new: | |
8853 | case bfd_link_hash_warning: | |
8854 | abort (); | |
8855 | return FALSE; | |
8856 | ||
8857 | case bfd_link_hash_undefined: | |
8858 | case bfd_link_hash_undefweak: | |
8859 | input_sec = bfd_und_section_ptr; | |
8860 | sym.st_shndx = SHN_UNDEF; | |
8861 | break; | |
8862 | ||
8863 | case bfd_link_hash_defined: | |
8864 | case bfd_link_hash_defweak: | |
8865 | { | |
8866 | input_sec = h->root.u.def.section; | |
8867 | if (input_sec->output_section != NULL) | |
8868 | { | |
ffbc01cc AM |
8869 | if (eoinfo->localsyms && flinfo->filesym_count == 1) |
8870 | { | |
8871 | bfd_boolean second_pass_sym | |
8872 | = (input_sec->owner == flinfo->output_bfd | |
8873 | || input_sec->owner == NULL | |
8874 | || (input_sec->flags & SEC_LINKER_CREATED) != 0 | |
8875 | || (input_sec->owner->flags & BFD_LINKER_CREATED) != 0); | |
8876 | ||
8877 | eoinfo->need_second_pass |= second_pass_sym; | |
8878 | if (eoinfo->second_pass != second_pass_sym) | |
8879 | return TRUE; | |
8880 | } | |
8881 | ||
c152c796 | 8882 | sym.st_shndx = |
8b127cbc | 8883 | _bfd_elf_section_from_bfd_section (flinfo->output_bfd, |
c152c796 AM |
8884 | input_sec->output_section); |
8885 | if (sym.st_shndx == SHN_BAD) | |
8886 | { | |
8887 | (*_bfd_error_handler) | |
d003868e | 8888 | (_("%B: could not find output section %A for input section %A"), |
8b127cbc | 8889 | flinfo->output_bfd, input_sec->output_section, input_sec); |
17d078c5 | 8890 | bfd_set_error (bfd_error_nonrepresentable_section); |
c152c796 AM |
8891 | eoinfo->failed = TRUE; |
8892 | return FALSE; | |
8893 | } | |
8894 | ||
8895 | /* ELF symbols in relocatable files are section relative, | |
8896 | but in nonrelocatable files they are virtual | |
8897 | addresses. */ | |
8898 | sym.st_value = h->root.u.def.value + input_sec->output_offset; | |
8b127cbc | 8899 | if (!flinfo->info->relocatable) |
c152c796 AM |
8900 | { |
8901 | sym.st_value += input_sec->output_section->vma; | |
8902 | if (h->type == STT_TLS) | |
8903 | { | |
8b127cbc | 8904 | asection *tls_sec = elf_hash_table (flinfo->info)->tls_sec; |
430a16a5 NC |
8905 | if (tls_sec != NULL) |
8906 | sym.st_value -= tls_sec->vma; | |
8907 | else | |
8908 | { | |
8909 | /* The TLS section may have been garbage collected. */ | |
8b127cbc | 8910 | BFD_ASSERT (flinfo->info->gc_sections |
430a16a5 NC |
8911 | && !input_sec->gc_mark); |
8912 | } | |
c152c796 AM |
8913 | } |
8914 | } | |
8915 | } | |
8916 | else | |
8917 | { | |
8918 | BFD_ASSERT (input_sec->owner == NULL | |
8919 | || (input_sec->owner->flags & DYNAMIC) != 0); | |
8920 | sym.st_shndx = SHN_UNDEF; | |
8921 | input_sec = bfd_und_section_ptr; | |
8922 | } | |
8923 | } | |
8924 | break; | |
8925 | ||
8926 | case bfd_link_hash_common: | |
8927 | input_sec = h->root.u.c.p->section; | |
a4d8e49b | 8928 | sym.st_shndx = bed->common_section_index (input_sec); |
c152c796 AM |
8929 | sym.st_value = 1 << h->root.u.c.p->alignment_power; |
8930 | break; | |
8931 | ||
8932 | case bfd_link_hash_indirect: | |
8933 | /* These symbols are created by symbol versioning. They point | |
8934 | to the decorated version of the name. For example, if the | |
8935 | symbol foo@@GNU_1.2 is the default, which should be used when | |
8936 | foo is used with no version, then we add an indirect symbol | |
8937 | foo which points to foo@@GNU_1.2. We ignore these symbols, | |
8938 | since the indirected symbol is already in the hash table. */ | |
8939 | return TRUE; | |
8940 | } | |
8941 | ||
8942 | /* Give the processor backend a chance to tweak the symbol value, | |
8943 | and also to finish up anything that needs to be done for this | |
8944 | symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for | |
3aa14d16 | 8945 | forced local syms when non-shared is due to a historical quirk. |
5f35ea9c | 8946 | STT_GNU_IFUNC symbol must go through PLT. */ |
3aa14d16 | 8947 | if ((h->type == STT_GNU_IFUNC |
5f35ea9c | 8948 | && h->def_regular |
8b127cbc | 8949 | && !flinfo->info->relocatable) |
3aa14d16 L |
8950 | || ((h->dynindx != -1 |
8951 | || h->forced_local) | |
8b127cbc | 8952 | && ((flinfo->info->shared |
3aa14d16 L |
8953 | && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT |
8954 | || h->root.type != bfd_link_hash_undefweak)) | |
8955 | || !h->forced_local) | |
8b127cbc | 8956 | && elf_hash_table (flinfo->info)->dynamic_sections_created)) |
c152c796 AM |
8957 | { |
8958 | if (! ((*bed->elf_backend_finish_dynamic_symbol) | |
8b127cbc | 8959 | (flinfo->output_bfd, flinfo->info, h, &sym))) |
c152c796 AM |
8960 | { |
8961 | eoinfo->failed = TRUE; | |
8962 | return FALSE; | |
8963 | } | |
8964 | } | |
8965 | ||
8966 | /* If we are marking the symbol as undefined, and there are no | |
8967 | non-weak references to this symbol from a regular object, then | |
8968 | mark the symbol as weak undefined; if there are non-weak | |
8969 | references, mark the symbol as strong. We can't do this earlier, | |
8970 | because it might not be marked as undefined until the | |
8971 | finish_dynamic_symbol routine gets through with it. */ | |
8972 | if (sym.st_shndx == SHN_UNDEF | |
f5385ebf | 8973 | && h->ref_regular |
c152c796 AM |
8974 | && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL |
8975 | || ELF_ST_BIND (sym.st_info) == STB_WEAK)) | |
8976 | { | |
8977 | int bindtype; | |
2955ec4c L |
8978 | unsigned int type = ELF_ST_TYPE (sym.st_info); |
8979 | ||
8980 | /* Turn an undefined IFUNC symbol into a normal FUNC symbol. */ | |
8981 | if (type == STT_GNU_IFUNC) | |
8982 | type = STT_FUNC; | |
c152c796 | 8983 | |
f5385ebf | 8984 | if (h->ref_regular_nonweak) |
c152c796 AM |
8985 | bindtype = STB_GLOBAL; |
8986 | else | |
8987 | bindtype = STB_WEAK; | |
2955ec4c | 8988 | sym.st_info = ELF_ST_INFO (bindtype, type); |
c152c796 AM |
8989 | } |
8990 | ||
bda987c2 CD |
8991 | /* If this is a symbol defined in a dynamic library, don't use the |
8992 | symbol size from the dynamic library. Relinking an executable | |
8993 | against a new library may introduce gratuitous changes in the | |
8994 | executable's symbols if we keep the size. */ | |
8995 | if (sym.st_shndx == SHN_UNDEF | |
8996 | && !h->def_regular | |
8997 | && h->def_dynamic) | |
8998 | sym.st_size = 0; | |
8999 | ||
c152c796 AM |
9000 | /* If a non-weak symbol with non-default visibility is not defined |
9001 | locally, it is a fatal error. */ | |
8b127cbc | 9002 | if (!flinfo->info->relocatable |
c152c796 AM |
9003 | && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT |
9004 | && ELF_ST_BIND (sym.st_info) != STB_WEAK | |
9005 | && h->root.type == bfd_link_hash_undefined | |
f5385ebf | 9006 | && !h->def_regular) |
c152c796 | 9007 | { |
17d078c5 AM |
9008 | const char *msg; |
9009 | ||
9010 | if (ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED) | |
9011 | msg = _("%B: protected symbol `%s' isn't defined"); | |
9012 | else if (ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL) | |
9013 | msg = _("%B: internal symbol `%s' isn't defined"); | |
9014 | else | |
9015 | msg = _("%B: hidden symbol `%s' isn't defined"); | |
8b127cbc | 9016 | (*_bfd_error_handler) (msg, flinfo->output_bfd, h->root.root.string); |
17d078c5 | 9017 | bfd_set_error (bfd_error_bad_value); |
c152c796 AM |
9018 | eoinfo->failed = TRUE; |
9019 | return FALSE; | |
9020 | } | |
9021 | ||
9022 | /* If this symbol should be put in the .dynsym section, then put it | |
9023 | there now. We already know the symbol index. We also fill in | |
9024 | the entry in the .hash section. */ | |
8b127cbc | 9025 | if (flinfo->dynsym_sec != NULL |
202e2356 | 9026 | && h->dynindx != -1 |
8b127cbc | 9027 | && elf_hash_table (flinfo->info)->dynamic_sections_created) |
c152c796 | 9028 | { |
c152c796 AM |
9029 | bfd_byte *esym; |
9030 | ||
90c984fc L |
9031 | /* Since there is no version information in the dynamic string, |
9032 | if there is no version info in symbol version section, we will | |
9033 | have a run-time problem. */ | |
9034 | if (h->verinfo.verdef == NULL) | |
9035 | { | |
9036 | char *p = strrchr (h->root.root.string, ELF_VER_CHR); | |
9037 | ||
9038 | if (p && p [1] != '\0') | |
9039 | { | |
9040 | (*_bfd_error_handler) | |
9041 | (_("%B: No symbol version section for versioned symbol `%s'"), | |
9042 | flinfo->output_bfd, h->root.root.string); | |
9043 | eoinfo->failed = TRUE; | |
9044 | return FALSE; | |
9045 | } | |
9046 | } | |
9047 | ||
c152c796 | 9048 | sym.st_name = h->dynstr_index; |
8b127cbc AM |
9049 | esym = flinfo->dynsym_sec->contents + h->dynindx * bed->s->sizeof_sym; |
9050 | if (!check_dynsym (flinfo->output_bfd, &sym)) | |
c0d5a53d L |
9051 | { |
9052 | eoinfo->failed = TRUE; | |
9053 | return FALSE; | |
9054 | } | |
8b127cbc | 9055 | bed->s->swap_symbol_out (flinfo->output_bfd, &sym, esym, 0); |
c152c796 | 9056 | |
8b127cbc | 9057 | if (flinfo->hash_sec != NULL) |
fdc90cb4 JJ |
9058 | { |
9059 | size_t hash_entry_size; | |
9060 | bfd_byte *bucketpos; | |
9061 | bfd_vma chain; | |
41198d0c L |
9062 | size_t bucketcount; |
9063 | size_t bucket; | |
9064 | ||
8b127cbc | 9065 | bucketcount = elf_hash_table (flinfo->info)->bucketcount; |
41198d0c | 9066 | bucket = h->u.elf_hash_value % bucketcount; |
fdc90cb4 JJ |
9067 | |
9068 | hash_entry_size | |
8b127cbc AM |
9069 | = elf_section_data (flinfo->hash_sec)->this_hdr.sh_entsize; |
9070 | bucketpos = ((bfd_byte *) flinfo->hash_sec->contents | |
fdc90cb4 | 9071 | + (bucket + 2) * hash_entry_size); |
8b127cbc AM |
9072 | chain = bfd_get (8 * hash_entry_size, flinfo->output_bfd, bucketpos); |
9073 | bfd_put (8 * hash_entry_size, flinfo->output_bfd, h->dynindx, | |
9074 | bucketpos); | |
9075 | bfd_put (8 * hash_entry_size, flinfo->output_bfd, chain, | |
9076 | ((bfd_byte *) flinfo->hash_sec->contents | |
fdc90cb4 JJ |
9077 | + (bucketcount + 2 + h->dynindx) * hash_entry_size)); |
9078 | } | |
c152c796 | 9079 | |
8b127cbc | 9080 | if (flinfo->symver_sec != NULL && flinfo->symver_sec->contents != NULL) |
c152c796 AM |
9081 | { |
9082 | Elf_Internal_Versym iversym; | |
9083 | Elf_External_Versym *eversym; | |
9084 | ||
f5385ebf | 9085 | if (!h->def_regular) |
c152c796 AM |
9086 | { |
9087 | if (h->verinfo.verdef == NULL) | |
9088 | iversym.vs_vers = 0; | |
9089 | else | |
9090 | iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1; | |
9091 | } | |
9092 | else | |
9093 | { | |
9094 | if (h->verinfo.vertree == NULL) | |
9095 | iversym.vs_vers = 1; | |
9096 | else | |
9097 | iversym.vs_vers = h->verinfo.vertree->vernum + 1; | |
8b127cbc | 9098 | if (flinfo->info->create_default_symver) |
3e3b46e5 | 9099 | iversym.vs_vers++; |
c152c796 AM |
9100 | } |
9101 | ||
f5385ebf | 9102 | if (h->hidden) |
c152c796 AM |
9103 | iversym.vs_vers |= VERSYM_HIDDEN; |
9104 | ||
8b127cbc | 9105 | eversym = (Elf_External_Versym *) flinfo->symver_sec->contents; |
c152c796 | 9106 | eversym += h->dynindx; |
8b127cbc | 9107 | _bfd_elf_swap_versym_out (flinfo->output_bfd, &iversym, eversym); |
c152c796 AM |
9108 | } |
9109 | } | |
9110 | ||
9111 | /* If we're stripping it, then it was just a dynamic symbol, and | |
9112 | there's nothing else to do. */ | |
9113 | if (strip || (input_sec->flags & SEC_EXCLUDE) != 0) | |
9114 | return TRUE; | |
9115 | ||
8b127cbc AM |
9116 | indx = bfd_get_symcount (flinfo->output_bfd); |
9117 | ret = elf_link_output_sym (flinfo, h->root.root.string, &sym, input_sec, h); | |
6e0b88f1 | 9118 | if (ret == 0) |
c152c796 AM |
9119 | { |
9120 | eoinfo->failed = TRUE; | |
9121 | return FALSE; | |
9122 | } | |
6e0b88f1 AM |
9123 | else if (ret == 1) |
9124 | h->indx = indx; | |
9125 | else if (h->indx == -2) | |
9126 | abort(); | |
c152c796 AM |
9127 | |
9128 | return TRUE; | |
9129 | } | |
9130 | ||
cdd3575c AM |
9131 | /* Return TRUE if special handling is done for relocs in SEC against |
9132 | symbols defined in discarded sections. */ | |
9133 | ||
c152c796 AM |
9134 | static bfd_boolean |
9135 | elf_section_ignore_discarded_relocs (asection *sec) | |
9136 | { | |
9137 | const struct elf_backend_data *bed; | |
9138 | ||
cdd3575c AM |
9139 | switch (sec->sec_info_type) |
9140 | { | |
dbaa2011 AM |
9141 | case SEC_INFO_TYPE_STABS: |
9142 | case SEC_INFO_TYPE_EH_FRAME: | |
cdd3575c AM |
9143 | return TRUE; |
9144 | default: | |
9145 | break; | |
9146 | } | |
c152c796 AM |
9147 | |
9148 | bed = get_elf_backend_data (sec->owner); | |
9149 | if (bed->elf_backend_ignore_discarded_relocs != NULL | |
9150 | && (*bed->elf_backend_ignore_discarded_relocs) (sec)) | |
9151 | return TRUE; | |
9152 | ||
9153 | return FALSE; | |
9154 | } | |
9155 | ||
9e66c942 AM |
9156 | /* Return a mask saying how ld should treat relocations in SEC against |
9157 | symbols defined in discarded sections. If this function returns | |
9158 | COMPLAIN set, ld will issue a warning message. If this function | |
9159 | returns PRETEND set, and the discarded section was link-once and the | |
9160 | same size as the kept link-once section, ld will pretend that the | |
9161 | symbol was actually defined in the kept section. Otherwise ld will | |
9162 | zero the reloc (at least that is the intent, but some cooperation by | |
9163 | the target dependent code is needed, particularly for REL targets). */ | |
9164 | ||
8a696751 AM |
9165 | unsigned int |
9166 | _bfd_elf_default_action_discarded (asection *sec) | |
cdd3575c | 9167 | { |
9e66c942 | 9168 | if (sec->flags & SEC_DEBUGGING) |
69d54b1b | 9169 | return PRETEND; |
cdd3575c AM |
9170 | |
9171 | if (strcmp (".eh_frame", sec->name) == 0) | |
9e66c942 | 9172 | return 0; |
cdd3575c AM |
9173 | |
9174 | if (strcmp (".gcc_except_table", sec->name) == 0) | |
9e66c942 | 9175 | return 0; |
cdd3575c | 9176 | |
9e66c942 | 9177 | return COMPLAIN | PRETEND; |
cdd3575c AM |
9178 | } |
9179 | ||
3d7f7666 L |
9180 | /* Find a match between a section and a member of a section group. */ |
9181 | ||
9182 | static asection * | |
c0f00686 L |
9183 | match_group_member (asection *sec, asection *group, |
9184 | struct bfd_link_info *info) | |
3d7f7666 L |
9185 | { |
9186 | asection *first = elf_next_in_group (group); | |
9187 | asection *s = first; | |
9188 | ||
9189 | while (s != NULL) | |
9190 | { | |
c0f00686 | 9191 | if (bfd_elf_match_symbols_in_sections (s, sec, info)) |
3d7f7666 L |
9192 | return s; |
9193 | ||
83180ade | 9194 | s = elf_next_in_group (s); |
3d7f7666 L |
9195 | if (s == first) |
9196 | break; | |
9197 | } | |
9198 | ||
9199 | return NULL; | |
9200 | } | |
9201 | ||
01b3c8ab | 9202 | /* Check if the kept section of a discarded section SEC can be used |
c2370991 AM |
9203 | to replace it. Return the replacement if it is OK. Otherwise return |
9204 | NULL. */ | |
01b3c8ab L |
9205 | |
9206 | asection * | |
c0f00686 | 9207 | _bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info) |
01b3c8ab L |
9208 | { |
9209 | asection *kept; | |
9210 | ||
9211 | kept = sec->kept_section; | |
9212 | if (kept != NULL) | |
9213 | { | |
c2370991 | 9214 | if ((kept->flags & SEC_GROUP) != 0) |
c0f00686 | 9215 | kept = match_group_member (sec, kept, info); |
1dd2625f BW |
9216 | if (kept != NULL |
9217 | && ((sec->rawsize != 0 ? sec->rawsize : sec->size) | |
9218 | != (kept->rawsize != 0 ? kept->rawsize : kept->size))) | |
01b3c8ab | 9219 | kept = NULL; |
c2370991 | 9220 | sec->kept_section = kept; |
01b3c8ab L |
9221 | } |
9222 | return kept; | |
9223 | } | |
9224 | ||
c152c796 AM |
9225 | /* Link an input file into the linker output file. This function |
9226 | handles all the sections and relocations of the input file at once. | |
9227 | This is so that we only have to read the local symbols once, and | |
9228 | don't have to keep them in memory. */ | |
9229 | ||
9230 | static bfd_boolean | |
8b127cbc | 9231 | elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd) |
c152c796 | 9232 | { |
ece5ef60 | 9233 | int (*relocate_section) |
c152c796 AM |
9234 | (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *, |
9235 | Elf_Internal_Rela *, Elf_Internal_Sym *, asection **); | |
9236 | bfd *output_bfd; | |
9237 | Elf_Internal_Shdr *symtab_hdr; | |
9238 | size_t locsymcount; | |
9239 | size_t extsymoff; | |
9240 | Elf_Internal_Sym *isymbuf; | |
9241 | Elf_Internal_Sym *isym; | |
9242 | Elf_Internal_Sym *isymend; | |
9243 | long *pindex; | |
9244 | asection **ppsection; | |
9245 | asection *o; | |
9246 | const struct elf_backend_data *bed; | |
c152c796 | 9247 | struct elf_link_hash_entry **sym_hashes; |
310fd250 L |
9248 | bfd_size_type address_size; |
9249 | bfd_vma r_type_mask; | |
9250 | int r_sym_shift; | |
ffbc01cc | 9251 | bfd_boolean have_file_sym = FALSE; |
c152c796 | 9252 | |
8b127cbc | 9253 | output_bfd = flinfo->output_bfd; |
c152c796 AM |
9254 | bed = get_elf_backend_data (output_bfd); |
9255 | relocate_section = bed->elf_backend_relocate_section; | |
9256 | ||
9257 | /* If this is a dynamic object, we don't want to do anything here: | |
9258 | we don't want the local symbols, and we don't want the section | |
9259 | contents. */ | |
9260 | if ((input_bfd->flags & DYNAMIC) != 0) | |
9261 | return TRUE; | |
9262 | ||
c152c796 AM |
9263 | symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr; |
9264 | if (elf_bad_symtab (input_bfd)) | |
9265 | { | |
9266 | locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym; | |
9267 | extsymoff = 0; | |
9268 | } | |
9269 | else | |
9270 | { | |
9271 | locsymcount = symtab_hdr->sh_info; | |
9272 | extsymoff = symtab_hdr->sh_info; | |
9273 | } | |
9274 | ||
9275 | /* Read the local symbols. */ | |
9276 | isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents; | |
9277 | if (isymbuf == NULL && locsymcount != 0) | |
9278 | { | |
9279 | isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0, | |
8b127cbc AM |
9280 | flinfo->internal_syms, |
9281 | flinfo->external_syms, | |
9282 | flinfo->locsym_shndx); | |
c152c796 AM |
9283 | if (isymbuf == NULL) |
9284 | return FALSE; | |
9285 | } | |
9286 | ||
9287 | /* Find local symbol sections and adjust values of symbols in | |
9288 | SEC_MERGE sections. Write out those local symbols we know are | |
9289 | going into the output file. */ | |
9290 | isymend = isymbuf + locsymcount; | |
8b127cbc | 9291 | for (isym = isymbuf, pindex = flinfo->indices, ppsection = flinfo->sections; |
c152c796 AM |
9292 | isym < isymend; |
9293 | isym++, pindex++, ppsection++) | |
9294 | { | |
9295 | asection *isec; | |
9296 | const char *name; | |
9297 | Elf_Internal_Sym osym; | |
6e0b88f1 AM |
9298 | long indx; |
9299 | int ret; | |
c152c796 AM |
9300 | |
9301 | *pindex = -1; | |
9302 | ||
9303 | if (elf_bad_symtab (input_bfd)) | |
9304 | { | |
9305 | if (ELF_ST_BIND (isym->st_info) != STB_LOCAL) | |
9306 | { | |
9307 | *ppsection = NULL; | |
9308 | continue; | |
9309 | } | |
9310 | } | |
9311 | ||
9312 | if (isym->st_shndx == SHN_UNDEF) | |
9313 | isec = bfd_und_section_ptr; | |
c152c796 AM |
9314 | else if (isym->st_shndx == SHN_ABS) |
9315 | isec = bfd_abs_section_ptr; | |
9316 | else if (isym->st_shndx == SHN_COMMON) | |
9317 | isec = bfd_com_section_ptr; | |
9318 | else | |
9319 | { | |
cb33740c AM |
9320 | isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx); |
9321 | if (isec == NULL) | |
9322 | { | |
9323 | /* Don't attempt to output symbols with st_shnx in the | |
9324 | reserved range other than SHN_ABS and SHN_COMMON. */ | |
9325 | *ppsection = NULL; | |
9326 | continue; | |
9327 | } | |
dbaa2011 | 9328 | else if (isec->sec_info_type == SEC_INFO_TYPE_MERGE |
cb33740c AM |
9329 | && ELF_ST_TYPE (isym->st_info) != STT_SECTION) |
9330 | isym->st_value = | |
9331 | _bfd_merged_section_offset (output_bfd, &isec, | |
9332 | elf_section_data (isec)->sec_info, | |
9333 | isym->st_value); | |
c152c796 AM |
9334 | } |
9335 | ||
9336 | *ppsection = isec; | |
9337 | ||
9338 | /* Don't output the first, undefined, symbol. */ | |
8b127cbc | 9339 | if (ppsection == flinfo->sections) |
c152c796 AM |
9340 | continue; |
9341 | ||
9342 | if (ELF_ST_TYPE (isym->st_info) == STT_SECTION) | |
9343 | { | |
9344 | /* We never output section symbols. Instead, we use the | |
9345 | section symbol of the corresponding section in the output | |
9346 | file. */ | |
9347 | continue; | |
9348 | } | |
9349 | ||
9350 | /* If we are stripping all symbols, we don't want to output this | |
9351 | one. */ | |
8b127cbc | 9352 | if (flinfo->info->strip == strip_all) |
c152c796 AM |
9353 | continue; |
9354 | ||
9355 | /* If we are discarding all local symbols, we don't want to | |
9356 | output this one. If we are generating a relocatable output | |
9357 | file, then some of the local symbols may be required by | |
9358 | relocs; we output them below as we discover that they are | |
9359 | needed. */ | |
8b127cbc | 9360 | if (flinfo->info->discard == discard_all) |
c152c796 AM |
9361 | continue; |
9362 | ||
9363 | /* If this symbol is defined in a section which we are | |
f02571c5 AM |
9364 | discarding, we don't need to keep it. */ |
9365 | if (isym->st_shndx != SHN_UNDEF | |
4fbb74a6 AM |
9366 | && isym->st_shndx < SHN_LORESERVE |
9367 | && bfd_section_removed_from_list (output_bfd, | |
9368 | isec->output_section)) | |
e75a280b L |
9369 | continue; |
9370 | ||
c152c796 AM |
9371 | /* Get the name of the symbol. */ |
9372 | name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link, | |
9373 | isym->st_name); | |
9374 | if (name == NULL) | |
9375 | return FALSE; | |
9376 | ||
9377 | /* See if we are discarding symbols with this name. */ | |
8b127cbc AM |
9378 | if ((flinfo->info->strip == strip_some |
9379 | && (bfd_hash_lookup (flinfo->info->keep_hash, name, FALSE, FALSE) | |
c152c796 | 9380 | == NULL)) |
8b127cbc AM |
9381 | || (((flinfo->info->discard == discard_sec_merge |
9382 | && (isec->flags & SEC_MERGE) && !flinfo->info->relocatable) | |
9383 | || flinfo->info->discard == discard_l) | |
c152c796 AM |
9384 | && bfd_is_local_label_name (input_bfd, name))) |
9385 | continue; | |
9386 | ||
ffbc01cc AM |
9387 | if (ELF_ST_TYPE (isym->st_info) == STT_FILE) |
9388 | { | |
9389 | have_file_sym = TRUE; | |
9390 | flinfo->filesym_count += 1; | |
9391 | } | |
9392 | if (!have_file_sym) | |
9393 | { | |
9394 | /* In the absence of debug info, bfd_find_nearest_line uses | |
9395 | FILE symbols to determine the source file for local | |
9396 | function symbols. Provide a FILE symbol here if input | |
9397 | files lack such, so that their symbols won't be | |
9398 | associated with a previous input file. It's not the | |
9399 | source file, but the best we can do. */ | |
9400 | have_file_sym = TRUE; | |
9401 | flinfo->filesym_count += 1; | |
9402 | memset (&osym, 0, sizeof (osym)); | |
9403 | osym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE); | |
9404 | osym.st_shndx = SHN_ABS; | |
9405 | if (!elf_link_output_sym (flinfo, input_bfd->filename, &osym, | |
9406 | bfd_abs_section_ptr, NULL)) | |
9407 | return FALSE; | |
9408 | } | |
9409 | ||
c152c796 AM |
9410 | osym = *isym; |
9411 | ||
9412 | /* Adjust the section index for the output file. */ | |
9413 | osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd, | |
9414 | isec->output_section); | |
9415 | if (osym.st_shndx == SHN_BAD) | |
9416 | return FALSE; | |
9417 | ||
c152c796 AM |
9418 | /* ELF symbols in relocatable files are section relative, but |
9419 | in executable files they are virtual addresses. Note that | |
9420 | this code assumes that all ELF sections have an associated | |
9421 | BFD section with a reasonable value for output_offset; below | |
9422 | we assume that they also have a reasonable value for | |
9423 | output_section. Any special sections must be set up to meet | |
9424 | these requirements. */ | |
9425 | osym.st_value += isec->output_offset; | |
8b127cbc | 9426 | if (!flinfo->info->relocatable) |
c152c796 AM |
9427 | { |
9428 | osym.st_value += isec->output_section->vma; | |
9429 | if (ELF_ST_TYPE (osym.st_info) == STT_TLS) | |
9430 | { | |
9431 | /* STT_TLS symbols are relative to PT_TLS segment base. */ | |
8b127cbc AM |
9432 | BFD_ASSERT (elf_hash_table (flinfo->info)->tls_sec != NULL); |
9433 | osym.st_value -= elf_hash_table (flinfo->info)->tls_sec->vma; | |
c152c796 AM |
9434 | } |
9435 | } | |
9436 | ||
6e0b88f1 | 9437 | indx = bfd_get_symcount (output_bfd); |
8b127cbc | 9438 | ret = elf_link_output_sym (flinfo, name, &osym, isec, NULL); |
6e0b88f1 | 9439 | if (ret == 0) |
c152c796 | 9440 | return FALSE; |
6e0b88f1 AM |
9441 | else if (ret == 1) |
9442 | *pindex = indx; | |
c152c796 AM |
9443 | } |
9444 | ||
310fd250 L |
9445 | if (bed->s->arch_size == 32) |
9446 | { | |
9447 | r_type_mask = 0xff; | |
9448 | r_sym_shift = 8; | |
9449 | address_size = 4; | |
9450 | } | |
9451 | else | |
9452 | { | |
9453 | r_type_mask = 0xffffffff; | |
9454 | r_sym_shift = 32; | |
9455 | address_size = 8; | |
9456 | } | |
9457 | ||
c152c796 AM |
9458 | /* Relocate the contents of each section. */ |
9459 | sym_hashes = elf_sym_hashes (input_bfd); | |
9460 | for (o = input_bfd->sections; o != NULL; o = o->next) | |
9461 | { | |
9462 | bfd_byte *contents; | |
9463 | ||
9464 | if (! o->linker_mark) | |
9465 | { | |
9466 | /* This section was omitted from the link. */ | |
9467 | continue; | |
9468 | } | |
9469 | ||
8b127cbc | 9470 | if (flinfo->info->relocatable |
bcacc0f5 AM |
9471 | && (o->flags & (SEC_LINKER_CREATED | SEC_GROUP)) == SEC_GROUP) |
9472 | { | |
9473 | /* Deal with the group signature symbol. */ | |
9474 | struct bfd_elf_section_data *sec_data = elf_section_data (o); | |
9475 | unsigned long symndx = sec_data->this_hdr.sh_info; | |
9476 | asection *osec = o->output_section; | |
9477 | ||
9478 | if (symndx >= locsymcount | |
9479 | || (elf_bad_symtab (input_bfd) | |
8b127cbc | 9480 | && flinfo->sections[symndx] == NULL)) |
bcacc0f5 AM |
9481 | { |
9482 | struct elf_link_hash_entry *h = sym_hashes[symndx - extsymoff]; | |
9483 | while (h->root.type == bfd_link_hash_indirect | |
9484 | || h->root.type == bfd_link_hash_warning) | |
9485 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
9486 | /* Arrange for symbol to be output. */ | |
9487 | h->indx = -2; | |
9488 | elf_section_data (osec)->this_hdr.sh_info = -2; | |
9489 | } | |
9490 | else if (ELF_ST_TYPE (isymbuf[symndx].st_info) == STT_SECTION) | |
9491 | { | |
9492 | /* We'll use the output section target_index. */ | |
8b127cbc | 9493 | asection *sec = flinfo->sections[symndx]->output_section; |
bcacc0f5 AM |
9494 | elf_section_data (osec)->this_hdr.sh_info = sec->target_index; |
9495 | } | |
9496 | else | |
9497 | { | |
8b127cbc | 9498 | if (flinfo->indices[symndx] == -1) |
bcacc0f5 AM |
9499 | { |
9500 | /* Otherwise output the local symbol now. */ | |
9501 | Elf_Internal_Sym sym = isymbuf[symndx]; | |
8b127cbc | 9502 | asection *sec = flinfo->sections[symndx]->output_section; |
bcacc0f5 | 9503 | const char *name; |
6e0b88f1 AM |
9504 | long indx; |
9505 | int ret; | |
bcacc0f5 AM |
9506 | |
9507 | name = bfd_elf_string_from_elf_section (input_bfd, | |
9508 | symtab_hdr->sh_link, | |
9509 | sym.st_name); | |
9510 | if (name == NULL) | |
9511 | return FALSE; | |
9512 | ||
9513 | sym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd, | |
9514 | sec); | |
9515 | if (sym.st_shndx == SHN_BAD) | |
9516 | return FALSE; | |
9517 | ||
9518 | sym.st_value += o->output_offset; | |
9519 | ||
6e0b88f1 | 9520 | indx = bfd_get_symcount (output_bfd); |
8b127cbc | 9521 | ret = elf_link_output_sym (flinfo, name, &sym, o, NULL); |
6e0b88f1 | 9522 | if (ret == 0) |
bcacc0f5 | 9523 | return FALSE; |
6e0b88f1 | 9524 | else if (ret == 1) |
8b127cbc | 9525 | flinfo->indices[symndx] = indx; |
6e0b88f1 AM |
9526 | else |
9527 | abort (); | |
bcacc0f5 AM |
9528 | } |
9529 | elf_section_data (osec)->this_hdr.sh_info | |
8b127cbc | 9530 | = flinfo->indices[symndx]; |
bcacc0f5 AM |
9531 | } |
9532 | } | |
9533 | ||
c152c796 | 9534 | if ((o->flags & SEC_HAS_CONTENTS) == 0 |
eea6121a | 9535 | || (o->size == 0 && (o->flags & SEC_RELOC) == 0)) |
c152c796 AM |
9536 | continue; |
9537 | ||
9538 | if ((o->flags & SEC_LINKER_CREATED) != 0) | |
9539 | { | |
9540 | /* Section was created by _bfd_elf_link_create_dynamic_sections | |
9541 | or somesuch. */ | |
9542 | continue; | |
9543 | } | |
9544 | ||
9545 | /* Get the contents of the section. They have been cached by a | |
9546 | relaxation routine. Note that o is a section in an input | |
9547 | file, so the contents field will not have been set by any of | |
9548 | the routines which work on output files. */ | |
9549 | if (elf_section_data (o)->this_hdr.contents != NULL) | |
9550 | contents = elf_section_data (o)->this_hdr.contents; | |
9551 | else | |
9552 | { | |
8b127cbc | 9553 | contents = flinfo->contents; |
4a114e3e | 9554 | if (! bfd_get_full_section_contents (input_bfd, o, &contents)) |
c152c796 AM |
9555 | return FALSE; |
9556 | } | |
9557 | ||
9558 | if ((o->flags & SEC_RELOC) != 0) | |
9559 | { | |
9560 | Elf_Internal_Rela *internal_relocs; | |
0f02bbd9 | 9561 | Elf_Internal_Rela *rel, *relend; |
0f02bbd9 | 9562 | int action_discarded; |
ece5ef60 | 9563 | int ret; |
c152c796 AM |
9564 | |
9565 | /* Get the swapped relocs. */ | |
9566 | internal_relocs | |
8b127cbc AM |
9567 | = _bfd_elf_link_read_relocs (input_bfd, o, flinfo->external_relocs, |
9568 | flinfo->internal_relocs, FALSE); | |
c152c796 AM |
9569 | if (internal_relocs == NULL |
9570 | && o->reloc_count > 0) | |
9571 | return FALSE; | |
9572 | ||
310fd250 L |
9573 | /* We need to reverse-copy input .ctors/.dtors sections if |
9574 | they are placed in .init_array/.finit_array for output. */ | |
9575 | if (o->size > address_size | |
9576 | && ((strncmp (o->name, ".ctors", 6) == 0 | |
9577 | && strcmp (o->output_section->name, | |
9578 | ".init_array") == 0) | |
9579 | || (strncmp (o->name, ".dtors", 6) == 0 | |
9580 | && strcmp (o->output_section->name, | |
9581 | ".fini_array") == 0)) | |
9582 | && (o->name[6] == 0 || o->name[6] == '.')) | |
c152c796 | 9583 | { |
310fd250 L |
9584 | if (o->size != o->reloc_count * address_size) |
9585 | { | |
9586 | (*_bfd_error_handler) | |
9587 | (_("error: %B: size of section %A is not " | |
9588 | "multiple of address size"), | |
9589 | input_bfd, o); | |
9590 | bfd_set_error (bfd_error_on_input); | |
9591 | return FALSE; | |
9592 | } | |
9593 | o->flags |= SEC_ELF_REVERSE_COPY; | |
c152c796 AM |
9594 | } |
9595 | ||
0f02bbd9 | 9596 | action_discarded = -1; |
c152c796 | 9597 | if (!elf_section_ignore_discarded_relocs (o)) |
0f02bbd9 AM |
9598 | action_discarded = (*bed->action_discarded) (o); |
9599 | ||
9600 | /* Run through the relocs evaluating complex reloc symbols and | |
9601 | looking for relocs against symbols from discarded sections | |
9602 | or section symbols from removed link-once sections. | |
9603 | Complain about relocs against discarded sections. Zero | |
9604 | relocs against removed link-once sections. */ | |
9605 | ||
9606 | rel = internal_relocs; | |
9607 | relend = rel + o->reloc_count * bed->s->int_rels_per_ext_rel; | |
9608 | for ( ; rel < relend; rel++) | |
c152c796 | 9609 | { |
0f02bbd9 AM |
9610 | unsigned long r_symndx = rel->r_info >> r_sym_shift; |
9611 | unsigned int s_type; | |
9612 | asection **ps, *sec; | |
9613 | struct elf_link_hash_entry *h = NULL; | |
9614 | const char *sym_name; | |
c152c796 | 9615 | |
0f02bbd9 AM |
9616 | if (r_symndx == STN_UNDEF) |
9617 | continue; | |
c152c796 | 9618 | |
0f02bbd9 AM |
9619 | if (r_symndx >= locsymcount |
9620 | || (elf_bad_symtab (input_bfd) | |
8b127cbc | 9621 | && flinfo->sections[r_symndx] == NULL)) |
0f02bbd9 AM |
9622 | { |
9623 | h = sym_hashes[r_symndx - extsymoff]; | |
ee75fd95 | 9624 | |
0f02bbd9 AM |
9625 | /* Badly formatted input files can contain relocs that |
9626 | reference non-existant symbols. Check here so that | |
9627 | we do not seg fault. */ | |
9628 | if (h == NULL) | |
c152c796 | 9629 | { |
0f02bbd9 | 9630 | char buffer [32]; |
dce669a1 | 9631 | |
0f02bbd9 AM |
9632 | sprintf_vma (buffer, rel->r_info); |
9633 | (*_bfd_error_handler) | |
9634 | (_("error: %B contains a reloc (0x%s) for section %A " | |
9635 | "that references a non-existent global symbol"), | |
9636 | input_bfd, o, buffer); | |
9637 | bfd_set_error (bfd_error_bad_value); | |
9638 | return FALSE; | |
9639 | } | |
3b36f7e6 | 9640 | |
0f02bbd9 AM |
9641 | while (h->root.type == bfd_link_hash_indirect |
9642 | || h->root.type == bfd_link_hash_warning) | |
9643 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
c152c796 | 9644 | |
0f02bbd9 | 9645 | s_type = h->type; |
cdd3575c | 9646 | |
0f02bbd9 AM |
9647 | ps = NULL; |
9648 | if (h->root.type == bfd_link_hash_defined | |
9649 | || h->root.type == bfd_link_hash_defweak) | |
9650 | ps = &h->root.u.def.section; | |
9651 | ||
9652 | sym_name = h->root.root.string; | |
9653 | } | |
9654 | else | |
9655 | { | |
9656 | Elf_Internal_Sym *sym = isymbuf + r_symndx; | |
9657 | ||
9658 | s_type = ELF_ST_TYPE (sym->st_info); | |
8b127cbc | 9659 | ps = &flinfo->sections[r_symndx]; |
0f02bbd9 AM |
9660 | sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr, |
9661 | sym, *ps); | |
9662 | } | |
c152c796 | 9663 | |
c301e700 | 9664 | if ((s_type == STT_RELC || s_type == STT_SRELC) |
8b127cbc | 9665 | && !flinfo->info->relocatable) |
0f02bbd9 AM |
9666 | { |
9667 | bfd_vma val; | |
9668 | bfd_vma dot = (rel->r_offset | |
9669 | + o->output_offset + o->output_section->vma); | |
9670 | #ifdef DEBUG | |
9671 | printf ("Encountered a complex symbol!"); | |
9672 | printf (" (input_bfd %s, section %s, reloc %ld\n", | |
9ccb8af9 AM |
9673 | input_bfd->filename, o->name, |
9674 | (long) (rel - internal_relocs)); | |
0f02bbd9 AM |
9675 | printf (" symbol: idx %8.8lx, name %s\n", |
9676 | r_symndx, sym_name); | |
9677 | printf (" reloc : info %8.8lx, addr %8.8lx\n", | |
9678 | (unsigned long) rel->r_info, | |
9679 | (unsigned long) rel->r_offset); | |
9680 | #endif | |
8b127cbc | 9681 | if (!eval_symbol (&val, &sym_name, input_bfd, flinfo, dot, |
0f02bbd9 AM |
9682 | isymbuf, locsymcount, s_type == STT_SRELC)) |
9683 | return FALSE; | |
9684 | ||
9685 | /* Symbol evaluated OK. Update to absolute value. */ | |
9686 | set_symbol_value (input_bfd, isymbuf, locsymcount, | |
9687 | r_symndx, val); | |
9688 | continue; | |
9689 | } | |
9690 | ||
9691 | if (action_discarded != -1 && ps != NULL) | |
9692 | { | |
cdd3575c AM |
9693 | /* Complain if the definition comes from a |
9694 | discarded section. */ | |
dbaa2011 | 9695 | if ((sec = *ps) != NULL && discarded_section (sec)) |
cdd3575c | 9696 | { |
cf35638d | 9697 | BFD_ASSERT (r_symndx != STN_UNDEF); |
0f02bbd9 | 9698 | if (action_discarded & COMPLAIN) |
8b127cbc | 9699 | (*flinfo->info->callbacks->einfo) |
e1fffbe6 | 9700 | (_("%X`%s' referenced in section `%A' of %B: " |
58ac56d0 | 9701 | "defined in discarded section `%A' of %B\n"), |
e1fffbe6 | 9702 | sym_name, o, input_bfd, sec, sec->owner); |
cdd3575c | 9703 | |
87e5235d | 9704 | /* Try to do the best we can to support buggy old |
e0ae6d6f | 9705 | versions of gcc. Pretend that the symbol is |
87e5235d AM |
9706 | really defined in the kept linkonce section. |
9707 | FIXME: This is quite broken. Modifying the | |
9708 | symbol here means we will be changing all later | |
e0ae6d6f | 9709 | uses of the symbol, not just in this section. */ |
0f02bbd9 | 9710 | if (action_discarded & PRETEND) |
87e5235d | 9711 | { |
01b3c8ab L |
9712 | asection *kept; |
9713 | ||
c0f00686 | 9714 | kept = _bfd_elf_check_kept_section (sec, |
8b127cbc | 9715 | flinfo->info); |
01b3c8ab | 9716 | if (kept != NULL) |
87e5235d AM |
9717 | { |
9718 | *ps = kept; | |
9719 | continue; | |
9720 | } | |
9721 | } | |
c152c796 AM |
9722 | } |
9723 | } | |
9724 | } | |
9725 | ||
9726 | /* Relocate the section by invoking a back end routine. | |
9727 | ||
9728 | The back end routine is responsible for adjusting the | |
9729 | section contents as necessary, and (if using Rela relocs | |
9730 | and generating a relocatable output file) adjusting the | |
9731 | reloc addend as necessary. | |
9732 | ||
9733 | The back end routine does not have to worry about setting | |
9734 | the reloc address or the reloc symbol index. | |
9735 | ||
9736 | The back end routine is given a pointer to the swapped in | |
9737 | internal symbols, and can access the hash table entries | |
9738 | for the external symbols via elf_sym_hashes (input_bfd). | |
9739 | ||
9740 | When generating relocatable output, the back end routine | |
9741 | must handle STB_LOCAL/STT_SECTION symbols specially. The | |
9742 | output symbol is going to be a section symbol | |
9743 | corresponding to the output section, which will require | |
9744 | the addend to be adjusted. */ | |
9745 | ||
8b127cbc | 9746 | ret = (*relocate_section) (output_bfd, flinfo->info, |
c152c796 AM |
9747 | input_bfd, o, contents, |
9748 | internal_relocs, | |
9749 | isymbuf, | |
8b127cbc | 9750 | flinfo->sections); |
ece5ef60 | 9751 | if (!ret) |
c152c796 AM |
9752 | return FALSE; |
9753 | ||
ece5ef60 | 9754 | if (ret == 2 |
8b127cbc AM |
9755 | || flinfo->info->relocatable |
9756 | || flinfo->info->emitrelocations) | |
c152c796 AM |
9757 | { |
9758 | Elf_Internal_Rela *irela; | |
d4730f92 | 9759 | Elf_Internal_Rela *irelaend, *irelamid; |
c152c796 AM |
9760 | bfd_vma last_offset; |
9761 | struct elf_link_hash_entry **rel_hash; | |
d4730f92 BS |
9762 | struct elf_link_hash_entry **rel_hash_list, **rela_hash_list; |
9763 | Elf_Internal_Shdr *input_rel_hdr, *input_rela_hdr; | |
c152c796 | 9764 | unsigned int next_erel; |
c152c796 | 9765 | bfd_boolean rela_normal; |
d4730f92 | 9766 | struct bfd_elf_section_data *esdi, *esdo; |
c152c796 | 9767 | |
d4730f92 BS |
9768 | esdi = elf_section_data (o); |
9769 | esdo = elf_section_data (o->output_section); | |
9770 | rela_normal = FALSE; | |
c152c796 AM |
9771 | |
9772 | /* Adjust the reloc addresses and symbol indices. */ | |
9773 | ||
9774 | irela = internal_relocs; | |
9775 | irelaend = irela + o->reloc_count * bed->s->int_rels_per_ext_rel; | |
d4730f92 BS |
9776 | rel_hash = esdo->rel.hashes + esdo->rel.count; |
9777 | /* We start processing the REL relocs, if any. When we reach | |
9778 | IRELAMID in the loop, we switch to the RELA relocs. */ | |
9779 | irelamid = irela; | |
9780 | if (esdi->rel.hdr != NULL) | |
9781 | irelamid += (NUM_SHDR_ENTRIES (esdi->rel.hdr) | |
9782 | * bed->s->int_rels_per_ext_rel); | |
eac338cf | 9783 | rel_hash_list = rel_hash; |
d4730f92 | 9784 | rela_hash_list = NULL; |
c152c796 | 9785 | last_offset = o->output_offset; |
8b127cbc | 9786 | if (!flinfo->info->relocatable) |
c152c796 AM |
9787 | last_offset += o->output_section->vma; |
9788 | for (next_erel = 0; irela < irelaend; irela++, next_erel++) | |
9789 | { | |
9790 | unsigned long r_symndx; | |
9791 | asection *sec; | |
9792 | Elf_Internal_Sym sym; | |
9793 | ||
9794 | if (next_erel == bed->s->int_rels_per_ext_rel) | |
9795 | { | |
9796 | rel_hash++; | |
9797 | next_erel = 0; | |
9798 | } | |
9799 | ||
d4730f92 BS |
9800 | if (irela == irelamid) |
9801 | { | |
9802 | rel_hash = esdo->rela.hashes + esdo->rela.count; | |
9803 | rela_hash_list = rel_hash; | |
9804 | rela_normal = bed->rela_normal; | |
9805 | } | |
9806 | ||
c152c796 | 9807 | irela->r_offset = _bfd_elf_section_offset (output_bfd, |
8b127cbc | 9808 | flinfo->info, o, |
c152c796 AM |
9809 | irela->r_offset); |
9810 | if (irela->r_offset >= (bfd_vma) -2) | |
9811 | { | |
9812 | /* This is a reloc for a deleted entry or somesuch. | |
9813 | Turn it into an R_*_NONE reloc, at the same | |
9814 | offset as the last reloc. elf_eh_frame.c and | |
e460dd0d | 9815 | bfd_elf_discard_info rely on reloc offsets |
c152c796 AM |
9816 | being ordered. */ |
9817 | irela->r_offset = last_offset; | |
9818 | irela->r_info = 0; | |
9819 | irela->r_addend = 0; | |
9820 | continue; | |
9821 | } | |
9822 | ||
9823 | irela->r_offset += o->output_offset; | |
9824 | ||
9825 | /* Relocs in an executable have to be virtual addresses. */ | |
8b127cbc | 9826 | if (!flinfo->info->relocatable) |
c152c796 AM |
9827 | irela->r_offset += o->output_section->vma; |
9828 | ||
9829 | last_offset = irela->r_offset; | |
9830 | ||
9831 | r_symndx = irela->r_info >> r_sym_shift; | |
9832 | if (r_symndx == STN_UNDEF) | |
9833 | continue; | |
9834 | ||
9835 | if (r_symndx >= locsymcount | |
9836 | || (elf_bad_symtab (input_bfd) | |
8b127cbc | 9837 | && flinfo->sections[r_symndx] == NULL)) |
c152c796 AM |
9838 | { |
9839 | struct elf_link_hash_entry *rh; | |
9840 | unsigned long indx; | |
9841 | ||
9842 | /* This is a reloc against a global symbol. We | |
9843 | have not yet output all the local symbols, so | |
9844 | we do not know the symbol index of any global | |
9845 | symbol. We set the rel_hash entry for this | |
9846 | reloc to point to the global hash table entry | |
9847 | for this symbol. The symbol index is then | |
ee75fd95 | 9848 | set at the end of bfd_elf_final_link. */ |
c152c796 AM |
9849 | indx = r_symndx - extsymoff; |
9850 | rh = elf_sym_hashes (input_bfd)[indx]; | |
9851 | while (rh->root.type == bfd_link_hash_indirect | |
9852 | || rh->root.type == bfd_link_hash_warning) | |
9853 | rh = (struct elf_link_hash_entry *) rh->root.u.i.link; | |
9854 | ||
9855 | /* Setting the index to -2 tells | |
9856 | elf_link_output_extsym that this symbol is | |
9857 | used by a reloc. */ | |
9858 | BFD_ASSERT (rh->indx < 0); | |
9859 | rh->indx = -2; | |
9860 | ||
9861 | *rel_hash = rh; | |
9862 | ||
9863 | continue; | |
9864 | } | |
9865 | ||
9866 | /* This is a reloc against a local symbol. */ | |
9867 | ||
9868 | *rel_hash = NULL; | |
9869 | sym = isymbuf[r_symndx]; | |
8b127cbc | 9870 | sec = flinfo->sections[r_symndx]; |
c152c796 AM |
9871 | if (ELF_ST_TYPE (sym.st_info) == STT_SECTION) |
9872 | { | |
9873 | /* I suppose the backend ought to fill in the | |
9874 | section of any STT_SECTION symbol against a | |
6a8d1586 | 9875 | processor specific section. */ |
cf35638d | 9876 | r_symndx = STN_UNDEF; |
6a8d1586 AM |
9877 | if (bfd_is_abs_section (sec)) |
9878 | ; | |
c152c796 AM |
9879 | else if (sec == NULL || sec->owner == NULL) |
9880 | { | |
9881 | bfd_set_error (bfd_error_bad_value); | |
9882 | return FALSE; | |
9883 | } | |
9884 | else | |
9885 | { | |
6a8d1586 AM |
9886 | asection *osec = sec->output_section; |
9887 | ||
9888 | /* If we have discarded a section, the output | |
9889 | section will be the absolute section. In | |
ab96bf03 AM |
9890 | case of discarded SEC_MERGE sections, use |
9891 | the kept section. relocate_section should | |
9892 | have already handled discarded linkonce | |
9893 | sections. */ | |
6a8d1586 AM |
9894 | if (bfd_is_abs_section (osec) |
9895 | && sec->kept_section != NULL | |
9896 | && sec->kept_section->output_section != NULL) | |
9897 | { | |
9898 | osec = sec->kept_section->output_section; | |
9899 | irela->r_addend -= osec->vma; | |
9900 | } | |
9901 | ||
9902 | if (!bfd_is_abs_section (osec)) | |
9903 | { | |
9904 | r_symndx = osec->target_index; | |
cf35638d | 9905 | if (r_symndx == STN_UNDEF) |
74541ad4 | 9906 | { |
051d833a AM |
9907 | irela->r_addend += osec->vma; |
9908 | osec = _bfd_nearby_section (output_bfd, osec, | |
9909 | osec->vma); | |
9910 | irela->r_addend -= osec->vma; | |
9911 | r_symndx = osec->target_index; | |
74541ad4 | 9912 | } |
6a8d1586 | 9913 | } |
c152c796 AM |
9914 | } |
9915 | ||
9916 | /* Adjust the addend according to where the | |
9917 | section winds up in the output section. */ | |
9918 | if (rela_normal) | |
9919 | irela->r_addend += sec->output_offset; | |
9920 | } | |
9921 | else | |
9922 | { | |
8b127cbc | 9923 | if (flinfo->indices[r_symndx] == -1) |
c152c796 AM |
9924 | { |
9925 | unsigned long shlink; | |
9926 | const char *name; | |
9927 | asection *osec; | |
6e0b88f1 | 9928 | long indx; |
c152c796 | 9929 | |
8b127cbc | 9930 | if (flinfo->info->strip == strip_all) |
c152c796 AM |
9931 | { |
9932 | /* You can't do ld -r -s. */ | |
9933 | bfd_set_error (bfd_error_invalid_operation); | |
9934 | return FALSE; | |
9935 | } | |
9936 | ||
9937 | /* This symbol was skipped earlier, but | |
9938 | since it is needed by a reloc, we | |
9939 | must output it now. */ | |
9940 | shlink = symtab_hdr->sh_link; | |
9941 | name = (bfd_elf_string_from_elf_section | |
9942 | (input_bfd, shlink, sym.st_name)); | |
9943 | if (name == NULL) | |
9944 | return FALSE; | |
9945 | ||
9946 | osec = sec->output_section; | |
9947 | sym.st_shndx = | |
9948 | _bfd_elf_section_from_bfd_section (output_bfd, | |
9949 | osec); | |
9950 | if (sym.st_shndx == SHN_BAD) | |
9951 | return FALSE; | |
9952 | ||
9953 | sym.st_value += sec->output_offset; | |
8b127cbc | 9954 | if (!flinfo->info->relocatable) |
c152c796 AM |
9955 | { |
9956 | sym.st_value += osec->vma; | |
9957 | if (ELF_ST_TYPE (sym.st_info) == STT_TLS) | |
9958 | { | |
9959 | /* STT_TLS symbols are relative to PT_TLS | |
9960 | segment base. */ | |
8b127cbc | 9961 | BFD_ASSERT (elf_hash_table (flinfo->info) |
c152c796 | 9962 | ->tls_sec != NULL); |
8b127cbc | 9963 | sym.st_value -= (elf_hash_table (flinfo->info) |
c152c796 AM |
9964 | ->tls_sec->vma); |
9965 | } | |
9966 | } | |
9967 | ||
6e0b88f1 | 9968 | indx = bfd_get_symcount (output_bfd); |
8b127cbc | 9969 | ret = elf_link_output_sym (flinfo, name, &sym, sec, |
6e0b88f1 AM |
9970 | NULL); |
9971 | if (ret == 0) | |
c152c796 | 9972 | return FALSE; |
6e0b88f1 | 9973 | else if (ret == 1) |
8b127cbc | 9974 | flinfo->indices[r_symndx] = indx; |
6e0b88f1 AM |
9975 | else |
9976 | abort (); | |
c152c796 AM |
9977 | } |
9978 | ||
8b127cbc | 9979 | r_symndx = flinfo->indices[r_symndx]; |
c152c796 AM |
9980 | } |
9981 | ||
9982 | irela->r_info = ((bfd_vma) r_symndx << r_sym_shift | |
9983 | | (irela->r_info & r_type_mask)); | |
9984 | } | |
9985 | ||
9986 | /* Swap out the relocs. */ | |
d4730f92 BS |
9987 | input_rel_hdr = esdi->rel.hdr; |
9988 | if (input_rel_hdr && input_rel_hdr->sh_size != 0) | |
c152c796 | 9989 | { |
d4730f92 BS |
9990 | if (!bed->elf_backend_emit_relocs (output_bfd, o, |
9991 | input_rel_hdr, | |
9992 | internal_relocs, | |
9993 | rel_hash_list)) | |
9994 | return FALSE; | |
c152c796 AM |
9995 | internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr) |
9996 | * bed->s->int_rels_per_ext_rel); | |
eac338cf | 9997 | rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr); |
d4730f92 BS |
9998 | } |
9999 | ||
10000 | input_rela_hdr = esdi->rela.hdr; | |
10001 | if (input_rela_hdr && input_rela_hdr->sh_size != 0) | |
10002 | { | |
eac338cf | 10003 | if (!bed->elf_backend_emit_relocs (output_bfd, o, |
d4730f92 | 10004 | input_rela_hdr, |
eac338cf | 10005 | internal_relocs, |
d4730f92 | 10006 | rela_hash_list)) |
c152c796 AM |
10007 | return FALSE; |
10008 | } | |
10009 | } | |
10010 | } | |
10011 | ||
10012 | /* Write out the modified section contents. */ | |
10013 | if (bed->elf_backend_write_section | |
8b127cbc | 10014 | && (*bed->elf_backend_write_section) (output_bfd, flinfo->info, o, |
c7b8f16e | 10015 | contents)) |
c152c796 AM |
10016 | { |
10017 | /* Section written out. */ | |
10018 | } | |
10019 | else switch (o->sec_info_type) | |
10020 | { | |
dbaa2011 | 10021 | case SEC_INFO_TYPE_STABS: |
c152c796 AM |
10022 | if (! (_bfd_write_section_stabs |
10023 | (output_bfd, | |
8b127cbc | 10024 | &elf_hash_table (flinfo->info)->stab_info, |
c152c796 AM |
10025 | o, &elf_section_data (o)->sec_info, contents))) |
10026 | return FALSE; | |
10027 | break; | |
dbaa2011 | 10028 | case SEC_INFO_TYPE_MERGE: |
c152c796 AM |
10029 | if (! _bfd_write_merged_section (output_bfd, o, |
10030 | elf_section_data (o)->sec_info)) | |
10031 | return FALSE; | |
10032 | break; | |
dbaa2011 | 10033 | case SEC_INFO_TYPE_EH_FRAME: |
c152c796 | 10034 | { |
8b127cbc | 10035 | if (! _bfd_elf_write_section_eh_frame (output_bfd, flinfo->info, |
c152c796 AM |
10036 | o, contents)) |
10037 | return FALSE; | |
10038 | } | |
10039 | break; | |
10040 | default: | |
10041 | { | |
5dabe785 | 10042 | /* FIXME: octets_per_byte. */ |
310fd250 L |
10043 | if (! (o->flags & SEC_EXCLUDE)) |
10044 | { | |
10045 | file_ptr offset = (file_ptr) o->output_offset; | |
10046 | bfd_size_type todo = o->size; | |
10047 | if ((o->flags & SEC_ELF_REVERSE_COPY)) | |
10048 | { | |
10049 | /* Reverse-copy input section to output. */ | |
10050 | do | |
10051 | { | |
10052 | todo -= address_size; | |
10053 | if (! bfd_set_section_contents (output_bfd, | |
10054 | o->output_section, | |
10055 | contents + todo, | |
10056 | offset, | |
10057 | address_size)) | |
10058 | return FALSE; | |
10059 | if (todo == 0) | |
10060 | break; | |
10061 | offset += address_size; | |
10062 | } | |
10063 | while (1); | |
10064 | } | |
10065 | else if (! bfd_set_section_contents (output_bfd, | |
10066 | o->output_section, | |
10067 | contents, | |
10068 | offset, todo)) | |
10069 | return FALSE; | |
10070 | } | |
c152c796 AM |
10071 | } |
10072 | break; | |
10073 | } | |
10074 | } | |
10075 | ||
10076 | return TRUE; | |
10077 | } | |
10078 | ||
10079 | /* Generate a reloc when linking an ELF file. This is a reloc | |
3a800eb9 | 10080 | requested by the linker, and does not come from any input file. This |
c152c796 AM |
10081 | is used to build constructor and destructor tables when linking |
10082 | with -Ur. */ | |
10083 | ||
10084 | static bfd_boolean | |
10085 | elf_reloc_link_order (bfd *output_bfd, | |
10086 | struct bfd_link_info *info, | |
10087 | asection *output_section, | |
10088 | struct bfd_link_order *link_order) | |
10089 | { | |
10090 | reloc_howto_type *howto; | |
10091 | long indx; | |
10092 | bfd_vma offset; | |
10093 | bfd_vma addend; | |
d4730f92 | 10094 | struct bfd_elf_section_reloc_data *reldata; |
c152c796 AM |
10095 | struct elf_link_hash_entry **rel_hash_ptr; |
10096 | Elf_Internal_Shdr *rel_hdr; | |
10097 | const struct elf_backend_data *bed = get_elf_backend_data (output_bfd); | |
10098 | Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL]; | |
10099 | bfd_byte *erel; | |
10100 | unsigned int i; | |
d4730f92 | 10101 | struct bfd_elf_section_data *esdo = elf_section_data (output_section); |
c152c796 AM |
10102 | |
10103 | howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc); | |
10104 | if (howto == NULL) | |
10105 | { | |
10106 | bfd_set_error (bfd_error_bad_value); | |
10107 | return FALSE; | |
10108 | } | |
10109 | ||
10110 | addend = link_order->u.reloc.p->addend; | |
10111 | ||
d4730f92 BS |
10112 | if (esdo->rel.hdr) |
10113 | reldata = &esdo->rel; | |
10114 | else if (esdo->rela.hdr) | |
10115 | reldata = &esdo->rela; | |
10116 | else | |
10117 | { | |
10118 | reldata = NULL; | |
10119 | BFD_ASSERT (0); | |
10120 | } | |
10121 | ||
c152c796 | 10122 | /* Figure out the symbol index. */ |
d4730f92 | 10123 | rel_hash_ptr = reldata->hashes + reldata->count; |
c152c796 AM |
10124 | if (link_order->type == bfd_section_reloc_link_order) |
10125 | { | |
10126 | indx = link_order->u.reloc.p->u.section->target_index; | |
10127 | BFD_ASSERT (indx != 0); | |
10128 | *rel_hash_ptr = NULL; | |
10129 | } | |
10130 | else | |
10131 | { | |
10132 | struct elf_link_hash_entry *h; | |
10133 | ||
10134 | /* Treat a reloc against a defined symbol as though it were | |
10135 | actually against the section. */ | |
10136 | h = ((struct elf_link_hash_entry *) | |
10137 | bfd_wrapped_link_hash_lookup (output_bfd, info, | |
10138 | link_order->u.reloc.p->u.name, | |
10139 | FALSE, FALSE, TRUE)); | |
10140 | if (h != NULL | |
10141 | && (h->root.type == bfd_link_hash_defined | |
10142 | || h->root.type == bfd_link_hash_defweak)) | |
10143 | { | |
10144 | asection *section; | |
10145 | ||
10146 | section = h->root.u.def.section; | |
10147 | indx = section->output_section->target_index; | |
10148 | *rel_hash_ptr = NULL; | |
10149 | /* It seems that we ought to add the symbol value to the | |
10150 | addend here, but in practice it has already been added | |
10151 | because it was passed to constructor_callback. */ | |
10152 | addend += section->output_section->vma + section->output_offset; | |
10153 | } | |
10154 | else if (h != NULL) | |
10155 | { | |
10156 | /* Setting the index to -2 tells elf_link_output_extsym that | |
10157 | this symbol is used by a reloc. */ | |
10158 | h->indx = -2; | |
10159 | *rel_hash_ptr = h; | |
10160 | indx = 0; | |
10161 | } | |
10162 | else | |
10163 | { | |
10164 | if (! ((*info->callbacks->unattached_reloc) | |
10165 | (info, link_order->u.reloc.p->u.name, NULL, NULL, 0))) | |
10166 | return FALSE; | |
10167 | indx = 0; | |
10168 | } | |
10169 | } | |
10170 | ||
10171 | /* If this is an inplace reloc, we must write the addend into the | |
10172 | object file. */ | |
10173 | if (howto->partial_inplace && addend != 0) | |
10174 | { | |
10175 | bfd_size_type size; | |
10176 | bfd_reloc_status_type rstat; | |
10177 | bfd_byte *buf; | |
10178 | bfd_boolean ok; | |
10179 | const char *sym_name; | |
10180 | ||
a50b1753 NC |
10181 | size = (bfd_size_type) bfd_get_reloc_size (howto); |
10182 | buf = (bfd_byte *) bfd_zmalloc (size); | |
c152c796 AM |
10183 | if (buf == NULL) |
10184 | return FALSE; | |
10185 | rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf); | |
10186 | switch (rstat) | |
10187 | { | |
10188 | case bfd_reloc_ok: | |
10189 | break; | |
10190 | ||
10191 | default: | |
10192 | case bfd_reloc_outofrange: | |
10193 | abort (); | |
10194 | ||
10195 | case bfd_reloc_overflow: | |
10196 | if (link_order->type == bfd_section_reloc_link_order) | |
10197 | sym_name = bfd_section_name (output_bfd, | |
10198 | link_order->u.reloc.p->u.section); | |
10199 | else | |
10200 | sym_name = link_order->u.reloc.p->u.name; | |
10201 | if (! ((*info->callbacks->reloc_overflow) | |
dfeffb9f L |
10202 | (info, NULL, sym_name, howto->name, addend, NULL, |
10203 | NULL, (bfd_vma) 0))) | |
c152c796 AM |
10204 | { |
10205 | free (buf); | |
10206 | return FALSE; | |
10207 | } | |
10208 | break; | |
10209 | } | |
10210 | ok = bfd_set_section_contents (output_bfd, output_section, buf, | |
10211 | link_order->offset, size); | |
10212 | free (buf); | |
10213 | if (! ok) | |
10214 | return FALSE; | |
10215 | } | |
10216 | ||
10217 | /* The address of a reloc is relative to the section in a | |
10218 | relocatable file, and is a virtual address in an executable | |
10219 | file. */ | |
10220 | offset = link_order->offset; | |
10221 | if (! info->relocatable) | |
10222 | offset += output_section->vma; | |
10223 | ||
10224 | for (i = 0; i < bed->s->int_rels_per_ext_rel; i++) | |
10225 | { | |
10226 | irel[i].r_offset = offset; | |
10227 | irel[i].r_info = 0; | |
10228 | irel[i].r_addend = 0; | |
10229 | } | |
10230 | if (bed->s->arch_size == 32) | |
10231 | irel[0].r_info = ELF32_R_INFO (indx, howto->type); | |
10232 | else | |
10233 | irel[0].r_info = ELF64_R_INFO (indx, howto->type); | |
10234 | ||
d4730f92 | 10235 | rel_hdr = reldata->hdr; |
c152c796 AM |
10236 | erel = rel_hdr->contents; |
10237 | if (rel_hdr->sh_type == SHT_REL) | |
10238 | { | |
d4730f92 | 10239 | erel += reldata->count * bed->s->sizeof_rel; |
c152c796 AM |
10240 | (*bed->s->swap_reloc_out) (output_bfd, irel, erel); |
10241 | } | |
10242 | else | |
10243 | { | |
10244 | irel[0].r_addend = addend; | |
d4730f92 | 10245 | erel += reldata->count * bed->s->sizeof_rela; |
c152c796 AM |
10246 | (*bed->s->swap_reloca_out) (output_bfd, irel, erel); |
10247 | } | |
10248 | ||
d4730f92 | 10249 | ++reldata->count; |
c152c796 AM |
10250 | |
10251 | return TRUE; | |
10252 | } | |
10253 | ||
0b52efa6 PB |
10254 | |
10255 | /* Get the output vma of the section pointed to by the sh_link field. */ | |
10256 | ||
10257 | static bfd_vma | |
10258 | elf_get_linked_section_vma (struct bfd_link_order *p) | |
10259 | { | |
10260 | Elf_Internal_Shdr **elf_shdrp; | |
10261 | asection *s; | |
10262 | int elfsec; | |
10263 | ||
10264 | s = p->u.indirect.section; | |
10265 | elf_shdrp = elf_elfsections (s->owner); | |
10266 | elfsec = _bfd_elf_section_from_bfd_section (s->owner, s); | |
10267 | elfsec = elf_shdrp[elfsec]->sh_link; | |
185d09ad L |
10268 | /* PR 290: |
10269 | The Intel C compiler generates SHT_IA_64_UNWIND with | |
e04bcc6d | 10270 | SHF_LINK_ORDER. But it doesn't set the sh_link or |
185d09ad L |
10271 | sh_info fields. Hence we could get the situation |
10272 | where elfsec is 0. */ | |
10273 | if (elfsec == 0) | |
10274 | { | |
10275 | const struct elf_backend_data *bed | |
10276 | = get_elf_backend_data (s->owner); | |
10277 | if (bed->link_order_error_handler) | |
d003868e AM |
10278 | bed->link_order_error_handler |
10279 | (_("%B: warning: sh_link not set for section `%A'"), s->owner, s); | |
185d09ad L |
10280 | return 0; |
10281 | } | |
10282 | else | |
10283 | { | |
10284 | s = elf_shdrp[elfsec]->bfd_section; | |
10285 | return s->output_section->vma + s->output_offset; | |
10286 | } | |
0b52efa6 PB |
10287 | } |
10288 | ||
10289 | ||
10290 | /* Compare two sections based on the locations of the sections they are | |
10291 | linked to. Used by elf_fixup_link_order. */ | |
10292 | ||
10293 | static int | |
10294 | compare_link_order (const void * a, const void * b) | |
10295 | { | |
10296 | bfd_vma apos; | |
10297 | bfd_vma bpos; | |
10298 | ||
10299 | apos = elf_get_linked_section_vma (*(struct bfd_link_order **)a); | |
10300 | bpos = elf_get_linked_section_vma (*(struct bfd_link_order **)b); | |
10301 | if (apos < bpos) | |
10302 | return -1; | |
10303 | return apos > bpos; | |
10304 | } | |
10305 | ||
10306 | ||
10307 | /* Looks for sections with SHF_LINK_ORDER set. Rearranges them into the same | |
10308 | order as their linked sections. Returns false if this could not be done | |
10309 | because an output section includes both ordered and unordered | |
10310 | sections. Ideally we'd do this in the linker proper. */ | |
10311 | ||
10312 | static bfd_boolean | |
10313 | elf_fixup_link_order (bfd *abfd, asection *o) | |
10314 | { | |
10315 | int seen_linkorder; | |
10316 | int seen_other; | |
10317 | int n; | |
10318 | struct bfd_link_order *p; | |
10319 | bfd *sub; | |
10320 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
b761a207 | 10321 | unsigned elfsec; |
0b52efa6 | 10322 | struct bfd_link_order **sections; |
d33cdfe3 | 10323 | asection *s, *other_sec, *linkorder_sec; |
0b52efa6 | 10324 | bfd_vma offset; |
3b36f7e6 | 10325 | |
d33cdfe3 L |
10326 | other_sec = NULL; |
10327 | linkorder_sec = NULL; | |
0b52efa6 PB |
10328 | seen_other = 0; |
10329 | seen_linkorder = 0; | |
8423293d | 10330 | for (p = o->map_head.link_order; p != NULL; p = p->next) |
0b52efa6 | 10331 | { |
d33cdfe3 | 10332 | if (p->type == bfd_indirect_link_order) |
0b52efa6 PB |
10333 | { |
10334 | s = p->u.indirect.section; | |
d33cdfe3 L |
10335 | sub = s->owner; |
10336 | if (bfd_get_flavour (sub) == bfd_target_elf_flavour | |
10337 | && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass | |
b761a207 BE |
10338 | && (elfsec = _bfd_elf_section_from_bfd_section (sub, s)) |
10339 | && elfsec < elf_numsections (sub) | |
4fbb74a6 AM |
10340 | && elf_elfsections (sub)[elfsec]->sh_flags & SHF_LINK_ORDER |
10341 | && elf_elfsections (sub)[elfsec]->sh_link < elf_numsections (sub)) | |
d33cdfe3 L |
10342 | { |
10343 | seen_linkorder++; | |
10344 | linkorder_sec = s; | |
10345 | } | |
0b52efa6 | 10346 | else |
d33cdfe3 L |
10347 | { |
10348 | seen_other++; | |
10349 | other_sec = s; | |
10350 | } | |
0b52efa6 PB |
10351 | } |
10352 | else | |
10353 | seen_other++; | |
d33cdfe3 L |
10354 | |
10355 | if (seen_other && seen_linkorder) | |
10356 | { | |
10357 | if (other_sec && linkorder_sec) | |
10358 | (*_bfd_error_handler) (_("%A has both ordered [`%A' in %B] and unordered [`%A' in %B] sections"), | |
10359 | o, linkorder_sec, | |
10360 | linkorder_sec->owner, other_sec, | |
10361 | other_sec->owner); | |
10362 | else | |
10363 | (*_bfd_error_handler) (_("%A has both ordered and unordered sections"), | |
10364 | o); | |
10365 | bfd_set_error (bfd_error_bad_value); | |
10366 | return FALSE; | |
10367 | } | |
0b52efa6 PB |
10368 | } |
10369 | ||
10370 | if (!seen_linkorder) | |
10371 | return TRUE; | |
10372 | ||
0b52efa6 | 10373 | sections = (struct bfd_link_order **) |
14b1c01e AM |
10374 | bfd_malloc (seen_linkorder * sizeof (struct bfd_link_order *)); |
10375 | if (sections == NULL) | |
10376 | return FALSE; | |
0b52efa6 | 10377 | seen_linkorder = 0; |
3b36f7e6 | 10378 | |
8423293d | 10379 | for (p = o->map_head.link_order; p != NULL; p = p->next) |
0b52efa6 PB |
10380 | { |
10381 | sections[seen_linkorder++] = p; | |
10382 | } | |
10383 | /* Sort the input sections in the order of their linked section. */ | |
10384 | qsort (sections, seen_linkorder, sizeof (struct bfd_link_order *), | |
10385 | compare_link_order); | |
10386 | ||
10387 | /* Change the offsets of the sections. */ | |
10388 | offset = 0; | |
10389 | for (n = 0; n < seen_linkorder; n++) | |
10390 | { | |
10391 | s = sections[n]->u.indirect.section; | |
461686a3 | 10392 | offset &= ~(bfd_vma) 0 << s->alignment_power; |
0b52efa6 PB |
10393 | s->output_offset = offset; |
10394 | sections[n]->offset = offset; | |
5dabe785 | 10395 | /* FIXME: octets_per_byte. */ |
0b52efa6 PB |
10396 | offset += sections[n]->size; |
10397 | } | |
10398 | ||
4dd07732 | 10399 | free (sections); |
0b52efa6 PB |
10400 | return TRUE; |
10401 | } | |
10402 | ||
9f7c3e5e AM |
10403 | static void |
10404 | elf_final_link_free (bfd *obfd, struct elf_final_link_info *flinfo) | |
10405 | { | |
10406 | asection *o; | |
10407 | ||
10408 | if (flinfo->symstrtab != NULL) | |
10409 | _bfd_stringtab_free (flinfo->symstrtab); | |
10410 | if (flinfo->contents != NULL) | |
10411 | free (flinfo->contents); | |
10412 | if (flinfo->external_relocs != NULL) | |
10413 | free (flinfo->external_relocs); | |
10414 | if (flinfo->internal_relocs != NULL) | |
10415 | free (flinfo->internal_relocs); | |
10416 | if (flinfo->external_syms != NULL) | |
10417 | free (flinfo->external_syms); | |
10418 | if (flinfo->locsym_shndx != NULL) | |
10419 | free (flinfo->locsym_shndx); | |
10420 | if (flinfo->internal_syms != NULL) | |
10421 | free (flinfo->internal_syms); | |
10422 | if (flinfo->indices != NULL) | |
10423 | free (flinfo->indices); | |
10424 | if (flinfo->sections != NULL) | |
10425 | free (flinfo->sections); | |
10426 | if (flinfo->symbuf != NULL) | |
10427 | free (flinfo->symbuf); | |
10428 | if (flinfo->symshndxbuf != NULL) | |
10429 | free (flinfo->symshndxbuf); | |
10430 | for (o = obfd->sections; o != NULL; o = o->next) | |
10431 | { | |
10432 | struct bfd_elf_section_data *esdo = elf_section_data (o); | |
10433 | if ((o->flags & SEC_RELOC) != 0 && esdo->rel.hashes != NULL) | |
10434 | free (esdo->rel.hashes); | |
10435 | if ((o->flags & SEC_RELOC) != 0 && esdo->rela.hashes != NULL) | |
10436 | free (esdo->rela.hashes); | |
10437 | } | |
10438 | } | |
0b52efa6 | 10439 | |
c152c796 AM |
10440 | /* Do the final step of an ELF link. */ |
10441 | ||
10442 | bfd_boolean | |
10443 | bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info) | |
10444 | { | |
10445 | bfd_boolean dynamic; | |
10446 | bfd_boolean emit_relocs; | |
10447 | bfd *dynobj; | |
8b127cbc | 10448 | struct elf_final_link_info flinfo; |
91d6fa6a NC |
10449 | asection *o; |
10450 | struct bfd_link_order *p; | |
10451 | bfd *sub; | |
c152c796 AM |
10452 | bfd_size_type max_contents_size; |
10453 | bfd_size_type max_external_reloc_size; | |
10454 | bfd_size_type max_internal_reloc_count; | |
10455 | bfd_size_type max_sym_count; | |
10456 | bfd_size_type max_sym_shndx_count; | |
10457 | file_ptr off; | |
10458 | Elf_Internal_Sym elfsym; | |
10459 | unsigned int i; | |
10460 | Elf_Internal_Shdr *symtab_hdr; | |
10461 | Elf_Internal_Shdr *symtab_shndx_hdr; | |
10462 | Elf_Internal_Shdr *symstrtab_hdr; | |
10463 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
10464 | struct elf_outext_info eoinfo; | |
10465 | bfd_boolean merged; | |
10466 | size_t relativecount = 0; | |
10467 | asection *reldyn = 0; | |
10468 | bfd_size_type amt; | |
104d59d1 JM |
10469 | asection *attr_section = NULL; |
10470 | bfd_vma attr_size = 0; | |
10471 | const char *std_attrs_section; | |
c152c796 AM |
10472 | |
10473 | if (! is_elf_hash_table (info->hash)) | |
10474 | return FALSE; | |
10475 | ||
10476 | if (info->shared) | |
10477 | abfd->flags |= DYNAMIC; | |
10478 | ||
10479 | dynamic = elf_hash_table (info)->dynamic_sections_created; | |
10480 | dynobj = elf_hash_table (info)->dynobj; | |
10481 | ||
10482 | emit_relocs = (info->relocatable | |
a4676736 | 10483 | || info->emitrelocations); |
c152c796 | 10484 | |
8b127cbc AM |
10485 | flinfo.info = info; |
10486 | flinfo.output_bfd = abfd; | |
10487 | flinfo.symstrtab = _bfd_elf_stringtab_init (); | |
10488 | if (flinfo.symstrtab == NULL) | |
c152c796 AM |
10489 | return FALSE; |
10490 | ||
10491 | if (! dynamic) | |
10492 | { | |
8b127cbc AM |
10493 | flinfo.dynsym_sec = NULL; |
10494 | flinfo.hash_sec = NULL; | |
10495 | flinfo.symver_sec = NULL; | |
c152c796 AM |
10496 | } |
10497 | else | |
10498 | { | |
3d4d4302 AM |
10499 | flinfo.dynsym_sec = bfd_get_linker_section (dynobj, ".dynsym"); |
10500 | flinfo.hash_sec = bfd_get_linker_section (dynobj, ".hash"); | |
202e2356 | 10501 | /* Note that dynsym_sec can be NULL (on VMS). */ |
3d4d4302 | 10502 | flinfo.symver_sec = bfd_get_linker_section (dynobj, ".gnu.version"); |
c152c796 AM |
10503 | /* Note that it is OK if symver_sec is NULL. */ |
10504 | } | |
10505 | ||
8b127cbc AM |
10506 | flinfo.contents = NULL; |
10507 | flinfo.external_relocs = NULL; | |
10508 | flinfo.internal_relocs = NULL; | |
10509 | flinfo.external_syms = NULL; | |
10510 | flinfo.locsym_shndx = NULL; | |
10511 | flinfo.internal_syms = NULL; | |
10512 | flinfo.indices = NULL; | |
10513 | flinfo.sections = NULL; | |
10514 | flinfo.symbuf = NULL; | |
10515 | flinfo.symshndxbuf = NULL; | |
10516 | flinfo.symbuf_count = 0; | |
10517 | flinfo.shndxbuf_size = 0; | |
ffbc01cc | 10518 | flinfo.filesym_count = 0; |
c152c796 | 10519 | |
104d59d1 JM |
10520 | /* The object attributes have been merged. Remove the input |
10521 | sections from the link, and set the contents of the output | |
10522 | secton. */ | |
10523 | std_attrs_section = get_elf_backend_data (abfd)->obj_attrs_section; | |
10524 | for (o = abfd->sections; o != NULL; o = o->next) | |
10525 | { | |
10526 | if ((std_attrs_section && strcmp (o->name, std_attrs_section) == 0) | |
10527 | || strcmp (o->name, ".gnu.attributes") == 0) | |
10528 | { | |
10529 | for (p = o->map_head.link_order; p != NULL; p = p->next) | |
10530 | { | |
10531 | asection *input_section; | |
10532 | ||
10533 | if (p->type != bfd_indirect_link_order) | |
10534 | continue; | |
10535 | input_section = p->u.indirect.section; | |
10536 | /* Hack: reset the SEC_HAS_CONTENTS flag so that | |
10537 | elf_link_input_bfd ignores this section. */ | |
10538 | input_section->flags &= ~SEC_HAS_CONTENTS; | |
10539 | } | |
a0c8462f | 10540 | |
104d59d1 JM |
10541 | attr_size = bfd_elf_obj_attr_size (abfd); |
10542 | if (attr_size) | |
10543 | { | |
10544 | bfd_set_section_size (abfd, o, attr_size); | |
10545 | attr_section = o; | |
10546 | /* Skip this section later on. */ | |
10547 | o->map_head.link_order = NULL; | |
10548 | } | |
10549 | else | |
10550 | o->flags |= SEC_EXCLUDE; | |
10551 | } | |
10552 | } | |
10553 | ||
c152c796 AM |
10554 | /* Count up the number of relocations we will output for each output |
10555 | section, so that we know the sizes of the reloc sections. We | |
10556 | also figure out some maximum sizes. */ | |
10557 | max_contents_size = 0; | |
10558 | max_external_reloc_size = 0; | |
10559 | max_internal_reloc_count = 0; | |
10560 | max_sym_count = 0; | |
10561 | max_sym_shndx_count = 0; | |
10562 | merged = FALSE; | |
10563 | for (o = abfd->sections; o != NULL; o = o->next) | |
10564 | { | |
10565 | struct bfd_elf_section_data *esdo = elf_section_data (o); | |
10566 | o->reloc_count = 0; | |
10567 | ||
8423293d | 10568 | for (p = o->map_head.link_order; p != NULL; p = p->next) |
c152c796 AM |
10569 | { |
10570 | unsigned int reloc_count = 0; | |
10571 | struct bfd_elf_section_data *esdi = NULL; | |
c152c796 AM |
10572 | |
10573 | if (p->type == bfd_section_reloc_link_order | |
10574 | || p->type == bfd_symbol_reloc_link_order) | |
10575 | reloc_count = 1; | |
10576 | else if (p->type == bfd_indirect_link_order) | |
10577 | { | |
10578 | asection *sec; | |
10579 | ||
10580 | sec = p->u.indirect.section; | |
10581 | esdi = elf_section_data (sec); | |
10582 | ||
10583 | /* Mark all sections which are to be included in the | |
10584 | link. This will normally be every section. We need | |
10585 | to do this so that we can identify any sections which | |
10586 | the linker has decided to not include. */ | |
10587 | sec->linker_mark = TRUE; | |
10588 | ||
10589 | if (sec->flags & SEC_MERGE) | |
10590 | merged = TRUE; | |
10591 | ||
aed64b35 L |
10592 | if (esdo->this_hdr.sh_type == SHT_REL |
10593 | || esdo->this_hdr.sh_type == SHT_RELA) | |
10594 | /* Some backends use reloc_count in relocation sections | |
10595 | to count particular types of relocs. Of course, | |
10596 | reloc sections themselves can't have relocations. */ | |
10597 | reloc_count = 0; | |
10598 | else if (info->relocatable || info->emitrelocations) | |
c152c796 AM |
10599 | reloc_count = sec->reloc_count; |
10600 | else if (bed->elf_backend_count_relocs) | |
58217f29 | 10601 | reloc_count = (*bed->elf_backend_count_relocs) (info, sec); |
c152c796 | 10602 | |
eea6121a AM |
10603 | if (sec->rawsize > max_contents_size) |
10604 | max_contents_size = sec->rawsize; | |
10605 | if (sec->size > max_contents_size) | |
10606 | max_contents_size = sec->size; | |
c152c796 AM |
10607 | |
10608 | /* We are interested in just local symbols, not all | |
10609 | symbols. */ | |
10610 | if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour | |
10611 | && (sec->owner->flags & DYNAMIC) == 0) | |
10612 | { | |
10613 | size_t sym_count; | |
10614 | ||
10615 | if (elf_bad_symtab (sec->owner)) | |
10616 | sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size | |
10617 | / bed->s->sizeof_sym); | |
10618 | else | |
10619 | sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info; | |
10620 | ||
10621 | if (sym_count > max_sym_count) | |
10622 | max_sym_count = sym_count; | |
10623 | ||
10624 | if (sym_count > max_sym_shndx_count | |
10625 | && elf_symtab_shndx (sec->owner) != 0) | |
10626 | max_sym_shndx_count = sym_count; | |
10627 | ||
10628 | if ((sec->flags & SEC_RELOC) != 0) | |
10629 | { | |
d4730f92 | 10630 | size_t ext_size = 0; |
c152c796 | 10631 | |
d4730f92 BS |
10632 | if (esdi->rel.hdr != NULL) |
10633 | ext_size = esdi->rel.hdr->sh_size; | |
10634 | if (esdi->rela.hdr != NULL) | |
10635 | ext_size += esdi->rela.hdr->sh_size; | |
7326c758 | 10636 | |
c152c796 AM |
10637 | if (ext_size > max_external_reloc_size) |
10638 | max_external_reloc_size = ext_size; | |
10639 | if (sec->reloc_count > max_internal_reloc_count) | |
10640 | max_internal_reloc_count = sec->reloc_count; | |
10641 | } | |
10642 | } | |
10643 | } | |
10644 | ||
10645 | if (reloc_count == 0) | |
10646 | continue; | |
10647 | ||
10648 | o->reloc_count += reloc_count; | |
10649 | ||
d4730f92 BS |
10650 | if (p->type == bfd_indirect_link_order |
10651 | && (info->relocatable || info->emitrelocations)) | |
c152c796 | 10652 | { |
d4730f92 BS |
10653 | if (esdi->rel.hdr) |
10654 | esdo->rel.count += NUM_SHDR_ENTRIES (esdi->rel.hdr); | |
10655 | if (esdi->rela.hdr) | |
10656 | esdo->rela.count += NUM_SHDR_ENTRIES (esdi->rela.hdr); | |
10657 | } | |
10658 | else | |
10659 | { | |
10660 | if (o->use_rela_p) | |
10661 | esdo->rela.count += reloc_count; | |
2c2b4ed4 | 10662 | else |
d4730f92 | 10663 | esdo->rel.count += reloc_count; |
c152c796 | 10664 | } |
c152c796 AM |
10665 | } |
10666 | ||
10667 | if (o->reloc_count > 0) | |
10668 | o->flags |= SEC_RELOC; | |
10669 | else | |
10670 | { | |
10671 | /* Explicitly clear the SEC_RELOC flag. The linker tends to | |
10672 | set it (this is probably a bug) and if it is set | |
10673 | assign_section_numbers will create a reloc section. */ | |
10674 | o->flags &=~ SEC_RELOC; | |
10675 | } | |
10676 | ||
10677 | /* If the SEC_ALLOC flag is not set, force the section VMA to | |
10678 | zero. This is done in elf_fake_sections as well, but forcing | |
10679 | the VMA to 0 here will ensure that relocs against these | |
10680 | sections are handled correctly. */ | |
10681 | if ((o->flags & SEC_ALLOC) == 0 | |
10682 | && ! o->user_set_vma) | |
10683 | o->vma = 0; | |
10684 | } | |
10685 | ||
10686 | if (! info->relocatable && merged) | |
10687 | elf_link_hash_traverse (elf_hash_table (info), | |
10688 | _bfd_elf_link_sec_merge_syms, abfd); | |
10689 | ||
10690 | /* Figure out the file positions for everything but the symbol table | |
10691 | and the relocs. We set symcount to force assign_section_numbers | |
10692 | to create a symbol table. */ | |
10693 | bfd_get_symcount (abfd) = info->strip == strip_all ? 0 : 1; | |
10694 | BFD_ASSERT (! abfd->output_has_begun); | |
10695 | if (! _bfd_elf_compute_section_file_positions (abfd, info)) | |
10696 | goto error_return; | |
10697 | ||
ee75fd95 | 10698 | /* Set sizes, and assign file positions for reloc sections. */ |
c152c796 AM |
10699 | for (o = abfd->sections; o != NULL; o = o->next) |
10700 | { | |
d4730f92 | 10701 | struct bfd_elf_section_data *esdo = elf_section_data (o); |
c152c796 AM |
10702 | if ((o->flags & SEC_RELOC) != 0) |
10703 | { | |
d4730f92 BS |
10704 | if (esdo->rel.hdr |
10705 | && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rel))) | |
c152c796 AM |
10706 | goto error_return; |
10707 | ||
d4730f92 BS |
10708 | if (esdo->rela.hdr |
10709 | && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rela))) | |
c152c796 AM |
10710 | goto error_return; |
10711 | } | |
10712 | ||
10713 | /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them | |
10714 | to count upwards while actually outputting the relocations. */ | |
d4730f92 BS |
10715 | esdo->rel.count = 0; |
10716 | esdo->rela.count = 0; | |
c152c796 AM |
10717 | } |
10718 | ||
10719 | _bfd_elf_assign_file_positions_for_relocs (abfd); | |
10720 | ||
10721 | /* We have now assigned file positions for all the sections except | |
10722 | .symtab and .strtab. We start the .symtab section at the current | |
10723 | file position, and write directly to it. We build the .strtab | |
10724 | section in memory. */ | |
10725 | bfd_get_symcount (abfd) = 0; | |
10726 | symtab_hdr = &elf_tdata (abfd)->symtab_hdr; | |
10727 | /* sh_name is set in prep_headers. */ | |
10728 | symtab_hdr->sh_type = SHT_SYMTAB; | |
10729 | /* sh_flags, sh_addr and sh_size all start off zero. */ | |
10730 | symtab_hdr->sh_entsize = bed->s->sizeof_sym; | |
10731 | /* sh_link is set in assign_section_numbers. */ | |
10732 | /* sh_info is set below. */ | |
10733 | /* sh_offset is set just below. */ | |
72de5009 | 10734 | symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align; |
c152c796 | 10735 | |
12bd6957 | 10736 | off = elf_next_file_pos (abfd); |
c152c796 AM |
10737 | off = _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE); |
10738 | ||
12bd6957 | 10739 | /* Note that at this point elf_next_file_pos (abfd) is |
c152c796 AM |
10740 | incorrect. We do not yet know the size of the .symtab section. |
10741 | We correct next_file_pos below, after we do know the size. */ | |
10742 | ||
10743 | /* Allocate a buffer to hold swapped out symbols. This is to avoid | |
10744 | continuously seeking to the right position in the file. */ | |
10745 | if (! info->keep_memory || max_sym_count < 20) | |
8b127cbc | 10746 | flinfo.symbuf_size = 20; |
c152c796 | 10747 | else |
8b127cbc AM |
10748 | flinfo.symbuf_size = max_sym_count; |
10749 | amt = flinfo.symbuf_size; | |
c152c796 | 10750 | amt *= bed->s->sizeof_sym; |
8b127cbc AM |
10751 | flinfo.symbuf = (bfd_byte *) bfd_malloc (amt); |
10752 | if (flinfo.symbuf == NULL) | |
c152c796 | 10753 | goto error_return; |
4fbb74a6 | 10754 | if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF)) |
c152c796 AM |
10755 | { |
10756 | /* Wild guess at number of output symbols. realloc'd as needed. */ | |
10757 | amt = 2 * max_sym_count + elf_numsections (abfd) + 1000; | |
8b127cbc | 10758 | flinfo.shndxbuf_size = amt; |
c152c796 | 10759 | amt *= sizeof (Elf_External_Sym_Shndx); |
8b127cbc AM |
10760 | flinfo.symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt); |
10761 | if (flinfo.symshndxbuf == NULL) | |
c152c796 AM |
10762 | goto error_return; |
10763 | } | |
10764 | ||
10765 | /* Start writing out the symbol table. The first symbol is always a | |
10766 | dummy symbol. */ | |
10767 | if (info->strip != strip_all | |
10768 | || emit_relocs) | |
10769 | { | |
10770 | elfsym.st_value = 0; | |
10771 | elfsym.st_size = 0; | |
10772 | elfsym.st_info = 0; | |
10773 | elfsym.st_other = 0; | |
10774 | elfsym.st_shndx = SHN_UNDEF; | |
35fc36a8 | 10775 | elfsym.st_target_internal = 0; |
8b127cbc | 10776 | if (elf_link_output_sym (&flinfo, NULL, &elfsym, bfd_und_section_ptr, |
6e0b88f1 | 10777 | NULL) != 1) |
c152c796 AM |
10778 | goto error_return; |
10779 | } | |
10780 | ||
c152c796 AM |
10781 | /* Output a symbol for each section. We output these even if we are |
10782 | discarding local symbols, since they are used for relocs. These | |
10783 | symbols have no names. We store the index of each one in the | |
10784 | index field of the section, so that we can find it again when | |
10785 | outputting relocs. */ | |
10786 | if (info->strip != strip_all | |
10787 | || emit_relocs) | |
10788 | { | |
10789 | elfsym.st_size = 0; | |
10790 | elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION); | |
10791 | elfsym.st_other = 0; | |
f0b5bb34 | 10792 | elfsym.st_value = 0; |
35fc36a8 | 10793 | elfsym.st_target_internal = 0; |
c152c796 AM |
10794 | for (i = 1; i < elf_numsections (abfd); i++) |
10795 | { | |
10796 | o = bfd_section_from_elf_index (abfd, i); | |
10797 | if (o != NULL) | |
f0b5bb34 AM |
10798 | { |
10799 | o->target_index = bfd_get_symcount (abfd); | |
10800 | elfsym.st_shndx = i; | |
10801 | if (!info->relocatable) | |
10802 | elfsym.st_value = o->vma; | |
8b127cbc | 10803 | if (elf_link_output_sym (&flinfo, NULL, &elfsym, o, NULL) != 1) |
f0b5bb34 AM |
10804 | goto error_return; |
10805 | } | |
c152c796 AM |
10806 | } |
10807 | } | |
10808 | ||
10809 | /* Allocate some memory to hold information read in from the input | |
10810 | files. */ | |
10811 | if (max_contents_size != 0) | |
10812 | { | |
8b127cbc AM |
10813 | flinfo.contents = (bfd_byte *) bfd_malloc (max_contents_size); |
10814 | if (flinfo.contents == NULL) | |
c152c796 AM |
10815 | goto error_return; |
10816 | } | |
10817 | ||
10818 | if (max_external_reloc_size != 0) | |
10819 | { | |
8b127cbc AM |
10820 | flinfo.external_relocs = bfd_malloc (max_external_reloc_size); |
10821 | if (flinfo.external_relocs == NULL) | |
c152c796 AM |
10822 | goto error_return; |
10823 | } | |
10824 | ||
10825 | if (max_internal_reloc_count != 0) | |
10826 | { | |
10827 | amt = max_internal_reloc_count * bed->s->int_rels_per_ext_rel; | |
10828 | amt *= sizeof (Elf_Internal_Rela); | |
8b127cbc AM |
10829 | flinfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt); |
10830 | if (flinfo.internal_relocs == NULL) | |
c152c796 AM |
10831 | goto error_return; |
10832 | } | |
10833 | ||
10834 | if (max_sym_count != 0) | |
10835 | { | |
10836 | amt = max_sym_count * bed->s->sizeof_sym; | |
8b127cbc AM |
10837 | flinfo.external_syms = (bfd_byte *) bfd_malloc (amt); |
10838 | if (flinfo.external_syms == NULL) | |
c152c796 AM |
10839 | goto error_return; |
10840 | ||
10841 | amt = max_sym_count * sizeof (Elf_Internal_Sym); | |
8b127cbc AM |
10842 | flinfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt); |
10843 | if (flinfo.internal_syms == NULL) | |
c152c796 AM |
10844 | goto error_return; |
10845 | ||
10846 | amt = max_sym_count * sizeof (long); | |
8b127cbc AM |
10847 | flinfo.indices = (long int *) bfd_malloc (amt); |
10848 | if (flinfo.indices == NULL) | |
c152c796 AM |
10849 | goto error_return; |
10850 | ||
10851 | amt = max_sym_count * sizeof (asection *); | |
8b127cbc AM |
10852 | flinfo.sections = (asection **) bfd_malloc (amt); |
10853 | if (flinfo.sections == NULL) | |
c152c796 AM |
10854 | goto error_return; |
10855 | } | |
10856 | ||
10857 | if (max_sym_shndx_count != 0) | |
10858 | { | |
10859 | amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx); | |
8b127cbc AM |
10860 | flinfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt); |
10861 | if (flinfo.locsym_shndx == NULL) | |
c152c796 AM |
10862 | goto error_return; |
10863 | } | |
10864 | ||
10865 | if (elf_hash_table (info)->tls_sec) | |
10866 | { | |
10867 | bfd_vma base, end = 0; | |
10868 | asection *sec; | |
10869 | ||
10870 | for (sec = elf_hash_table (info)->tls_sec; | |
10871 | sec && (sec->flags & SEC_THREAD_LOCAL); | |
10872 | sec = sec->next) | |
10873 | { | |
3a800eb9 | 10874 | bfd_size_type size = sec->size; |
c152c796 | 10875 | |
3a800eb9 AM |
10876 | if (size == 0 |
10877 | && (sec->flags & SEC_HAS_CONTENTS) == 0) | |
c152c796 | 10878 | { |
91d6fa6a NC |
10879 | struct bfd_link_order *ord = sec->map_tail.link_order; |
10880 | ||
10881 | if (ord != NULL) | |
10882 | size = ord->offset + ord->size; | |
c152c796 AM |
10883 | } |
10884 | end = sec->vma + size; | |
10885 | } | |
10886 | base = elf_hash_table (info)->tls_sec->vma; | |
7dc98aea RO |
10887 | /* Only align end of TLS section if static TLS doesn't have special |
10888 | alignment requirements. */ | |
10889 | if (bed->static_tls_alignment == 1) | |
10890 | end = align_power (end, | |
10891 | elf_hash_table (info)->tls_sec->alignment_power); | |
c152c796 AM |
10892 | elf_hash_table (info)->tls_size = end - base; |
10893 | } | |
10894 | ||
0b52efa6 PB |
10895 | /* Reorder SHF_LINK_ORDER sections. */ |
10896 | for (o = abfd->sections; o != NULL; o = o->next) | |
10897 | { | |
10898 | if (!elf_fixup_link_order (abfd, o)) | |
10899 | return FALSE; | |
10900 | } | |
10901 | ||
c152c796 AM |
10902 | /* Since ELF permits relocations to be against local symbols, we |
10903 | must have the local symbols available when we do the relocations. | |
10904 | Since we would rather only read the local symbols once, and we | |
10905 | would rather not keep them in memory, we handle all the | |
10906 | relocations for a single input file at the same time. | |
10907 | ||
10908 | Unfortunately, there is no way to know the total number of local | |
10909 | symbols until we have seen all of them, and the local symbol | |
10910 | indices precede the global symbol indices. This means that when | |
10911 | we are generating relocatable output, and we see a reloc against | |
10912 | a global symbol, we can not know the symbol index until we have | |
10913 | finished examining all the local symbols to see which ones we are | |
10914 | going to output. To deal with this, we keep the relocations in | |
10915 | memory, and don't output them until the end of the link. This is | |
10916 | an unfortunate waste of memory, but I don't see a good way around | |
10917 | it. Fortunately, it only happens when performing a relocatable | |
10918 | link, which is not the common case. FIXME: If keep_memory is set | |
10919 | we could write the relocs out and then read them again; I don't | |
10920 | know how bad the memory loss will be. */ | |
10921 | ||
10922 | for (sub = info->input_bfds; sub != NULL; sub = sub->link_next) | |
10923 | sub->output_has_begun = FALSE; | |
10924 | for (o = abfd->sections; o != NULL; o = o->next) | |
10925 | { | |
8423293d | 10926 | for (p = o->map_head.link_order; p != NULL; p = p->next) |
c152c796 AM |
10927 | { |
10928 | if (p->type == bfd_indirect_link_order | |
10929 | && (bfd_get_flavour ((sub = p->u.indirect.section->owner)) | |
10930 | == bfd_target_elf_flavour) | |
10931 | && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass) | |
10932 | { | |
10933 | if (! sub->output_has_begun) | |
10934 | { | |
8b127cbc | 10935 | if (! elf_link_input_bfd (&flinfo, sub)) |
c152c796 AM |
10936 | goto error_return; |
10937 | sub->output_has_begun = TRUE; | |
10938 | } | |
10939 | } | |
10940 | else if (p->type == bfd_section_reloc_link_order | |
10941 | || p->type == bfd_symbol_reloc_link_order) | |
10942 | { | |
10943 | if (! elf_reloc_link_order (abfd, info, o, p)) | |
10944 | goto error_return; | |
10945 | } | |
10946 | else | |
10947 | { | |
10948 | if (! _bfd_default_link_order (abfd, info, o, p)) | |
351f65ca L |
10949 | { |
10950 | if (p->type == bfd_indirect_link_order | |
10951 | && (bfd_get_flavour (sub) | |
10952 | == bfd_target_elf_flavour) | |
10953 | && (elf_elfheader (sub)->e_ident[EI_CLASS] | |
10954 | != bed->s->elfclass)) | |
10955 | { | |
10956 | const char *iclass, *oclass; | |
10957 | ||
10958 | if (bed->s->elfclass == ELFCLASS64) | |
10959 | { | |
10960 | iclass = "ELFCLASS32"; | |
10961 | oclass = "ELFCLASS64"; | |
10962 | } | |
10963 | else | |
10964 | { | |
10965 | iclass = "ELFCLASS64"; | |
10966 | oclass = "ELFCLASS32"; | |
10967 | } | |
10968 | ||
10969 | bfd_set_error (bfd_error_wrong_format); | |
10970 | (*_bfd_error_handler) | |
10971 | (_("%B: file class %s incompatible with %s"), | |
10972 | sub, iclass, oclass); | |
10973 | } | |
10974 | ||
10975 | goto error_return; | |
10976 | } | |
c152c796 AM |
10977 | } |
10978 | } | |
10979 | } | |
10980 | ||
c0f00686 L |
10981 | /* Free symbol buffer if needed. */ |
10982 | if (!info->reduce_memory_overheads) | |
10983 | { | |
10984 | for (sub = info->input_bfds; sub != NULL; sub = sub->link_next) | |
3fcd97f1 JJ |
10985 | if (bfd_get_flavour (sub) == bfd_target_elf_flavour |
10986 | && elf_tdata (sub)->symbuf) | |
c0f00686 L |
10987 | { |
10988 | free (elf_tdata (sub)->symbuf); | |
10989 | elf_tdata (sub)->symbuf = NULL; | |
10990 | } | |
10991 | } | |
10992 | ||
c152c796 AM |
10993 | /* Output any global symbols that got converted to local in a |
10994 | version script or due to symbol visibility. We do this in a | |
10995 | separate step since ELF requires all local symbols to appear | |
10996 | prior to any global symbols. FIXME: We should only do this if | |
10997 | some global symbols were, in fact, converted to become local. | |
10998 | FIXME: Will this work correctly with the Irix 5 linker? */ | |
10999 | eoinfo.failed = FALSE; | |
8b127cbc | 11000 | eoinfo.flinfo = &flinfo; |
c152c796 | 11001 | eoinfo.localsyms = TRUE; |
ffbc01cc AM |
11002 | eoinfo.need_second_pass = FALSE; |
11003 | eoinfo.second_pass = FALSE; | |
34a79995 | 11004 | eoinfo.file_sym_done = FALSE; |
7686d77d | 11005 | bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo); |
c152c796 AM |
11006 | if (eoinfo.failed) |
11007 | return FALSE; | |
11008 | ||
ffbc01cc AM |
11009 | if (eoinfo.need_second_pass) |
11010 | { | |
11011 | eoinfo.second_pass = TRUE; | |
11012 | bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo); | |
11013 | if (eoinfo.failed) | |
11014 | return FALSE; | |
11015 | } | |
11016 | ||
4e617b1e PB |
11017 | /* If backend needs to output some local symbols not present in the hash |
11018 | table, do it now. */ | |
11019 | if (bed->elf_backend_output_arch_local_syms) | |
11020 | { | |
6e0b88f1 | 11021 | typedef int (*out_sym_func) |
4e617b1e PB |
11022 | (void *, const char *, Elf_Internal_Sym *, asection *, |
11023 | struct elf_link_hash_entry *); | |
11024 | ||
11025 | if (! ((*bed->elf_backend_output_arch_local_syms) | |
8b127cbc | 11026 | (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym))) |
4e617b1e PB |
11027 | return FALSE; |
11028 | } | |
11029 | ||
c152c796 AM |
11030 | /* That wrote out all the local symbols. Finish up the symbol table |
11031 | with the global symbols. Even if we want to strip everything we | |
11032 | can, we still need to deal with those global symbols that got | |
11033 | converted to local in a version script. */ | |
11034 | ||
11035 | /* The sh_info field records the index of the first non local symbol. */ | |
11036 | symtab_hdr->sh_info = bfd_get_symcount (abfd); | |
11037 | ||
11038 | if (dynamic | |
8b127cbc AM |
11039 | && flinfo.dynsym_sec != NULL |
11040 | && flinfo.dynsym_sec->output_section != bfd_abs_section_ptr) | |
c152c796 AM |
11041 | { |
11042 | Elf_Internal_Sym sym; | |
8b127cbc | 11043 | bfd_byte *dynsym = flinfo.dynsym_sec->contents; |
c152c796 AM |
11044 | long last_local = 0; |
11045 | ||
11046 | /* Write out the section symbols for the output sections. */ | |
67687978 | 11047 | if (info->shared || elf_hash_table (info)->is_relocatable_executable) |
c152c796 AM |
11048 | { |
11049 | asection *s; | |
11050 | ||
11051 | sym.st_size = 0; | |
11052 | sym.st_name = 0; | |
11053 | sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION); | |
11054 | sym.st_other = 0; | |
35fc36a8 | 11055 | sym.st_target_internal = 0; |
c152c796 AM |
11056 | |
11057 | for (s = abfd->sections; s != NULL; s = s->next) | |
11058 | { | |
11059 | int indx; | |
11060 | bfd_byte *dest; | |
11061 | long dynindx; | |
11062 | ||
c152c796 | 11063 | dynindx = elf_section_data (s)->dynindx; |
8c37241b JJ |
11064 | if (dynindx <= 0) |
11065 | continue; | |
11066 | indx = elf_section_data (s)->this_idx; | |
c152c796 AM |
11067 | BFD_ASSERT (indx > 0); |
11068 | sym.st_shndx = indx; | |
c0d5a53d L |
11069 | if (! check_dynsym (abfd, &sym)) |
11070 | return FALSE; | |
c152c796 AM |
11071 | sym.st_value = s->vma; |
11072 | dest = dynsym + dynindx * bed->s->sizeof_sym; | |
8c37241b JJ |
11073 | if (last_local < dynindx) |
11074 | last_local = dynindx; | |
c152c796 AM |
11075 | bed->s->swap_symbol_out (abfd, &sym, dest, 0); |
11076 | } | |
c152c796 AM |
11077 | } |
11078 | ||
11079 | /* Write out the local dynsyms. */ | |
11080 | if (elf_hash_table (info)->dynlocal) | |
11081 | { | |
11082 | struct elf_link_local_dynamic_entry *e; | |
11083 | for (e = elf_hash_table (info)->dynlocal; e ; e = e->next) | |
11084 | { | |
11085 | asection *s; | |
11086 | bfd_byte *dest; | |
11087 | ||
935bd1e0 | 11088 | /* Copy the internal symbol and turn off visibility. |
c152c796 AM |
11089 | Note that we saved a word of storage and overwrote |
11090 | the original st_name with the dynstr_index. */ | |
11091 | sym = e->isym; | |
935bd1e0 | 11092 | sym.st_other &= ~ELF_ST_VISIBILITY (-1); |
c152c796 | 11093 | |
cb33740c AM |
11094 | s = bfd_section_from_elf_index (e->input_bfd, |
11095 | e->isym.st_shndx); | |
11096 | if (s != NULL) | |
c152c796 | 11097 | { |
c152c796 AM |
11098 | sym.st_shndx = |
11099 | elf_section_data (s->output_section)->this_idx; | |
c0d5a53d L |
11100 | if (! check_dynsym (abfd, &sym)) |
11101 | return FALSE; | |
c152c796 AM |
11102 | sym.st_value = (s->output_section->vma |
11103 | + s->output_offset | |
11104 | + e->isym.st_value); | |
11105 | } | |
11106 | ||
11107 | if (last_local < e->dynindx) | |
11108 | last_local = e->dynindx; | |
11109 | ||
11110 | dest = dynsym + e->dynindx * bed->s->sizeof_sym; | |
11111 | bed->s->swap_symbol_out (abfd, &sym, dest, 0); | |
11112 | } | |
11113 | } | |
11114 | ||
8b127cbc | 11115 | elf_section_data (flinfo.dynsym_sec->output_section)->this_hdr.sh_info = |
c152c796 AM |
11116 | last_local + 1; |
11117 | } | |
11118 | ||
11119 | /* We get the global symbols from the hash table. */ | |
11120 | eoinfo.failed = FALSE; | |
11121 | eoinfo.localsyms = FALSE; | |
8b127cbc | 11122 | eoinfo.flinfo = &flinfo; |
7686d77d | 11123 | bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo); |
c152c796 AM |
11124 | if (eoinfo.failed) |
11125 | return FALSE; | |
11126 | ||
11127 | /* If backend needs to output some symbols not present in the hash | |
11128 | table, do it now. */ | |
11129 | if (bed->elf_backend_output_arch_syms) | |
11130 | { | |
6e0b88f1 | 11131 | typedef int (*out_sym_func) |
c152c796 AM |
11132 | (void *, const char *, Elf_Internal_Sym *, asection *, |
11133 | struct elf_link_hash_entry *); | |
11134 | ||
11135 | if (! ((*bed->elf_backend_output_arch_syms) | |
8b127cbc | 11136 | (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym))) |
c152c796 AM |
11137 | return FALSE; |
11138 | } | |
11139 | ||
11140 | /* Flush all symbols to the file. */ | |
8b127cbc | 11141 | if (! elf_link_flush_output_syms (&flinfo, bed)) |
c152c796 AM |
11142 | return FALSE; |
11143 | ||
11144 | /* Now we know the size of the symtab section. */ | |
11145 | off += symtab_hdr->sh_size; | |
11146 | ||
11147 | symtab_shndx_hdr = &elf_tdata (abfd)->symtab_shndx_hdr; | |
11148 | if (symtab_shndx_hdr->sh_name != 0) | |
11149 | { | |
11150 | symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX; | |
11151 | symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx); | |
11152 | symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx); | |
11153 | amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx); | |
11154 | symtab_shndx_hdr->sh_size = amt; | |
11155 | ||
11156 | off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr, | |
11157 | off, TRUE); | |
11158 | ||
11159 | if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0 | |
8b127cbc | 11160 | || (bfd_bwrite (flinfo.symshndxbuf, amt, abfd) != amt)) |
c152c796 AM |
11161 | return FALSE; |
11162 | } | |
11163 | ||
11164 | ||
11165 | /* Finish up and write out the symbol string table (.strtab) | |
11166 | section. */ | |
11167 | symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr; | |
11168 | /* sh_name was set in prep_headers. */ | |
11169 | symstrtab_hdr->sh_type = SHT_STRTAB; | |
11170 | symstrtab_hdr->sh_flags = 0; | |
11171 | symstrtab_hdr->sh_addr = 0; | |
8b127cbc | 11172 | symstrtab_hdr->sh_size = _bfd_stringtab_size (flinfo.symstrtab); |
c152c796 AM |
11173 | symstrtab_hdr->sh_entsize = 0; |
11174 | symstrtab_hdr->sh_link = 0; | |
11175 | symstrtab_hdr->sh_info = 0; | |
11176 | /* sh_offset is set just below. */ | |
11177 | symstrtab_hdr->sh_addralign = 1; | |
11178 | ||
11179 | off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr, off, TRUE); | |
12bd6957 | 11180 | elf_next_file_pos (abfd) = off; |
c152c796 AM |
11181 | |
11182 | if (bfd_get_symcount (abfd) > 0) | |
11183 | { | |
11184 | if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0 | |
8b127cbc | 11185 | || ! _bfd_stringtab_emit (abfd, flinfo.symstrtab)) |
c152c796 AM |
11186 | return FALSE; |
11187 | } | |
11188 | ||
11189 | /* Adjust the relocs to have the correct symbol indices. */ | |
11190 | for (o = abfd->sections; o != NULL; o = o->next) | |
11191 | { | |
d4730f92 | 11192 | struct bfd_elf_section_data *esdo = elf_section_data (o); |
c152c796 AM |
11193 | if ((o->flags & SEC_RELOC) == 0) |
11194 | continue; | |
11195 | ||
d4730f92 BS |
11196 | if (esdo->rel.hdr != NULL) |
11197 | elf_link_adjust_relocs (abfd, &esdo->rel); | |
11198 | if (esdo->rela.hdr != NULL) | |
11199 | elf_link_adjust_relocs (abfd, &esdo->rela); | |
c152c796 AM |
11200 | |
11201 | /* Set the reloc_count field to 0 to prevent write_relocs from | |
11202 | trying to swap the relocs out itself. */ | |
11203 | o->reloc_count = 0; | |
11204 | } | |
11205 | ||
11206 | if (dynamic && info->combreloc && dynobj != NULL) | |
11207 | relativecount = elf_link_sort_relocs (abfd, info, &reldyn); | |
11208 | ||
11209 | /* If we are linking against a dynamic object, or generating a | |
11210 | shared library, finish up the dynamic linking information. */ | |
11211 | if (dynamic) | |
11212 | { | |
11213 | bfd_byte *dyncon, *dynconend; | |
11214 | ||
11215 | /* Fix up .dynamic entries. */ | |
3d4d4302 | 11216 | o = bfd_get_linker_section (dynobj, ".dynamic"); |
c152c796 AM |
11217 | BFD_ASSERT (o != NULL); |
11218 | ||
11219 | dyncon = o->contents; | |
eea6121a | 11220 | dynconend = o->contents + o->size; |
c152c796 AM |
11221 | for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn) |
11222 | { | |
11223 | Elf_Internal_Dyn dyn; | |
11224 | const char *name; | |
11225 | unsigned int type; | |
11226 | ||
11227 | bed->s->swap_dyn_in (dynobj, dyncon, &dyn); | |
11228 | ||
11229 | switch (dyn.d_tag) | |
11230 | { | |
11231 | default: | |
11232 | continue; | |
11233 | case DT_NULL: | |
11234 | if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend) | |
11235 | { | |
11236 | switch (elf_section_data (reldyn)->this_hdr.sh_type) | |
11237 | { | |
11238 | case SHT_REL: dyn.d_tag = DT_RELCOUNT; break; | |
11239 | case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break; | |
11240 | default: continue; | |
11241 | } | |
11242 | dyn.d_un.d_val = relativecount; | |
11243 | relativecount = 0; | |
11244 | break; | |
11245 | } | |
11246 | continue; | |
11247 | ||
11248 | case DT_INIT: | |
11249 | name = info->init_function; | |
11250 | goto get_sym; | |
11251 | case DT_FINI: | |
11252 | name = info->fini_function; | |
11253 | get_sym: | |
11254 | { | |
11255 | struct elf_link_hash_entry *h; | |
11256 | ||
11257 | h = elf_link_hash_lookup (elf_hash_table (info), name, | |
11258 | FALSE, FALSE, TRUE); | |
11259 | if (h != NULL | |
11260 | && (h->root.type == bfd_link_hash_defined | |
11261 | || h->root.type == bfd_link_hash_defweak)) | |
11262 | { | |
bef26483 | 11263 | dyn.d_un.d_ptr = h->root.u.def.value; |
c152c796 AM |
11264 | o = h->root.u.def.section; |
11265 | if (o->output_section != NULL) | |
bef26483 | 11266 | dyn.d_un.d_ptr += (o->output_section->vma |
c152c796 AM |
11267 | + o->output_offset); |
11268 | else | |
11269 | { | |
11270 | /* The symbol is imported from another shared | |
11271 | library and does not apply to this one. */ | |
bef26483 | 11272 | dyn.d_un.d_ptr = 0; |
c152c796 AM |
11273 | } |
11274 | break; | |
11275 | } | |
11276 | } | |
11277 | continue; | |
11278 | ||
11279 | case DT_PREINIT_ARRAYSZ: | |
11280 | name = ".preinit_array"; | |
11281 | goto get_size; | |
11282 | case DT_INIT_ARRAYSZ: | |
11283 | name = ".init_array"; | |
11284 | goto get_size; | |
11285 | case DT_FINI_ARRAYSZ: | |
11286 | name = ".fini_array"; | |
11287 | get_size: | |
11288 | o = bfd_get_section_by_name (abfd, name); | |
11289 | if (o == NULL) | |
11290 | { | |
11291 | (*_bfd_error_handler) | |
d003868e | 11292 | (_("%B: could not find output section %s"), abfd, name); |
c152c796 AM |
11293 | goto error_return; |
11294 | } | |
eea6121a | 11295 | if (o->size == 0) |
c152c796 AM |
11296 | (*_bfd_error_handler) |
11297 | (_("warning: %s section has zero size"), name); | |
eea6121a | 11298 | dyn.d_un.d_val = o->size; |
c152c796 AM |
11299 | break; |
11300 | ||
11301 | case DT_PREINIT_ARRAY: | |
11302 | name = ".preinit_array"; | |
11303 | goto get_vma; | |
11304 | case DT_INIT_ARRAY: | |
11305 | name = ".init_array"; | |
11306 | goto get_vma; | |
11307 | case DT_FINI_ARRAY: | |
11308 | name = ".fini_array"; | |
11309 | goto get_vma; | |
11310 | ||
11311 | case DT_HASH: | |
11312 | name = ".hash"; | |
11313 | goto get_vma; | |
fdc90cb4 JJ |
11314 | case DT_GNU_HASH: |
11315 | name = ".gnu.hash"; | |
11316 | goto get_vma; | |
c152c796 AM |
11317 | case DT_STRTAB: |
11318 | name = ".dynstr"; | |
11319 | goto get_vma; | |
11320 | case DT_SYMTAB: | |
11321 | name = ".dynsym"; | |
11322 | goto get_vma; | |
11323 | case DT_VERDEF: | |
11324 | name = ".gnu.version_d"; | |
11325 | goto get_vma; | |
11326 | case DT_VERNEED: | |
11327 | name = ".gnu.version_r"; | |
11328 | goto get_vma; | |
11329 | case DT_VERSYM: | |
11330 | name = ".gnu.version"; | |
11331 | get_vma: | |
11332 | o = bfd_get_section_by_name (abfd, name); | |
11333 | if (o == NULL) | |
11334 | { | |
11335 | (*_bfd_error_handler) | |
d003868e | 11336 | (_("%B: could not find output section %s"), abfd, name); |
c152c796 AM |
11337 | goto error_return; |
11338 | } | |
894891db NC |
11339 | if (elf_section_data (o->output_section)->this_hdr.sh_type == SHT_NOTE) |
11340 | { | |
11341 | (*_bfd_error_handler) | |
11342 | (_("warning: section '%s' is being made into a note"), name); | |
11343 | bfd_set_error (bfd_error_nonrepresentable_section); | |
11344 | goto error_return; | |
11345 | } | |
c152c796 AM |
11346 | dyn.d_un.d_ptr = o->vma; |
11347 | break; | |
11348 | ||
11349 | case DT_REL: | |
11350 | case DT_RELA: | |
11351 | case DT_RELSZ: | |
11352 | case DT_RELASZ: | |
11353 | if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ) | |
11354 | type = SHT_REL; | |
11355 | else | |
11356 | type = SHT_RELA; | |
11357 | dyn.d_un.d_val = 0; | |
bef26483 | 11358 | dyn.d_un.d_ptr = 0; |
c152c796 AM |
11359 | for (i = 1; i < elf_numsections (abfd); i++) |
11360 | { | |
11361 | Elf_Internal_Shdr *hdr; | |
11362 | ||
11363 | hdr = elf_elfsections (abfd)[i]; | |
11364 | if (hdr->sh_type == type | |
11365 | && (hdr->sh_flags & SHF_ALLOC) != 0) | |
11366 | { | |
11367 | if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ) | |
11368 | dyn.d_un.d_val += hdr->sh_size; | |
11369 | else | |
11370 | { | |
bef26483 AM |
11371 | if (dyn.d_un.d_ptr == 0 |
11372 | || hdr->sh_addr < dyn.d_un.d_ptr) | |
11373 | dyn.d_un.d_ptr = hdr->sh_addr; | |
c152c796 AM |
11374 | } |
11375 | } | |
11376 | } | |
11377 | break; | |
11378 | } | |
11379 | bed->s->swap_dyn_out (dynobj, &dyn, dyncon); | |
11380 | } | |
11381 | } | |
11382 | ||
11383 | /* If we have created any dynamic sections, then output them. */ | |
11384 | if (dynobj != NULL) | |
11385 | { | |
11386 | if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info)) | |
11387 | goto error_return; | |
11388 | ||
943284cc | 11389 | /* Check for DT_TEXTREL (late, in case the backend removes it). */ |
be7b303d AM |
11390 | if (((info->warn_shared_textrel && info->shared) |
11391 | || info->error_textrel) | |
3d4d4302 | 11392 | && (o = bfd_get_linker_section (dynobj, ".dynamic")) != NULL) |
943284cc DJ |
11393 | { |
11394 | bfd_byte *dyncon, *dynconend; | |
11395 | ||
943284cc DJ |
11396 | dyncon = o->contents; |
11397 | dynconend = o->contents + o->size; | |
11398 | for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn) | |
11399 | { | |
11400 | Elf_Internal_Dyn dyn; | |
11401 | ||
11402 | bed->s->swap_dyn_in (dynobj, dyncon, &dyn); | |
11403 | ||
11404 | if (dyn.d_tag == DT_TEXTREL) | |
11405 | { | |
c192a133 AM |
11406 | if (info->error_textrel) |
11407 | info->callbacks->einfo | |
11408 | (_("%P%X: read-only segment has dynamic relocations.\n")); | |
11409 | else | |
11410 | info->callbacks->einfo | |
11411 | (_("%P: warning: creating a DT_TEXTREL in a shared object.\n")); | |
943284cc DJ |
11412 | break; |
11413 | } | |
11414 | } | |
11415 | } | |
11416 | ||
c152c796 AM |
11417 | for (o = dynobj->sections; o != NULL; o = o->next) |
11418 | { | |
11419 | if ((o->flags & SEC_HAS_CONTENTS) == 0 | |
eea6121a | 11420 | || o->size == 0 |
c152c796 AM |
11421 | || o->output_section == bfd_abs_section_ptr) |
11422 | continue; | |
11423 | if ((o->flags & SEC_LINKER_CREATED) == 0) | |
11424 | { | |
11425 | /* At this point, we are only interested in sections | |
11426 | created by _bfd_elf_link_create_dynamic_sections. */ | |
11427 | continue; | |
11428 | } | |
3722b82f AM |
11429 | if (elf_hash_table (info)->stab_info.stabstr == o) |
11430 | continue; | |
eea6121a AM |
11431 | if (elf_hash_table (info)->eh_info.hdr_sec == o) |
11432 | continue; | |
3d4d4302 | 11433 | if (strcmp (o->name, ".dynstr") != 0) |
c152c796 | 11434 | { |
5dabe785 | 11435 | /* FIXME: octets_per_byte. */ |
c152c796 AM |
11436 | if (! bfd_set_section_contents (abfd, o->output_section, |
11437 | o->contents, | |
11438 | (file_ptr) o->output_offset, | |
eea6121a | 11439 | o->size)) |
c152c796 AM |
11440 | goto error_return; |
11441 | } | |
11442 | else | |
11443 | { | |
11444 | /* The contents of the .dynstr section are actually in a | |
11445 | stringtab. */ | |
11446 | off = elf_section_data (o->output_section)->this_hdr.sh_offset; | |
11447 | if (bfd_seek (abfd, off, SEEK_SET) != 0 | |
11448 | || ! _bfd_elf_strtab_emit (abfd, | |
11449 | elf_hash_table (info)->dynstr)) | |
11450 | goto error_return; | |
11451 | } | |
11452 | } | |
11453 | } | |
11454 | ||
11455 | if (info->relocatable) | |
11456 | { | |
11457 | bfd_boolean failed = FALSE; | |
11458 | ||
11459 | bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed); | |
11460 | if (failed) | |
11461 | goto error_return; | |
11462 | } | |
11463 | ||
11464 | /* If we have optimized stabs strings, output them. */ | |
3722b82f | 11465 | if (elf_hash_table (info)->stab_info.stabstr != NULL) |
c152c796 AM |
11466 | { |
11467 | if (! _bfd_write_stab_strings (abfd, &elf_hash_table (info)->stab_info)) | |
11468 | goto error_return; | |
11469 | } | |
11470 | ||
9f7c3e5e AM |
11471 | if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info)) |
11472 | goto error_return; | |
c152c796 | 11473 | |
9f7c3e5e | 11474 | elf_final_link_free (abfd, &flinfo); |
c152c796 | 11475 | |
12bd6957 | 11476 | elf_linker (abfd) = TRUE; |
c152c796 | 11477 | |
104d59d1 JM |
11478 | if (attr_section) |
11479 | { | |
a50b1753 | 11480 | bfd_byte *contents = (bfd_byte *) bfd_malloc (attr_size); |
104d59d1 | 11481 | if (contents == NULL) |
d0f16d5e | 11482 | return FALSE; /* Bail out and fail. */ |
104d59d1 JM |
11483 | bfd_elf_set_obj_attr_contents (abfd, contents, attr_size); |
11484 | bfd_set_section_contents (abfd, attr_section, contents, 0, attr_size); | |
11485 | free (contents); | |
11486 | } | |
11487 | ||
c152c796 AM |
11488 | return TRUE; |
11489 | ||
11490 | error_return: | |
9f7c3e5e | 11491 | elf_final_link_free (abfd, &flinfo); |
c152c796 AM |
11492 | return FALSE; |
11493 | } | |
11494 | \f | |
5241d853 RS |
11495 | /* Initialize COOKIE for input bfd ABFD. */ |
11496 | ||
11497 | static bfd_boolean | |
11498 | init_reloc_cookie (struct elf_reloc_cookie *cookie, | |
11499 | struct bfd_link_info *info, bfd *abfd) | |
11500 | { | |
11501 | Elf_Internal_Shdr *symtab_hdr; | |
11502 | const struct elf_backend_data *bed; | |
11503 | ||
11504 | bed = get_elf_backend_data (abfd); | |
11505 | symtab_hdr = &elf_tdata (abfd)->symtab_hdr; | |
11506 | ||
11507 | cookie->abfd = abfd; | |
11508 | cookie->sym_hashes = elf_sym_hashes (abfd); | |
11509 | cookie->bad_symtab = elf_bad_symtab (abfd); | |
11510 | if (cookie->bad_symtab) | |
11511 | { | |
11512 | cookie->locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym; | |
11513 | cookie->extsymoff = 0; | |
11514 | } | |
11515 | else | |
11516 | { | |
11517 | cookie->locsymcount = symtab_hdr->sh_info; | |
11518 | cookie->extsymoff = symtab_hdr->sh_info; | |
11519 | } | |
11520 | ||
11521 | if (bed->s->arch_size == 32) | |
11522 | cookie->r_sym_shift = 8; | |
11523 | else | |
11524 | cookie->r_sym_shift = 32; | |
11525 | ||
11526 | cookie->locsyms = (Elf_Internal_Sym *) symtab_hdr->contents; | |
11527 | if (cookie->locsyms == NULL && cookie->locsymcount != 0) | |
11528 | { | |
11529 | cookie->locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr, | |
11530 | cookie->locsymcount, 0, | |
11531 | NULL, NULL, NULL); | |
11532 | if (cookie->locsyms == NULL) | |
11533 | { | |
11534 | info->callbacks->einfo (_("%P%X: can not read symbols: %E\n")); | |
11535 | return FALSE; | |
11536 | } | |
11537 | if (info->keep_memory) | |
11538 | symtab_hdr->contents = (bfd_byte *) cookie->locsyms; | |
11539 | } | |
11540 | return TRUE; | |
11541 | } | |
11542 | ||
11543 | /* Free the memory allocated by init_reloc_cookie, if appropriate. */ | |
11544 | ||
11545 | static void | |
11546 | fini_reloc_cookie (struct elf_reloc_cookie *cookie, bfd *abfd) | |
11547 | { | |
11548 | Elf_Internal_Shdr *symtab_hdr; | |
11549 | ||
11550 | symtab_hdr = &elf_tdata (abfd)->symtab_hdr; | |
11551 | if (cookie->locsyms != NULL | |
11552 | && symtab_hdr->contents != (unsigned char *) cookie->locsyms) | |
11553 | free (cookie->locsyms); | |
11554 | } | |
11555 | ||
11556 | /* Initialize the relocation information in COOKIE for input section SEC | |
11557 | of input bfd ABFD. */ | |
11558 | ||
11559 | static bfd_boolean | |
11560 | init_reloc_cookie_rels (struct elf_reloc_cookie *cookie, | |
11561 | struct bfd_link_info *info, bfd *abfd, | |
11562 | asection *sec) | |
11563 | { | |
11564 | const struct elf_backend_data *bed; | |
11565 | ||
11566 | if (sec->reloc_count == 0) | |
11567 | { | |
11568 | cookie->rels = NULL; | |
11569 | cookie->relend = NULL; | |
11570 | } | |
11571 | else | |
11572 | { | |
11573 | bed = get_elf_backend_data (abfd); | |
11574 | ||
11575 | cookie->rels = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL, | |
11576 | info->keep_memory); | |
11577 | if (cookie->rels == NULL) | |
11578 | return FALSE; | |
11579 | cookie->rel = cookie->rels; | |
11580 | cookie->relend = (cookie->rels | |
11581 | + sec->reloc_count * bed->s->int_rels_per_ext_rel); | |
11582 | } | |
11583 | cookie->rel = cookie->rels; | |
11584 | return TRUE; | |
11585 | } | |
11586 | ||
11587 | /* Free the memory allocated by init_reloc_cookie_rels, | |
11588 | if appropriate. */ | |
11589 | ||
11590 | static void | |
11591 | fini_reloc_cookie_rels (struct elf_reloc_cookie *cookie, | |
11592 | asection *sec) | |
11593 | { | |
11594 | if (cookie->rels && elf_section_data (sec)->relocs != cookie->rels) | |
11595 | free (cookie->rels); | |
11596 | } | |
11597 | ||
11598 | /* Initialize the whole of COOKIE for input section SEC. */ | |
11599 | ||
11600 | static bfd_boolean | |
11601 | init_reloc_cookie_for_section (struct elf_reloc_cookie *cookie, | |
11602 | struct bfd_link_info *info, | |
11603 | asection *sec) | |
11604 | { | |
11605 | if (!init_reloc_cookie (cookie, info, sec->owner)) | |
11606 | goto error1; | |
11607 | if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec)) | |
11608 | goto error2; | |
11609 | return TRUE; | |
11610 | ||
11611 | error2: | |
11612 | fini_reloc_cookie (cookie, sec->owner); | |
11613 | error1: | |
11614 | return FALSE; | |
11615 | } | |
11616 | ||
11617 | /* Free the memory allocated by init_reloc_cookie_for_section, | |
11618 | if appropriate. */ | |
11619 | ||
11620 | static void | |
11621 | fini_reloc_cookie_for_section (struct elf_reloc_cookie *cookie, | |
11622 | asection *sec) | |
11623 | { | |
11624 | fini_reloc_cookie_rels (cookie, sec); | |
11625 | fini_reloc_cookie (cookie, sec->owner); | |
11626 | } | |
11627 | \f | |
c152c796 AM |
11628 | /* Garbage collect unused sections. */ |
11629 | ||
07adf181 AM |
11630 | /* Default gc_mark_hook. */ |
11631 | ||
11632 | asection * | |
11633 | _bfd_elf_gc_mark_hook (asection *sec, | |
11634 | struct bfd_link_info *info ATTRIBUTE_UNUSED, | |
11635 | Elf_Internal_Rela *rel ATTRIBUTE_UNUSED, | |
11636 | struct elf_link_hash_entry *h, | |
11637 | Elf_Internal_Sym *sym) | |
11638 | { | |
bde6f3eb L |
11639 | const char *sec_name; |
11640 | ||
07adf181 AM |
11641 | if (h != NULL) |
11642 | { | |
11643 | switch (h->root.type) | |
11644 | { | |
11645 | case bfd_link_hash_defined: | |
11646 | case bfd_link_hash_defweak: | |
11647 | return h->root.u.def.section; | |
11648 | ||
11649 | case bfd_link_hash_common: | |
11650 | return h->root.u.c.p->section; | |
11651 | ||
bde6f3eb L |
11652 | case bfd_link_hash_undefined: |
11653 | case bfd_link_hash_undefweak: | |
11654 | /* To work around a glibc bug, keep all XXX input sections | |
11655 | when there is an as yet undefined reference to __start_XXX | |
11656 | or __stop_XXX symbols. The linker will later define such | |
11657 | symbols for orphan input sections that have a name | |
11658 | representable as a C identifier. */ | |
11659 | if (strncmp (h->root.root.string, "__start_", 8) == 0) | |
11660 | sec_name = h->root.root.string + 8; | |
11661 | else if (strncmp (h->root.root.string, "__stop_", 7) == 0) | |
11662 | sec_name = h->root.root.string + 7; | |
11663 | else | |
11664 | sec_name = NULL; | |
11665 | ||
11666 | if (sec_name && *sec_name != '\0') | |
11667 | { | |
11668 | bfd *i; | |
68ffbac6 | 11669 | |
bde6f3eb L |
11670 | for (i = info->input_bfds; i; i = i->link_next) |
11671 | { | |
11672 | sec = bfd_get_section_by_name (i, sec_name); | |
11673 | if (sec) | |
11674 | sec->flags |= SEC_KEEP; | |
11675 | } | |
11676 | } | |
11677 | break; | |
11678 | ||
07adf181 AM |
11679 | default: |
11680 | break; | |
11681 | } | |
11682 | } | |
11683 | else | |
11684 | return bfd_section_from_elf_index (sec->owner, sym->st_shndx); | |
11685 | ||
11686 | return NULL; | |
11687 | } | |
11688 | ||
5241d853 RS |
11689 | /* COOKIE->rel describes a relocation against section SEC, which is |
11690 | a section we've decided to keep. Return the section that contains | |
11691 | the relocation symbol, or NULL if no section contains it. */ | |
11692 | ||
11693 | asection * | |
11694 | _bfd_elf_gc_mark_rsec (struct bfd_link_info *info, asection *sec, | |
11695 | elf_gc_mark_hook_fn gc_mark_hook, | |
11696 | struct elf_reloc_cookie *cookie) | |
11697 | { | |
11698 | unsigned long r_symndx; | |
11699 | struct elf_link_hash_entry *h; | |
11700 | ||
11701 | r_symndx = cookie->rel->r_info >> cookie->r_sym_shift; | |
cf35638d | 11702 | if (r_symndx == STN_UNDEF) |
5241d853 RS |
11703 | return NULL; |
11704 | ||
11705 | if (r_symndx >= cookie->locsymcount | |
11706 | || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL) | |
11707 | { | |
11708 | h = cookie->sym_hashes[r_symndx - cookie->extsymoff]; | |
11709 | while (h->root.type == bfd_link_hash_indirect | |
11710 | || h->root.type == bfd_link_hash_warning) | |
11711 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
1d5316ab | 11712 | h->mark = 1; |
4e6b54a6 AM |
11713 | /* If this symbol is weak and there is a non-weak definition, we |
11714 | keep the non-weak definition because many backends put | |
11715 | dynamic reloc info on the non-weak definition for code | |
11716 | handling copy relocs. */ | |
11717 | if (h->u.weakdef != NULL) | |
11718 | h->u.weakdef->mark = 1; | |
5241d853 RS |
11719 | return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL); |
11720 | } | |
11721 | ||
11722 | return (*gc_mark_hook) (sec, info, cookie->rel, NULL, | |
11723 | &cookie->locsyms[r_symndx]); | |
11724 | } | |
11725 | ||
11726 | /* COOKIE->rel describes a relocation against section SEC, which is | |
11727 | a section we've decided to keep. Mark the section that contains | |
9d0a14d3 | 11728 | the relocation symbol. */ |
5241d853 RS |
11729 | |
11730 | bfd_boolean | |
11731 | _bfd_elf_gc_mark_reloc (struct bfd_link_info *info, | |
11732 | asection *sec, | |
11733 | elf_gc_mark_hook_fn gc_mark_hook, | |
9d0a14d3 | 11734 | struct elf_reloc_cookie *cookie) |
5241d853 RS |
11735 | { |
11736 | asection *rsec; | |
11737 | ||
11738 | rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie); | |
11739 | if (rsec && !rsec->gc_mark) | |
11740 | { | |
a66eed7a AM |
11741 | if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour |
11742 | || (rsec->owner->flags & DYNAMIC) != 0) | |
5241d853 | 11743 | rsec->gc_mark = 1; |
5241d853 RS |
11744 | else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook)) |
11745 | return FALSE; | |
11746 | } | |
11747 | return TRUE; | |
11748 | } | |
11749 | ||
07adf181 AM |
11750 | /* The mark phase of garbage collection. For a given section, mark |
11751 | it and any sections in this section's group, and all the sections | |
11752 | which define symbols to which it refers. */ | |
11753 | ||
ccfa59ea AM |
11754 | bfd_boolean |
11755 | _bfd_elf_gc_mark (struct bfd_link_info *info, | |
11756 | asection *sec, | |
6a5bb875 | 11757 | elf_gc_mark_hook_fn gc_mark_hook) |
c152c796 AM |
11758 | { |
11759 | bfd_boolean ret; | |
9d0a14d3 | 11760 | asection *group_sec, *eh_frame; |
c152c796 AM |
11761 | |
11762 | sec->gc_mark = 1; | |
11763 | ||
11764 | /* Mark all the sections in the group. */ | |
11765 | group_sec = elf_section_data (sec)->next_in_group; | |
11766 | if (group_sec && !group_sec->gc_mark) | |
ccfa59ea | 11767 | if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook)) |
c152c796 AM |
11768 | return FALSE; |
11769 | ||
11770 | /* Look through the section relocs. */ | |
11771 | ret = TRUE; | |
9d0a14d3 RS |
11772 | eh_frame = elf_eh_frame_section (sec->owner); |
11773 | if ((sec->flags & SEC_RELOC) != 0 | |
11774 | && sec->reloc_count > 0 | |
11775 | && sec != eh_frame) | |
c152c796 | 11776 | { |
5241d853 | 11777 | struct elf_reloc_cookie cookie; |
c152c796 | 11778 | |
5241d853 RS |
11779 | if (!init_reloc_cookie_for_section (&cookie, info, sec)) |
11780 | ret = FALSE; | |
c152c796 | 11781 | else |
c152c796 | 11782 | { |
5241d853 | 11783 | for (; cookie.rel < cookie.relend; cookie.rel++) |
9d0a14d3 | 11784 | if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, &cookie)) |
5241d853 RS |
11785 | { |
11786 | ret = FALSE; | |
11787 | break; | |
11788 | } | |
11789 | fini_reloc_cookie_for_section (&cookie, sec); | |
c152c796 AM |
11790 | } |
11791 | } | |
9d0a14d3 RS |
11792 | |
11793 | if (ret && eh_frame && elf_fde_list (sec)) | |
11794 | { | |
11795 | struct elf_reloc_cookie cookie; | |
11796 | ||
11797 | if (!init_reloc_cookie_for_section (&cookie, info, eh_frame)) | |
11798 | ret = FALSE; | |
11799 | else | |
11800 | { | |
11801 | if (!_bfd_elf_gc_mark_fdes (info, sec, eh_frame, | |
11802 | gc_mark_hook, &cookie)) | |
11803 | ret = FALSE; | |
11804 | fini_reloc_cookie_for_section (&cookie, eh_frame); | |
11805 | } | |
11806 | } | |
11807 | ||
c152c796 AM |
11808 | return ret; |
11809 | } | |
11810 | ||
7f6ab9f8 AM |
11811 | /* Keep debug and special sections. */ |
11812 | ||
11813 | bfd_boolean | |
11814 | _bfd_elf_gc_mark_extra_sections (struct bfd_link_info *info, | |
11815 | elf_gc_mark_hook_fn mark_hook ATTRIBUTE_UNUSED) | |
11816 | { | |
11817 | bfd *ibfd; | |
11818 | ||
11819 | for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next) | |
11820 | { | |
11821 | asection *isec; | |
11822 | bfd_boolean some_kept; | |
b40bf0a2 | 11823 | bfd_boolean debug_frag_seen; |
7f6ab9f8 AM |
11824 | |
11825 | if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour) | |
11826 | continue; | |
11827 | ||
b40bf0a2 NC |
11828 | /* Ensure all linker created sections are kept, |
11829 | see if any other section is already marked, | |
11830 | and note if we have any fragmented debug sections. */ | |
11831 | debug_frag_seen = some_kept = FALSE; | |
7f6ab9f8 AM |
11832 | for (isec = ibfd->sections; isec != NULL; isec = isec->next) |
11833 | { | |
11834 | if ((isec->flags & SEC_LINKER_CREATED) != 0) | |
11835 | isec->gc_mark = 1; | |
11836 | else if (isec->gc_mark) | |
11837 | some_kept = TRUE; | |
b40bf0a2 NC |
11838 | |
11839 | if (debug_frag_seen == FALSE | |
11840 | && (isec->flags & SEC_DEBUGGING) | |
11841 | && CONST_STRNEQ (isec->name, ".debug_line.")) | |
11842 | debug_frag_seen = TRUE; | |
7f6ab9f8 AM |
11843 | } |
11844 | ||
11845 | /* If no section in this file will be kept, then we can | |
b40bf0a2 | 11846 | toss out the debug and special sections. */ |
7f6ab9f8 AM |
11847 | if (!some_kept) |
11848 | continue; | |
11849 | ||
11850 | /* Keep debug and special sections like .comment when they are | |
c227efa6 | 11851 | not part of a group, or when we have single-member groups. */ |
7f6ab9f8 | 11852 | for (isec = ibfd->sections; isec != NULL; isec = isec->next) |
c227efa6 AM |
11853 | if ((elf_next_in_group (isec) == NULL |
11854 | || elf_next_in_group (isec) == isec) | |
7f6ab9f8 AM |
11855 | && ((isec->flags & SEC_DEBUGGING) != 0 |
11856 | || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0)) | |
11857 | isec->gc_mark = 1; | |
b40bf0a2 NC |
11858 | |
11859 | if (! debug_frag_seen) | |
11860 | continue; | |
11861 | ||
11862 | /* Look for CODE sections which are going to be discarded, | |
11863 | and find and discard any fragmented debug sections which | |
11864 | are associated with that code section. */ | |
11865 | for (isec = ibfd->sections; isec != NULL; isec = isec->next) | |
11866 | if ((isec->flags & SEC_CODE) != 0 | |
11867 | && isec->gc_mark == 0) | |
11868 | { | |
11869 | unsigned int ilen; | |
11870 | asection *dsec; | |
11871 | ||
11872 | ilen = strlen (isec->name); | |
11873 | ||
11874 | /* Association is determined by the name of the debug section | |
11875 | containing the name of the code section as a suffix. For | |
11876 | example .debug_line.text.foo is a debug section associated | |
11877 | with .text.foo. */ | |
11878 | for (dsec = ibfd->sections; dsec != NULL; dsec = dsec->next) | |
11879 | { | |
11880 | unsigned int dlen; | |
11881 | ||
11882 | if (dsec->gc_mark == 0 | |
11883 | || (dsec->flags & SEC_DEBUGGING) == 0) | |
11884 | continue; | |
11885 | ||
11886 | dlen = strlen (dsec->name); | |
11887 | ||
11888 | if (dlen > ilen | |
11889 | && strncmp (dsec->name + (dlen - ilen), | |
11890 | isec->name, ilen) == 0) | |
11891 | { | |
11892 | dsec->gc_mark = 0; | |
11893 | break; | |
11894 | } | |
11895 | } | |
11896 | } | |
7f6ab9f8 AM |
11897 | } |
11898 | return TRUE; | |
11899 | } | |
11900 | ||
c152c796 AM |
11901 | /* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */ |
11902 | ||
c17d87de NC |
11903 | struct elf_gc_sweep_symbol_info |
11904 | { | |
ccabcbe5 AM |
11905 | struct bfd_link_info *info; |
11906 | void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *, | |
11907 | bfd_boolean); | |
11908 | }; | |
11909 | ||
c152c796 | 11910 | static bfd_boolean |
ccabcbe5 | 11911 | elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data) |
c152c796 | 11912 | { |
1d5316ab AM |
11913 | if (!h->mark |
11914 | && (((h->root.type == bfd_link_hash_defined | |
11915 | || h->root.type == bfd_link_hash_defweak) | |
6673f753 AM |
11916 | && !(h->def_regular |
11917 | && h->root.u.def.section->gc_mark)) | |
1d5316ab AM |
11918 | || h->root.type == bfd_link_hash_undefined |
11919 | || h->root.type == bfd_link_hash_undefweak)) | |
11920 | { | |
11921 | struct elf_gc_sweep_symbol_info *inf; | |
11922 | ||
11923 | inf = (struct elf_gc_sweep_symbol_info *) data; | |
ccabcbe5 | 11924 | (*inf->hide_symbol) (inf->info, h, TRUE); |
1d5316ab AM |
11925 | h->def_regular = 0; |
11926 | h->ref_regular = 0; | |
11927 | h->ref_regular_nonweak = 0; | |
ccabcbe5 | 11928 | } |
c152c796 AM |
11929 | |
11930 | return TRUE; | |
11931 | } | |
11932 | ||
11933 | /* The sweep phase of garbage collection. Remove all garbage sections. */ | |
11934 | ||
11935 | typedef bfd_boolean (*gc_sweep_hook_fn) | |
11936 | (bfd *, struct bfd_link_info *, asection *, const Elf_Internal_Rela *); | |
11937 | ||
11938 | static bfd_boolean | |
ccabcbe5 | 11939 | elf_gc_sweep (bfd *abfd, struct bfd_link_info *info) |
c152c796 AM |
11940 | { |
11941 | bfd *sub; | |
ccabcbe5 AM |
11942 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); |
11943 | gc_sweep_hook_fn gc_sweep_hook = bed->gc_sweep_hook; | |
11944 | unsigned long section_sym_count; | |
11945 | struct elf_gc_sweep_symbol_info sweep_info; | |
c152c796 AM |
11946 | |
11947 | for (sub = info->input_bfds; sub != NULL; sub = sub->link_next) | |
11948 | { | |
11949 | asection *o; | |
11950 | ||
11951 | if (bfd_get_flavour (sub) != bfd_target_elf_flavour) | |
11952 | continue; | |
11953 | ||
11954 | for (o = sub->sections; o != NULL; o = o->next) | |
11955 | { | |
a33dafc3 L |
11956 | /* When any section in a section group is kept, we keep all |
11957 | sections in the section group. If the first member of | |
11958 | the section group is excluded, we will also exclude the | |
11959 | group section. */ | |
11960 | if (o->flags & SEC_GROUP) | |
11961 | { | |
11962 | asection *first = elf_next_in_group (o); | |
11963 | o->gc_mark = first->gc_mark; | |
11964 | } | |
c152c796 AM |
11965 | |
11966 | if (o->gc_mark) | |
11967 | continue; | |
11968 | ||
11969 | /* Skip sweeping sections already excluded. */ | |
11970 | if (o->flags & SEC_EXCLUDE) | |
11971 | continue; | |
11972 | ||
11973 | /* Since this is early in the link process, it is simple | |
11974 | to remove a section from the output. */ | |
11975 | o->flags |= SEC_EXCLUDE; | |
11976 | ||
c55fe096 | 11977 | if (info->print_gc_sections && o->size != 0) |
c17d87de NC |
11978 | _bfd_error_handler (_("Removing unused section '%s' in file '%B'"), sub, o->name); |
11979 | ||
c152c796 AM |
11980 | /* But we also have to update some of the relocation |
11981 | info we collected before. */ | |
11982 | if (gc_sweep_hook | |
e8aaee2a AM |
11983 | && (o->flags & SEC_RELOC) != 0 |
11984 | && o->reloc_count > 0 | |
11985 | && !bfd_is_abs_section (o->output_section)) | |
c152c796 AM |
11986 | { |
11987 | Elf_Internal_Rela *internal_relocs; | |
11988 | bfd_boolean r; | |
11989 | ||
11990 | internal_relocs | |
11991 | = _bfd_elf_link_read_relocs (o->owner, o, NULL, NULL, | |
11992 | info->keep_memory); | |
11993 | if (internal_relocs == NULL) | |
11994 | return FALSE; | |
11995 | ||
11996 | r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs); | |
11997 | ||
11998 | if (elf_section_data (o)->relocs != internal_relocs) | |
11999 | free (internal_relocs); | |
12000 | ||
12001 | if (!r) | |
12002 | return FALSE; | |
12003 | } | |
12004 | } | |
12005 | } | |
12006 | ||
12007 | /* Remove the symbols that were in the swept sections from the dynamic | |
12008 | symbol table. GCFIXME: Anyone know how to get them out of the | |
12009 | static symbol table as well? */ | |
ccabcbe5 AM |
12010 | sweep_info.info = info; |
12011 | sweep_info.hide_symbol = bed->elf_backend_hide_symbol; | |
12012 | elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol, | |
12013 | &sweep_info); | |
c152c796 | 12014 | |
ccabcbe5 | 12015 | _bfd_elf_link_renumber_dynsyms (abfd, info, §ion_sym_count); |
c152c796 AM |
12016 | return TRUE; |
12017 | } | |
12018 | ||
12019 | /* Propagate collected vtable information. This is called through | |
12020 | elf_link_hash_traverse. */ | |
12021 | ||
12022 | static bfd_boolean | |
12023 | elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp) | |
12024 | { | |
c152c796 | 12025 | /* Those that are not vtables. */ |
f6e332e6 | 12026 | if (h->vtable == NULL || h->vtable->parent == NULL) |
c152c796 AM |
12027 | return TRUE; |
12028 | ||
12029 | /* Those vtables that do not have parents, we cannot merge. */ | |
f6e332e6 | 12030 | if (h->vtable->parent == (struct elf_link_hash_entry *) -1) |
c152c796 AM |
12031 | return TRUE; |
12032 | ||
12033 | /* If we've already been done, exit. */ | |
f6e332e6 | 12034 | if (h->vtable->used && h->vtable->used[-1]) |
c152c796 AM |
12035 | return TRUE; |
12036 | ||
12037 | /* Make sure the parent's table is up to date. */ | |
f6e332e6 | 12038 | elf_gc_propagate_vtable_entries_used (h->vtable->parent, okp); |
c152c796 | 12039 | |
f6e332e6 | 12040 | if (h->vtable->used == NULL) |
c152c796 AM |
12041 | { |
12042 | /* None of this table's entries were referenced. Re-use the | |
12043 | parent's table. */ | |
f6e332e6 AM |
12044 | h->vtable->used = h->vtable->parent->vtable->used; |
12045 | h->vtable->size = h->vtable->parent->vtable->size; | |
c152c796 AM |
12046 | } |
12047 | else | |
12048 | { | |
12049 | size_t n; | |
12050 | bfd_boolean *cu, *pu; | |
12051 | ||
12052 | /* Or the parent's entries into ours. */ | |
f6e332e6 | 12053 | cu = h->vtable->used; |
c152c796 | 12054 | cu[-1] = TRUE; |
f6e332e6 | 12055 | pu = h->vtable->parent->vtable->used; |
c152c796 AM |
12056 | if (pu != NULL) |
12057 | { | |
12058 | const struct elf_backend_data *bed; | |
12059 | unsigned int log_file_align; | |
12060 | ||
12061 | bed = get_elf_backend_data (h->root.u.def.section->owner); | |
12062 | log_file_align = bed->s->log_file_align; | |
f6e332e6 | 12063 | n = h->vtable->parent->vtable->size >> log_file_align; |
c152c796 AM |
12064 | while (n--) |
12065 | { | |
12066 | if (*pu) | |
12067 | *cu = TRUE; | |
12068 | pu++; | |
12069 | cu++; | |
12070 | } | |
12071 | } | |
12072 | } | |
12073 | ||
12074 | return TRUE; | |
12075 | } | |
12076 | ||
12077 | static bfd_boolean | |
12078 | elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp) | |
12079 | { | |
12080 | asection *sec; | |
12081 | bfd_vma hstart, hend; | |
12082 | Elf_Internal_Rela *relstart, *relend, *rel; | |
12083 | const struct elf_backend_data *bed; | |
12084 | unsigned int log_file_align; | |
12085 | ||
c152c796 AM |
12086 | /* Take care of both those symbols that do not describe vtables as |
12087 | well as those that are not loaded. */ | |
f6e332e6 | 12088 | if (h->vtable == NULL || h->vtable->parent == NULL) |
c152c796 AM |
12089 | return TRUE; |
12090 | ||
12091 | BFD_ASSERT (h->root.type == bfd_link_hash_defined | |
12092 | || h->root.type == bfd_link_hash_defweak); | |
12093 | ||
12094 | sec = h->root.u.def.section; | |
12095 | hstart = h->root.u.def.value; | |
12096 | hend = hstart + h->size; | |
12097 | ||
12098 | relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE); | |
12099 | if (!relstart) | |
12100 | return *(bfd_boolean *) okp = FALSE; | |
12101 | bed = get_elf_backend_data (sec->owner); | |
12102 | log_file_align = bed->s->log_file_align; | |
12103 | ||
12104 | relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel; | |
12105 | ||
12106 | for (rel = relstart; rel < relend; ++rel) | |
12107 | if (rel->r_offset >= hstart && rel->r_offset < hend) | |
12108 | { | |
12109 | /* If the entry is in use, do nothing. */ | |
f6e332e6 AM |
12110 | if (h->vtable->used |
12111 | && (rel->r_offset - hstart) < h->vtable->size) | |
c152c796 AM |
12112 | { |
12113 | bfd_vma entry = (rel->r_offset - hstart) >> log_file_align; | |
f6e332e6 | 12114 | if (h->vtable->used[entry]) |
c152c796 AM |
12115 | continue; |
12116 | } | |
12117 | /* Otherwise, kill it. */ | |
12118 | rel->r_offset = rel->r_info = rel->r_addend = 0; | |
12119 | } | |
12120 | ||
12121 | return TRUE; | |
12122 | } | |
12123 | ||
87538722 AM |
12124 | /* Mark sections containing dynamically referenced symbols. When |
12125 | building shared libraries, we must assume that any visible symbol is | |
12126 | referenced. */ | |
715df9b8 | 12127 | |
64d03ab5 AM |
12128 | bfd_boolean |
12129 | bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf) | |
715df9b8 | 12130 | { |
87538722 AM |
12131 | struct bfd_link_info *info = (struct bfd_link_info *) inf; |
12132 | ||
715df9b8 EB |
12133 | if ((h->root.type == bfd_link_hash_defined |
12134 | || h->root.type == bfd_link_hash_defweak) | |
87538722 | 12135 | && (h->ref_dynamic |
409ff343 | 12136 | || ((!info->executable || info->export_dynamic) |
87538722 AM |
12137 | && h->def_regular |
12138 | && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL | |
fd91d419 | 12139 | && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN |
54e8959c L |
12140 | && (strchr (h->root.root.string, ELF_VER_CHR) != NULL |
12141 | || !bfd_hide_sym_by_version (info->version_info, | |
12142 | h->root.root.string))))) | |
715df9b8 EB |
12143 | h->root.u.def.section->flags |= SEC_KEEP; |
12144 | ||
12145 | return TRUE; | |
12146 | } | |
3b36f7e6 | 12147 | |
74f0fb50 AM |
12148 | /* Keep all sections containing symbols undefined on the command-line, |
12149 | and the section containing the entry symbol. */ | |
12150 | ||
12151 | void | |
12152 | _bfd_elf_gc_keep (struct bfd_link_info *info) | |
12153 | { | |
12154 | struct bfd_sym_chain *sym; | |
12155 | ||
12156 | for (sym = info->gc_sym_list; sym != NULL; sym = sym->next) | |
12157 | { | |
12158 | struct elf_link_hash_entry *h; | |
12159 | ||
12160 | h = elf_link_hash_lookup (elf_hash_table (info), sym->name, | |
12161 | FALSE, FALSE, FALSE); | |
12162 | ||
12163 | if (h != NULL | |
12164 | && (h->root.type == bfd_link_hash_defined | |
12165 | || h->root.type == bfd_link_hash_defweak) | |
12166 | && !bfd_is_abs_section (h->root.u.def.section)) | |
12167 | h->root.u.def.section->flags |= SEC_KEEP; | |
12168 | } | |
12169 | } | |
12170 | ||
c152c796 AM |
12171 | /* Do mark and sweep of unused sections. */ |
12172 | ||
12173 | bfd_boolean | |
12174 | bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info) | |
12175 | { | |
12176 | bfd_boolean ok = TRUE; | |
12177 | bfd *sub; | |
6a5bb875 | 12178 | elf_gc_mark_hook_fn gc_mark_hook; |
64d03ab5 | 12179 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); |
c152c796 | 12180 | |
64d03ab5 | 12181 | if (!bed->can_gc_sections |
715df9b8 | 12182 | || !is_elf_hash_table (info->hash)) |
c152c796 AM |
12183 | { |
12184 | (*_bfd_error_handler)(_("Warning: gc-sections option ignored")); | |
12185 | return TRUE; | |
12186 | } | |
12187 | ||
74f0fb50 AM |
12188 | bed->gc_keep (info); |
12189 | ||
9d0a14d3 RS |
12190 | /* Try to parse each bfd's .eh_frame section. Point elf_eh_frame_section |
12191 | at the .eh_frame section if we can mark the FDEs individually. */ | |
12192 | _bfd_elf_begin_eh_frame_parsing (info); | |
12193 | for (sub = info->input_bfds; sub != NULL; sub = sub->link_next) | |
12194 | { | |
12195 | asection *sec; | |
12196 | struct elf_reloc_cookie cookie; | |
12197 | ||
12198 | sec = bfd_get_section_by_name (sub, ".eh_frame"); | |
9a2a56cc | 12199 | while (sec && init_reloc_cookie_for_section (&cookie, info, sec)) |
9d0a14d3 RS |
12200 | { |
12201 | _bfd_elf_parse_eh_frame (sub, info, sec, &cookie); | |
9a2a56cc AM |
12202 | if (elf_section_data (sec)->sec_info |
12203 | && (sec->flags & SEC_LINKER_CREATED) == 0) | |
9d0a14d3 RS |
12204 | elf_eh_frame_section (sub) = sec; |
12205 | fini_reloc_cookie_for_section (&cookie, sec); | |
9a2a56cc | 12206 | sec = bfd_get_next_section_by_name (sec); |
9d0a14d3 RS |
12207 | } |
12208 | } | |
12209 | _bfd_elf_end_eh_frame_parsing (info); | |
12210 | ||
c152c796 AM |
12211 | /* Apply transitive closure to the vtable entry usage info. */ |
12212 | elf_link_hash_traverse (elf_hash_table (info), | |
12213 | elf_gc_propagate_vtable_entries_used, | |
12214 | &ok); | |
12215 | if (!ok) | |
12216 | return FALSE; | |
12217 | ||
12218 | /* Kill the vtable relocations that were not used. */ | |
12219 | elf_link_hash_traverse (elf_hash_table (info), | |
12220 | elf_gc_smash_unused_vtentry_relocs, | |
12221 | &ok); | |
12222 | if (!ok) | |
12223 | return FALSE; | |
12224 | ||
715df9b8 EB |
12225 | /* Mark dynamically referenced symbols. */ |
12226 | if (elf_hash_table (info)->dynamic_sections_created) | |
12227 | elf_link_hash_traverse (elf_hash_table (info), | |
64d03ab5 | 12228 | bed->gc_mark_dynamic_ref, |
87538722 | 12229 | info); |
c152c796 | 12230 | |
715df9b8 | 12231 | /* Grovel through relocs to find out who stays ... */ |
64d03ab5 | 12232 | gc_mark_hook = bed->gc_mark_hook; |
c152c796 AM |
12233 | for (sub = info->input_bfds; sub != NULL; sub = sub->link_next) |
12234 | { | |
12235 | asection *o; | |
12236 | ||
12237 | if (bfd_get_flavour (sub) != bfd_target_elf_flavour) | |
12238 | continue; | |
12239 | ||
7f6ab9f8 AM |
12240 | /* Start at sections marked with SEC_KEEP (ref _bfd_elf_gc_keep). |
12241 | Also treat note sections as a root, if the section is not part | |
12242 | of a group. */ | |
c152c796 | 12243 | for (o = sub->sections; o != NULL; o = o->next) |
7f6ab9f8 AM |
12244 | if (!o->gc_mark |
12245 | && (o->flags & SEC_EXCLUDE) == 0 | |
24007750 | 12246 | && ((o->flags & SEC_KEEP) != 0 |
7f6ab9f8 AM |
12247 | || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE |
12248 | && elf_next_in_group (o) == NULL ))) | |
12249 | { | |
12250 | if (!_bfd_elf_gc_mark (info, o, gc_mark_hook)) | |
12251 | return FALSE; | |
12252 | } | |
c152c796 AM |
12253 | } |
12254 | ||
6a5bb875 | 12255 | /* Allow the backend to mark additional target specific sections. */ |
7f6ab9f8 | 12256 | bed->gc_mark_extra_sections (info, gc_mark_hook); |
6a5bb875 | 12257 | |
c152c796 | 12258 | /* ... and mark SEC_EXCLUDE for those that go. */ |
ccabcbe5 | 12259 | return elf_gc_sweep (abfd, info); |
c152c796 AM |
12260 | } |
12261 | \f | |
12262 | /* Called from check_relocs to record the existence of a VTINHERIT reloc. */ | |
12263 | ||
12264 | bfd_boolean | |
12265 | bfd_elf_gc_record_vtinherit (bfd *abfd, | |
12266 | asection *sec, | |
12267 | struct elf_link_hash_entry *h, | |
12268 | bfd_vma offset) | |
12269 | { | |
12270 | struct elf_link_hash_entry **sym_hashes, **sym_hashes_end; | |
12271 | struct elf_link_hash_entry **search, *child; | |
12272 | bfd_size_type extsymcount; | |
12273 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
12274 | ||
12275 | /* The sh_info field of the symtab header tells us where the | |
12276 | external symbols start. We don't care about the local symbols at | |
12277 | this point. */ | |
12278 | extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym; | |
12279 | if (!elf_bad_symtab (abfd)) | |
12280 | extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info; | |
12281 | ||
12282 | sym_hashes = elf_sym_hashes (abfd); | |
12283 | sym_hashes_end = sym_hashes + extsymcount; | |
12284 | ||
12285 | /* Hunt down the child symbol, which is in this section at the same | |
12286 | offset as the relocation. */ | |
12287 | for (search = sym_hashes; search != sym_hashes_end; ++search) | |
12288 | { | |
12289 | if ((child = *search) != NULL | |
12290 | && (child->root.type == bfd_link_hash_defined | |
12291 | || child->root.type == bfd_link_hash_defweak) | |
12292 | && child->root.u.def.section == sec | |
12293 | && child->root.u.def.value == offset) | |
12294 | goto win; | |
12295 | } | |
12296 | ||
d003868e AM |
12297 | (*_bfd_error_handler) ("%B: %A+%lu: No symbol found for INHERIT", |
12298 | abfd, sec, (unsigned long) offset); | |
c152c796 AM |
12299 | bfd_set_error (bfd_error_invalid_operation); |
12300 | return FALSE; | |
12301 | ||
12302 | win: | |
f6e332e6 AM |
12303 | if (!child->vtable) |
12304 | { | |
a50b1753 NC |
12305 | child->vtable = (struct elf_link_virtual_table_entry *) |
12306 | bfd_zalloc (abfd, sizeof (*child->vtable)); | |
f6e332e6 AM |
12307 | if (!child->vtable) |
12308 | return FALSE; | |
12309 | } | |
c152c796 AM |
12310 | if (!h) |
12311 | { | |
12312 | /* This *should* only be the absolute section. It could potentially | |
12313 | be that someone has defined a non-global vtable though, which | |
12314 | would be bad. It isn't worth paging in the local symbols to be | |
12315 | sure though; that case should simply be handled by the assembler. */ | |
12316 | ||
f6e332e6 | 12317 | child->vtable->parent = (struct elf_link_hash_entry *) -1; |
c152c796 AM |
12318 | } |
12319 | else | |
f6e332e6 | 12320 | child->vtable->parent = h; |
c152c796 AM |
12321 | |
12322 | return TRUE; | |
12323 | } | |
12324 | ||
12325 | /* Called from check_relocs to record the existence of a VTENTRY reloc. */ | |
12326 | ||
12327 | bfd_boolean | |
12328 | bfd_elf_gc_record_vtentry (bfd *abfd ATTRIBUTE_UNUSED, | |
12329 | asection *sec ATTRIBUTE_UNUSED, | |
12330 | struct elf_link_hash_entry *h, | |
12331 | bfd_vma addend) | |
12332 | { | |
12333 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
12334 | unsigned int log_file_align = bed->s->log_file_align; | |
12335 | ||
f6e332e6 AM |
12336 | if (!h->vtable) |
12337 | { | |
a50b1753 NC |
12338 | h->vtable = (struct elf_link_virtual_table_entry *) |
12339 | bfd_zalloc (abfd, sizeof (*h->vtable)); | |
f6e332e6 AM |
12340 | if (!h->vtable) |
12341 | return FALSE; | |
12342 | } | |
12343 | ||
12344 | if (addend >= h->vtable->size) | |
c152c796 AM |
12345 | { |
12346 | size_t size, bytes, file_align; | |
f6e332e6 | 12347 | bfd_boolean *ptr = h->vtable->used; |
c152c796 AM |
12348 | |
12349 | /* While the symbol is undefined, we have to be prepared to handle | |
12350 | a zero size. */ | |
12351 | file_align = 1 << log_file_align; | |
12352 | if (h->root.type == bfd_link_hash_undefined) | |
12353 | size = addend + file_align; | |
12354 | else | |
12355 | { | |
12356 | size = h->size; | |
12357 | if (addend >= size) | |
12358 | { | |
12359 | /* Oops! We've got a reference past the defined end of | |
12360 | the table. This is probably a bug -- shall we warn? */ | |
12361 | size = addend + file_align; | |
12362 | } | |
12363 | } | |
12364 | size = (size + file_align - 1) & -file_align; | |
12365 | ||
12366 | /* Allocate one extra entry for use as a "done" flag for the | |
12367 | consolidation pass. */ | |
12368 | bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean); | |
12369 | ||
12370 | if (ptr) | |
12371 | { | |
a50b1753 | 12372 | ptr = (bfd_boolean *) bfd_realloc (ptr - 1, bytes); |
c152c796 AM |
12373 | |
12374 | if (ptr != NULL) | |
12375 | { | |
12376 | size_t oldbytes; | |
12377 | ||
f6e332e6 | 12378 | oldbytes = (((h->vtable->size >> log_file_align) + 1) |
c152c796 AM |
12379 | * sizeof (bfd_boolean)); |
12380 | memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes); | |
12381 | } | |
12382 | } | |
12383 | else | |
a50b1753 | 12384 | ptr = (bfd_boolean *) bfd_zmalloc (bytes); |
c152c796 AM |
12385 | |
12386 | if (ptr == NULL) | |
12387 | return FALSE; | |
12388 | ||
12389 | /* And arrange for that done flag to be at index -1. */ | |
f6e332e6 AM |
12390 | h->vtable->used = ptr + 1; |
12391 | h->vtable->size = size; | |
c152c796 AM |
12392 | } |
12393 | ||
f6e332e6 | 12394 | h->vtable->used[addend >> log_file_align] = TRUE; |
c152c796 AM |
12395 | |
12396 | return TRUE; | |
12397 | } | |
12398 | ||
ae17ab41 CM |
12399 | /* Map an ELF section header flag to its corresponding string. */ |
12400 | typedef struct | |
12401 | { | |
12402 | char *flag_name; | |
12403 | flagword flag_value; | |
12404 | } elf_flags_to_name_table; | |
12405 | ||
12406 | static elf_flags_to_name_table elf_flags_to_names [] = | |
12407 | { | |
12408 | { "SHF_WRITE", SHF_WRITE }, | |
12409 | { "SHF_ALLOC", SHF_ALLOC }, | |
12410 | { "SHF_EXECINSTR", SHF_EXECINSTR }, | |
12411 | { "SHF_MERGE", SHF_MERGE }, | |
12412 | { "SHF_STRINGS", SHF_STRINGS }, | |
12413 | { "SHF_INFO_LINK", SHF_INFO_LINK}, | |
12414 | { "SHF_LINK_ORDER", SHF_LINK_ORDER}, | |
12415 | { "SHF_OS_NONCONFORMING", SHF_OS_NONCONFORMING}, | |
12416 | { "SHF_GROUP", SHF_GROUP }, | |
12417 | { "SHF_TLS", SHF_TLS }, | |
12418 | { "SHF_MASKOS", SHF_MASKOS }, | |
12419 | { "SHF_EXCLUDE", SHF_EXCLUDE }, | |
12420 | }; | |
12421 | ||
b9c361e0 JL |
12422 | /* Returns TRUE if the section is to be included, otherwise FALSE. */ |
12423 | bfd_boolean | |
ae17ab41 | 12424 | bfd_elf_lookup_section_flags (struct bfd_link_info *info, |
8b127cbc | 12425 | struct flag_info *flaginfo, |
b9c361e0 | 12426 | asection *section) |
ae17ab41 | 12427 | { |
8b127cbc | 12428 | const bfd_vma sh_flags = elf_section_flags (section); |
ae17ab41 | 12429 | |
8b127cbc | 12430 | if (!flaginfo->flags_initialized) |
ae17ab41 | 12431 | { |
8b127cbc AM |
12432 | bfd *obfd = info->output_bfd; |
12433 | const struct elf_backend_data *bed = get_elf_backend_data (obfd); | |
12434 | struct flag_info_list *tf = flaginfo->flag_list; | |
b9c361e0 JL |
12435 | int with_hex = 0; |
12436 | int without_hex = 0; | |
12437 | ||
8b127cbc | 12438 | for (tf = flaginfo->flag_list; tf != NULL; tf = tf->next) |
ae17ab41 | 12439 | { |
b9c361e0 | 12440 | unsigned i; |
8b127cbc | 12441 | flagword (*lookup) (char *); |
ae17ab41 | 12442 | |
8b127cbc AM |
12443 | lookup = bed->elf_backend_lookup_section_flags_hook; |
12444 | if (lookup != NULL) | |
ae17ab41 | 12445 | { |
8b127cbc | 12446 | flagword hexval = (*lookup) ((char *) tf->name); |
b9c361e0 JL |
12447 | |
12448 | if (hexval != 0) | |
12449 | { | |
12450 | if (tf->with == with_flags) | |
12451 | with_hex |= hexval; | |
12452 | else if (tf->with == without_flags) | |
12453 | without_hex |= hexval; | |
12454 | tf->valid = TRUE; | |
12455 | continue; | |
12456 | } | |
ae17ab41 | 12457 | } |
8b127cbc | 12458 | for (i = 0; i < ARRAY_SIZE (elf_flags_to_names); ++i) |
ae17ab41 | 12459 | { |
8b127cbc | 12460 | if (strcmp (tf->name, elf_flags_to_names[i].flag_name) == 0) |
b9c361e0 JL |
12461 | { |
12462 | if (tf->with == with_flags) | |
12463 | with_hex |= elf_flags_to_names[i].flag_value; | |
12464 | else if (tf->with == without_flags) | |
12465 | without_hex |= elf_flags_to_names[i].flag_value; | |
12466 | tf->valid = TRUE; | |
12467 | break; | |
12468 | } | |
12469 | } | |
8b127cbc | 12470 | if (!tf->valid) |
b9c361e0 | 12471 | { |
68ffbac6 | 12472 | info->callbacks->einfo |
8b127cbc | 12473 | (_("Unrecognized INPUT_SECTION_FLAG %s\n"), tf->name); |
b9c361e0 | 12474 | return FALSE; |
ae17ab41 CM |
12475 | } |
12476 | } | |
8b127cbc AM |
12477 | flaginfo->flags_initialized = TRUE; |
12478 | flaginfo->only_with_flags |= with_hex; | |
12479 | flaginfo->not_with_flags |= without_hex; | |
ae17ab41 | 12480 | } |
ae17ab41 | 12481 | |
8b127cbc | 12482 | if ((flaginfo->only_with_flags & sh_flags) != flaginfo->only_with_flags) |
b9c361e0 JL |
12483 | return FALSE; |
12484 | ||
8b127cbc | 12485 | if ((flaginfo->not_with_flags & sh_flags) != 0) |
b9c361e0 JL |
12486 | return FALSE; |
12487 | ||
12488 | return TRUE; | |
ae17ab41 CM |
12489 | } |
12490 | ||
c152c796 AM |
12491 | struct alloc_got_off_arg { |
12492 | bfd_vma gotoff; | |
10455f89 | 12493 | struct bfd_link_info *info; |
c152c796 AM |
12494 | }; |
12495 | ||
12496 | /* We need a special top-level link routine to convert got reference counts | |
12497 | to real got offsets. */ | |
12498 | ||
12499 | static bfd_boolean | |
12500 | elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg) | |
12501 | { | |
a50b1753 | 12502 | struct alloc_got_off_arg *gofarg = (struct alloc_got_off_arg *) arg; |
10455f89 HPN |
12503 | bfd *obfd = gofarg->info->output_bfd; |
12504 | const struct elf_backend_data *bed = get_elf_backend_data (obfd); | |
c152c796 | 12505 | |
c152c796 AM |
12506 | if (h->got.refcount > 0) |
12507 | { | |
12508 | h->got.offset = gofarg->gotoff; | |
10455f89 | 12509 | gofarg->gotoff += bed->got_elt_size (obfd, gofarg->info, h, NULL, 0); |
c152c796 AM |
12510 | } |
12511 | else | |
12512 | h->got.offset = (bfd_vma) -1; | |
12513 | ||
12514 | return TRUE; | |
12515 | } | |
12516 | ||
12517 | /* And an accompanying bit to work out final got entry offsets once | |
12518 | we're done. Should be called from final_link. */ | |
12519 | ||
12520 | bfd_boolean | |
12521 | bfd_elf_gc_common_finalize_got_offsets (bfd *abfd, | |
12522 | struct bfd_link_info *info) | |
12523 | { | |
12524 | bfd *i; | |
12525 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
12526 | bfd_vma gotoff; | |
c152c796 AM |
12527 | struct alloc_got_off_arg gofarg; |
12528 | ||
10455f89 HPN |
12529 | BFD_ASSERT (abfd == info->output_bfd); |
12530 | ||
c152c796 AM |
12531 | if (! is_elf_hash_table (info->hash)) |
12532 | return FALSE; | |
12533 | ||
12534 | /* The GOT offset is relative to the .got section, but the GOT header is | |
12535 | put into the .got.plt section, if the backend uses it. */ | |
12536 | if (bed->want_got_plt) | |
12537 | gotoff = 0; | |
12538 | else | |
12539 | gotoff = bed->got_header_size; | |
12540 | ||
12541 | /* Do the local .got entries first. */ | |
12542 | for (i = info->input_bfds; i; i = i->link_next) | |
12543 | { | |
12544 | bfd_signed_vma *local_got; | |
12545 | bfd_size_type j, locsymcount; | |
12546 | Elf_Internal_Shdr *symtab_hdr; | |
12547 | ||
12548 | if (bfd_get_flavour (i) != bfd_target_elf_flavour) | |
12549 | continue; | |
12550 | ||
12551 | local_got = elf_local_got_refcounts (i); | |
12552 | if (!local_got) | |
12553 | continue; | |
12554 | ||
12555 | symtab_hdr = &elf_tdata (i)->symtab_hdr; | |
12556 | if (elf_bad_symtab (i)) | |
12557 | locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym; | |
12558 | else | |
12559 | locsymcount = symtab_hdr->sh_info; | |
12560 | ||
12561 | for (j = 0; j < locsymcount; ++j) | |
12562 | { | |
12563 | if (local_got[j] > 0) | |
12564 | { | |
12565 | local_got[j] = gotoff; | |
10455f89 | 12566 | gotoff += bed->got_elt_size (abfd, info, NULL, i, j); |
c152c796 AM |
12567 | } |
12568 | else | |
12569 | local_got[j] = (bfd_vma) -1; | |
12570 | } | |
12571 | } | |
12572 | ||
12573 | /* Then the global .got entries. .plt refcounts are handled by | |
12574 | adjust_dynamic_symbol */ | |
12575 | gofarg.gotoff = gotoff; | |
10455f89 | 12576 | gofarg.info = info; |
c152c796 AM |
12577 | elf_link_hash_traverse (elf_hash_table (info), |
12578 | elf_gc_allocate_got_offsets, | |
12579 | &gofarg); | |
12580 | return TRUE; | |
12581 | } | |
12582 | ||
12583 | /* Many folk need no more in the way of final link than this, once | |
12584 | got entry reference counting is enabled. */ | |
12585 | ||
12586 | bfd_boolean | |
12587 | bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info) | |
12588 | { | |
12589 | if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info)) | |
12590 | return FALSE; | |
12591 | ||
12592 | /* Invoke the regular ELF backend linker to do all the work. */ | |
12593 | return bfd_elf_final_link (abfd, info); | |
12594 | } | |
12595 | ||
12596 | bfd_boolean | |
12597 | bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie) | |
12598 | { | |
a50b1753 | 12599 | struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie; |
c152c796 AM |
12600 | |
12601 | if (rcookie->bad_symtab) | |
12602 | rcookie->rel = rcookie->rels; | |
12603 | ||
12604 | for (; rcookie->rel < rcookie->relend; rcookie->rel++) | |
12605 | { | |
12606 | unsigned long r_symndx; | |
12607 | ||
12608 | if (! rcookie->bad_symtab) | |
12609 | if (rcookie->rel->r_offset > offset) | |
12610 | return FALSE; | |
12611 | if (rcookie->rel->r_offset != offset) | |
12612 | continue; | |
12613 | ||
12614 | r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift; | |
2c2fa401 | 12615 | if (r_symndx == STN_UNDEF) |
c152c796 AM |
12616 | return TRUE; |
12617 | ||
12618 | if (r_symndx >= rcookie->locsymcount | |
12619 | || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL) | |
12620 | { | |
12621 | struct elf_link_hash_entry *h; | |
12622 | ||
12623 | h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff]; | |
12624 | ||
12625 | while (h->root.type == bfd_link_hash_indirect | |
12626 | || h->root.type == bfd_link_hash_warning) | |
12627 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
12628 | ||
12629 | if ((h->root.type == bfd_link_hash_defined | |
12630 | || h->root.type == bfd_link_hash_defweak) | |
dbaa2011 | 12631 | && discarded_section (h->root.u.def.section)) |
c152c796 AM |
12632 | return TRUE; |
12633 | else | |
12634 | return FALSE; | |
12635 | } | |
12636 | else | |
12637 | { | |
12638 | /* It's not a relocation against a global symbol, | |
12639 | but it could be a relocation against a local | |
12640 | symbol for a discarded section. */ | |
12641 | asection *isec; | |
12642 | Elf_Internal_Sym *isym; | |
12643 | ||
12644 | /* Need to: get the symbol; get the section. */ | |
12645 | isym = &rcookie->locsyms[r_symndx]; | |
cb33740c | 12646 | isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx); |
dbaa2011 | 12647 | if (isec != NULL && discarded_section (isec)) |
cb33740c | 12648 | return TRUE; |
c152c796 AM |
12649 | } |
12650 | return FALSE; | |
12651 | } | |
12652 | return FALSE; | |
12653 | } | |
12654 | ||
12655 | /* Discard unneeded references to discarded sections. | |
12656 | Returns TRUE if any section's size was changed. */ | |
12657 | /* This function assumes that the relocations are in sorted order, | |
12658 | which is true for all known assemblers. */ | |
12659 | ||
12660 | bfd_boolean | |
12661 | bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info) | |
12662 | { | |
12663 | struct elf_reloc_cookie cookie; | |
12664 | asection *stab, *eh; | |
c152c796 AM |
12665 | const struct elf_backend_data *bed; |
12666 | bfd *abfd; | |
c152c796 AM |
12667 | bfd_boolean ret = FALSE; |
12668 | ||
12669 | if (info->traditional_format | |
12670 | || !is_elf_hash_table (info->hash)) | |
12671 | return FALSE; | |
12672 | ||
ca92cecb | 12673 | _bfd_elf_begin_eh_frame_parsing (info); |
c152c796 AM |
12674 | for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link_next) |
12675 | { | |
12676 | if (bfd_get_flavour (abfd) != bfd_target_elf_flavour) | |
12677 | continue; | |
12678 | ||
12679 | bed = get_elf_backend_data (abfd); | |
12680 | ||
8da3dbc5 AM |
12681 | eh = NULL; |
12682 | if (!info->relocatable) | |
12683 | { | |
12684 | eh = bfd_get_section_by_name (abfd, ".eh_frame"); | |
7e01508c AM |
12685 | while (eh != NULL |
12686 | && (eh->size == 0 | |
12687 | || bfd_is_abs_section (eh->output_section))) | |
12688 | eh = bfd_get_next_section_by_name (eh); | |
8da3dbc5 | 12689 | } |
c152c796 AM |
12690 | |
12691 | stab = bfd_get_section_by_name (abfd, ".stab"); | |
12692 | if (stab != NULL | |
eea6121a | 12693 | && (stab->size == 0 |
c152c796 | 12694 | || bfd_is_abs_section (stab->output_section) |
dbaa2011 | 12695 | || stab->sec_info_type != SEC_INFO_TYPE_STABS)) |
c152c796 AM |
12696 | stab = NULL; |
12697 | ||
12698 | if (stab == NULL | |
12699 | && eh == NULL | |
12700 | && bed->elf_backend_discard_info == NULL) | |
12701 | continue; | |
12702 | ||
5241d853 RS |
12703 | if (!init_reloc_cookie (&cookie, info, abfd)) |
12704 | return FALSE; | |
c152c796 | 12705 | |
5241d853 RS |
12706 | if (stab != NULL |
12707 | && stab->reloc_count > 0 | |
12708 | && init_reloc_cookie_rels (&cookie, info, abfd, stab)) | |
c152c796 | 12709 | { |
5241d853 RS |
12710 | if (_bfd_discard_section_stabs (abfd, stab, |
12711 | elf_section_data (stab)->sec_info, | |
12712 | bfd_elf_reloc_symbol_deleted_p, | |
12713 | &cookie)) | |
12714 | ret = TRUE; | |
12715 | fini_reloc_cookie_rels (&cookie, stab); | |
c152c796 AM |
12716 | } |
12717 | ||
90061c33 AM |
12718 | while (eh != NULL |
12719 | && init_reloc_cookie_rels (&cookie, info, abfd, eh)) | |
c152c796 | 12720 | { |
ca92cecb | 12721 | _bfd_elf_parse_eh_frame (abfd, info, eh, &cookie); |
c152c796 AM |
12722 | if (_bfd_elf_discard_section_eh_frame (abfd, info, eh, |
12723 | bfd_elf_reloc_symbol_deleted_p, | |
12724 | &cookie)) | |
12725 | ret = TRUE; | |
5241d853 | 12726 | fini_reloc_cookie_rels (&cookie, eh); |
90061c33 | 12727 | eh = bfd_get_next_section_by_name (eh); |
c152c796 AM |
12728 | } |
12729 | ||
12730 | if (bed->elf_backend_discard_info != NULL | |
12731 | && (*bed->elf_backend_discard_info) (abfd, &cookie, info)) | |
12732 | ret = TRUE; | |
12733 | ||
5241d853 | 12734 | fini_reloc_cookie (&cookie, abfd); |
c152c796 | 12735 | } |
ca92cecb | 12736 | _bfd_elf_end_eh_frame_parsing (info); |
c152c796 AM |
12737 | |
12738 | if (info->eh_frame_hdr | |
12739 | && !info->relocatable | |
12740 | && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info)) | |
12741 | ret = TRUE; | |
12742 | ||
12743 | return ret; | |
12744 | } | |
082b7297 | 12745 | |
43e1669b | 12746 | bfd_boolean |
0c511000 | 12747 | _bfd_elf_section_already_linked (bfd *abfd, |
c77ec726 | 12748 | asection *sec, |
c0f00686 | 12749 | struct bfd_link_info *info) |
082b7297 L |
12750 | { |
12751 | flagword flags; | |
c77ec726 | 12752 | const char *name, *key; |
082b7297 L |
12753 | struct bfd_section_already_linked *l; |
12754 | struct bfd_section_already_linked_hash_entry *already_linked_list; | |
0c511000 | 12755 | |
c77ec726 AM |
12756 | if (sec->output_section == bfd_abs_section_ptr) |
12757 | return FALSE; | |
0c511000 | 12758 | |
c77ec726 | 12759 | flags = sec->flags; |
0c511000 | 12760 | |
c77ec726 AM |
12761 | /* Return if it isn't a linkonce section. A comdat group section |
12762 | also has SEC_LINK_ONCE set. */ | |
12763 | if ((flags & SEC_LINK_ONCE) == 0) | |
12764 | return FALSE; | |
0c511000 | 12765 | |
c77ec726 AM |
12766 | /* Don't put group member sections on our list of already linked |
12767 | sections. They are handled as a group via their group section. */ | |
12768 | if (elf_sec_group (sec) != NULL) | |
12769 | return FALSE; | |
0c511000 | 12770 | |
c77ec726 AM |
12771 | /* For a SHT_GROUP section, use the group signature as the key. */ |
12772 | name = sec->name; | |
12773 | if ((flags & SEC_GROUP) != 0 | |
12774 | && elf_next_in_group (sec) != NULL | |
12775 | && elf_group_name (elf_next_in_group (sec)) != NULL) | |
12776 | key = elf_group_name (elf_next_in_group (sec)); | |
12777 | else | |
12778 | { | |
12779 | /* Otherwise we should have a .gnu.linkonce.<type>.<key> section. */ | |
0c511000 | 12780 | if (CONST_STRNEQ (name, ".gnu.linkonce.") |
c77ec726 AM |
12781 | && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL) |
12782 | key++; | |
0c511000 | 12783 | else |
c77ec726 AM |
12784 | /* Must be a user linkonce section that doesn't follow gcc's |
12785 | naming convention. In this case we won't be matching | |
12786 | single member groups. */ | |
12787 | key = name; | |
0c511000 | 12788 | } |
6d2cd210 | 12789 | |
c77ec726 | 12790 | already_linked_list = bfd_section_already_linked_table_lookup (key); |
082b7297 L |
12791 | |
12792 | for (l = already_linked_list->entry; l != NULL; l = l->next) | |
12793 | { | |
c2370991 | 12794 | /* We may have 2 different types of sections on the list: group |
c77ec726 AM |
12795 | sections with a signature of <key> (<key> is some string), |
12796 | and linkonce sections named .gnu.linkonce.<type>.<key>. | |
12797 | Match like sections. LTO plugin sections are an exception. | |
12798 | They are always named .gnu.linkonce.t.<key> and match either | |
12799 | type of section. */ | |
12800 | if (((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP) | |
12801 | && ((flags & SEC_GROUP) != 0 | |
12802 | || strcmp (name, l->sec->name) == 0)) | |
12803 | || (l->sec->owner->flags & BFD_PLUGIN) != 0) | |
082b7297 L |
12804 | { |
12805 | /* The section has already been linked. See if we should | |
6d2cd210 | 12806 | issue a warning. */ |
c77ec726 AM |
12807 | if (!_bfd_handle_already_linked (sec, l, info)) |
12808 | return FALSE; | |
082b7297 | 12809 | |
c77ec726 | 12810 | if (flags & SEC_GROUP) |
3d7f7666 | 12811 | { |
c77ec726 AM |
12812 | asection *first = elf_next_in_group (sec); |
12813 | asection *s = first; | |
3d7f7666 | 12814 | |
c77ec726 | 12815 | while (s != NULL) |
3d7f7666 | 12816 | { |
c77ec726 AM |
12817 | s->output_section = bfd_abs_section_ptr; |
12818 | /* Record which group discards it. */ | |
12819 | s->kept_section = l->sec; | |
12820 | s = elf_next_in_group (s); | |
12821 | /* These lists are circular. */ | |
12822 | if (s == first) | |
12823 | break; | |
3d7f7666 L |
12824 | } |
12825 | } | |
082b7297 | 12826 | |
43e1669b | 12827 | return TRUE; |
082b7297 L |
12828 | } |
12829 | } | |
12830 | ||
c77ec726 AM |
12831 | /* A single member comdat group section may be discarded by a |
12832 | linkonce section and vice versa. */ | |
12833 | if ((flags & SEC_GROUP) != 0) | |
3d7f7666 | 12834 | { |
c77ec726 | 12835 | asection *first = elf_next_in_group (sec); |
c2370991 | 12836 | |
c77ec726 AM |
12837 | if (first != NULL && elf_next_in_group (first) == first) |
12838 | /* Check this single member group against linkonce sections. */ | |
12839 | for (l = already_linked_list->entry; l != NULL; l = l->next) | |
12840 | if ((l->sec->flags & SEC_GROUP) == 0 | |
12841 | && bfd_elf_match_symbols_in_sections (l->sec, first, info)) | |
12842 | { | |
12843 | first->output_section = bfd_abs_section_ptr; | |
12844 | first->kept_section = l->sec; | |
12845 | sec->output_section = bfd_abs_section_ptr; | |
12846 | break; | |
12847 | } | |
12848 | } | |
12849 | else | |
12850 | /* Check this linkonce section against single member groups. */ | |
12851 | for (l = already_linked_list->entry; l != NULL; l = l->next) | |
12852 | if (l->sec->flags & SEC_GROUP) | |
6d2cd210 | 12853 | { |
c77ec726 | 12854 | asection *first = elf_next_in_group (l->sec); |
6d2cd210 | 12855 | |
c77ec726 AM |
12856 | if (first != NULL |
12857 | && elf_next_in_group (first) == first | |
12858 | && bfd_elf_match_symbols_in_sections (first, sec, info)) | |
12859 | { | |
12860 | sec->output_section = bfd_abs_section_ptr; | |
12861 | sec->kept_section = first; | |
12862 | break; | |
12863 | } | |
6d2cd210 | 12864 | } |
0c511000 | 12865 | |
c77ec726 AM |
12866 | /* Do not complain on unresolved relocations in `.gnu.linkonce.r.F' |
12867 | referencing its discarded `.gnu.linkonce.t.F' counterpart - g++-3.4 | |
12868 | specific as g++-4.x is using COMDAT groups (without the `.gnu.linkonce' | |
12869 | prefix) instead. `.gnu.linkonce.r.*' were the `.rodata' part of its | |
12870 | matching `.gnu.linkonce.t.*'. If `.gnu.linkonce.r.F' is not discarded | |
12871 | but its `.gnu.linkonce.t.F' is discarded means we chose one-only | |
12872 | `.gnu.linkonce.t.F' section from a different bfd not requiring any | |
12873 | `.gnu.linkonce.r.F'. Thus `.gnu.linkonce.r.F' should be discarded. | |
12874 | The reverse order cannot happen as there is never a bfd with only the | |
12875 | `.gnu.linkonce.r.F' section. The order of sections in a bfd does not | |
12876 | matter as here were are looking only for cross-bfd sections. */ | |
12877 | ||
12878 | if ((flags & SEC_GROUP) == 0 && CONST_STRNEQ (name, ".gnu.linkonce.r.")) | |
12879 | for (l = already_linked_list->entry; l != NULL; l = l->next) | |
12880 | if ((l->sec->flags & SEC_GROUP) == 0 | |
12881 | && CONST_STRNEQ (l->sec->name, ".gnu.linkonce.t.")) | |
12882 | { | |
12883 | if (abfd != l->sec->owner) | |
12884 | sec->output_section = bfd_abs_section_ptr; | |
12885 | break; | |
12886 | } | |
80c29487 | 12887 | |
082b7297 | 12888 | /* This is the first section with this name. Record it. */ |
c77ec726 | 12889 | if (!bfd_section_already_linked_table_insert (already_linked_list, sec)) |
bb6198d2 | 12890 | info->callbacks->einfo (_("%F%P: already_linked_table: %E\n")); |
c77ec726 | 12891 | return sec->output_section == bfd_abs_section_ptr; |
082b7297 | 12892 | } |
81e1b023 | 12893 | |
a4d8e49b L |
12894 | bfd_boolean |
12895 | _bfd_elf_common_definition (Elf_Internal_Sym *sym) | |
12896 | { | |
12897 | return sym->st_shndx == SHN_COMMON; | |
12898 | } | |
12899 | ||
12900 | unsigned int | |
12901 | _bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED) | |
12902 | { | |
12903 | return SHN_COMMON; | |
12904 | } | |
12905 | ||
12906 | asection * | |
12907 | _bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED) | |
12908 | { | |
12909 | return bfd_com_section_ptr; | |
12910 | } | |
10455f89 HPN |
12911 | |
12912 | bfd_vma | |
12913 | _bfd_elf_default_got_elt_size (bfd *abfd, | |
12914 | struct bfd_link_info *info ATTRIBUTE_UNUSED, | |
12915 | struct elf_link_hash_entry *h ATTRIBUTE_UNUSED, | |
12916 | bfd *ibfd ATTRIBUTE_UNUSED, | |
12917 | unsigned long symndx ATTRIBUTE_UNUSED) | |
12918 | { | |
12919 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
12920 | return bed->s->arch_size / 8; | |
12921 | } | |
83bac4b0 NC |
12922 | |
12923 | /* Routines to support the creation of dynamic relocs. */ | |
12924 | ||
83bac4b0 NC |
12925 | /* Returns the name of the dynamic reloc section associated with SEC. */ |
12926 | ||
12927 | static const char * | |
12928 | get_dynamic_reloc_section_name (bfd * abfd, | |
12929 | asection * sec, | |
12930 | bfd_boolean is_rela) | |
12931 | { | |
ddcf1fcf BS |
12932 | char *name; |
12933 | const char *old_name = bfd_get_section_name (NULL, sec); | |
12934 | const char *prefix = is_rela ? ".rela" : ".rel"; | |
83bac4b0 | 12935 | |
ddcf1fcf | 12936 | if (old_name == NULL) |
83bac4b0 NC |
12937 | return NULL; |
12938 | ||
ddcf1fcf | 12939 | name = bfd_alloc (abfd, strlen (prefix) + strlen (old_name) + 1); |
68ffbac6 | 12940 | sprintf (name, "%s%s", prefix, old_name); |
83bac4b0 NC |
12941 | |
12942 | return name; | |
12943 | } | |
12944 | ||
12945 | /* Returns the dynamic reloc section associated with SEC. | |
12946 | If necessary compute the name of the dynamic reloc section based | |
12947 | on SEC's name (looked up in ABFD's string table) and the setting | |
12948 | of IS_RELA. */ | |
12949 | ||
12950 | asection * | |
12951 | _bfd_elf_get_dynamic_reloc_section (bfd * abfd, | |
12952 | asection * sec, | |
12953 | bfd_boolean is_rela) | |
12954 | { | |
12955 | asection * reloc_sec = elf_section_data (sec)->sreloc; | |
12956 | ||
12957 | if (reloc_sec == NULL) | |
12958 | { | |
12959 | const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela); | |
12960 | ||
12961 | if (name != NULL) | |
12962 | { | |
3d4d4302 | 12963 | reloc_sec = bfd_get_linker_section (abfd, name); |
83bac4b0 NC |
12964 | |
12965 | if (reloc_sec != NULL) | |
12966 | elf_section_data (sec)->sreloc = reloc_sec; | |
12967 | } | |
12968 | } | |
12969 | ||
12970 | return reloc_sec; | |
12971 | } | |
12972 | ||
12973 | /* Returns the dynamic reloc section associated with SEC. If the | |
12974 | section does not exist it is created and attached to the DYNOBJ | |
12975 | bfd and stored in the SRELOC field of SEC's elf_section_data | |
12976 | structure. | |
f8076f98 | 12977 | |
83bac4b0 NC |
12978 | ALIGNMENT is the alignment for the newly created section and |
12979 | IS_RELA defines whether the name should be .rela.<SEC's name> | |
12980 | or .rel.<SEC's name>. The section name is looked up in the | |
12981 | string table associated with ABFD. */ | |
12982 | ||
12983 | asection * | |
12984 | _bfd_elf_make_dynamic_reloc_section (asection * sec, | |
12985 | bfd * dynobj, | |
12986 | unsigned int alignment, | |
12987 | bfd * abfd, | |
12988 | bfd_boolean is_rela) | |
12989 | { | |
12990 | asection * reloc_sec = elf_section_data (sec)->sreloc; | |
12991 | ||
12992 | if (reloc_sec == NULL) | |
12993 | { | |
12994 | const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela); | |
12995 | ||
12996 | if (name == NULL) | |
12997 | return NULL; | |
12998 | ||
3d4d4302 | 12999 | reloc_sec = bfd_get_linker_section (dynobj, name); |
83bac4b0 NC |
13000 | |
13001 | if (reloc_sec == NULL) | |
13002 | { | |
3d4d4302 AM |
13003 | flagword flags = (SEC_HAS_CONTENTS | SEC_READONLY |
13004 | | SEC_IN_MEMORY | SEC_LINKER_CREATED); | |
83bac4b0 NC |
13005 | if ((sec->flags & SEC_ALLOC) != 0) |
13006 | flags |= SEC_ALLOC | SEC_LOAD; | |
13007 | ||
3d4d4302 | 13008 | reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags); |
83bac4b0 NC |
13009 | if (reloc_sec != NULL) |
13010 | { | |
8877b5e5 AM |
13011 | /* _bfd_elf_get_sec_type_attr chooses a section type by |
13012 | name. Override as it may be wrong, eg. for a user | |
13013 | section named "auto" we'll get ".relauto" which is | |
13014 | seen to be a .rela section. */ | |
13015 | elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL; | |
83bac4b0 NC |
13016 | if (! bfd_set_section_alignment (dynobj, reloc_sec, alignment)) |
13017 | reloc_sec = NULL; | |
13018 | } | |
13019 | } | |
13020 | ||
13021 | elf_section_data (sec)->sreloc = reloc_sec; | |
13022 | } | |
13023 | ||
13024 | return reloc_sec; | |
13025 | } | |
1338dd10 PB |
13026 | |
13027 | /* Copy the ELF symbol type associated with a linker hash entry. */ | |
13028 | void | |
13029 | _bfd_elf_copy_link_hash_symbol_type (bfd *abfd ATTRIBUTE_UNUSED, | |
13030 | struct bfd_link_hash_entry * hdest, | |
13031 | struct bfd_link_hash_entry * hsrc) | |
13032 | { | |
13033 | struct elf_link_hash_entry *ehdest = (struct elf_link_hash_entry *)hdest; | |
13034 | struct elf_link_hash_entry *ehsrc = (struct elf_link_hash_entry *)hsrc; | |
13035 | ||
13036 | ehdest->type = ehsrc->type; | |
35fc36a8 | 13037 | ehdest->target_internal = ehsrc->target_internal; |
1338dd10 | 13038 | } |
351f65ca L |
13039 | |
13040 | /* Append a RELA relocation REL to section S in BFD. */ | |
13041 | ||
13042 | void | |
13043 | elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel) | |
13044 | { | |
13045 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
13046 | bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela); | |
13047 | BFD_ASSERT (loc + bed->s->sizeof_rela <= s->contents + s->size); | |
13048 | bed->s->swap_reloca_out (abfd, rel, loc); | |
13049 | } | |
13050 | ||
13051 | /* Append a REL relocation REL to section S in BFD. */ | |
13052 | ||
13053 | void | |
13054 | elf_append_rel (bfd *abfd, asection *s, Elf_Internal_Rela *rel) | |
13055 | { | |
13056 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
13057 | bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rel); | |
13058 | BFD_ASSERT (loc + bed->s->sizeof_rel <= s->contents + s->size); | |
59d6ffb2 | 13059 | bed->s->swap_reloc_out (abfd, rel, loc); |
351f65ca | 13060 | } |