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