* ldwrite.c (build_link_order): Handle lang_data_statement_enum by
[deliverable/binutils-gdb.git] / bfd / linker.c
CommitLineData
da6b2d99 1/* linker.c -- BFD linker routines
9783e04a 2 Copyright (C) 1993, 94 Free Software Foundation, Inc.
da6b2d99
ILT
3 Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support
4
9783e04a 5This file is part of BFD, the Binary File Descriptor library.
da6b2d99 6
9783e04a 7This program is free software; you can redistribute it and/or modify
da6b2d99 8it under the terms of the GNU General Public License as published by
9783e04a
DM
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
da6b2d99 11
9783e04a 12This program is distributed in the hope that it will be useful,
da6b2d99
ILT
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9783e04a
DM
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
da6b2d99
ILT
20
21#include "bfd.h"
22#include "sysdep.h"
23#include "libbfd.h"
24#include "bfdlink.h"
25#include "genlink.h"
26
d4366f97
ILT
27/*
28SECTION
29 Linker Functions
30
31@cindex Linker
32 The linker uses three special entry points in the BFD target
33 vector. It is not necessary to write special routines for
34 these entry points when creating a new BFD back end, since
35 generic versions are provided. However, writing them can
36 speed up linking and make it use significantly less runtime
37 memory.
38
39 The first routine creates a hash table used by the other
40 routines. The second routine adds the symbols from an object
41 file to the hash table. The third routine takes all the
42 object files and links them together to create the output
43 file. These routines are designed so that the linker proper
44 does not need to know anything about the symbols in the object
45 files that it is linking. The linker merely arranges the
46 sections as directed by the linker script and lets BFD handle
47 the details of symbols and relocs.
48
49 The second routine and third routines are passed a pointer to
50 a <<struct bfd_link_info>> structure (defined in
51 <<bfdlink.h>>) which holds information relevant to the link,
52 including the linker hash table (which was created by the
53 first routine) and a set of callback functions to the linker
54 proper.
55
56 The generic linker routines are in <<linker.c>>, and use the
57 header file <<genlink.h>>. As of this writing, the only back
58 ends which have implemented versions of these routines are
59 a.out (in <<aoutx.h>>) and ECOFF (in <<ecoff.c>>). The a.out
60 routines are used as examples throughout this section.
61
62@menu
63@* Creating a Linker Hash Table::
64@* Adding Symbols to the Hash Table::
65@* Performing the Final Link::
66@end menu
67
68INODE
69Creating a Linker Hash Table, Adding Symbols to the Hash Table, Linker Functions, Linker Functions
70SUBSECTION
71 Creating a linker hash table
72
73@cindex _bfd_link_hash_table_create in target vector
74@cindex target vector (_bfd_link_hash_table_create)
75 The linker routines must create a hash table, which must be
76 derived from <<struct bfd_link_hash_table>> described in
77 <<bfdlink.c>>. @xref{Hash Tables} for information on how to
78 create a derived hash table. This entry point is called using
79 the target vector of the linker output file.
80
81 The <<_bfd_link_hash_table_create>> entry point must allocate
82 and initialize an instance of the desired hash table. If the
83 back end does not require any additional information to be
84 stored with the entries in the hash table, the entry point may
85 simply create a <<struct bfd_link_hash_table>>. Most likely,
86 however, some additional information will be needed.
87
88 For example, with each entry in the hash table the a.out
89 linker keeps the index the symbol has in the final output file
90 (this index number is used so that when doing a relocateable
91 link the symbol index used in the output file can be quickly
92 filled in when copying over a reloc). The a.out linker code
93 defines the required structures and functions for a hash table
94 derived from <<struct bfd_link_hash_table>>. The a.out linker
95 hash table is created by the function
96 <<NAME(aout,link_hash_table_create)>>; it simply allocates
97 space for the hash table, initializes it, and returns a
98 pointer to it.
99
100 When writing the linker routines for a new back end, you will
101 generally not know exactly which fields will be required until
102 you have finished. You should simply create a new hash table
103 which defines no additional fields, and then simply add fields
104 as they become necessary.
105
106INODE
107Adding Symbols to the Hash Table, Performing the Final Link, Creating a Linker Hash Table, Linker Functions
108SUBSECTION
109 Adding symbols to the hash table
110
111@cindex _bfd_link_add_symbols in target vector
112@cindex target vector (_bfd_link_add_symbols)
113 The linker proper will call the <<_bfd_link_add_symbols>>
114 entry point for each object file or archive which is to be
115 linked (typically these are the files named on the command
116 line, but some may also come from the linker script). The
117 entry point is responsible for examining the file. For an
118 object file, BFD must add any relevant symbol information to
119 the hash table. For an archive, BFD must determine which
120 elements of the archive should be used and adding them to the
121 link.
122
123 The a.out version of this entry point is
124 <<NAME(aout,link_add_symbols)>>.
125
126@menu
127@* Differing file formats::
128@* Adding symbols from an object file::
129@* Adding symbols from an archive::
130@end menu
131
132INODE
133Differing file formats, Adding symbols from an object file, Adding Symbols to the Hash Table, Adding Symbols to the Hash Table
134SUBSUBSECTION
135 Differing file formats
136
137 Normally all the files involved in a link will be of the same
138 format, but it is also possible to link together different
139 format object files, and the back end must support that. The
140 <<_bfd_link_add_symbols>> entry point is called via the target
141 vector of the file to be added. This has an important
142 consequence: the function may not assume that the hash table
143 is the type created by the corresponding
144 <<_bfd_link_hash_table_create>> vector. All the
145 <<_bfd_link_add_symbols>> function can assume about the hash
146 table is that it is derived from <<struct
147 bfd_link_hash_table>>.
148
149 Sometimes the <<_bfd_link_add_symbols>> function must store
150 some information in the hash table entry to be used by the
151 <<_bfd_final_link>> function. In such a case the <<creator>>
152 field of the hash table must be checked to make sure that the
153 hash table was created by an object file of the same format.
154
155 The <<_bfd_final_link>> routine must be prepared to handle a
156 hash entry without any extra information added by the
157 <<_bfd_link_add_symbols>> function. A hash entry without
158 extra information will also occur when the linker script
159 directs the linker to create a symbol. Note that, regardless
160 of how a hash table entry is added, all the fields will be
161 initialized to some sort of null value by the hash table entry
162 initialization function.
163
164 See <<ecoff_link_add_externals>> for an example of how to
165 check the <<creator>> field before saving information (in this
166 case, the ECOFF external symbol debugging information) in a
167 hash table entry.
168
169INODE
170Adding symbols from an object file, Adding symbols from an archive, Differing file formats, Adding Symbols to the Hash Table
171SUBSUBSECTION
172 Adding symbols from an object file
173
174 When the <<_bfd_link_add_symbols>> routine is passed an object
175 file, it must add all externally visible symbols in that
176 object file to the hash table. The actual work of adding the
177 symbol to the hash table is normally handled by the function
178 <<_bfd_generic_link_add_one_symbol>>. The
179 <<_bfd_link_add_symbols>> routine is responsible for reading
180 all the symbols from the object file and passing the correct
181 information to <<_bfd_generic_link_add_one_symbol>>.
182
183 The <<_bfd_link_add_symbols>> routine should not use
184 <<bfd_canonicalize_symtab>> to read the symbols. The point of
185 providing this routine is to avoid the overhead of converting
186 the symbols into generic <<asymbol>> structures.
187
188@findex _bfd_generic_link_add_one_symbol
189 <<_bfd_generic_link_add_one_symbol>> handles the details of
190 combining common symbols, warning about multiple definitions,
191 and so forth. It takes arguments which describe the symbol to
192 add, notably symbol flags, a section, and an offset. The
193 symbol flags include such things as <<BSF_WEAK>> or
194 <<BSF_INDIRECT>>. The section is a section in the object
195 file, or something like <<bfd_und_section>> for an undefined
196 symbol or <<bfd_com_section>> for a common symbol.
197
198 If the <<_bfd_final_link>> routine is also going to need to
199 read the symbol information, the <<_bfd_link_add_symbols>>
200 routine should save it somewhere attached to the object file
201 BFD. However, the information should only be saved if the
202 <<keep_memory>> field of the <<info>> argument is true, so
203 that the <<-no-keep-memory>> linker switch is effective.
204
205 The a.out function which adds symbols from an object file is
206 <<aout_link_add_object_symbols>>, and most of the interesting
207 work is in <<aout_link_add_symbols>>. The latter saves
208 pointers to the hash tables entries created by
209 <<_bfd_generic_link_add_one_symbol>> indexed by symbol number,
210 so that the <<_bfd_final_link>> routine does not have to call
211 the hash table lookup routine to locate the entry.
212
213INODE
214Adding symbols from an archive, , Adding symbols from an object file, Adding Symbols to the Hash Table
215SUBSUBSECTION
216 Adding symbols from an archive
217
218 When the <<_bfd_link_add_symbols>> routine is passed an
219 archive, it must look through the symbols defined by the
220 archive and decide which elements of the archive should be
221 included in the link. For each such element it must call the
222 <<add_archive_element>> linker callback, and it must add the
223 symbols from the object file to the linker hash table.
224
225@findex _bfd_generic_link_add_archive_symbols
226 In most cases the work of looking through the symbols in the
227 archive should be done by the
228 <<_bfd_generic_link_add_archive_symbols>> function. This
229 function builds a hash table from the archive symbol table and
230 looks through the list of undefined symbols to see which
231 elements should be included.
232 <<_bfd_generic_link_add_archive_symbols>> is passed a function
233 to call to make the final decision about adding an archive
234 element to the link and to do the actual work of adding the
235 symbols to the linker hash table.
236
237 The function passed to
238 <<_bfd_generic_link_add_archive_symbols>> must read the
239 symbols of the archive element and decide whether the archive
240 element should be included in the link. If the element is to
241 be included, the <<add_archive_element>> linker callback
242 routine must be called with the element as an argument, and
243 the elements symbols must be added to the linker hash table
244 just as though the element had itself been passed to the
245 <<_bfd_link_add_symbols>> function.
246
247 When the a.out <<_bfd_link_add_symbols>> function receives an
248 archive, it calls <<_bfd_generic_link_add_archive_symbols>>
249 passing <<aout_link_check_archive_element>> as the function
250 argument. <<aout_link_check_archive_element>> calls
251 <<aout_link_check_ar_symbols>>. If the latter decides to add
252 the element (an element is only added if it provides a real,
253 non-common, definition for a previously undefined or common
254 symbol) it calls the <<add_archive_element>> callback and then
255 <<aout_link_check_archive_element>> calls
256 <<aout_link_add_symbols>> to actually add the symbols to the
257 linker hash table.
258
259 The ECOFF back end is unusual in that it does not normally
260 call <<_bfd_generic_link_add_archive_symbols>>, because ECOFF
261 archives already contain a hash table of symbols. The ECOFF
262 back end searches the archive itself to avoid the overhead of
263 creating a new hash table.
264
265INODE
266Performing the Final Link, , Adding Symbols to the Hash Table, Linker Functions
267SUBSECTION
268 Performing the final link
269
270@cindex _bfd_link_final_link in target vector
271@cindex target vector (_bfd_final_link)
272 When all the input files have been processed, the linker calls
273 the <<_bfd_final_link>> entry point of the output BFD. This
274 routine is responsible for producing the final output file,
275 which has several aspects. It must relocate the contents of
276 the input sections and copy the data into the output sections.
277 It must build an output symbol table including any local
278 symbols from the input files and the global symbols from the
279 hash table. When producing relocateable output, it must
280 modify the input relocs and write them into the output file.
281 There may also be object format dependent work to be done.
282
283 The linker will also call the <<write_object_contents>> entry
284 point when the BFD is closed. The two entry points must work
285 together in order to produce the correct output file.
286
287 The details of how this works are inevitably dependent upon
288 the specific object file format. The a.out
289 <<_bfd_final_link>> routine is <<NAME(aout,final_link)>>.
290
291@menu
292@* Information provided by the linker::
293@* Relocating the section contents::
294@* Writing the symbol table::
295@end menu
296
297INODE
298Information provided by the linker, Relocating the section contents, Performing the Final Link, Performing the Final Link
299SUBSUBSECTION
300 Information provided by the linker
301
302 Before the linker calls the <<_bfd_final_link>> entry point,
303 it sets up some data structures for the function to use.
304
305 The <<input_bfds>> field of the <<bfd_link_info>> structure
306 will point to a list of all the input files included in the
307 link. These files are linked through the <<link_next>> field
308 of the <<bfd>> structure.
309
310 Each section in the output file will have a list of
311 <<link_order>> structures attached to the <<link_order_head>>
312 field (the <<link_order>> structure is defined in
313 <<bfdlink.h>>). These structures describe how to create the
314 contents of the output section in terms of the contents of
315 various input sections, fill constants, and, eventually, other
316 types of information.
317
318INODE
319Relocating the section contents, Writing the symbol table, Information provided by the linker, Performing the Final Link
320SUBSUBSECTION
321 Relocating the section contents
322
323 The <<_bfd_final_link>> function should look through the
324 <<link_order>> structures attached to each section of the
325 output file. Each <<link_order>> structure should either be
326 handled specially, or it should be passed to the function
327 <<_bfd_default_link_order>> which will do the right thing
328 (<<_bfd_default_link_order>> is defined in <<linker.c>>).
329
330 For efficiency, a <<link_order>> of type
331 <<bfd_indirect_link_order>> whose associated section belongs
332 to a BFD of the same format as the output BFD must be handled
333 specially. This type of <<link_order>> describes part of an
334 output section in terms of a section belonging to one of the
335 input files. The <<_bfd_final_link>> function should read the
336 contents of the section and any associated relocs, apply the
337 relocs to the section contents, and write out the modified
338 section contents. If performing a relocateable link, the
339 relocs themselves must also be modified and written out.
340
341@findex _bfd_relocate_contents
342@findex _bfd_final_link_relocate
343 The functions <<_bfd_relocate_contents>> and
344 <<_bfd_final_link_relocate>> provide some general support for
345 performing the actual relocations, notably overflow checking.
346 Their arguments include information about the symbol the
347 relocation is against and a <<reloc_howto_type>> argument
348 which describes the relocation to perform. These functions
349 are defined in <<reloc.c>>.
350
351 The a.out function which handles reading, relocating, and
352 writing section contents is <<aout_link_input_section>>. The
353 actual relocation is done in <<aout_link_input_section_std>>
354 and <<aout_link_input_section_ext>>.
355
356INODE
357Writing the symbol table, , Relocating the section contents, Performing the Final Link
358SUBSUBSECTION
359 Writing the symbol table
360
361 The <<_bfd_final_link>> function must gather all the symbols
362 in the input files and write them out. It must also write out
363 all the symbols in the global hash table. This must be
364 controlled by the <<strip>> and <<discard>> fields of the
365 <<bfd_link_info>> structure.
366
367 The local symbols of the input files will not have been
368 entered into the linker hash table. The <<_bfd_final_link>>
369 routine must consider each input file and include the symbols
370 in the output file. It may be convenient to do this when
371 looking through the <<link_order>> structures, or it may be
372 done by stepping through the <<input_bfds>> list.
373
374 The <<_bfd_final_link>> routine must also traverse the global
375 hash table to gather all the externally visible symbols. It
376 is possible that most of the externally visible symbols may be
377 written out when considering the symbols of each input file,
378 but it is still necessary to traverse the hash table since the
379 linker script may have defined some symbols that are not in
380 any of the input files. The <<written>> field in the
381 <<bfd_link_hash_entry>> structure may be used to determine
382 which entries in the hash table have not already been written
383 out.
384
385 The <<strip>> field of the <<bfd_link_info>> structure
386 controls which symbols are written out. The possible values
387 are listed in <<bfdlink.h>>. If the value is <<strip_some>>,
388 then the <<keep_hash>> field of the <<bfd_link_info>>
389 structure is a hash table of symbols to keep; each symbol
390 should be looked up in this hash table, and only symbols which
391 are present should be included in the output file.
392
393 If the <<strip>> field of the <<bfd_link_info>> structure
394 permits local symbols to be written out, the <<discard>> field
395 is used to further controls which local symbols are included
396 in the output file. If the value is <<discard_l>>, then all
397 local symbols which begin with a certain prefix are discarded;
398 this prefix is described by the <<lprefix>> and
399 <<lprefix_len>> fields of the <<bfd_link_info>> structure.
400
401 The a.out backend handles symbols by calling
402 <<aout_link_write_symbols>> on each input BFD and then
403 traversing the global hash table with the function
404 <<aout_link_write_other_symbol>>. It builds a string table
405 while writing out the symbols, which is written to the output
406 file at the end of <<NAME(aout,final_link)>>.
407*/
408
da6b2d99
ILT
409static struct bfd_hash_entry *generic_link_hash_newfunc
410 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *,
411 const char *));
412static boolean generic_link_add_object_symbols
413 PARAMS ((bfd *, struct bfd_link_info *));
414static boolean generic_link_check_archive_element
415 PARAMS ((bfd *, struct bfd_link_info *, boolean *pneeded));
416static boolean generic_link_add_symbol_list
417 PARAMS ((bfd *, struct bfd_link_info *, bfd_size_type count, asymbol **));
418static boolean generic_add_output_symbol
419 PARAMS ((bfd *, size_t *psymalloc, asymbol *));
420static boolean default_fill_link_order
421 PARAMS ((bfd *, struct bfd_link_info *, asection *,
422 struct bfd_link_order *));
6e07e54f
ILT
423static boolean default_indirect_link_order
424 PARAMS ((bfd *, struct bfd_link_info *, asection *,
425 struct bfd_link_order *));
da6b2d99
ILT
426
427/* The link hash table structure is defined in bfdlink.h. It provides
428 a base hash table which the backend specific hash tables are built
429 upon. */
430
431/* Routine to create an entry in the link hash table. */
432
433struct bfd_hash_entry *
434_bfd_link_hash_newfunc (entry, table, string)
435 struct bfd_hash_entry *entry;
436 struct bfd_hash_table *table;
437 const char *string;
438{
439 struct bfd_link_hash_entry *ret = (struct bfd_link_hash_entry *) entry;
440
441 /* Allocate the structure if it has not already been allocated by a
442 subclass. */
443 if (ret == (struct bfd_link_hash_entry *) NULL)
444 ret = ((struct bfd_link_hash_entry *)
445 bfd_hash_allocate (table, sizeof (struct bfd_link_hash_entry)));
9783e04a
DM
446 if (ret == (struct bfd_link_hash_entry *) NULL)
447 {
d1ad85a6 448 bfd_set_error (bfd_error_no_memory);
9783e04a
DM
449 return NULL;
450 }
da6b2d99
ILT
451
452 /* Call the allocation method of the superclass. */
453 ret = ((struct bfd_link_hash_entry *)
454 bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string));
455
9783e04a
DM
456 if (ret)
457 {
458 /* Initialize the local fields. */
459 ret->type = bfd_link_hash_new;
460 ret->written = false;
461 ret->next = NULL;
462 }
da6b2d99
ILT
463
464 return (struct bfd_hash_entry *) ret;
465}
466
467/* Initialize a link hash table. The BFD argument is the one
468 responsible for creating this table. */
469
470boolean
471_bfd_link_hash_table_init (table, abfd, newfunc)
472 struct bfd_link_hash_table *table;
473 bfd *abfd;
474 struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
475 struct bfd_hash_table *,
476 const char *));
477{
478 table->creator = abfd->xvec;
479 table->undefs = NULL;
480 table->undefs_tail = NULL;
481 return bfd_hash_table_init (&table->table, newfunc);
482}
483
484/* Look up a symbol in a link hash table. If follow is true, we
485 follow bfd_link_hash_indirect and bfd_link_hash_warning links to
486 the real symbol. */
487
488struct bfd_link_hash_entry *
489bfd_link_hash_lookup (table, string, create, copy, follow)
490 struct bfd_link_hash_table *table;
491 const char *string;
492 boolean create;
493 boolean copy;
494 boolean follow;
495{
496 struct bfd_link_hash_entry *ret;
497
498 ret = ((struct bfd_link_hash_entry *)
499 bfd_hash_lookup (&table->table, string, create, copy));
500
501 if (follow && ret != (struct bfd_link_hash_entry *) NULL)
502 {
503 while (ret->type == bfd_link_hash_indirect
504 || ret->type == bfd_link_hash_warning)
505 ret = ret->u.i.link;
506 }
507
508 return ret;
509}
510
511/* Traverse a generic link hash table. The only reason this is not a
512 macro is to do better type checking. This code presumes that an
d4366f97 513 argument passed as a struct bfd_hash_entry * may be caught as a
da6b2d99
ILT
514 struct bfd_link_hash_entry * with no explicit cast required on the
515 call. */
516
517void
518bfd_link_hash_traverse (table, func, info)
519 struct bfd_link_hash_table *table;
520 boolean (*func) PARAMS ((struct bfd_link_hash_entry *, PTR));
521 PTR info;
522{
523 bfd_hash_traverse (&table->table,
524 ((boolean (*) PARAMS ((struct bfd_hash_entry *, PTR)))
525 func),
526 info);
527}
528
529/* Add a symbol to the linker hash table undefs list. */
530
531INLINE void
532bfd_link_add_undef (table, h)
533 struct bfd_link_hash_table *table;
534 struct bfd_link_hash_entry *h;
535{
536 BFD_ASSERT (h->next == NULL);
537 if (table->undefs_tail != (struct bfd_link_hash_entry *) NULL)
538 table->undefs_tail->next = h;
539 if (table->undefs == (struct bfd_link_hash_entry *) NULL)
540 table->undefs = h;
541 table->undefs_tail = h;
542}
543\f
544/* Routine to create an entry in an generic link hash table. */
545
546static struct bfd_hash_entry *
547generic_link_hash_newfunc (entry, table, string)
548 struct bfd_hash_entry *entry;
549 struct bfd_hash_table *table;
550 const char *string;
551{
552 struct generic_link_hash_entry *ret =
553 (struct generic_link_hash_entry *) entry;
554
555 /* Allocate the structure if it has not already been allocated by a
556 subclass. */
557 if (ret == (struct generic_link_hash_entry *) NULL)
558 ret = ((struct generic_link_hash_entry *)
559 bfd_hash_allocate (table, sizeof (struct generic_link_hash_entry)));
9783e04a
DM
560 if (ret == (struct generic_link_hash_entry *) NULL)
561 {
d1ad85a6 562 bfd_set_error (bfd_error_no_memory);
9783e04a
DM
563 return NULL;
564 }
da6b2d99
ILT
565
566 /* Call the allocation method of the superclass. */
567 ret = ((struct generic_link_hash_entry *)
568 _bfd_link_hash_newfunc ((struct bfd_hash_entry *) ret,
569 table, string));
570
9783e04a
DM
571 if (ret)
572 {
573 /* Set local fields. */
574 ret->sym = NULL;
575 }
da6b2d99
ILT
576
577 return (struct bfd_hash_entry *) ret;
578}
579
580/* Create an generic link hash table. */
581
582struct bfd_link_hash_table *
583_bfd_generic_link_hash_table_create (abfd)
584 bfd *abfd;
585{
586 struct generic_link_hash_table *ret;
587
588 ret = ((struct generic_link_hash_table *)
9783e04a
DM
589 malloc (sizeof (struct generic_link_hash_table)));
590 if (!ret)
591 {
d1ad85a6 592 bfd_set_error (bfd_error_no_memory);
9783e04a
DM
593 return (struct bfd_link_hash_table *) NULL;
594 }
da6b2d99
ILT
595 if (! _bfd_link_hash_table_init (&ret->root, abfd,
596 generic_link_hash_newfunc))
597 {
598 free (ret);
599 return (struct bfd_link_hash_table *) NULL;
600 }
601 return &ret->root;
602}
603\f
604/* Generic function to add symbols from an object file to the global
605 hash table. */
606
607boolean
608_bfd_generic_link_add_symbols (abfd, info)
609 bfd *abfd;
610 struct bfd_link_info *info;
611{
612 boolean ret;
613
614 switch (bfd_get_format (abfd))
615 {
616 case bfd_object:
617 ret = generic_link_add_object_symbols (abfd, info);
618 break;
619 case bfd_archive:
620 ret = _bfd_generic_link_add_archive_symbols
621 (abfd, info, generic_link_check_archive_element);
622 break;
623 default:
d1ad85a6 624 bfd_set_error (bfd_error_wrong_format);
da6b2d99
ILT
625 ret = false;
626 }
627
da6b2d99
ILT
628 return ret;
629}
630
631/* Add symbols from an object file to the global hash table. */
632
633static boolean
634generic_link_add_object_symbols (abfd, info)
635 bfd *abfd;
636 struct bfd_link_info *info;
637{
638 size_t symsize;
639 asymbol **symbols;
640 bfd_size_type symbol_count;
f1cca647 641 boolean result;
da6b2d99
ILT
642
643 symsize = get_symtab_upper_bound (abfd);
f1cca647
ILT
644 symbols = (asymbol **) malloc (symsize);
645 if (symbols == NULL && symsize != 0)
646 {
647 bfd_set_error (bfd_error_no_memory);
648 return false;
649 }
da6b2d99
ILT
650 symbol_count = bfd_canonicalize_symtab (abfd, symbols);
651
f1cca647
ILT
652 result = generic_link_add_symbol_list (abfd, info, symbol_count, symbols);
653 free (symbols);
654 return result;
da6b2d99
ILT
655}
656\f
657/* We build a hash table of all symbols defined in an archive. */
658
659/* An archive symbol may be defined by multiple archive elements.
660 This linked list is used to hold the elements. */
661
662struct archive_list
663{
664 struct archive_list *next;
665 int indx;
666};
667
668/* An entry in an archive hash table. */
669
670struct archive_hash_entry
671{
672 struct bfd_hash_entry root;
673 /* Where the symbol is defined. */
674 struct archive_list *defs;
675};
676
677/* An archive hash table itself. */
678
679struct archive_hash_table
680{
681 struct bfd_hash_table table;
682};
683
684static struct bfd_hash_entry *archive_hash_newfunc
685 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
686static boolean archive_hash_table_init
687 PARAMS ((struct archive_hash_table *,
688 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
689 struct bfd_hash_table *,
690 const char *)));
691
692/* Create a new entry for an archive hash table. */
693
694static struct bfd_hash_entry *
695archive_hash_newfunc (entry, table, string)
696 struct bfd_hash_entry *entry;
697 struct bfd_hash_table *table;
698 const char *string;
699{
700 struct archive_hash_entry *ret = (struct archive_hash_entry *) entry;
701
702 /* Allocate the structure if it has not already been allocated by a
703 subclass. */
704 if (ret == (struct archive_hash_entry *) NULL)
705 ret = ((struct archive_hash_entry *)
706 bfd_hash_allocate (table, sizeof (struct archive_hash_entry)));
9783e04a
DM
707 if (ret == (struct archive_hash_entry *) NULL)
708 {
d1ad85a6 709 bfd_set_error (bfd_error_no_memory);
9783e04a
DM
710 return NULL;
711 }
da6b2d99
ILT
712
713 /* Call the allocation method of the superclass. */
714 ret = ((struct archive_hash_entry *)
715 bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string));
716
9783e04a
DM
717 if (ret)
718 {
719 /* Initialize the local fields. */
720 ret->defs = (struct archive_list *) NULL;
721 }
da6b2d99
ILT
722
723 return (struct bfd_hash_entry *) ret;
724}
725
726/* Initialize an archive hash table. */
727
728static boolean
729archive_hash_table_init (table, newfunc)
730 struct archive_hash_table *table;
731 struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
732 struct bfd_hash_table *,
733 const char *));
734{
735 return bfd_hash_table_init (&table->table, newfunc);
736}
737
738/* Look up an entry in an archive hash table. */
739
740#define archive_hash_lookup(t, string, create, copy) \
741 ((struct archive_hash_entry *) \
742 bfd_hash_lookup (&(t)->table, (string), (create), (copy)))
743
744/* Free an archive hash table. */
745
746#define archive_hash_table_free(t) bfd_hash_table_free (&(t)->table)
747
748/* Generic function to add symbols from an archive file to the global
749 hash file. This function presumes that the archive symbol table
750 has already been read in (this is normally done by the
751 bfd_check_format entry point). It looks through the undefined and
752 common symbols and searches the archive symbol table for them. If
753 it finds an entry, it includes the associated object file in the
754 link.
755
756 The old linker looked through the archive symbol table for
757 undefined symbols. We do it the other way around, looking through
758 undefined symbols for symbols defined in the archive. The
759 advantage of the newer scheme is that we only have to look through
760 the list of undefined symbols once, whereas the old method had to
761 re-search the symbol table each time a new object file was added.
762
763 The CHECKFN argument is used to see if an object file should be
764 included. CHECKFN should set *PNEEDED to true if the object file
765 should be included, and must also call the bfd_link_info
766 add_archive_element callback function and handle adding the symbols
767 to the global hash table. CHECKFN should only return false if some
768 sort of error occurs.
769
770 For some formats, such as a.out, it is possible to look through an
771 object file but not actually include it in the link. The
772 archive_pass field in a BFD is used to avoid checking the symbols
773 of an object files too many times. When an object is included in
774 the link, archive_pass is set to -1. If an object is scanned but
775 not included, archive_pass is set to the pass number. The pass
776 number is incremented each time a new object file is included. The
777 pass number is used because when a new object file is included it
778 may create new undefined symbols which cause a previously examined
779 object file to be included. */
780
781boolean
782_bfd_generic_link_add_archive_symbols (abfd, info, checkfn)
783 bfd *abfd;
784 struct bfd_link_info *info;
785 boolean (*checkfn) PARAMS ((bfd *, struct bfd_link_info *,
786 boolean *pneeded));
787{
788 carsym *arsyms;
789 carsym *arsym_end;
790 register carsym *arsym;
791 int pass;
792 struct archive_hash_table arsym_hash;
793 int indx;
794 struct bfd_link_hash_entry **pundef;
795
796 if (! bfd_has_map (abfd))
797 {
d1ad85a6 798 bfd_set_error (bfd_error_no_symbols);
da6b2d99
ILT
799 return false;
800 }
801
802 arsyms = bfd_ardata (abfd)->symdefs;
803 arsym_end = arsyms + bfd_ardata (abfd)->symdef_count;
804
805 /* In order to quickly determine whether an symbol is defined in
806 this archive, we build a hash table of the symbols. */
807 if (! archive_hash_table_init (&arsym_hash, archive_hash_newfunc))
808 return false;
809 for (arsym = arsyms, indx = 0; arsym < arsym_end; arsym++, indx++)
810 {
811 struct archive_hash_entry *arh;
ecff0ffe 812 struct archive_list *l, **pp;
da6b2d99
ILT
813
814 arh = archive_hash_lookup (&arsym_hash, arsym->name, true, false);
815 if (arh == (struct archive_hash_entry *) NULL)
f1cca647
ILT
816 goto error_return;
817 l = (struct archive_list *)
818 obstack_alloc (&(&(&arsym_hash)->table)->memory,
819 sizeof (struct archive_list));
820 if (l == NULL)
821 {
822 bfd_set_error (bfd_error_no_memory);
823 goto error_return;
824 }
da6b2d99 825 l->indx = indx;
ecff0ffe
ILT
826 for (pp = &arh->defs;
827 *pp != (struct archive_list *) NULL;
828 pp = &(*pp)->next)
829 ;
830 *pp = l;
831 l->next = NULL;
da6b2d99
ILT
832 }
833
834 pass = 1;
835
836 /* New undefined symbols are added to the end of the list, so we
837 only need to look through it once. */
838 pundef = &info->hash->undefs;
839 while (*pundef != (struct bfd_link_hash_entry *) NULL)
840 {
841 struct bfd_link_hash_entry *h;
842 struct archive_hash_entry *arh;
843 struct archive_list *l;
844
845 h = *pundef;
846
847 /* When a symbol is defined, it is not necessarily removed from
848 the list. */
849 if (h->type != bfd_link_hash_undefined
850 && h->type != bfd_link_hash_common)
851 {
852 /* Remove this entry from the list, for general cleanliness
853 and because we are going to look through the list again
854 if we search any more libraries. We can't remove the
855 entry if it is the tail, because that would lose any
856 entries we add to the list later on. */
857 if (*pundef != info->hash->undefs_tail)
858 *pundef = (*pundef)->next;
859 else
860 pundef = &(*pundef)->next;
861 continue;
862 }
863
864 /* Look for this symbol in the archive symbol map. */
865 arh = archive_hash_lookup (&arsym_hash, h->root.string, false, false);
866 if (arh == (struct archive_hash_entry *) NULL)
867 {
868 pundef = &(*pundef)->next;
869 continue;
870 }
871
872 /* Look at all the objects which define this symbol. */
873 for (l = arh->defs; l != (struct archive_list *) NULL; l = l->next)
874 {
875 bfd *element;
876 boolean needed;
877
878 /* If the symbol has gotten defined along the way, quit. */
879 if (h->type != bfd_link_hash_undefined
880 && h->type != bfd_link_hash_common)
881 break;
882
883 element = bfd_get_elt_at_index (abfd, l->indx);
884 if (element == (bfd *) NULL)
f1cca647 885 goto error_return;
da6b2d99
ILT
886
887 /* If we've already included this element, or if we've
888 already checked it on this pass, continue. */
889 if (element->archive_pass == -1
890 || element->archive_pass == pass)
891 continue;
892
893 /* If we can't figure this element out, just ignore it. */
894 if (! bfd_check_format (element, bfd_object))
895 {
896 element->archive_pass = -1;
897 continue;
898 }
899
900 /* CHECKFN will see if this element should be included, and
901 go ahead and include it if appropriate. */
902 if (! (*checkfn) (element, info, &needed))
f1cca647 903 goto error_return;
da6b2d99
ILT
904
905 if (! needed)
906 element->archive_pass = pass;
907 else
908 {
909 element->archive_pass = -1;
910
911 /* Increment the pass count to show that we may need to
912 recheck object files which were already checked. */
913 ++pass;
914 }
915 }
916
917 pundef = &(*pundef)->next;
918 }
919
920 archive_hash_table_free (&arsym_hash);
921
922 return true;
f1cca647
ILT
923
924 error_return:
925 archive_hash_table_free (&arsym_hash);
926 return false;
da6b2d99
ILT
927}
928\f
929/* See if we should include an archive element. */
930
931static boolean
932generic_link_check_archive_element (abfd, info, pneeded)
933 bfd *abfd;
934 struct bfd_link_info *info;
935 boolean *pneeded;
936{
937 size_t symsize;
f1cca647 938 asymbol **symbols = NULL;
da6b2d99
ILT
939 bfd_size_type symbol_count;
940 asymbol **pp, **ppend;
941
942 *pneeded = false;
943
944 symsize = get_symtab_upper_bound (abfd);
f1cca647
ILT
945 symbols = (asymbol **) malloc (symsize);
946 if (symbols == NULL && symsize != 0)
947 {
948 bfd_set_error (bfd_error_no_memory);
949 goto error_return;
950 }
951
da6b2d99
ILT
952 symbol_count = bfd_canonicalize_symtab (abfd, symbols);
953
954 pp = symbols;
955 ppend = symbols + symbol_count;
956 for (; pp < ppend; pp++)
957 {
958 asymbol *p;
959 struct bfd_link_hash_entry *h;
960
961 p = *pp;
962
963 /* We are only interested in globally visible symbols. */
964 if (! bfd_is_com_section (p->section)
965 && (p->flags & (BSF_GLOBAL | BSF_INDIRECT | BSF_WEAK)) == 0)
966 continue;
967
968 /* We are only interested if we know something about this
969 symbol, and it is undefined or common. An undefined weak
970 symbol (type bfd_link_hash_weak) is not considered to be a
971 reference when pulling files out of an archive. See the SVR4
972 ABI, p. 4-27. */
973 h = bfd_link_hash_lookup (info->hash, bfd_asymbol_name (p), false,
974 false, true);
975 if (h == (struct bfd_link_hash_entry *) NULL
976 || (h->type != bfd_link_hash_undefined
977 && h->type != bfd_link_hash_common))
978 continue;
979
980 /* P is a symbol we are looking for. */
981
982 if (! bfd_is_com_section (p->section))
983 {
984 /* This object file defines this symbol, so pull it in. */
985 if (! (*info->callbacks->add_archive_element) (info, abfd,
986 bfd_asymbol_name (p)))
f1cca647 987 goto error_return;
da6b2d99
ILT
988 if (! generic_link_add_symbol_list (abfd, info, symbol_count,
989 symbols))
f1cca647 990 goto error_return;
da6b2d99 991 *pneeded = true;
f1cca647 992 goto successful_return;
da6b2d99
ILT
993 }
994
995 /* P is a common symbol. */
996
997 if (h->type == bfd_link_hash_undefined)
998 {
999 bfd *symbfd;
1000
1001 symbfd = h->u.undef.abfd;
1002 if (symbfd == (bfd *) NULL)
1003 {
1004 /* This symbol was created as undefined from outside
1005 BFD. We assume that we should link in the object
1006 file. This is for the -u option in the linker. */
1007 if (! (*info->callbacks->add_archive_element)
1008 (info, abfd, bfd_asymbol_name (p)))
f1cca647 1009 goto error_return;
da6b2d99 1010 *pneeded = true;
f1cca647 1011 goto successful_return;
da6b2d99
ILT
1012 }
1013
1014 /* Turn the symbol into a common symbol but do not link in
1015 the object file. This is how a.out works. Object
1016 formats that require different semantics must implement
1017 this function differently. This symbol is already on the
6e07e54f
ILT
1018 undefs list. We add the section to a common section
1019 attached to symbfd to ensure that it is in a BFD which
1020 will be linked in. */
da6b2d99
ILT
1021 h->type = bfd_link_hash_common;
1022 h->u.c.size = bfd_asymbol_value (p);
6e07e54f
ILT
1023 if (p->section == &bfd_com_section)
1024 h->u.c.section = bfd_make_section_old_way (symbfd, "COMMON");
1025 else
1026 h->u.c.section = bfd_make_section_old_way (symbfd,
1027 p->section->name);
a20bdb43 1028 h->u.c.section->flags = SEC_ALLOC;
da6b2d99
ILT
1029 }
1030 else
1031 {
1032 /* Adjust the size of the common symbol if necessary. This
1033 is how a.out works. Object formats that require
1034 different semantics must implement this function
1035 differently. */
1036 if (bfd_asymbol_value (p) > h->u.c.size)
1037 h->u.c.size = bfd_asymbol_value (p);
1038 }
1039 }
1040
1041 /* This archive element is not needed. */
f1cca647
ILT
1042
1043 successful_return:
1044 if (symbols != NULL)
1045 free (symbols);
da6b2d99 1046 return true;
f1cca647
ILT
1047
1048 error_return:
1049 if (symbols != NULL)
1050 free (symbols);
1051 return false;
da6b2d99
ILT
1052}
1053
1054/* Add the symbol from an object file to the global hash table. */
1055
1056static boolean
1057generic_link_add_symbol_list (abfd, info, symbol_count, symbols)
1058 bfd *abfd;
1059 struct bfd_link_info *info;
1060 bfd_size_type symbol_count;
1061 asymbol **symbols;
1062{
1063 asymbol **pp, **ppend;
1064
1065 pp = symbols;
1066 ppend = symbols + symbol_count;
1067 for (; pp < ppend; pp++)
1068 {
1069 asymbol *p;
1070
1071 p = *pp;
1072
1073 if ((p->flags & (BSF_INDIRECT
1074 | BSF_WARNING
1075 | BSF_GLOBAL
1076 | BSF_CONSTRUCTOR
1077 | BSF_WEAK)) != 0
1078 || bfd_get_section (p) == &bfd_und_section
1079 || bfd_is_com_section (bfd_get_section (p))
1080 || bfd_get_section (p) == &bfd_ind_section)
1081 {
1082 const char *name;
1083 const char *string;
1084 struct generic_link_hash_entry *h;
1085
1086 name = bfd_asymbol_name (p);
1087 if ((p->flags & BSF_INDIRECT) != 0
1088 || p->section == &bfd_ind_section)
1089 string = bfd_asymbol_name ((asymbol *) p->value);
1090 else if ((p->flags & BSF_WARNING) != 0)
1091 {
1092 /* The name of P is actually the warning string, and the
1093 value is actually a pointer to the symbol to warn
1094 about. */
1095 string = name;
1096 name = bfd_asymbol_name ((asymbol *) p->value);
1097 }
1098 else
1099 string = NULL;
6e07e54f
ILT
1100
1101 /* We pass the constructor argument as false, for
1102 compatibility. As backends are converted they can
1103 arrange to pass the right value (the right value is the
1104 size of a function pointer if gcc uses collect2 for the
f1cca647 1105 object file format, zero if it does not). */
da6b2d99
ILT
1106 if (! (_bfd_generic_link_add_one_symbol
1107 (info, abfd, name, p->flags, bfd_get_section (p),
f1cca647 1108 p->value, string, false, 0,
da6b2d99
ILT
1109 (struct bfd_link_hash_entry **) &h)))
1110 return false;
1111
1112 /* Save the BFD symbol so that we don't lose any backend
1113 specific information that may be attached to it. We only
1114 want this one if it gives more information than the
1115 existing one; we don't want to replace a defined symbol
1116 with an undefined one. This routine may be called with a
1117 hash table other than the generic hash table, so we only
1118 do this if we are certain that the hash table is a
1119 generic one. */
1120 if (info->hash->creator == abfd->xvec)
1121 {
1122 if (h->sym == (asymbol *) NULL
1123 || (bfd_get_section (p) != &bfd_und_section
1124 && (! bfd_is_com_section (bfd_get_section (p))
1125 || (bfd_get_section (h->sym) == &bfd_und_section))))
c3156966
ILT
1126 {
1127 h->sym = p;
1128 /* BSF_OLD_COMMON is a hack to support COFF reloc
1129 reading, and it should go away when the COFF
1130 linker is switched to the new version. */
1131 if (bfd_is_com_section (bfd_get_section (p)))
1132 p->flags |= BSF_OLD_COMMON;
1133 }
da6b2d99
ILT
1134 }
1135 }
1136 }
1137
1138 return true;
1139}
1140\f
1141/* We use a state table to deal with adding symbols from an object
1142 file. The first index into the state table describes the symbol
1143 from the object file. The second index into the state table is the
1144 type of the symbol in the hash table. */
1145
1146/* The symbol from the object file is turned into one of these row
1147 values. */
1148
1149enum link_row
1150{
1151 UNDEF_ROW, /* Undefined. */
1152 UNDEFW_ROW, /* Weak undefined. */
1153 DEF_ROW, /* Defined. */
1154 DEFW_ROW, /* Weak defined. */
1155 COMMON_ROW, /* Common. */
1156 INDR_ROW, /* Indirect. */
1157 WARN_ROW, /* Warning. */
1158 SET_ROW /* Member of set. */
1159};
1160
1161/* The actions to take in the state table. */
1162
1163enum link_action
1164{
1165 FAIL, /* Abort. */
1166 UND, /* Mark symbol undefined. */
1167 WEAK, /* Mark symbol weak undefined. */
1168 DEF, /* Mark symbol defined. */
1169 COM, /* Mark symbol common. */
1170 CREF, /* Possibly warn about common reference to defined symbol. */
1171 CDEF, /* Define existing common symbol. */
1172 NOACT, /* No action. */
1173 BIG, /* Mark symbol common using largest size. */
1174 MDEF, /* Multiple definition error. */
1175 IND, /* Make indirect symbol. */
1176 SET, /* Add value to set. */
1177 MWARN, /* Make warning symbol. */
1178 WARN, /* Issue warning. */
1179 CYCLE, /* Repeat with symbol pointed to. */
1180 WARNC /* Issue warning and then CYCLE. */
1181};
1182
1183/* The state table itself. The first index is a link_row and the
1184 second index is a bfd_link_hash_type. */
1185
1186static const enum link_action link_action[8][7] =
1187{
1188 /* current\prev new undef weak def com indr warn */
1189 /* UNDEF_ROW */ {UND, NOACT, NOACT, NOACT, NOACT, CYCLE, WARNC },
1190 /* UNDEFW_ROW */ {WEAK, WEAK, NOACT, NOACT, NOACT, CYCLE, WARNC },
1191 /* DEF_ROW */ {DEF, DEF, DEF, MDEF, CDEF, CYCLE, CYCLE },
1192 /* DEFW_ROW */ {DEF, DEF, DEF, NOACT, NOACT, CYCLE, CYCLE },
1193 /* COMMON_ROW */ {COM, COM, COM, CREF, BIG, CYCLE, WARNC },
1194 /* INDR_ROW */ {IND, IND, IND, MDEF, MDEF, MDEF, WARNC },
1195 /* WARN_ROW */ {MWARN, WARN, WARN, MWARN, MWARN, MWARN, NOACT },
1196 /* SET_ROW */ {SET, SET, SET, SET, SET, CYCLE, WARNC }
1197};
1198
1199/* Add a symbol to the global hash table.
1200 ABFD is the BFD the symbol comes from.
1201 NAME is the name of the symbol.
1202 FLAGS is the BSF_* bits associated with the symbol.
1203 SECTION is the section in which the symbol is defined; this may be
1204 bfd_und_section or bfd_com_section.
1205 VALUE is the value of the symbol, relative to the section.
1206 STRING is used for either an indirect symbol, in which case it is
1207 the name of the symbol to indirect to, or a warning symbol, in
1208 which case it is the warning string.
1209 COPY is true if NAME or STRING must be copied into locally
1210 allocated memory if they need to be saved.
6e07e54f
ILT
1211 CONSTRUCTOR is true if we should automatically collect gcc
1212 constructor or destructor names.
da6b2d99
ILT
1213 HASHP, if not NULL, is a place to store the created hash table
1214 entry. */
1215
1216boolean
1217_bfd_generic_link_add_one_symbol (info, abfd, name, flags, section, value,
f1cca647 1218 string, copy, constructor, hashp)
da6b2d99
ILT
1219 struct bfd_link_info *info;
1220 bfd *abfd;
1221 const char *name;
1222 flagword flags;
1223 asection *section;
1224 bfd_vma value;
1225 const char *string;
1226 boolean copy;
6e07e54f 1227 boolean constructor;
da6b2d99
ILT
1228 struct bfd_link_hash_entry **hashp;
1229{
1230 enum link_row row;
1231 struct bfd_link_hash_entry *h;
1232 boolean cycle;
1233
1234 if (section == &bfd_ind_section
1235 || (flags & BSF_INDIRECT) != 0)
1236 row = INDR_ROW;
1237 else if ((flags & BSF_WARNING) != 0)
1238 row = WARN_ROW;
1239 else if ((flags & BSF_CONSTRUCTOR) != 0)
1240 row = SET_ROW;
1241 else if (section == &bfd_und_section)
1242 {
1243 if ((flags & BSF_WEAK) != 0)
1244 row = UNDEFW_ROW;
1245 else
1246 row = UNDEF_ROW;
1247 }
1248 else if ((flags & BSF_WEAK) != 0)
1249 row = DEFW_ROW;
1250 else if (bfd_is_com_section (section))
1251 row = COMMON_ROW;
1252 else
1253 row = DEF_ROW;
1254
1255 h = bfd_link_hash_lookup (info->hash, name, true, copy, false);
1256 if (h == (struct bfd_link_hash_entry *) NULL)
1257 {
1258 if (hashp != (struct bfd_link_hash_entry **) NULL)
1259 *hashp = NULL;
1260 return false;
1261 }
1262
1263 if (info->notice_hash != (struct bfd_hash_table *) NULL
1264 && (bfd_hash_lookup (info->notice_hash, name, false, false)
1265 != (struct bfd_hash_entry *) NULL))
1266 {
1267 if (! (*info->callbacks->notice) (info, name, abfd, section, value))
1268 return false;
1269 }
1270
1271 if (hashp != (struct bfd_link_hash_entry **) NULL)
1272 *hashp = h;
1273
1274 do
1275 {
1276 enum link_action action;
1277
1278 cycle = false;
1279 action = link_action[(int) row][(int) h->type];
1280 switch (action)
1281 {
1282 case FAIL:
1283 abort ();
1284 case UND:
1285 h->type = bfd_link_hash_undefined;
1286 h->u.undef.abfd = abfd;
1287 bfd_link_add_undef (info->hash, h);
1288 break;
1289 case WEAK:
1290 h->type = bfd_link_hash_weak;
1291 h->u.undef.abfd = abfd;
1292 break;
1293 case CDEF:
1294 BFD_ASSERT (h->type == bfd_link_hash_common);
1295 if (! ((*info->callbacks->multiple_common)
1296 (info, name,
1297 h->u.c.section->owner, bfd_link_hash_common, h->u.c.size,
1298 abfd, bfd_link_hash_defined, (bfd_vma) 0)))
1299 return false;
1300 /* Fall through. */
1301 case DEF:
1302 h->type = bfd_link_hash_defined;
1303 h->u.def.section = section;
1304 h->u.def.value = value;
6e07e54f
ILT
1305
1306 /* If we have been asked to, we act like collect2 and
1307 identify all functions that might be global constructors
1308 and destructors and pass them up in a callback. We only
1309 do this for certain object file types, since many object
1310 file types can handle this automatically. */
1311 if (constructor && name[0] == '_')
1312 {
1313 const char *s;
1314
1315 /* A constructor or destructor name starts like this:
1316 _+GLOBAL_[_.$][ID][_.$]
1317 where the first [_.$] and the second are the same
1318 character (we accept any character there, in case a
1319 new object file format comes along with even worse
1320 naming restrictions). */
1321
1322#define CONS_PREFIX "GLOBAL_"
1323#define CONS_PREFIX_LEN (sizeof CONS_PREFIX - 1)
1324
1325 s = name + 1;
1326 while (*s == '_')
1327 ++s;
1328 if (s[0] == 'G'
1329 && strncmp (s, CONS_PREFIX, CONS_PREFIX_LEN - 1) == 0)
1330 {
1331 char c;
1332
1333 c = s[CONS_PREFIX_LEN + 1];
1334 if ((c == 'I' || c == 'D')
1335 && s[CONS_PREFIX_LEN] == s[CONS_PREFIX_LEN + 2])
1336 {
1337 if (! ((*info->callbacks->constructor)
1338 (info,
f1cca647 1339 c == 'I' ? true : false,
6e07e54f
ILT
1340 name, abfd, section, value)))
1341 return false;
1342 }
1343 }
1344 }
1345
da6b2d99
ILT
1346 break;
1347 case COM:
1348 if (h->type == bfd_link_hash_new)
1349 bfd_link_add_undef (info->hash, h);
1350 h->type = bfd_link_hash_common;
1351 h->u.c.size = value;
1352 if (section == &bfd_com_section)
a20bdb43
ILT
1353 {
1354 h->u.c.section = bfd_make_section_old_way (abfd, "COMMON");
1355 h->u.c.section->flags = SEC_ALLOC;
1356 }
da6b2d99 1357 else if (section->owner != abfd)
a20bdb43
ILT
1358 {
1359 h->u.c.section = bfd_make_section_old_way (abfd, section->name);
1360 h->u.c.section->flags = SEC_ALLOC;
1361 }
da6b2d99
ILT
1362 else
1363 h->u.c.section = section;
1364 break;
1365 case NOACT:
1366 break;
1367 case BIG:
1368 BFD_ASSERT (h->type == bfd_link_hash_common);
1369 if (! ((*info->callbacks->multiple_common)
1370 (info, name,
1371 h->u.c.section->owner, bfd_link_hash_common, h->u.c.size,
1372 abfd, bfd_link_hash_common, value)))
1373 return false;
1374 if (value > h->u.c.size)
1375 h->u.c.size = value;
da6b2d99
ILT
1376 break;
1377 case CREF:
1378 BFD_ASSERT (h->type == bfd_link_hash_defined);
1379 if (! ((*info->callbacks->multiple_common)
1380 (info, name,
1381 h->u.def.section->owner, bfd_link_hash_defined, (bfd_vma) 0,
1382 abfd, bfd_link_hash_common, value)))
1383 return false;
1384 break;
1385 case MDEF:
1386 {
1387 asection *msec;
1388 bfd_vma mval;
1389
1390 switch (h->type)
1391 {
1392 case bfd_link_hash_defined:
1393 msec = h->u.def.section;
1394 mval = h->u.def.value;
1395 break;
1396 case bfd_link_hash_common:
1397 msec = &bfd_com_section;
1398 mval = h->u.c.size;
1399 break;
1400 case bfd_link_hash_indirect:
1401 msec = &bfd_ind_section;
1402 mval = 0;
1403 break;
1404 default:
1405 abort ();
1406 }
1407
1408 if (! ((*info->callbacks->multiple_definition)
1409 (info, name, msec->owner, msec, mval, abfd, section,
1410 value)))
1411 return false;
1412 }
1413 break;
1414 case IND:
1415 {
1416 struct bfd_link_hash_entry *inh;
1417
1418 /* STRING is the name of the symbol we want to indirect
1419 to. */
1420 inh = bfd_link_hash_lookup (info->hash, string, true, copy,
1421 false);
1422 if (inh == (struct bfd_link_hash_entry *) NULL)
1423 return false;
1424 if (inh->type == bfd_link_hash_new)
1425 {
1426 inh->type = bfd_link_hash_undefined;
1427 inh->u.undef.abfd = abfd;
1428 bfd_link_add_undef (info->hash, inh);
1429 }
1430 h->type = bfd_link_hash_indirect;
1431 h->u.i.link = inh;
1432 }
1433 break;
1434 case SET:
f1cca647
ILT
1435 if (! (*info->callbacks->add_to_set) (info, h, BFD_RELOC_CTOR,
1436 abfd, section, value))
da6b2d99
ILT
1437 return false;
1438 break;
1439 case WARN:
1440 case WARNC:
1441 if (h->u.i.warning != NULL)
1442 {
1443 if (! (*info->callbacks->warning) (info, h->u.i.warning))
1444 return false;
1445 /* Only issue a warning once. */
1446 h->u.i.warning = NULL;
1447 }
1448 if (action == WARN)
1449 break;
1450 /* Fall through. */
1451 case CYCLE:
1452 h = h->u.i.link;
1453 cycle = true;
1454 break;
1455 case MWARN:
1456 {
1457 struct bfd_link_hash_entry *sub;
1458
1459 /* STRING is the warning to give. */
1460 sub = ((struct bfd_link_hash_entry *)
1461 bfd_hash_allocate (&info->hash->table,
1462 sizeof (struct bfd_link_hash_entry)));
9783e04a
DM
1463 if (!sub)
1464 {
d1ad85a6 1465 bfd_set_error (bfd_error_no_memory);
9783e04a
DM
1466 return false;
1467 }
da6b2d99
ILT
1468 *sub = *h;
1469 h->type = bfd_link_hash_warning;
1470 h->u.i.link = sub;
1471 if (! copy)
1472 h->u.i.warning = string;
1473 else
1474 {
1475 char *w;
1476
1477 w = bfd_hash_allocate (&info->hash->table,
1478 strlen (string) + 1);
1479 strcpy (w, string);
1480 h->u.i.warning = w;
1481 }
1482 }
1483 break;
1484 }
1485 }
1486 while (cycle);
1487
1488 return true;
1489}
1490\f
1491/* Generic final link routine. */
1492
1493boolean
1494_bfd_generic_final_link (abfd, info)
1495 bfd *abfd;
1496 struct bfd_link_info *info;
1497{
1498 bfd *sub;
1499 asection *o;
1500 struct bfd_link_order *p;
1501 size_t outsymalloc;
1502 struct generic_write_global_symbol_info wginfo;
1503
1504 abfd->outsymbols = (asymbol **) NULL;
1505 abfd->symcount = 0;
1506 outsymalloc = 0;
1507
1508 /* Build the output symbol table. This also reads in the symbols
1509 for all the input BFDs, keeping them in the outsymbols field. */
1510 for (sub = info->input_bfds; sub != (bfd *) NULL; sub = sub->link_next)
1511 if (! _bfd_generic_link_output_symbols (abfd, sub, info, &outsymalloc))
1512 return false;
1513
1514 /* Accumulate the global symbols. */
9783e04a 1515 wginfo.info = info;
da6b2d99
ILT
1516 wginfo.output_bfd = abfd;
1517 wginfo.psymalloc = &outsymalloc;
1518 _bfd_generic_link_hash_traverse (_bfd_generic_hash_table (info),
1519 _bfd_generic_link_write_global_symbol,
1520 (PTR) &wginfo);
1521
1522 if (info->relocateable)
1523 {
1524 /* Allocate space for the output relocs for each section. */
1525 for (o = abfd->sections;
1526 o != (asection *) NULL;
1527 o = o->next)
1528 {
da6b2d99
ILT
1529 for (p = o->link_order_head;
1530 p != (struct bfd_link_order *) NULL;
1531 p = p->next)
1532 {
f1cca647
ILT
1533 if (p->type == bfd_section_reloc_link_order
1534 || p->type == bfd_symbol_reloc_link_order)
1535 ++o->reloc_count;
1536 else if (p->type == bfd_indirect_link_order)
da6b2d99
ILT
1537 {
1538 asection *input_section;
1539 bfd *input_bfd;
1540 bfd_size_type relsize;
1541 arelent **relocs;
1542 bfd_size_type reloc_count;
1543
1544 input_section = p->u.indirect.section;
1545 input_bfd = input_section->owner;
1546 relsize = bfd_get_reloc_upper_bound (input_bfd,
1547 input_section);
9783e04a 1548 relocs = (arelent **) malloc ((size_t) relsize);
f1cca647 1549 if (!relocs && relsize != 0)
9783e04a 1550 {
d1ad85a6 1551 bfd_set_error (bfd_error_no_memory);
9783e04a
DM
1552 return false;
1553 }
da6b2d99
ILT
1554 reloc_count =
1555 bfd_canonicalize_reloc (input_bfd, input_section,
1556 relocs,
1557 bfd_get_outsymbols (input_bfd));
1558 BFD_ASSERT (reloc_count == input_section->reloc_count);
1559 o->reloc_count += reloc_count;
1560 free (relocs);
1561 }
1562 }
1563 if (o->reloc_count > 0)
1564 {
1565 o->orelocation = ((arelent **)
1566 bfd_alloc (abfd,
1567 (o->reloc_count
1568 * sizeof (arelent *))));
9783e04a
DM
1569 if (!o->orelocation)
1570 {
d1ad85a6 1571 bfd_set_error (bfd_error_no_memory);
9783e04a
DM
1572 return false;
1573 }
da6b2d99
ILT
1574 /* Reset the count so that it can be used as an index
1575 when putting in the output relocs. */
1576 o->reloc_count = 0;
1577 }
1578 }
1579 }
1580
1581 /* Handle all the link order information for the sections. */
1582 for (o = abfd->sections;
1583 o != (asection *) NULL;
1584 o = o->next)
1585 {
1586 for (p = o->link_order_head;
1587 p != (struct bfd_link_order *) NULL;
1588 p = p->next)
1589 {
f1cca647
ILT
1590 switch (p->type)
1591 {
1592 case bfd_section_reloc_link_order:
1593 case bfd_symbol_reloc_link_order:
1594 if (! _bfd_generic_reloc_link_order (abfd, info, o, p))
1595 return false;
1596 break;
1597 default:
1598 if (! _bfd_default_link_order (abfd, info, o, p))
1599 return false;
1600 break;
1601 }
da6b2d99
ILT
1602 }
1603 }
1604
1605 return true;
1606}
1607
1608/* Add an output symbol to the output BFD. */
1609
1610static boolean
1611generic_add_output_symbol (output_bfd, psymalloc, sym)
1612 bfd *output_bfd;
1613 size_t *psymalloc;
1614 asymbol *sym;
1615{
1616 if (output_bfd->symcount >= *psymalloc)
1617 {
1618 asymbol **newsyms;
1619
1620 if (*psymalloc == 0)
1621 *psymalloc = 124;
1622 else
1623 *psymalloc *= 2;
1624 if (output_bfd->outsymbols == (asymbol **) NULL)
1625 newsyms = (asymbol **) malloc (*psymalloc * sizeof (asymbol *));
1626 else
1627 newsyms = (asymbol **) realloc (output_bfd->outsymbols,
1628 *psymalloc * sizeof (asymbol *));
1629 if (newsyms == (asymbol **) NULL)
1630 {
d1ad85a6 1631 bfd_set_error (bfd_error_no_memory);
da6b2d99
ILT
1632 return false;
1633 }
1634 output_bfd->outsymbols = newsyms;
1635 }
1636
1637 output_bfd->outsymbols[output_bfd->symcount] = sym;
1638 ++output_bfd->symcount;
1639
1640 return true;
1641}
1642
1643/* Handle the symbols for an input BFD. */
1644
1645boolean
1646_bfd_generic_link_output_symbols (output_bfd, input_bfd, info, psymalloc)
1647 bfd *output_bfd;
1648 bfd *input_bfd;
1649 struct bfd_link_info *info;
1650 size_t *psymalloc;
1651{
1652 size_t symsize;
1653 asymbol **sym_ptr;
1654 asymbol **sym_end;
1655
6e58a4e5
JL
1656 /* Do not clobber outsymbols if they have already been created. */
1657 if (input_bfd->outsymbols == NULL)
9783e04a 1658 {
6e58a4e5
JL
1659 symsize = get_symtab_upper_bound (input_bfd);
1660 input_bfd->outsymbols = (asymbol **) bfd_alloc (input_bfd, symsize);
1661 if (!input_bfd->outsymbols)
1662 {
1663 bfd_set_error (bfd_error_no_memory);
1664 return false;
1665 }
1666 input_bfd->symcount = bfd_canonicalize_symtab (input_bfd,
1667 input_bfd->outsymbols);
9783e04a 1668 }
da6b2d99
ILT
1669
1670 /* Create a filename symbol if we are supposed to. */
1671 if (info->create_object_symbols_section != (asection *) NULL)
1672 {
1673 asection *sec;
1674
1675 for (sec = input_bfd->sections;
1676 sec != (asection *) NULL;
1677 sec = sec->next)
1678 {
1679 if (sec->output_section == info->create_object_symbols_section)
1680 {
1681 asymbol *newsym;
1682
1683 newsym = bfd_make_empty_symbol (input_bfd);
9783e04a
DM
1684 if (!newsym)
1685 return false;
da6b2d99
ILT
1686 newsym->name = input_bfd->filename;
1687 newsym->value = 0;
1688 newsym->flags = BSF_LOCAL | BSF_FILE;
1689 newsym->section = sec;
1690
1691 if (! generic_add_output_symbol (output_bfd, psymalloc,
1692 newsym))
1693 return false;
1694
1695 break;
1696 }
1697 }
1698 }
1699
1700 /* Adjust the values of the globally visible symbols, and write out
1701 local symbols. */
1702 sym_ptr = bfd_get_outsymbols (input_bfd);
1703 sym_end = sym_ptr + bfd_get_symcount (input_bfd);
1704 for (; sym_ptr < sym_end; sym_ptr++)
1705 {
1706 asymbol *sym;
1707 struct generic_link_hash_entry *h;
1708 boolean output;
1709
1710 h = (struct generic_link_hash_entry *) NULL;
1711 sym = *sym_ptr;
1712 if ((sym->flags & (BSF_INDIRECT
1713 | BSF_WARNING
1714 | BSF_GLOBAL
1715 | BSF_CONSTRUCTOR
1716 | BSF_WEAK)) != 0
1717 || bfd_get_section (sym) == &bfd_und_section
1718 || bfd_is_com_section (bfd_get_section (sym))
1719 || bfd_get_section (sym) == &bfd_ind_section)
1720 {
1721 h = _bfd_generic_link_hash_lookup (_bfd_generic_hash_table (info),
1722 bfd_asymbol_name (sym),
1723 false, false, true);
1724 if (h != (struct generic_link_hash_entry *) NULL)
1725 {
1726 /* Force all references to this symbol to point to
1727 the same area in memory. It is possible that
1728 this routine will be called with a hash table
1729 other than a generic hash table, so we double
1730 check that. */
1731 if (info->hash->creator == input_bfd->xvec)
1732 {
1733 if (h->sym != (asymbol *) NULL)
1734 *sym_ptr = sym = h->sym;
1735 }
1736
1737 switch (h->root.type)
1738 {
1739 default:
1740 case bfd_link_hash_new:
1741 abort ();
1742 case bfd_link_hash_undefined:
1743 case bfd_link_hash_weak:
1744 break;
1745 case bfd_link_hash_defined:
1746 sym->value = h->root.u.def.value;
1747 sym->section = h->root.u.def.section;
1748 sym->flags |= BSF_GLOBAL;
1749 break;
1750 case bfd_link_hash_common:
1751 sym->value = h->root.u.c.size;
1752 sym->flags |= BSF_GLOBAL;
5072b8e5
ILT
1753 if (! bfd_is_com_section (sym->section))
1754 {
1755 BFD_ASSERT (sym->section == &bfd_und_section);
1756 sym->section = &bfd_com_section;
1757 }
da6b2d99 1758 /* We do not set the section of the symbol to
5072b8e5
ILT
1759 h->root.u.c.section. That value was saved so
1760 that we would know where to allocate the symbol
1761 if it was defined. In this case the type is
1762 still bfd_link_hash_common, so we did not define
1763 it, so we do not want to use that section. */
da6b2d99
ILT
1764 break;
1765 }
1766 }
1767 }
1768
1769 /* This switch is straight from the old code in
1770 write_file_locals in ldsym.c. */
1771 if (info->strip == strip_some
1772 && (bfd_hash_lookup (info->keep_hash, bfd_asymbol_name (sym),
1773 false, false)
1774 == (struct bfd_hash_entry *) NULL))
1775 output = false;
1776 else if ((sym->flags & (BSF_GLOBAL | BSF_WEAK)) != 0)
1777 {
1778 /* If this symbol is marked as occurring now, rather
1779 than at the end, output it now. This is used for
1780 COFF C_EXT FCN symbols. FIXME: There must be a
1781 better way. */
1782 if (bfd_asymbol_bfd (sym) == input_bfd
1783 && (sym->flags & BSF_NOT_AT_END) != 0)
1784 output = true;
1785 else
1786 output = false;
1787 }
1788 else if (sym->section == &bfd_ind_section)
1789 output = false;
1790 else if ((sym->flags & BSF_DEBUGGING) != 0)
1791 {
1792 if (info->strip == strip_none)
1793 output = true;
1794 else
1795 output = false;
1796 }
1797 else if (sym->section == &bfd_und_section
1798 || bfd_is_com_section (sym->section))
1799 output = false;
1800 else if ((sym->flags & BSF_LOCAL) != 0)
1801 {
1802 if ((sym->flags & BSF_WARNING) != 0)
1803 output = false;
1804 else
1805 {
1806 switch (info->discard)
1807 {
1808 default:
1809 case discard_all:
1810 output = false;
1811 break;
1812 case discard_l:
1813 if (bfd_asymbol_name (sym)[0] == info->lprefix[0]
1814 && (info->lprefix_len == 1
1815 || strncmp (bfd_asymbol_name (sym), info->lprefix,
1816 info->lprefix_len) == 0))
1817 output = false;
1818 else
1819 output = true;
1820 break;
1821 case discard_none:
1822 output = true;
1823 break;
1824 }
1825 }
1826 }
1827 else if ((sym->flags & BSF_CONSTRUCTOR))
1828 {
1829 if (info->strip != strip_all)
1830 output = true;
1831 else
1832 output = false;
1833 }
1834 else
1835 abort ();
1836
1837 if (output)
1838 {
1839 if (! generic_add_output_symbol (output_bfd, psymalloc, sym))
1840 return false;
1841 if (h != (struct generic_link_hash_entry *) NULL)
1842 h->root.written = true;
1843 }
1844 }
1845
1846 return true;
1847}
1848
1849/* Write out a global symbol, if it hasn't already been written out.
1850 This is called for each symbol in the hash table. */
1851
1852boolean
1853_bfd_generic_link_write_global_symbol (h, data)
1854 struct generic_link_hash_entry *h;
1855 PTR data;
1856{
1857 struct generic_write_global_symbol_info *wginfo =
1858 (struct generic_write_global_symbol_info *) data;
1859 asymbol *sym;
1860
1861 if (h->root.written)
1862 return true;
1863
9783e04a
DM
1864 h->root.written = true;
1865
1866 if (wginfo->info->strip == strip_all
1867 || (wginfo->info->strip == strip_some
1868 && bfd_hash_lookup (wginfo->info->keep_hash, h->root.root.string,
1869 false, false) == NULL))
1870 return true;
1871
da6b2d99
ILT
1872 if (h->sym != (asymbol *) NULL)
1873 {
1874 sym = h->sym;
1875 BFD_ASSERT (strcmp (bfd_asymbol_name (sym), h->root.root.string) == 0);
1876 }
1877 else
1878 {
1879 sym = bfd_make_empty_symbol (wginfo->output_bfd);
9783e04a
DM
1880 if (!sym)
1881 return false;
da6b2d99
ILT
1882 sym->name = h->root.root.string;
1883 sym->flags = 0;
1884 }
1885
1886 switch (h->root.type)
1887 {
1888 default:
1889 case bfd_link_hash_new:
1890 abort ();
1891 case bfd_link_hash_undefined:
1892 sym->section = &bfd_und_section;
1893 sym->value = 0;
1894 break;
1895 case bfd_link_hash_weak:
1896 sym->section = &bfd_und_section;
1897 sym->value = 0;
1898 sym->flags |= BSF_WEAK;
ecff0ffe 1899 break;
da6b2d99
ILT
1900 case bfd_link_hash_defined:
1901 sym->section = h->root.u.def.section;
1902 sym->value = h->root.u.def.value;
1903 break;
1904 case bfd_link_hash_common:
1905 sym->value = h->root.u.c.size;
5072b8e5
ILT
1906 if (! bfd_is_com_section (sym->section))
1907 {
1908 BFD_ASSERT (sym->section == &bfd_und_section);
1909 sym->section = &bfd_com_section;
1910 }
da6b2d99 1911 /* Do not set the section; see _bfd_generic_link_output_symbols. */
da6b2d99
ILT
1912 break;
1913 case bfd_link_hash_indirect:
1914 case bfd_link_hash_warning:
1915 /* FIXME: What should we do here? */
1916 break;
1917 }
1918
1919 sym->flags |= BSF_GLOBAL;
1920
1921 if (! generic_add_output_symbol (wginfo->output_bfd, wginfo->psymalloc,
1922 sym))
1923 {
1924 /* FIXME: No way to return failure. */
1925 abort ();
1926 }
1927
da6b2d99
ILT
1928 return true;
1929}
f1cca647
ILT
1930
1931/* Create a relocation. */
1932
1933boolean
1934_bfd_generic_reloc_link_order (abfd, info, sec, link_order)
1935 bfd *abfd;
1936 struct bfd_link_info *info;
1937 asection *sec;
1938 struct bfd_link_order *link_order;
1939{
1940 arelent *r;
1941
1942 if (! info->relocateable)
1943 abort ();
1944 if (sec->orelocation == (arelent **) NULL)
1945 abort ();
1946
1947 r = (arelent *) bfd_alloc (abfd, sizeof (arelent));
1948 if (r == (arelent *) NULL)
1949 {
1950 bfd_set_error (bfd_error_no_memory);
1951 return false;
1952 }
1953
1954 r->address = link_order->offset;
1955 r->howto = bfd_reloc_type_lookup (abfd, link_order->u.reloc.p->reloc);
1956 if (r->howto == (const reloc_howto_type *) NULL)
1957 {
1958 bfd_set_error (bfd_error_bad_value);
1959 return false;
1960 }
1961
1962 /* Get the symbol to use for the relocation. */
1963 if (link_order->type == bfd_section_reloc_link_order)
1964 r->sym_ptr_ptr = link_order->u.reloc.p->u.section->symbol_ptr_ptr;
1965 else
1966 {
1967 struct generic_link_hash_entry *h;
1968
1969 h = _bfd_generic_link_hash_lookup (_bfd_generic_hash_table (info),
1970 link_order->u.reloc.p->u.name,
1971 false, false, true);
1972 if (h == (struct generic_link_hash_entry *) NULL
1973 || ! h->root.written)
1974 {
1975 if (! ((*info->callbacks->unattached_reloc)
1976 (info, link_order->u.reloc.p->u.name,
1977 (bfd *) NULL, (asection *) NULL, (bfd_vma) 0)))
1978 return false;
1979 bfd_set_error (bfd_error_bad_value);
1980 return false;
1981 }
1982 r->sym_ptr_ptr = &h->sym;
1983 }
1984
1985 /* If this is an inplace reloc, write the addend to the object file.
1986 Otherwise, store it in the reloc addend. */
1987 if (! r->howto->partial_inplace)
1988 r->addend = link_order->u.reloc.p->addend;
1989 else
1990 {
1991 bfd_size_type size;
1992 bfd_reloc_status_type rstat;
1993 bfd_byte *buf;
1994 boolean ok;
1995
1996 size = bfd_get_reloc_size (r->howto);
1997 buf = (bfd_byte *) bfd_zmalloc (size);
1998 if (buf == (bfd_byte *) NULL)
1999 {
2000 bfd_set_error (bfd_error_no_memory);
2001 return false;
2002 }
2003 rstat = _bfd_relocate_contents (r->howto, abfd,
2004 link_order->u.reloc.p->addend, buf);
2005 switch (rstat)
2006 {
2007 case bfd_reloc_ok:
2008 break;
2009 default:
2010 case bfd_reloc_outofrange:
2011 abort ();
2012 case bfd_reloc_overflow:
2013 if (! ((*info->callbacks->reloc_overflow)
2014 (info,
2015 (link_order->type == bfd_section_reloc_link_order
2016 ? bfd_section_name (abfd, link_order->u.reloc.p->u.section)
2017 : link_order->u.reloc.p->u.name),
2018 r->howto->name, link_order->u.reloc.p->addend,
2019 (bfd *) NULL, (asection *) NULL, (bfd_vma) 0)))
2020 {
2021 free (buf);
2022 return false;
2023 }
2024 break;
2025 }
2026 ok = bfd_set_section_contents (abfd, sec, (PTR) buf,
2027 (file_ptr) link_order->offset, size);
2028 free (buf);
2029 if (! ok)
2030 return false;
2031
2032 r->addend = 0;
2033 }
2034
2035 sec->orelocation[sec->reloc_count] = r;
2036 ++sec->reloc_count;
2037
2038 return true;
2039}
da6b2d99
ILT
2040\f
2041/* Allocate a new link_order for a section. */
2042
2043struct bfd_link_order *
2044bfd_new_link_order (abfd, section)
2045 bfd *abfd;
2046 asection *section;
2047{
2048 struct bfd_link_order *new;
2049
2050 new = ((struct bfd_link_order *)
2051 bfd_alloc_by_size_t (abfd, sizeof (struct bfd_link_order)));
9783e04a
DM
2052 if (!new)
2053 {
d1ad85a6 2054 bfd_set_error (bfd_error_no_memory);
9783e04a
DM
2055 return NULL;
2056 }
da6b2d99
ILT
2057
2058 new->type = bfd_undefined_link_order;
2059 new->offset = 0;
2060 new->size = 0;
2061 new->next = (struct bfd_link_order *) NULL;
2062
2063 if (section->link_order_tail != (struct bfd_link_order *) NULL)
2064 section->link_order_tail->next = new;
2065 else
2066 section->link_order_head = new;
2067 section->link_order_tail = new;
2068
2069 return new;
2070}
2071
f1cca647
ILT
2072/* Default link order processing routine. Note that we can not handle
2073 the reloc_link_order types here, since they depend upon the details
2074 of how the particular backends generates relocs. */
da6b2d99
ILT
2075
2076boolean
2077_bfd_default_link_order (abfd, info, sec, link_order)
2078 bfd *abfd;
2079 struct bfd_link_info *info;
2080 asection *sec;
2081 struct bfd_link_order *link_order;
2082{
2083 switch (link_order->type)
2084 {
2085 case bfd_undefined_link_order:
f1cca647
ILT
2086 case bfd_section_reloc_link_order:
2087 case bfd_symbol_reloc_link_order:
da6b2d99
ILT
2088 default:
2089 abort ();
2090 case bfd_indirect_link_order:
6e07e54f 2091 return default_indirect_link_order (abfd, info, sec, link_order);
da6b2d99
ILT
2092 case bfd_fill_link_order:
2093 return default_fill_link_order (abfd, info, sec, link_order);
2094 }
2095}
2096
2097/* Default routine to handle a bfd_fill_link_order. */
2098
6e07e54f 2099/*ARGSUSED*/
da6b2d99
ILT
2100static boolean
2101default_fill_link_order (abfd, info, sec, link_order)
2102 bfd *abfd;
2103 struct bfd_link_info *info;
2104 asection *sec;
2105 struct bfd_link_order *link_order;
2106{
2107 size_t size;
2108 char *space;
2109 size_t i;
2110 int fill;
f1cca647 2111 boolean result;
da6b2d99
ILT
2112
2113 BFD_ASSERT ((sec->flags & SEC_HAS_CONTENTS) != 0);
2114
2115 size = (size_t) link_order->size;
f1cca647
ILT
2116 space = (char *) malloc (size);
2117 if (space == NULL && size != 0)
2118 {
2119 bfd_set_error (bfd_error_no_memory);
2120 return false;
2121 }
2122
da6b2d99
ILT
2123 fill = link_order->u.fill.value;
2124 for (i = 0; i < size; i += 2)
2125 space[i] = fill >> 8;
2126 for (i = 1; i < size; i += 2)
2127 space[i] = fill;
f1cca647
ILT
2128 result = bfd_set_section_contents (abfd, sec, space,
2129 (file_ptr) link_order->offset,
2130 link_order->size);
2131 free (space);
2132 return result;
da6b2d99 2133}
6e07e54f
ILT
2134
2135/* Default routine to handle a bfd_indirect_link_order. */
2136
2137static boolean
2138default_indirect_link_order (output_bfd, info, output_section, link_order)
2139 bfd *output_bfd;
2140 struct bfd_link_info *info;
2141 asection *output_section;
2142 struct bfd_link_order *link_order;
2143{
2144 asection *input_section;
2145 bfd *input_bfd;
f1cca647
ILT
2146 bfd_byte *contents = NULL;
2147 bfd_byte *new_contents;
6e07e54f
ILT
2148
2149 BFD_ASSERT ((output_section->flags & SEC_HAS_CONTENTS) != 0);
2150
2151 if (link_order->size == 0)
2152 return true;
2153
2154 input_section = link_order->u.indirect.section;
2155 input_bfd = input_section->owner;
2156
2157 BFD_ASSERT (input_section->output_section == output_section);
2158 BFD_ASSERT (input_section->output_offset == link_order->offset);
66d9f06f 2159 BFD_ASSERT (input_section->_cooked_size == link_order->size);
6e07e54f
ILT
2160
2161 if (info->relocateable
92f345b9 2162 && input_section->reloc_count > 0
6e07e54f
ILT
2163 && output_section->orelocation == (arelent **) NULL)
2164 {
2165 /* Space has not been allocated for the output relocations.
2166 This can happen when we are called by a specific backend
2167 because somebody is attempting to link together different
2168 types of object files. Handling this case correctly is
2169 difficult, and sometimes impossible. */
2170 abort ();
2171 }
2172
2173 /* Get the canonical symbols. The generic linker will always have
2174 retrieved them by this point, but we may be being called by a
2175 specific linker when linking different types of object files
2176 together. */
2177 if (bfd_get_outsymbols (input_bfd) == (asymbol **) NULL)
2178 {
2179 size_t symsize;
2180
2181 symsize = get_symtab_upper_bound (input_bfd);
2182 input_bfd->outsymbols = (asymbol **) bfd_alloc (input_bfd, symsize);
9783e04a
DM
2183 if (!input_bfd->outsymbols)
2184 {
d1ad85a6 2185 bfd_set_error (bfd_error_no_memory);
9783e04a
DM
2186 return false;
2187 }
6e07e54f
ILT
2188 input_bfd->symcount = bfd_canonicalize_symtab (input_bfd,
2189 input_bfd->outsymbols);
2190 }
2191
2192 /* Get and relocate the section contents. */
f1cca647
ILT
2193 contents = (bfd_byte *) malloc (bfd_section_size (input_bfd, input_section));
2194 if (contents == NULL && bfd_section_size (input_bfd, input_section) != 0)
2195 {
2196 bfd_set_error (bfd_error_no_memory);
2197 goto error_return;
2198 }
2199 new_contents = (bfd_get_relocated_section_contents
2200 (output_bfd, info, link_order, contents, info->relocateable,
2201 bfd_get_outsymbols (input_bfd)));
2202 if (!new_contents)
2203 goto error_return;
6e07e54f
ILT
2204
2205 /* Output the section contents. */
f1cca647
ILT
2206 if (! bfd_set_section_contents (output_bfd, output_section,
2207 (PTR) new_contents,
6e07e54f 2208 link_order->offset, link_order->size))
f1cca647 2209 goto error_return;
6e07e54f 2210
f1cca647
ILT
2211 if (contents != NULL)
2212 free (contents);
6e07e54f 2213 return true;
f1cca647
ILT
2214
2215 error_return:
2216 if (contents != NULL)
2217 free (contents);
2218 return false;
2219}
2220
2221/* A little routine to count the number of relocs in a link_order
2222 list. */
2223
2224unsigned int
2225_bfd_count_link_order_relocs (link_order)
2226 struct bfd_link_order *link_order;
2227{
2228 register unsigned int c;
2229 register struct bfd_link_order *l;
2230
2231 c = 0;
2232 for (l = link_order; l != (struct bfd_link_order *) NULL; l = l->next)
2233 {
2234 if (l->type == bfd_section_reloc_link_order
2235 || l->type == bfd_symbol_reloc_link_order)
2236 ++c;
2237 }
2238
2239 return c;
6e07e54f 2240}
This page took 0.128852 seconds and 4 git commands to generate.