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