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