]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/linker.c
[gdb/symtab] Work around PR gas/29517, dwarf2 case
[thirdparty/binutils-gdb.git] / bfd / linker.c
CommitLineData
252b5132 1/* linker.c -- BFD linker routines
fd67aa11 2 Copyright (C) 1993-2024 Free Software Foundation, Inc.
252b5132
RH
3 Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support
4
5ed6aba4 5 This file is part of BFD, the Binary File Descriptor library.
252b5132 6
5ed6aba4
NC
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
cd123cb7 9 the Free Software Foundation; either version 3 of the License, or
5ed6aba4 10 (at your option) any later version.
252b5132 11
5ed6aba4
NC
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
252b5132 16
5ed6aba4
NC
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
cd123cb7
NC
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
252b5132 21
252b5132 22#include "sysdep.h"
3db64b00 23#include "bfd.h"
252b5132
RH
24#include "libbfd.h"
25#include "bfdlink.h"
26#include "genlink.h"
27
28/*
29SECTION
30 Linker Functions
31
32@cindex Linker
33 The linker uses three special entry points in the BFD target
34 vector. It is not necessary to write special routines for
35 these entry points when creating a new BFD back end, since
36 generic versions are provided. However, writing them can
37 speed up linking and make it use significantly less runtime
38 memory.
39
40 The first routine creates a hash table used by the other
41 routines. The second routine adds the symbols from an object
42 file to the hash table. The third routine takes all the
43 object files and links them together to create the output
44 file. These routines are designed so that the linker proper
45 does not need to know anything about the symbols in the object
46 files that it is linking. The linker merely arranges the
47 sections as directed by the linker script and lets BFD handle
48 the details of symbols and relocs.
49
50 The second routine and third routines are passed a pointer to
51 a <<struct bfd_link_info>> structure (defined in
52 <<bfdlink.h>>) which holds information relevant to the link,
53 including the linker hash table (which was created by the
54 first routine) and a set of callback functions to the linker
55 proper.
56
57 The generic linker routines are in <<linker.c>>, and use the
58 header file <<genlink.h>>. As of this writing, the only back
59 ends which have implemented versions of these routines are
60 a.out (in <<aoutx.h>>) and ECOFF (in <<ecoff.c>>). The a.out
61 routines are used as examples throughout this section.
62
509945ae 63@menu
252b5132
RH
64@* Creating a Linker Hash Table::
65@* Adding Symbols to the Hash Table::
66@* Performing the Final Link::
67@end menu
68
69INODE
70Creating a Linker Hash Table, Adding Symbols to the Hash Table, Linker Functions, Linker Functions
71SUBSECTION
72 Creating a linker hash table
73
74@cindex _bfd_link_hash_table_create in target vector
75@cindex target vector (_bfd_link_hash_table_create)
76 The linker routines must create a hash table, which must be
77 derived from <<struct bfd_link_hash_table>> described in
dc1bc0c9 78 <<bfdlink.c>>. @xref{Hash Tables}, for information on how to
252b5132
RH
79 create a derived hash table. This entry point is called using
80 the target vector of the linker output file.
81
82 The <<_bfd_link_hash_table_create>> entry point must allocate
83 and initialize an instance of the desired hash table. If the
84 back end does not require any additional information to be
85 stored with the entries in the hash table, the entry point may
86 simply create a <<struct bfd_link_hash_table>>. Most likely,
87 however, some additional information will be needed.
88
89 For example, with each entry in the hash table the a.out
90 linker keeps the index the symbol has in the final output file
1049f94e 91 (this index number is used so that when doing a relocatable
252b5132
RH
92 link the symbol index used in the output file can be quickly
93 filled in when copying over a reloc). The a.out linker code
94 defines the required structures and functions for a hash table
95 derived from <<struct bfd_link_hash_table>>. The a.out linker
96 hash table is created by the function
97 <<NAME(aout,link_hash_table_create)>>; it simply allocates
98 space for the hash table, initializes it, and returns a
99 pointer to it.
100
101 When writing the linker routines for a new back end, you will
102 generally not know exactly which fields will be required until
103 you have finished. You should simply create a new hash table
104 which defines no additional fields, and then simply add fields
105 as they become necessary.
106
107INODE
108Adding Symbols to the Hash Table, Performing the Final Link, Creating a Linker Hash Table, Linker Functions
109SUBSECTION
110 Adding symbols to the hash table
111
112@cindex _bfd_link_add_symbols in target vector
113@cindex target vector (_bfd_link_add_symbols)
114 The linker proper will call the <<_bfd_link_add_symbols>>
115 entry point for each object file or archive which is to be
116 linked (typically these are the files named on the command
117 line, but some may also come from the linker script). The
118 entry point is responsible for examining the file. For an
119 object file, BFD must add any relevant symbol information to
120 the hash table. For an archive, BFD must determine which
121 elements of the archive should be used and adding them to the
122 link.
123
124 The a.out version of this entry point is
125 <<NAME(aout,link_add_symbols)>>.
126
127@menu
128@* Differing file formats::
129@* Adding symbols from an object file::
130@* Adding symbols from an archive::
131@end menu
132
133INODE
134Differing file formats, Adding symbols from an object file, Adding Symbols to the Hash Table, Adding Symbols to the Hash Table
135SUBSUBSECTION
136 Differing file formats
137
138 Normally all the files involved in a link will be of the same
139 format, but it is also possible to link together different
140 format object files, and the back end must support that. The
141 <<_bfd_link_add_symbols>> entry point is called via the target
142 vector of the file to be added. This has an important
143 consequence: the function may not assume that the hash table
144 is the type created by the corresponding
145 <<_bfd_link_hash_table_create>> vector. All the
146 <<_bfd_link_add_symbols>> function can assume about the hash
147 table is that it is derived from <<struct
148 bfd_link_hash_table>>.
149
150 Sometimes the <<_bfd_link_add_symbols>> function must store
151 some information in the hash table entry to be used by the
f13a99db
AM
152 <<_bfd_final_link>> function. In such a case the output bfd
153 xvec must be checked to make sure that the hash table was
154 created by an object file of the same format.
252b5132
RH
155
156 The <<_bfd_final_link>> routine must be prepared to handle a
157 hash entry without any extra information added by the
158 <<_bfd_link_add_symbols>> function. A hash entry without
159 extra information will also occur when the linker script
160 directs the linker to create a symbol. Note that, regardless
161 of how a hash table entry is added, all the fields will be
162 initialized to some sort of null value by the hash table entry
163 initialization function.
164
165 See <<ecoff_link_add_externals>> for an example of how to
f13a99db 166 check the output bfd before saving information (in this
252b5132
RH
167 case, the ECOFF external symbol debugging information) in a
168 hash table entry.
169
170INODE
171Adding symbols from an object file, Adding symbols from an archive, Differing file formats, Adding Symbols to the Hash Table
172SUBSUBSECTION
173 Adding symbols from an object file
174
175 When the <<_bfd_link_add_symbols>> routine is passed an object
176 file, it must add all externally visible symbols in that
177 object file to the hash table. The actual work of adding the
178 symbol to the hash table is normally handled by the function
179 <<_bfd_generic_link_add_one_symbol>>. The
180 <<_bfd_link_add_symbols>> routine is responsible for reading
181 all the symbols from the object file and passing the correct
182 information to <<_bfd_generic_link_add_one_symbol>>.
183
184 The <<_bfd_link_add_symbols>> routine should not use
185 <<bfd_canonicalize_symtab>> to read the symbols. The point of
186 providing this routine is to avoid the overhead of converting
187 the symbols into generic <<asymbol>> structures.
188
189@findex _bfd_generic_link_add_one_symbol
190 <<_bfd_generic_link_add_one_symbol>> handles the details of
191 combining common symbols, warning about multiple definitions,
192 and so forth. It takes arguments which describe the symbol to
193 add, notably symbol flags, a section, and an offset. The
194 symbol flags include such things as <<BSF_WEAK>> or
195 <<BSF_INDIRECT>>. The section is a section in the object
196 file, or something like <<bfd_und_section_ptr>> for an undefined
197 symbol or <<bfd_com_section_ptr>> for a common symbol.
198
199 If the <<_bfd_final_link>> routine is also going to need to
200 read the symbol information, the <<_bfd_link_add_symbols>>
201 routine should save it somewhere attached to the object file
202 BFD. However, the information should only be saved if the
b34976b6 203 <<keep_memory>> field of the <<info>> argument is TRUE, so
252b5132
RH
204 that the <<-no-keep-memory>> linker switch is effective.
205
206 The a.out function which adds symbols from an object file is
207 <<aout_link_add_object_symbols>>, and most of the interesting
208 work is in <<aout_link_add_symbols>>. The latter saves
209 pointers to the hash tables entries created by
210 <<_bfd_generic_link_add_one_symbol>> indexed by symbol number,
211 so that the <<_bfd_final_link>> routine does not have to call
212 the hash table lookup routine to locate the entry.
213
214INODE
215Adding symbols from an archive, , Adding symbols from an object file, Adding Symbols to the Hash Table
216SUBSUBSECTION
217 Adding symbols from an archive
218
219 When the <<_bfd_link_add_symbols>> routine is passed an
220 archive, it must look through the symbols defined by the
221 archive and decide which elements of the archive should be
222 included in the link. For each such element it must call the
223 <<add_archive_element>> linker callback, and it must add the
5d3236ee
DK
224 symbols from the object file to the linker hash table. (The
225 callback may in fact indicate that a replacement BFD should be
226 used, in which case the symbols from that BFD should be added
227 to the linker hash table instead.)
252b5132
RH
228
229@findex _bfd_generic_link_add_archive_symbols
230 In most cases the work of looking through the symbols in the
231 archive should be done by the
13e570f8 232 <<_bfd_generic_link_add_archive_symbols>> function.
252b5132
RH
233 <<_bfd_generic_link_add_archive_symbols>> is passed a function
234 to call to make the final decision about adding an archive
235 element to the link and to do the actual work of adding the
13e570f8 236 symbols to the linker hash table. If the element is to
252b5132
RH
237 be included, the <<add_archive_element>> linker callback
238 routine must be called with the element as an argument, and
5d3236ee 239 the element's symbols must be added to the linker hash table
252b5132 240 just as though the element had itself been passed to the
13e570f8 241 <<_bfd_link_add_symbols>> function.
252b5132
RH
242
243 When the a.out <<_bfd_link_add_symbols>> function receives an
244 archive, it calls <<_bfd_generic_link_add_archive_symbols>>
245 passing <<aout_link_check_archive_element>> as the function
246 argument. <<aout_link_check_archive_element>> calls
247 <<aout_link_check_ar_symbols>>. If the latter decides to add
248 the element (an element is only added if it provides a real,
249 non-common, definition for a previously undefined or common
250 symbol) it calls the <<add_archive_element>> callback and then
251 <<aout_link_check_archive_element>> calls
252 <<aout_link_add_symbols>> to actually add the symbols to the
5d3236ee
DK
253 linker hash table - possibly those of a substitute BFD, if the
254 <<add_archive_element>> callback avails itself of that option.
252b5132
RH
255
256 The ECOFF back end is unusual in that it does not normally
257 call <<_bfd_generic_link_add_archive_symbols>>, because ECOFF
258 archives already contain a hash table of symbols. The ECOFF
259 back end searches the archive itself to avoid the overhead of
260 creating a new hash table.
261
262INODE
263Performing the Final Link, , Adding Symbols to the Hash Table, Linker Functions
264SUBSECTION
265 Performing the final link
266
267@cindex _bfd_link_final_link in target vector
268@cindex target vector (_bfd_final_link)
269 When all the input files have been processed, the linker calls
270 the <<_bfd_final_link>> entry point of the output BFD. This
271 routine is responsible for producing the final output file,
272 which has several aspects. It must relocate the contents of
273 the input sections and copy the data into the output sections.
274 It must build an output symbol table including any local
275 symbols from the input files and the global symbols from the
1049f94e 276 hash table. When producing relocatable output, it must
252b5132
RH
277 modify the input relocs and write them into the output file.
278 There may also be object format dependent work to be done.
279
280 The linker will also call the <<write_object_contents>> entry
281 point when the BFD is closed. The two entry points must work
282 together in order to produce the correct output file.
283
284 The details of how this works are inevitably dependent upon
285 the specific object file format. The a.out
286 <<_bfd_final_link>> routine is <<NAME(aout,final_link)>>.
287
288@menu
289@* Information provided by the linker::
290@* Relocating the section contents::
291@* Writing the symbol table::
292@end menu
293
294INODE
295Information provided by the linker, Relocating the section contents, Performing the Final Link, Performing the Final Link
296SUBSUBSECTION
297 Information provided by the linker
298
299 Before the linker calls the <<_bfd_final_link>> entry point,
300 it sets up some data structures for the function to use.
301
302 The <<input_bfds>> field of the <<bfd_link_info>> structure
303 will point to a list of all the input files included in the
c72f2fb2 304 link. These files are linked through the <<link.next>> field
252b5132
RH
305 of the <<bfd>> structure.
306
307 Each section in the output file will have a list of
8423293d 308 <<link_order>> structures attached to the <<map_head.link_order>>
252b5132
RH
309 field (the <<link_order>> structure is defined in
310 <<bfdlink.h>>). These structures describe how to create the
311 contents of the output section in terms of the contents of
312 various input sections, fill constants, and, eventually, other
313 types of information. They also describe relocs that must be
314 created by the BFD backend, but do not correspond to any input
315 file; this is used to support -Ur, which builds constructors
1049f94e 316 while generating a relocatable object file.
252b5132
RH
317
318INODE
319Relocating the section contents, Writing the symbol table, Information provided by the linker, Performing the Final Link
320SUBSUBSECTION
321 Relocating the section contents
322
323 The <<_bfd_final_link>> function should look through the
324 <<link_order>> structures attached to each section of the
325 output file. Each <<link_order>> structure should either be
326 handled specially, or it should be passed to the function
327 <<_bfd_default_link_order>> which will do the right thing
328 (<<_bfd_default_link_order>> is defined in <<linker.c>>).
329
330 For efficiency, a <<link_order>> of type
331 <<bfd_indirect_link_order>> whose associated section belongs
332 to a BFD of the same format as the output BFD must be handled
333 specially. This type of <<link_order>> describes part of an
334 output section in terms of a section belonging to one of the
335 input files. The <<_bfd_final_link>> function should read the
336 contents of the section and any associated relocs, apply the
337 relocs to the section contents, and write out the modified
1049f94e 338 section contents. If performing a relocatable link, the
252b5132
RH
339 relocs themselves must also be modified and written out.
340
341@findex _bfd_relocate_contents
342@findex _bfd_final_link_relocate
343 The functions <<_bfd_relocate_contents>> and
344 <<_bfd_final_link_relocate>> provide some general support for
345 performing the actual relocations, notably overflow checking.
346 Their arguments include information about the symbol the
347 relocation is against and a <<reloc_howto_type>> argument
348 which describes the relocation to perform. These functions
349 are defined in <<reloc.c>>.
350
351 The a.out function which handles reading, relocating, and
352 writing section contents is <<aout_link_input_section>>. The
353 actual relocation is done in <<aout_link_input_section_std>>
354 and <<aout_link_input_section_ext>>.
355
356INODE
357Writing the symbol table, , Relocating the section contents, Performing the Final Link
358SUBSUBSECTION
359 Writing the symbol table
360
361 The <<_bfd_final_link>> function must gather all the symbols
362 in the input files and write them out. It must also write out
363 all the symbols in the global hash table. This must be
364 controlled by the <<strip>> and <<discard>> fields of the
365 <<bfd_link_info>> structure.
366
367 The local symbols of the input files will not have been
368 entered into the linker hash table. The <<_bfd_final_link>>
369 routine must consider each input file and include the symbols
370 in the output file. It may be convenient to do this when
371 looking through the <<link_order>> structures, or it may be
372 done by stepping through the <<input_bfds>> list.
373
374 The <<_bfd_final_link>> routine must also traverse the global
375 hash table to gather all the externally visible symbols. It
376 is possible that most of the externally visible symbols may be
377 written out when considering the symbols of each input file,
378 but it is still necessary to traverse the hash table since the
379 linker script may have defined some symbols that are not in
380 any of the input files.
381
382 The <<strip>> field of the <<bfd_link_info>> structure
383 controls which symbols are written out. The possible values
384 are listed in <<bfdlink.h>>. If the value is <<strip_some>>,
385 then the <<keep_hash>> field of the <<bfd_link_info>>
386 structure is a hash table of symbols to keep; each symbol
387 should be looked up in this hash table, and only symbols which
388 are present should be included in the output file.
389
390 If the <<strip>> field of the <<bfd_link_info>> structure
391 permits local symbols to be written out, the <<discard>> field
392 is used to further controls which local symbols are included
393 in the output file. If the value is <<discard_l>>, then all
394 local symbols which begin with a certain prefix are discarded;
395 this is controlled by the <<bfd_is_local_label_name>> entry point.
396
397 The a.out backend handles symbols by calling
398 <<aout_link_write_symbols>> on each input BFD and then
399 traversing the global hash table with the function
400 <<aout_link_write_other_symbol>>. It builds a string table
401 while writing out the symbols, which is written to the output
402 file at the end of <<NAME(aout,final_link)>>.
403*/
404
0a1b45a2 405static bool generic_link_add_object_symbols
b9fc2576 406 (bfd *, struct bfd_link_info *);
0a1b45a2 407static bool generic_link_check_archive_element
13e570f8 408 (bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *, const char *,
0a1b45a2
AM
409 bool *);
410static bool generic_link_add_symbol_list
b9fc2576 411 (bfd *, struct bfd_link_info *, bfd_size_type count, asymbol **);
0a1b45a2 412static bool generic_add_output_symbol
c58b9523 413 (bfd *, size_t *psymalloc, asymbol *);
0a1b45a2 414static bool default_data_link_order
c58b9523 415 (bfd *, struct bfd_link_info *, asection *, struct bfd_link_order *);
0a1b45a2 416static bool default_indirect_link_order
c58b9523 417 (bfd *, struct bfd_link_info *, asection *, struct bfd_link_order *,
0a1b45a2 418 bool);
252b5132
RH
419
420/* The link hash table structure is defined in bfdlink.h. It provides
421 a base hash table which the backend specific hash tables are built
422 upon. */
423
424/* Routine to create an entry in the link hash table. */
425
426struct bfd_hash_entry *
c58b9523
AM
427_bfd_link_hash_newfunc (struct bfd_hash_entry *entry,
428 struct bfd_hash_table *table,
429 const char *string)
252b5132 430{
252b5132
RH
431 /* Allocate the structure if it has not already been allocated by a
432 subclass. */
51b64d56
AM
433 if (entry == NULL)
434 {
a50b1753 435 entry = (struct bfd_hash_entry *)
07d6d2b8 436 bfd_hash_allocate (table, sizeof (struct bfd_link_hash_entry));
51b64d56
AM
437 if (entry == NULL)
438 return entry;
439 }
252b5132
RH
440
441 /* Call the allocation method of the superclass. */
51b64d56
AM
442 entry = bfd_hash_newfunc (entry, table, string);
443 if (entry)
252b5132 444 {
51b64d56
AM
445 struct bfd_link_hash_entry *h = (struct bfd_link_hash_entry *) entry;
446
252b5132 447 /* Initialize the local fields. */
35ed3f94
AM
448 memset ((char *) &h->root + sizeof (h->root), 0,
449 sizeof (*h) - sizeof (h->root));
252b5132
RH
450 }
451
51b64d56 452 return entry;
252b5132
RH
453}
454
455/* Initialize a link hash table. The BFD argument is the one
456 responsible for creating this table. */
457
0a1b45a2 458bool
c58b9523
AM
459_bfd_link_hash_table_init
460 (struct bfd_link_hash_table *table,
f13a99db 461 bfd *abfd ATTRIBUTE_UNUSED,
c58b9523
AM
462 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
463 struct bfd_hash_table *,
66eb6687
AM
464 const char *),
465 unsigned int entsize)
252b5132 466{
0a1b45a2 467 bool ret;
d495ab0d
AM
468
469 BFD_ASSERT (!abfd->is_linker_output && !abfd->link.hash);
252b5132
RH
470 table->undefs = NULL;
471 table->undefs_tail = NULL;
8ea2e4bd
NC
472 table->type = bfd_link_generic_hash_table;
473
d495ab0d
AM
474 ret = bfd_hash_table_init (&table->table, newfunc, entsize);
475 if (ret)
476 {
477 /* Arrange for destruction of this hash table on closing ABFD. */
478 table->hash_table_free = _bfd_generic_link_hash_table_free;
479 abfd->link.hash = table;
0a1b45a2 480 abfd->is_linker_output = true;
d495ab0d
AM
481 }
482 return ret;
252b5132
RH
483}
484
b34976b6 485/* Look up a symbol in a link hash table. If follow is TRUE, we
252b5132 486 follow bfd_link_hash_indirect and bfd_link_hash_warning links to
d5c928c0
MR
487 the real symbol.
488
489.{* Return TRUE if the symbol described by a linker hash entry H
490. is going to be absolute. Linker-script defined symbols can be
491. converted from absolute to section-relative ones late in the
492. link. Use this macro to correctly determine whether the symbol
493. will actually end up absolute in output. *}
494.#define bfd_is_abs_symbol(H) \
495. (((H)->type == bfd_link_hash_defined \
496. || (H)->type == bfd_link_hash_defweak) \
497. && bfd_is_abs_section ((H)->u.def.section) \
498. && !(H)->rel_from_abs)
499.
500*/
252b5132
RH
501
502struct bfd_link_hash_entry *
c58b9523
AM
503bfd_link_hash_lookup (struct bfd_link_hash_table *table,
504 const char *string,
0a1b45a2
AM
505 bool create,
506 bool copy,
507 bool follow)
252b5132
RH
508{
509 struct bfd_link_hash_entry *ret;
510
808346fc
NC
511 if (table == NULL || string == NULL)
512 return NULL;
513
252b5132
RH
514 ret = ((struct bfd_link_hash_entry *)
515 bfd_hash_lookup (&table->table, string, create, copy));
516
c58b9523 517 if (follow && ret != NULL)
252b5132
RH
518 {
519 while (ret->type == bfd_link_hash_indirect
520 || ret->type == bfd_link_hash_warning)
521 ret = ret->u.i.link;
522 }
523
524 return ret;
525}
526
527/* Look up a symbol in the main linker hash table if the symbol might
528 be wrapped. This should only be used for references to an
529 undefined symbol, not for definitions of a symbol. */
530
531struct bfd_link_hash_entry *
c58b9523
AM
532bfd_wrapped_link_hash_lookup (bfd *abfd,
533 struct bfd_link_info *info,
534 const char *string,
0a1b45a2
AM
535 bool create,
536 bool copy,
537 bool follow)
252b5132 538{
986f0783 539 size_t amt;
dc810e39 540
252b5132
RH
541 if (info->wrap_hash != NULL)
542 {
543 const char *l;
b9cf773d 544 char prefix = '\0';
252b5132
RH
545
546 l = string;
8c8145a4
AM
547 if (*l
548 && (*l == bfd_get_symbol_leading_char (abfd)
549 || *l == info->wrap_char))
b9cf773d
AM
550 {
551 prefix = *l;
552 ++l;
553 }
252b5132
RH
554
555#undef WRAP
556#define WRAP "__wrap_"
557
0a1b45a2 558 if (bfd_hash_lookup (info->wrap_hash, l, false, false) != NULL)
252b5132
RH
559 {
560 char *n;
561 struct bfd_link_hash_entry *h;
562
563 /* This symbol is being wrapped. We want to replace all
07d6d2b8 564 references to SYM with references to __wrap_SYM. */
252b5132 565
dc810e39 566 amt = strlen (l) + sizeof WRAP + 1;
a50b1753 567 n = (char *) bfd_malloc (amt);
252b5132
RH
568 if (n == NULL)
569 return NULL;
570
b9cf773d 571 n[0] = prefix;
252b5132
RH
572 n[1] = '\0';
573 strcat (n, WRAP);
574 strcat (n, l);
0a1b45a2 575 h = bfd_link_hash_lookup (info->hash, n, create, true, follow);
252b5132
RH
576 free (n);
577 return h;
578 }
579
0112cd26 580#undef REAL
252b5132
RH
581#define REAL "__real_"
582
583 if (*l == '_'
08dedd66 584 && startswith (l, REAL)
252b5132 585 && bfd_hash_lookup (info->wrap_hash, l + sizeof REAL - 1,
0a1b45a2 586 false, false) != NULL)
252b5132
RH
587 {
588 char *n;
589 struct bfd_link_hash_entry *h;
590
591 /* This is a reference to __real_SYM, where SYM is being
07d6d2b8
AM
592 wrapped. We want to replace all references to __real_SYM
593 with references to SYM. */
252b5132 594
dc810e39 595 amt = strlen (l + sizeof REAL - 1) + 2;
a50b1753 596 n = (char *) bfd_malloc (amt);
252b5132
RH
597 if (n == NULL)
598 return NULL;
599
b9cf773d 600 n[0] = prefix;
252b5132
RH
601 n[1] = '\0';
602 strcat (n, l + sizeof REAL - 1);
0a1b45a2 603 h = bfd_link_hash_lookup (info->hash, n, create, true, follow);
18e60f7c
L
604 if (h != NULL)
605 h->ref_real = 1;
252b5132
RH
606 free (n);
607 return h;
608 }
609
610#undef REAL
611 }
612
613 return bfd_link_hash_lookup (info->hash, string, create, copy, follow);
614}
615
8a5da09b
AM
616/* If H is a wrapped symbol, ie. the symbol name starts with "__wrap_"
617 and the remainder is found in wrap_hash, return the real symbol. */
618
619struct bfd_link_hash_entry *
620unwrap_hash_lookup (struct bfd_link_info *info,
621 bfd *input_bfd,
622 struct bfd_link_hash_entry *h)
623{
624 const char *l = h->root.string;
625
8c8145a4
AM
626 if (*l
627 && (*l == bfd_get_symbol_leading_char (input_bfd)
628 || *l == info->wrap_char))
8a5da09b
AM
629 ++l;
630
08dedd66 631 if (startswith (l, WRAP))
8a5da09b
AM
632 {
633 l += sizeof WRAP - 1;
634
0a1b45a2 635 if (bfd_hash_lookup (info->wrap_hash, l, false, false) != NULL)
8a5da09b
AM
636 {
637 char save = 0;
7ed689ad 638 if (l - (sizeof WRAP - 1) != h->root.string)
8a5da09b
AM
639 {
640 --l;
641 save = *l;
642 *(char *) l = *h->root.string;
643 }
0a1b45a2 644 h = bfd_link_hash_lookup (info->hash, l, false, false, false);
8a5da09b
AM
645 if (save)
646 *(char *) l = save;
647 }
648 }
649 return h;
650}
651#undef WRAP
652
7686d77d
AM
653/* Traverse a generic link hash table. Differs from bfd_hash_traverse
654 in the treatment of warning symbols. When warning symbols are
655 created they replace the real symbol, so you don't get to see the
826c3f1e 656 real symbol in a bfd_hash_traverse. This traversal calls func with
7686d77d 657 the real symbol. */
252b5132 658
509945ae 659void
c58b9523 660bfd_link_hash_traverse
7686d77d 661 (struct bfd_link_hash_table *htab,
0a1b45a2 662 bool (*func) (struct bfd_link_hash_entry *, void *),
c58b9523 663 void *info)
252b5132 664{
7686d77d
AM
665 unsigned int i;
666
667 htab->table.frozen = 1;
668 for (i = 0; i < htab->table.size; i++)
669 {
670 struct bfd_link_hash_entry *p;
671
672 p = (struct bfd_link_hash_entry *) htab->table.table[i];
673 for (; p != NULL; p = (struct bfd_link_hash_entry *) p->root.next)
674 if (!(*func) (p->type == bfd_link_hash_warning ? p->u.i.link : p, info))
675 goto out;
676 }
677 out:
678 htab->table.frozen = 0;
252b5132
RH
679}
680
681/* Add a symbol to the linker hash table undefs list. */
682
c58b9523
AM
683void
684bfd_link_add_undef (struct bfd_link_hash_table *table,
685 struct bfd_link_hash_entry *h)
252b5132 686{
f6e332e6 687 BFD_ASSERT (h->u.undef.next == NULL);
c58b9523 688 if (table->undefs_tail != NULL)
f6e332e6 689 table->undefs_tail->u.undef.next = h;
c58b9523 690 if (table->undefs == NULL)
252b5132
RH
691 table->undefs = h;
692 table->undefs_tail = h;
693}
77cfaee6
AM
694
695/* The undefs list was designed so that in normal use we don't need to
696 remove entries. However, if symbols on the list are changed from
697 bfd_link_hash_undefined to either bfd_link_hash_undefweak or
698 bfd_link_hash_new for some reason, then they must be removed from the
699 list. Failure to do so might result in the linker attempting to add
700 the symbol to the list again at a later stage. */
701
702void
703bfd_link_repair_undef_list (struct bfd_link_hash_table *table)
704{
705 struct bfd_link_hash_entry **pun;
706
707 pun = &table->undefs;
708 while (*pun != NULL)
709 {
710 struct bfd_link_hash_entry *h = *pun;
711
712 if (h->type == bfd_link_hash_new
713 || h->type == bfd_link_hash_undefweak)
714 {
715 *pun = h->u.undef.next;
716 h->u.undef.next = NULL;
717 if (h == table->undefs_tail)
718 {
719 if (pun == &table->undefs)
720 table->undefs_tail = NULL;
721 else
722 /* pun points at an u.undef.next field. Go back to
723 the start of the link_hash_entry. */
724 table->undefs_tail = (struct bfd_link_hash_entry *)
725 ((char *) pun - ((char *) &h->u.undef.next - (char *) h));
726 break;
727 }
728 }
729 else
730 pun = &h->u.undef.next;
731 }
732}
252b5132 733\f
19852a2a 734/* Routine to create an entry in a generic link hash table. */
252b5132
RH
735
736struct bfd_hash_entry *
c58b9523
AM
737_bfd_generic_link_hash_newfunc (struct bfd_hash_entry *entry,
738 struct bfd_hash_table *table,
739 const char *string)
252b5132 740{
252b5132
RH
741 /* Allocate the structure if it has not already been allocated by a
742 subclass. */
51b64d56
AM
743 if (entry == NULL)
744 {
a50b1753 745 entry = (struct bfd_hash_entry *)
d45913a0 746 bfd_hash_allocate (table, sizeof (struct generic_link_hash_entry));
51b64d56
AM
747 if (entry == NULL)
748 return entry;
749 }
252b5132
RH
750
751 /* Call the allocation method of the superclass. */
51b64d56
AM
752 entry = _bfd_link_hash_newfunc (entry, table, string);
753 if (entry)
252b5132 754 {
51b64d56
AM
755 struct generic_link_hash_entry *ret;
756
252b5132 757 /* Set local fields. */
51b64d56 758 ret = (struct generic_link_hash_entry *) entry;
0a1b45a2 759 ret->written = false;
252b5132
RH
760 ret->sym = NULL;
761 }
762
51b64d56 763 return entry;
252b5132
RH
764}
765
19852a2a 766/* Create a generic link hash table. */
252b5132
RH
767
768struct bfd_link_hash_table *
c58b9523 769_bfd_generic_link_hash_table_create (bfd *abfd)
252b5132
RH
770{
771 struct generic_link_hash_table *ret;
986f0783 772 size_t amt = sizeof (struct generic_link_hash_table);
252b5132 773
a50b1753 774 ret = (struct generic_link_hash_table *) bfd_malloc (amt);
252b5132 775 if (ret == NULL)
c58b9523 776 return NULL;
252b5132 777 if (! _bfd_link_hash_table_init (&ret->root, abfd,
66eb6687
AM
778 _bfd_generic_link_hash_newfunc,
779 sizeof (struct generic_link_hash_entry)))
252b5132
RH
780 {
781 free (ret);
c58b9523 782 return NULL;
252b5132
RH
783 }
784 return &ret->root;
785}
786
e2d34d7d 787void
d495ab0d 788_bfd_generic_link_hash_table_free (bfd *obfd)
e2d34d7d 789{
d495ab0d 790 struct generic_link_hash_table *ret;
e2d34d7d 791
d495ab0d
AM
792 BFD_ASSERT (obfd->is_linker_output && obfd->link.hash);
793 ret = (struct generic_link_hash_table *) obfd->link.hash;
e2d34d7d
DJ
794 bfd_hash_table_free (&ret->root.table);
795 free (ret);
d495ab0d 796 obfd->link.hash = NULL;
0a1b45a2 797 obfd->is_linker_output = false;
e2d34d7d
DJ
798}
799
252b5132
RH
800/* Grab the symbols for an object file when doing a generic link. We
801 store the symbols in the outsymbols field. We need to keep them
802 around for the entire link to ensure that we only read them once.
803 If we read them multiple times, we might wind up with relocs and
804 the hash table pointing to different instances of the symbol
805 structure. */
806
0a1b45a2 807bool
5c1d2f5f 808bfd_generic_link_read_symbols (bfd *abfd)
252b5132 809{
c58b9523 810 if (bfd_get_outsymbols (abfd) == NULL)
252b5132
RH
811 {
812 long symsize;
813 long symcount;
814
815 symsize = bfd_get_symtab_upper_bound (abfd);
816 if (symsize < 0)
0a1b45a2 817 return false;
ed48ec2e 818 abfd->outsymbols = bfd_alloc (abfd, symsize);
252b5132 819 if (bfd_get_outsymbols (abfd) == NULL && symsize != 0)
0a1b45a2 820 return false;
252b5132
RH
821 symcount = bfd_canonicalize_symtab (abfd, bfd_get_outsymbols (abfd));
822 if (symcount < 0)
0a1b45a2 823 return false;
ed48ec2e 824 abfd->symcount = symcount;
252b5132
RH
825 }
826
0a1b45a2 827 return true;
252b5132
RH
828}
829\f
2d653fc7
AM
830/* Indicate that we are only retrieving symbol values from this
831 section. We want the symbols to act as though the values in the
832 file are absolute. */
833
834void
c58b9523
AM
835_bfd_generic_link_just_syms (asection *sec,
836 struct bfd_link_info *info ATTRIBUTE_UNUSED)
2d653fc7 837{
dbaa2011 838 sec->sec_info_type = SEC_INFO_TYPE_JUST_SYMS;
2d653fc7
AM
839 sec->output_section = bfd_abs_section_ptr;
840 sec->output_offset = sec->vma;
841}
842
bffebb6b
AM
843/* Copy the symbol type and other attributes for a linker script
844 assignment from HSRC to HDEST.
1338dd10
PB
845 The default implementation does nothing. */
846void
847_bfd_generic_copy_link_hash_symbol_type (bfd *abfd ATTRIBUTE_UNUSED,
bffebb6b
AM
848 struct bfd_link_hash_entry *hdest ATTRIBUTE_UNUSED,
849 struct bfd_link_hash_entry *hsrc ATTRIBUTE_UNUSED)
1338dd10
PB
850{
851}
852
b9fc2576
AM
853/* Generic function to add symbols from an object file to the
854 global hash table. */
252b5132 855
0a1b45a2 856bool
b9fc2576 857_bfd_generic_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
252b5132 858{
0a1b45a2 859 bool ret;
252b5132
RH
860
861 switch (bfd_get_format (abfd))
862 {
863 case bfd_object:
b9fc2576 864 ret = generic_link_add_object_symbols (abfd, info);
252b5132
RH
865 break;
866 case bfd_archive:
867 ret = (_bfd_generic_link_add_archive_symbols
b9fc2576 868 (abfd, info, generic_link_check_archive_element));
252b5132
RH
869 break;
870 default:
871 bfd_set_error (bfd_error_wrong_format);
0a1b45a2 872 ret = false;
252b5132
RH
873 }
874
875 return ret;
876}
877
878/* Add symbols from an object file to the global hash table. */
879
0a1b45a2 880static bool
c58b9523 881generic_link_add_object_symbols (bfd *abfd,
b9fc2576 882 struct bfd_link_info *info)
252b5132 883{
dc810e39 884 bfd_size_type symcount;
fc0a2244 885 struct bfd_symbol **outsyms;
dc810e39 886
5c1d2f5f 887 if (!bfd_generic_link_read_symbols (abfd))
0a1b45a2 888 return false;
dc810e39
AM
889 symcount = _bfd_generic_link_get_symcount (abfd);
890 outsyms = _bfd_generic_link_get_symbols (abfd);
b9fc2576 891 return generic_link_add_symbol_list (abfd, info, symcount, outsyms);
252b5132
RH
892}
893\f
252b5132
RH
894/* Generic function to add symbols from an archive file to the global
895 hash file. This function presumes that the archive symbol table
896 has already been read in (this is normally done by the
13e570f8
AM
897 bfd_check_format entry point). It looks through the archive symbol
898 table for symbols that are undefined or common in the linker global
899 symbol hash table. When one is found, the CHECKFN argument is used
900 to see if an object file should be included. This allows targets
901 to customize common symbol behaviour. CHECKFN should set *PNEEDED
902 to TRUE if the object file should be included, and must also call
903 the bfd_link_info add_archive_element callback function and handle
904 adding the symbols to the global hash table. CHECKFN must notice
905 if the callback indicates a substitute BFD, and arrange to add
906 those symbols instead if it does so. CHECKFN should only return
907 FALSE if some sort of error occurs. */
252b5132 908
0a1b45a2 909bool
c58b9523
AM
910_bfd_generic_link_add_archive_symbols
911 (bfd *abfd,
912 struct bfd_link_info *info,
0a1b45a2
AM
913 bool (*checkfn) (bfd *, struct bfd_link_info *,
914 struct bfd_link_hash_entry *, const char *, bool *))
252b5132 915{
0a1b45a2 916 bool loop;
13e570f8
AM
917 bfd_size_type amt;
918 unsigned char *included;
252b5132
RH
919
920 if (! bfd_has_map (abfd))
921 {
922 /* An empty archive is a special case. */
c58b9523 923 if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
0a1b45a2 924 return true;
252b5132 925 bfd_set_error (bfd_error_no_armap);
0a1b45a2 926 return false;
252b5132
RH
927 }
928
13e570f8
AM
929 amt = bfd_ardata (abfd)->symdef_count;
930 if (amt == 0)
0a1b45a2 931 return true;
13e570f8
AM
932 amt *= sizeof (*included);
933 included = (unsigned char *) bfd_zmalloc (amt);
934 if (included == NULL)
0a1b45a2 935 return false;
252b5132 936
13e570f8 937 do
252b5132 938 {
13e570f8
AM
939 carsym *arsyms;
940 carsym *arsym_end;
941 carsym *arsym;
942 unsigned int indx;
943 file_ptr last_ar_offset = -1;
0a1b45a2 944 bool needed = false;
13e570f8
AM
945 bfd *element = NULL;
946
0a1b45a2 947 loop = false;
13e570f8
AM
948 arsyms = bfd_ardata (abfd)->symdefs;
949 arsym_end = arsyms + bfd_ardata (abfd)->symdef_count;
950 for (arsym = arsyms, indx = 0; arsym < arsym_end; arsym++, indx++)
252b5132 951 {
13e570f8
AM
952 struct bfd_link_hash_entry *h;
953 struct bfd_link_hash_entry *undefs_tail;
252b5132 954
13e570f8
AM
955 if (included[indx])
956 continue;
957 if (needed && arsym->file_offset == last_ar_offset)
8ceb7a1b 958 {
13e570f8 959 included[indx] = 1;
8ceb7a1b
CW
960 continue;
961 }
252b5132 962
808346fc
NC
963 if (arsym->name == NULL)
964 goto error_return;
4b24dd1a 965
13e570f8 966 h = bfd_link_hash_lookup (info->hash, arsym->name,
0a1b45a2 967 false, false, true);
252b5132 968
13e570f8
AM
969 if (h == NULL
970 && info->pei386_auto_import
08dedd66 971 && startswith (arsym->name, "__imp_"))
13e570f8 972 h = bfd_link_hash_lookup (info->hash, arsym->name + 6,
0a1b45a2 973 false, false, true);
13e570f8 974 if (h == NULL)
252b5132
RH
975 continue;
976
13e570f8
AM
977 if (h->type != bfd_link_hash_undefined
978 && h->type != bfd_link_hash_common)
252b5132 979 {
13e570f8
AM
980 if (h->type != bfd_link_hash_undefweak)
981 /* Symbol must be defined. Don't check it again. */
982 included[indx] = 1;
252b5132
RH
983 continue;
984 }
985
13e570f8
AM
986 if (last_ar_offset != arsym->file_offset)
987 {
988 last_ar_offset = arsym->file_offset;
6395a102
L
989 element = _bfd_get_elt_at_filepos (abfd, last_ar_offset,
990 info);
13e570f8
AM
991 if (element == NULL
992 || !bfd_check_format (element, bfd_object))
993 goto error_return;
994 }
995
996 undefs_tail = info->hash->undefs_tail;
997
252b5132
RH
998 /* CHECKFN will see if this element should be included, and
999 go ahead and include it if appropriate. */
13e570f8 1000 if (! (*checkfn) (element, info, h, arsym->name, &needed))
252b5132
RH
1001 goto error_return;
1002
13e570f8 1003 if (needed)
252b5132 1004 {
13e570f8
AM
1005 unsigned int mark;
1006
1007 /* Look backward to mark all symbols from this object file
1008 which we have already seen in this pass. */
1009 mark = indx;
1010 do
1011 {
1012 included[mark] = 1;
1013 if (mark == 0)
1014 break;
1015 --mark;
1016 }
1017 while (arsyms[mark].file_offset == last_ar_offset);
1018
1019 if (undefs_tail != info->hash->undefs_tail)
0a1b45a2 1020 loop = true;
252b5132
RH
1021 }
1022 }
13e570f8 1023 } while (loop);
252b5132 1024
13e570f8 1025 free (included);
0a1b45a2 1026 return true;
252b5132
RH
1027
1028 error_return:
13e570f8 1029 free (included);
0a1b45a2 1030 return false;
252b5132
RH
1031}
1032\f
b9fc2576 1033/* See if we should include an archive element. */
252b5132 1034
0a1b45a2 1035static bool
c58b9523
AM
1036generic_link_check_archive_element (bfd *abfd,
1037 struct bfd_link_info *info,
13e570f8
AM
1038 struct bfd_link_hash_entry *h,
1039 const char *name ATTRIBUTE_UNUSED,
0a1b45a2 1040 bool *pneeded)
252b5132
RH
1041{
1042 asymbol **pp, **ppend;
1043
0a1b45a2 1044 *pneeded = false;
252b5132 1045
5c1d2f5f 1046 if (!bfd_generic_link_read_symbols (abfd))
0a1b45a2 1047 return false;
252b5132
RH
1048
1049 pp = _bfd_generic_link_get_symbols (abfd);
1050 ppend = pp + _bfd_generic_link_get_symcount (abfd);
1051 for (; pp < ppend; pp++)
1052 {
1053 asymbol *p;
252b5132
RH
1054
1055 p = *pp;
1056
1057 /* We are only interested in globally visible symbols. */
1058 if (! bfd_is_com_section (p->section)
1059 && (p->flags & (BSF_GLOBAL | BSF_INDIRECT | BSF_WEAK)) == 0)
1060 continue;
1061
1062 /* We are only interested if we know something about this
1063 symbol, and it is undefined or common. An undefined weak
1064 symbol (type bfd_link_hash_undefweak) is not considered to be
1065 a reference when pulling files out of an archive. See the
1066 SVR4 ABI, p. 4-27. */
0a1b45a2
AM
1067 h = bfd_link_hash_lookup (info->hash, bfd_asymbol_name (p), false,
1068 false, true);
c58b9523 1069 if (h == NULL
252b5132
RH
1070 || (h->type != bfd_link_hash_undefined
1071 && h->type != bfd_link_hash_common))
1072 continue;
1073
1074 /* P is a symbol we are looking for. */
1075
02eb0a49
AM
1076 if (! bfd_is_com_section (p->section)
1077 || (h->type == bfd_link_hash_undefined
1078 && h->u.undef.abfd == NULL))
252b5132 1079 {
02eb0a49
AM
1080 /* P is not a common symbol, or an undefined reference was
1081 created from outside BFD such as from a linker -u option.
1082 This object file defines the symbol, so pull it in. */
0a1b45a2 1083 *pneeded = true;
0e144ba7
AM
1084 if (!(*info->callbacks
1085 ->add_archive_element) (info, abfd, bfd_asymbol_name (p),
1086 &abfd))
0a1b45a2 1087 return false;
5d3236ee
DK
1088 /* Potentially, the add_archive_element hook may have set a
1089 substitute BFD for us. */
6eda96bc 1090 return bfd_link_add_symbols (abfd, info);
252b5132
RH
1091 }
1092
1093 /* P is a common symbol. */
1094
1095 if (h->type == bfd_link_hash_undefined)
1096 {
1097 bfd *symbfd;
1098 bfd_vma size;
1099 unsigned int power;
1100
252b5132
RH
1101 /* Turn the symbol into a common symbol but do not link in
1102 the object file. This is how a.out works. Object
1103 formats that require different semantics must implement
1104 this function differently. This symbol is already on the
1105 undefs list. We add the section to a common section
1106 attached to symbfd to ensure that it is in a BFD which
1107 will be linked in. */
02eb0a49 1108 symbfd = h->u.undef.abfd;
252b5132 1109 h->type = bfd_link_hash_common;
a50b1753 1110 h->u.c.p = (struct bfd_link_hash_common_entry *)
c58b9523
AM
1111 bfd_hash_allocate (&info->hash->table,
1112 sizeof (struct bfd_link_hash_common_entry));
252b5132 1113 if (h->u.c.p == NULL)
0a1b45a2 1114 return false;
252b5132
RH
1115
1116 size = bfd_asymbol_value (p);
1117 h->u.c.size = size;
1118
1119 power = bfd_log2 (size);
1120 if (power > 4)
1121 power = 4;
1122 h->u.c.p->alignment_power = power;
1123
1124 if (p->section == bfd_com_section_ptr)
1125 h->u.c.p->section = bfd_make_section_old_way (symbfd, "COMMON");
1126 else
1127 h->u.c.p->section = bfd_make_section_old_way (symbfd,
1128 p->section->name);
02d00247 1129 h->u.c.p->section->flags |= SEC_ALLOC;
252b5132
RH
1130 }
1131 else
1132 {
1133 /* Adjust the size of the common symbol if necessary. This
1134 is how a.out works. Object formats that require
1135 different semantics must implement this function
1136 differently. */
1137 if (bfd_asymbol_value (p) > h->u.c.size)
1138 h->u.c.size = bfd_asymbol_value (p);
1139 }
1140 }
1141
1142 /* This archive element is not needed. */
0a1b45a2 1143 return true;
252b5132
RH
1144}
1145
1146/* Add the symbols from an object file to the global hash table. ABFD
1147 is the object file. INFO is the linker information. SYMBOL_COUNT
b9fc2576 1148 is the number of symbols. SYMBOLS is the list of symbols. */
252b5132 1149
0a1b45a2 1150static bool
c58b9523
AM
1151generic_link_add_symbol_list (bfd *abfd,
1152 struct bfd_link_info *info,
1153 bfd_size_type symbol_count,
b9fc2576 1154 asymbol **symbols)
252b5132
RH
1155{
1156 asymbol **pp, **ppend;
1157
1158 pp = symbols;
1159 ppend = symbols + symbol_count;
1160 for (; pp < ppend; pp++)
1161 {
1162 asymbol *p;
1163
1164 p = *pp;
1165
1166 if ((p->flags & (BSF_INDIRECT
1167 | BSF_WARNING
1168 | BSF_GLOBAL
1169 | BSF_CONSTRUCTOR
1170 | BSF_WEAK)) != 0
e6f7f6d1
AM
1171 || bfd_is_und_section (bfd_asymbol_section (p))
1172 || bfd_is_com_section (bfd_asymbol_section (p))
1173 || bfd_is_ind_section (bfd_asymbol_section (p)))
252b5132
RH
1174 {
1175 const char *name;
1176 const char *string;
1177 struct generic_link_hash_entry *h;
14a793b2 1178 struct bfd_link_hash_entry *bh;
252b5132 1179
f08c429c 1180 string = name = bfd_asymbol_name (p);
252b5132
RH
1181 if (((p->flags & BSF_INDIRECT) != 0
1182 || bfd_is_ind_section (p->section))
1183 && pp + 1 < ppend)
1184 {
1185 pp++;
1186 string = bfd_asymbol_name (*pp);
1187 }
1188 else if ((p->flags & BSF_WARNING) != 0
1189 && pp + 1 < ppend)
1190 {
1191 /* The name of P is actually the warning string, and the
1192 next symbol is the one to warn about. */
252b5132
RH
1193 pp++;
1194 name = bfd_asymbol_name (*pp);
1195 }
252b5132 1196
14a793b2 1197 bh = NULL;
252b5132 1198 if (! (_bfd_generic_link_add_one_symbol
e6f7f6d1 1199 (info, abfd, name, p->flags, bfd_asymbol_section (p),
0a1b45a2
AM
1200 p->value, string, false, false, &bh)))
1201 return false;
14a793b2 1202 h = (struct generic_link_hash_entry *) bh;
252b5132
RH
1203
1204 /* If this is a constructor symbol, and the linker didn't do
07d6d2b8
AM
1205 anything with it, then we want to just pass the symbol
1206 through to the output file. This will happen when
1207 linking with -r. */
252b5132
RH
1208 if ((p->flags & BSF_CONSTRUCTOR) != 0
1209 && (h == NULL || h->root.type == bfd_link_hash_new))
1210 {
1211 p->udata.p = NULL;
1212 continue;
1213 }
1214
1215 /* Save the BFD symbol so that we don't lose any backend
1216 specific information that may be attached to it. We only
1217 want this one if it gives more information than the
1218 existing one; we don't want to replace a defined symbol
1219 with an undefined one. This routine may be called with a
1220 hash table other than the generic hash table, so we only
1221 do this if we are certain that the hash table is a
1222 generic one. */
f13a99db 1223 if (info->output_bfd->xvec == abfd->xvec)
252b5132 1224 {
c58b9523 1225 if (h->sym == NULL
e6f7f6d1
AM
1226 || (! bfd_is_und_section (bfd_asymbol_section (p))
1227 && (! bfd_is_com_section (bfd_asymbol_section (p))
1228 || bfd_is_und_section (bfd_asymbol_section (h->sym)))))
252b5132
RH
1229 {
1230 h->sym = p;
1231 /* BSF_OLD_COMMON is a hack to support COFF reloc
1232 reading, and it should go away when the COFF
1233 linker is switched to the new version. */
e6f7f6d1 1234 if (bfd_is_com_section (bfd_asymbol_section (p)))
252b5132
RH
1235 p->flags |= BSF_OLD_COMMON;
1236 }
1237 }
1238
1239 /* Store a back pointer from the symbol to the hash
1240 table entry for the benefit of relaxation code until
1241 it gets rewritten to not use asymbol structures.
1242 Setting this is also used to check whether these
1243 symbols were set up by the generic linker. */
c58b9523 1244 p->udata.p = h;
252b5132
RH
1245 }
1246 }
1247
0a1b45a2 1248 return true;
252b5132
RH
1249}
1250\f
1251/* We use a state table to deal with adding symbols from an object
1252 file. The first index into the state table describes the symbol
1253 from the object file. The second index into the state table is the
1254 type of the symbol in the hash table. */
1255
1256/* The symbol from the object file is turned into one of these row
1257 values. */
1258
1259enum link_row
1260{
1261 UNDEF_ROW, /* Undefined. */
1262 UNDEFW_ROW, /* Weak undefined. */
1263 DEF_ROW, /* Defined. */
1264 DEFW_ROW, /* Weak defined. */
1265 COMMON_ROW, /* Common. */
1266 INDR_ROW, /* Indirect. */
1267 WARN_ROW, /* Warning. */
1268 SET_ROW /* Member of set. */
1269};
1270
1271/* apparently needed for Hitachi 3050R(HI-UX/WE2)? */
1272#undef FAIL
1273
1274/* The actions to take in the state table. */
1275
1276enum link_action
1277{
509945ae 1278 FAIL, /* Abort. */
252b5132
RH
1279 UND, /* Mark symbol undefined. */
1280 WEAK, /* Mark symbol weak undefined. */
1281 DEF, /* Mark symbol defined. */
1282 DEFW, /* Mark symbol weak defined. */
1283 COM, /* Mark symbol common. */
1284 REF, /* Mark defined symbol referenced. */
1285 CREF, /* Possibly warn about common reference to defined symbol. */
1286 CDEF, /* Define existing common symbol. */
1287 NOACT, /* No action. */
1288 BIG, /* Mark symbol common using largest size. */
1289 MDEF, /* Multiple definition error. */
1290 MIND, /* Multiple indirect symbols. */
1291 IND, /* Make indirect symbol. */
1292 CIND, /* Make indirect symbol from existing common symbol. */
1293 SET, /* Add value to set. */
1294 MWARN, /* Make warning symbol. */
a42e8297 1295 WARN, /* Warn if referenced, else MWARN. */
252b5132
RH
1296 CYCLE, /* Repeat with symbol pointed to. */
1297 REFC, /* Mark indirect symbol referenced and then CYCLE. */
1298 WARNC /* Issue warning and then CYCLE. */
1299};
1300
1301/* The state table itself. The first index is a link_row and the
1302 second index is a bfd_link_hash_type. */
1303
1304static const enum link_action link_action[8][8] =
1305{
1306 /* current\prev new undef undefw def defw com indr warn */
07d6d2b8 1307 /* UNDEF_ROW */ {UND, NOACT, UND, REF, REF, NOACT, REFC, WARNC },
252b5132 1308 /* UNDEFW_ROW */ {WEAK, NOACT, NOACT, REF, REF, NOACT, REFC, WARNC },
726d7d1e 1309 /* DEF_ROW */ {DEF, DEF, DEF, MDEF, DEF, CDEF, MIND, CYCLE },
07d6d2b8 1310 /* DEFW_ROW */ {DEFW, DEFW, DEFW, NOACT, NOACT, NOACT, NOACT, CYCLE },
146f1a87 1311 /* COMMON_ROW */ {COM, COM, COM, CREF, COM, BIG, REFC, WARNC },
252b5132 1312 /* INDR_ROW */ {IND, IND, IND, MDEF, IND, CIND, MIND, CYCLE },
a42e8297 1313 /* WARN_ROW */ {MWARN, WARN, WARN, WARN, WARN, WARN, WARN, NOACT },
252b5132
RH
1314 /* SET_ROW */ {SET, SET, SET, SET, SET, SET, CYCLE, CYCLE }
1315};
1316
1317/* Most of the entries in the LINK_ACTION table are straightforward,
1318 but a few are somewhat subtle.
1319
1320 A reference to an indirect symbol (UNDEF_ROW/indr or
1321 UNDEFW_ROW/indr) is counted as a reference both to the indirect
1322 symbol and to the symbol the indirect symbol points to.
1323
1324 A reference to a warning symbol (UNDEF_ROW/warn or UNDEFW_ROW/warn)
1325 causes the warning to be issued.
1326
1327 A common definition of an indirect symbol (COMMON_ROW/indr) is
1328 treated as a multiple definition error. Likewise for an indirect
1329 definition of a common symbol (INDR_ROW/com).
1330
1331 An indirect definition of a warning (INDR_ROW/warn) does not cause
1332 the warning to be issued.
1333
1334 If a warning is created for an indirect symbol (WARN_ROW/indr) no
1335 warning is created for the symbol the indirect symbol points to.
1336
1337 Adding an entry to a set does not count as a reference to a set,
1338 and no warning is issued (SET_ROW/warn). */
1339
1340/* Return the BFD in which a hash entry has been defined, if known. */
1341
1342static bfd *
c58b9523 1343hash_entry_bfd (struct bfd_link_hash_entry *h)
252b5132
RH
1344{
1345 while (h->type == bfd_link_hash_warning)
1346 h = h->u.i.link;
1347 switch (h->type)
1348 {
1349 default:
1350 return NULL;
1351 case bfd_link_hash_undefined:
1352 case bfd_link_hash_undefweak:
1353 return h->u.undef.abfd;
1354 case bfd_link_hash_defined:
1355 case bfd_link_hash_defweak:
1356 return h->u.def.section->owner;
1357 case bfd_link_hash_common:
1358 return h->u.c.p->section->owner;
1359 }
1360 /*NOTREACHED*/
1361}
1362
1363/* Add a symbol to the global hash table.
1364 ABFD is the BFD the symbol comes from.
1365 NAME is the name of the symbol.
1366 FLAGS is the BSF_* bits associated with the symbol.
1367 SECTION is the section in which the symbol is defined; this may be
1368 bfd_und_section_ptr or bfd_com_section_ptr.
1369 VALUE is the value of the symbol, relative to the section.
1370 STRING is used for either an indirect symbol, in which case it is
1371 the name of the symbol to indirect to, or a warning symbol, in
1372 which case it is the warning string.
b34976b6 1373 COPY is TRUE if NAME or STRING must be copied into locally
252b5132 1374 allocated memory if they need to be saved.
b34976b6 1375 COLLECT is TRUE if we should automatically collect gcc constructor
252b5132
RH
1376 or destructor names as collect2 does.
1377 HASHP, if not NULL, is a place to store the created hash table
1378 entry; if *HASHP is not NULL, the caller has already looked up
509945ae 1379 the hash table entry, and stored it in *HASHP. */
252b5132 1380
0a1b45a2 1381bool
c58b9523
AM
1382_bfd_generic_link_add_one_symbol (struct bfd_link_info *info,
1383 bfd *abfd,
1384 const char *name,
1385 flagword flags,
1386 asection *section,
1387 bfd_vma value,
1388 const char *string,
0a1b45a2
AM
1389 bool copy,
1390 bool collect,
c58b9523 1391 struct bfd_link_hash_entry **hashp)
252b5132
RH
1392{
1393 enum link_row row;
1394 struct bfd_link_hash_entry *h;
46135103 1395 struct bfd_link_hash_entry *inh = NULL;
0a1b45a2 1396 bool cycle;
252b5132 1397
894891db
NC
1398 BFD_ASSERT (section != NULL);
1399
252b5132
RH
1400 if (bfd_is_ind_section (section)
1401 || (flags & BSF_INDIRECT) != 0)
46135103
AM
1402 {
1403 row = INDR_ROW;
1404 /* Create the indirect symbol here. This is for the benefit of
1405 the plugin "notice" function.
1406 STRING is the name of the symbol we want to indirect to. */
0a1b45a2
AM
1407 inh = bfd_wrapped_link_hash_lookup (abfd, info, string, true,
1408 copy, false);
46135103 1409 if (inh == NULL)
0a1b45a2 1410 return false;
46135103 1411 }
252b5132
RH
1412 else if ((flags & BSF_WARNING) != 0)
1413 row = WARN_ROW;
1414 else if ((flags & BSF_CONSTRUCTOR) != 0)
1415 row = SET_ROW;
1416 else if (bfd_is_und_section (section))
1417 {
1418 if ((flags & BSF_WEAK) != 0)
1419 row = UNDEFW_ROW;
1420 else
1421 row = UNDEF_ROW;
1422 }
1423 else if ((flags & BSF_WEAK) != 0)
1424 row = DEFW_ROW;
1425 else if (bfd_is_com_section (section))
b794fc1d
AM
1426 {
1427 row = COMMON_ROW;
b4c555cf 1428 if (!bfd_link_relocatable (info)
cf487499 1429 && name != NULL
b4c555cf
ML
1430 && name[0] == '_'
1431 && name[1] == '_'
1432 && strcmp (name + (name[2] == '_'), "__gnu_lto_slim") == 0)
1433 _bfd_error_handler
1434 (_("%pB: plugin needed to handle lto object"), abfd);
b794fc1d 1435 }
252b5132
RH
1436 else
1437 row = DEF_ROW;
1438
1439 if (hashp != NULL && *hashp != NULL)
1440 h = *hashp;
1441 else
1442 {
1443 if (row == UNDEF_ROW || row == UNDEFW_ROW)
0a1b45a2 1444 h = bfd_wrapped_link_hash_lookup (abfd, info, name, true, copy, false);
252b5132 1445 else
0a1b45a2 1446 h = bfd_link_hash_lookup (info->hash, name, true, copy, false);
252b5132
RH
1447 if (h == NULL)
1448 {
1449 if (hashp != NULL)
1450 *hashp = NULL;
0a1b45a2 1451 return false;
252b5132
RH
1452 }
1453 }
1454
1455 if (info->notice_all
c58b9523 1456 || (info->notice_hash != NULL
0a1b45a2 1457 && bfd_hash_lookup (info->notice_hash, name, false, false) != NULL))
252b5132 1458 {
46135103
AM
1459 if (! (*info->callbacks->notice) (info, h, inh,
1460 abfd, section, value, flags))
0a1b45a2 1461 return false;
252b5132
RH
1462 }
1463
c58b9523 1464 if (hashp != NULL)
252b5132
RH
1465 *hashp = h;
1466
1467 do
1468 {
1469 enum link_action action;
165f707a 1470 int prev;
252b5132 1471
165f707a
AM
1472 prev = h->type;
1473 /* Treat symbols defined by early linker script pass as undefined. */
1474 if (h->ldscript_def)
1475 prev = bfd_link_hash_undefined;
0a1b45a2 1476 cycle = false;
165f707a 1477 action = link_action[(int) row][prev];
252b5132
RH
1478 switch (action)
1479 {
1480 case FAIL:
1481 abort ();
1482
1483 case NOACT:
1484 /* Do nothing. */
1485 break;
1486
1487 case UND:
1488 /* Make a new undefined symbol. */
1489 h->type = bfd_link_hash_undefined;
1490 h->u.undef.abfd = abfd;
1491 bfd_link_add_undef (info->hash, h);
1492 break;
1493
1494 case WEAK:
1495 /* Make a new weak undefined symbol. */
1496 h->type = bfd_link_hash_undefweak;
1497 h->u.undef.abfd = abfd;
1498 break;
1499
1500 case CDEF:
1501 /* We have found a definition for a symbol which was
1502 previously common. */
1503 BFD_ASSERT (h->type == bfd_link_hash_common);
1a72702b
AM
1504 (*info->callbacks->multiple_common) (info, h, abfd,
1505 bfd_link_hash_defined, 0);
252b5132
RH
1506 /* Fall through. */
1507 case DEF:
1508 case DEFW:
1509 {
1510 enum bfd_link_hash_type oldtype;
1511
1512 /* Define a symbol. */
1513 oldtype = h->type;
1514 if (action == DEFW)
1515 h->type = bfd_link_hash_defweak;
1516 else
1517 h->type = bfd_link_hash_defined;
1518 h->u.def.section = section;
1519 h->u.def.value = value;
12b2843a 1520 h->linker_def = 0;
165f707a 1521 h->ldscript_def = 0;
252b5132
RH
1522
1523 /* If we have been asked to, we act like collect2 and
1524 identify all functions that might be global
1525 constructors and destructors and pass them up in a
1526 callback. We only do this for certain object file
1527 types, since many object file types can handle this
1528 automatically. */
1529 if (collect && name[0] == '_')
1530 {
1531 const char *s;
1532
1533 /* A constructor or destructor name starts like this:
1534 _+GLOBAL_[_.$][ID][_.$] where the first [_.$] and
1535 the second are the same character (we accept any
1536 character there, in case a new object file format
1537 comes along with even worse naming restrictions). */
1538
1539#define CONS_PREFIX "GLOBAL_"
1540#define CONS_PREFIX_LEN (sizeof CONS_PREFIX - 1)
1541
1542 s = name + 1;
1543 while (*s == '_')
1544 ++s;
08dedd66 1545 if (s[0] == 'G' && startswith (s, CONS_PREFIX))
252b5132
RH
1546 {
1547 char c;
1548
1549 c = s[CONS_PREFIX_LEN + 1];
1550 if ((c == 'I' || c == 'D')
1551 && s[CONS_PREFIX_LEN] == s[CONS_PREFIX_LEN + 2])
1552 {
1553 /* If this is a definition of a symbol which
07d6d2b8
AM
1554 was previously weakly defined, we are in
1555 trouble. We have already added a
1556 constructor entry for the weak defined
1557 symbol, and now we are trying to add one
1558 for the new symbol. Fortunately, this case
1559 should never arise in practice. */
252b5132
RH
1560 if (oldtype == bfd_link_hash_defweak)
1561 abort ();
1562
1a72702b
AM
1563 (*info->callbacks->constructor) (info, c == 'I',
1564 h->root.string, abfd,
1565 section, value);
252b5132
RH
1566 }
1567 }
1568 }
1569 }
1570
1571 break;
1572
1573 case COM:
1574 /* We have found a common definition for a symbol. */
1575 if (h->type == bfd_link_hash_new)
1576 bfd_link_add_undef (info->hash, h);
1577 h->type = bfd_link_hash_common;
a50b1753 1578 h->u.c.p = (struct bfd_link_hash_common_entry *)
c58b9523
AM
1579 bfd_hash_allocate (&info->hash->table,
1580 sizeof (struct bfd_link_hash_common_entry));
252b5132 1581 if (h->u.c.p == NULL)
0a1b45a2 1582 return false;
252b5132
RH
1583
1584 h->u.c.size = value;
1585
1586 /* Select a default alignment based on the size. This may
07d6d2b8 1587 be overridden by the caller. */
252b5132
RH
1588 {
1589 unsigned int power;
1590
1591 power = bfd_log2 (value);
1592 if (power > 4)
1593 power = 4;
1594 h->u.c.p->alignment_power = power;
1595 }
1596
1597 /* The section of a common symbol is only used if the common
07d6d2b8
AM
1598 symbol is actually allocated. It basically provides a
1599 hook for the linker script to decide which output section
1600 the common symbols should be put in. In most cases, the
1601 section of a common symbol will be bfd_com_section_ptr,
1602 the code here will choose a common symbol section named
1603 "COMMON", and the linker script will contain *(COMMON) in
1604 the appropriate place. A few targets use separate common
1605 sections for small symbols, and they require special
1606 handling. */
252b5132
RH
1607 if (section == bfd_com_section_ptr)
1608 {
1609 h->u.c.p->section = bfd_make_section_old_way (abfd, "COMMON");
02d00247 1610 h->u.c.p->section->flags |= SEC_ALLOC;
252b5132
RH
1611 }
1612 else if (section->owner != abfd)
1613 {
1614 h->u.c.p->section = bfd_make_section_old_way (abfd,
1615 section->name);
02d00247 1616 h->u.c.p->section->flags |= SEC_ALLOC;
252b5132
RH
1617 }
1618 else
1619 h->u.c.p->section = section;
12b2843a 1620 h->linker_def = 0;
165f707a 1621 h->ldscript_def = 0;
252b5132
RH
1622 break;
1623
1624 case REF:
1625 /* A reference to a defined symbol. */
f6e332e6
AM
1626 if (h->u.undef.next == NULL && info->hash->undefs_tail != h)
1627 h->u.undef.next = h;
252b5132
RH
1628 break;
1629
1630 case BIG:
1631 /* We have found a common definition for a symbol which
1632 already had a common definition. Use the maximum of the
0a2afbc1 1633 two sizes, and use the section required by the larger symbol. */
252b5132 1634 BFD_ASSERT (h->type == bfd_link_hash_common);
1a72702b
AM
1635 (*info->callbacks->multiple_common) (info, h, abfd,
1636 bfd_link_hash_common, value);
252b5132
RH
1637 if (value > h->u.c.size)
1638 {
1639 unsigned int power;
1640
1641 h->u.c.size = value;
1642
1643 /* Select a default alignment based on the size. This may
1644 be overridden by the caller. */
1645 power = bfd_log2 (value);
1646 if (power > 4)
1647 power = 4;
1648 h->u.c.p->alignment_power = power;
0a2afbc1
JW
1649
1650 /* Some systems have special treatment for small commons,
1651 hence we want to select the section used by the larger
1652 symbol. This makes sure the symbol does not go in a
1653 small common section if it is now too large. */
1654 if (section == bfd_com_section_ptr)
1655 {
1656 h->u.c.p->section
1657 = bfd_make_section_old_way (abfd, "COMMON");
02d00247 1658 h->u.c.p->section->flags |= SEC_ALLOC;
0a2afbc1
JW
1659 }
1660 else if (section->owner != abfd)
1661 {
1662 h->u.c.p->section
1663 = bfd_make_section_old_way (abfd, section->name);
02d00247 1664 h->u.c.p->section->flags |= SEC_ALLOC;
0a2afbc1
JW
1665 }
1666 else
1667 h->u.c.p->section = section;
252b5132
RH
1668 }
1669 break;
1670
1671 case CREF:
24f58f47
AM
1672 /* We have found a common definition for a symbol which
1673 was already defined. */
1a72702b
AM
1674 (*info->callbacks->multiple_common) (info, h, abfd,
1675 bfd_link_hash_common, value);
252b5132
RH
1676 break;
1677
1678 case MIND:
1679 /* Multiple indirect symbols. This is OK if they both point
1680 to the same symbol. */
248b6326
AM
1681 if (h->u.i.link == inh)
1682 break;
726d7d1e
AM
1683 if (h->u.i.link->type == bfd_link_hash_defweak)
1684 {
1685 /* It is also OK to redefine a symbol that indirects to
1686 a weak definition. So for sym@ver -> sym@@ver where
1687 sym@@ver is weak and we have a new strong sym@ver,
1688 redefine sym@@ver. Of course if there exists
1689 sym -> sym@@ver then this also redefines sym. */
1690 h = h->u.i.link;
0a1b45a2 1691 cycle = true;
726d7d1e
AM
1692 break;
1693 }
252b5132
RH
1694 /* Fall through. */
1695 case MDEF:
1696 /* Handle a multiple definition. */
1a72702b
AM
1697 (*info->callbacks->multiple_definition) (info, h,
1698 abfd, section, value);
252b5132
RH
1699 break;
1700
1701 case CIND:
1702 /* Create an indirect symbol from an existing common symbol. */
1703 BFD_ASSERT (h->type == bfd_link_hash_common);
1a72702b
AM
1704 (*info->callbacks->multiple_common) (info, h, abfd,
1705 bfd_link_hash_indirect, 0);
252b5132
RH
1706 /* Fall through. */
1707 case IND:
46135103
AM
1708 if (inh->type == bfd_link_hash_indirect
1709 && inh->u.i.link == h)
1710 {
4eca0228 1711 _bfd_error_handler
695344c0 1712 /* xgettext:c-format */
871b3ab2 1713 (_("%pB: indirect symbol `%s' to `%s' is a loop"),
46135103
AM
1714 abfd, name, string);
1715 bfd_set_error (bfd_error_invalid_operation);
0a1b45a2 1716 return false;
46135103
AM
1717 }
1718 if (inh->type == bfd_link_hash_new)
1719 {
1720 inh->type = bfd_link_hash_undefined;
1721 inh->u.undef.abfd = abfd;
1722 bfd_link_add_undef (info->hash, inh);
1723 }
252b5132 1724
46135103
AM
1725 /* If the indirect symbol has been referenced, we need to
1726 push the reference down to the symbol we are referencing. */
1727 if (h->type != bfd_link_hash_new)
1728 {
1729 /* ??? If inh->type == bfd_link_hash_undefweak this
1730 converts inh to bfd_link_hash_undefined. */
1731 row = UNDEF_ROW;
0a1b45a2 1732 cycle = true;
46135103 1733 }
252b5132 1734
46135103
AM
1735 h->type = bfd_link_hash_indirect;
1736 h->u.i.link = inh;
1737 /* Not setting h = h->u.i.link here means that when cycle is
1738 set above we'll always go to REFC, and then cycle again
1739 to the indirected symbol. This means that any successful
1740 change of an existing symbol to indirect counts as a
1741 reference. ??? That may not be correct when the existing
1742 symbol was defweak. */
252b5132
RH
1743 break;
1744
1745 case SET:
1746 /* Add an entry to a set. */
1a72702b
AM
1747 (*info->callbacks->add_to_set) (info, h, BFD_RELOC_CTOR,
1748 abfd, section, value);
252b5132
RH
1749 break;
1750
1751 case WARNC:
db712946
L
1752 /* Issue a warning and cycle, except when the reference is
1753 in LTO IR. */
1754 if (h->u.i.warning != NULL
1755 && (abfd->flags & BFD_PLUGIN) == 0)
252b5132 1756 {
1a72702b
AM
1757 (*info->callbacks->warning) (info, h->u.i.warning,
1758 h->root.string, abfd, NULL, 0);
252b5132
RH
1759 /* Only issue a warning once. */
1760 h->u.i.warning = NULL;
1761 }
1762 /* Fall through. */
1763 case CYCLE:
1764 /* Try again with the referenced symbol. */
1765 h = h->u.i.link;
0a1b45a2 1766 cycle = true;
252b5132
RH
1767 break;
1768
1769 case REFC:
1770 /* A reference to an indirect symbol. */
f6e332e6
AM
1771 if (h->u.undef.next == NULL && info->hash->undefs_tail != h)
1772 h->u.undef.next = h;
252b5132 1773 h = h->u.i.link;
0a1b45a2 1774 cycle = true;
252b5132
RH
1775 break;
1776
1777 case WARN:
db712946
L
1778 /* Warn if this symbol has been referenced already from non-IR,
1779 otherwise add a warning. */
61f41c3c
AM
1780 if ((!info->lto_plugin_active
1781 && (h->u.undef.next != NULL || info->hash->undefs_tail == h))
bc4e12de 1782 || h->non_ir_ref_regular
4070765b 1783 || h->non_ir_ref_dynamic)
252b5132 1784 {
1a72702b
AM
1785 (*info->callbacks->warning) (info, string, h->root.string,
1786 hash_entry_bfd (h), NULL, 0);
1c320501
NC
1787 /* PR 31067: If garbage collection is enabled then the
1788 referenced symbol may actually be discarded later on.
1789 This could be very confusing to the user. So give them
1790 a hint as to what might be happening. */
1791 if (info->gc_sections)
1792 (*info->callbacks->info)
1793 (_("%P: %pB: note: the message above does not take linker garbage collection into account\n"),
1794 hash_entry_bfd (h));
252b5132
RH
1795 break;
1796 }
1797 /* Fall through. */
1798 case MWARN:
1799 /* Make a warning symbol. */
1800 {
1801 struct bfd_link_hash_entry *sub;
1802
1803 /* STRING is the warning to give. */
1804 sub = ((struct bfd_link_hash_entry *)
1805 ((*info->hash->table.newfunc)
c58b9523 1806 (NULL, &info->hash->table, h->root.string)));
252b5132 1807 if (sub == NULL)
0a1b45a2 1808 return false;
252b5132
RH
1809 *sub = *h;
1810 sub->type = bfd_link_hash_warning;
1811 sub->u.i.link = h;
1812 if (! copy)
1813 sub->u.i.warning = string;
1814 else
1815 {
1816 char *w;
d4c88bbb 1817 size_t len = strlen (string) + 1;
252b5132 1818
a50b1753 1819 w = (char *) bfd_hash_allocate (&info->hash->table, len);
252b5132 1820 if (w == NULL)
0a1b45a2 1821 return false;
d4c88bbb 1822 memcpy (w, string, len);
252b5132
RH
1823 sub->u.i.warning = w;
1824 }
1825
1826 bfd_hash_replace (&info->hash->table,
1827 (struct bfd_hash_entry *) h,
1828 (struct bfd_hash_entry *) sub);
1829 if (hashp != NULL)
1830 *hashp = sub;
1831 }
1832 break;
1833 }
1834 }
1835 while (cycle);
1836
0a1b45a2 1837 return true;
252b5132
RH
1838}
1839\f
1840/* Generic final link routine. */
1841
0a1b45a2 1842bool
c58b9523 1843_bfd_generic_final_link (bfd *abfd, struct bfd_link_info *info)
252b5132
RH
1844{
1845 bfd *sub;
1846 asection *o;
1847 struct bfd_link_order *p;
1848 size_t outsymalloc;
1849 struct generic_write_global_symbol_info wginfo;
1850
ed48ec2e
AM
1851 abfd->outsymbols = NULL;
1852 abfd->symcount = 0;
252b5132
RH
1853 outsymalloc = 0;
1854
1855 /* Mark all sections which will be included in the output file. */
1856 for (o = abfd->sections; o != NULL; o = o->next)
8423293d 1857 for (p = o->map_head.link_order; p != NULL; p = p->next)
252b5132 1858 if (p->type == bfd_indirect_link_order)
0a1b45a2 1859 p->u.indirect.section->linker_mark = true;
252b5132
RH
1860
1861 /* Build the output symbol table. */
c72f2fb2 1862 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
252b5132 1863 if (! _bfd_generic_link_output_symbols (abfd, sub, info, &outsymalloc))
0a1b45a2 1864 return false;
252b5132
RH
1865
1866 /* Accumulate the global symbols. */
1867 wginfo.info = info;
1868 wginfo.output_bfd = abfd;
1869 wginfo.psymalloc = &outsymalloc;
1870 _bfd_generic_link_hash_traverse (_bfd_generic_hash_table (info),
1871 _bfd_generic_link_write_global_symbol,
c58b9523 1872 &wginfo);
252b5132
RH
1873
1874 /* Make sure we have a trailing NULL pointer on OUTSYMBOLS. We
1875 shouldn't really need one, since we have SYMCOUNT, but some old
1876 code still expects one. */
1877 if (! generic_add_output_symbol (abfd, &outsymalloc, NULL))
0a1b45a2 1878 return false;
252b5132 1879
0e1862bb 1880 if (bfd_link_relocatable (info))
252b5132
RH
1881 {
1882 /* Allocate space for the output relocs for each section. */
c58b9523 1883 for (o = abfd->sections; o != NULL; o = o->next)
252b5132
RH
1884 {
1885 o->reloc_count = 0;
8423293d 1886 for (p = o->map_head.link_order; p != NULL; p = p->next)
252b5132
RH
1887 {
1888 if (p->type == bfd_section_reloc_link_order
1889 || p->type == bfd_symbol_reloc_link_order)
1890 ++o->reloc_count;
1891 else if (p->type == bfd_indirect_link_order)
1892 {
1893 asection *input_section;
1894 bfd *input_bfd;
1895 long relsize;
1896 arelent **relocs;
1897 asymbol **symbols;
1898 long reloc_count;
1899
1900 input_section = p->u.indirect.section;
1901 input_bfd = input_section->owner;
1902 relsize = bfd_get_reloc_upper_bound (input_bfd,
1903 input_section);
1904 if (relsize < 0)
0a1b45a2 1905 return false;
a50b1753 1906 relocs = (arelent **) bfd_malloc (relsize);
252b5132 1907 if (!relocs && relsize != 0)
0a1b45a2 1908 return false;
252b5132
RH
1909 symbols = _bfd_generic_link_get_symbols (input_bfd);
1910 reloc_count = bfd_canonicalize_reloc (input_bfd,
1911 input_section,
1912 relocs,
1913 symbols);
5ed6aba4 1914 free (relocs);
252b5132 1915 if (reloc_count < 0)
0a1b45a2 1916 return false;
252b5132
RH
1917 BFD_ASSERT ((unsigned long) reloc_count
1918 == input_section->reloc_count);
1919 o->reloc_count += reloc_count;
252b5132
RH
1920 }
1921 }
1922 if (o->reloc_count > 0)
1923 {
dc810e39
AM
1924 bfd_size_type amt;
1925
1926 amt = o->reloc_count;
1927 amt *= sizeof (arelent *);
a50b1753 1928 o->orelocation = (struct reloc_cache_entry **) bfd_alloc (abfd, amt);
252b5132 1929 if (!o->orelocation)
0a1b45a2 1930 return false;
252b5132
RH
1931 o->flags |= SEC_RELOC;
1932 /* Reset the count so that it can be used as an index
1933 when putting in the output relocs. */
1934 o->reloc_count = 0;
1935 }
1936 }
1937 }
1938
1939 /* Handle all the link order information for the sections. */
c58b9523 1940 for (o = abfd->sections; o != NULL; o = o->next)
252b5132 1941 {
8423293d 1942 for (p = o->map_head.link_order; p != NULL; p = p->next)
252b5132
RH
1943 {
1944 switch (p->type)
1945 {
1946 case bfd_section_reloc_link_order:
1947 case bfd_symbol_reloc_link_order:
1948 if (! _bfd_generic_reloc_link_order (abfd, info, o, p))
0a1b45a2 1949 return false;
252b5132
RH
1950 break;
1951 case bfd_indirect_link_order:
0a1b45a2
AM
1952 if (! default_indirect_link_order (abfd, info, o, p, true))
1953 return false;
252b5132
RH
1954 break;
1955 default:
1956 if (! _bfd_default_link_order (abfd, info, o, p))
0a1b45a2 1957 return false;
252b5132
RH
1958 break;
1959 }
1960 }
1961 }
509945ae 1962
0a1b45a2 1963 return true;
252b5132
RH
1964}
1965
1966/* Add an output symbol to the output BFD. */
1967
0a1b45a2 1968static bool
c58b9523 1969generic_add_output_symbol (bfd *output_bfd, size_t *psymalloc, asymbol *sym)
252b5132
RH
1970{
1971 if (bfd_get_symcount (output_bfd) >= *psymalloc)
1972 {
1973 asymbol **newsyms;
dc810e39 1974 bfd_size_type amt;
252b5132
RH
1975
1976 if (*psymalloc == 0)
1977 *psymalloc = 124;
1978 else
1979 *psymalloc *= 2;
dc810e39
AM
1980 amt = *psymalloc;
1981 amt *= sizeof (asymbol *);
a50b1753 1982 newsyms = (asymbol **) bfd_realloc (bfd_get_outsymbols (output_bfd), amt);
c58b9523 1983 if (newsyms == NULL)
0a1b45a2 1984 return false;
ed48ec2e 1985 output_bfd->outsymbols = newsyms;
252b5132
RH
1986 }
1987
ed48ec2e 1988 output_bfd->outsymbols[output_bfd->symcount] = sym;
252b5132 1989 if (sym != NULL)
ed48ec2e 1990 ++output_bfd->symcount;
252b5132 1991
0a1b45a2 1992 return true;
252b5132
RH
1993}
1994
1995/* Handle the symbols for an input BFD. */
1996
0a1b45a2 1997bool
c58b9523
AM
1998_bfd_generic_link_output_symbols (bfd *output_bfd,
1999 bfd *input_bfd,
2000 struct bfd_link_info *info,
2001 size_t *psymalloc)
252b5132
RH
2002{
2003 asymbol **sym_ptr;
2004 asymbol **sym_end;
2005
5c1d2f5f 2006 if (!bfd_generic_link_read_symbols (input_bfd))
0a1b45a2 2007 return false;
252b5132
RH
2008
2009 /* Create a filename symbol if we are supposed to. */
c58b9523 2010 if (info->create_object_symbols_section != NULL)
252b5132
RH
2011 {
2012 asection *sec;
2013
c58b9523 2014 for (sec = input_bfd->sections; sec != NULL; sec = sec->next)
252b5132
RH
2015 {
2016 if (sec->output_section == info->create_object_symbols_section)
2017 {
2018 asymbol *newsym;
2019
2020 newsym = bfd_make_empty_symbol (input_bfd);
2021 if (!newsym)
0a1b45a2 2022 return false;
765cf5f6 2023 newsym->name = bfd_get_filename (input_bfd);
252b5132
RH
2024 newsym->value = 0;
2025 newsym->flags = BSF_LOCAL | BSF_FILE;
2026 newsym->section = sec;
2027
2028 if (! generic_add_output_symbol (output_bfd, psymalloc,
2029 newsym))
0a1b45a2 2030 return false;
252b5132
RH
2031
2032 break;
2033 }
2034 }
2035 }
2036
2037 /* Adjust the values of the globally visible symbols, and write out
2038 local symbols. */
2039 sym_ptr = _bfd_generic_link_get_symbols (input_bfd);
2040 sym_end = sym_ptr + _bfd_generic_link_get_symcount (input_bfd);
2041 for (; sym_ptr < sym_end; sym_ptr++)
2042 {
2043 asymbol *sym;
2044 struct generic_link_hash_entry *h;
0a1b45a2 2045 bool output;
252b5132 2046
c58b9523 2047 h = NULL;
252b5132
RH
2048 sym = *sym_ptr;
2049 if ((sym->flags & (BSF_INDIRECT
2050 | BSF_WARNING
2051 | BSF_GLOBAL
2052 | BSF_CONSTRUCTOR
2053 | BSF_WEAK)) != 0
e6f7f6d1
AM
2054 || bfd_is_und_section (bfd_asymbol_section (sym))
2055 || bfd_is_com_section (bfd_asymbol_section (sym))
2056 || bfd_is_ind_section (bfd_asymbol_section (sym)))
252b5132
RH
2057 {
2058 if (sym->udata.p != NULL)
a50b1753 2059 h = (struct generic_link_hash_entry *) sym->udata.p;
252b5132
RH
2060 else if ((sym->flags & BSF_CONSTRUCTOR) != 0)
2061 {
2062 /* This case normally means that the main linker code
07d6d2b8
AM
2063 deliberately ignored this constructor symbol. We
2064 should just pass it through. This will screw up if
2065 the constructor symbol is from a different,
2066 non-generic, object file format, but the case will
2067 only arise when linking with -r, which will probably
2068 fail anyhow, since there will be no way to represent
2069 the relocs in the output format being used. */
252b5132
RH
2070 h = NULL;
2071 }
e6f7f6d1 2072 else if (bfd_is_und_section (bfd_asymbol_section (sym)))
252b5132
RH
2073 h = ((struct generic_link_hash_entry *)
2074 bfd_wrapped_link_hash_lookup (output_bfd, info,
2075 bfd_asymbol_name (sym),
0a1b45a2 2076 false, false, true));
252b5132
RH
2077 else
2078 h = _bfd_generic_link_hash_lookup (_bfd_generic_hash_table (info),
2079 bfd_asymbol_name (sym),
0a1b45a2 2080 false, false, true);
252b5132 2081
c58b9523 2082 if (h != NULL)
252b5132
RH
2083 {
2084 /* Force all references to this symbol to point to
2085 the same area in memory. It is possible that
2086 this routine will be called with a hash table
2087 other than a generic hash table, so we double
2088 check that. */
f13a99db 2089 if (info->output_bfd->xvec == input_bfd->xvec)
252b5132 2090 {
c58b9523 2091 if (h->sym != NULL)
252b5132
RH
2092 *sym_ptr = sym = h->sym;
2093 }
2094
2095 switch (h->root.type)
2096 {
2097 default:
2098 case bfd_link_hash_new:
2099 abort ();
2100 case bfd_link_hash_undefined:
2101 break;
2102 case bfd_link_hash_undefweak:
2103 sym->flags |= BSF_WEAK;
2104 break;
2105 case bfd_link_hash_indirect:
2106 h = (struct generic_link_hash_entry *) h->root.u.i.link;
2107 /* fall through */
2108 case bfd_link_hash_defined:
2109 sym->flags |= BSF_GLOBAL;
d5111a0e 2110 sym->flags &=~ (BSF_WEAK | BSF_CONSTRUCTOR);
252b5132
RH
2111 sym->value = h->root.u.def.value;
2112 sym->section = h->root.u.def.section;
2113 break;
2114 case bfd_link_hash_defweak:
2115 sym->flags |= BSF_WEAK;
2116 sym->flags &=~ BSF_CONSTRUCTOR;
2117 sym->value = h->root.u.def.value;
2118 sym->section = h->root.u.def.section;
2119 break;
2120 case bfd_link_hash_common:
2121 sym->value = h->root.u.c.size;
2122 sym->flags |= BSF_GLOBAL;
2123 if (! bfd_is_com_section (sym->section))
2124 {
2125 BFD_ASSERT (bfd_is_und_section (sym->section));
2126 sym->section = bfd_com_section_ptr;
2127 }
2128 /* We do not set the section of the symbol to
2129 h->root.u.c.p->section. That value was saved so
2130 that we would know where to allocate the symbol
2131 if it was defined. In this case the type is
2132 still bfd_link_hash_common, so we did not define
2133 it, so we do not want to use that section. */
2134 break;
2135 }
2136 }
2137 }
2138
3d7d6a6f
AM
2139 if ((sym->flags & BSF_KEEP) == 0
2140 && (info->strip == strip_all
2141 || (info->strip == strip_some
2142 && bfd_hash_lookup (info->keep_hash, bfd_asymbol_name (sym),
0a1b45a2
AM
2143 false, false) == NULL)))
2144 output = false;
af54f0eb 2145 else if ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_GNU_UNIQUE)) != 0)
252b5132
RH
2146 {
2147 /* If this symbol is marked as occurring now, rather
2148 than at the end, output it now. This is used for
2149 COFF C_EXT FCN symbols. FIXME: There must be a
2150 better way. */
2151 if (bfd_asymbol_bfd (sym) == input_bfd
2152 && (sym->flags & BSF_NOT_AT_END) != 0)
0a1b45a2 2153 output = true;
252b5132 2154 else
0a1b45a2 2155 output = false;
252b5132 2156 }
3d7d6a6f 2157 else if ((sym->flags & BSF_KEEP) != 0)
0a1b45a2 2158 output = true;
252b5132 2159 else if (bfd_is_ind_section (sym->section))
0a1b45a2 2160 output = false;
252b5132
RH
2161 else if ((sym->flags & BSF_DEBUGGING) != 0)
2162 {
2163 if (info->strip == strip_none)
0a1b45a2 2164 output = true;
252b5132 2165 else
0a1b45a2 2166 output = false;
252b5132
RH
2167 }
2168 else if (bfd_is_und_section (sym->section)
2169 || bfd_is_com_section (sym->section))
0a1b45a2 2170 output = false;
252b5132
RH
2171 else if ((sym->flags & BSF_LOCAL) != 0)
2172 {
2173 if ((sym->flags & BSF_WARNING) != 0)
0a1b45a2 2174 output = false;
252b5132
RH
2175 else
2176 {
2177 switch (info->discard)
2178 {
2179 default:
2180 case discard_all:
0a1b45a2 2181 output = false;
252b5132 2182 break;
f5fa8ca2 2183 case discard_sec_merge:
0a1b45a2 2184 output = true;
0e1862bb 2185 if (bfd_link_relocatable (info)
f5fa8ca2
JJ
2186 || ! (sym->section->flags & SEC_MERGE))
2187 break;
2188 /* FALLTHROUGH */
252b5132
RH
2189 case discard_l:
2190 if (bfd_is_local_label (input_bfd, sym))
0a1b45a2 2191 output = false;
252b5132 2192 else
0a1b45a2 2193 output = true;
252b5132
RH
2194 break;
2195 case discard_none:
0a1b45a2 2196 output = true;
252b5132
RH
2197 break;
2198 }
2199 }
2200 }
2201 else if ((sym->flags & BSF_CONSTRUCTOR))
2202 {
2203 if (info->strip != strip_all)
0a1b45a2 2204 output = true;
252b5132 2205 else
0a1b45a2 2206 output = false;
252b5132 2207 }
d3a65d4d
HPN
2208 else if (sym->flags == 0
2209 && (sym->section->owner->flags & BFD_PLUGIN) != 0)
2210 /* LTO doesn't set symbol information. We get here with the
2211 generic linker for a symbol that was "common" but no longer
2212 needs to be global. */
0a1b45a2 2213 output = false;
252b5132
RH
2214 else
2215 abort ();
2216
2217 /* If this symbol is in a section which is not being included
ab82c5b9 2218 in the output file, then we don't want to output the
f02571c5
AM
2219 symbol. */
2220 if (!bfd_is_abs_section (sym->section)
2221 && bfd_section_removed_from_list (output_bfd,
ab82c5b9 2222 sym->section->output_section))
0a1b45a2 2223 output = false;
252b5132
RH
2224
2225 if (output)
2226 {
2227 if (! generic_add_output_symbol (output_bfd, psymalloc, sym))
0a1b45a2 2228 return false;
c58b9523 2229 if (h != NULL)
0a1b45a2 2230 h->written = true;
252b5132
RH
2231 }
2232 }
2233
0a1b45a2 2234 return true;
252b5132
RH
2235}
2236
2237/* Set the section and value of a generic BFD symbol based on a linker
2238 hash table entry. */
2239
2240static void
c58b9523 2241set_symbol_from_hash (asymbol *sym, struct bfd_link_hash_entry *h)
252b5132
RH
2242{
2243 switch (h->type)
2244 {
2245 default:
2246 abort ();
2247 break;
2248 case bfd_link_hash_new:
2249 /* This can happen when a constructor symbol is seen but we are
07d6d2b8 2250 not building constructors. */
252b5132
RH
2251 if (sym->section != NULL)
2252 {
2253 BFD_ASSERT ((sym->flags & BSF_CONSTRUCTOR) != 0);
2254 }
2255 else
2256 {
2257 sym->flags |= BSF_CONSTRUCTOR;
2258 sym->section = bfd_abs_section_ptr;
2259 sym->value = 0;
2260 }
2261 break;
2262 case bfd_link_hash_undefined:
2263 sym->section = bfd_und_section_ptr;
2264 sym->value = 0;
2265 break;
2266 case bfd_link_hash_undefweak:
2267 sym->section = bfd_und_section_ptr;
2268 sym->value = 0;
2269 sym->flags |= BSF_WEAK;
2270 break;
2271 case bfd_link_hash_defined:
2272 sym->section = h->u.def.section;
2273 sym->value = h->u.def.value;
2274 break;
2275 case bfd_link_hash_defweak:
2276 sym->flags |= BSF_WEAK;
2277 sym->section = h->u.def.section;
2278 sym->value = h->u.def.value;
2279 break;
2280 case bfd_link_hash_common:
2281 sym->value = h->u.c.size;
2282 if (sym->section == NULL)
2283 sym->section = bfd_com_section_ptr;
2284 else if (! bfd_is_com_section (sym->section))
2285 {
2286 BFD_ASSERT (bfd_is_und_section (sym->section));
2287 sym->section = bfd_com_section_ptr;
2288 }
2289 /* Do not set the section; see _bfd_generic_link_output_symbols. */
2290 break;
2291 case bfd_link_hash_indirect:
2292 case bfd_link_hash_warning:
2293 /* FIXME: What should we do here? */
2294 break;
2295 }
2296}
2297
2298/* Write out a global symbol, if it hasn't already been written out.
2299 This is called for each symbol in the hash table. */
2300
0a1b45a2 2301bool
c58b9523
AM
2302_bfd_generic_link_write_global_symbol (struct generic_link_hash_entry *h,
2303 void *data)
252b5132 2304{
a50b1753
NC
2305 struct generic_write_global_symbol_info *wginfo =
2306 (struct generic_write_global_symbol_info *) data;
252b5132
RH
2307 asymbol *sym;
2308
2309 if (h->written)
0a1b45a2 2310 return true;
252b5132 2311
0a1b45a2 2312 h->written = true;
252b5132
RH
2313
2314 if (wginfo->info->strip == strip_all
2315 || (wginfo->info->strip == strip_some
2316 && bfd_hash_lookup (wginfo->info->keep_hash, h->root.root.string,
0a1b45a2
AM
2317 false, false) == NULL))
2318 return true;
252b5132 2319
c58b9523 2320 if (h->sym != NULL)
252b5132
RH
2321 sym = h->sym;
2322 else
2323 {
2324 sym = bfd_make_empty_symbol (wginfo->output_bfd);
2325 if (!sym)
0a1b45a2 2326 return false;
252b5132
RH
2327 sym->name = h->root.root.string;
2328 sym->flags = 0;
2329 }
2330
2331 set_symbol_from_hash (sym, &h->root);
2332
2333 sym->flags |= BSF_GLOBAL;
2334
2335 if (! generic_add_output_symbol (wginfo->output_bfd, wginfo->psymalloc,
2336 sym))
2337 {
2338 /* FIXME: No way to return failure. */
2339 abort ();
2340 }
2341
0a1b45a2 2342 return true;
252b5132
RH
2343}
2344
2345/* Create a relocation. */
2346
0a1b45a2 2347bool
c58b9523
AM
2348_bfd_generic_reloc_link_order (bfd *abfd,
2349 struct bfd_link_info *info,
2350 asection *sec,
2351 struct bfd_link_order *link_order)
252b5132
RH
2352{
2353 arelent *r;
2354
0e1862bb 2355 if (! bfd_link_relocatable (info))
252b5132 2356 abort ();
c58b9523 2357 if (sec->orelocation == NULL)
252b5132
RH
2358 abort ();
2359
a50b1753 2360 r = (arelent *) bfd_alloc (abfd, sizeof (arelent));
c58b9523 2361 if (r == NULL)
0a1b45a2 2362 return false;
509945ae 2363
252b5132
RH
2364 r->address = link_order->offset;
2365 r->howto = bfd_reloc_type_lookup (abfd, link_order->u.reloc.p->reloc);
2366 if (r->howto == 0)
2367 {
2368 bfd_set_error (bfd_error_bad_value);
0a1b45a2 2369 return false;
252b5132
RH
2370 }
2371
2372 /* Get the symbol to use for the relocation. */
2373 if (link_order->type == bfd_section_reloc_link_order)
2374 r->sym_ptr_ptr = link_order->u.reloc.p->u.section->symbol_ptr_ptr;
2375 else
2376 {
2377 struct generic_link_hash_entry *h;
2378
2379 h = ((struct generic_link_hash_entry *)
2380 bfd_wrapped_link_hash_lookup (abfd, info,
2381 link_order->u.reloc.p->u.name,
0a1b45a2 2382 false, false, true));
c58b9523 2383 if (h == NULL
252b5132
RH
2384 || ! h->written)
2385 {
1a72702b
AM
2386 (*info->callbacks->unattached_reloc)
2387 (info, link_order->u.reloc.p->u.name, NULL, NULL, 0);
252b5132 2388 bfd_set_error (bfd_error_bad_value);
0a1b45a2 2389 return false;
252b5132
RH
2390 }
2391 r->sym_ptr_ptr = &h->sym;
2392 }
2393
2394 /* If this is an inplace reloc, write the addend to the object file.
2395 Otherwise, store it in the reloc addend. */
2396 if (! r->howto->partial_inplace)
2397 r->addend = link_order->u.reloc.p->addend;
2398 else
2399 {
2400 bfd_size_type size;
2401 bfd_reloc_status_type rstat;
2402 bfd_byte *buf;
0a1b45a2 2403 bool ok;
dc810e39 2404 file_ptr loc;
252b5132
RH
2405
2406 size = bfd_get_reloc_size (r->howto);
a50b1753 2407 buf = (bfd_byte *) bfd_zmalloc (size);
6346d5ca 2408 if (buf == NULL && size != 0)
0a1b45a2 2409 return false;
252b5132 2410 rstat = _bfd_relocate_contents (r->howto, abfd,
dc810e39
AM
2411 (bfd_vma) link_order->u.reloc.p->addend,
2412 buf);
252b5132
RH
2413 switch (rstat)
2414 {
2415 case bfd_reloc_ok:
2416 break;
2417 default:
2418 case bfd_reloc_outofrange:
2419 abort ();
2420 case bfd_reloc_overflow:
1a72702b
AM
2421 (*info->callbacks->reloc_overflow)
2422 (info, NULL,
2423 (link_order->type == bfd_section_reloc_link_order
fd361982 2424 ? bfd_section_name (link_order->u.reloc.p->u.section)
1a72702b
AM
2425 : link_order->u.reloc.p->u.name),
2426 r->howto->name, link_order->u.reloc.p->addend,
2427 NULL, NULL, 0);
252b5132
RH
2428 break;
2429 }
61826503 2430 loc = link_order->offset * bfd_octets_per_byte (abfd, sec);
c58b9523 2431 ok = bfd_set_section_contents (abfd, sec, buf, loc, size);
252b5132
RH
2432 free (buf);
2433 if (! ok)
0a1b45a2 2434 return false;
252b5132
RH
2435
2436 r->addend = 0;
2437 }
2438
2439 sec->orelocation[sec->reloc_count] = r;
2440 ++sec->reloc_count;
2441
0a1b45a2 2442 return true;
252b5132
RH
2443}
2444\f
2445/* Allocate a new link_order for a section. */
2446
2447struct bfd_link_order *
c58b9523 2448bfd_new_link_order (bfd *abfd, asection *section)
252b5132 2449{
986f0783 2450 size_t amt = sizeof (struct bfd_link_order);
d3ce72d0 2451 struct bfd_link_order *new_lo;
fd96f80f 2452
d3ce72d0
NC
2453 new_lo = (struct bfd_link_order *) bfd_zalloc (abfd, amt);
2454 if (!new_lo)
252b5132
RH
2455 return NULL;
2456
d3ce72d0 2457 new_lo->type = bfd_undefined_link_order;
252b5132 2458
8423293d 2459 if (section->map_tail.link_order != NULL)
d3ce72d0 2460 section->map_tail.link_order->next = new_lo;
252b5132 2461 else
d3ce72d0
NC
2462 section->map_head.link_order = new_lo;
2463 section->map_tail.link_order = new_lo;
252b5132 2464
d3ce72d0 2465 return new_lo;
252b5132
RH
2466}
2467
2468/* Default link order processing routine. Note that we can not handle
2469 the reloc_link_order types here, since they depend upon the details
2470 of how the particular backends generates relocs. */
2471
0a1b45a2 2472bool
c58b9523
AM
2473_bfd_default_link_order (bfd *abfd,
2474 struct bfd_link_info *info,
2475 asection *sec,
2476 struct bfd_link_order *link_order)
252b5132
RH
2477{
2478 switch (link_order->type)
2479 {
2480 case bfd_undefined_link_order:
2481 case bfd_section_reloc_link_order:
2482 case bfd_symbol_reloc_link_order:
2483 default:
2484 abort ();
2485 case bfd_indirect_link_order:
2486 return default_indirect_link_order (abfd, info, sec, link_order,
0a1b45a2 2487 false);
252b5132 2488 case bfd_data_link_order:
fd96f80f 2489 return default_data_link_order (abfd, info, sec, link_order);
252b5132
RH
2490 }
2491}
2492
fd96f80f 2493/* Default routine to handle a bfd_data_link_order. */
252b5132 2494
0a1b45a2 2495static bool
c58b9523 2496default_data_link_order (bfd *abfd,
22216541 2497 struct bfd_link_info *info,
c58b9523
AM
2498 asection *sec,
2499 struct bfd_link_order *link_order)
252b5132 2500{
dc810e39 2501 bfd_size_type size;
fd96f80f
AM
2502 size_t fill_size;
2503 bfd_byte *fill;
0ac450b6 2504 file_ptr loc;
0a1b45a2 2505 bool result;
252b5132
RH
2506
2507 BFD_ASSERT ((sec->flags & SEC_HAS_CONTENTS) != 0);
2508
dc810e39 2509 size = link_order->size;
0ac450b6 2510 if (size == 0)
0a1b45a2 2511 return true;
0ac450b6 2512
fd96f80f
AM
2513 fill = link_order->u.data.contents;
2514 fill_size = link_order->u.data.size;
b7761f11
L
2515 if (fill_size == 0)
2516 {
22216541 2517 fill = abfd->arch_info->fill (size, info->big_endian,
b7761f11
L
2518 (sec->flags & SEC_CODE) != 0);
2519 if (fill == NULL)
0a1b45a2 2520 return false;
b7761f11
L
2521 }
2522 else if (fill_size < size)
fd96f80f
AM
2523 {
2524 bfd_byte *p;
a50b1753 2525 fill = (bfd_byte *) bfd_malloc (size);
fd96f80f 2526 if (fill == NULL)
0a1b45a2 2527 return false;
fd96f80f
AM
2528 p = fill;
2529 if (fill_size == 1)
2530 memset (p, (int) link_order->u.data.contents[0], (size_t) size);
2531 else
2532 {
2533 do
2534 {
2535 memcpy (p, link_order->u.data.contents, fill_size);
2536 p += fill_size;
2537 size -= fill_size;
2538 }
2539 while (size >= fill_size);
2540 if (size != 0)
2541 memcpy (p, link_order->u.data.contents, (size_t) size);
2542 size = link_order->size;
2543 }
2544 }
0ac450b6 2545
61826503 2546 loc = link_order->offset * bfd_octets_per_byte (abfd, sec);
fd96f80f 2547 result = bfd_set_section_contents (abfd, sec, fill, loc, size);
0ac450b6 2548
fd96f80f
AM
2549 if (fill != link_order->u.data.contents)
2550 free (fill);
252b5132
RH
2551 return result;
2552}
2553
2554/* Default routine to handle a bfd_indirect_link_order. */
2555
0a1b45a2 2556static bool
c58b9523
AM
2557default_indirect_link_order (bfd *output_bfd,
2558 struct bfd_link_info *info,
2559 asection *output_section,
2560 struct bfd_link_order *link_order,
0a1b45a2 2561 bool generic_linker)
252b5132
RH
2562{
2563 asection *input_section;
2564 bfd *input_bfd;
56ba7527 2565 bfd_byte *alloced = NULL;
252b5132 2566 bfd_byte *new_contents;
dc810e39 2567 file_ptr loc;
252b5132
RH
2568
2569 BFD_ASSERT ((output_section->flags & SEC_HAS_CONTENTS) != 0);
2570
252b5132
RH
2571 input_section = link_order->u.indirect.section;
2572 input_bfd = input_section->owner;
44da2da1 2573 if (input_section->size == 0)
0a1b45a2 2574 return true;
252b5132
RH
2575
2576 BFD_ASSERT (input_section->output_section == output_section);
2577 BFD_ASSERT (input_section->output_offset == link_order->offset);
eea6121a 2578 BFD_ASSERT (input_section->size == link_order->size);
252b5132 2579
0e1862bb 2580 if (bfd_link_relocatable (info)
252b5132 2581 && input_section->reloc_count > 0
c58b9523 2582 && output_section->orelocation == NULL)
252b5132
RH
2583 {
2584 /* Space has not been allocated for the output relocations.
2585 This can happen when we are called by a specific backend
2586 because somebody is attempting to link together different
2587 types of object files. Handling this case correctly is
2588 difficult, and sometimes impossible. */
4eca0228 2589 _bfd_error_handler
695344c0 2590 /* xgettext:c-format */
6e05870c 2591 (_("attempt to do relocatable link with %s input and %s output"),
252b5132
RH
2592 bfd_get_target (input_bfd), bfd_get_target (output_bfd));
2593 bfd_set_error (bfd_error_wrong_format);
0a1b45a2 2594 return false;
252b5132
RH
2595 }
2596
2597 if (! generic_linker)
2598 {
2599 asymbol **sympp;
2600 asymbol **symppend;
2601
2602 /* Get the canonical symbols. The generic linker will always
2603 have retrieved them by this point, but we are being called by
2604 a specific linker, presumably because we are linking
2605 different types of object files together. */
5c1d2f5f 2606 if (!bfd_generic_link_read_symbols (input_bfd))
0a1b45a2 2607 return false;
252b5132
RH
2608
2609 /* Since we have been called by a specific linker, rather than
2610 the generic linker, the values of the symbols will not be
2611 right. They will be the values as seen in the input file,
2612 not the values of the final link. We need to fix them up
2613 before we can relocate the section. */
2614 sympp = _bfd_generic_link_get_symbols (input_bfd);
2615 symppend = sympp + _bfd_generic_link_get_symcount (input_bfd);
2616 for (; sympp < symppend; sympp++)
2617 {
2618 asymbol *sym;
2619 struct bfd_link_hash_entry *h;
2620
2621 sym = *sympp;
2622
2623 if ((sym->flags & (BSF_INDIRECT
2624 | BSF_WARNING
2625 | BSF_GLOBAL
2626 | BSF_CONSTRUCTOR
2627 | BSF_WEAK)) != 0
e6f7f6d1
AM
2628 || bfd_is_und_section (bfd_asymbol_section (sym))
2629 || bfd_is_com_section (bfd_asymbol_section (sym))
2630 || bfd_is_ind_section (bfd_asymbol_section (sym)))
252b5132
RH
2631 {
2632 /* sym->udata may have been set by
2633 generic_link_add_symbol_list. */
2634 if (sym->udata.p != NULL)
a50b1753 2635 h = (struct bfd_link_hash_entry *) sym->udata.p;
e6f7f6d1 2636 else if (bfd_is_und_section (bfd_asymbol_section (sym)))
252b5132
RH
2637 h = bfd_wrapped_link_hash_lookup (output_bfd, info,
2638 bfd_asymbol_name (sym),
0a1b45a2 2639 false, false, true);
252b5132
RH
2640 else
2641 h = bfd_link_hash_lookup (info->hash,
2642 bfd_asymbol_name (sym),
0a1b45a2 2643 false, false, true);
252b5132
RH
2644 if (h != NULL)
2645 set_symbol_from_hash (sym, h);
2646 }
509945ae 2647 }
252b5132
RH
2648 }
2649
bcacc0f5
AM
2650 if ((output_section->flags & (SEC_GROUP | SEC_LINKER_CREATED)) == SEC_GROUP
2651 && input_section->size != 0)
2652 {
2653 /* Group section contents are set by bfd_elf_set_group_contents. */
2654 if (!output_bfd->output_has_begun)
2655 {
2656 /* FIXME: This hack ensures bfd_elf_set_group_contents is called. */
2657 if (!bfd_set_section_contents (output_bfd, output_section, "", 0, 1))
2658 goto error_return;
2659 }
2660 new_contents = output_section->contents;
2661 BFD_ASSERT (new_contents != NULL);
2662 BFD_ASSERT (input_section->output_offset == 0);
2663 }
2664 else
2665 {
2666 /* Get and relocate the section contents. */
bcacc0f5 2667 new_contents = (bfd_get_relocated_section_contents
56ba7527 2668 (output_bfd, info, link_order, NULL,
0e1862bb 2669 bfd_link_relocatable (info),
bcacc0f5 2670 _bfd_generic_link_get_symbols (input_bfd)));
56ba7527 2671 alloced = new_contents;
bcacc0f5
AM
2672 if (!new_contents)
2673 goto error_return;
2674 }
252b5132
RH
2675
2676 /* Output the section contents. */
61826503
CE
2677 loc = (input_section->output_offset
2678 * bfd_octets_per_byte (output_bfd, output_section));
252b5132 2679 if (! bfd_set_section_contents (output_bfd, output_section,
44da2da1 2680 new_contents, loc, input_section->size))
252b5132
RH
2681 goto error_return;
2682
56ba7527 2683 free (alloced);
0a1b45a2 2684 return true;
252b5132
RH
2685
2686 error_return:
56ba7527 2687 free (alloced);
0a1b45a2 2688 return false;
252b5132
RH
2689}
2690
2691/* A little routine to count the number of relocs in a link_order
2692 list. */
2693
2694unsigned int
c58b9523 2695_bfd_count_link_order_relocs (struct bfd_link_order *link_order)
252b5132
RH
2696{
2697 register unsigned int c;
2698 register struct bfd_link_order *l;
2699
2700 c = 0;
c58b9523 2701 for (l = link_order; l != NULL; l = l->next)
252b5132
RH
2702 {
2703 if (l->type == bfd_section_reloc_link_order
2704 || l->type == bfd_symbol_reloc_link_order)
2705 ++c;
2706 }
2707
2708 return c;
2709}
2710
2711/*
2712FUNCTION
2713 bfd_link_split_section
2714
2715SYNOPSIS
0a1b45a2 2716 bool bfd_link_split_section (bfd *abfd, asection *sec);
252b5132
RH
2717
2718DESCRIPTION
2719 Return nonzero if @var{sec} should be split during a
2720 reloceatable or final link.
2721
2722.#define bfd_link_split_section(abfd, sec) \
07d6d2b8 2723. BFD_SEND (abfd, _bfd_link_split_section, (abfd, sec))
252b5132
RH
2724.
2725
2726*/
2727
0a1b45a2 2728bool
c58b9523
AM
2729_bfd_generic_link_split_section (bfd *abfd ATTRIBUTE_UNUSED,
2730 asection *sec ATTRIBUTE_UNUSED)
252b5132 2731{
0a1b45a2 2732 return false;
252b5132 2733}
082b7297
L
2734
2735/*
2736FUNCTION
2737 bfd_section_already_linked
2738
2739SYNOPSIS
0a1b45a2
AM
2740 bool bfd_section_already_linked (bfd *abfd,
2741 asection *sec,
2742 struct bfd_link_info *info);
082b7297
L
2743
2744DESCRIPTION
0c511000 2745 Check if @var{data} has been already linked during a reloceatable
43e1669b 2746 or final link. Return TRUE if it has.
082b7297 2747
c77ec726 2748.#define bfd_section_already_linked(abfd, sec, info) \
07d6d2b8 2749. BFD_SEND (abfd, _section_already_linked, (abfd, sec, info))
082b7297
L
2750.
2751
2752*/
2753
2754/* Sections marked with the SEC_LINK_ONCE flag should only be linked
2755 once into the output. This routine checks each section, and
2756 arrange to discard it if a section of the same name has already
68ffbac6 2757 been linked. This code assumes that all relevant sections have the
082b7297
L
2758 SEC_LINK_ONCE flag set; that is, it does not depend solely upon the
2759 section name. bfd_section_already_linked is called via
2760 bfd_map_over_sections. */
2761
2762/* The hash table. */
2763
2764static struct bfd_hash_table _bfd_section_already_linked_table;
2765
2766/* Support routines for the hash table used by section_already_linked,
3d7f7666
L
2767 initialize the table, traverse, lookup, fill in an entry and remove
2768 the table. */
2769
2770void
2771bfd_section_already_linked_table_traverse
0a1b45a2
AM
2772 (bool (*func) (struct bfd_section_already_linked_hash_entry *, void *),
2773 void *info)
3d7f7666
L
2774{
2775 bfd_hash_traverse (&_bfd_section_already_linked_table,
0a1b45a2 2776 (bool (*) (struct bfd_hash_entry *, void *)) func,
3d7f7666
L
2777 info);
2778}
082b7297
L
2779
2780struct bfd_section_already_linked_hash_entry *
2781bfd_section_already_linked_table_lookup (const char *name)
2782{
2783 return ((struct bfd_section_already_linked_hash_entry *)
2784 bfd_hash_lookup (&_bfd_section_already_linked_table, name,
0a1b45a2 2785 true, false));
082b7297
L
2786}
2787
0a1b45a2 2788bool
082b7297
L
2789bfd_section_already_linked_table_insert
2790 (struct bfd_section_already_linked_hash_entry *already_linked_list,
c77ec726 2791 asection *sec)
082b7297
L
2792{
2793 struct bfd_section_already_linked *l;
2794
2795 /* Allocate the memory from the same obstack as the hash table is
2796 kept in. */
a50b1753
NC
2797 l = (struct bfd_section_already_linked *)
2798 bfd_hash_allocate (&_bfd_section_already_linked_table, sizeof *l);
a6626e8c 2799 if (l == NULL)
0a1b45a2 2800 return false;
c77ec726 2801 l->sec = sec;
082b7297
L
2802 l->next = already_linked_list->entry;
2803 already_linked_list->entry = l;
0a1b45a2 2804 return true;
082b7297
L
2805}
2806
2807static struct bfd_hash_entry *
2808already_linked_newfunc (struct bfd_hash_entry *entry ATTRIBUTE_UNUSED,
2809 struct bfd_hash_table *table,
2810 const char *string ATTRIBUTE_UNUSED)
2811{
2812 struct bfd_section_already_linked_hash_entry *ret =
a50b1753
NC
2813 (struct bfd_section_already_linked_hash_entry *)
2814 bfd_hash_allocate (table, sizeof *ret);
082b7297 2815
2d4f3e92 2816 if (ret == NULL)
a6626e8c 2817 return NULL;
2d4f3e92 2818
5ba8816a
MS
2819 ret->entry = NULL;
2820
082b7297
L
2821 return &ret->root;
2822}
2823
0a1b45a2 2824bool
082b7297
L
2825bfd_section_already_linked_table_init (void)
2826{
2827 return bfd_hash_table_init_n (&_bfd_section_already_linked_table,
66eb6687
AM
2828 already_linked_newfunc,
2829 sizeof (struct bfd_section_already_linked_hash_entry),
2830 42);
082b7297
L
2831}
2832
2833void
2834bfd_section_already_linked_table_free (void)
2835{
2836 bfd_hash_table_free (&_bfd_section_already_linked_table);
2837}
2838
c77ec726
AM
2839/* Report warnings as appropriate for duplicate section SEC.
2840 Return FALSE if we decide to keep SEC after all. */
082b7297 2841
0a1b45a2 2842bool
c77ec726
AM
2843_bfd_handle_already_linked (asection *sec,
2844 struct bfd_section_already_linked *l,
2845 struct bfd_link_info *info)
082b7297 2846{
c77ec726 2847 switch (sec->flags & SEC_LINK_DUPLICATES)
0c511000 2848 {
c77ec726
AM
2849 default:
2850 abort ();
0c511000 2851
c77ec726
AM
2852 case SEC_LINK_DUPLICATES_DISCARD:
2853 /* If we found an LTO IR match for this comdat group on
2854 the first pass, replace it with the LTO output on the
2855 second pass. We can't simply choose real object
2856 files over IR because the first pass may contain a
2857 mix of LTO and normal objects and we must keep the
2858 first match, be it IR or real. */
ce875075 2859 if (sec->owner->lto_output
c77ec726
AM
2860 && (l->sec->owner->flags & BFD_PLUGIN) != 0)
2861 {
2862 l->sec = sec;
0a1b45a2 2863 return false;
c77ec726
AM
2864 }
2865 break;
0c511000 2866
c77ec726
AM
2867 case SEC_LINK_DUPLICATES_ONE_ONLY:
2868 info->callbacks->einfo
695344c0 2869 /* xgettext:c-format */
871b3ab2 2870 (_("%pB: ignoring duplicate section `%pA'\n"),
c77ec726
AM
2871 sec->owner, sec);
2872 break;
0c511000 2873
c77ec726
AM
2874 case SEC_LINK_DUPLICATES_SAME_SIZE:
2875 if ((l->sec->owner->flags & BFD_PLUGIN) != 0)
2876 ;
2877 else if (sec->size != l->sec->size)
2878 info->callbacks->einfo
695344c0 2879 /* xgettext:c-format */
871b3ab2 2880 (_("%pB: duplicate section `%pA' has different size\n"),
c77ec726
AM
2881 sec->owner, sec);
2882 break;
0c511000 2883
c77ec726
AM
2884 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
2885 if ((l->sec->owner->flags & BFD_PLUGIN) != 0)
2886 ;
2887 else if (sec->size != l->sec->size)
2888 info->callbacks->einfo
695344c0 2889 /* xgettext:c-format */
871b3ab2 2890 (_("%pB: duplicate section `%pA' has different size\n"),
c77ec726
AM
2891 sec->owner, sec);
2892 else if (sec->size != 0)
2893 {
81ff113f
AM
2894 bfd_byte *sec_contents, *l_sec_contents;
2895
2896 if ((sec->flags & SEC_HAS_CONTENTS) == 0
2897 && (l->sec->flags & SEC_HAS_CONTENTS) == 0)
2898 ;
2899 else if ((sec->flags & SEC_HAS_CONTENTS) == 0
2900 || !bfd_malloc_and_get_section (sec->owner, sec,
2901 &sec_contents))
c77ec726 2902 info->callbacks->einfo
695344c0 2903 /* xgettext:c-format */
871b3ab2 2904 (_("%pB: could not read contents of section `%pA'\n"),
c77ec726 2905 sec->owner, sec);
81ff113f
AM
2906 else if ((l->sec->flags & SEC_HAS_CONTENTS) == 0
2907 || !bfd_malloc_and_get_section (l->sec->owner, l->sec,
2908 &l_sec_contents))
2909 {
2910 info->callbacks->einfo
2911 /* xgettext:c-format */
2912 (_("%pB: could not read contents of section `%pA'\n"),
2913 l->sec->owner, l->sec);
2914 free (sec_contents);
2915 }
2916 else
2917 {
2918 if (memcmp (sec_contents, l_sec_contents, sec->size) != 0)
2919 info->callbacks->einfo
2920 /* xgettext:c-format */
2921 (_("%pB: duplicate section `%pA' has different contents\n"),
2922 sec->owner, sec);
2923 free (l_sec_contents);
2924 free (sec_contents);
2925 }
c77ec726
AM
2926 }
2927 break;
0c511000 2928 }
082b7297 2929
c77ec726
AM
2930 /* Set the output_section field so that lang_add_section
2931 does not create a lang_input_section structure for this
2932 section. Since there might be a symbol in the section
2933 being discarded, we must retain a pointer to the section
2934 which we are really going to use. */
2935 sec->output_section = bfd_abs_section_ptr;
2936 sec->kept_section = l->sec;
0a1b45a2 2937 return true;
c77ec726 2938}
082b7297 2939
c77ec726 2940/* This is used on non-ELF inputs. */
0c511000 2941
0a1b45a2 2942bool
c77ec726
AM
2943_bfd_generic_section_already_linked (bfd *abfd ATTRIBUTE_UNUSED,
2944 asection *sec,
2945 struct bfd_link_info *info)
2946{
2947 const char *name;
2948 struct bfd_section_already_linked *l;
2949 struct bfd_section_already_linked_hash_entry *already_linked_list;
082b7297 2950
c77ec726 2951 if ((sec->flags & SEC_LINK_ONCE) == 0)
0a1b45a2 2952 return false;
082b7297 2953
c77ec726
AM
2954 /* The generic linker doesn't handle section groups. */
2955 if ((sec->flags & SEC_GROUP) != 0)
0a1b45a2 2956 return false;
082b7297 2957
c77ec726
AM
2958 /* FIXME: When doing a relocatable link, we may have trouble
2959 copying relocations in other sections that refer to local symbols
2960 in the section being discarded. Those relocations will have to
2961 be converted somehow; as of this writing I'm not sure that any of
2962 the backends handle that correctly.
082b7297 2963
c77ec726
AM
2964 It is tempting to instead not discard link once sections when
2965 doing a relocatable link (technically, they should be discarded
2966 whenever we are building constructors). However, that fails,
2967 because the linker winds up combining all the link once sections
2968 into a single large link once section, which defeats the purpose
2969 of having link once sections in the first place. */
082b7297 2970
fd361982 2971 name = bfd_section_name (sec);
082b7297 2972
c77ec726 2973 already_linked_list = bfd_section_already_linked_table_lookup (name);
082b7297 2974
c77ec726
AM
2975 l = already_linked_list->entry;
2976 if (l != NULL)
2977 {
2978 /* The section has already been linked. See if we should
2979 issue a warning. */
2980 return _bfd_handle_already_linked (sec, l, info);
082b7297
L
2981 }
2982
2983 /* This is the first section with this name. Record it. */
c77ec726 2984 if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
bb6198d2 2985 info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
0a1b45a2 2986 return false;
082b7297 2987}
1e035701 2988
051d833a
AM
2989/* Choose a neighbouring section to S in OBFD that will be output, or
2990 the absolute section if ADDR is out of bounds of the neighbours. */
2991
2992asection *
2993_bfd_nearby_section (bfd *obfd, asection *s, bfd_vma addr)
2994{
2995 asection *next, *prev, *best;
2996
2997 /* Find preceding kept section. */
2998 for (prev = s->prev; prev != NULL; prev = prev->prev)
2999 if ((prev->flags & SEC_EXCLUDE) == 0
3000 && !bfd_section_removed_from_list (obfd, prev))
3001 break;
3002
3003 /* Find following kept section. Start at prev->next because
3004 other sections may have been added after S was removed. */
3005 if (s->prev != NULL)
3006 next = s->prev->next;
3007 else
3008 next = s->owner->sections;
3009 for (; next != NULL; next = next->next)
3010 if ((next->flags & SEC_EXCLUDE) == 0
3011 && !bfd_section_removed_from_list (obfd, next))
3012 break;
3013
3014 /* Choose better of two sections, based on flags. The idea
3015 is to choose a section that will be in the same segment
3016 as S would have been if it was kept. */
3017 best = next;
3018 if (prev == NULL)
3019 {
3020 if (next == NULL)
3021 best = bfd_abs_section_ptr;
3022 }
3023 else if (next == NULL)
3024 best = prev;
3025 else if (((prev->flags ^ next->flags)
3026 & (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_LOAD)) != 0)
3027 {
3028 if (((next->flags ^ s->flags)
3029 & (SEC_ALLOC | SEC_THREAD_LOCAL)) != 0
3030 /* We prefer to choose a loaded section. Section S
3031 doesn't have SEC_LOAD set (it being excluded, that
3032 part of the flag processing didn't happen) so we
3033 can't compare that flag to those of NEXT and PREV. */
3034 || ((prev->flags & SEC_LOAD) != 0
3035 && (next->flags & SEC_LOAD) == 0))
3036 best = prev;
3037 }
3038 else if (((prev->flags ^ next->flags) & SEC_READONLY) != 0)
3039 {
3040 if (((next->flags ^ s->flags) & SEC_READONLY) != 0)
3041 best = prev;
3042 }
3043 else if (((prev->flags ^ next->flags) & SEC_CODE) != 0)
3044 {
3045 if (((next->flags ^ s->flags) & SEC_CODE) != 0)
3046 best = prev;
3047 }
3048 else
3049 {
3050 /* Flags we care about are the same. Prefer the following
3051 section if that will result in a positive valued sym. */
3052 if (addr < next->vma)
3053 best = prev;
3054 }
3055
051d833a
AM
3056 return best;
3057}
3058
74541ad4 3059/* Convert symbols in excluded output sections to use a kept section. */
1e035701 3060
0a1b45a2 3061static bool
1e035701
AM
3062fix_syms (struct bfd_link_hash_entry *h, void *data)
3063{
3064 bfd *obfd = (bfd *) data;
3065
1e035701
AM
3066 if (h->type == bfd_link_hash_defined
3067 || h->type == bfd_link_hash_defweak)
3068 {
3069 asection *s = h->u.def.section;
3070 if (s != NULL
3071 && s->output_section != NULL
3072 && (s->output_section->flags & SEC_EXCLUDE) != 0
3073 && bfd_section_removed_from_list (obfd, s->output_section))
3074 {
051d833a 3075 asection *op;
720194ed
AM
3076
3077 h->u.def.value += s->output_offset + s->output_section->vma;
051d833a 3078 op = _bfd_nearby_section (obfd, s->output_section, h->u.def.value);
74541ad4
AM
3079 h->u.def.value -= op->vma;
3080 h->u.def.section = op;
1e035701
AM
3081 }
3082 }
3083
0a1b45a2 3084 return true;
1e035701
AM
3085}
3086
3087void
3088_bfd_fix_excluded_sec_syms (bfd *obfd, struct bfd_link_info *info)
3089{
3090 bfd_link_hash_traverse (info->hash, fix_syms, obfd);
3091}
3023e3f6
RS
3092
3093/*
3094FUNCTION
3095 bfd_generic_define_common_symbol
3096
3097SYNOPSIS
0a1b45a2 3098 bool bfd_generic_define_common_symbol
3023e3f6
RS
3099 (bfd *output_bfd, struct bfd_link_info *info,
3100 struct bfd_link_hash_entry *h);
3101
3102DESCRIPTION
3103 Convert common symbol @var{h} into a defined symbol.
3104 Return TRUE on success and FALSE on failure.
3105
3106.#define bfd_define_common_symbol(output_bfd, info, h) \
07d6d2b8 3107. BFD_SEND (output_bfd, _bfd_define_common_symbol, (output_bfd, info, h))
3023e3f6
RS
3108.
3109*/
3110
0a1b45a2 3111bool
3023e3f6
RS
3112bfd_generic_define_common_symbol (bfd *output_bfd,
3113 struct bfd_link_info *info ATTRIBUTE_UNUSED,
3114 struct bfd_link_hash_entry *h)
3115{
3116 unsigned int power_of_two;
3117 bfd_vma alignment, size;
3118 asection *section;
3119
3120 BFD_ASSERT (h != NULL && h->type == bfd_link_hash_common);
3121
3122 size = h->u.c.size;
3123 power_of_two = h->u.c.p->alignment_power;
3124 section = h->u.c.p->section;
3125
3126 /* Increase the size of the section to align the common symbol.
1e597a89
T
3127 The alignment must be a power of two. But if the section does
3128 not have any alignment requirement then do not increase the
3129 alignment unnecessarily. */
3130 if (power_of_two)
3131 alignment = bfd_octets_per_byte (output_bfd, section) << power_of_two;
3132 else
3133 alignment = 1;
3023e3f6
RS
3134 BFD_ASSERT (alignment != 0 && (alignment & -alignment) == alignment);
3135 section->size += alignment - 1;
3136 section->size &= -alignment;
3137
3138 /* Adjust the section's overall alignment if necessary. */
3139 if (power_of_two > section->alignment_power)
3140 section->alignment_power = power_of_two;
3141
3142 /* Change the symbol from common to defined. */
3143 h->type = bfd_link_hash_defined;
3144 h->u.def.section = section;
3145 h->u.def.value = section->size;
3146
3147 /* Increase the size of the section. */
3148 section->size += size;
3149
3150 /* Make sure the section is allocated in memory, and make sure that
3151 it is no longer a common section. */
3152 section->flags |= SEC_ALLOC;
0e41bebb 3153 section->flags &= ~(SEC_IS_COMMON | SEC_HAS_CONTENTS);
0a1b45a2 3154 return true;
3023e3f6 3155}
09e2aba4 3156
34a87bb0
L
3157/*
3158FUNCTION
3159 _bfd_generic_link_hide_symbol
3160
3161SYNOPSIS
3162 void _bfd_generic_link_hide_symbol
3163 (bfd *output_bfd, struct bfd_link_info *info,
3164 struct bfd_link_hash_entry *h);
3165
3166DESCRIPTION
3167 Hide symbol @var{h}.
3168 This is an internal function. It should not be called from
3169 outside the BFD library.
3170
3171.#define bfd_link_hide_symbol(output_bfd, info, h) \
3172. BFD_SEND (output_bfd, _bfd_link_hide_symbol, (output_bfd, info, h))
3173.
3174*/
3175
3176void
3177_bfd_generic_link_hide_symbol (bfd *output_bfd ATTRIBUTE_UNUSED,
3178 struct bfd_link_info *info ATTRIBUTE_UNUSED,
3179 struct bfd_link_hash_entry *h ATTRIBUTE_UNUSED)
3180{
3181}
3182
7dba9362
AM
3183/*
3184FUNCTION
3185 bfd_generic_define_start_stop
3186
3187SYNOPSIS
3188 struct bfd_link_hash_entry *bfd_generic_define_start_stop
3189 (struct bfd_link_info *info,
3190 const char *symbol, asection *sec);
3191
3192DESCRIPTION
3193 Define a __start, __stop, .startof. or .sizeof. symbol.
3194 Return the symbol or NULL if no such undefined symbol exists.
3195
3196.#define bfd_define_start_stop(output_bfd, info, symbol, sec) \
07d6d2b8 3197. BFD_SEND (output_bfd, _bfd_define_start_stop, (info, symbol, sec))
7dba9362
AM
3198.
3199*/
3200
3201struct bfd_link_hash_entry *
3202bfd_generic_define_start_stop (struct bfd_link_info *info,
3203 const char *symbol, asection *sec)
3204{
3205 struct bfd_link_hash_entry *h;
3206
0a1b45a2 3207 h = bfd_link_hash_lookup (info->hash, symbol, false, false, true);
7dba9362 3208 if (h != NULL
8ee10e86 3209 && !h->ldscript_def
7dba9362
AM
3210 && (h->type == bfd_link_hash_undefined
3211 || h->type == bfd_link_hash_undefweak))
3212 {
3213 h->type = bfd_link_hash_defined;
3214 h->u.def.section = sec;
3215 h->u.def.value = 0;
3216 return h;
3217 }
3218 return NULL;
3219}
3220
09e2aba4
DK
3221/*
3222FUNCTION
68ffbac6 3223 bfd_find_version_for_sym
09e2aba4
DK
3224
3225SYNOPSIS
3226 struct bfd_elf_version_tree * bfd_find_version_for_sym
3227 (struct bfd_elf_version_tree *verdefs,
0a1b45a2 3228 const char *sym_name, bool *hide);
09e2aba4
DK
3229
3230DESCRIPTION
3231 Search an elf version script tree for symbol versioning
3232 info and export / don't-export status for a given symbol.
3233 Return non-NULL on success and NULL on failure; also sets
3234 the output @samp{hide} boolean parameter.
3235
3236*/
3237
3238struct bfd_elf_version_tree *
3239bfd_find_version_for_sym (struct bfd_elf_version_tree *verdefs,
78a03297 3240 const char *sym_name,
0a1b45a2 3241 bool *hide)
09e2aba4
DK
3242{
3243 struct bfd_elf_version_tree *t;
3244 struct bfd_elf_version_tree *local_ver, *global_ver, *exist_ver;
78a03297 3245 struct bfd_elf_version_tree *star_local_ver, *star_global_ver;
09e2aba4
DK
3246
3247 local_ver = NULL;
3248 global_ver = NULL;
78a03297
AM
3249 star_local_ver = NULL;
3250 star_global_ver = NULL;
09e2aba4
DK
3251 exist_ver = NULL;
3252 for (t = verdefs; t != NULL; t = t->next)
3253 {
3254 if (t->globals.list != NULL)
3255 {
3256 struct bfd_elf_version_expr *d = NULL;
3257
3258 while ((d = (*t->match) (&t->globals, d, sym_name)) != NULL)
3259 {
78a03297
AM
3260 if (d->literal || strcmp (d->pattern, "*") != 0)
3261 global_ver = t;
3262 else
3263 star_global_ver = t;
09e2aba4
DK
3264 if (d->symver)
3265 exist_ver = t;
3266 d->script = 1;
3267 /* If the match is a wildcard pattern, keep looking for
3268 a more explicit, perhaps even local, match. */
3269 if (d->literal)
0666b2c3 3270 break;
09e2aba4
DK
3271 }
3272
3273 if (d != NULL)
3274 break;
3275 }
3276
3277 if (t->locals.list != NULL)
3278 {
3279 struct bfd_elf_version_expr *d = NULL;
3280
3281 while ((d = (*t->match) (&t->locals, d, sym_name)) != NULL)
3282 {
78a03297
AM
3283 if (d->literal || strcmp (d->pattern, "*") != 0)
3284 local_ver = t;
3285 else
3286 star_local_ver = t;
09e2aba4
DK
3287 /* If the match is a wildcard pattern, keep looking for
3288 a more explicit, perhaps even global, match. */
3289 if (d->literal)
3290 {
3291 /* An exact match overrides a global wildcard. */
3292 global_ver = NULL;
78a03297 3293 star_global_ver = NULL;
09e2aba4
DK
3294 break;
3295 }
3296 }
3297
3298 if (d != NULL)
3299 break;
3300 }
3301 }
3302
78a03297
AM
3303 if (global_ver == NULL && local_ver == NULL)
3304 global_ver = star_global_ver;
3305
09e2aba4
DK
3306 if (global_ver != NULL)
3307 {
3308 /* If we already have a versioned symbol that matches the
3309 node for this symbol, then we don't want to create a
3310 duplicate from the unversioned symbol. Instead hide the
3311 unversioned symbol. */
3312 *hide = exist_ver == global_ver;
3313 return global_ver;
3314 }
3315
78a03297
AM
3316 if (local_ver == NULL)
3317 local_ver = star_local_ver;
3318
09e2aba4
DK
3319 if (local_ver != NULL)
3320 {
0a1b45a2 3321 *hide = true;
09e2aba4
DK
3322 return local_ver;
3323 }
3324
3325 return NULL;
3326}
fd91d419
L
3327
3328/*
3329FUNCTION
3330 bfd_hide_sym_by_version
3331
3332SYNOPSIS
0a1b45a2 3333 bool bfd_hide_sym_by_version
fd91d419
L
3334 (struct bfd_elf_version_tree *verdefs, const char *sym_name);
3335
3336DESCRIPTION
3337 Search an elf version script tree for symbol versioning
3338 info for a given symbol. Return TRUE if the symbol is hidden.
3339
3340*/
3341
0a1b45a2 3342bool
fd91d419
L
3343bfd_hide_sym_by_version (struct bfd_elf_version_tree *verdefs,
3344 const char *sym_name)
3345{
0a1b45a2 3346 bool hidden = false;
fd91d419
L
3347 bfd_find_version_for_sym (verdefs, sym_name, &hidden);
3348 return hidden;
3349}
4f3b23b3
NC
3350
3351/*
3352FUNCTION
3353 bfd_link_check_relocs
3354
3355SYNOPSIS
0a1b45a2 3356 bool bfd_link_check_relocs
4f3b23b3
NC
3357 (bfd *abfd, struct bfd_link_info *info);
3358
3359DESCRIPTION
3360 Checks the relocs in ABFD for validity.
3361 Does not execute the relocs.
3362 Return TRUE if everything is OK, FALSE otherwise.
3363 This is the external entry point to this code.
3364*/
3365
0a1b45a2 3366bool
4f3b23b3
NC
3367bfd_link_check_relocs (bfd *abfd, struct bfd_link_info *info)
3368{
3369 return BFD_SEND (abfd, _bfd_link_check_relocs, (abfd, info));
3370}
3371
3372/*
3373FUNCTION
3374 _bfd_generic_link_check_relocs
3375
3376SYNOPSIS
0a1b45a2 3377 bool _bfd_generic_link_check_relocs
4f3b23b3
NC
3378 (bfd *abfd, struct bfd_link_info *info);
3379
3380DESCRIPTION
07d6d2b8 3381 Stub function for targets that do not implement reloc checking.
4f3b23b3
NC
3382 Return TRUE.
3383 This is an internal function. It should not be called from
3384 outside the BFD library.
3385*/
3386
0a1b45a2 3387bool
4f3b23b3
NC
3388_bfd_generic_link_check_relocs (bfd *abfd ATTRIBUTE_UNUSED,
3389 struct bfd_link_info *info ATTRIBUTE_UNUSED)
3390{
0a1b45a2 3391 return true;
4f3b23b3 3392}
1047201f
AM
3393
3394/*
3395FUNCTION
3396 bfd_merge_private_bfd_data
3397
3398SYNOPSIS
0a1b45a2 3399 bool bfd_merge_private_bfd_data
50e03d47 3400 (bfd *ibfd, struct bfd_link_info *info);
1047201f
AM
3401
3402DESCRIPTION
3403 Merge private BFD information from the BFD @var{ibfd} to the
50e03d47 3404 the output file BFD when linking. Return <<TRUE>> on success,
1047201f
AM
3405 <<FALSE>> on error. Possible error returns are:
3406
3407 o <<bfd_error_no_memory>> -
3408 Not enough memory exists to create private data for @var{obfd}.
3409
50e03d47 3410.#define bfd_merge_private_bfd_data(ibfd, info) \
07d6d2b8
AM
3411. BFD_SEND ((info)->output_bfd, _bfd_merge_private_bfd_data, \
3412. (ibfd, info))
717d4bd6 3413.
1047201f
AM
3414*/
3415
3416/*
3417INTERNAL_FUNCTION
3418 _bfd_generic_verify_endian_match
3419
3420SYNOPSIS
0a1b45a2 3421 bool _bfd_generic_verify_endian_match
50e03d47 3422 (bfd *ibfd, struct bfd_link_info *info);
1047201f
AM
3423
3424DESCRIPTION
3425 Can be used from / for bfd_merge_private_bfd_data to check that
3426 endianness matches between input and output file. Returns
3427 TRUE for a match, otherwise returns FALSE and emits an error.
3428*/
3429
0a1b45a2 3430bool
50e03d47 3431_bfd_generic_verify_endian_match (bfd *ibfd, struct bfd_link_info *info)
1047201f 3432{
50e03d47
AM
3433 bfd *obfd = info->output_bfd;
3434
1047201f
AM
3435 if (ibfd->xvec->byteorder != obfd->xvec->byteorder
3436 && ibfd->xvec->byteorder != BFD_ENDIAN_UNKNOWN
3437 && obfd->xvec->byteorder != BFD_ENDIAN_UNKNOWN)
3438 {
3439 if (bfd_big_endian (ibfd))
871b3ab2 3440 _bfd_error_handler (_("%pB: compiled for a big endian system "
1047201f
AM
3441 "and target is little endian"), ibfd);
3442 else
871b3ab2 3443 _bfd_error_handler (_("%pB: compiled for a little endian system "
1047201f
AM
3444 "and target is big endian"), ibfd);
3445 bfd_set_error (bfd_error_wrong_format);
0a1b45a2 3446 return false;
1047201f
AM
3447 }
3448
0a1b45a2 3449 return true;
1047201f 3450}
d00dd7dc
AM
3451
3452int
3453_bfd_nolink_sizeof_headers (bfd *abfd ATTRIBUTE_UNUSED,
3454 struct bfd_link_info *info ATTRIBUTE_UNUSED)
3455{
3456 return 0;
3457}
3458
0a1b45a2 3459bool
d00dd7dc
AM
3460_bfd_nolink_bfd_relax_section (bfd *abfd,
3461 asection *section ATTRIBUTE_UNUSED,
3462 struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
0a1b45a2 3463 bool *again ATTRIBUTE_UNUSED)
d00dd7dc
AM
3464{
3465 return _bfd_bool_bfd_false_error (abfd);
3466}
3467
3468bfd_byte *
3469_bfd_nolink_bfd_get_relocated_section_contents
3470 (bfd *abfd,
3471 struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
3472 struct bfd_link_order *link_order ATTRIBUTE_UNUSED,
3473 bfd_byte *data ATTRIBUTE_UNUSED,
0a1b45a2 3474 bool relocatable ATTRIBUTE_UNUSED,
d00dd7dc
AM
3475 asymbol **symbols ATTRIBUTE_UNUSED)
3476{
3477 return (bfd_byte *) _bfd_ptr_bfd_null_error (abfd);
3478}
3479
0a1b45a2 3480bool
d00dd7dc
AM
3481_bfd_nolink_bfd_lookup_section_flags
3482 (struct bfd_link_info *info ATTRIBUTE_UNUSED,
3483 struct flag_info *flaginfo ATTRIBUTE_UNUSED,
3484 asection *section)
3485{
3486 return _bfd_bool_bfd_false_error (section->owner);
3487}
3488
0a1b45a2 3489bool
d00dd7dc
AM
3490_bfd_nolink_bfd_is_group_section (bfd *abfd,
3491 const asection *sec ATTRIBUTE_UNUSED)
3492{
3493 return _bfd_bool_bfd_false_error (abfd);
3494}
3495
cb7f4b29
AM
3496const char *
3497_bfd_nolink_bfd_group_name (bfd *abfd,
3498 const asection *sec ATTRIBUTE_UNUSED)
3499{
3500 return _bfd_ptr_bfd_null_error (abfd);
3501}
3502
0a1b45a2 3503bool
d00dd7dc
AM
3504_bfd_nolink_bfd_discard_group (bfd *abfd, asection *sec ATTRIBUTE_UNUSED)
3505{
3506 return _bfd_bool_bfd_false_error (abfd);
3507}
3508
3509struct bfd_link_hash_table *
3510_bfd_nolink_bfd_link_hash_table_create (bfd *abfd)
3511{
3512 return (struct bfd_link_hash_table *) _bfd_ptr_bfd_null_error (abfd);
3513}
3514
3515void
3516_bfd_nolink_bfd_link_just_syms (asection *sec ATTRIBUTE_UNUSED,
3517 struct bfd_link_info *info ATTRIBUTE_UNUSED)
3518{
3519}
3520
3521void
3522_bfd_nolink_bfd_copy_link_hash_symbol_type
3523 (bfd *abfd ATTRIBUTE_UNUSED,
3524 struct bfd_link_hash_entry *from ATTRIBUTE_UNUSED,
3525 struct bfd_link_hash_entry *to ATTRIBUTE_UNUSED)
3526{
3527}
3528
0a1b45a2 3529bool
d00dd7dc
AM
3530_bfd_nolink_bfd_link_split_section (bfd *abfd, asection *sec ATTRIBUTE_UNUSED)
3531{
3532 return _bfd_bool_bfd_false_error (abfd);
3533}
3534
0a1b45a2 3535bool
d00dd7dc
AM
3536_bfd_nolink_section_already_linked (bfd *abfd,
3537 asection *sec ATTRIBUTE_UNUSED,
3538 struct bfd_link_info *info ATTRIBUTE_UNUSED)
3539{
3540 return _bfd_bool_bfd_false_error (abfd);
3541}
3542
0a1b45a2 3543bool
d00dd7dc
AM
3544_bfd_nolink_bfd_define_common_symbol
3545 (bfd *abfd,
3546 struct bfd_link_info *info ATTRIBUTE_UNUSED,
3547 struct bfd_link_hash_entry *h ATTRIBUTE_UNUSED)
3548{
3549 return _bfd_bool_bfd_false_error (abfd);
3550}
3551
3552struct bfd_link_hash_entry *
3553_bfd_nolink_bfd_define_start_stop (struct bfd_link_info *info ATTRIBUTE_UNUSED,
3554 const char *name ATTRIBUTE_UNUSED,
3555 asection *sec)
3556{
3557 return (struct bfd_link_hash_entry *) _bfd_ptr_bfd_null_error (sec->owner);
3558}