PR ld/12672
[deliverable/binutils-gdb.git] / ld / ldlang.c
... / ...
CommitLineData
1/* Linker command language support.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
5
6 This file is part of the GNU Binutils.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
22
23#include "sysdep.h"
24#include "bfd.h"
25#include "libiberty.h"
26#include "filenames.h"
27#include "safe-ctype.h"
28#include "obstack.h"
29#include "bfdlink.h"
30
31#include "ld.h"
32#include "ldmain.h"
33#include "ldexp.h"
34#include "ldlang.h"
35#include <ldgram.h>
36#include "ldlex.h"
37#include "ldmisc.h"
38#include "ldctor.h"
39#include "ldfile.h"
40#include "ldemul.h"
41#include "fnmatch.h"
42#include "demangle.h"
43#include "hashtab.h"
44#include "libbfd.h"
45#ifdef ENABLE_PLUGINS
46#include "plugin.h"
47#endif /* ENABLE_PLUGINS */
48
49#ifndef offsetof
50#define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
51#endif
52
53/* Locals variables. */
54static struct obstack stat_obstack;
55static struct obstack map_obstack;
56
57#define obstack_chunk_alloc xmalloc
58#define obstack_chunk_free free
59static const char *entry_symbol_default = "start";
60static bfd_boolean placed_commons = FALSE;
61static bfd_boolean stripped_excluded_sections = FALSE;
62static lang_output_section_statement_type *default_common_section;
63static bfd_boolean map_option_f;
64static bfd_vma print_dot;
65static lang_input_statement_type *first_file;
66static const char *current_target;
67static lang_statement_list_type statement_list;
68static struct bfd_hash_table lang_definedness_table;
69static lang_statement_list_type *stat_save[10];
70static lang_statement_list_type **stat_save_ptr = &stat_save[0];
71static struct unique_sections *unique_section_list;
72static bfd_boolean ldlang_sysrooted_script = FALSE;
73
74/* Forward declarations. */
75static void exp_init_os (etree_type *);
76static void init_map_userdata (bfd *, asection *, void *);
77static lang_input_statement_type *lookup_name (const char *);
78static struct bfd_hash_entry *lang_definedness_newfunc
79 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
80static void insert_undefined (const char *);
81static bfd_boolean sort_def_symbol (struct bfd_link_hash_entry *, void *);
82static void print_statement (lang_statement_union_type *,
83 lang_output_section_statement_type *);
84static void print_statement_list (lang_statement_union_type *,
85 lang_output_section_statement_type *);
86static void print_statements (void);
87static void print_input_section (asection *, bfd_boolean);
88static bfd_boolean lang_one_common (struct bfd_link_hash_entry *, void *);
89#ifdef ENABLE_PLUGINS
90static void lang_list_insert_after (lang_statement_list_type *destlist,
91 lang_statement_list_type *srclist,
92 lang_statement_union_type **field);
93static void lang_list_remove_tail (lang_statement_list_type *destlist,
94 lang_statement_list_type *origlist);
95#endif /* ENABLE_PLUGINS */
96static void lang_record_phdrs (void);
97static void lang_do_version_exports_section (void);
98static void lang_finalize_version_expr_head
99 (struct bfd_elf_version_expr_head *);
100
101/* Exported variables. */
102const char *output_target;
103lang_output_section_statement_type *abs_output_section;
104lang_statement_list_type lang_output_section_statement;
105lang_statement_list_type *stat_ptr = &statement_list;
106lang_statement_list_type file_chain = { NULL, NULL };
107lang_statement_list_type input_file_chain;
108struct bfd_sym_chain entry_symbol = { NULL, NULL };
109const char *entry_section = ".text";
110bfd_boolean entry_from_cmdline;
111bfd_boolean undef_from_cmdline;
112bfd_boolean lang_has_input_file = FALSE;
113bfd_boolean had_output_filename = FALSE;
114bfd_boolean lang_float_flag = FALSE;
115bfd_boolean delete_output_file_on_failure = FALSE;
116struct lang_phdr *lang_phdr_list;
117struct lang_nocrossrefs *nocrossref_list;
118bfd_boolean missing_file = FALSE;
119
120 /* Functions that traverse the linker script and might evaluate
121 DEFINED() need to increment this. */
122int lang_statement_iteration = 0;
123
124etree_type *base; /* Relocation base - or null */
125
126/* Return TRUE if the PATTERN argument is a wildcard pattern.
127 Although backslashes are treated specially if a pattern contains
128 wildcards, we do not consider the mere presence of a backslash to
129 be enough to cause the pattern to be treated as a wildcard.
130 That lets us handle DOS filenames more naturally. */
131#define wildcardp(pattern) (strpbrk ((pattern), "?*[") != NULL)
132
133#define new_stat(x, y) \
134 (x##_type *) new_statement (x##_enum, sizeof (x##_type), y)
135
136#define outside_section_address(q) \
137 ((q)->output_offset + (q)->output_section->vma)
138
139#define outside_symbol_address(q) \
140 ((q)->value + outside_section_address (q->section))
141
142#define SECTION_NAME_MAP_LENGTH (16)
143
144void *
145stat_alloc (size_t size)
146{
147 return obstack_alloc (&stat_obstack, size);
148}
149
150static int
151name_match (const char *pattern, const char *name)
152{
153 if (wildcardp (pattern))
154 return fnmatch (pattern, name, 0);
155 return strcmp (pattern, name);
156}
157
158/* If PATTERN is of the form archive:file, return a pointer to the
159 separator. If not, return NULL. */
160
161static char *
162archive_path (const char *pattern)
163{
164 char *p = NULL;
165
166 if (link_info.path_separator == 0)
167 return p;
168
169 p = strchr (pattern, link_info.path_separator);
170#ifdef HAVE_DOS_BASED_FILE_SYSTEM
171 if (p == NULL || link_info.path_separator != ':')
172 return p;
173
174 /* Assume a match on the second char is part of drive specifier,
175 as in "c:\silly.dos". */
176 if (p == pattern + 1 && ISALPHA (*pattern))
177 p = strchr (p + 1, link_info.path_separator);
178#endif
179 return p;
180}
181
182/* Given that FILE_SPEC results in a non-NULL SEP result from archive_path,
183 return whether F matches FILE_SPEC. */
184
185static bfd_boolean
186input_statement_is_archive_path (const char *file_spec, char *sep,
187 lang_input_statement_type *f)
188{
189 bfd_boolean match = FALSE;
190
191 if ((*(sep + 1) == 0
192 || name_match (sep + 1, f->filename) == 0)
193 && ((sep != file_spec)
194 == (f->the_bfd != NULL && f->the_bfd->my_archive != NULL)))
195 {
196 match = TRUE;
197
198 if (sep != file_spec)
199 {
200 const char *aname = f->the_bfd->my_archive->filename;
201 *sep = 0;
202 match = name_match (file_spec, aname) == 0;
203 *sep = link_info.path_separator;
204 }
205 }
206 return match;
207}
208
209static bfd_boolean
210unique_section_p (const asection *sec,
211 const lang_output_section_statement_type *os)
212{
213 struct unique_sections *unam;
214 const char *secnam;
215
216 if (link_info.relocatable
217 && sec->owner != NULL
218 && bfd_is_group_section (sec->owner, sec))
219 return !(os != NULL
220 && strcmp (os->name, DISCARD_SECTION_NAME) == 0);
221
222 secnam = sec->name;
223 for (unam = unique_section_list; unam; unam = unam->next)
224 if (name_match (unam->name, secnam) == 0)
225 return TRUE;
226
227 return FALSE;
228}
229
230/* Generic traversal routines for finding matching sections. */
231
232/* Try processing a section against a wildcard. This just calls
233 the callback unless the filename exclusion list is present
234 and excludes the file. It's hardly ever present so this
235 function is very fast. */
236
237static void
238walk_wild_consider_section (lang_wild_statement_type *ptr,
239 lang_input_statement_type *file,
240 asection *s,
241 struct wildcard_list *sec,
242 callback_t callback,
243 void *data)
244{
245 struct name_list *list_tmp;
246
247 /* Don't process sections from files which were excluded. */
248 for (list_tmp = sec->spec.exclude_name_list;
249 list_tmp;
250 list_tmp = list_tmp->next)
251 {
252 char *p = archive_path (list_tmp->name);
253
254 if (p != NULL)
255 {
256 if (input_statement_is_archive_path (list_tmp->name, p, file))
257 return;
258 }
259
260 else if (name_match (list_tmp->name, file->filename) == 0)
261 return;
262
263 /* FIXME: Perhaps remove the following at some stage? Matching
264 unadorned archives like this was never documented and has
265 been superceded by the archive:path syntax. */
266 else if (file->the_bfd != NULL
267 && file->the_bfd->my_archive != NULL
268 && name_match (list_tmp->name,
269 file->the_bfd->my_archive->filename) == 0)
270 return;
271 }
272
273 (*callback) (ptr, sec, s, file, data);
274}
275
276/* Lowest common denominator routine that can handle everything correctly,
277 but slowly. */
278
279static void
280walk_wild_section_general (lang_wild_statement_type *ptr,
281 lang_input_statement_type *file,
282 callback_t callback,
283 void *data)
284{
285 asection *s;
286 struct wildcard_list *sec;
287
288 for (s = file->the_bfd->sections; s != NULL; s = s->next)
289 {
290 sec = ptr->section_list;
291 if (sec == NULL)
292 (*callback) (ptr, sec, s, file, data);
293
294 while (sec != NULL)
295 {
296 bfd_boolean skip = FALSE;
297
298 if (sec->spec.name != NULL)
299 {
300 const char *sname = bfd_get_section_name (file->the_bfd, s);
301
302 skip = name_match (sec->spec.name, sname) != 0;
303 }
304
305 if (!skip)
306 walk_wild_consider_section (ptr, file, s, sec, callback, data);
307
308 sec = sec->next;
309 }
310 }
311}
312
313/* Routines to find a single section given its name. If there's more
314 than one section with that name, we report that. */
315
316typedef struct
317{
318 asection *found_section;
319 bfd_boolean multiple_sections_found;
320} section_iterator_callback_data;
321
322static bfd_boolean
323section_iterator_callback (bfd *abfd ATTRIBUTE_UNUSED, asection *s, void *data)
324{
325 section_iterator_callback_data *d = (section_iterator_callback_data *) data;
326
327 if (d->found_section != NULL)
328 {
329 d->multiple_sections_found = TRUE;
330 return TRUE;
331 }
332
333 d->found_section = s;
334 return FALSE;
335}
336
337static asection *
338find_section (lang_input_statement_type *file,
339 struct wildcard_list *sec,
340 bfd_boolean *multiple_sections_found)
341{
342 section_iterator_callback_data cb_data = { NULL, FALSE };
343
344 bfd_get_section_by_name_if (file->the_bfd, sec->spec.name,
345 section_iterator_callback, &cb_data);
346 *multiple_sections_found = cb_data.multiple_sections_found;
347 return cb_data.found_section;
348}
349
350/* Code for handling simple wildcards without going through fnmatch,
351 which can be expensive because of charset translations etc. */
352
353/* A simple wild is a literal string followed by a single '*',
354 where the literal part is at least 4 characters long. */
355
356static bfd_boolean
357is_simple_wild (const char *name)
358{
359 size_t len = strcspn (name, "*?[");
360 return len >= 4 && name[len] == '*' && name[len + 1] == '\0';
361}
362
363static bfd_boolean
364match_simple_wild (const char *pattern, const char *name)
365{
366 /* The first four characters of the pattern are guaranteed valid
367 non-wildcard characters. So we can go faster. */
368 if (pattern[0] != name[0] || pattern[1] != name[1]
369 || pattern[2] != name[2] || pattern[3] != name[3])
370 return FALSE;
371
372 pattern += 4;
373 name += 4;
374 while (*pattern != '*')
375 if (*name++ != *pattern++)
376 return FALSE;
377
378 return TRUE;
379}
380
381/* Return the numerical value of the init_priority attribute from
382 section name NAME. */
383
384static unsigned long
385get_init_priority (const char *name)
386{
387 char *end;
388 unsigned long init_priority;
389
390 /* GCC uses the following section names for the init_priority
391 attribute with numerical values 101 and 65535 inclusive. A
392 lower value means a higher priority.
393
394 1: .init_array.NNNN/.fini_array.NNNN: Where NNNN is the
395 decimal numerical value of the init_priority attribute.
396 The order of execution in .init_array is forward and
397 .fini_array is backward.
398 2: .ctors.NNNN/.ctors.NNNN: Where NNNN is 65535 minus the
399 decimal numerical value of the init_priority attribute.
400 The order of execution in .ctors is backward and .dtors
401 is forward.
402 */
403 if (strncmp (name, ".init_array.", 12) == 0
404 || strncmp (name, ".fini_array.", 12) == 0)
405 {
406 init_priority = strtoul (name + 12, &end, 10);
407 return *end ? 0 : init_priority;
408 }
409 else if (strncmp (name, ".ctors.", 7) == 0
410 || strncmp (name, ".dtors.", 7) == 0)
411 {
412 init_priority = strtoul (name + 7, &end, 10);
413 return *end ? 0 : 65535 - init_priority;
414 }
415
416 return 0;
417}
418
419/* Compare sections ASEC and BSEC according to SORT. */
420
421static int
422compare_section (sort_type sort, asection *asec, asection *bsec)
423{
424 int ret;
425 unsigned long ainit_priority, binit_priority;
426
427 switch (sort)
428 {
429 default:
430 abort ();
431
432 case by_init_priority:
433 ainit_priority
434 = get_init_priority (bfd_get_section_name (asec->owner, asec));
435 binit_priority
436 = get_init_priority (bfd_get_section_name (bsec->owner, bsec));
437 if (ainit_priority == 0 || binit_priority == 0)
438 goto sort_by_name;
439 ret = ainit_priority - binit_priority;
440 if (ret)
441 break;
442 else
443 goto sort_by_name;
444
445 case by_alignment_name:
446 ret = (bfd_section_alignment (bsec->owner, bsec)
447 - bfd_section_alignment (asec->owner, asec));
448 if (ret)
449 break;
450 /* Fall through. */
451
452 case by_name:
453sort_by_name:
454 ret = strcmp (bfd_get_section_name (asec->owner, asec),
455 bfd_get_section_name (bsec->owner, bsec));
456 break;
457
458 case by_name_alignment:
459 ret = strcmp (bfd_get_section_name (asec->owner, asec),
460 bfd_get_section_name (bsec->owner, bsec));
461 if (ret)
462 break;
463 /* Fall through. */
464
465 case by_alignment:
466 ret = (bfd_section_alignment (bsec->owner, bsec)
467 - bfd_section_alignment (asec->owner, asec));
468 break;
469 }
470
471 return ret;
472}
473
474/* Build a Binary Search Tree to sort sections, unlike insertion sort
475 used in wild_sort(). BST is considerably faster if the number of
476 of sections are large. */
477
478static lang_section_bst_type **
479wild_sort_fast (lang_wild_statement_type *wild,
480 struct wildcard_list *sec,
481 lang_input_statement_type *file ATTRIBUTE_UNUSED,
482 asection *section)
483{
484 lang_section_bst_type **tree;
485
486 tree = &wild->tree;
487 if (!wild->filenames_sorted
488 && (sec == NULL || sec->spec.sorted == none))
489 {
490 /* Append at the right end of tree. */
491 while (*tree)
492 tree = &((*tree)->right);
493 return tree;
494 }
495
496 while (*tree)
497 {
498 /* Find the correct node to append this section. */
499 if (compare_section (sec->spec.sorted, section, (*tree)->section) < 0)
500 tree = &((*tree)->left);
501 else
502 tree = &((*tree)->right);
503 }
504
505 return tree;
506}
507
508/* Use wild_sort_fast to build a BST to sort sections. */
509
510static void
511output_section_callback_fast (lang_wild_statement_type *ptr,
512 struct wildcard_list *sec,
513 asection *section,
514 lang_input_statement_type *file,
515 void *output)
516{
517 lang_section_bst_type *node;
518 lang_section_bst_type **tree;
519 lang_output_section_statement_type *os;
520
521 os = (lang_output_section_statement_type *) output;
522
523 if (unique_section_p (section, os))
524 return;
525
526 node = (lang_section_bst_type *) xmalloc (sizeof (lang_section_bst_type));
527 node->left = 0;
528 node->right = 0;
529 node->section = section;
530
531 tree = wild_sort_fast (ptr, sec, file, section);
532 if (tree != NULL)
533 *tree = node;
534}
535
536/* Convert a sorted sections' BST back to list form. */
537
538static void
539output_section_callback_tree_to_list (lang_wild_statement_type *ptr,
540 lang_section_bst_type *tree,
541 void *output)
542{
543 if (tree->left)
544 output_section_callback_tree_to_list (ptr, tree->left, output);
545
546 lang_add_section (&ptr->children, tree->section,
547 (lang_output_section_statement_type *) output);
548
549 if (tree->right)
550 output_section_callback_tree_to_list (ptr, tree->right, output);
551
552 free (tree);
553}
554
555/* Specialized, optimized routines for handling different kinds of
556 wildcards */
557
558static void
559walk_wild_section_specs1_wild0 (lang_wild_statement_type *ptr,
560 lang_input_statement_type *file,
561 callback_t callback,
562 void *data)
563{
564 /* We can just do a hash lookup for the section with the right name.
565 But if that lookup discovers more than one section with the name
566 (should be rare), we fall back to the general algorithm because
567 we would otherwise have to sort the sections to make sure they
568 get processed in the bfd's order. */
569 bfd_boolean multiple_sections_found;
570 struct wildcard_list *sec0 = ptr->handler_data[0];
571 asection *s0 = find_section (file, sec0, &multiple_sections_found);
572
573 if (multiple_sections_found)
574 walk_wild_section_general (ptr, file, callback, data);
575 else if (s0)
576 walk_wild_consider_section (ptr, file, s0, sec0, callback, data);
577}
578
579static void
580walk_wild_section_specs1_wild1 (lang_wild_statement_type *ptr,
581 lang_input_statement_type *file,
582 callback_t callback,
583 void *data)
584{
585 asection *s;
586 struct wildcard_list *wildsec0 = ptr->handler_data[0];
587
588 for (s = file->the_bfd->sections; s != NULL; s = s->next)
589 {
590 const char *sname = bfd_get_section_name (file->the_bfd, s);
591 bfd_boolean skip = !match_simple_wild (wildsec0->spec.name, sname);
592
593 if (!skip)
594 walk_wild_consider_section (ptr, file, s, wildsec0, callback, data);
595 }
596}
597
598static void
599walk_wild_section_specs2_wild1 (lang_wild_statement_type *ptr,
600 lang_input_statement_type *file,
601 callback_t callback,
602 void *data)
603{
604 asection *s;
605 struct wildcard_list *sec0 = ptr->handler_data[0];
606 struct wildcard_list *wildsec1 = ptr->handler_data[1];
607 bfd_boolean multiple_sections_found;
608 asection *s0 = find_section (file, sec0, &multiple_sections_found);
609
610 if (multiple_sections_found)
611 {
612 walk_wild_section_general (ptr, file, callback, data);
613 return;
614 }
615
616 /* Note that if the section was not found, s0 is NULL and
617 we'll simply never succeed the s == s0 test below. */
618 for (s = file->the_bfd->sections; s != NULL; s = s->next)
619 {
620 /* Recall that in this code path, a section cannot satisfy more
621 than one spec, so if s == s0 then it cannot match
622 wildspec1. */
623 if (s == s0)
624 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
625 else
626 {
627 const char *sname = bfd_get_section_name (file->the_bfd, s);
628 bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
629
630 if (!skip)
631 walk_wild_consider_section (ptr, file, s, wildsec1, callback,
632 data);
633 }
634 }
635}
636
637static void
638walk_wild_section_specs3_wild2 (lang_wild_statement_type *ptr,
639 lang_input_statement_type *file,
640 callback_t callback,
641 void *data)
642{
643 asection *s;
644 struct wildcard_list *sec0 = ptr->handler_data[0];
645 struct wildcard_list *wildsec1 = ptr->handler_data[1];
646 struct wildcard_list *wildsec2 = ptr->handler_data[2];
647 bfd_boolean multiple_sections_found;
648 asection *s0 = find_section (file, sec0, &multiple_sections_found);
649
650 if (multiple_sections_found)
651 {
652 walk_wild_section_general (ptr, file, callback, data);
653 return;
654 }
655
656 for (s = file->the_bfd->sections; s != NULL; s = s->next)
657 {
658 if (s == s0)
659 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
660 else
661 {
662 const char *sname = bfd_get_section_name (file->the_bfd, s);
663 bfd_boolean skip = !match_simple_wild (wildsec1->spec.name, sname);
664
665 if (!skip)
666 walk_wild_consider_section (ptr, file, s, wildsec1, callback, data);
667 else
668 {
669 skip = !match_simple_wild (wildsec2->spec.name, sname);
670 if (!skip)
671 walk_wild_consider_section (ptr, file, s, wildsec2, callback,
672 data);
673 }
674 }
675 }
676}
677
678static void
679walk_wild_section_specs4_wild2 (lang_wild_statement_type *ptr,
680 lang_input_statement_type *file,
681 callback_t callback,
682 void *data)
683{
684 asection *s;
685 struct wildcard_list *sec0 = ptr->handler_data[0];
686 struct wildcard_list *sec1 = ptr->handler_data[1];
687 struct wildcard_list *wildsec2 = ptr->handler_data[2];
688 struct wildcard_list *wildsec3 = ptr->handler_data[3];
689 bfd_boolean multiple_sections_found;
690 asection *s0 = find_section (file, sec0, &multiple_sections_found), *s1;
691
692 if (multiple_sections_found)
693 {
694 walk_wild_section_general (ptr, file, callback, data);
695 return;
696 }
697
698 s1 = find_section (file, sec1, &multiple_sections_found);
699 if (multiple_sections_found)
700 {
701 walk_wild_section_general (ptr, file, callback, data);
702 return;
703 }
704
705 for (s = file->the_bfd->sections; s != NULL; s = s->next)
706 {
707 if (s == s0)
708 walk_wild_consider_section (ptr, file, s, sec0, callback, data);
709 else
710 if (s == s1)
711 walk_wild_consider_section (ptr, file, s, sec1, callback, data);
712 else
713 {
714 const char *sname = bfd_get_section_name (file->the_bfd, s);
715 bfd_boolean skip = !match_simple_wild (wildsec2->spec.name,
716 sname);
717
718 if (!skip)
719 walk_wild_consider_section (ptr, file, s, wildsec2, callback,
720 data);
721 else
722 {
723 skip = !match_simple_wild (wildsec3->spec.name, sname);
724 if (!skip)
725 walk_wild_consider_section (ptr, file, s, wildsec3,
726 callback, data);
727 }
728 }
729 }
730}
731
732static void
733walk_wild_section (lang_wild_statement_type *ptr,
734 lang_input_statement_type *file,
735 callback_t callback,
736 void *data)
737{
738 if (file->just_syms_flag)
739 return;
740
741 (*ptr->walk_wild_section_handler) (ptr, file, callback, data);
742}
743
744/* Returns TRUE when name1 is a wildcard spec that might match
745 something name2 can match. We're conservative: we return FALSE
746 only if the prefixes of name1 and name2 are different up to the
747 first wildcard character. */
748
749static bfd_boolean
750wild_spec_can_overlap (const char *name1, const char *name2)
751{
752 size_t prefix1_len = strcspn (name1, "?*[");
753 size_t prefix2_len = strcspn (name2, "?*[");
754 size_t min_prefix_len;
755
756 /* Note that if there is no wildcard character, then we treat the
757 terminating 0 as part of the prefix. Thus ".text" won't match
758 ".text." or ".text.*", for example. */
759 if (name1[prefix1_len] == '\0')
760 prefix1_len++;
761 if (name2[prefix2_len] == '\0')
762 prefix2_len++;
763
764 min_prefix_len = prefix1_len < prefix2_len ? prefix1_len : prefix2_len;
765
766 return memcmp (name1, name2, min_prefix_len) == 0;
767}
768
769/* Select specialized code to handle various kinds of wildcard
770 statements. */
771
772static void
773analyze_walk_wild_section_handler (lang_wild_statement_type *ptr)
774{
775 int sec_count = 0;
776 int wild_name_count = 0;
777 struct wildcard_list *sec;
778 int signature;
779 int data_counter;
780
781 ptr->walk_wild_section_handler = walk_wild_section_general;
782 ptr->handler_data[0] = NULL;
783 ptr->handler_data[1] = NULL;
784 ptr->handler_data[2] = NULL;
785 ptr->handler_data[3] = NULL;
786 ptr->tree = NULL;
787
788 /* Count how many wildcard_specs there are, and how many of those
789 actually use wildcards in the name. Also, bail out if any of the
790 wildcard names are NULL. (Can this actually happen?
791 walk_wild_section used to test for it.) And bail out if any
792 of the wildcards are more complex than a simple string
793 ending in a single '*'. */
794 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
795 {
796 ++sec_count;
797 if (sec->spec.name == NULL)
798 return;
799 if (wildcardp (sec->spec.name))
800 {
801 ++wild_name_count;
802 if (!is_simple_wild (sec->spec.name))
803 return;
804 }
805 }
806
807 /* The zero-spec case would be easy to optimize but it doesn't
808 happen in practice. Likewise, more than 4 specs doesn't
809 happen in practice. */
810 if (sec_count == 0 || sec_count > 4)
811 return;
812
813 /* Check that no two specs can match the same section. */
814 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
815 {
816 struct wildcard_list *sec2;
817 for (sec2 = sec->next; sec2 != NULL; sec2 = sec2->next)
818 {
819 if (wild_spec_can_overlap (sec->spec.name, sec2->spec.name))
820 return;
821 }
822 }
823
824 signature = (sec_count << 8) + wild_name_count;
825 switch (signature)
826 {
827 case 0x0100:
828 ptr->walk_wild_section_handler = walk_wild_section_specs1_wild0;
829 break;
830 case 0x0101:
831 ptr->walk_wild_section_handler = walk_wild_section_specs1_wild1;
832 break;
833 case 0x0201:
834 ptr->walk_wild_section_handler = walk_wild_section_specs2_wild1;
835 break;
836 case 0x0302:
837 ptr->walk_wild_section_handler = walk_wild_section_specs3_wild2;
838 break;
839 case 0x0402:
840 ptr->walk_wild_section_handler = walk_wild_section_specs4_wild2;
841 break;
842 default:
843 return;
844 }
845
846 /* Now fill the data array with pointers to the specs, first the
847 specs with non-wildcard names, then the specs with wildcard
848 names. It's OK to process the specs in different order from the
849 given order, because we've already determined that no section
850 will match more than one spec. */
851 data_counter = 0;
852 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
853 if (!wildcardp (sec->spec.name))
854 ptr->handler_data[data_counter++] = sec;
855 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
856 if (wildcardp (sec->spec.name))
857 ptr->handler_data[data_counter++] = sec;
858}
859
860/* Handle a wild statement for a single file F. */
861
862static void
863walk_wild_file (lang_wild_statement_type *s,
864 lang_input_statement_type *f,
865 callback_t callback,
866 void *data)
867{
868 if (f->the_bfd == NULL
869 || ! bfd_check_format (f->the_bfd, bfd_archive))
870 walk_wild_section (s, f, callback, data);
871 else
872 {
873 bfd *member;
874
875 /* This is an archive file. We must map each member of the
876 archive separately. */
877 member = bfd_openr_next_archived_file (f->the_bfd, NULL);
878 while (member != NULL)
879 {
880 /* When lookup_name is called, it will call the add_symbols
881 entry point for the archive. For each element of the
882 archive which is included, BFD will call ldlang_add_file,
883 which will set the usrdata field of the member to the
884 lang_input_statement. */
885 if (member->usrdata != NULL)
886 {
887 walk_wild_section (s,
888 (lang_input_statement_type *) member->usrdata,
889 callback, data);
890 }
891
892 member = bfd_openr_next_archived_file (f->the_bfd, member);
893 }
894 }
895}
896
897static void
898walk_wild (lang_wild_statement_type *s, callback_t callback, void *data)
899{
900 const char *file_spec = s->filename;
901 char *p;
902
903 if (file_spec == NULL)
904 {
905 /* Perform the iteration over all files in the list. */
906 LANG_FOR_EACH_INPUT_STATEMENT (f)
907 {
908 walk_wild_file (s, f, callback, data);
909 }
910 }
911 else if ((p = archive_path (file_spec)) != NULL)
912 {
913 LANG_FOR_EACH_INPUT_STATEMENT (f)
914 {
915 if (input_statement_is_archive_path (file_spec, p, f))
916 walk_wild_file (s, f, callback, data);
917 }
918 }
919 else if (wildcardp (file_spec))
920 {
921 LANG_FOR_EACH_INPUT_STATEMENT (f)
922 {
923 if (fnmatch (file_spec, f->filename, 0) == 0)
924 walk_wild_file (s, f, callback, data);
925 }
926 }
927 else
928 {
929 lang_input_statement_type *f;
930
931 /* Perform the iteration over a single file. */
932 f = lookup_name (file_spec);
933 if (f)
934 walk_wild_file (s, f, callback, data);
935 }
936}
937
938/* lang_for_each_statement walks the parse tree and calls the provided
939 function for each node, except those inside output section statements
940 with constraint set to -1. */
941
942void
943lang_for_each_statement_worker (void (*func) (lang_statement_union_type *),
944 lang_statement_union_type *s)
945{
946 for (; s != NULL; s = s->header.next)
947 {
948 func (s);
949
950 switch (s->header.type)
951 {
952 case lang_constructors_statement_enum:
953 lang_for_each_statement_worker (func, constructor_list.head);
954 break;
955 case lang_output_section_statement_enum:
956 if (s->output_section_statement.constraint != -1)
957 lang_for_each_statement_worker
958 (func, s->output_section_statement.children.head);
959 break;
960 case lang_wild_statement_enum:
961 lang_for_each_statement_worker (func,
962 s->wild_statement.children.head);
963 break;
964 case lang_group_statement_enum:
965 lang_for_each_statement_worker (func,
966 s->group_statement.children.head);
967 break;
968 case lang_data_statement_enum:
969 case lang_reloc_statement_enum:
970 case lang_object_symbols_statement_enum:
971 case lang_output_statement_enum:
972 case lang_target_statement_enum:
973 case lang_input_section_enum:
974 case lang_input_statement_enum:
975 case lang_assignment_statement_enum:
976 case lang_padding_statement_enum:
977 case lang_address_statement_enum:
978 case lang_fill_statement_enum:
979 case lang_insert_statement_enum:
980 break;
981 default:
982 FAIL ();
983 break;
984 }
985 }
986}
987
988void
989lang_for_each_statement (void (*func) (lang_statement_union_type *))
990{
991 lang_for_each_statement_worker (func, statement_list.head);
992}
993
994/*----------------------------------------------------------------------*/
995
996void
997lang_list_init (lang_statement_list_type *list)
998{
999 list->head = NULL;
1000 list->tail = &list->head;
1001}
1002
1003void
1004push_stat_ptr (lang_statement_list_type *new_ptr)
1005{
1006 if (stat_save_ptr >= stat_save + sizeof (stat_save) / sizeof (stat_save[0]))
1007 abort ();
1008 *stat_save_ptr++ = stat_ptr;
1009 stat_ptr = new_ptr;
1010}
1011
1012void
1013pop_stat_ptr (void)
1014{
1015 if (stat_save_ptr <= stat_save)
1016 abort ();
1017 stat_ptr = *--stat_save_ptr;
1018}
1019
1020/* Build a new statement node for the parse tree. */
1021
1022static lang_statement_union_type *
1023new_statement (enum statement_enum type,
1024 size_t size,
1025 lang_statement_list_type *list)
1026{
1027 lang_statement_union_type *new_stmt;
1028
1029 new_stmt = (lang_statement_union_type *) stat_alloc (size);
1030 new_stmt->header.type = type;
1031 new_stmt->header.next = NULL;
1032 lang_statement_append (list, new_stmt, &new_stmt->header.next);
1033 return new_stmt;
1034}
1035
1036/* Build a new input file node for the language. There are several
1037 ways in which we treat an input file, eg, we only look at symbols,
1038 or prefix it with a -l etc.
1039
1040 We can be supplied with requests for input files more than once;
1041 they may, for example be split over several lines like foo.o(.text)
1042 foo.o(.data) etc, so when asked for a file we check that we haven't
1043 got it already so we don't duplicate the bfd. */
1044
1045static lang_input_statement_type *
1046new_afile (const char *name,
1047 lang_input_file_enum_type file_type,
1048 const char *target,
1049 bfd_boolean add_to_list)
1050{
1051 lang_input_statement_type *p;
1052
1053 if (add_to_list)
1054 p = (lang_input_statement_type *) new_stat (lang_input_statement, stat_ptr);
1055 else
1056 {
1057 p = (lang_input_statement_type *)
1058 stat_alloc (sizeof (lang_input_statement_type));
1059 p->header.type = lang_input_statement_enum;
1060 p->header.next = NULL;
1061 }
1062
1063 lang_has_input_file = TRUE;
1064 p->target = target;
1065 p->sysrooted = FALSE;
1066
1067 if (file_type == lang_input_file_is_l_enum
1068 && name[0] == ':' && name[1] != '\0')
1069 {
1070 file_type = lang_input_file_is_search_file_enum;
1071 name = name + 1;
1072 }
1073
1074 switch (file_type)
1075 {
1076 case lang_input_file_is_symbols_only_enum:
1077 p->filename = name;
1078 p->maybe_archive = FALSE;
1079 p->real = TRUE;
1080 p->local_sym_name = name;
1081 p->just_syms_flag = TRUE;
1082 p->search_dirs_flag = FALSE;
1083 break;
1084 case lang_input_file_is_fake_enum:
1085 p->filename = name;
1086 p->maybe_archive = FALSE;
1087 p->real = FALSE;
1088 p->local_sym_name = name;
1089 p->just_syms_flag = FALSE;
1090 p->search_dirs_flag = FALSE;
1091 break;
1092 case lang_input_file_is_l_enum:
1093 p->maybe_archive = TRUE;
1094 p->filename = name;
1095 p->real = TRUE;
1096 p->local_sym_name = concat ("-l", name, (const char *) NULL);
1097 p->just_syms_flag = FALSE;
1098 p->search_dirs_flag = TRUE;
1099 break;
1100 case lang_input_file_is_marker_enum:
1101 p->filename = name;
1102 p->maybe_archive = FALSE;
1103 p->real = FALSE;
1104 p->local_sym_name = name;
1105 p->just_syms_flag = FALSE;
1106 p->search_dirs_flag = TRUE;
1107 break;
1108 case lang_input_file_is_search_file_enum:
1109 p->sysrooted = ldlang_sysrooted_script;
1110 p->filename = name;
1111 p->maybe_archive = FALSE;
1112 p->real = TRUE;
1113 p->local_sym_name = name;
1114 p->just_syms_flag = FALSE;
1115 p->search_dirs_flag = TRUE;
1116 break;
1117 case lang_input_file_is_file_enum:
1118 p->filename = name;
1119 p->maybe_archive = FALSE;
1120 p->real = TRUE;
1121 p->local_sym_name = name;
1122 p->just_syms_flag = FALSE;
1123 p->search_dirs_flag = FALSE;
1124 break;
1125 default:
1126 FAIL ();
1127 }
1128 p->the_bfd = NULL;
1129 p->next_real_file = NULL;
1130 p->next = NULL;
1131 p->dynamic = config.dynamic_link;
1132 p->add_DT_NEEDED_for_dynamic = add_DT_NEEDED_for_dynamic;
1133 p->add_DT_NEEDED_for_regular = add_DT_NEEDED_for_regular;
1134 p->whole_archive = whole_archive;
1135 p->loaded = FALSE;
1136 p->missing_file = FALSE;
1137#ifdef ENABLE_PLUGINS
1138 p->claimed = FALSE;
1139 p->claim_archive = FALSE;
1140#endif /* ENABLE_PLUGINS */
1141
1142 lang_statement_append (&input_file_chain,
1143 (lang_statement_union_type *) p,
1144 &p->next_real_file);
1145 return p;
1146}
1147
1148lang_input_statement_type *
1149lang_add_input_file (const char *name,
1150 lang_input_file_enum_type file_type,
1151 const char *target)
1152{
1153 return new_afile (name, file_type, target, TRUE);
1154}
1155
1156struct out_section_hash_entry
1157{
1158 struct bfd_hash_entry root;
1159 lang_statement_union_type s;
1160};
1161
1162/* The hash table. */
1163
1164static struct bfd_hash_table output_section_statement_table;
1165
1166/* Support routines for the hash table used by lang_output_section_find,
1167 initialize the table, fill in an entry and remove the table. */
1168
1169static struct bfd_hash_entry *
1170output_section_statement_newfunc (struct bfd_hash_entry *entry,
1171 struct bfd_hash_table *table,
1172 const char *string)
1173{
1174 lang_output_section_statement_type **nextp;
1175 struct out_section_hash_entry *ret;
1176
1177 if (entry == NULL)
1178 {
1179 entry = (struct bfd_hash_entry *) bfd_hash_allocate (table,
1180 sizeof (*ret));
1181 if (entry == NULL)
1182 return entry;
1183 }
1184
1185 entry = bfd_hash_newfunc (entry, table, string);
1186 if (entry == NULL)
1187 return entry;
1188
1189 ret = (struct out_section_hash_entry *) entry;
1190 memset (&ret->s, 0, sizeof (ret->s));
1191 ret->s.header.type = lang_output_section_statement_enum;
1192 ret->s.output_section_statement.subsection_alignment = -1;
1193 ret->s.output_section_statement.section_alignment = -1;
1194 ret->s.output_section_statement.block_value = 1;
1195 lang_list_init (&ret->s.output_section_statement.children);
1196 lang_statement_append (stat_ptr, &ret->s, &ret->s.header.next);
1197
1198 /* For every output section statement added to the list, except the
1199 first one, lang_output_section_statement.tail points to the "next"
1200 field of the last element of the list. */
1201 if (lang_output_section_statement.head != NULL)
1202 ret->s.output_section_statement.prev
1203 = ((lang_output_section_statement_type *)
1204 ((char *) lang_output_section_statement.tail
1205 - offsetof (lang_output_section_statement_type, next)));
1206
1207 /* GCC's strict aliasing rules prevent us from just casting the
1208 address, so we store the pointer in a variable and cast that
1209 instead. */
1210 nextp = &ret->s.output_section_statement.next;
1211 lang_statement_append (&lang_output_section_statement,
1212 &ret->s,
1213 (lang_statement_union_type **) nextp);
1214 return &ret->root;
1215}
1216
1217static void
1218output_section_statement_table_init (void)
1219{
1220 if (!bfd_hash_table_init_n (&output_section_statement_table,
1221 output_section_statement_newfunc,
1222 sizeof (struct out_section_hash_entry),
1223 61))
1224 einfo (_("%P%F: can not create hash table: %E\n"));
1225}
1226
1227static void
1228output_section_statement_table_free (void)
1229{
1230 bfd_hash_table_free (&output_section_statement_table);
1231}
1232
1233/* Build enough state so that the parser can build its tree. */
1234
1235void
1236lang_init (void)
1237{
1238 obstack_begin (&stat_obstack, 1000);
1239
1240 stat_ptr = &statement_list;
1241
1242 output_section_statement_table_init ();
1243
1244 lang_list_init (stat_ptr);
1245
1246 lang_list_init (&input_file_chain);
1247 lang_list_init (&lang_output_section_statement);
1248 lang_list_init (&file_chain);
1249 first_file = lang_add_input_file (NULL, lang_input_file_is_marker_enum,
1250 NULL);
1251 abs_output_section =
1252 lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME, 0, TRUE);
1253
1254 abs_output_section->bfd_section = bfd_abs_section_ptr;
1255
1256 /* The value "3" is ad-hoc, somewhat related to the expected number of
1257 DEFINED expressions in a linker script. For most default linker
1258 scripts, there are none. Why a hash table then? Well, it's somewhat
1259 simpler to re-use working machinery than using a linked list in terms
1260 of code-complexity here in ld, besides the initialization which just
1261 looks like other code here. */
1262 if (!bfd_hash_table_init_n (&lang_definedness_table,
1263 lang_definedness_newfunc,
1264 sizeof (struct lang_definedness_hash_entry),
1265 3))
1266 einfo (_("%P%F: can not create hash table: %E\n"));
1267}
1268
1269void
1270lang_finish (void)
1271{
1272 output_section_statement_table_free ();
1273}
1274
1275/*----------------------------------------------------------------------
1276 A region is an area of memory declared with the
1277 MEMORY { name:org=exp, len=exp ... }
1278 syntax.
1279
1280 We maintain a list of all the regions here.
1281
1282 If no regions are specified in the script, then the default is used
1283 which is created when looked up to be the entire data space.
1284
1285 If create is true we are creating a region inside a MEMORY block.
1286 In this case it is probably an error to create a region that has
1287 already been created. If we are not inside a MEMORY block it is
1288 dubious to use an undeclared region name (except DEFAULT_MEMORY_REGION)
1289 and so we issue a warning.
1290
1291 Each region has at least one name. The first name is either
1292 DEFAULT_MEMORY_REGION or the name given in the MEMORY block. You can add
1293 alias names to an existing region within a script with
1294 REGION_ALIAS (alias, region_name). Each name corresponds to at most one
1295 region. */
1296
1297static lang_memory_region_type *lang_memory_region_list;
1298static lang_memory_region_type **lang_memory_region_list_tail
1299 = &lang_memory_region_list;
1300
1301lang_memory_region_type *
1302lang_memory_region_lookup (const char *const name, bfd_boolean create)
1303{
1304 lang_memory_region_name *n;
1305 lang_memory_region_type *r;
1306 lang_memory_region_type *new_region;
1307
1308 /* NAME is NULL for LMA memspecs if no region was specified. */
1309 if (name == NULL)
1310 return NULL;
1311
1312 for (r = lang_memory_region_list; r != NULL; r = r->next)
1313 for (n = &r->name_list; n != NULL; n = n->next)
1314 if (strcmp (n->name, name) == 0)
1315 {
1316 if (create)
1317 einfo (_("%P:%S: warning: redeclaration of memory region `%s'\n"),
1318 name);
1319 return r;
1320 }
1321
1322 if (!create && strcmp (name, DEFAULT_MEMORY_REGION))
1323 einfo (_("%P:%S: warning: memory region `%s' not declared\n"), name);
1324
1325 new_region = (lang_memory_region_type *)
1326 stat_alloc (sizeof (lang_memory_region_type));
1327
1328 new_region->name_list.name = xstrdup (name);
1329 new_region->name_list.next = NULL;
1330 new_region->next = NULL;
1331 new_region->origin = 0;
1332 new_region->length = ~(bfd_size_type) 0;
1333 new_region->current = 0;
1334 new_region->last_os = NULL;
1335 new_region->flags = 0;
1336 new_region->not_flags = 0;
1337 new_region->had_full_message = FALSE;
1338
1339 *lang_memory_region_list_tail = new_region;
1340 lang_memory_region_list_tail = &new_region->next;
1341
1342 return new_region;
1343}
1344
1345void
1346lang_memory_region_alias (const char * alias, const char * region_name)
1347{
1348 lang_memory_region_name * n;
1349 lang_memory_region_type * r;
1350 lang_memory_region_type * region;
1351
1352 /* The default region must be unique. This ensures that it is not necessary
1353 to iterate through the name list if someone wants the check if a region is
1354 the default memory region. */
1355 if (strcmp (region_name, DEFAULT_MEMORY_REGION) == 0
1356 || strcmp (alias, DEFAULT_MEMORY_REGION) == 0)
1357 einfo (_("%F%P:%S: error: alias for default memory region\n"));
1358
1359 /* Look for the target region and check if the alias is not already
1360 in use. */
1361 region = NULL;
1362 for (r = lang_memory_region_list; r != NULL; r = r->next)
1363 for (n = &r->name_list; n != NULL; n = n->next)
1364 {
1365 if (region == NULL && strcmp (n->name, region_name) == 0)
1366 region = r;
1367 if (strcmp (n->name, alias) == 0)
1368 einfo (_("%F%P:%S: error: redefinition of memory region "
1369 "alias `%s'\n"),
1370 alias);
1371 }
1372
1373 /* Check if the target region exists. */
1374 if (region == NULL)
1375 einfo (_("%F%P:%S: error: memory region `%s' "
1376 "for alias `%s' does not exist\n"),
1377 region_name,
1378 alias);
1379
1380 /* Add alias to region name list. */
1381 n = (lang_memory_region_name *) stat_alloc (sizeof (lang_memory_region_name));
1382 n->name = xstrdup (alias);
1383 n->next = region->name_list.next;
1384 region->name_list.next = n;
1385}
1386
1387static lang_memory_region_type *
1388lang_memory_default (asection * section)
1389{
1390 lang_memory_region_type *p;
1391
1392 flagword sec_flags = section->flags;
1393
1394 /* Override SEC_DATA to mean a writable section. */
1395 if ((sec_flags & (SEC_ALLOC | SEC_READONLY | SEC_CODE)) == SEC_ALLOC)
1396 sec_flags |= SEC_DATA;
1397
1398 for (p = lang_memory_region_list; p != NULL; p = p->next)
1399 {
1400 if ((p->flags & sec_flags) != 0
1401 && (p->not_flags & sec_flags) == 0)
1402 {
1403 return p;
1404 }
1405 }
1406 return lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
1407}
1408
1409/* Find or create an output_section_statement with the given NAME.
1410 If CONSTRAINT is non-zero match one with that constraint, otherwise
1411 match any non-negative constraint. If CREATE, always make a
1412 new output_section_statement for SPECIAL CONSTRAINT. */
1413
1414lang_output_section_statement_type *
1415lang_output_section_statement_lookup (const char *name,
1416 int constraint,
1417 bfd_boolean create)
1418{
1419 struct out_section_hash_entry *entry;
1420
1421 entry = ((struct out_section_hash_entry *)
1422 bfd_hash_lookup (&output_section_statement_table, name,
1423 create, FALSE));
1424 if (entry == NULL)
1425 {
1426 if (create)
1427 einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1428 return NULL;
1429 }
1430
1431 if (entry->s.output_section_statement.name != NULL)
1432 {
1433 /* We have a section of this name, but it might not have the correct
1434 constraint. */
1435 struct out_section_hash_entry *last_ent;
1436
1437 name = entry->s.output_section_statement.name;
1438 if (create && constraint == SPECIAL)
1439 /* Not traversing to the end reverses the order of the second
1440 and subsequent SPECIAL sections in the hash table chain,
1441 but that shouldn't matter. */
1442 last_ent = entry;
1443 else
1444 do
1445 {
1446 if (constraint == entry->s.output_section_statement.constraint
1447 || (constraint == 0
1448 && entry->s.output_section_statement.constraint >= 0))
1449 return &entry->s.output_section_statement;
1450 last_ent = entry;
1451 entry = (struct out_section_hash_entry *) entry->root.next;
1452 }
1453 while (entry != NULL
1454 && name == entry->s.output_section_statement.name);
1455
1456 if (!create)
1457 return NULL;
1458
1459 entry
1460 = ((struct out_section_hash_entry *)
1461 output_section_statement_newfunc (NULL,
1462 &output_section_statement_table,
1463 name));
1464 if (entry == NULL)
1465 {
1466 einfo (_("%P%F: failed creating section `%s': %E\n"), name);
1467 return NULL;
1468 }
1469 entry->root = last_ent->root;
1470 last_ent->root.next = &entry->root;
1471 }
1472
1473 entry->s.output_section_statement.name = name;
1474 entry->s.output_section_statement.constraint = constraint;
1475 return &entry->s.output_section_statement;
1476}
1477
1478/* Find the next output_section_statement with the same name as OS.
1479 If CONSTRAINT is non-zero, find one with that constraint otherwise
1480 match any non-negative constraint. */
1481
1482lang_output_section_statement_type *
1483next_matching_output_section_statement (lang_output_section_statement_type *os,
1484 int constraint)
1485{
1486 /* All output_section_statements are actually part of a
1487 struct out_section_hash_entry. */
1488 struct out_section_hash_entry *entry = (struct out_section_hash_entry *)
1489 ((char *) os
1490 - offsetof (struct out_section_hash_entry, s.output_section_statement));
1491 const char *name = os->name;
1492
1493 ASSERT (name == entry->root.string);
1494 do
1495 {
1496 entry = (struct out_section_hash_entry *) entry->root.next;
1497 if (entry == NULL
1498 || name != entry->s.output_section_statement.name)
1499 return NULL;
1500 }
1501 while (constraint != entry->s.output_section_statement.constraint
1502 && (constraint != 0
1503 || entry->s.output_section_statement.constraint < 0));
1504
1505 return &entry->s.output_section_statement;
1506}
1507
1508/* A variant of lang_output_section_find used by place_orphan.
1509 Returns the output statement that should precede a new output
1510 statement for SEC. If an exact match is found on certain flags,
1511 sets *EXACT too. */
1512
1513lang_output_section_statement_type *
1514lang_output_section_find_by_flags (const asection *sec,
1515 lang_output_section_statement_type **exact,
1516 lang_match_sec_type_func match_type)
1517{
1518 lang_output_section_statement_type *first, *look, *found;
1519 flagword flags;
1520
1521 /* We know the first statement on this list is *ABS*. May as well
1522 skip it. */
1523 first = &lang_output_section_statement.head->output_section_statement;
1524 first = first->next;
1525
1526 /* First try for an exact match. */
1527 found = NULL;
1528 for (look = first; look; look = look->next)
1529 {
1530 flags = look->flags;
1531 if (look->bfd_section != NULL)
1532 {
1533 flags = look->bfd_section->flags;
1534 if (match_type && !match_type (link_info.output_bfd,
1535 look->bfd_section,
1536 sec->owner, sec))
1537 continue;
1538 }
1539 flags ^= sec->flags;
1540 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY
1541 | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1542 found = look;
1543 }
1544 if (found != NULL)
1545 {
1546 if (exact != NULL)
1547 *exact = found;
1548 return found;
1549 }
1550
1551 if ((sec->flags & SEC_CODE) != 0
1552 && (sec->flags & SEC_ALLOC) != 0)
1553 {
1554 /* Try for a rw code section. */
1555 for (look = first; look; look = look->next)
1556 {
1557 flags = look->flags;
1558 if (look->bfd_section != NULL)
1559 {
1560 flags = look->bfd_section->flags;
1561 if (match_type && !match_type (link_info.output_bfd,
1562 look->bfd_section,
1563 sec->owner, sec))
1564 continue;
1565 }
1566 flags ^= sec->flags;
1567 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1568 | SEC_CODE | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1569 found = look;
1570 }
1571 }
1572 else if ((sec->flags & (SEC_READONLY | SEC_THREAD_LOCAL)) != 0
1573 && (sec->flags & SEC_ALLOC) != 0)
1574 {
1575 /* .rodata can go after .text, .sdata2 after .rodata. */
1576 for (look = first; look; look = look->next)
1577 {
1578 flags = look->flags;
1579 if (look->bfd_section != NULL)
1580 {
1581 flags = look->bfd_section->flags;
1582 if (match_type && !match_type (link_info.output_bfd,
1583 look->bfd_section,
1584 sec->owner, sec))
1585 continue;
1586 }
1587 flags ^= sec->flags;
1588 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1589 | SEC_READONLY))
1590 && !(look->flags & (SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1591 found = look;
1592 }
1593 }
1594 else if ((sec->flags & SEC_SMALL_DATA) != 0
1595 && (sec->flags & SEC_ALLOC) != 0)
1596 {
1597 /* .sdata goes after .data, .sbss after .sdata. */
1598 for (look = first; look; look = look->next)
1599 {
1600 flags = look->flags;
1601 if (look->bfd_section != NULL)
1602 {
1603 flags = look->bfd_section->flags;
1604 if (match_type && !match_type (link_info.output_bfd,
1605 look->bfd_section,
1606 sec->owner, sec))
1607 continue;
1608 }
1609 flags ^= sec->flags;
1610 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1611 | SEC_THREAD_LOCAL))
1612 || ((look->flags & SEC_SMALL_DATA)
1613 && !(sec->flags & SEC_HAS_CONTENTS)))
1614 found = look;
1615 }
1616 }
1617 else if ((sec->flags & SEC_HAS_CONTENTS) != 0
1618 && (sec->flags & SEC_ALLOC) != 0)
1619 {
1620 /* .data goes after .rodata. */
1621 for (look = first; look; look = look->next)
1622 {
1623 flags = look->flags;
1624 if (look->bfd_section != NULL)
1625 {
1626 flags = look->bfd_section->flags;
1627 if (match_type && !match_type (link_info.output_bfd,
1628 look->bfd_section,
1629 sec->owner, sec))
1630 continue;
1631 }
1632 flags ^= sec->flags;
1633 if (!(flags & (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD
1634 | SEC_SMALL_DATA | SEC_THREAD_LOCAL)))
1635 found = look;
1636 }
1637 }
1638 else if ((sec->flags & SEC_ALLOC) != 0)
1639 {
1640 /* .bss goes after any other alloc section. */
1641 for (look = first; look; look = look->next)
1642 {
1643 flags = look->flags;
1644 if (look->bfd_section != NULL)
1645 {
1646 flags = look->bfd_section->flags;
1647 if (match_type && !match_type (link_info.output_bfd,
1648 look->bfd_section,
1649 sec->owner, sec))
1650 continue;
1651 }
1652 flags ^= sec->flags;
1653 if (!(flags & SEC_ALLOC))
1654 found = look;
1655 }
1656 }
1657 else
1658 {
1659 /* non-alloc go last. */
1660 for (look = first; look; look = look->next)
1661 {
1662 flags = look->flags;
1663 if (look->bfd_section != NULL)
1664 flags = look->bfd_section->flags;
1665 flags ^= sec->flags;
1666 if (!(flags & SEC_DEBUGGING))
1667 found = look;
1668 }
1669 return found;
1670 }
1671
1672 if (found || !match_type)
1673 return found;
1674
1675 return lang_output_section_find_by_flags (sec, NULL, NULL);
1676}
1677
1678/* Find the last output section before given output statement.
1679 Used by place_orphan. */
1680
1681static asection *
1682output_prev_sec_find (lang_output_section_statement_type *os)
1683{
1684 lang_output_section_statement_type *lookup;
1685
1686 for (lookup = os->prev; lookup != NULL; lookup = lookup->prev)
1687 {
1688 if (lookup->constraint < 0)
1689 continue;
1690
1691 if (lookup->bfd_section != NULL && lookup->bfd_section->owner != NULL)
1692 return lookup->bfd_section;
1693 }
1694
1695 return NULL;
1696}
1697
1698/* Look for a suitable place for a new output section statement. The
1699 idea is to skip over anything that might be inside a SECTIONS {}
1700 statement in a script, before we find another output section
1701 statement. Assignments to "dot" before an output section statement
1702 are assumed to belong to it, except in two cases; The first
1703 assignment to dot, and assignments before non-alloc sections.
1704 Otherwise we might put an orphan before . = . + SIZEOF_HEADERS or
1705 similar assignments that set the initial address, or we might
1706 insert non-alloc note sections among assignments setting end of
1707 image symbols. */
1708
1709static lang_statement_union_type **
1710insert_os_after (lang_output_section_statement_type *after)
1711{
1712 lang_statement_union_type **where;
1713 lang_statement_union_type **assign = NULL;
1714 bfd_boolean ignore_first;
1715
1716 ignore_first
1717 = after == &lang_output_section_statement.head->output_section_statement;
1718
1719 for (where = &after->header.next;
1720 *where != NULL;
1721 where = &(*where)->header.next)
1722 {
1723 switch ((*where)->header.type)
1724 {
1725 case lang_assignment_statement_enum:
1726 if (assign == NULL)
1727 {
1728 lang_assignment_statement_type *ass;
1729
1730 ass = &(*where)->assignment_statement;
1731 if (ass->exp->type.node_class != etree_assert
1732 && ass->exp->assign.dst[0] == '.'
1733 && ass->exp->assign.dst[1] == 0
1734 && !ignore_first)
1735 assign = where;
1736 }
1737 ignore_first = FALSE;
1738 continue;
1739 case lang_wild_statement_enum:
1740 case lang_input_section_enum:
1741 case lang_object_symbols_statement_enum:
1742 case lang_fill_statement_enum:
1743 case lang_data_statement_enum:
1744 case lang_reloc_statement_enum:
1745 case lang_padding_statement_enum:
1746 case lang_constructors_statement_enum:
1747 assign = NULL;
1748 continue;
1749 case lang_output_section_statement_enum:
1750 if (assign != NULL)
1751 {
1752 asection *s = (*where)->output_section_statement.bfd_section;
1753
1754 if (s == NULL
1755 || s->map_head.s == NULL
1756 || (s->flags & SEC_ALLOC) != 0)
1757 where = assign;
1758 }
1759 break;
1760 case lang_input_statement_enum:
1761 case lang_address_statement_enum:
1762 case lang_target_statement_enum:
1763 case lang_output_statement_enum:
1764 case lang_group_statement_enum:
1765 case lang_insert_statement_enum:
1766 continue;
1767 }
1768 break;
1769 }
1770
1771 return where;
1772}
1773
1774lang_output_section_statement_type *
1775lang_insert_orphan (asection *s,
1776 const char *secname,
1777 int constraint,
1778 lang_output_section_statement_type *after,
1779 struct orphan_save *place,
1780 etree_type *address,
1781 lang_statement_list_type *add_child)
1782{
1783 lang_statement_list_type add;
1784 const char *ps;
1785 lang_output_section_statement_type *os;
1786 lang_output_section_statement_type **os_tail;
1787
1788 /* If we have found an appropriate place for the output section
1789 statements for this orphan, add them to our own private list,
1790 inserting them later into the global statement list. */
1791 if (after != NULL)
1792 {
1793 lang_list_init (&add);
1794 push_stat_ptr (&add);
1795 }
1796
1797 if (link_info.relocatable || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0)
1798 address = exp_intop (0);
1799
1800 os_tail = ((lang_output_section_statement_type **)
1801 lang_output_section_statement.tail);
1802 os = lang_enter_output_section_statement (secname, address, normal_section,
1803 NULL, NULL, NULL, constraint);
1804
1805 ps = NULL;
1806 if (config.build_constructors && *os_tail == os)
1807 {
1808 /* If the name of the section is representable in C, then create
1809 symbols to mark the start and the end of the section. */
1810 for (ps = secname; *ps != '\0'; ps++)
1811 if (! ISALNUM ((unsigned char) *ps) && *ps != '_')
1812 break;
1813 if (*ps == '\0')
1814 {
1815 char *symname;
1816 etree_type *e_align;
1817
1818 symname = (char *) xmalloc (ps - secname + sizeof "__start_" + 1);
1819 symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd);
1820 sprintf (symname + (symname[0] != 0), "__start_%s", secname);
1821 e_align = exp_unop (ALIGN_K,
1822 exp_intop ((bfd_vma) 1 << s->alignment_power));
1823 lang_add_assignment (exp_assign (".", e_align));
1824 lang_add_assignment (exp_provide (symname,
1825 exp_unop (ABSOLUTE,
1826 exp_nameop (NAME, ".")),
1827 FALSE));
1828 }
1829 }
1830
1831 if (add_child == NULL)
1832 add_child = &os->children;
1833 lang_add_section (add_child, s, os);
1834
1835 if (after && (s->flags & (SEC_LOAD | SEC_ALLOC)) != 0)
1836 {
1837 const char *region = (after->region
1838 ? after->region->name_list.name
1839 : DEFAULT_MEMORY_REGION);
1840 const char *lma_region = (after->lma_region
1841 ? after->lma_region->name_list.name
1842 : NULL);
1843 lang_leave_output_section_statement (NULL, region, after->phdrs,
1844 lma_region);
1845 }
1846 else
1847 lang_leave_output_section_statement (NULL, DEFAULT_MEMORY_REGION, NULL,
1848 NULL);
1849
1850 if (ps != NULL && *ps == '\0')
1851 {
1852 char *symname;
1853
1854 symname = (char *) xmalloc (ps - secname + sizeof "__stop_" + 1);
1855 symname[0] = bfd_get_symbol_leading_char (link_info.output_bfd);
1856 sprintf (symname + (symname[0] != 0), "__stop_%s", secname);
1857 lang_add_assignment (exp_provide (symname,
1858 exp_nameop (NAME, "."),
1859 FALSE));
1860 }
1861
1862 /* Restore the global list pointer. */
1863 if (after != NULL)
1864 pop_stat_ptr ();
1865
1866 if (after != NULL && os->bfd_section != NULL)
1867 {
1868 asection *snew, *as;
1869
1870 snew = os->bfd_section;
1871
1872 /* Shuffle the bfd section list to make the output file look
1873 neater. This is really only cosmetic. */
1874 if (place->section == NULL
1875 && after != (&lang_output_section_statement.head
1876 ->output_section_statement))
1877 {
1878 asection *bfd_section = after->bfd_section;
1879
1880 /* If the output statement hasn't been used to place any input
1881 sections (and thus doesn't have an output bfd_section),
1882 look for the closest prior output statement having an
1883 output section. */
1884 if (bfd_section == NULL)
1885 bfd_section = output_prev_sec_find (after);
1886
1887 if (bfd_section != NULL && bfd_section != snew)
1888 place->section = &bfd_section->next;
1889 }
1890
1891 if (place->section == NULL)
1892 place->section = &link_info.output_bfd->sections;
1893
1894 as = *place->section;
1895
1896 if (!as)
1897 {
1898 /* Put the section at the end of the list. */
1899
1900 /* Unlink the section. */
1901 bfd_section_list_remove (link_info.output_bfd, snew);
1902
1903 /* Now tack it back on in the right place. */
1904 bfd_section_list_append (link_info.output_bfd, snew);
1905 }
1906 else if (as != snew && as->prev != snew)
1907 {
1908 /* Unlink the section. */
1909 bfd_section_list_remove (link_info.output_bfd, snew);
1910
1911 /* Now tack it back on in the right place. */
1912 bfd_section_list_insert_before (link_info.output_bfd, as, snew);
1913 }
1914
1915 /* Save the end of this list. Further ophans of this type will
1916 follow the one we've just added. */
1917 place->section = &snew->next;
1918
1919 /* The following is non-cosmetic. We try to put the output
1920 statements in some sort of reasonable order here, because they
1921 determine the final load addresses of the orphan sections.
1922 In addition, placing output statements in the wrong order may
1923 require extra segments. For instance, given a typical
1924 situation of all read-only sections placed in one segment and
1925 following that a segment containing all the read-write
1926 sections, we wouldn't want to place an orphan read/write
1927 section before or amongst the read-only ones. */
1928 if (add.head != NULL)
1929 {
1930 lang_output_section_statement_type *newly_added_os;
1931
1932 if (place->stmt == NULL)
1933 {
1934 lang_statement_union_type **where = insert_os_after (after);
1935
1936 *add.tail = *where;
1937 *where = add.head;
1938
1939 place->os_tail = &after->next;
1940 }
1941 else
1942 {
1943 /* Put it after the last orphan statement we added. */
1944 *add.tail = *place->stmt;
1945 *place->stmt = add.head;
1946 }
1947
1948 /* Fix the global list pointer if we happened to tack our
1949 new list at the tail. */
1950 if (*stat_ptr->tail == add.head)
1951 stat_ptr->tail = add.tail;
1952
1953 /* Save the end of this list. */
1954 place->stmt = add.tail;
1955
1956 /* Do the same for the list of output section statements. */
1957 newly_added_os = *os_tail;
1958 *os_tail = NULL;
1959 newly_added_os->prev = (lang_output_section_statement_type *)
1960 ((char *) place->os_tail
1961 - offsetof (lang_output_section_statement_type, next));
1962 newly_added_os->next = *place->os_tail;
1963 if (newly_added_os->next != NULL)
1964 newly_added_os->next->prev = newly_added_os;
1965 *place->os_tail = newly_added_os;
1966 place->os_tail = &newly_added_os->next;
1967
1968 /* Fixing the global list pointer here is a little different.
1969 We added to the list in lang_enter_output_section_statement,
1970 trimmed off the new output_section_statment above when
1971 assigning *os_tail = NULL, but possibly added it back in
1972 the same place when assigning *place->os_tail. */
1973 if (*os_tail == NULL)
1974 lang_output_section_statement.tail
1975 = (lang_statement_union_type **) os_tail;
1976 }
1977 }
1978 return os;
1979}
1980
1981static void
1982lang_map_flags (flagword flag)
1983{
1984 if (flag & SEC_ALLOC)
1985 minfo ("a");
1986
1987 if (flag & SEC_CODE)
1988 minfo ("x");
1989
1990 if (flag & SEC_READONLY)
1991 minfo ("r");
1992
1993 if (flag & SEC_DATA)
1994 minfo ("w");
1995
1996 if (flag & SEC_LOAD)
1997 minfo ("l");
1998}
1999
2000void
2001lang_map (void)
2002{
2003 lang_memory_region_type *m;
2004 bfd_boolean dis_header_printed = FALSE;
2005 bfd *p;
2006
2007 LANG_FOR_EACH_INPUT_STATEMENT (file)
2008 {
2009 asection *s;
2010
2011 if ((file->the_bfd->flags & (BFD_LINKER_CREATED | DYNAMIC)) != 0
2012 || file->just_syms_flag)
2013 continue;
2014
2015 for (s = file->the_bfd->sections; s != NULL; s = s->next)
2016 if ((s->output_section == NULL
2017 || s->output_section->owner != link_info.output_bfd)
2018 && (s->flags & (SEC_LINKER_CREATED | SEC_KEEP)) == 0)
2019 {
2020 if (! dis_header_printed)
2021 {
2022 fprintf (config.map_file, _("\nDiscarded input sections\n\n"));
2023 dis_header_printed = TRUE;
2024 }
2025
2026 print_input_section (s, TRUE);
2027 }
2028 }
2029
2030 minfo (_("\nMemory Configuration\n\n"));
2031 fprintf (config.map_file, "%-16s %-18s %-18s %s\n",
2032 _("Name"), _("Origin"), _("Length"), _("Attributes"));
2033
2034 for (m = lang_memory_region_list; m != NULL; m = m->next)
2035 {
2036 char buf[100];
2037 int len;
2038
2039 fprintf (config.map_file, "%-16s ", m->name_list.name);
2040
2041 sprintf_vma (buf, m->origin);
2042 minfo ("0x%s ", buf);
2043 len = strlen (buf);
2044 while (len < 16)
2045 {
2046 print_space ();
2047 ++len;
2048 }
2049
2050 minfo ("0x%V", m->length);
2051 if (m->flags || m->not_flags)
2052 {
2053#ifndef BFD64
2054 minfo (" ");
2055#endif
2056 if (m->flags)
2057 {
2058 print_space ();
2059 lang_map_flags (m->flags);
2060 }
2061
2062 if (m->not_flags)
2063 {
2064 minfo (" !");
2065 lang_map_flags (m->not_flags);
2066 }
2067 }
2068
2069 print_nl ();
2070 }
2071
2072 fprintf (config.map_file, _("\nLinker script and memory map\n\n"));
2073
2074 if (! link_info.reduce_memory_overheads)
2075 {
2076 obstack_begin (&map_obstack, 1000);
2077 for (p = link_info.input_bfds; p != (bfd *) NULL; p = p->link_next)
2078 bfd_map_over_sections (p, init_map_userdata, 0);
2079 bfd_link_hash_traverse (link_info.hash, sort_def_symbol, 0);
2080 }
2081 lang_statement_iteration ++;
2082 print_statements ();
2083}
2084
2085static void
2086init_map_userdata (bfd *abfd ATTRIBUTE_UNUSED,
2087 asection *sec,
2088 void *data ATTRIBUTE_UNUSED)
2089{
2090 fat_section_userdata_type *new_data
2091 = ((fat_section_userdata_type *) (stat_alloc
2092 (sizeof (fat_section_userdata_type))));
2093
2094 ASSERT (get_userdata (sec) == NULL);
2095 get_userdata (sec) = new_data;
2096 new_data->map_symbol_def_tail = &new_data->map_symbol_def_head;
2097 new_data->map_symbol_def_count = 0;
2098}
2099
2100static bfd_boolean
2101sort_def_symbol (struct bfd_link_hash_entry *hash_entry,
2102 void *info ATTRIBUTE_UNUSED)
2103{
2104 if (hash_entry->type == bfd_link_hash_warning)
2105 hash_entry = (struct bfd_link_hash_entry *) hash_entry->u.i.link;
2106
2107 if (hash_entry->type == bfd_link_hash_defined
2108 || hash_entry->type == bfd_link_hash_defweak)
2109 {
2110 struct fat_user_section_struct *ud;
2111 struct map_symbol_def *def;
2112
2113 ud = (struct fat_user_section_struct *)
2114 get_userdata (hash_entry->u.def.section);
2115 if (! ud)
2116 {
2117 /* ??? What do we have to do to initialize this beforehand? */
2118 /* The first time we get here is bfd_abs_section... */
2119 init_map_userdata (0, hash_entry->u.def.section, 0);
2120 ud = (struct fat_user_section_struct *)
2121 get_userdata (hash_entry->u.def.section);
2122 }
2123 else if (!ud->map_symbol_def_tail)
2124 ud->map_symbol_def_tail = &ud->map_symbol_def_head;
2125
2126 def = (struct map_symbol_def *) obstack_alloc (&map_obstack, sizeof *def);
2127 def->entry = hash_entry;
2128 *(ud->map_symbol_def_tail) = def;
2129 ud->map_symbol_def_tail = &def->next;
2130 ud->map_symbol_def_count++;
2131 }
2132 return TRUE;
2133}
2134
2135/* Initialize an output section. */
2136
2137static void
2138init_os (lang_output_section_statement_type *s, flagword flags)
2139{
2140 if (strcmp (s->name, DISCARD_SECTION_NAME) == 0)
2141 einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME);
2142
2143 if (s->constraint != SPECIAL)
2144 s->bfd_section = bfd_get_section_by_name (link_info.output_bfd, s->name);
2145 if (s->bfd_section == NULL)
2146 s->bfd_section = bfd_make_section_anyway_with_flags (link_info.output_bfd,
2147 s->name, flags);
2148 if (s->bfd_section == NULL)
2149 {
2150 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
2151 link_info.output_bfd->xvec->name, s->name);
2152 }
2153 s->bfd_section->output_section = s->bfd_section;
2154 s->bfd_section->output_offset = 0;
2155
2156 if (!link_info.reduce_memory_overheads)
2157 {
2158 fat_section_userdata_type *new_userdata = (fat_section_userdata_type *)
2159 stat_alloc (sizeof (fat_section_userdata_type));
2160 memset (new_userdata, 0, sizeof (fat_section_userdata_type));
2161 get_userdata (s->bfd_section) = new_userdata;
2162 }
2163
2164 /* If there is a base address, make sure that any sections it might
2165 mention are initialized. */
2166 if (s->addr_tree != NULL)
2167 exp_init_os (s->addr_tree);
2168
2169 if (s->load_base != NULL)
2170 exp_init_os (s->load_base);
2171
2172 /* If supplied an alignment, set it. */
2173 if (s->section_alignment != -1)
2174 s->bfd_section->alignment_power = s->section_alignment;
2175}
2176
2177/* Make sure that all output sections mentioned in an expression are
2178 initialized. */
2179
2180static void
2181exp_init_os (etree_type *exp)
2182{
2183 switch (exp->type.node_class)
2184 {
2185 case etree_assign:
2186 case etree_provide:
2187 exp_init_os (exp->assign.src);
2188 break;
2189
2190 case etree_binary:
2191 exp_init_os (exp->binary.lhs);
2192 exp_init_os (exp->binary.rhs);
2193 break;
2194
2195 case etree_trinary:
2196 exp_init_os (exp->trinary.cond);
2197 exp_init_os (exp->trinary.lhs);
2198 exp_init_os (exp->trinary.rhs);
2199 break;
2200
2201 case etree_assert:
2202 exp_init_os (exp->assert_s.child);
2203 break;
2204
2205 case etree_unary:
2206 exp_init_os (exp->unary.child);
2207 break;
2208
2209 case etree_name:
2210 switch (exp->type.node_code)
2211 {
2212 case ADDR:
2213 case LOADADDR:
2214 case SIZEOF:
2215 {
2216 lang_output_section_statement_type *os;
2217
2218 os = lang_output_section_find (exp->name.name);
2219 if (os != NULL && os->bfd_section == NULL)
2220 init_os (os, 0);
2221 }
2222 }
2223 break;
2224
2225 default:
2226 break;
2227 }
2228}
2229\f
2230static void
2231section_already_linked (bfd *abfd, asection *sec, void *data)
2232{
2233 lang_input_statement_type *entry = (lang_input_statement_type *) data;
2234
2235 /* If we are only reading symbols from this object, then we want to
2236 discard all sections. */
2237 if (entry->just_syms_flag)
2238 {
2239 bfd_link_just_syms (abfd, sec, &link_info);
2240 return;
2241 }
2242
2243 if (!(abfd->flags & DYNAMIC))
2244 bfd_section_already_linked (abfd, sec, &link_info);
2245}
2246\f
2247/* The wild routines.
2248
2249 These expand statements like *(.text) and foo.o to a list of
2250 explicit actions, like foo.o(.text), bar.o(.text) and
2251 foo.o(.text, .data). */
2252
2253/* Add SECTION to the output section OUTPUT. Do this by creating a
2254 lang_input_section statement which is placed at PTR. FILE is the
2255 input file which holds SECTION. */
2256
2257void
2258lang_add_section (lang_statement_list_type *ptr,
2259 asection *section,
2260 lang_output_section_statement_type *output)
2261{
2262 flagword flags = section->flags;
2263 bfd_boolean discard;
2264 lang_input_section_type *new_section;
2265
2266 /* Discard sections marked with SEC_EXCLUDE. */
2267 discard = (flags & SEC_EXCLUDE) != 0;
2268
2269 /* Discard input sections which are assigned to a section named
2270 DISCARD_SECTION_NAME. */
2271 if (strcmp (output->name, DISCARD_SECTION_NAME) == 0)
2272 discard = TRUE;
2273
2274 /* Discard debugging sections if we are stripping debugging
2275 information. */
2276 if ((link_info.strip == strip_debugger || link_info.strip == strip_all)
2277 && (flags & SEC_DEBUGGING) != 0)
2278 discard = TRUE;
2279
2280 if (discard)
2281 {
2282 if (section->output_section == NULL)
2283 {
2284 /* This prevents future calls from assigning this section. */
2285 section->output_section = bfd_abs_section_ptr;
2286 }
2287 return;
2288 }
2289
2290 if (section->output_section != NULL)
2291 return;
2292
2293 /* We don't copy the SEC_NEVER_LOAD flag from an input section
2294 to an output section, because we want to be able to include a
2295 SEC_NEVER_LOAD section in the middle of an otherwise loaded
2296 section (I don't know why we want to do this, but we do).
2297 build_link_order in ldwrite.c handles this case by turning
2298 the embedded SEC_NEVER_LOAD section into a fill. */
2299 flags &= ~ SEC_NEVER_LOAD;
2300
2301 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
2302 already been processed. One reason to do this is that on pe
2303 format targets, .text$foo sections go into .text and it's odd
2304 to see .text with SEC_LINK_ONCE set. */
2305
2306 if (!link_info.relocatable)
2307 flags &= ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC);
2308
2309 switch (output->sectype)
2310 {
2311 case normal_section:
2312 case overlay_section:
2313 break;
2314 case noalloc_section:
2315 flags &= ~SEC_ALLOC;
2316 break;
2317 case noload_section:
2318 flags &= ~SEC_LOAD;
2319 flags |= SEC_NEVER_LOAD;
2320 /* Unfortunately GNU ld has managed to evolve two different
2321 meanings to NOLOAD in scripts. ELF gets a .bss style noload,
2322 alloc, no contents section. All others get a noload, noalloc
2323 section. */
2324 if (bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour)
2325 flags &= ~SEC_HAS_CONTENTS;
2326 else
2327 flags &= ~SEC_ALLOC;
2328 break;
2329 }
2330
2331 if (output->bfd_section == NULL)
2332 init_os (output, flags);
2333
2334 /* If SEC_READONLY is not set in the input section, then clear
2335 it from the output section. */
2336 output->bfd_section->flags &= flags | ~SEC_READONLY;
2337
2338 if (output->bfd_section->linker_has_input)
2339 {
2340 /* Only set SEC_READONLY flag on the first input section. */
2341 flags &= ~ SEC_READONLY;
2342
2343 /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
2344 if ((output->bfd_section->flags & (SEC_MERGE | SEC_STRINGS))
2345 != (flags & (SEC_MERGE | SEC_STRINGS))
2346 || ((flags & SEC_MERGE) != 0
2347 && output->bfd_section->entsize != section->entsize))
2348 {
2349 output->bfd_section->flags &= ~ (SEC_MERGE | SEC_STRINGS);
2350 flags &= ~ (SEC_MERGE | SEC_STRINGS);
2351 }
2352 }
2353 output->bfd_section->flags |= flags;
2354
2355 if (!output->bfd_section->linker_has_input)
2356 {
2357 output->bfd_section->linker_has_input = 1;
2358 /* This must happen after flags have been updated. The output
2359 section may have been created before we saw its first input
2360 section, eg. for a data statement. */
2361 bfd_init_private_section_data (section->owner, section,
2362 link_info.output_bfd,
2363 output->bfd_section,
2364 &link_info);
2365 if ((flags & SEC_MERGE) != 0)
2366 output->bfd_section->entsize = section->entsize;
2367 }
2368
2369 if ((flags & SEC_TIC54X_BLOCK) != 0
2370 && bfd_get_arch (section->owner) == bfd_arch_tic54x)
2371 {
2372 /* FIXME: This value should really be obtained from the bfd... */
2373 output->block_value = 128;
2374 }
2375
2376 if (section->alignment_power > output->bfd_section->alignment_power)
2377 output->bfd_section->alignment_power = section->alignment_power;
2378
2379 section->output_section = output->bfd_section;
2380
2381 if (!link_info.relocatable
2382 && !stripped_excluded_sections)
2383 {
2384 asection *s = output->bfd_section->map_tail.s;
2385 output->bfd_section->map_tail.s = section;
2386 section->map_head.s = NULL;
2387 section->map_tail.s = s;
2388 if (s != NULL)
2389 s->map_head.s = section;
2390 else
2391 output->bfd_section->map_head.s = section;
2392 }
2393
2394 /* Add a section reference to the list. */
2395 new_section = new_stat (lang_input_section, ptr);
2396 new_section->section = section;
2397}
2398
2399/* Handle wildcard sorting. This returns the lang_input_section which
2400 should follow the one we are going to create for SECTION and FILE,
2401 based on the sorting requirements of WILD. It returns NULL if the
2402 new section should just go at the end of the current list. */
2403
2404static lang_statement_union_type *
2405wild_sort (lang_wild_statement_type *wild,
2406 struct wildcard_list *sec,
2407 lang_input_statement_type *file,
2408 asection *section)
2409{
2410 lang_statement_union_type *l;
2411
2412 if (!wild->filenames_sorted
2413 && (sec == NULL || sec->spec.sorted == none))
2414 return NULL;
2415
2416 for (l = wild->children.head; l != NULL; l = l->header.next)
2417 {
2418 lang_input_section_type *ls;
2419
2420 if (l->header.type != lang_input_section_enum)
2421 continue;
2422 ls = &l->input_section;
2423
2424 /* Sorting by filename takes precedence over sorting by section
2425 name. */
2426
2427 if (wild->filenames_sorted)
2428 {
2429 const char *fn, *ln;
2430 bfd_boolean fa, la;
2431 int i;
2432
2433 /* The PE support for the .idata section as generated by
2434 dlltool assumes that files will be sorted by the name of
2435 the archive and then the name of the file within the
2436 archive. */
2437
2438 if (file->the_bfd != NULL
2439 && bfd_my_archive (file->the_bfd) != NULL)
2440 {
2441 fn = bfd_get_filename (bfd_my_archive (file->the_bfd));
2442 fa = TRUE;
2443 }
2444 else
2445 {
2446 fn = file->filename;
2447 fa = FALSE;
2448 }
2449
2450 if (bfd_my_archive (ls->section->owner) != NULL)
2451 {
2452 ln = bfd_get_filename (bfd_my_archive (ls->section->owner));
2453 la = TRUE;
2454 }
2455 else
2456 {
2457 ln = ls->section->owner->filename;
2458 la = FALSE;
2459 }
2460
2461 i = filename_cmp (fn, ln);
2462 if (i > 0)
2463 continue;
2464 else if (i < 0)
2465 break;
2466
2467 if (fa || la)
2468 {
2469 if (fa)
2470 fn = file->filename;
2471 if (la)
2472 ln = ls->section->owner->filename;
2473
2474 i = filename_cmp (fn, ln);
2475 if (i > 0)
2476 continue;
2477 else if (i < 0)
2478 break;
2479 }
2480 }
2481
2482 /* Here either the files are not sorted by name, or we are
2483 looking at the sections for this file. */
2484
2485 if (sec != NULL && sec->spec.sorted != none)
2486 if (compare_section (sec->spec.sorted, section, ls->section) < 0)
2487 break;
2488 }
2489
2490 return l;
2491}
2492
2493/* Expand a wild statement for a particular FILE. SECTION may be
2494 NULL, in which case it is a wild card. */
2495
2496static void
2497output_section_callback (lang_wild_statement_type *ptr,
2498 struct wildcard_list *sec,
2499 asection *section,
2500 lang_input_statement_type *file,
2501 void *output)
2502{
2503 lang_statement_union_type *before;
2504 lang_output_section_statement_type *os;
2505
2506 os = (lang_output_section_statement_type *) output;
2507
2508 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2509 if (unique_section_p (section, os))
2510 return;
2511
2512 before = wild_sort (ptr, sec, file, section);
2513
2514 /* Here BEFORE points to the lang_input_section which
2515 should follow the one we are about to add. If BEFORE
2516 is NULL, then the section should just go at the end
2517 of the current list. */
2518
2519 if (before == NULL)
2520 lang_add_section (&ptr->children, section, os);
2521 else
2522 {
2523 lang_statement_list_type list;
2524 lang_statement_union_type **pp;
2525
2526 lang_list_init (&list);
2527 lang_add_section (&list, section, os);
2528
2529 /* If we are discarding the section, LIST.HEAD will
2530 be NULL. */
2531 if (list.head != NULL)
2532 {
2533 ASSERT (list.head->header.next == NULL);
2534
2535 for (pp = &ptr->children.head;
2536 *pp != before;
2537 pp = &(*pp)->header.next)
2538 ASSERT (*pp != NULL);
2539
2540 list.head->header.next = *pp;
2541 *pp = list.head;
2542 }
2543 }
2544}
2545
2546/* Check if all sections in a wild statement for a particular FILE
2547 are readonly. */
2548
2549static void
2550check_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
2551 struct wildcard_list *sec ATTRIBUTE_UNUSED,
2552 asection *section,
2553 lang_input_statement_type *file ATTRIBUTE_UNUSED,
2554 void *output)
2555{
2556 lang_output_section_statement_type *os;
2557
2558 os = (lang_output_section_statement_type *) output;
2559
2560 /* Exclude sections that match UNIQUE_SECTION_LIST. */
2561 if (unique_section_p (section, os))
2562 return;
2563
2564 if (section->output_section == NULL && (section->flags & SEC_READONLY) == 0)
2565 os->all_input_readonly = FALSE;
2566}
2567
2568/* This is passed a file name which must have been seen already and
2569 added to the statement tree. We will see if it has been opened
2570 already and had its symbols read. If not then we'll read it. */
2571
2572static lang_input_statement_type *
2573lookup_name (const char *name)
2574{
2575 lang_input_statement_type *search;
2576
2577 for (search = (lang_input_statement_type *) input_file_chain.head;
2578 search != NULL;
2579 search = (lang_input_statement_type *) search->next_real_file)
2580 {
2581 /* Use the local_sym_name as the name of the file that has
2582 already been loaded as filename might have been transformed
2583 via the search directory lookup mechanism. */
2584 const char *filename = search->local_sym_name;
2585
2586 if (filename != NULL
2587 && filename_cmp (filename, name) == 0)
2588 break;
2589 }
2590
2591 if (search == NULL)
2592 search = new_afile (name, lang_input_file_is_search_file_enum,
2593 default_target, FALSE);
2594
2595 /* If we have already added this file, or this file is not real
2596 don't add this file. */
2597 if (search->loaded || !search->real)
2598 return search;
2599
2600 if (! load_symbols (search, NULL))
2601 return NULL;
2602
2603 return search;
2604}
2605
2606/* Save LIST as a list of libraries whose symbols should not be exported. */
2607
2608struct excluded_lib
2609{
2610 char *name;
2611 struct excluded_lib *next;
2612};
2613static struct excluded_lib *excluded_libs;
2614
2615void
2616add_excluded_libs (const char *list)
2617{
2618 const char *p = list, *end;
2619
2620 while (*p != '\0')
2621 {
2622 struct excluded_lib *entry;
2623 end = strpbrk (p, ",:");
2624 if (end == NULL)
2625 end = p + strlen (p);
2626 entry = (struct excluded_lib *) xmalloc (sizeof (*entry));
2627 entry->next = excluded_libs;
2628 entry->name = (char *) xmalloc (end - p + 1);
2629 memcpy (entry->name, p, end - p);
2630 entry->name[end - p] = '\0';
2631 excluded_libs = entry;
2632 if (*end == '\0')
2633 break;
2634 p = end + 1;
2635 }
2636}
2637
2638static void
2639check_excluded_libs (bfd *abfd)
2640{
2641 struct excluded_lib *lib = excluded_libs;
2642
2643 while (lib)
2644 {
2645 int len = strlen (lib->name);
2646 const char *filename = lbasename (abfd->filename);
2647
2648 if (strcmp (lib->name, "ALL") == 0)
2649 {
2650 abfd->no_export = TRUE;
2651 return;
2652 }
2653
2654 if (filename_ncmp (lib->name, filename, len) == 0
2655 && (filename[len] == '\0'
2656 || (filename[len] == '.' && filename[len + 1] == 'a'
2657 && filename[len + 2] == '\0')))
2658 {
2659 abfd->no_export = TRUE;
2660 return;
2661 }
2662
2663 lib = lib->next;
2664 }
2665}
2666
2667/* Get the symbols for an input file. */
2668
2669bfd_boolean
2670load_symbols (lang_input_statement_type *entry,
2671 lang_statement_list_type *place)
2672{
2673 char **matching;
2674
2675 if (entry->loaded)
2676 return TRUE;
2677
2678 ldfile_open_file (entry);
2679
2680 /* Do not process further if the file was missing. */
2681 if (entry->missing_file)
2682 return TRUE;
2683
2684 if (! bfd_check_format (entry->the_bfd, bfd_archive)
2685 && ! bfd_check_format_matches (entry->the_bfd, bfd_object, &matching))
2686 {
2687 bfd_error_type err;
2688 bfd_boolean save_ldlang_sysrooted_script;
2689 bfd_boolean save_add_DT_NEEDED_for_regular;
2690 bfd_boolean save_add_DT_NEEDED_for_dynamic;
2691 bfd_boolean save_whole_archive;
2692
2693 err = bfd_get_error ();
2694
2695 /* See if the emulation has some special knowledge. */
2696 if (ldemul_unrecognized_file (entry))
2697 return TRUE;
2698
2699 if (err == bfd_error_file_ambiguously_recognized)
2700 {
2701 char **p;
2702
2703 einfo (_("%B: file not recognized: %E\n"), entry->the_bfd);
2704 einfo (_("%B: matching formats:"), entry->the_bfd);
2705 for (p = matching; *p != NULL; p++)
2706 einfo (" %s", *p);
2707 einfo ("%F\n");
2708 }
2709 else if (err != bfd_error_file_not_recognized
2710 || place == NULL)
2711 einfo (_("%F%B: file not recognized: %E\n"), entry->the_bfd);
2712
2713 bfd_close (entry->the_bfd);
2714 entry->the_bfd = NULL;
2715
2716 /* Try to interpret the file as a linker script. */
2717 ldfile_open_command_file (entry->filename);
2718
2719 push_stat_ptr (place);
2720 save_ldlang_sysrooted_script = ldlang_sysrooted_script;
2721 ldlang_sysrooted_script = entry->sysrooted;
2722 save_add_DT_NEEDED_for_regular = add_DT_NEEDED_for_regular;
2723 add_DT_NEEDED_for_regular = entry->add_DT_NEEDED_for_regular;
2724 save_add_DT_NEEDED_for_dynamic = add_DT_NEEDED_for_dynamic;
2725 add_DT_NEEDED_for_dynamic = entry->add_DT_NEEDED_for_dynamic;
2726 save_whole_archive = whole_archive;
2727 whole_archive = entry->whole_archive;
2728
2729 ldfile_assumed_script = TRUE;
2730 parser_input = input_script;
2731 /* We want to use the same -Bdynamic/-Bstatic as the one for
2732 ENTRY. */
2733 config.dynamic_link = entry->dynamic;
2734 yyparse ();
2735 ldfile_assumed_script = FALSE;
2736
2737 ldlang_sysrooted_script = save_ldlang_sysrooted_script;
2738 add_DT_NEEDED_for_regular = save_add_DT_NEEDED_for_regular;
2739 add_DT_NEEDED_for_dynamic = save_add_DT_NEEDED_for_dynamic;
2740 whole_archive = save_whole_archive;
2741 pop_stat_ptr ();
2742
2743 return TRUE;
2744 }
2745
2746 if (ldemul_recognized_file (entry))
2747 return TRUE;
2748
2749 /* We don't call ldlang_add_file for an archive. Instead, the
2750 add_symbols entry point will call ldlang_add_file, via the
2751 add_archive_element callback, for each element of the archive
2752 which is used. */
2753 switch (bfd_get_format (entry->the_bfd))
2754 {
2755 default:
2756 break;
2757
2758 case bfd_object:
2759 ldlang_add_file (entry);
2760 if (trace_files || trace_file_tries)
2761 info_msg ("%I\n", entry);
2762 break;
2763
2764 case bfd_archive:
2765 check_excluded_libs (entry->the_bfd);
2766
2767 if (entry->whole_archive)
2768 {
2769 bfd *member = NULL;
2770 bfd_boolean loaded = TRUE;
2771
2772 for (;;)
2773 {
2774 bfd *subsbfd;
2775 member = bfd_openr_next_archived_file (entry->the_bfd, member);
2776
2777 if (member == NULL)
2778 break;
2779
2780 if (! bfd_check_format (member, bfd_object))
2781 {
2782 einfo (_("%F%B: member %B in archive is not an object\n"),
2783 entry->the_bfd, member);
2784 loaded = FALSE;
2785 }
2786
2787 subsbfd = member;
2788 if (!(*link_info.callbacks
2789 ->add_archive_element) (&link_info, member,
2790 "--whole-archive", &subsbfd))
2791 abort ();
2792
2793 /* Potentially, the add_archive_element hook may have set a
2794 substitute BFD for us. */
2795 if (!bfd_link_add_symbols (subsbfd, &link_info))
2796 {
2797 einfo (_("%F%B: could not read symbols: %E\n"), member);
2798 loaded = FALSE;
2799 }
2800 }
2801
2802 entry->loaded = loaded;
2803 return loaded;
2804 }
2805 break;
2806 }
2807
2808 if (bfd_link_add_symbols (entry->the_bfd, &link_info))
2809 entry->loaded = TRUE;
2810 else
2811 einfo (_("%F%B: could not read symbols: %E\n"), entry->the_bfd);
2812
2813 return entry->loaded;
2814}
2815
2816/* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
2817 may be NULL, indicating that it is a wildcard. Separate
2818 lang_input_section statements are created for each part of the
2819 expansion; they are added after the wild statement S. OUTPUT is
2820 the output section. */
2821
2822static void
2823wild (lang_wild_statement_type *s,
2824 const char *target ATTRIBUTE_UNUSED,
2825 lang_output_section_statement_type *output)
2826{
2827 struct wildcard_list *sec;
2828
2829 if (s->handler_data[0]
2830 && s->handler_data[0]->spec.sorted == by_name
2831 && !s->filenames_sorted)
2832 {
2833 lang_section_bst_type *tree;
2834
2835 walk_wild (s, output_section_callback_fast, output);
2836
2837 tree = s->tree;
2838 if (tree)
2839 {
2840 output_section_callback_tree_to_list (s, tree, output);
2841 s->tree = NULL;
2842 }
2843 }
2844 else
2845 walk_wild (s, output_section_callback, output);
2846
2847 if (default_common_section == NULL)
2848 for (sec = s->section_list; sec != NULL; sec = sec->next)
2849 if (sec->spec.name != NULL && strcmp (sec->spec.name, "COMMON") == 0)
2850 {
2851 /* Remember the section that common is going to in case we
2852 later get something which doesn't know where to put it. */
2853 default_common_section = output;
2854 break;
2855 }
2856}
2857
2858/* Return TRUE iff target is the sought target. */
2859
2860static int
2861get_target (const bfd_target *target, void *data)
2862{
2863 const char *sought = (const char *) data;
2864
2865 return strcmp (target->name, sought) == 0;
2866}
2867
2868/* Like strcpy() but convert to lower case as well. */
2869
2870static void
2871stricpy (char *dest, char *src)
2872{
2873 char c;
2874
2875 while ((c = *src++) != 0)
2876 *dest++ = TOLOWER (c);
2877
2878 *dest = 0;
2879}
2880
2881/* Remove the first occurrence of needle (if any) in haystack
2882 from haystack. */
2883
2884static void
2885strcut (char *haystack, char *needle)
2886{
2887 haystack = strstr (haystack, needle);
2888
2889 if (haystack)
2890 {
2891 char *src;
2892
2893 for (src = haystack + strlen (needle); *src;)
2894 *haystack++ = *src++;
2895
2896 *haystack = 0;
2897 }
2898}
2899
2900/* Compare two target format name strings.
2901 Return a value indicating how "similar" they are. */
2902
2903static int
2904name_compare (char *first, char *second)
2905{
2906 char *copy1;
2907 char *copy2;
2908 int result;
2909
2910 copy1 = (char *) xmalloc (strlen (first) + 1);
2911 copy2 = (char *) xmalloc (strlen (second) + 1);
2912
2913 /* Convert the names to lower case. */
2914 stricpy (copy1, first);
2915 stricpy (copy2, second);
2916
2917 /* Remove size and endian strings from the name. */
2918 strcut (copy1, "big");
2919 strcut (copy1, "little");
2920 strcut (copy2, "big");
2921 strcut (copy2, "little");
2922
2923 /* Return a value based on how many characters match,
2924 starting from the beginning. If both strings are
2925 the same then return 10 * their length. */
2926 for (result = 0; copy1[result] == copy2[result]; result++)
2927 if (copy1[result] == 0)
2928 {
2929 result *= 10;
2930 break;
2931 }
2932
2933 free (copy1);
2934 free (copy2);
2935
2936 return result;
2937}
2938
2939/* Set by closest_target_match() below. */
2940static const bfd_target *winner;
2941
2942/* Scan all the valid bfd targets looking for one that has the endianness
2943 requirement that was specified on the command line, and is the nearest
2944 match to the original output target. */
2945
2946static int
2947closest_target_match (const bfd_target *target, void *data)
2948{
2949 const bfd_target *original = (const bfd_target *) data;
2950
2951 if (command_line.endian == ENDIAN_BIG
2952 && target->byteorder != BFD_ENDIAN_BIG)
2953 return 0;
2954
2955 if (command_line.endian == ENDIAN_LITTLE
2956 && target->byteorder != BFD_ENDIAN_LITTLE)
2957 return 0;
2958
2959 /* Must be the same flavour. */
2960 if (target->flavour != original->flavour)
2961 return 0;
2962
2963 /* Ignore generic big and little endian elf vectors. */
2964 if (strcmp (target->name, "elf32-big") == 0
2965 || strcmp (target->name, "elf64-big") == 0
2966 || strcmp (target->name, "elf32-little") == 0
2967 || strcmp (target->name, "elf64-little") == 0)
2968 return 0;
2969
2970 /* If we have not found a potential winner yet, then record this one. */
2971 if (winner == NULL)
2972 {
2973 winner = target;
2974 return 0;
2975 }
2976
2977 /* Oh dear, we now have two potential candidates for a successful match.
2978 Compare their names and choose the better one. */
2979 if (name_compare (target->name, original->name)
2980 > name_compare (winner->name, original->name))
2981 winner = target;
2982
2983 /* Keep on searching until wqe have checked them all. */
2984 return 0;
2985}
2986
2987/* Return the BFD target format of the first input file. */
2988
2989static char *
2990get_first_input_target (void)
2991{
2992 char *target = NULL;
2993
2994 LANG_FOR_EACH_INPUT_STATEMENT (s)
2995 {
2996 if (s->header.type == lang_input_statement_enum
2997 && s->real)
2998 {
2999 ldfile_open_file (s);
3000
3001 if (s->the_bfd != NULL
3002 && bfd_check_format (s->the_bfd, bfd_object))
3003 {
3004 target = bfd_get_target (s->the_bfd);
3005
3006 if (target != NULL)
3007 break;
3008 }
3009 }
3010 }
3011
3012 return target;
3013}
3014
3015const char *
3016lang_get_output_target (void)
3017{
3018 const char *target;
3019
3020 /* Has the user told us which output format to use? */
3021 if (output_target != NULL)
3022 return output_target;
3023
3024 /* No - has the current target been set to something other than
3025 the default? */
3026 if (current_target != default_target)
3027 return current_target;
3028
3029 /* No - can we determine the format of the first input file? */
3030 target = get_first_input_target ();
3031 if (target != NULL)
3032 return target;
3033
3034 /* Failed - use the default output target. */
3035 return default_target;
3036}
3037
3038/* Open the output file. */
3039
3040static void
3041open_output (const char *name)
3042{
3043 output_target = lang_get_output_target ();
3044
3045 /* Has the user requested a particular endianness on the command
3046 line? */
3047 if (command_line.endian != ENDIAN_UNSET)
3048 {
3049 const bfd_target *target;
3050 enum bfd_endian desired_endian;
3051
3052 /* Get the chosen target. */
3053 target = bfd_search_for_target (get_target, (void *) output_target);
3054
3055 /* If the target is not supported, we cannot do anything. */
3056 if (target != NULL)
3057 {
3058 if (command_line.endian == ENDIAN_BIG)
3059 desired_endian = BFD_ENDIAN_BIG;
3060 else
3061 desired_endian = BFD_ENDIAN_LITTLE;
3062
3063 /* See if the target has the wrong endianness. This should
3064 not happen if the linker script has provided big and
3065 little endian alternatives, but some scrips don't do
3066 this. */
3067 if (target->byteorder != desired_endian)
3068 {
3069 /* If it does, then see if the target provides
3070 an alternative with the correct endianness. */
3071 if (target->alternative_target != NULL
3072 && (target->alternative_target->byteorder == desired_endian))
3073 output_target = target->alternative_target->name;
3074 else
3075 {
3076 /* Try to find a target as similar as possible to
3077 the default target, but which has the desired
3078 endian characteristic. */
3079 bfd_search_for_target (closest_target_match,
3080 (void *) target);
3081
3082 /* Oh dear - we could not find any targets that
3083 satisfy our requirements. */
3084 if (winner == NULL)
3085 einfo (_("%P: warning: could not find any targets"
3086 " that match endianness requirement\n"));
3087 else
3088 output_target = winner->name;
3089 }
3090 }
3091 }
3092 }
3093
3094 link_info.output_bfd = bfd_openw (name, output_target);
3095
3096 if (link_info.output_bfd == NULL)
3097 {
3098 if (bfd_get_error () == bfd_error_invalid_target)
3099 einfo (_("%P%F: target %s not found\n"), output_target);
3100
3101 einfo (_("%P%F: cannot open output file %s: %E\n"), name);
3102 }
3103
3104 delete_output_file_on_failure = TRUE;
3105
3106 if (! bfd_set_format (link_info.output_bfd, bfd_object))
3107 einfo (_("%P%F:%s: can not make object file: %E\n"), name);
3108 if (! bfd_set_arch_mach (link_info.output_bfd,
3109 ldfile_output_architecture,
3110 ldfile_output_machine))
3111 einfo (_("%P%F:%s: can not set architecture: %E\n"), name);
3112
3113 link_info.hash = bfd_link_hash_table_create (link_info.output_bfd);
3114 if (link_info.hash == NULL)
3115 einfo (_("%P%F: can not create hash table: %E\n"));
3116
3117 bfd_set_gp_size (link_info.output_bfd, g_switch_value);
3118}
3119
3120static void
3121ldlang_open_output (lang_statement_union_type *statement)
3122{
3123 switch (statement->header.type)
3124 {
3125 case lang_output_statement_enum:
3126 ASSERT (link_info.output_bfd == NULL);
3127 open_output (statement->output_statement.name);
3128 ldemul_set_output_arch ();
3129 if (config.magic_demand_paged && !link_info.relocatable)
3130 link_info.output_bfd->flags |= D_PAGED;
3131 else
3132 link_info.output_bfd->flags &= ~D_PAGED;
3133 if (config.text_read_only)
3134 link_info.output_bfd->flags |= WP_TEXT;
3135 else
3136 link_info.output_bfd->flags &= ~WP_TEXT;
3137 if (link_info.traditional_format)
3138 link_info.output_bfd->flags |= BFD_TRADITIONAL_FORMAT;
3139 else
3140 link_info.output_bfd->flags &= ~BFD_TRADITIONAL_FORMAT;
3141 break;
3142
3143 case lang_target_statement_enum:
3144 current_target = statement->target_statement.target;
3145 break;
3146 default:
3147 break;
3148 }
3149}
3150
3151/* Convert between addresses in bytes and sizes in octets.
3152 For currently supported targets, octets_per_byte is always a power
3153 of two, so we can use shifts. */
3154#define TO_ADDR(X) ((X) >> opb_shift)
3155#define TO_SIZE(X) ((X) << opb_shift)
3156
3157/* Support the above. */
3158static unsigned int opb_shift = 0;
3159
3160static void
3161init_opb (void)
3162{
3163 unsigned x = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
3164 ldfile_output_machine);
3165 opb_shift = 0;
3166 if (x > 1)
3167 while ((x & 1) == 0)
3168 {
3169 x >>= 1;
3170 ++opb_shift;
3171 }
3172 ASSERT (x == 1);
3173}
3174
3175/* Open all the input files. */
3176
3177enum open_bfd_mode
3178 {
3179 OPEN_BFD_NORMAL = 0,
3180 OPEN_BFD_FORCE = 1,
3181 OPEN_BFD_RESCAN = 2
3182 };
3183
3184static void
3185open_input_bfds (lang_statement_union_type *s, enum open_bfd_mode mode)
3186{
3187 for (; s != NULL; s = s->header.next)
3188 {
3189 switch (s->header.type)
3190 {
3191 case lang_constructors_statement_enum:
3192 open_input_bfds (constructor_list.head, mode);
3193 break;
3194 case lang_output_section_statement_enum:
3195 open_input_bfds (s->output_section_statement.children.head, mode);
3196 break;
3197 case lang_wild_statement_enum:
3198 /* Maybe we should load the file's symbols. */
3199 if ((mode & OPEN_BFD_RESCAN) == 0
3200 && s->wild_statement.filename
3201 && !wildcardp (s->wild_statement.filename)
3202 && !archive_path (s->wild_statement.filename))
3203 lookup_name (s->wild_statement.filename);
3204 open_input_bfds (s->wild_statement.children.head, mode);
3205 break;
3206 case lang_group_statement_enum:
3207 {
3208 struct bfd_link_hash_entry *undefs;
3209
3210 /* We must continually search the entries in the group
3211 until no new symbols are added to the list of undefined
3212 symbols. */
3213
3214 do
3215 {
3216 undefs = link_info.hash->undefs_tail;
3217 open_input_bfds (s->group_statement.children.head,
3218 mode | OPEN_BFD_FORCE);
3219 }
3220 while (undefs != link_info.hash->undefs_tail);
3221 }
3222 break;
3223 case lang_target_statement_enum:
3224 current_target = s->target_statement.target;
3225 break;
3226 case lang_input_statement_enum:
3227 if (s->input_statement.real)
3228 {
3229 lang_statement_union_type **os_tail;
3230 lang_statement_list_type add;
3231
3232 s->input_statement.target = current_target;
3233
3234 /* If we are being called from within a group, and this
3235 is an archive which has already been searched, then
3236 force it to be researched unless the whole archive
3237 has been loaded already. Do the same for a rescan. */
3238 if (mode != OPEN_BFD_NORMAL
3239 && !s->input_statement.whole_archive
3240 && s->input_statement.loaded
3241 && bfd_check_format (s->input_statement.the_bfd,
3242 bfd_archive))
3243 s->input_statement.loaded = FALSE;
3244
3245 os_tail = lang_output_section_statement.tail;
3246 lang_list_init (&add);
3247
3248 if (! load_symbols (&s->input_statement, &add))
3249 config.make_executable = FALSE;
3250
3251 if (add.head != NULL)
3252 {
3253 /* If this was a script with output sections then
3254 tack any added statements on to the end of the
3255 list. This avoids having to reorder the output
3256 section statement list. Very likely the user
3257 forgot -T, and whatever we do here will not meet
3258 naive user expectations. */
3259 if (os_tail != lang_output_section_statement.tail)
3260 {
3261 einfo (_("%P: warning: %s contains output sections;"
3262 " did you forget -T?\n"),
3263 s->input_statement.filename);
3264 *stat_ptr->tail = add.head;
3265 stat_ptr->tail = add.tail;
3266 }
3267 else
3268 {
3269 *add.tail = s->header.next;
3270 s->header.next = add.head;
3271 }
3272 }
3273 }
3274 break;
3275 case lang_assignment_statement_enum:
3276 if (s->assignment_statement.exp->assign.hidden)
3277 /* This is from a --defsym on the command line. */
3278 exp_fold_tree_no_dot (s->assignment_statement.exp);
3279 break;
3280 default:
3281 break;
3282 }
3283 }
3284
3285 /* Exit if any of the files were missing. */
3286 if (missing_file)
3287 einfo ("%F");
3288}
3289
3290/* Add a symbol to a hash of symbols used in DEFINED (NAME) expressions. */
3291
3292void
3293lang_track_definedness (const char *name)
3294{
3295 if (bfd_hash_lookup (&lang_definedness_table, name, TRUE, FALSE) == NULL)
3296 einfo (_("%P%F: bfd_hash_lookup failed creating symbol %s\n"), name);
3297}
3298
3299/* New-function for the definedness hash table. */
3300
3301static struct bfd_hash_entry *
3302lang_definedness_newfunc (struct bfd_hash_entry *entry,
3303 struct bfd_hash_table *table ATTRIBUTE_UNUSED,
3304 const char *name ATTRIBUTE_UNUSED)
3305{
3306 struct lang_definedness_hash_entry *ret
3307 = (struct lang_definedness_hash_entry *) entry;
3308
3309 if (ret == NULL)
3310 ret = (struct lang_definedness_hash_entry *)
3311 bfd_hash_allocate (table, sizeof (struct lang_definedness_hash_entry));
3312
3313 if (ret == NULL)
3314 einfo (_("%P%F: bfd_hash_allocate failed creating symbol %s\n"), name);
3315
3316 ret->iteration = -1;
3317 return &ret->root;
3318}
3319
3320/* Return the iteration when the definition of NAME was last updated. A
3321 value of -1 means that the symbol is not defined in the linker script
3322 or the command line, but may be defined in the linker symbol table. */
3323
3324int
3325lang_symbol_definition_iteration (const char *name)
3326{
3327 struct lang_definedness_hash_entry *defentry
3328 = (struct lang_definedness_hash_entry *)
3329 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
3330
3331 /* We've already created this one on the presence of DEFINED in the
3332 script, so it can't be NULL unless something is borked elsewhere in
3333 the code. */
3334 if (defentry == NULL)
3335 FAIL ();
3336
3337 return defentry->iteration;
3338}
3339
3340/* Update the definedness state of NAME. */
3341
3342void
3343lang_update_definedness (const char *name, struct bfd_link_hash_entry *h)
3344{
3345 struct lang_definedness_hash_entry *defentry
3346 = (struct lang_definedness_hash_entry *)
3347 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
3348
3349 /* We don't keep track of symbols not tested with DEFINED. */
3350 if (defentry == NULL)
3351 return;
3352
3353 /* If the symbol was already defined, and not from an earlier statement
3354 iteration, don't update the definedness iteration, because that'd
3355 make the symbol seem defined in the linker script at this point, and
3356 it wasn't; it was defined in some object. If we do anyway, DEFINED
3357 would start to yield false before this point and the construct "sym =
3358 DEFINED (sym) ? sym : X;" would change sym to X despite being defined
3359 in an object. */
3360 if (h->type != bfd_link_hash_undefined
3361 && h->type != bfd_link_hash_common
3362 && h->type != bfd_link_hash_new
3363 && defentry->iteration == -1)
3364 return;
3365
3366 defentry->iteration = lang_statement_iteration;
3367}
3368
3369/* Add the supplied name to the symbol table as an undefined reference.
3370 This is a two step process as the symbol table doesn't even exist at
3371 the time the ld command line is processed. First we put the name
3372 on a list, then, once the output file has been opened, transfer the
3373 name to the symbol table. */
3374
3375typedef struct bfd_sym_chain ldlang_undef_chain_list_type;
3376
3377#define ldlang_undef_chain_list_head entry_symbol.next
3378
3379void
3380ldlang_add_undef (const char *const name, bfd_boolean cmdline)
3381{
3382 ldlang_undef_chain_list_type *new_undef;
3383
3384 undef_from_cmdline = undef_from_cmdline || cmdline;
3385 new_undef = (ldlang_undef_chain_list_type *) stat_alloc (sizeof (*new_undef));
3386 new_undef->next = ldlang_undef_chain_list_head;
3387 ldlang_undef_chain_list_head = new_undef;
3388
3389 new_undef->name = xstrdup (name);
3390
3391 if (link_info.output_bfd != NULL)
3392 insert_undefined (new_undef->name);
3393}
3394
3395/* Insert NAME as undefined in the symbol table. */
3396
3397static void
3398insert_undefined (const char *name)
3399{
3400 struct bfd_link_hash_entry *h;
3401
3402 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, FALSE, TRUE);
3403 if (h == NULL)
3404 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
3405 if (h->type == bfd_link_hash_new)
3406 {
3407 h->type = bfd_link_hash_undefined;
3408 h->u.undef.abfd = NULL;
3409 bfd_link_add_undef (link_info.hash, h);
3410 }
3411}
3412
3413/* Run through the list of undefineds created above and place them
3414 into the linker hash table as undefined symbols belonging to the
3415 script file. */
3416
3417static void
3418lang_place_undefineds (void)
3419{
3420 ldlang_undef_chain_list_type *ptr;
3421
3422 for (ptr = ldlang_undef_chain_list_head; ptr != NULL; ptr = ptr->next)
3423 insert_undefined (ptr->name);
3424}
3425
3426/* Check for all readonly or some readwrite sections. */
3427
3428static void
3429check_input_sections
3430 (lang_statement_union_type *s,
3431 lang_output_section_statement_type *output_section_statement)
3432{
3433 for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
3434 {
3435 switch (s->header.type)
3436 {
3437 case lang_wild_statement_enum:
3438 walk_wild (&s->wild_statement, check_section_callback,
3439 output_section_statement);
3440 if (! output_section_statement->all_input_readonly)
3441 return;
3442 break;
3443 case lang_constructors_statement_enum:
3444 check_input_sections (constructor_list.head,
3445 output_section_statement);
3446 if (! output_section_statement->all_input_readonly)
3447 return;
3448 break;
3449 case lang_group_statement_enum:
3450 check_input_sections (s->group_statement.children.head,
3451 output_section_statement);
3452 if (! output_section_statement->all_input_readonly)
3453 return;
3454 break;
3455 default:
3456 break;
3457 }
3458 }
3459}
3460
3461/* Update wildcard statements if needed. */
3462
3463static void
3464update_wild_statements (lang_statement_union_type *s)
3465{
3466 struct wildcard_list *sec;
3467
3468 switch (sort_section)
3469 {
3470 default:
3471 FAIL ();
3472
3473 case none:
3474 break;
3475
3476 case by_name:
3477 case by_alignment:
3478 for (; s != NULL; s = s->header.next)
3479 {
3480 switch (s->header.type)
3481 {
3482 default:
3483 break;
3484
3485 case lang_wild_statement_enum:
3486 sec = s->wild_statement.section_list;
3487 for (sec = s->wild_statement.section_list; sec != NULL;
3488 sec = sec->next)
3489 {
3490 switch (sec->spec.sorted)
3491 {
3492 case none:
3493 sec->spec.sorted = sort_section;
3494 break;
3495 case by_name:
3496 if (sort_section == by_alignment)
3497 sec->spec.sorted = by_name_alignment;
3498 break;
3499 case by_alignment:
3500 if (sort_section == by_name)
3501 sec->spec.sorted = by_alignment_name;
3502 break;
3503 default:
3504 break;
3505 }
3506 }
3507 break;
3508
3509 case lang_constructors_statement_enum:
3510 update_wild_statements (constructor_list.head);
3511 break;
3512
3513 case lang_output_section_statement_enum:
3514 update_wild_statements
3515 (s->output_section_statement.children.head);
3516 break;
3517
3518 case lang_group_statement_enum:
3519 update_wild_statements (s->group_statement.children.head);
3520 break;
3521 }
3522 }
3523 break;
3524 }
3525}
3526
3527/* Open input files and attach to output sections. */
3528
3529static void
3530map_input_to_output_sections
3531 (lang_statement_union_type *s, const char *target,
3532 lang_output_section_statement_type *os)
3533{
3534 for (; s != NULL; s = s->header.next)
3535 {
3536 lang_output_section_statement_type *tos;
3537 flagword flags;
3538
3539 switch (s->header.type)
3540 {
3541 case lang_wild_statement_enum:
3542 wild (&s->wild_statement, target, os);
3543 break;
3544 case lang_constructors_statement_enum:
3545 map_input_to_output_sections (constructor_list.head,
3546 target,
3547 os);
3548 break;
3549 case lang_output_section_statement_enum:
3550 tos = &s->output_section_statement;
3551 if (tos->constraint != 0)
3552 {
3553 if (tos->constraint != ONLY_IF_RW
3554 && tos->constraint != ONLY_IF_RO)
3555 break;
3556 tos->all_input_readonly = TRUE;
3557 check_input_sections (tos->children.head, tos);
3558 if (tos->all_input_readonly != (tos->constraint == ONLY_IF_RO))
3559 {
3560 tos->constraint = -1;
3561 break;
3562 }
3563 }
3564 map_input_to_output_sections (tos->children.head,
3565 target,
3566 tos);
3567 break;
3568 case lang_output_statement_enum:
3569 break;
3570 case lang_target_statement_enum:
3571 target = s->target_statement.target;
3572 break;
3573 case lang_group_statement_enum:
3574 map_input_to_output_sections (s->group_statement.children.head,
3575 target,
3576 os);
3577 break;
3578 case lang_data_statement_enum:
3579 /* Make sure that any sections mentioned in the expression
3580 are initialized. */
3581 exp_init_os (s->data_statement.exp);
3582 /* The output section gets CONTENTS, ALLOC and LOAD, but
3583 these may be overridden by the script. */
3584 flags = SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD;
3585 switch (os->sectype)
3586 {
3587 case normal_section:
3588 case overlay_section:
3589 break;
3590 case noalloc_section:
3591 flags = SEC_HAS_CONTENTS;
3592 break;
3593 case noload_section:
3594 if (bfd_get_flavour (link_info.output_bfd)
3595 == bfd_target_elf_flavour)
3596 flags = SEC_NEVER_LOAD | SEC_ALLOC;
3597 else
3598 flags = SEC_NEVER_LOAD | SEC_HAS_CONTENTS;
3599 break;
3600 }
3601 if (os->bfd_section == NULL)
3602 init_os (os, flags);
3603 else
3604 os->bfd_section->flags |= flags;
3605 break;
3606 case lang_input_section_enum:
3607 break;
3608 case lang_fill_statement_enum:
3609 case lang_object_symbols_statement_enum:
3610 case lang_reloc_statement_enum:
3611 case lang_padding_statement_enum:
3612 case lang_input_statement_enum:
3613 if (os != NULL && os->bfd_section == NULL)
3614 init_os (os, 0);
3615 break;
3616 case lang_assignment_statement_enum:
3617 if (os != NULL && os->bfd_section == NULL)
3618 init_os (os, 0);
3619
3620 /* Make sure that any sections mentioned in the assignment
3621 are initialized. */
3622 exp_init_os (s->assignment_statement.exp);
3623 break;
3624 case lang_address_statement_enum:
3625 /* Mark the specified section with the supplied address.
3626 If this section was actually a segment marker, then the
3627 directive is ignored if the linker script explicitly
3628 processed the segment marker. Originally, the linker
3629 treated segment directives (like -Ttext on the
3630 command-line) as section directives. We honor the
3631 section directive semantics for backwards compatibilty;
3632 linker scripts that do not specifically check for
3633 SEGMENT_START automatically get the old semantics. */
3634 if (!s->address_statement.segment
3635 || !s->address_statement.segment->used)
3636 {
3637 const char *name = s->address_statement.section_name;
3638
3639 /* Create the output section statement here so that
3640 orphans with a set address will be placed after other
3641 script sections. If we let the orphan placement code
3642 place them in amongst other sections then the address
3643 will affect following script sections, which is
3644 likely to surprise naive users. */
3645 tos = lang_output_section_statement_lookup (name, 0, TRUE);
3646 tos->addr_tree = s->address_statement.address;
3647 if (tos->bfd_section == NULL)
3648 init_os (tos, 0);
3649 }
3650 break;
3651 case lang_insert_statement_enum:
3652 break;
3653 }
3654 }
3655}
3656
3657/* An insert statement snips out all the linker statements from the
3658 start of the list and places them after the output section
3659 statement specified by the insert. This operation is complicated
3660 by the fact that we keep a doubly linked list of output section
3661 statements as well as the singly linked list of all statements. */
3662
3663static void
3664process_insert_statements (void)
3665{
3666 lang_statement_union_type **s;
3667 lang_output_section_statement_type *first_os = NULL;
3668 lang_output_section_statement_type *last_os = NULL;
3669 lang_output_section_statement_type *os;
3670
3671 /* "start of list" is actually the statement immediately after
3672 the special abs_section output statement, so that it isn't
3673 reordered. */
3674 s = &lang_output_section_statement.head;
3675 while (*(s = &(*s)->header.next) != NULL)
3676 {
3677 if ((*s)->header.type == lang_output_section_statement_enum)
3678 {
3679 /* Keep pointers to the first and last output section
3680 statement in the sequence we may be about to move. */
3681 os = &(*s)->output_section_statement;
3682
3683 ASSERT (last_os == NULL || last_os->next == os);
3684 last_os = os;
3685
3686 /* Set constraint negative so that lang_output_section_find
3687 won't match this output section statement. At this
3688 stage in linking constraint has values in the range
3689 [-1, ONLY_IN_RW]. */
3690 last_os->constraint = -2 - last_os->constraint;
3691 if (first_os == NULL)
3692 first_os = last_os;
3693 }
3694 else if ((*s)->header.type == lang_insert_statement_enum)
3695 {
3696 lang_insert_statement_type *i = &(*s)->insert_statement;
3697 lang_output_section_statement_type *where;
3698 lang_statement_union_type **ptr;
3699 lang_statement_union_type *first;
3700
3701 where = lang_output_section_find (i->where);
3702 if (where != NULL && i->is_before)
3703 {
3704 do
3705 where = where->prev;
3706 while (where != NULL && where->constraint < 0);
3707 }
3708 if (where == NULL)
3709 {
3710 einfo (_("%F%P: %s not found for insert\n"), i->where);
3711 return;
3712 }
3713
3714 /* Deal with reordering the output section statement list. */
3715 if (last_os != NULL)
3716 {
3717 asection *first_sec, *last_sec;
3718 struct lang_output_section_statement_struct **next;
3719
3720 /* Snip out the output sections we are moving. */
3721 first_os->prev->next = last_os->next;
3722 if (last_os->next == NULL)
3723 {
3724 next = &first_os->prev->next;
3725 lang_output_section_statement.tail
3726 = (lang_statement_union_type **) next;
3727 }
3728 else
3729 last_os->next->prev = first_os->prev;
3730 /* Add them in at the new position. */
3731 last_os->next = where->next;
3732 if (where->next == NULL)
3733 {
3734 next = &last_os->next;
3735 lang_output_section_statement.tail
3736 = (lang_statement_union_type **) next;
3737 }
3738 else
3739 where->next->prev = last_os;
3740 first_os->prev = where;
3741 where->next = first_os;
3742
3743 /* Move the bfd sections in the same way. */
3744 first_sec = NULL;
3745 last_sec = NULL;
3746 for (os = first_os; os != NULL; os = os->next)
3747 {
3748 os->constraint = -2 - os->constraint;
3749 if (os->bfd_section != NULL
3750 && os->bfd_section->owner != NULL)
3751 {
3752 last_sec = os->bfd_section;
3753 if (first_sec == NULL)
3754 first_sec = last_sec;
3755 }
3756 if (os == last_os)
3757 break;
3758 }
3759 if (last_sec != NULL)
3760 {
3761 asection *sec = where->bfd_section;
3762 if (sec == NULL)
3763 sec = output_prev_sec_find (where);
3764
3765 /* The place we want to insert must come after the
3766 sections we are moving. So if we find no
3767 section or if the section is the same as our
3768 last section, then no move is needed. */
3769 if (sec != NULL && sec != last_sec)
3770 {
3771 /* Trim them off. */
3772 if (first_sec->prev != NULL)
3773 first_sec->prev->next = last_sec->next;
3774 else
3775 link_info.output_bfd->sections = last_sec->next;
3776 if (last_sec->next != NULL)
3777 last_sec->next->prev = first_sec->prev;
3778 else
3779 link_info.output_bfd->section_last = first_sec->prev;
3780 /* Add back. */
3781 last_sec->next = sec->next;
3782 if (sec->next != NULL)
3783 sec->next->prev = last_sec;
3784 else
3785 link_info.output_bfd->section_last = last_sec;
3786 first_sec->prev = sec;
3787 sec->next = first_sec;
3788 }
3789 }
3790
3791 first_os = NULL;
3792 last_os = NULL;
3793 }
3794
3795 ptr = insert_os_after (where);
3796 /* Snip everything after the abs_section output statement we
3797 know is at the start of the list, up to and including
3798 the insert statement we are currently processing. */
3799 first = lang_output_section_statement.head->header.next;
3800 lang_output_section_statement.head->header.next = (*s)->header.next;
3801 /* Add them back where they belong. */
3802 *s = *ptr;
3803 if (*s == NULL)
3804 statement_list.tail = s;
3805 *ptr = first;
3806 s = &lang_output_section_statement.head;
3807 }
3808 }
3809
3810 /* Undo constraint twiddling. */
3811 for (os = first_os; os != NULL; os = os->next)
3812 {
3813 os->constraint = -2 - os->constraint;
3814 if (os == last_os)
3815 break;
3816 }
3817}
3818
3819/* An output section might have been removed after its statement was
3820 added. For example, ldemul_before_allocation can remove dynamic
3821 sections if they turn out to be not needed. Clean them up here. */
3822
3823void
3824strip_excluded_output_sections (void)
3825{
3826 lang_output_section_statement_type *os;
3827
3828 /* Run lang_size_sections (if not already done). */
3829 if (expld.phase != lang_mark_phase_enum)
3830 {
3831 expld.phase = lang_mark_phase_enum;
3832 expld.dataseg.phase = exp_dataseg_none;
3833 one_lang_size_sections_pass (NULL, FALSE);
3834 lang_reset_memory_regions ();
3835 }
3836
3837 for (os = &lang_output_section_statement.head->output_section_statement;
3838 os != NULL;
3839 os = os->next)
3840 {
3841 asection *output_section;
3842 bfd_boolean exclude;
3843
3844 if (os->constraint < 0)
3845 continue;
3846
3847 output_section = os->bfd_section;
3848 if (output_section == NULL)
3849 continue;
3850
3851 exclude = (output_section->rawsize == 0
3852 && (output_section->flags & SEC_KEEP) == 0
3853 && !bfd_section_removed_from_list (link_info.output_bfd,
3854 output_section));
3855
3856 /* Some sections have not yet been sized, notably .gnu.version,
3857 .dynsym, .dynstr and .hash. These all have SEC_LINKER_CREATED
3858 input sections, so don't drop output sections that have such
3859 input sections unless they are also marked SEC_EXCLUDE. */
3860 if (exclude && output_section->map_head.s != NULL)
3861 {
3862 asection *s;
3863
3864 for (s = output_section->map_head.s; s != NULL; s = s->map_head.s)
3865 if ((s->flags & SEC_LINKER_CREATED) != 0
3866 && (s->flags & SEC_EXCLUDE) == 0)
3867 {
3868 exclude = FALSE;
3869 break;
3870 }
3871 }
3872
3873 /* TODO: Don't just junk map_head.s, turn them into link_orders. */
3874 output_section->map_head.link_order = NULL;
3875 output_section->map_tail.link_order = NULL;
3876
3877 if (exclude)
3878 {
3879 /* We don't set bfd_section to NULL since bfd_section of the
3880 removed output section statement may still be used. */
3881 if (!os->section_relative_symbol
3882 && !os->update_dot_tree)
3883 os->ignored = TRUE;
3884 output_section->flags |= SEC_EXCLUDE;
3885 bfd_section_list_remove (link_info.output_bfd, output_section);
3886 link_info.output_bfd->section_count--;
3887 }
3888 }
3889
3890 /* Stop future calls to lang_add_section from messing with map_head
3891 and map_tail link_order fields. */
3892 stripped_excluded_sections = TRUE;
3893}
3894
3895static void
3896print_output_section_statement
3897 (lang_output_section_statement_type *output_section_statement)
3898{
3899 asection *section = output_section_statement->bfd_section;
3900 int len;
3901
3902 if (output_section_statement != abs_output_section)
3903 {
3904 minfo ("\n%s", output_section_statement->name);
3905
3906 if (section != NULL)
3907 {
3908 print_dot = section->vma;
3909
3910 len = strlen (output_section_statement->name);
3911 if (len >= SECTION_NAME_MAP_LENGTH - 1)
3912 {
3913 print_nl ();
3914 len = 0;
3915 }
3916 while (len < SECTION_NAME_MAP_LENGTH)
3917 {
3918 print_space ();
3919 ++len;
3920 }
3921
3922 minfo ("0x%V %W", section->vma, section->size);
3923
3924 if (section->vma != section->lma)
3925 minfo (_(" load address 0x%V"), section->lma);
3926
3927 if (output_section_statement->update_dot_tree != NULL)
3928 exp_fold_tree (output_section_statement->update_dot_tree,
3929 bfd_abs_section_ptr, &print_dot);
3930 }
3931
3932 print_nl ();
3933 }
3934
3935 print_statement_list (output_section_statement->children.head,
3936 output_section_statement);
3937}
3938
3939/* Scan for the use of the destination in the right hand side
3940 of an expression. In such cases we will not compute the
3941 correct expression, since the value of DST that is used on
3942 the right hand side will be its final value, not its value
3943 just before this expression is evaluated. */
3944
3945static bfd_boolean
3946scan_for_self_assignment (const char * dst, etree_type * rhs)
3947{
3948 if (rhs == NULL || dst == NULL)
3949 return FALSE;
3950
3951 switch (rhs->type.node_class)
3952 {
3953 case etree_binary:
3954 return (scan_for_self_assignment (dst, rhs->binary.lhs)
3955 || scan_for_self_assignment (dst, rhs->binary.rhs));
3956
3957 case etree_trinary:
3958 return (scan_for_self_assignment (dst, rhs->trinary.lhs)
3959 || scan_for_self_assignment (dst, rhs->trinary.rhs));
3960
3961 case etree_assign:
3962 case etree_provided:
3963 case etree_provide:
3964 if (strcmp (dst, rhs->assign.dst) == 0)
3965 return TRUE;
3966 return scan_for_self_assignment (dst, rhs->assign.src);
3967
3968 case etree_unary:
3969 return scan_for_self_assignment (dst, rhs->unary.child);
3970
3971 case etree_value:
3972 if (rhs->value.str)
3973 return strcmp (dst, rhs->value.str) == 0;
3974 return FALSE;
3975
3976 case etree_name:
3977 if (rhs->name.name)
3978 return strcmp (dst, rhs->name.name) == 0;
3979 return FALSE;
3980
3981 default:
3982 break;
3983 }
3984
3985 return FALSE;
3986}
3987
3988
3989static void
3990print_assignment (lang_assignment_statement_type *assignment,
3991 lang_output_section_statement_type *output_section)
3992{
3993 unsigned int i;
3994 bfd_boolean is_dot;
3995 bfd_boolean computation_is_valid = TRUE;
3996 etree_type *tree;
3997 asection *osec;
3998
3999 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4000 print_space ();
4001
4002 if (assignment->exp->type.node_class == etree_assert)
4003 {
4004 is_dot = FALSE;
4005 tree = assignment->exp->assert_s.child;
4006 computation_is_valid = TRUE;
4007 }
4008 else
4009 {
4010 const char *dst = assignment->exp->assign.dst;
4011
4012 is_dot = (dst[0] == '.' && dst[1] == 0);
4013 tree = assignment->exp->assign.src;
4014 computation_is_valid = is_dot || !scan_for_self_assignment (dst, tree);
4015 }
4016
4017 osec = output_section->bfd_section;
4018 if (osec == NULL)
4019 osec = bfd_abs_section_ptr;
4020 exp_fold_tree (tree, osec, &print_dot);
4021 if (expld.result.valid_p)
4022 {
4023 bfd_vma value;
4024
4025 if (computation_is_valid)
4026 {
4027 value = expld.result.value;
4028
4029 if (expld.result.section != NULL)
4030 value += expld.result.section->vma;
4031
4032 minfo ("0x%V", value);
4033 if (is_dot)
4034 print_dot = value;
4035 }
4036 else
4037 {
4038 struct bfd_link_hash_entry *h;
4039
4040 h = bfd_link_hash_lookup (link_info.hash, assignment->exp->assign.dst,
4041 FALSE, FALSE, TRUE);
4042 if (h)
4043 {
4044 value = h->u.def.value;
4045
4046 if (expld.result.section != NULL)
4047 value += expld.result.section->vma;
4048
4049 minfo ("[0x%V]", value);
4050 }
4051 else
4052 minfo ("[unresolved]");
4053 }
4054 }
4055 else
4056 {
4057 minfo ("*undef* ");
4058#ifdef BFD64
4059 minfo (" ");
4060#endif
4061 }
4062
4063 minfo (" ");
4064 exp_print_tree (assignment->exp);
4065 print_nl ();
4066}
4067
4068static void
4069print_input_statement (lang_input_statement_type *statm)
4070{
4071 if (statm->filename != NULL
4072 && (statm->the_bfd == NULL
4073 || (statm->the_bfd->flags & BFD_LINKER_CREATED) == 0))
4074 fprintf (config.map_file, "LOAD %s\n", statm->filename);
4075}
4076
4077/* Print all symbols defined in a particular section. This is called
4078 via bfd_link_hash_traverse, or by print_all_symbols. */
4079
4080static bfd_boolean
4081print_one_symbol (struct bfd_link_hash_entry *hash_entry, void *ptr)
4082{
4083 asection *sec = (asection *) ptr;
4084
4085 if ((hash_entry->type == bfd_link_hash_defined
4086 || hash_entry->type == bfd_link_hash_defweak)
4087 && sec == hash_entry->u.def.section)
4088 {
4089 int i;
4090
4091 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4092 print_space ();
4093 minfo ("0x%V ",
4094 (hash_entry->u.def.value
4095 + hash_entry->u.def.section->output_offset
4096 + hash_entry->u.def.section->output_section->vma));
4097
4098 minfo (" %T\n", hash_entry->root.string);
4099 }
4100
4101 return TRUE;
4102}
4103
4104static int
4105hash_entry_addr_cmp (const void *a, const void *b)
4106{
4107 const struct bfd_link_hash_entry *l = *(const struct bfd_link_hash_entry **)a;
4108 const struct bfd_link_hash_entry *r = *(const struct bfd_link_hash_entry **)b;
4109
4110 if (l->u.def.value < r->u.def.value)
4111 return -1;
4112 else if (l->u.def.value > r->u.def.value)
4113 return 1;
4114 else
4115 return 0;
4116}
4117
4118static void
4119print_all_symbols (asection *sec)
4120{
4121 struct fat_user_section_struct *ud =
4122 (struct fat_user_section_struct *) get_userdata (sec);
4123 struct map_symbol_def *def;
4124 struct bfd_link_hash_entry **entries;
4125 unsigned int i;
4126
4127 if (!ud)
4128 return;
4129
4130 *ud->map_symbol_def_tail = 0;
4131
4132 /* Sort the symbols by address. */
4133 entries = (struct bfd_link_hash_entry **)
4134 obstack_alloc (&map_obstack, ud->map_symbol_def_count * sizeof (*entries));
4135
4136 for (i = 0, def = ud->map_symbol_def_head; def; def = def->next, i++)
4137 entries[i] = def->entry;
4138
4139 qsort (entries, ud->map_symbol_def_count, sizeof (*entries),
4140 hash_entry_addr_cmp);
4141
4142 /* Print the symbols. */
4143 for (i = 0; i < ud->map_symbol_def_count; i++)
4144 print_one_symbol (entries[i], sec);
4145
4146 obstack_free (&map_obstack, entries);
4147}
4148
4149/* Print information about an input section to the map file. */
4150
4151static void
4152print_input_section (asection *i, bfd_boolean is_discarded)
4153{
4154 bfd_size_type size = i->size;
4155 int len;
4156 bfd_vma addr;
4157
4158 init_opb ();
4159
4160 print_space ();
4161 minfo ("%s", i->name);
4162
4163 len = 1 + strlen (i->name);
4164 if (len >= SECTION_NAME_MAP_LENGTH - 1)
4165 {
4166 print_nl ();
4167 len = 0;
4168 }
4169 while (len < SECTION_NAME_MAP_LENGTH)
4170 {
4171 print_space ();
4172 ++len;
4173 }
4174
4175 if (i->output_section != NULL
4176 && i->output_section->owner == link_info.output_bfd)
4177 addr = i->output_section->vma + i->output_offset;
4178 else
4179 {
4180 addr = print_dot;
4181 if (!is_discarded)
4182 size = 0;
4183 }
4184
4185 minfo ("0x%V %W %B\n", addr, TO_ADDR (size), i->owner);
4186
4187 if (size != i->rawsize && i->rawsize != 0)
4188 {
4189 len = SECTION_NAME_MAP_LENGTH + 3;
4190#ifdef BFD64
4191 len += 16;
4192#else
4193 len += 8;
4194#endif
4195 while (len > 0)
4196 {
4197 print_space ();
4198 --len;
4199 }
4200
4201 minfo (_("%W (size before relaxing)\n"), i->rawsize);
4202 }
4203
4204 if (i->output_section != NULL
4205 && i->output_section->owner == link_info.output_bfd)
4206 {
4207 if (link_info.reduce_memory_overheads)
4208 bfd_link_hash_traverse (link_info.hash, print_one_symbol, i);
4209 else
4210 print_all_symbols (i);
4211
4212 /* Update print_dot, but make sure that we do not move it
4213 backwards - this could happen if we have overlays and a
4214 later overlay is shorter than an earier one. */
4215 if (addr + TO_ADDR (size) > print_dot)
4216 print_dot = addr + TO_ADDR (size);
4217 }
4218}
4219
4220static void
4221print_fill_statement (lang_fill_statement_type *fill)
4222{
4223 size_t size;
4224 unsigned char *p;
4225 fputs (" FILL mask 0x", config.map_file);
4226 for (p = fill->fill->data, size = fill->fill->size; size != 0; p++, size--)
4227 fprintf (config.map_file, "%02x", *p);
4228 fputs ("\n", config.map_file);
4229}
4230
4231static void
4232print_data_statement (lang_data_statement_type *data)
4233{
4234 int i;
4235 bfd_vma addr;
4236 bfd_size_type size;
4237 const char *name;
4238
4239 init_opb ();
4240 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4241 print_space ();
4242
4243 addr = data->output_offset;
4244 if (data->output_section != NULL)
4245 addr += data->output_section->vma;
4246
4247 switch (data->type)
4248 {
4249 default:
4250 abort ();
4251 case BYTE:
4252 size = BYTE_SIZE;
4253 name = "BYTE";
4254 break;
4255 case SHORT:
4256 size = SHORT_SIZE;
4257 name = "SHORT";
4258 break;
4259 case LONG:
4260 size = LONG_SIZE;
4261 name = "LONG";
4262 break;
4263 case QUAD:
4264 size = QUAD_SIZE;
4265 name = "QUAD";
4266 break;
4267 case SQUAD:
4268 size = QUAD_SIZE;
4269 name = "SQUAD";
4270 break;
4271 }
4272
4273 minfo ("0x%V %W %s 0x%v", addr, size, name, data->value);
4274
4275 if (data->exp->type.node_class != etree_value)
4276 {
4277 print_space ();
4278 exp_print_tree (data->exp);
4279 }
4280
4281 print_nl ();
4282
4283 print_dot = addr + TO_ADDR (size);
4284}
4285
4286/* Print an address statement. These are generated by options like
4287 -Ttext. */
4288
4289static void
4290print_address_statement (lang_address_statement_type *address)
4291{
4292 minfo (_("Address of section %s set to "), address->section_name);
4293 exp_print_tree (address->address);
4294 print_nl ();
4295}
4296
4297/* Print a reloc statement. */
4298
4299static void
4300print_reloc_statement (lang_reloc_statement_type *reloc)
4301{
4302 int i;
4303 bfd_vma addr;
4304 bfd_size_type size;
4305
4306 init_opb ();
4307 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
4308 print_space ();
4309
4310 addr = reloc->output_offset;
4311 if (reloc->output_section != NULL)
4312 addr += reloc->output_section->vma;
4313
4314 size = bfd_get_reloc_size (reloc->howto);
4315
4316 minfo ("0x%V %W RELOC %s ", addr, size, reloc->howto->name);
4317
4318 if (reloc->name != NULL)
4319 minfo ("%s+", reloc->name);
4320 else
4321 minfo ("%s+", reloc->section->name);
4322
4323 exp_print_tree (reloc->addend_exp);
4324
4325 print_nl ();
4326
4327 print_dot = addr + TO_ADDR (size);
4328}
4329
4330static void
4331print_padding_statement (lang_padding_statement_type *s)
4332{
4333 int len;
4334 bfd_vma addr;
4335
4336 init_opb ();
4337 minfo (" *fill*");
4338
4339 len = sizeof " *fill*" - 1;
4340 while (len < SECTION_NAME_MAP_LENGTH)
4341 {
4342 print_space ();
4343 ++len;
4344 }
4345
4346 addr = s->output_offset;
4347 if (s->output_section != NULL)
4348 addr += s->output_section->vma;
4349 minfo ("0x%V %W ", addr, (bfd_vma) s->size);
4350
4351 if (s->fill->size != 0)
4352 {
4353 size_t size;
4354 unsigned char *p;
4355 for (p = s->fill->data, size = s->fill->size; size != 0; p++, size--)
4356 fprintf (config.map_file, "%02x", *p);
4357 }
4358
4359 print_nl ();
4360
4361 print_dot = addr + TO_ADDR (s->size);
4362}
4363
4364static void
4365print_wild_statement (lang_wild_statement_type *w,
4366 lang_output_section_statement_type *os)
4367{
4368 struct wildcard_list *sec;
4369
4370 print_space ();
4371
4372 if (w->filenames_sorted)
4373 minfo ("SORT(");
4374 if (w->filename != NULL)
4375 minfo ("%s", w->filename);
4376 else
4377 minfo ("*");
4378 if (w->filenames_sorted)
4379 minfo (")");
4380
4381 minfo ("(");
4382 for (sec = w->section_list; sec; sec = sec->next)
4383 {
4384 if (sec->spec.sorted)
4385 minfo ("SORT(");
4386 if (sec->spec.exclude_name_list != NULL)
4387 {
4388 name_list *tmp;
4389 minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
4390 for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
4391 minfo (" %s", tmp->name);
4392 minfo (") ");
4393 }
4394 if (sec->spec.name != NULL)
4395 minfo ("%s", sec->spec.name);
4396 else
4397 minfo ("*");
4398 if (sec->spec.sorted)
4399 minfo (")");
4400 if (sec->next)
4401 minfo (" ");
4402 }
4403 minfo (")");
4404
4405 print_nl ();
4406
4407 print_statement_list (w->children.head, os);
4408}
4409
4410/* Print a group statement. */
4411
4412static void
4413print_group (lang_group_statement_type *s,
4414 lang_output_section_statement_type *os)
4415{
4416 fprintf (config.map_file, "START GROUP\n");
4417 print_statement_list (s->children.head, os);
4418 fprintf (config.map_file, "END GROUP\n");
4419}
4420
4421/* Print the list of statements in S.
4422 This can be called for any statement type. */
4423
4424static void
4425print_statement_list (lang_statement_union_type *s,
4426 lang_output_section_statement_type *os)
4427{
4428 while (s != NULL)
4429 {
4430 print_statement (s, os);
4431 s = s->header.next;
4432 }
4433}
4434
4435/* Print the first statement in statement list S.
4436 This can be called for any statement type. */
4437
4438static void
4439print_statement (lang_statement_union_type *s,
4440 lang_output_section_statement_type *os)
4441{
4442 switch (s->header.type)
4443 {
4444 default:
4445 fprintf (config.map_file, _("Fail with %d\n"), s->header.type);
4446 FAIL ();
4447 break;
4448 case lang_constructors_statement_enum:
4449 if (constructor_list.head != NULL)
4450 {
4451 if (constructors_sorted)
4452 minfo (" SORT (CONSTRUCTORS)\n");
4453 else
4454 minfo (" CONSTRUCTORS\n");
4455 print_statement_list (constructor_list.head, os);
4456 }
4457 break;
4458 case lang_wild_statement_enum:
4459 print_wild_statement (&s->wild_statement, os);
4460 break;
4461 case lang_address_statement_enum:
4462 print_address_statement (&s->address_statement);
4463 break;
4464 case lang_object_symbols_statement_enum:
4465 minfo (" CREATE_OBJECT_SYMBOLS\n");
4466 break;
4467 case lang_fill_statement_enum:
4468 print_fill_statement (&s->fill_statement);
4469 break;
4470 case lang_data_statement_enum:
4471 print_data_statement (&s->data_statement);
4472 break;
4473 case lang_reloc_statement_enum:
4474 print_reloc_statement (&s->reloc_statement);
4475 break;
4476 case lang_input_section_enum:
4477 print_input_section (s->input_section.section, FALSE);
4478 break;
4479 case lang_padding_statement_enum:
4480 print_padding_statement (&s->padding_statement);
4481 break;
4482 case lang_output_section_statement_enum:
4483 print_output_section_statement (&s->output_section_statement);
4484 break;
4485 case lang_assignment_statement_enum:
4486 print_assignment (&s->assignment_statement, os);
4487 break;
4488 case lang_target_statement_enum:
4489 fprintf (config.map_file, "TARGET(%s)\n", s->target_statement.target);
4490 break;
4491 case lang_output_statement_enum:
4492 minfo ("OUTPUT(%s", s->output_statement.name);
4493 if (output_target != NULL)
4494 minfo (" %s", output_target);
4495 minfo (")\n");
4496 break;
4497 case lang_input_statement_enum:
4498 print_input_statement (&s->input_statement);
4499 break;
4500 case lang_group_statement_enum:
4501 print_group (&s->group_statement, os);
4502 break;
4503 case lang_insert_statement_enum:
4504 minfo ("INSERT %s %s\n",
4505 s->insert_statement.is_before ? "BEFORE" : "AFTER",
4506 s->insert_statement.where);
4507 break;
4508 }
4509}
4510
4511static void
4512print_statements (void)
4513{
4514 print_statement_list (statement_list.head, abs_output_section);
4515}
4516
4517/* Print the first N statements in statement list S to STDERR.
4518 If N == 0, nothing is printed.
4519 If N < 0, the entire list is printed.
4520 Intended to be called from GDB. */
4521
4522void
4523dprint_statement (lang_statement_union_type *s, int n)
4524{
4525 FILE *map_save = config.map_file;
4526
4527 config.map_file = stderr;
4528
4529 if (n < 0)
4530 print_statement_list (s, abs_output_section);
4531 else
4532 {
4533 while (s && --n >= 0)
4534 {
4535 print_statement (s, abs_output_section);
4536 s = s->header.next;
4537 }
4538 }
4539
4540 config.map_file = map_save;
4541}
4542
4543static void
4544insert_pad (lang_statement_union_type **ptr,
4545 fill_type *fill,
4546 unsigned int alignment_needed,
4547 asection *output_section,
4548 bfd_vma dot)
4549{
4550 static fill_type zero_fill = { 1, { 0 } };
4551 lang_statement_union_type *pad = NULL;
4552
4553 if (ptr != &statement_list.head)
4554 pad = ((lang_statement_union_type *)
4555 ((char *) ptr - offsetof (lang_statement_union_type, header.next)));
4556 if (pad != NULL
4557 && pad->header.type == lang_padding_statement_enum
4558 && pad->padding_statement.output_section == output_section)
4559 {
4560 /* Use the existing pad statement. */
4561 }
4562 else if ((pad = *ptr) != NULL
4563 && pad->header.type == lang_padding_statement_enum
4564 && pad->padding_statement.output_section == output_section)
4565 {
4566 /* Use the existing pad statement. */
4567 }
4568 else
4569 {
4570 /* Make a new padding statement, linked into existing chain. */
4571 pad = (lang_statement_union_type *)
4572 stat_alloc (sizeof (lang_padding_statement_type));
4573 pad->header.next = *ptr;
4574 *ptr = pad;
4575 pad->header.type = lang_padding_statement_enum;
4576 pad->padding_statement.output_section = output_section;
4577 if (fill == NULL)
4578 fill = &zero_fill;
4579 pad->padding_statement.fill = fill;
4580 }
4581 pad->padding_statement.output_offset = dot - output_section->vma;
4582 pad->padding_statement.size = alignment_needed;
4583 output_section->size += alignment_needed;
4584}
4585
4586/* Work out how much this section will move the dot point. */
4587
4588static bfd_vma
4589size_input_section
4590 (lang_statement_union_type **this_ptr,
4591 lang_output_section_statement_type *output_section_statement,
4592 fill_type *fill,
4593 bfd_vma dot)
4594{
4595 lang_input_section_type *is = &((*this_ptr)->input_section);
4596 asection *i = is->section;
4597
4598 if (!((lang_input_statement_type *) i->owner->usrdata)->just_syms_flag
4599 && (i->flags & SEC_EXCLUDE) == 0)
4600 {
4601 unsigned int alignment_needed;
4602 asection *o;
4603
4604 /* Align this section first to the input sections requirement,
4605 then to the output section's requirement. If this alignment
4606 is greater than any seen before, then record it too. Perform
4607 the alignment by inserting a magic 'padding' statement. */
4608
4609 if (output_section_statement->subsection_alignment != -1)
4610 i->alignment_power = output_section_statement->subsection_alignment;
4611
4612 o = output_section_statement->bfd_section;
4613 if (o->alignment_power < i->alignment_power)
4614 o->alignment_power = i->alignment_power;
4615
4616 alignment_needed = align_power (dot, i->alignment_power) - dot;
4617
4618 if (alignment_needed != 0)
4619 {
4620 insert_pad (this_ptr, fill, TO_SIZE (alignment_needed), o, dot);
4621 dot += alignment_needed;
4622 }
4623
4624 /* Remember where in the output section this input section goes. */
4625
4626 i->output_offset = dot - o->vma;
4627
4628 /* Mark how big the output section must be to contain this now. */
4629 dot += TO_ADDR (i->size);
4630 o->size = TO_SIZE (dot - o->vma);
4631 }
4632 else
4633 {
4634 i->output_offset = i->vma - output_section_statement->bfd_section->vma;
4635 }
4636
4637 return dot;
4638}
4639
4640static int
4641sort_sections_by_lma (const void *arg1, const void *arg2)
4642{
4643 const asection *sec1 = *(const asection **) arg1;
4644 const asection *sec2 = *(const asection **) arg2;
4645
4646 if (bfd_section_lma (sec1->owner, sec1)
4647 < bfd_section_lma (sec2->owner, sec2))
4648 return -1;
4649 else if (bfd_section_lma (sec1->owner, sec1)
4650 > bfd_section_lma (sec2->owner, sec2))
4651 return 1;
4652 else if (sec1->id < sec2->id)
4653 return -1;
4654 else if (sec1->id > sec2->id)
4655 return 1;
4656
4657 return 0;
4658}
4659
4660#define IGNORE_SECTION(s) \
4661 ((s->flags & SEC_ALLOC) == 0 \
4662 || ((s->flags & SEC_THREAD_LOCAL) != 0 \
4663 && (s->flags & SEC_LOAD) == 0))
4664
4665/* Check to see if any allocated sections overlap with other allocated
4666 sections. This can happen if a linker script specifies the output
4667 section addresses of the two sections. Also check whether any memory
4668 region has overflowed. */
4669
4670static void
4671lang_check_section_addresses (void)
4672{
4673 asection *s, *p;
4674 asection **sections, **spp;
4675 unsigned int count;
4676 bfd_vma s_start;
4677 bfd_vma s_end;
4678 bfd_vma p_start;
4679 bfd_vma p_end;
4680 bfd_size_type amt;
4681 lang_memory_region_type *m;
4682
4683 if (bfd_count_sections (link_info.output_bfd) <= 1)
4684 return;
4685
4686 amt = bfd_count_sections (link_info.output_bfd) * sizeof (asection *);
4687 sections = (asection **) xmalloc (amt);
4688
4689 /* Scan all sections in the output list. */
4690 count = 0;
4691 for (s = link_info.output_bfd->sections; s != NULL; s = s->next)
4692 {
4693 /* Only consider loadable sections with real contents. */
4694 if (!(s->flags & SEC_LOAD)
4695 || !(s->flags & SEC_ALLOC)
4696 || s->size == 0)
4697 continue;
4698
4699 sections[count] = s;
4700 count++;
4701 }
4702
4703 if (count <= 1)
4704 return;
4705
4706 qsort (sections, (size_t) count, sizeof (asection *),
4707 sort_sections_by_lma);
4708
4709 spp = sections;
4710 s = *spp++;
4711 s_start = s->lma;
4712 s_end = s_start + TO_ADDR (s->size) - 1;
4713 for (count--; count; count--)
4714 {
4715 /* We must check the sections' LMA addresses not their VMA
4716 addresses because overlay sections can have overlapping VMAs
4717 but they must have distinct LMAs. */
4718 p = s;
4719 p_start = s_start;
4720 p_end = s_end;
4721 s = *spp++;
4722 s_start = s->lma;
4723 s_end = s_start + TO_ADDR (s->size) - 1;
4724
4725 /* Look for an overlap. We have sorted sections by lma, so we
4726 know that s_start >= p_start. Besides the obvious case of
4727 overlap when the current section starts before the previous
4728 one ends, we also must have overlap if the previous section
4729 wraps around the address space. */
4730 if (s_start <= p_end
4731 || p_end < p_start)
4732 einfo (_("%X%P: section %s loaded at [%V,%V] overlaps section %s loaded at [%V,%V]\n"),
4733 s->name, s_start, s_end, p->name, p_start, p_end);
4734 }
4735
4736 free (sections);
4737
4738 /* If any memory region has overflowed, report by how much.
4739 We do not issue this diagnostic for regions that had sections
4740 explicitly placed outside their bounds; os_region_check's
4741 diagnostics are adequate for that case.
4742
4743 FIXME: It is conceivable that m->current - (m->origin + m->length)
4744 might overflow a 32-bit integer. There is, alas, no way to print
4745 a bfd_vma quantity in decimal. */
4746 for (m = lang_memory_region_list; m; m = m->next)
4747 if (m->had_full_message)
4748 einfo (_("%X%P: region `%s' overflowed by %ld bytes\n"),
4749 m->name_list.name, (long)(m->current - (m->origin + m->length)));
4750
4751}
4752
4753/* Make sure the new address is within the region. We explicitly permit the
4754 current address to be at the exact end of the region when the address is
4755 non-zero, in case the region is at the end of addressable memory and the
4756 calculation wraps around. */
4757
4758static void
4759os_region_check (lang_output_section_statement_type *os,
4760 lang_memory_region_type *region,
4761 etree_type *tree,
4762 bfd_vma rbase)
4763{
4764 if ((region->current < region->origin
4765 || (region->current - region->origin > region->length))
4766 && ((region->current != region->origin + region->length)
4767 || rbase == 0))
4768 {
4769 if (tree != NULL)
4770 {
4771 einfo (_("%X%P: address 0x%v of %B section `%s'"
4772 " is not within region `%s'\n"),
4773 region->current,
4774 os->bfd_section->owner,
4775 os->bfd_section->name,
4776 region->name_list.name);
4777 }
4778 else if (!region->had_full_message)
4779 {
4780 region->had_full_message = TRUE;
4781
4782 einfo (_("%X%P: %B section `%s' will not fit in region `%s'\n"),
4783 os->bfd_section->owner,
4784 os->bfd_section->name,
4785 region->name_list.name);
4786 }
4787 }
4788}
4789
4790/* Set the sizes for all the output sections. */
4791
4792static bfd_vma
4793lang_size_sections_1
4794 (lang_statement_union_type **prev,
4795 lang_output_section_statement_type *output_section_statement,
4796 fill_type *fill,
4797 bfd_vma dot,
4798 bfd_boolean *relax,
4799 bfd_boolean check_regions)
4800{
4801 lang_statement_union_type *s;
4802
4803 /* Size up the sections from their constituent parts. */
4804 for (s = *prev; s != NULL; s = s->header.next)
4805 {
4806 switch (s->header.type)
4807 {
4808 case lang_output_section_statement_enum:
4809 {
4810 bfd_vma newdot, after;
4811 lang_output_section_statement_type *os;
4812 lang_memory_region_type *r;
4813 int section_alignment = 0;
4814
4815 os = &s->output_section_statement;
4816 if (os->constraint == -1)
4817 break;
4818
4819 /* FIXME: We shouldn't need to zero section vmas for ld -r
4820 here, in lang_insert_orphan, or in the default linker scripts.
4821 This is covering for coff backend linker bugs. See PR6945. */
4822 if (os->addr_tree == NULL
4823 && link_info.relocatable
4824 && (bfd_get_flavour (link_info.output_bfd)
4825 == bfd_target_coff_flavour))
4826 os->addr_tree = exp_intop (0);
4827 if (os->addr_tree != NULL)
4828 {
4829 os->processed_vma = FALSE;
4830 exp_fold_tree (os->addr_tree, bfd_abs_section_ptr, &dot);
4831
4832 if (expld.result.valid_p)
4833 {
4834 dot = expld.result.value;
4835 if (expld.result.section != NULL)
4836 dot += expld.result.section->vma;
4837 }
4838 else if (expld.phase != lang_mark_phase_enum)
4839 einfo (_("%F%S: non constant or forward reference"
4840 " address expression for section %s\n"),
4841 os->name);
4842 }
4843
4844 if (os->bfd_section == NULL)
4845 /* This section was removed or never actually created. */
4846 break;
4847
4848 /* If this is a COFF shared library section, use the size and
4849 address from the input section. FIXME: This is COFF
4850 specific; it would be cleaner if there were some other way
4851 to do this, but nothing simple comes to mind. */
4852 if (((bfd_get_flavour (link_info.output_bfd)
4853 == bfd_target_ecoff_flavour)
4854 || (bfd_get_flavour (link_info.output_bfd)
4855 == bfd_target_coff_flavour))
4856 && (os->bfd_section->flags & SEC_COFF_SHARED_LIBRARY) != 0)
4857 {
4858 asection *input;
4859
4860 if (os->children.head == NULL
4861 || os->children.head->header.next != NULL
4862 || (os->children.head->header.type
4863 != lang_input_section_enum))
4864 einfo (_("%P%X: Internal error on COFF shared library"
4865 " section %s\n"), os->name);
4866
4867 input = os->children.head->input_section.section;
4868 bfd_set_section_vma (os->bfd_section->owner,
4869 os->bfd_section,
4870 bfd_section_vma (input->owner, input));
4871 os->bfd_section->size = input->size;
4872 break;
4873 }
4874
4875 newdot = dot;
4876 if (bfd_is_abs_section (os->bfd_section))
4877 {
4878 /* No matter what happens, an abs section starts at zero. */
4879 ASSERT (os->bfd_section->vma == 0);
4880 }
4881 else
4882 {
4883 if (os->addr_tree == NULL)
4884 {
4885 /* No address specified for this section, get one
4886 from the region specification. */
4887 if (os->region == NULL
4888 || ((os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))
4889 && os->region->name_list.name[0] == '*'
4890 && strcmp (os->region->name_list.name,
4891 DEFAULT_MEMORY_REGION) == 0))
4892 {
4893 os->region = lang_memory_default (os->bfd_section);
4894 }
4895
4896 /* If a loadable section is using the default memory
4897 region, and some non default memory regions were
4898 defined, issue an error message. */
4899 if (!os->ignored
4900 && !IGNORE_SECTION (os->bfd_section)
4901 && ! link_info.relocatable
4902 && check_regions
4903 && strcmp (os->region->name_list.name,
4904 DEFAULT_MEMORY_REGION) == 0
4905 && lang_memory_region_list != NULL
4906 && (strcmp (lang_memory_region_list->name_list.name,
4907 DEFAULT_MEMORY_REGION) != 0
4908 || lang_memory_region_list->next != NULL)
4909 && expld.phase != lang_mark_phase_enum)
4910 {
4911 /* By default this is an error rather than just a
4912 warning because if we allocate the section to the
4913 default memory region we can end up creating an
4914 excessively large binary, or even seg faulting when
4915 attempting to perform a negative seek. See
4916 sources.redhat.com/ml/binutils/2003-04/msg00423.html
4917 for an example of this. This behaviour can be
4918 overridden by the using the --no-check-sections
4919 switch. */
4920 if (command_line.check_section_addresses)
4921 einfo (_("%P%F: error: no memory region specified"
4922 " for loadable section `%s'\n"),
4923 bfd_get_section_name (link_info.output_bfd,
4924 os->bfd_section));
4925 else
4926 einfo (_("%P: warning: no memory region specified"
4927 " for loadable section `%s'\n"),
4928 bfd_get_section_name (link_info.output_bfd,
4929 os->bfd_section));
4930 }
4931
4932 newdot = os->region->current;
4933 section_alignment = os->bfd_section->alignment_power;
4934 }
4935 else
4936 section_alignment = os->section_alignment;
4937
4938 /* Align to what the section needs. */
4939 if (section_alignment > 0)
4940 {
4941 bfd_vma savedot = newdot;
4942 newdot = align_power (newdot, section_alignment);
4943
4944 if (newdot != savedot
4945 && (config.warn_section_align
4946 || os->addr_tree != NULL)
4947 && expld.phase != lang_mark_phase_enum)
4948 einfo (_("%P: warning: changing start of section"
4949 " %s by %lu bytes\n"),
4950 os->name, (unsigned long) (newdot - savedot));
4951 }
4952
4953 bfd_set_section_vma (0, os->bfd_section, newdot);
4954
4955 os->bfd_section->output_offset = 0;
4956 }
4957
4958 lang_size_sections_1 (&os->children.head, os,
4959 os->fill, newdot, relax, check_regions);
4960
4961 os->processed_vma = TRUE;
4962
4963 if (bfd_is_abs_section (os->bfd_section) || os->ignored)
4964 /* Except for some special linker created sections,
4965 no output section should change from zero size
4966 after strip_excluded_output_sections. A non-zero
4967 size on an ignored section indicates that some
4968 input section was not sized early enough. */
4969 ASSERT (os->bfd_section->size == 0);
4970 else
4971 {
4972 dot = os->bfd_section->vma;
4973
4974 /* Put the section within the requested block size, or
4975 align at the block boundary. */
4976 after = ((dot
4977 + TO_ADDR (os->bfd_section->size)
4978 + os->block_value - 1)
4979 & - (bfd_vma) os->block_value);
4980
4981 os->bfd_section->size = TO_SIZE (after - os->bfd_section->vma);
4982 }
4983
4984 /* Set section lma. */
4985 r = os->region;
4986 if (r == NULL)
4987 r = lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
4988
4989 if (os->load_base)
4990 {
4991 bfd_vma lma = exp_get_abs_int (os->load_base, 0, "load base");
4992 os->bfd_section->lma = lma;
4993 }
4994 else if (os->lma_region != NULL)
4995 {
4996 bfd_vma lma = os->lma_region->current;
4997
4998 if (section_alignment > 0)
4999 lma = align_power (lma, section_alignment);
5000 os->bfd_section->lma = lma;
5001 }
5002 else if (r->last_os != NULL
5003 && (os->bfd_section->flags & SEC_ALLOC) != 0)
5004 {
5005 bfd_vma lma;
5006 asection *last;
5007
5008 last = r->last_os->output_section_statement.bfd_section;
5009
5010 /* A backwards move of dot should be accompanied by
5011 an explicit assignment to the section LMA (ie.
5012 os->load_base set) because backwards moves can
5013 create overlapping LMAs. */
5014 if (dot < last->vma
5015 && os->bfd_section->size != 0
5016 && dot + os->bfd_section->size <= last->vma)
5017 {
5018 /* If dot moved backwards then leave lma equal to
5019 vma. This is the old default lma, which might
5020 just happen to work when the backwards move is
5021 sufficiently large. Nag if this changes anything,
5022 so people can fix their linker scripts. */
5023
5024 if (last->vma != last->lma)
5025 einfo (_("%P: warning: dot moved backwards before `%s'\n"),
5026 os->name);
5027 }
5028 else
5029 {
5030 /* If this is an overlay, set the current lma to that
5031 at the end of the previous section. */
5032 if (os->sectype == overlay_section)
5033 lma = last->lma + last->size;
5034
5035 /* Otherwise, keep the same lma to vma relationship
5036 as the previous section. */
5037 else
5038 lma = dot + last->lma - last->vma;
5039
5040 if (section_alignment > 0)
5041 lma = align_power (lma, section_alignment);
5042 os->bfd_section->lma = lma;
5043 }
5044 }
5045 os->processed_lma = TRUE;
5046
5047 if (bfd_is_abs_section (os->bfd_section) || os->ignored)
5048 break;
5049
5050 /* Keep track of normal sections using the default
5051 lma region. We use this to set the lma for
5052 following sections. Overlays or other linker
5053 script assignment to lma might mean that the
5054 default lma == vma is incorrect.
5055 To avoid warnings about dot moving backwards when using
5056 -Ttext, don't start tracking sections until we find one
5057 of non-zero size or with lma set differently to vma. */
5058 if (((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5059 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0)
5060 && (os->bfd_section->flags & SEC_ALLOC) != 0
5061 && (os->bfd_section->size != 0
5062 || (r->last_os == NULL
5063 && os->bfd_section->vma != os->bfd_section->lma)
5064 || (r->last_os != NULL
5065 && dot >= (r->last_os->output_section_statement
5066 .bfd_section->vma)))
5067 && os->lma_region == NULL
5068 && !link_info.relocatable)
5069 r->last_os = s;
5070
5071 /* .tbss sections effectively have zero size. */
5072 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5073 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
5074 || link_info.relocatable)
5075 dot += TO_ADDR (os->bfd_section->size);
5076
5077 if (os->update_dot_tree != 0)
5078 exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot);
5079
5080 /* Update dot in the region ?
5081 We only do this if the section is going to be allocated,
5082 since unallocated sections do not contribute to the region's
5083 overall size in memory. */
5084 if (os->region != NULL
5085 && (os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD)))
5086 {
5087 os->region->current = dot;
5088
5089 if (check_regions)
5090 /* Make sure the new address is within the region. */
5091 os_region_check (os, os->region, os->addr_tree,
5092 os->bfd_section->vma);
5093
5094 if (os->lma_region != NULL && os->lma_region != os->region
5095 && (os->bfd_section->flags & SEC_LOAD))
5096 {
5097 os->lma_region->current
5098 = os->bfd_section->lma + TO_ADDR (os->bfd_section->size);
5099
5100 if (check_regions)
5101 os_region_check (os, os->lma_region, NULL,
5102 os->bfd_section->lma);
5103 }
5104 }
5105 }
5106 break;
5107
5108 case lang_constructors_statement_enum:
5109 dot = lang_size_sections_1 (&constructor_list.head,
5110 output_section_statement,
5111 fill, dot, relax, check_regions);
5112 break;
5113
5114 case lang_data_statement_enum:
5115 {
5116 unsigned int size = 0;
5117
5118 s->data_statement.output_offset =
5119 dot - output_section_statement->bfd_section->vma;
5120 s->data_statement.output_section =
5121 output_section_statement->bfd_section;
5122
5123 /* We might refer to provided symbols in the expression, and
5124 need to mark them as needed. */
5125 exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
5126
5127 switch (s->data_statement.type)
5128 {
5129 default:
5130 abort ();
5131 case QUAD:
5132 case SQUAD:
5133 size = QUAD_SIZE;
5134 break;
5135 case LONG:
5136 size = LONG_SIZE;
5137 break;
5138 case SHORT:
5139 size = SHORT_SIZE;
5140 break;
5141 case BYTE:
5142 size = BYTE_SIZE;
5143 break;
5144 }
5145 if (size < TO_SIZE ((unsigned) 1))
5146 size = TO_SIZE ((unsigned) 1);
5147 dot += TO_ADDR (size);
5148 output_section_statement->bfd_section->size += size;
5149 }
5150 break;
5151
5152 case lang_reloc_statement_enum:
5153 {
5154 int size;
5155
5156 s->reloc_statement.output_offset =
5157 dot - output_section_statement->bfd_section->vma;
5158 s->reloc_statement.output_section =
5159 output_section_statement->bfd_section;
5160 size = bfd_get_reloc_size (s->reloc_statement.howto);
5161 dot += TO_ADDR (size);
5162 output_section_statement->bfd_section->size += size;
5163 }
5164 break;
5165
5166 case lang_wild_statement_enum:
5167 dot = lang_size_sections_1 (&s->wild_statement.children.head,
5168 output_section_statement,
5169 fill, dot, relax, check_regions);
5170 break;
5171
5172 case lang_object_symbols_statement_enum:
5173 link_info.create_object_symbols_section =
5174 output_section_statement->bfd_section;
5175 break;
5176
5177 case lang_output_statement_enum:
5178 case lang_target_statement_enum:
5179 break;
5180
5181 case lang_input_section_enum:
5182 {
5183 asection *i;
5184
5185 i = s->input_section.section;
5186 if (relax)
5187 {
5188 bfd_boolean again;
5189
5190 if (! bfd_relax_section (i->owner, i, &link_info, &again))
5191 einfo (_("%P%F: can't relax section: %E\n"));
5192 if (again)
5193 *relax = TRUE;
5194 }
5195 dot = size_input_section (prev, output_section_statement,
5196 output_section_statement->fill, dot);
5197 }
5198 break;
5199
5200 case lang_input_statement_enum:
5201 break;
5202
5203 case lang_fill_statement_enum:
5204 s->fill_statement.output_section =
5205 output_section_statement->bfd_section;
5206
5207 fill = s->fill_statement.fill;
5208 break;
5209
5210 case lang_assignment_statement_enum:
5211 {
5212 bfd_vma newdot = dot;
5213 etree_type *tree = s->assignment_statement.exp;
5214
5215 expld.dataseg.relro = exp_dataseg_relro_none;
5216
5217 exp_fold_tree (tree,
5218 output_section_statement->bfd_section,
5219 &newdot);
5220
5221 if (expld.dataseg.relro == exp_dataseg_relro_start)
5222 {
5223 if (!expld.dataseg.relro_start_stat)
5224 expld.dataseg.relro_start_stat = s;
5225 else
5226 {
5227 ASSERT (expld.dataseg.relro_start_stat == s);
5228 }
5229 }
5230 else if (expld.dataseg.relro == exp_dataseg_relro_end)
5231 {
5232 if (!expld.dataseg.relro_end_stat)
5233 expld.dataseg.relro_end_stat = s;
5234 else
5235 {
5236 ASSERT (expld.dataseg.relro_end_stat == s);
5237 }
5238 }
5239 expld.dataseg.relro = exp_dataseg_relro_none;
5240
5241 /* This symbol is relative to this section. */
5242 if ((tree->type.node_class == etree_provided
5243 || tree->type.node_class == etree_assign)
5244 && (tree->assign.dst [0] != '.'
5245 || tree->assign.dst [1] != '\0'))
5246 output_section_statement->section_relative_symbol = 1;
5247
5248 if (!output_section_statement->ignored)
5249 {
5250 if (output_section_statement == abs_output_section)
5251 {
5252 /* If we don't have an output section, then just adjust
5253 the default memory address. */
5254 lang_memory_region_lookup (DEFAULT_MEMORY_REGION,
5255 FALSE)->current = newdot;
5256 }
5257 else if (newdot != dot)
5258 {
5259 /* Insert a pad after this statement. We can't
5260 put the pad before when relaxing, in case the
5261 assignment references dot. */
5262 insert_pad (&s->header.next, fill, TO_SIZE (newdot - dot),
5263 output_section_statement->bfd_section, dot);
5264
5265 /* Don't neuter the pad below when relaxing. */
5266 s = s->header.next;
5267
5268 /* If dot is advanced, this implies that the section
5269 should have space allocated to it, unless the
5270 user has explicitly stated that the section
5271 should not be allocated. */
5272 if (output_section_statement->sectype != noalloc_section
5273 && (output_section_statement->sectype != noload_section
5274 || (bfd_get_flavour (link_info.output_bfd)
5275 == bfd_target_elf_flavour)))
5276 output_section_statement->bfd_section->flags |= SEC_ALLOC;
5277 }
5278 dot = newdot;
5279 }
5280 }
5281 break;
5282
5283 case lang_padding_statement_enum:
5284 /* If this is the first time lang_size_sections is called,
5285 we won't have any padding statements. If this is the
5286 second or later passes when relaxing, we should allow
5287 padding to shrink. If padding is needed on this pass, it
5288 will be added back in. */
5289 s->padding_statement.size = 0;
5290
5291 /* Make sure output_offset is valid. If relaxation shrinks
5292 the section and this pad isn't needed, it's possible to
5293 have output_offset larger than the final size of the
5294 section. bfd_set_section_contents will complain even for
5295 a pad size of zero. */
5296 s->padding_statement.output_offset
5297 = dot - output_section_statement->bfd_section->vma;
5298 break;
5299
5300 case lang_group_statement_enum:
5301 dot = lang_size_sections_1 (&s->group_statement.children.head,
5302 output_section_statement,
5303 fill, dot, relax, check_regions);
5304 break;
5305
5306 case lang_insert_statement_enum:
5307 break;
5308
5309 /* We can only get here when relaxing is turned on. */
5310 case lang_address_statement_enum:
5311 break;
5312
5313 default:
5314 FAIL ();
5315 break;
5316 }
5317 prev = &s->header.next;
5318 }
5319 return dot;
5320}
5321
5322/* Callback routine that is used in _bfd_elf_map_sections_to_segments.
5323 The BFD library has set NEW_SEGMENT to TRUE iff it thinks that
5324 CURRENT_SECTION and PREVIOUS_SECTION ought to be placed into different
5325 segments. We are allowed an opportunity to override this decision. */
5326
5327bfd_boolean
5328ldlang_override_segment_assignment (struct bfd_link_info * info ATTRIBUTE_UNUSED,
5329 bfd * abfd ATTRIBUTE_UNUSED,
5330 asection * current_section,
5331 asection * previous_section,
5332 bfd_boolean new_segment)
5333{
5334 lang_output_section_statement_type * cur;
5335 lang_output_section_statement_type * prev;
5336
5337 /* The checks below are only necessary when the BFD library has decided
5338 that the two sections ought to be placed into the same segment. */
5339 if (new_segment)
5340 return TRUE;
5341
5342 /* Paranoia checks. */
5343 if (current_section == NULL || previous_section == NULL)
5344 return new_segment;
5345
5346 /* Find the memory regions associated with the two sections.
5347 We call lang_output_section_find() here rather than scanning the list
5348 of output sections looking for a matching section pointer because if
5349 we have a large number of sections then a hash lookup is faster. */
5350 cur = lang_output_section_find (current_section->name);
5351 prev = lang_output_section_find (previous_section->name);
5352
5353 /* More paranoia. */
5354 if (cur == NULL || prev == NULL)
5355 return new_segment;
5356
5357 /* If the regions are different then force the sections to live in
5358 different segments. See the email thread starting at the following
5359 URL for the reasons why this is necessary:
5360 http://sourceware.org/ml/binutils/2007-02/msg00216.html */
5361 return cur->region != prev->region;
5362}
5363
5364void
5365one_lang_size_sections_pass (bfd_boolean *relax, bfd_boolean check_regions)
5366{
5367 lang_statement_iteration++;
5368 lang_size_sections_1 (&statement_list.head, abs_output_section,
5369 0, 0, relax, check_regions);
5370}
5371
5372void
5373lang_size_sections (bfd_boolean *relax, bfd_boolean check_regions)
5374{
5375 expld.phase = lang_allocating_phase_enum;
5376 expld.dataseg.phase = exp_dataseg_none;
5377
5378 one_lang_size_sections_pass (relax, check_regions);
5379 if (expld.dataseg.phase == exp_dataseg_end_seen
5380 && link_info.relro && expld.dataseg.relro_end)
5381 {
5382 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END pair was seen, try
5383 to put expld.dataseg.relro on a (common) page boundary. */
5384 bfd_vma min_base, old_base, relro_end, maxpage;
5385
5386 expld.dataseg.phase = exp_dataseg_relro_adjust;
5387 maxpage = expld.dataseg.maxpagesize;
5388 /* MIN_BASE is the absolute minimum address we are allowed to start the
5389 read-write segment (byte before will be mapped read-only). */
5390 min_base = (expld.dataseg.min_base + maxpage - 1) & ~(maxpage - 1);
5391 /* OLD_BASE is the address for a feasible minimum address which will
5392 still not cause a data overlap inside MAXPAGE causing file offset skip
5393 by MAXPAGE. */
5394 old_base = expld.dataseg.base;
5395 expld.dataseg.base += (-expld.dataseg.relro_end
5396 & (expld.dataseg.pagesize - 1));
5397 /* Compute the expected PT_GNU_RELRO segment end. */
5398 relro_end = ((expld.dataseg.relro_end + expld.dataseg.pagesize - 1)
5399 & ~(expld.dataseg.pagesize - 1));
5400 if (min_base + maxpage < expld.dataseg.base)
5401 {
5402 expld.dataseg.base -= maxpage;
5403 relro_end -= maxpage;
5404 }
5405 lang_reset_memory_regions ();
5406 one_lang_size_sections_pass (relax, check_regions);
5407 if (expld.dataseg.relro_end > relro_end)
5408 {
5409 /* The alignment of sections between DATA_SEGMENT_ALIGN
5410 and DATA_SEGMENT_RELRO_END caused huge padding to be
5411 inserted at DATA_SEGMENT_RELRO_END. Try to start a bit lower so
5412 that the section alignments will fit in. */
5413 asection *sec;
5414 unsigned int max_alignment_power = 0;
5415
5416 /* Find maximum alignment power of sections between
5417 DATA_SEGMENT_ALIGN and DATA_SEGMENT_RELRO_END. */
5418 for (sec = link_info.output_bfd->sections; sec; sec = sec->next)
5419 if (sec->vma >= expld.dataseg.base
5420 && sec->vma < expld.dataseg.relro_end
5421 && sec->alignment_power > max_alignment_power)
5422 max_alignment_power = sec->alignment_power;
5423
5424 if (((bfd_vma) 1 << max_alignment_power) < expld.dataseg.pagesize)
5425 {
5426 if (expld.dataseg.base - (1 << max_alignment_power) < old_base)
5427 expld.dataseg.base += expld.dataseg.pagesize;
5428 expld.dataseg.base -= (1 << max_alignment_power);
5429 lang_reset_memory_regions ();
5430 one_lang_size_sections_pass (relax, check_regions);
5431 }
5432 }
5433 link_info.relro_start = expld.dataseg.base;
5434 link_info.relro_end = expld.dataseg.relro_end;
5435 }
5436 else if (expld.dataseg.phase == exp_dataseg_end_seen)
5437 {
5438 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
5439 a page could be saved in the data segment. */
5440 bfd_vma first, last;
5441
5442 first = -expld.dataseg.base & (expld.dataseg.pagesize - 1);
5443 last = expld.dataseg.end & (expld.dataseg.pagesize - 1);
5444 if (first && last
5445 && ((expld.dataseg.base & ~(expld.dataseg.pagesize - 1))
5446 != (expld.dataseg.end & ~(expld.dataseg.pagesize - 1)))
5447 && first + last <= expld.dataseg.pagesize)
5448 {
5449 expld.dataseg.phase = exp_dataseg_adjust;
5450 lang_reset_memory_regions ();
5451 one_lang_size_sections_pass (relax, check_regions);
5452 }
5453 else
5454 expld.dataseg.phase = exp_dataseg_done;
5455 }
5456 else
5457 expld.dataseg.phase = exp_dataseg_done;
5458}
5459
5460/* Worker function for lang_do_assignments. Recursiveness goes here. */
5461
5462static bfd_vma
5463lang_do_assignments_1 (lang_statement_union_type *s,
5464 lang_output_section_statement_type *current_os,
5465 fill_type *fill,
5466 bfd_vma dot)
5467{
5468 for (; s != NULL; s = s->header.next)
5469 {
5470 switch (s->header.type)
5471 {
5472 case lang_constructors_statement_enum:
5473 dot = lang_do_assignments_1 (constructor_list.head,
5474 current_os, fill, dot);
5475 break;
5476
5477 case lang_output_section_statement_enum:
5478 {
5479 lang_output_section_statement_type *os;
5480
5481 os = &(s->output_section_statement);
5482 if (os->bfd_section != NULL && !os->ignored)
5483 {
5484 dot = os->bfd_section->vma;
5485
5486 lang_do_assignments_1 (os->children.head, os, os->fill, dot);
5487
5488 /* .tbss sections effectively have zero size. */
5489 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
5490 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
5491 || link_info.relocatable)
5492 dot += TO_ADDR (os->bfd_section->size);
5493
5494 if (os->update_dot_tree != NULL)
5495 exp_fold_tree (os->update_dot_tree, bfd_abs_section_ptr, &dot);
5496 }
5497 }
5498 break;
5499
5500 case lang_wild_statement_enum:
5501
5502 dot = lang_do_assignments_1 (s->wild_statement.children.head,
5503 current_os, fill, dot);
5504 break;
5505
5506 case lang_object_symbols_statement_enum:
5507 case lang_output_statement_enum:
5508 case lang_target_statement_enum:
5509 break;
5510
5511 case lang_data_statement_enum:
5512 exp_fold_tree (s->data_statement.exp, bfd_abs_section_ptr, &dot);
5513 if (expld.result.valid_p)
5514 {
5515 s->data_statement.value = expld.result.value;
5516 if (expld.result.section != NULL)
5517 s->data_statement.value += expld.result.section->vma;
5518 }
5519 else
5520 einfo (_("%F%P: invalid data statement\n"));
5521 {
5522 unsigned int size;
5523 switch (s->data_statement.type)
5524 {
5525 default:
5526 abort ();
5527 case QUAD:
5528 case SQUAD:
5529 size = QUAD_SIZE;
5530 break;
5531 case LONG:
5532 size = LONG_SIZE;
5533 break;
5534 case SHORT:
5535 size = SHORT_SIZE;
5536 break;
5537 case BYTE:
5538 size = BYTE_SIZE;
5539 break;
5540 }
5541 if (size < TO_SIZE ((unsigned) 1))
5542 size = TO_SIZE ((unsigned) 1);
5543 dot += TO_ADDR (size);
5544 }
5545 break;
5546
5547 case lang_reloc_statement_enum:
5548 exp_fold_tree (s->reloc_statement.addend_exp,
5549 bfd_abs_section_ptr, &dot);
5550 if (expld.result.valid_p)
5551 s->reloc_statement.addend_value = expld.result.value;
5552 else
5553 einfo (_("%F%P: invalid reloc statement\n"));
5554 dot += TO_ADDR (bfd_get_reloc_size (s->reloc_statement.howto));
5555 break;
5556
5557 case lang_input_section_enum:
5558 {
5559 asection *in = s->input_section.section;
5560
5561 if ((in->flags & SEC_EXCLUDE) == 0)
5562 dot += TO_ADDR (in->size);
5563 }
5564 break;
5565
5566 case lang_input_statement_enum:
5567 break;
5568
5569 case lang_fill_statement_enum:
5570 fill = s->fill_statement.fill;
5571 break;
5572
5573 case lang_assignment_statement_enum:
5574 exp_fold_tree (s->assignment_statement.exp,
5575 current_os->bfd_section,
5576 &dot);
5577 break;
5578
5579 case lang_padding_statement_enum:
5580 dot += TO_ADDR (s->padding_statement.size);
5581 break;
5582
5583 case lang_group_statement_enum:
5584 dot = lang_do_assignments_1 (s->group_statement.children.head,
5585 current_os, fill, dot);
5586 break;
5587
5588 case lang_insert_statement_enum:
5589 break;
5590
5591 case lang_address_statement_enum:
5592 break;
5593
5594 default:
5595 FAIL ();
5596 break;
5597 }
5598 }
5599 return dot;
5600}
5601
5602void
5603lang_do_assignments (void)
5604{
5605 lang_statement_iteration++;
5606 lang_do_assignments_1 (statement_list.head, abs_output_section, NULL, 0);
5607}
5608
5609/* Fix any .startof. or .sizeof. symbols. When the assemblers see the
5610 operator .startof. (section_name), it produces an undefined symbol
5611 .startof.section_name. Similarly, when it sees
5612 .sizeof. (section_name), it produces an undefined symbol
5613 .sizeof.section_name. For all the output sections, we look for
5614 such symbols, and set them to the correct value. */
5615
5616static void
5617lang_set_startof (void)
5618{
5619 asection *s;
5620
5621 if (link_info.relocatable)
5622 return;
5623
5624 for (s = link_info.output_bfd->sections; s != NULL; s = s->next)
5625 {
5626 const char *secname;
5627 char *buf;
5628 struct bfd_link_hash_entry *h;
5629
5630 secname = bfd_get_section_name (link_info.output_bfd, s);
5631 buf = (char *) xmalloc (10 + strlen (secname));
5632
5633 sprintf (buf, ".startof.%s", secname);
5634 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
5635 if (h != NULL && h->type == bfd_link_hash_undefined)
5636 {
5637 h->type = bfd_link_hash_defined;
5638 h->u.def.value = bfd_get_section_vma (link_info.output_bfd, s);
5639 h->u.def.section = bfd_abs_section_ptr;
5640 }
5641
5642 sprintf (buf, ".sizeof.%s", secname);
5643 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
5644 if (h != NULL && h->type == bfd_link_hash_undefined)
5645 {
5646 h->type = bfd_link_hash_defined;
5647 h->u.def.value = TO_ADDR (s->size);
5648 h->u.def.section = bfd_abs_section_ptr;
5649 }
5650
5651 free (buf);
5652 }
5653}
5654
5655static void
5656lang_end (void)
5657{
5658 struct bfd_link_hash_entry *h;
5659 bfd_boolean warn;
5660
5661 if ((link_info.relocatable && !link_info.gc_sections)
5662 || (link_info.shared && !link_info.executable))
5663 warn = entry_from_cmdline;
5664 else
5665 warn = TRUE;
5666
5667 /* Force the user to specify a root when generating a relocatable with
5668 --gc-sections. */
5669 if (link_info.gc_sections && link_info.relocatable
5670 && !(entry_from_cmdline || undef_from_cmdline))
5671 einfo (_("%P%F: gc-sections requires either an entry or "
5672 "an undefined symbol\n"));
5673
5674 if (entry_symbol.name == NULL)
5675 {
5676 /* No entry has been specified. Look for the default entry, but
5677 don't warn if we don't find it. */
5678 entry_symbol.name = entry_symbol_default;
5679 warn = FALSE;
5680 }
5681
5682 h = bfd_link_hash_lookup (link_info.hash, entry_symbol.name,
5683 FALSE, FALSE, TRUE);
5684 if (h != NULL
5685 && (h->type == bfd_link_hash_defined
5686 || h->type == bfd_link_hash_defweak)
5687 && h->u.def.section->output_section != NULL)
5688 {
5689 bfd_vma val;
5690
5691 val = (h->u.def.value
5692 + bfd_get_section_vma (link_info.output_bfd,
5693 h->u.def.section->output_section)
5694 + h->u.def.section->output_offset);
5695 if (! bfd_set_start_address (link_info.output_bfd, val))
5696 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol.name);
5697 }
5698 else
5699 {
5700 bfd_vma val;
5701 const char *send;
5702
5703 /* We couldn't find the entry symbol. Try parsing it as a
5704 number. */
5705 val = bfd_scan_vma (entry_symbol.name, &send, 0);
5706 if (*send == '\0')
5707 {
5708 if (! bfd_set_start_address (link_info.output_bfd, val))
5709 einfo (_("%P%F: can't set start address\n"));
5710 }
5711 else
5712 {
5713 asection *ts;
5714
5715 /* Can't find the entry symbol, and it's not a number. Use
5716 the first address in the text section. */
5717 ts = bfd_get_section_by_name (link_info.output_bfd, entry_section);
5718 if (ts != NULL)
5719 {
5720 if (warn)
5721 einfo (_("%P: warning: cannot find entry symbol %s;"
5722 " defaulting to %V\n"),
5723 entry_symbol.name,
5724 bfd_get_section_vma (link_info.output_bfd, ts));
5725 if (!(bfd_set_start_address
5726 (link_info.output_bfd,
5727 bfd_get_section_vma (link_info.output_bfd, ts))))
5728 einfo (_("%P%F: can't set start address\n"));
5729 }
5730 else
5731 {
5732 if (warn)
5733 einfo (_("%P: warning: cannot find entry symbol %s;"
5734 " not setting start address\n"),
5735 entry_symbol.name);
5736 }
5737 }
5738 }
5739
5740 /* Don't bfd_hash_table_free (&lang_definedness_table);
5741 map file output may result in a call of lang_track_definedness. */
5742}
5743
5744/* This is a small function used when we want to ignore errors from
5745 BFD. */
5746
5747static void
5748ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED, ...)
5749{
5750 /* Don't do anything. */
5751}
5752
5753/* Check that the architecture of all the input files is compatible
5754 with the output file. Also call the backend to let it do any
5755 other checking that is needed. */
5756
5757static void
5758lang_check (void)
5759{
5760 lang_statement_union_type *file;
5761 bfd *input_bfd;
5762 const bfd_arch_info_type *compatible;
5763
5764 for (file = file_chain.head; file != NULL; file = file->input_statement.next)
5765 {
5766#ifdef ENABLE_PLUGINS
5767 /* Don't check format of files claimed by plugin. */
5768 if (file->input_statement.claimed)
5769 continue;
5770#endif /* ENABLE_PLUGINS */
5771 input_bfd = file->input_statement.the_bfd;
5772 compatible
5773 = bfd_arch_get_compatible (input_bfd, link_info.output_bfd,
5774 command_line.accept_unknown_input_arch);
5775
5776 /* In general it is not possible to perform a relocatable
5777 link between differing object formats when the input
5778 file has relocations, because the relocations in the
5779 input format may not have equivalent representations in
5780 the output format (and besides BFD does not translate
5781 relocs for other link purposes than a final link). */
5782 if ((link_info.relocatable || link_info.emitrelocations)
5783 && (compatible == NULL
5784 || (bfd_get_flavour (input_bfd)
5785 != bfd_get_flavour (link_info.output_bfd)))
5786 && (bfd_get_file_flags (input_bfd) & HAS_RELOC) != 0)
5787 {
5788 einfo (_("%P%F: Relocatable linking with relocations from"
5789 " format %s (%B) to format %s (%B) is not supported\n"),
5790 bfd_get_target (input_bfd), input_bfd,
5791 bfd_get_target (link_info.output_bfd), link_info.output_bfd);
5792 /* einfo with %F exits. */
5793 }
5794
5795 if (compatible == NULL)
5796 {
5797 if (command_line.warn_mismatch)
5798 einfo (_("%P%X: %s architecture of input file `%B'"
5799 " is incompatible with %s output\n"),
5800 bfd_printable_name (input_bfd), input_bfd,
5801 bfd_printable_name (link_info.output_bfd));
5802 }
5803 else if (bfd_count_sections (input_bfd))
5804 {
5805 /* If the input bfd has no contents, it shouldn't set the
5806 private data of the output bfd. */
5807
5808 bfd_error_handler_type pfn = NULL;
5809
5810 /* If we aren't supposed to warn about mismatched input
5811 files, temporarily set the BFD error handler to a
5812 function which will do nothing. We still want to call
5813 bfd_merge_private_bfd_data, since it may set up
5814 information which is needed in the output file. */
5815 if (! command_line.warn_mismatch)
5816 pfn = bfd_set_error_handler (ignore_bfd_errors);
5817 if (! bfd_merge_private_bfd_data (input_bfd, link_info.output_bfd))
5818 {
5819 if (command_line.warn_mismatch)
5820 einfo (_("%P%X: failed to merge target specific data"
5821 " of file %B\n"), input_bfd);
5822 }
5823 if (! command_line.warn_mismatch)
5824 bfd_set_error_handler (pfn);
5825 }
5826 }
5827}
5828
5829/* Look through all the global common symbols and attach them to the
5830 correct section. The -sort-common command line switch may be used
5831 to roughly sort the entries by alignment. */
5832
5833static void
5834lang_common (void)
5835{
5836 if (command_line.inhibit_common_definition)
5837 return;
5838 if (link_info.relocatable
5839 && ! command_line.force_common_definition)
5840 return;
5841
5842 if (! config.sort_common)
5843 bfd_link_hash_traverse (link_info.hash, lang_one_common, NULL);
5844 else
5845 {
5846 unsigned int power;
5847
5848 if (config.sort_common == sort_descending)
5849 {
5850 for (power = 4; power > 0; power--)
5851 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5852
5853 power = 0;
5854 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5855 }
5856 else
5857 {
5858 for (power = 0; power <= 4; power++)
5859 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5860
5861 power = UINT_MAX;
5862 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
5863 }
5864 }
5865}
5866
5867/* Place one common symbol in the correct section. */
5868
5869static bfd_boolean
5870lang_one_common (struct bfd_link_hash_entry *h, void *info)
5871{
5872 unsigned int power_of_two;
5873 bfd_vma size;
5874 asection *section;
5875
5876 if (h->type != bfd_link_hash_common)
5877 return TRUE;
5878
5879 size = h->u.c.size;
5880 power_of_two = h->u.c.p->alignment_power;
5881
5882 if (config.sort_common == sort_descending
5883 && power_of_two < *(unsigned int *) info)
5884 return TRUE;
5885 else if (config.sort_common == sort_ascending
5886 && power_of_two > *(unsigned int *) info)
5887 return TRUE;
5888
5889 section = h->u.c.p->section;
5890 if (!bfd_define_common_symbol (link_info.output_bfd, &link_info, h))
5891 einfo (_("%P%F: Could not define common symbol `%T': %E\n"),
5892 h->root.string);
5893
5894 if (config.map_file != NULL)
5895 {
5896 static bfd_boolean header_printed;
5897 int len;
5898 char *name;
5899 char buf[50];
5900
5901 if (! header_printed)
5902 {
5903 minfo (_("\nAllocating common symbols\n"));
5904 minfo (_("Common symbol size file\n\n"));
5905 header_printed = TRUE;
5906 }
5907
5908 name = bfd_demangle (link_info.output_bfd, h->root.string,
5909 DMGL_ANSI | DMGL_PARAMS);
5910 if (name == NULL)
5911 {
5912 minfo ("%s", h->root.string);
5913 len = strlen (h->root.string);
5914 }
5915 else
5916 {
5917 minfo ("%s", name);
5918 len = strlen (name);
5919 free (name);
5920 }
5921
5922 if (len >= 19)
5923 {
5924 print_nl ();
5925 len = 0;
5926 }
5927 while (len < 20)
5928 {
5929 print_space ();
5930 ++len;
5931 }
5932
5933 minfo ("0x");
5934 if (size <= 0xffffffff)
5935 sprintf (buf, "%lx", (unsigned long) size);
5936 else
5937 sprintf_vma (buf, size);
5938 minfo ("%s", buf);
5939 len = strlen (buf);
5940
5941 while (len < 16)
5942 {
5943 print_space ();
5944 ++len;
5945 }
5946
5947 minfo ("%B\n", section->owner);
5948 }
5949
5950 return TRUE;
5951}
5952
5953/* Run through the input files and ensure that every input section has
5954 somewhere to go. If one is found without a destination then create
5955 an input request and place it into the statement tree. */
5956
5957static void
5958lang_place_orphans (void)
5959{
5960 LANG_FOR_EACH_INPUT_STATEMENT (file)
5961 {
5962 asection *s;
5963
5964 for (s = file->the_bfd->sections; s != NULL; s = s->next)
5965 {
5966 if (s->output_section == NULL)
5967 {
5968 /* This section of the file is not attached, root
5969 around for a sensible place for it to go. */
5970
5971 if (file->just_syms_flag)
5972 bfd_link_just_syms (file->the_bfd, s, &link_info);
5973 else if ((s->flags & SEC_EXCLUDE) != 0)
5974 s->output_section = bfd_abs_section_ptr;
5975 else if (strcmp (s->name, "COMMON") == 0)
5976 {
5977 /* This is a lonely common section which must have
5978 come from an archive. We attach to the section
5979 with the wildcard. */
5980 if (! link_info.relocatable
5981 || command_line.force_common_definition)
5982 {
5983 if (default_common_section == NULL)
5984 default_common_section
5985 = lang_output_section_statement_lookup (".bss", 0,
5986 TRUE);
5987 lang_add_section (&default_common_section->children, s,
5988 default_common_section);
5989 }
5990 }
5991 else
5992 {
5993 const char *name = s->name;
5994 int constraint = 0;
5995
5996 if (config.unique_orphan_sections
5997 || unique_section_p (s, NULL))
5998 constraint = SPECIAL;
5999
6000 if (!ldemul_place_orphan (s, name, constraint))
6001 {
6002 lang_output_section_statement_type *os;
6003 os = lang_output_section_statement_lookup (name,
6004 constraint,
6005 TRUE);
6006 if (os->addr_tree == NULL
6007 && (link_info.relocatable
6008 || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0))
6009 os->addr_tree = exp_intop (0);
6010 lang_add_section (&os->children, s, os);
6011 }
6012 }
6013 }
6014 }
6015 }
6016}
6017
6018void
6019lang_set_flags (lang_memory_region_type *ptr, const char *flags, int invert)
6020{
6021 flagword *ptr_flags;
6022
6023 ptr_flags = invert ? &ptr->not_flags : &ptr->flags;
6024 while (*flags)
6025 {
6026 switch (*flags)
6027 {
6028 case 'A': case 'a':
6029 *ptr_flags |= SEC_ALLOC;
6030 break;
6031
6032 case 'R': case 'r':
6033 *ptr_flags |= SEC_READONLY;
6034 break;
6035
6036 case 'W': case 'w':
6037 *ptr_flags |= SEC_DATA;
6038 break;
6039
6040 case 'X': case 'x':
6041 *ptr_flags |= SEC_CODE;
6042 break;
6043
6044 case 'L': case 'l':
6045 case 'I': case 'i':
6046 *ptr_flags |= SEC_LOAD;
6047 break;
6048
6049 default:
6050 einfo (_("%P%F: invalid syntax in flags\n"));
6051 break;
6052 }
6053 flags++;
6054 }
6055}
6056
6057/* Call a function on each input file. This function will be called
6058 on an archive, but not on the elements. */
6059
6060void
6061lang_for_each_input_file (void (*func) (lang_input_statement_type *))
6062{
6063 lang_input_statement_type *f;
6064
6065 for (f = (lang_input_statement_type *) input_file_chain.head;
6066 f != NULL;
6067 f = (lang_input_statement_type *) f->next_real_file)
6068 func (f);
6069}
6070
6071/* Call a function on each file. The function will be called on all
6072 the elements of an archive which are included in the link, but will
6073 not be called on the archive file itself. */
6074
6075void
6076lang_for_each_file (void (*func) (lang_input_statement_type *))
6077{
6078 LANG_FOR_EACH_INPUT_STATEMENT (f)
6079 {
6080 func (f);
6081 }
6082}
6083
6084void
6085ldlang_add_file (lang_input_statement_type *entry)
6086{
6087 lang_statement_append (&file_chain,
6088 (lang_statement_union_type *) entry,
6089 &entry->next);
6090
6091 /* The BFD linker needs to have a list of all input BFDs involved in
6092 a link. */
6093 ASSERT (entry->the_bfd->link_next == NULL);
6094 ASSERT (entry->the_bfd != link_info.output_bfd);
6095
6096 *link_info.input_bfds_tail = entry->the_bfd;
6097 link_info.input_bfds_tail = &entry->the_bfd->link_next;
6098 entry->the_bfd->usrdata = entry;
6099 bfd_set_gp_size (entry->the_bfd, g_switch_value);
6100
6101 /* Look through the sections and check for any which should not be
6102 included in the link. We need to do this now, so that we can
6103 notice when the backend linker tries to report multiple
6104 definition errors for symbols which are in sections we aren't
6105 going to link. FIXME: It might be better to entirely ignore
6106 symbols which are defined in sections which are going to be
6107 discarded. This would require modifying the backend linker for
6108 each backend which might set the SEC_LINK_ONCE flag. If we do
6109 this, we should probably handle SEC_EXCLUDE in the same way. */
6110
6111 bfd_map_over_sections (entry->the_bfd, section_already_linked, entry);
6112}
6113
6114void
6115lang_add_output (const char *name, int from_script)
6116{
6117 /* Make -o on command line override OUTPUT in script. */
6118 if (!had_output_filename || !from_script)
6119 {
6120 output_filename = name;
6121 had_output_filename = TRUE;
6122 }
6123}
6124
6125static lang_output_section_statement_type *current_section;
6126
6127static int
6128topower (int x)
6129{
6130 unsigned int i = 1;
6131 int l;
6132
6133 if (x < 0)
6134 return -1;
6135
6136 for (l = 0; l < 32; l++)
6137 {
6138 if (i >= (unsigned int) x)
6139 return l;
6140 i <<= 1;
6141 }
6142
6143 return 0;
6144}
6145
6146lang_output_section_statement_type *
6147lang_enter_output_section_statement (const char *output_section_statement_name,
6148 etree_type *address_exp,
6149 enum section_type sectype,
6150 etree_type *align,
6151 etree_type *subalign,
6152 etree_type *ebase,
6153 int constraint)
6154{
6155 lang_output_section_statement_type *os;
6156
6157 os = lang_output_section_statement_lookup (output_section_statement_name,
6158 constraint, TRUE);
6159 current_section = os;
6160
6161 if (os->addr_tree == NULL)
6162 {
6163 os->addr_tree = address_exp;
6164 }
6165 os->sectype = sectype;
6166 if (sectype != noload_section)
6167 os->flags = SEC_NO_FLAGS;
6168 else
6169 os->flags = SEC_NEVER_LOAD;
6170 os->block_value = 1;
6171
6172 /* Make next things chain into subchain of this. */
6173 push_stat_ptr (&os->children);
6174
6175 os->subsection_alignment =
6176 topower (exp_get_value_int (subalign, -1, "subsection alignment"));
6177 os->section_alignment =
6178 topower (exp_get_value_int (align, -1, "section alignment"));
6179
6180 os->load_base = ebase;
6181 return os;
6182}
6183
6184void
6185lang_final (void)
6186{
6187 lang_output_statement_type *new_stmt;
6188
6189 new_stmt = new_stat (lang_output_statement, stat_ptr);
6190 new_stmt->name = output_filename;
6191
6192}
6193
6194/* Reset the current counters in the regions. */
6195
6196void
6197lang_reset_memory_regions (void)
6198{
6199 lang_memory_region_type *p = lang_memory_region_list;
6200 asection *o;
6201 lang_output_section_statement_type *os;
6202
6203 for (p = lang_memory_region_list; p != NULL; p = p->next)
6204 {
6205 p->current = p->origin;
6206 p->last_os = NULL;
6207 }
6208
6209 for (os = &lang_output_section_statement.head->output_section_statement;
6210 os != NULL;
6211 os = os->next)
6212 {
6213 os->processed_vma = FALSE;
6214 os->processed_lma = FALSE;
6215 }
6216
6217 for (o = link_info.output_bfd->sections; o != NULL; o = o->next)
6218 {
6219 /* Save the last size for possible use by bfd_relax_section. */
6220 o->rawsize = o->size;
6221 o->size = 0;
6222 }
6223}
6224
6225/* Worker for lang_gc_sections_1. */
6226
6227static void
6228gc_section_callback (lang_wild_statement_type *ptr,
6229 struct wildcard_list *sec ATTRIBUTE_UNUSED,
6230 asection *section,
6231 lang_input_statement_type *file ATTRIBUTE_UNUSED,
6232 void *data ATTRIBUTE_UNUSED)
6233{
6234 /* If the wild pattern was marked KEEP, the member sections
6235 should be as well. */
6236 if (ptr->keep_sections)
6237 section->flags |= SEC_KEEP;
6238}
6239
6240/* Iterate over sections marking them against GC. */
6241
6242static void
6243lang_gc_sections_1 (lang_statement_union_type *s)
6244{
6245 for (; s != NULL; s = s->header.next)
6246 {
6247 switch (s->header.type)
6248 {
6249 case lang_wild_statement_enum:
6250 walk_wild (&s->wild_statement, gc_section_callback, NULL);
6251 break;
6252 case lang_constructors_statement_enum:
6253 lang_gc_sections_1 (constructor_list.head);
6254 break;
6255 case lang_output_section_statement_enum:
6256 lang_gc_sections_1 (s->output_section_statement.children.head);
6257 break;
6258 case lang_group_statement_enum:
6259 lang_gc_sections_1 (s->group_statement.children.head);
6260 break;
6261 default:
6262 break;
6263 }
6264 }
6265}
6266
6267static void
6268lang_gc_sections (void)
6269{
6270 /* Keep all sections so marked in the link script. */
6271
6272 lang_gc_sections_1 (statement_list.head);
6273
6274 /* SEC_EXCLUDE is ignored when doing a relocatable link, except in
6275 the special case of debug info. (See bfd/stabs.c)
6276 Twiddle the flag here, to simplify later linker code. */
6277 if (link_info.relocatable)
6278 {
6279 LANG_FOR_EACH_INPUT_STATEMENT (f)
6280 {
6281 asection *sec;
6282 for (sec = f->the_bfd->sections; sec != NULL; sec = sec->next)
6283 if ((sec->flags & SEC_DEBUGGING) == 0)
6284 sec->flags &= ~SEC_EXCLUDE;
6285 }
6286 }
6287
6288 if (link_info.gc_sections)
6289 bfd_gc_sections (link_info.output_bfd, &link_info);
6290}
6291
6292/* Worker for lang_find_relro_sections_1. */
6293
6294static void
6295find_relro_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
6296 struct wildcard_list *sec ATTRIBUTE_UNUSED,
6297 asection *section,
6298 lang_input_statement_type *file ATTRIBUTE_UNUSED,
6299 void *data)
6300{
6301 /* Discarded, excluded and ignored sections effectively have zero
6302 size. */
6303 if (section->output_section != NULL
6304 && section->output_section->owner == link_info.output_bfd
6305 && (section->output_section->flags & SEC_EXCLUDE) == 0
6306 && !IGNORE_SECTION (section)
6307 && section->size != 0)
6308 {
6309 bfd_boolean *has_relro_section = (bfd_boolean *) data;
6310 *has_relro_section = TRUE;
6311 }
6312}
6313
6314/* Iterate over sections for relro sections. */
6315
6316static void
6317lang_find_relro_sections_1 (lang_statement_union_type *s,
6318 bfd_boolean *has_relro_section)
6319{
6320 if (*has_relro_section)
6321 return;
6322
6323 for (; s != NULL; s = s->header.next)
6324 {
6325 if (s == expld.dataseg.relro_end_stat)
6326 break;
6327
6328 switch (s->header.type)
6329 {
6330 case lang_wild_statement_enum:
6331 walk_wild (&s->wild_statement,
6332 find_relro_section_callback,
6333 has_relro_section);
6334 break;
6335 case lang_constructors_statement_enum:
6336 lang_find_relro_sections_1 (constructor_list.head,
6337 has_relro_section);
6338 break;
6339 case lang_output_section_statement_enum:
6340 lang_find_relro_sections_1 (s->output_section_statement.children.head,
6341 has_relro_section);
6342 break;
6343 case lang_group_statement_enum:
6344 lang_find_relro_sections_1 (s->group_statement.children.head,
6345 has_relro_section);
6346 break;
6347 default:
6348 break;
6349 }
6350 }
6351}
6352
6353static void
6354lang_find_relro_sections (void)
6355{
6356 bfd_boolean has_relro_section = FALSE;
6357
6358 /* Check all sections in the link script. */
6359
6360 lang_find_relro_sections_1 (expld.dataseg.relro_start_stat,
6361 &has_relro_section);
6362
6363 if (!has_relro_section)
6364 link_info.relro = FALSE;
6365}
6366
6367/* Relax all sections until bfd_relax_section gives up. */
6368
6369void
6370lang_relax_sections (bfd_boolean need_layout)
6371{
6372 if (RELAXATION_ENABLED)
6373 {
6374 /* We may need more than one relaxation pass. */
6375 int i = link_info.relax_pass;
6376
6377 /* The backend can use it to determine the current pass. */
6378 link_info.relax_pass = 0;
6379
6380 while (i--)
6381 {
6382 /* Keep relaxing until bfd_relax_section gives up. */
6383 bfd_boolean relax_again;
6384
6385 link_info.relax_trip = -1;
6386 do
6387 {
6388 link_info.relax_trip++;
6389
6390 /* Note: pe-dll.c does something like this also. If you find
6391 you need to change this code, you probably need to change
6392 pe-dll.c also. DJ */
6393
6394 /* Do all the assignments with our current guesses as to
6395 section sizes. */
6396 lang_do_assignments ();
6397
6398 /* We must do this after lang_do_assignments, because it uses
6399 size. */
6400 lang_reset_memory_regions ();
6401
6402 /* Perform another relax pass - this time we know where the
6403 globals are, so can make a better guess. */
6404 relax_again = FALSE;
6405 lang_size_sections (&relax_again, FALSE);
6406 }
6407 while (relax_again);
6408
6409 link_info.relax_pass++;
6410 }
6411 need_layout = TRUE;
6412 }
6413
6414 if (need_layout)
6415 {
6416 /* Final extra sizing to report errors. */
6417 lang_do_assignments ();
6418 lang_reset_memory_regions ();
6419 lang_size_sections (NULL, TRUE);
6420 }
6421}
6422
6423#ifdef ENABLE_PLUGINS
6424/* Find the insert point for the plugin's replacement files. We
6425 place them after the first claimed real object file, or if the
6426 first claimed object is an archive member, after the last real
6427 object file immediately preceding the archive. In the event
6428 no objects have been claimed at all, we return the first dummy
6429 object file on the list as the insert point; that works, but
6430 the callee must be careful when relinking the file_chain as it
6431 is not actually on that chain, only the statement_list and the
6432 input_file list; in that case, the replacement files must be
6433 inserted at the head of the file_chain. */
6434
6435static lang_input_statement_type *
6436find_replacements_insert_point (void)
6437{
6438 lang_input_statement_type *claim1, *lastobject;
6439 lastobject = &input_file_chain.head->input_statement;
6440 for (claim1 = &file_chain.head->input_statement;
6441 claim1 != NULL;
6442 claim1 = &claim1->next->input_statement)
6443 {
6444 if (claim1->claimed)
6445 return claim1->claim_archive ? lastobject : claim1;
6446 /* Update lastobject if this is a real object file. */
6447 if (claim1->the_bfd && (claim1->the_bfd->my_archive == NULL))
6448 lastobject = claim1;
6449 }
6450 /* No files were claimed by the plugin. Choose the last object
6451 file found on the list (maybe the first, dummy entry) as the
6452 insert point. */
6453 return lastobject;
6454}
6455#endif /* ENABLE_PLUGINS */
6456
6457void
6458lang_process (void)
6459{
6460 /* Finalize dynamic list. */
6461 if (link_info.dynamic_list)
6462 lang_finalize_version_expr_head (&link_info.dynamic_list->head);
6463
6464 current_target = default_target;
6465
6466 /* Open the output file. */
6467 lang_for_each_statement (ldlang_open_output);
6468 init_opb ();
6469
6470 ldemul_create_output_section_statements ();
6471
6472 /* Add to the hash table all undefineds on the command line. */
6473 lang_place_undefineds ();
6474
6475 if (!bfd_section_already_linked_table_init ())
6476 einfo (_("%P%F: Failed to create hash table\n"));
6477
6478 /* Create a bfd for each input file. */
6479 current_target = default_target;
6480 open_input_bfds (statement_list.head, OPEN_BFD_NORMAL);
6481
6482#ifdef ENABLE_PLUGINS
6483 if (plugin_active_plugins_p ())
6484 {
6485 lang_statement_list_type added;
6486 lang_statement_list_type files, inputfiles;
6487 /* Now all files are read, let the plugin(s) decide if there
6488 are any more to be added to the link before we call the
6489 emulation's after_open hook. We create a private list of
6490 input statements for this purpose, which we will eventually
6491 insert into the global statment list after the first claimed
6492 file. */
6493 added = *stat_ptr;
6494 /* We need to manipulate all three chains in synchrony. */
6495 files = file_chain;
6496 inputfiles = input_file_chain;
6497 if (plugin_call_all_symbols_read ())
6498 einfo (_("%P%F: %s: plugin reported error after all symbols read\n"),
6499 plugin_error_plugin ());
6500 /* Open any newly added files, updating the file chains. */
6501 open_input_bfds (added.head, OPEN_BFD_NORMAL);
6502 /* Restore the global list pointer now they have all been added. */
6503 lang_list_remove_tail (stat_ptr, &added);
6504 /* And detach the fresh ends of the file lists. */
6505 lang_list_remove_tail (&file_chain, &files);
6506 lang_list_remove_tail (&input_file_chain, &inputfiles);
6507 /* Were any new files added? */
6508 if (added.head != NULL)
6509 {
6510 /* If so, we will insert them into the statement list immediately
6511 after the first input file that was claimed by the plugin. */
6512 lang_input_statement_type *claim1 = find_replacements_insert_point ();
6513 /* If a plugin adds input files without having claimed any, we
6514 don't really have a good idea where to place them. Just putting
6515 them at the start or end of the list is liable to leave them
6516 outside the crtbegin...crtend range. */
6517 ASSERT (claim1 != NULL);
6518 /* Splice the new statement list into the old one after claim1. */
6519 lang_list_insert_after (stat_ptr, &added, &claim1->header.next);
6520 /* Likewise for the file chains. */
6521 lang_list_insert_after (&input_file_chain, &inputfiles,
6522 &claim1->next_real_file);
6523 /* We must be careful when relinking file_chain; we may need to
6524 insert the new files at the head of the list if the insert
6525 point chosen is the dummy first input file. */
6526 if (claim1->filename)
6527 lang_list_insert_after (&file_chain, &files, &claim1->next);
6528 else
6529 lang_list_insert_after (&file_chain, &files, &file_chain.head);
6530 }
6531 /* Rescan any archives in case new undefined symbols have appeared. */
6532 open_input_bfds (statement_list.head, OPEN_BFD_RESCAN);
6533 }
6534#endif /* ENABLE_PLUGINS */
6535
6536 link_info.gc_sym_list = &entry_symbol;
6537 if (entry_symbol.name == NULL)
6538 link_info.gc_sym_list = ldlang_undef_chain_list_head;
6539
6540 ldemul_after_open ();
6541
6542 bfd_section_already_linked_table_free ();
6543
6544 /* Make sure that we're not mixing architectures. We call this
6545 after all the input files have been opened, but before we do any
6546 other processing, so that any operations merge_private_bfd_data
6547 does on the output file will be known during the rest of the
6548 link. */
6549 lang_check ();
6550
6551 /* Handle .exports instead of a version script if we're told to do so. */
6552 if (command_line.version_exports_section)
6553 lang_do_version_exports_section ();
6554
6555 /* Build all sets based on the information gathered from the input
6556 files. */
6557 ldctor_build_sets ();
6558
6559 /* Remove unreferenced sections if asked to. */
6560 lang_gc_sections ();
6561
6562 /* Size up the common data. */
6563 lang_common ();
6564
6565 /* Update wild statements. */
6566 update_wild_statements (statement_list.head);
6567
6568 /* Run through the contours of the script and attach input sections
6569 to the correct output sections. */
6570 lang_statement_iteration++;
6571 map_input_to_output_sections (statement_list.head, NULL, NULL);
6572
6573 process_insert_statements ();
6574
6575 /* Find any sections not attached explicitly and handle them. */
6576 lang_place_orphans ();
6577
6578 if (! link_info.relocatable)
6579 {
6580 asection *found;
6581
6582 /* Merge SEC_MERGE sections. This has to be done after GC of
6583 sections, so that GCed sections are not merged, but before
6584 assigning dynamic symbols, since removing whole input sections
6585 is hard then. */
6586 bfd_merge_sections (link_info.output_bfd, &link_info);
6587
6588 /* Look for a text section and set the readonly attribute in it. */
6589 found = bfd_get_section_by_name (link_info.output_bfd, ".text");
6590
6591 if (found != NULL)
6592 {
6593 if (config.text_read_only)
6594 found->flags |= SEC_READONLY;
6595 else
6596 found->flags &= ~SEC_READONLY;
6597 }
6598 }
6599
6600 /* Do anything special before sizing sections. This is where ELF
6601 and other back-ends size dynamic sections. */
6602 ldemul_before_allocation ();
6603
6604 /* We must record the program headers before we try to fix the
6605 section positions, since they will affect SIZEOF_HEADERS. */
6606 lang_record_phdrs ();
6607
6608 /* Check relro sections. */
6609 if (link_info.relro && ! link_info.relocatable)
6610 lang_find_relro_sections ();
6611
6612 /* Size up the sections. */
6613 lang_size_sections (NULL, ! RELAXATION_ENABLED);
6614
6615 /* See if anything special should be done now we know how big
6616 everything is. This is where relaxation is done. */
6617 ldemul_after_allocation ();
6618
6619 /* Fix any .startof. or .sizeof. symbols. */
6620 lang_set_startof ();
6621
6622 /* Do all the assignments, now that we know the final resting places
6623 of all the symbols. */
6624 expld.phase = lang_final_phase_enum;
6625 lang_do_assignments ();
6626
6627 ldemul_finish ();
6628
6629 /* Make sure that the section addresses make sense. */
6630 if (command_line.check_section_addresses)
6631 lang_check_section_addresses ();
6632
6633 lang_end ();
6634}
6635
6636/* EXPORTED TO YACC */
6637
6638void
6639lang_add_wild (struct wildcard_spec *filespec,
6640 struct wildcard_list *section_list,
6641 bfd_boolean keep_sections)
6642{
6643 struct wildcard_list *curr, *next;
6644 lang_wild_statement_type *new_stmt;
6645
6646 /* Reverse the list as the parser puts it back to front. */
6647 for (curr = section_list, section_list = NULL;
6648 curr != NULL;
6649 section_list = curr, curr = next)
6650 {
6651 if (curr->spec.name != NULL && strcmp (curr->spec.name, "COMMON") == 0)
6652 placed_commons = TRUE;
6653
6654 next = curr->next;
6655 curr->next = section_list;
6656 }
6657
6658 if (filespec != NULL && filespec->name != NULL)
6659 {
6660 if (strcmp (filespec->name, "*") == 0)
6661 filespec->name = NULL;
6662 else if (! wildcardp (filespec->name))
6663 lang_has_input_file = TRUE;
6664 }
6665
6666 new_stmt = new_stat (lang_wild_statement, stat_ptr);
6667 new_stmt->filename = NULL;
6668 new_stmt->filenames_sorted = FALSE;
6669 if (filespec != NULL)
6670 {
6671 new_stmt->filename = filespec->name;
6672 new_stmt->filenames_sorted = filespec->sorted == by_name;
6673 }
6674 new_stmt->section_list = section_list;
6675 new_stmt->keep_sections = keep_sections;
6676 lang_list_init (&new_stmt->children);
6677 analyze_walk_wild_section_handler (new_stmt);
6678}
6679
6680void
6681lang_section_start (const char *name, etree_type *address,
6682 const segment_type *segment)
6683{
6684 lang_address_statement_type *ad;
6685
6686 ad = new_stat (lang_address_statement, stat_ptr);
6687 ad->section_name = name;
6688 ad->address = address;
6689 ad->segment = segment;
6690}
6691
6692/* Set the start symbol to NAME. CMDLINE is nonzero if this is called
6693 because of a -e argument on the command line, or zero if this is
6694 called by ENTRY in a linker script. Command line arguments take
6695 precedence. */
6696
6697void
6698lang_add_entry (const char *name, bfd_boolean cmdline)
6699{
6700 if (entry_symbol.name == NULL
6701 || cmdline
6702 || ! entry_from_cmdline)
6703 {
6704 entry_symbol.name = name;
6705 entry_from_cmdline = cmdline;
6706 }
6707}
6708
6709/* Set the default start symbol to NAME. .em files should use this,
6710 not lang_add_entry, to override the use of "start" if neither the
6711 linker script nor the command line specifies an entry point. NAME
6712 must be permanently allocated. */
6713void
6714lang_default_entry (const char *name)
6715{
6716 entry_symbol_default = name;
6717}
6718
6719void
6720lang_add_target (const char *name)
6721{
6722 lang_target_statement_type *new_stmt;
6723
6724 new_stmt = new_stat (lang_target_statement, stat_ptr);
6725 new_stmt->target = name;
6726}
6727
6728void
6729lang_add_map (const char *name)
6730{
6731 while (*name)
6732 {
6733 switch (*name)
6734 {
6735 case 'F':
6736 map_option_f = TRUE;
6737 break;
6738 }
6739 name++;
6740 }
6741}
6742
6743void
6744lang_add_fill (fill_type *fill)
6745{
6746 lang_fill_statement_type *new_stmt;
6747
6748 new_stmt = new_stat (lang_fill_statement, stat_ptr);
6749 new_stmt->fill = fill;
6750}
6751
6752void
6753lang_add_data (int type, union etree_union *exp)
6754{
6755 lang_data_statement_type *new_stmt;
6756
6757 new_stmt = new_stat (lang_data_statement, stat_ptr);
6758 new_stmt->exp = exp;
6759 new_stmt->type = type;
6760}
6761
6762/* Create a new reloc statement. RELOC is the BFD relocation type to
6763 generate. HOWTO is the corresponding howto structure (we could
6764 look this up, but the caller has already done so). SECTION is the
6765 section to generate a reloc against, or NAME is the name of the
6766 symbol to generate a reloc against. Exactly one of SECTION and
6767 NAME must be NULL. ADDEND is an expression for the addend. */
6768
6769void
6770lang_add_reloc (bfd_reloc_code_real_type reloc,
6771 reloc_howto_type *howto,
6772 asection *section,
6773 const char *name,
6774 union etree_union *addend)
6775{
6776 lang_reloc_statement_type *p = new_stat (lang_reloc_statement, stat_ptr);
6777
6778 p->reloc = reloc;
6779 p->howto = howto;
6780 p->section = section;
6781 p->name = name;
6782 p->addend_exp = addend;
6783
6784 p->addend_value = 0;
6785 p->output_section = NULL;
6786 p->output_offset = 0;
6787}
6788
6789lang_assignment_statement_type *
6790lang_add_assignment (etree_type *exp)
6791{
6792 lang_assignment_statement_type *new_stmt;
6793
6794 new_stmt = new_stat (lang_assignment_statement, stat_ptr);
6795 new_stmt->exp = exp;
6796 return new_stmt;
6797}
6798
6799void
6800lang_add_attribute (enum statement_enum attribute)
6801{
6802 new_statement (attribute, sizeof (lang_statement_header_type), stat_ptr);
6803}
6804
6805void
6806lang_startup (const char *name)
6807{
6808 if (first_file->filename != NULL)
6809 {
6810 einfo (_("%P%F: multiple STARTUP files\n"));
6811 }
6812 first_file->filename = name;
6813 first_file->local_sym_name = name;
6814 first_file->real = TRUE;
6815}
6816
6817void
6818lang_float (bfd_boolean maybe)
6819{
6820 lang_float_flag = maybe;
6821}
6822
6823
6824/* Work out the load- and run-time regions from a script statement, and
6825 store them in *LMA_REGION and *REGION respectively.
6826
6827 MEMSPEC is the name of the run-time region, or the value of
6828 DEFAULT_MEMORY_REGION if the statement didn't specify one.
6829 LMA_MEMSPEC is the name of the load-time region, or null if the
6830 statement didn't specify one.HAVE_LMA_P is TRUE if the statement
6831 had an explicit load address.
6832
6833 It is an error to specify both a load region and a load address. */
6834
6835static void
6836lang_get_regions (lang_memory_region_type **region,
6837 lang_memory_region_type **lma_region,
6838 const char *memspec,
6839 const char *lma_memspec,
6840 bfd_boolean have_lma,
6841 bfd_boolean have_vma)
6842{
6843 *lma_region = lang_memory_region_lookup (lma_memspec, FALSE);
6844
6845 /* If no runtime region or VMA has been specified, but the load region
6846 has been specified, then use the load region for the runtime region
6847 as well. */
6848 if (lma_memspec != NULL
6849 && ! have_vma
6850 && strcmp (memspec, DEFAULT_MEMORY_REGION) == 0)
6851 *region = *lma_region;
6852 else
6853 *region = lang_memory_region_lookup (memspec, FALSE);
6854
6855 if (have_lma && lma_memspec != 0)
6856 einfo (_("%X%P:%S: section has both a load address and a load region\n"));
6857}
6858
6859void
6860lang_leave_output_section_statement (fill_type *fill, const char *memspec,
6861 lang_output_section_phdr_list *phdrs,
6862 const char *lma_memspec)
6863{
6864 lang_get_regions (&current_section->region,
6865 &current_section->lma_region,
6866 memspec, lma_memspec,
6867 current_section->load_base != NULL,
6868 current_section->addr_tree != NULL);
6869
6870 /* If this section has no load region or base, but has the same
6871 region as the previous section, then propagate the previous
6872 section's load region. */
6873
6874 if (!current_section->lma_region && !current_section->load_base
6875 && current_section->region == current_section->prev->region)
6876 current_section->lma_region = current_section->prev->lma_region;
6877
6878 current_section->fill = fill;
6879 current_section->phdrs = phdrs;
6880 pop_stat_ptr ();
6881}
6882
6883/* Create an absolute symbol with the given name with the value of the
6884 address of first byte of the section named.
6885
6886 If the symbol already exists, then do nothing. */
6887
6888void
6889lang_abs_symbol_at_beginning_of (const char *secname, const char *name)
6890{
6891 struct bfd_link_hash_entry *h;
6892
6893 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
6894 if (h == NULL)
6895 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
6896
6897 if (h->type == bfd_link_hash_new
6898 || h->type == bfd_link_hash_undefined)
6899 {
6900 asection *sec;
6901
6902 h->type = bfd_link_hash_defined;
6903
6904 sec = bfd_get_section_by_name (link_info.output_bfd, secname);
6905 if (sec == NULL)
6906 h->u.def.value = 0;
6907 else
6908 h->u.def.value = bfd_get_section_vma (link_info.output_bfd, sec);
6909
6910 h->u.def.section = bfd_abs_section_ptr;
6911 }
6912}
6913
6914/* Create an absolute symbol with the given name with the value of the
6915 address of the first byte after the end of the section named.
6916
6917 If the symbol already exists, then do nothing. */
6918
6919void
6920lang_abs_symbol_at_end_of (const char *secname, const char *name)
6921{
6922 struct bfd_link_hash_entry *h;
6923
6924 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
6925 if (h == NULL)
6926 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
6927
6928 if (h->type == bfd_link_hash_new
6929 || h->type == bfd_link_hash_undefined)
6930 {
6931 asection *sec;
6932
6933 h->type = bfd_link_hash_defined;
6934
6935 sec = bfd_get_section_by_name (link_info.output_bfd, secname);
6936 if (sec == NULL)
6937 h->u.def.value = 0;
6938 else
6939 h->u.def.value = (bfd_get_section_vma (link_info.output_bfd, sec)
6940 + TO_ADDR (sec->size));
6941
6942 h->u.def.section = bfd_abs_section_ptr;
6943 }
6944}
6945
6946void
6947lang_statement_append (lang_statement_list_type *list,
6948 lang_statement_union_type *element,
6949 lang_statement_union_type **field)
6950{
6951 *(list->tail) = element;
6952 list->tail = field;
6953}
6954
6955#ifdef ENABLE_PLUGINS
6956/* Insert SRCLIST into DESTLIST after given element by chaining
6957 on FIELD as the next-pointer. (Counterintuitively does not need
6958 a pointer to the actual after-node itself, just its chain field.) */
6959
6960static void
6961lang_list_insert_after (lang_statement_list_type *destlist,
6962 lang_statement_list_type *srclist,
6963 lang_statement_union_type **field)
6964{
6965 *(srclist->tail) = *field;
6966 *field = srclist->head;
6967 if (destlist->tail == field)
6968 destlist->tail = srclist->tail;
6969}
6970
6971/* Detach new nodes added to DESTLIST since the time ORIGLIST
6972 was taken as a copy of it and leave them in ORIGLIST. */
6973
6974static void
6975lang_list_remove_tail (lang_statement_list_type *destlist,
6976 lang_statement_list_type *origlist)
6977{
6978 union lang_statement_union **savetail;
6979 /* Check that ORIGLIST really is an earlier state of DESTLIST. */
6980 ASSERT (origlist->head == destlist->head);
6981 savetail = origlist->tail;
6982 origlist->head = *(savetail);
6983 origlist->tail = destlist->tail;
6984 destlist->tail = savetail;
6985 *savetail = NULL;
6986}
6987#endif /* ENABLE_PLUGINS */
6988
6989/* Set the output format type. -oformat overrides scripts. */
6990
6991void
6992lang_add_output_format (const char *format,
6993 const char *big,
6994 const char *little,
6995 int from_script)
6996{
6997 if (output_target == NULL || !from_script)
6998 {
6999 if (command_line.endian == ENDIAN_BIG
7000 && big != NULL)
7001 format = big;
7002 else if (command_line.endian == ENDIAN_LITTLE
7003 && little != NULL)
7004 format = little;
7005
7006 output_target = format;
7007 }
7008}
7009
7010void
7011lang_add_insert (const char *where, int is_before)
7012{
7013 lang_insert_statement_type *new_stmt;
7014
7015 new_stmt = new_stat (lang_insert_statement, stat_ptr);
7016 new_stmt->where = where;
7017 new_stmt->is_before = is_before;
7018 saved_script_handle = previous_script_handle;
7019}
7020
7021/* Enter a group. This creates a new lang_group_statement, and sets
7022 stat_ptr to build new statements within the group. */
7023
7024void
7025lang_enter_group (void)
7026{
7027 lang_group_statement_type *g;
7028
7029 g = new_stat (lang_group_statement, stat_ptr);
7030 lang_list_init (&g->children);
7031 push_stat_ptr (&g->children);
7032}
7033
7034/* Leave a group. This just resets stat_ptr to start writing to the
7035 regular list of statements again. Note that this will not work if
7036 groups can occur inside anything else which can adjust stat_ptr,
7037 but currently they can't. */
7038
7039void
7040lang_leave_group (void)
7041{
7042 pop_stat_ptr ();
7043}
7044
7045/* Add a new program header. This is called for each entry in a PHDRS
7046 command in a linker script. */
7047
7048void
7049lang_new_phdr (const char *name,
7050 etree_type *type,
7051 bfd_boolean filehdr,
7052 bfd_boolean phdrs,
7053 etree_type *at,
7054 etree_type *flags)
7055{
7056 struct lang_phdr *n, **pp;
7057 bfd_boolean hdrs;
7058
7059 n = (struct lang_phdr *) stat_alloc (sizeof (struct lang_phdr));
7060 n->next = NULL;
7061 n->name = name;
7062 n->type = exp_get_value_int (type, 0, "program header type");
7063 n->filehdr = filehdr;
7064 n->phdrs = phdrs;
7065 n->at = at;
7066 n->flags = flags;
7067
7068 hdrs = n->type == 1 && (phdrs || filehdr);
7069
7070 for (pp = &lang_phdr_list; *pp != NULL; pp = &(*pp)->next)
7071 if (hdrs
7072 && (*pp)->type == 1
7073 && !((*pp)->filehdr || (*pp)->phdrs))
7074 {
7075 einfo (_("%X%P:%S: PHDRS and FILEHDR are not supported when prior PT_LOAD headers lack them\n"));
7076 hdrs = FALSE;
7077 }
7078
7079 *pp = n;
7080}
7081
7082/* Record the program header information in the output BFD. FIXME: We
7083 should not be calling an ELF specific function here. */
7084
7085static void
7086lang_record_phdrs (void)
7087{
7088 unsigned int alc;
7089 asection **secs;
7090 lang_output_section_phdr_list *last;
7091 struct lang_phdr *l;
7092 lang_output_section_statement_type *os;
7093
7094 alc = 10;
7095 secs = (asection **) xmalloc (alc * sizeof (asection *));
7096 last = NULL;
7097
7098 for (l = lang_phdr_list; l != NULL; l = l->next)
7099 {
7100 unsigned int c;
7101 flagword flags;
7102 bfd_vma at;
7103
7104 c = 0;
7105 for (os = &lang_output_section_statement.head->output_section_statement;
7106 os != NULL;
7107 os = os->next)
7108 {
7109 lang_output_section_phdr_list *pl;
7110
7111 if (os->constraint < 0)
7112 continue;
7113
7114 pl = os->phdrs;
7115 if (pl != NULL)
7116 last = pl;
7117 else
7118 {
7119 if (os->sectype == noload_section
7120 || os->bfd_section == NULL
7121 || (os->bfd_section->flags & SEC_ALLOC) == 0)
7122 continue;
7123
7124 /* Don't add orphans to PT_INTERP header. */
7125 if (l->type == 3)
7126 continue;
7127
7128 if (last == NULL)
7129 {
7130 lang_output_section_statement_type * tmp_os;
7131
7132 /* If we have not run across a section with a program
7133 header assigned to it yet, then scan forwards to find
7134 one. This prevents inconsistencies in the linker's
7135 behaviour when a script has specified just a single
7136 header and there are sections in that script which are
7137 not assigned to it, and which occur before the first
7138 use of that header. See here for more details:
7139 http://sourceware.org/ml/binutils/2007-02/msg00291.html */
7140 for (tmp_os = os; tmp_os; tmp_os = tmp_os->next)
7141 if (tmp_os->phdrs)
7142 {
7143 last = tmp_os->phdrs;
7144 break;
7145 }
7146 if (last == NULL)
7147 einfo (_("%F%P: no sections assigned to phdrs\n"));
7148 }
7149 pl = last;
7150 }
7151
7152 if (os->bfd_section == NULL)
7153 continue;
7154
7155 for (; pl != NULL; pl = pl->next)
7156 {
7157 if (strcmp (pl->name, l->name) == 0)
7158 {
7159 if (c >= alc)
7160 {
7161 alc *= 2;
7162 secs = (asection **) xrealloc (secs,
7163 alc * sizeof (asection *));
7164 }
7165 secs[c] = os->bfd_section;
7166 ++c;
7167 pl->used = TRUE;
7168 }
7169 }
7170 }
7171
7172 if (l->flags == NULL)
7173 flags = 0;
7174 else
7175 flags = exp_get_vma (l->flags, 0, "phdr flags");
7176
7177 if (l->at == NULL)
7178 at = 0;
7179 else
7180 at = exp_get_vma (l->at, 0, "phdr load address");
7181
7182 if (! bfd_record_phdr (link_info.output_bfd, l->type,
7183 l->flags != NULL, flags, l->at != NULL,
7184 at, l->filehdr, l->phdrs, c, secs))
7185 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
7186 }
7187
7188 free (secs);
7189
7190 /* Make sure all the phdr assignments succeeded. */
7191 for (os = &lang_output_section_statement.head->output_section_statement;
7192 os != NULL;
7193 os = os->next)
7194 {
7195 lang_output_section_phdr_list *pl;
7196
7197 if (os->constraint < 0
7198 || os->bfd_section == NULL)
7199 continue;
7200
7201 for (pl = os->phdrs;
7202 pl != NULL;
7203 pl = pl->next)
7204 if (! pl->used && strcmp (pl->name, "NONE") != 0)
7205 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
7206 os->name, pl->name);
7207 }
7208}
7209
7210/* Record a list of sections which may not be cross referenced. */
7211
7212void
7213lang_add_nocrossref (lang_nocrossref_type *l)
7214{
7215 struct lang_nocrossrefs *n;
7216
7217 n = (struct lang_nocrossrefs *) xmalloc (sizeof *n);
7218 n->next = nocrossref_list;
7219 n->list = l;
7220 nocrossref_list = n;
7221
7222 /* Set notice_all so that we get informed about all symbols. */
7223 link_info.notice_all = TRUE;
7224}
7225\f
7226/* Overlay handling. We handle overlays with some static variables. */
7227
7228/* The overlay virtual address. */
7229static etree_type *overlay_vma;
7230/* And subsection alignment. */
7231static etree_type *overlay_subalign;
7232
7233/* An expression for the maximum section size seen so far. */
7234static etree_type *overlay_max;
7235
7236/* A list of all the sections in this overlay. */
7237
7238struct overlay_list {
7239 struct overlay_list *next;
7240 lang_output_section_statement_type *os;
7241};
7242
7243static struct overlay_list *overlay_list;
7244
7245/* Start handling an overlay. */
7246
7247void
7248lang_enter_overlay (etree_type *vma_expr, etree_type *subalign)
7249{
7250 /* The grammar should prevent nested overlays from occurring. */
7251 ASSERT (overlay_vma == NULL
7252 && overlay_subalign == NULL
7253 && overlay_max == NULL);
7254
7255 overlay_vma = vma_expr;
7256 overlay_subalign = subalign;
7257}
7258
7259/* Start a section in an overlay. We handle this by calling
7260 lang_enter_output_section_statement with the correct VMA.
7261 lang_leave_overlay sets up the LMA and memory regions. */
7262
7263void
7264lang_enter_overlay_section (const char *name)
7265{
7266 struct overlay_list *n;
7267 etree_type *size;
7268
7269 lang_enter_output_section_statement (name, overlay_vma, overlay_section,
7270 0, overlay_subalign, 0, 0);
7271
7272 /* If this is the first section, then base the VMA of future
7273 sections on this one. This will work correctly even if `.' is
7274 used in the addresses. */
7275 if (overlay_list == NULL)
7276 overlay_vma = exp_nameop (ADDR, name);
7277
7278 /* Remember the section. */
7279 n = (struct overlay_list *) xmalloc (sizeof *n);
7280 n->os = current_section;
7281 n->next = overlay_list;
7282 overlay_list = n;
7283
7284 size = exp_nameop (SIZEOF, name);
7285
7286 /* Arrange to work out the maximum section end address. */
7287 if (overlay_max == NULL)
7288 overlay_max = size;
7289 else
7290 overlay_max = exp_binop (MAX_K, overlay_max, size);
7291}
7292
7293/* Finish a section in an overlay. There isn't any special to do
7294 here. */
7295
7296void
7297lang_leave_overlay_section (fill_type *fill,
7298 lang_output_section_phdr_list *phdrs)
7299{
7300 const char *name;
7301 char *clean, *s2;
7302 const char *s1;
7303 char *buf;
7304
7305 name = current_section->name;
7306
7307 /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory
7308 region and that no load-time region has been specified. It doesn't
7309 really matter what we say here, since lang_leave_overlay will
7310 override it. */
7311 lang_leave_output_section_statement (fill, DEFAULT_MEMORY_REGION, phdrs, 0);
7312
7313 /* Define the magic symbols. */
7314
7315 clean = (char *) xmalloc (strlen (name) + 1);
7316 s2 = clean;
7317 for (s1 = name; *s1 != '\0'; s1++)
7318 if (ISALNUM (*s1) || *s1 == '_')
7319 *s2++ = *s1;
7320 *s2 = '\0';
7321
7322 buf = (char *) xmalloc (strlen (clean) + sizeof "__load_start_");
7323 sprintf (buf, "__load_start_%s", clean);
7324 lang_add_assignment (exp_provide (buf,
7325 exp_nameop (LOADADDR, name),
7326 FALSE));
7327
7328 buf = (char *) xmalloc (strlen (clean) + sizeof "__load_stop_");
7329 sprintf (buf, "__load_stop_%s", clean);
7330 lang_add_assignment (exp_provide (buf,
7331 exp_binop ('+',
7332 exp_nameop (LOADADDR, name),
7333 exp_nameop (SIZEOF, name)),
7334 FALSE));
7335
7336 free (clean);
7337}
7338
7339/* Finish an overlay. If there are any overlay wide settings, this
7340 looks through all the sections in the overlay and sets them. */
7341
7342void
7343lang_leave_overlay (etree_type *lma_expr,
7344 int nocrossrefs,
7345 fill_type *fill,
7346 const char *memspec,
7347 lang_output_section_phdr_list *phdrs,
7348 const char *lma_memspec)
7349{
7350 lang_memory_region_type *region;
7351 lang_memory_region_type *lma_region;
7352 struct overlay_list *l;
7353 lang_nocrossref_type *nocrossref;
7354
7355 lang_get_regions (&region, &lma_region,
7356 memspec, lma_memspec,
7357 lma_expr != NULL, FALSE);
7358
7359 nocrossref = NULL;
7360
7361 /* After setting the size of the last section, set '.' to end of the
7362 overlay region. */
7363 if (overlay_list != NULL)
7364 overlay_list->os->update_dot_tree
7365 = exp_assign (".", exp_binop ('+', overlay_vma, overlay_max));
7366
7367 l = overlay_list;
7368 while (l != NULL)
7369 {
7370 struct overlay_list *next;
7371
7372 if (fill != NULL && l->os->fill == NULL)
7373 l->os->fill = fill;
7374
7375 l->os->region = region;
7376 l->os->lma_region = lma_region;
7377
7378 /* The first section has the load address specified in the
7379 OVERLAY statement. The rest are worked out from that.
7380 The base address is not needed (and should be null) if
7381 an LMA region was specified. */
7382 if (l->next == 0)
7383 {
7384 l->os->load_base = lma_expr;
7385 l->os->sectype = normal_section;
7386 }
7387 if (phdrs != NULL && l->os->phdrs == NULL)
7388 l->os->phdrs = phdrs;
7389
7390 if (nocrossrefs)
7391 {
7392 lang_nocrossref_type *nc;
7393
7394 nc = (lang_nocrossref_type *) xmalloc (sizeof *nc);
7395 nc->name = l->os->name;
7396 nc->next = nocrossref;
7397 nocrossref = nc;
7398 }
7399
7400 next = l->next;
7401 free (l);
7402 l = next;
7403 }
7404
7405 if (nocrossref != NULL)
7406 lang_add_nocrossref (nocrossref);
7407
7408 overlay_vma = NULL;
7409 overlay_list = NULL;
7410 overlay_max = NULL;
7411}
7412\f
7413/* Version handling. This is only useful for ELF. */
7414
7415/* This global variable holds the version tree that we build. */
7416
7417struct bfd_elf_version_tree *lang_elf_version_info;
7418
7419/* If PREV is NULL, return first version pattern matching particular symbol.
7420 If PREV is non-NULL, return first version pattern matching particular
7421 symbol after PREV (previously returned by lang_vers_match). */
7422
7423static struct bfd_elf_version_expr *
7424lang_vers_match (struct bfd_elf_version_expr_head *head,
7425 struct bfd_elf_version_expr *prev,
7426 const char *sym)
7427{
7428 const char *c_sym;
7429 const char *cxx_sym = sym;
7430 const char *java_sym = sym;
7431 struct bfd_elf_version_expr *expr = NULL;
7432 enum demangling_styles curr_style;
7433
7434 curr_style = CURRENT_DEMANGLING_STYLE;
7435 cplus_demangle_set_style (no_demangling);
7436 c_sym = bfd_demangle (link_info.output_bfd, sym, DMGL_NO_OPTS);
7437 if (!c_sym)
7438 c_sym = sym;
7439 cplus_demangle_set_style (curr_style);
7440
7441 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
7442 {
7443 cxx_sym = bfd_demangle (link_info.output_bfd, sym,
7444 DMGL_PARAMS | DMGL_ANSI);
7445 if (!cxx_sym)
7446 cxx_sym = sym;
7447 }
7448 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
7449 {
7450 java_sym = bfd_demangle (link_info.output_bfd, sym, DMGL_JAVA);
7451 if (!java_sym)
7452 java_sym = sym;
7453 }
7454
7455 if (head->htab && (prev == NULL || prev->literal))
7456 {
7457 struct bfd_elf_version_expr e;
7458
7459 switch (prev ? prev->mask : 0)
7460 {
7461 case 0:
7462 if (head->mask & BFD_ELF_VERSION_C_TYPE)
7463 {
7464 e.pattern = c_sym;
7465 expr = (struct bfd_elf_version_expr *)
7466 htab_find ((htab_t) head->htab, &e);
7467 while (expr && strcmp (expr->pattern, c_sym) == 0)
7468 if (expr->mask == BFD_ELF_VERSION_C_TYPE)
7469 goto out_ret;
7470 else
7471 expr = expr->next;
7472 }
7473 /* Fallthrough */
7474 case BFD_ELF_VERSION_C_TYPE:
7475 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
7476 {
7477 e.pattern = cxx_sym;
7478 expr = (struct bfd_elf_version_expr *)
7479 htab_find ((htab_t) head->htab, &e);
7480 while (expr && strcmp (expr->pattern, cxx_sym) == 0)
7481 if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
7482 goto out_ret;
7483 else
7484 expr = expr->next;
7485 }
7486 /* Fallthrough */
7487 case BFD_ELF_VERSION_CXX_TYPE:
7488 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
7489 {
7490 e.pattern = java_sym;
7491 expr = (struct bfd_elf_version_expr *)
7492 htab_find ((htab_t) head->htab, &e);
7493 while (expr && strcmp (expr->pattern, java_sym) == 0)
7494 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
7495 goto out_ret;
7496 else
7497 expr = expr->next;
7498 }
7499 /* Fallthrough */
7500 default:
7501 break;
7502 }
7503 }
7504
7505 /* Finally, try the wildcards. */
7506 if (prev == NULL || prev->literal)
7507 expr = head->remaining;
7508 else
7509 expr = prev->next;
7510 for (; expr; expr = expr->next)
7511 {
7512 const char *s;
7513
7514 if (!expr->pattern)
7515 continue;
7516
7517 if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
7518 break;
7519
7520 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
7521 s = java_sym;
7522 else if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
7523 s = cxx_sym;
7524 else
7525 s = c_sym;
7526 if (fnmatch (expr->pattern, s, 0) == 0)
7527 break;
7528 }
7529
7530 out_ret:
7531 if (c_sym != sym)
7532 free ((char *) c_sym);
7533 if (cxx_sym != sym)
7534 free ((char *) cxx_sym);
7535 if (java_sym != sym)
7536 free ((char *) java_sym);
7537 return expr;
7538}
7539
7540/* Return NULL if the PATTERN argument is a glob pattern, otherwise,
7541 return a pointer to the symbol name with any backslash quotes removed. */
7542
7543static const char *
7544realsymbol (const char *pattern)
7545{
7546 const char *p;
7547 bfd_boolean changed = FALSE, backslash = FALSE;
7548 char *s, *symbol = (char *) xmalloc (strlen (pattern) + 1);
7549
7550 for (p = pattern, s = symbol; *p != '\0'; ++p)
7551 {
7552 /* It is a glob pattern only if there is no preceding
7553 backslash. */
7554 if (backslash)
7555 {
7556 /* Remove the preceding backslash. */
7557 *(s - 1) = *p;
7558 backslash = FALSE;
7559 changed = TRUE;
7560 }
7561 else
7562 {
7563 if (*p == '?' || *p == '*' || *p == '[')
7564 {
7565 free (symbol);
7566 return NULL;
7567 }
7568
7569 *s++ = *p;
7570 backslash = *p == '\\';
7571 }
7572 }
7573
7574 if (changed)
7575 {
7576 *s = '\0';
7577 return symbol;
7578 }
7579 else
7580 {
7581 free (symbol);
7582 return pattern;
7583 }
7584}
7585
7586/* This is called for each variable name or match expression. NEW_NAME is
7587 the name of the symbol to match, or, if LITERAL_P is FALSE, a glob
7588 pattern to be matched against symbol names. */
7589
7590struct bfd_elf_version_expr *
7591lang_new_vers_pattern (struct bfd_elf_version_expr *orig,
7592 const char *new_name,
7593 const char *lang,
7594 bfd_boolean literal_p)
7595{
7596 struct bfd_elf_version_expr *ret;
7597
7598 ret = (struct bfd_elf_version_expr *) xmalloc (sizeof *ret);
7599 ret->next = orig;
7600 ret->symver = 0;
7601 ret->script = 0;
7602 ret->literal = TRUE;
7603 ret->pattern = literal_p ? new_name : realsymbol (new_name);
7604 if (ret->pattern == NULL)
7605 {
7606 ret->pattern = new_name;
7607 ret->literal = FALSE;
7608 }
7609
7610 if (lang == NULL || strcasecmp (lang, "C") == 0)
7611 ret->mask = BFD_ELF_VERSION_C_TYPE;
7612 else if (strcasecmp (lang, "C++") == 0)
7613 ret->mask = BFD_ELF_VERSION_CXX_TYPE;
7614 else if (strcasecmp (lang, "Java") == 0)
7615 ret->mask = BFD_ELF_VERSION_JAVA_TYPE;
7616 else
7617 {
7618 einfo (_("%X%P: unknown language `%s' in version information\n"),
7619 lang);
7620 ret->mask = BFD_ELF_VERSION_C_TYPE;
7621 }
7622
7623 return ldemul_new_vers_pattern (ret);
7624}
7625
7626/* This is called for each set of variable names and match
7627 expressions. */
7628
7629struct bfd_elf_version_tree *
7630lang_new_vers_node (struct bfd_elf_version_expr *globals,
7631 struct bfd_elf_version_expr *locals)
7632{
7633 struct bfd_elf_version_tree *ret;
7634
7635 ret = (struct bfd_elf_version_tree *) xcalloc (1, sizeof *ret);
7636 ret->globals.list = globals;
7637 ret->locals.list = locals;
7638 ret->match = lang_vers_match;
7639 ret->name_indx = (unsigned int) -1;
7640 return ret;
7641}
7642
7643/* This static variable keeps track of version indices. */
7644
7645static int version_index;
7646
7647static hashval_t
7648version_expr_head_hash (const void *p)
7649{
7650 const struct bfd_elf_version_expr *e =
7651 (const struct bfd_elf_version_expr *) p;
7652
7653 return htab_hash_string (e->pattern);
7654}
7655
7656static int
7657version_expr_head_eq (const void *p1, const void *p2)
7658{
7659 const struct bfd_elf_version_expr *e1 =
7660 (const struct bfd_elf_version_expr *) p1;
7661 const struct bfd_elf_version_expr *e2 =
7662 (const struct bfd_elf_version_expr *) p2;
7663
7664 return strcmp (e1->pattern, e2->pattern) == 0;
7665}
7666
7667static void
7668lang_finalize_version_expr_head (struct bfd_elf_version_expr_head *head)
7669{
7670 size_t count = 0;
7671 struct bfd_elf_version_expr *e, *next;
7672 struct bfd_elf_version_expr **list_loc, **remaining_loc;
7673
7674 for (e = head->list; e; e = e->next)
7675 {
7676 if (e->literal)
7677 count++;
7678 head->mask |= e->mask;
7679 }
7680
7681 if (count)
7682 {
7683 head->htab = htab_create (count * 2, version_expr_head_hash,
7684 version_expr_head_eq, NULL);
7685 list_loc = &head->list;
7686 remaining_loc = &head->remaining;
7687 for (e = head->list; e; e = next)
7688 {
7689 next = e->next;
7690 if (!e->literal)
7691 {
7692 *remaining_loc = e;
7693 remaining_loc = &e->next;
7694 }
7695 else
7696 {
7697 void **loc = htab_find_slot ((htab_t) head->htab, e, INSERT);
7698
7699 if (*loc)
7700 {
7701 struct bfd_elf_version_expr *e1, *last;
7702
7703 e1 = (struct bfd_elf_version_expr *) *loc;
7704 last = NULL;
7705 do
7706 {
7707 if (e1->mask == e->mask)
7708 {
7709 last = NULL;
7710 break;
7711 }
7712 last = e1;
7713 e1 = e1->next;
7714 }
7715 while (e1 && strcmp (e1->pattern, e->pattern) == 0);
7716
7717 if (last == NULL)
7718 {
7719 /* This is a duplicate. */
7720 /* FIXME: Memory leak. Sometimes pattern is not
7721 xmalloced alone, but in larger chunk of memory. */
7722 /* free (e->pattern); */
7723 free (e);
7724 }
7725 else
7726 {
7727 e->next = last->next;
7728 last->next = e;
7729 }
7730 }
7731 else
7732 {
7733 *loc = e;
7734 *list_loc = e;
7735 list_loc = &e->next;
7736 }
7737 }
7738 }
7739 *remaining_loc = NULL;
7740 *list_loc = head->remaining;
7741 }
7742 else
7743 head->remaining = head->list;
7744}
7745
7746/* This is called when we know the name and dependencies of the
7747 version. */
7748
7749void
7750lang_register_vers_node (const char *name,
7751 struct bfd_elf_version_tree *version,
7752 struct bfd_elf_version_deps *deps)
7753{
7754 struct bfd_elf_version_tree *t, **pp;
7755 struct bfd_elf_version_expr *e1;
7756
7757 if (name == NULL)
7758 name = "";
7759
7760 if ((name[0] == '\0' && lang_elf_version_info != NULL)
7761 || (lang_elf_version_info && lang_elf_version_info->name[0] == '\0'))
7762 {
7763 einfo (_("%X%P: anonymous version tag cannot be combined"
7764 " with other version tags\n"));
7765 free (version);
7766 return;
7767 }
7768
7769 /* Make sure this node has a unique name. */
7770 for (t = lang_elf_version_info; t != NULL; t = t->next)
7771 if (strcmp (t->name, name) == 0)
7772 einfo (_("%X%P: duplicate version tag `%s'\n"), name);
7773
7774 lang_finalize_version_expr_head (&version->globals);
7775 lang_finalize_version_expr_head (&version->locals);
7776
7777 /* Check the global and local match names, and make sure there
7778 aren't any duplicates. */
7779
7780 for (e1 = version->globals.list; e1 != NULL; e1 = e1->next)
7781 {
7782 for (t = lang_elf_version_info; t != NULL; t = t->next)
7783 {
7784 struct bfd_elf_version_expr *e2;
7785
7786 if (t->locals.htab && e1->literal)
7787 {
7788 e2 = (struct bfd_elf_version_expr *)
7789 htab_find ((htab_t) t->locals.htab, e1);
7790 while (e2 && strcmp (e1->pattern, e2->pattern) == 0)
7791 {
7792 if (e1->mask == e2->mask)
7793 einfo (_("%X%P: duplicate expression `%s'"
7794 " in version information\n"), e1->pattern);
7795 e2 = e2->next;
7796 }
7797 }
7798 else if (!e1->literal)
7799 for (e2 = t->locals.remaining; e2 != NULL; e2 = e2->next)
7800 if (strcmp (e1->pattern, e2->pattern) == 0
7801 && e1->mask == e2->mask)
7802 einfo (_("%X%P: duplicate expression `%s'"
7803 " in version information\n"), e1->pattern);
7804 }
7805 }
7806
7807 for (e1 = version->locals.list; e1 != NULL; e1 = e1->next)
7808 {
7809 for (t = lang_elf_version_info; t != NULL; t = t->next)
7810 {
7811 struct bfd_elf_version_expr *e2;
7812
7813 if (t->globals.htab && e1->literal)
7814 {
7815 e2 = (struct bfd_elf_version_expr *)
7816 htab_find ((htab_t) t->globals.htab, e1);
7817 while (e2 && strcmp (e1->pattern, e2->pattern) == 0)
7818 {
7819 if (e1->mask == e2->mask)
7820 einfo (_("%X%P: duplicate expression `%s'"
7821 " in version information\n"),
7822 e1->pattern);
7823 e2 = e2->next;
7824 }
7825 }
7826 else if (!e1->literal)
7827 for (e2 = t->globals.remaining; e2 != NULL; e2 = e2->next)
7828 if (strcmp (e1->pattern, e2->pattern) == 0
7829 && e1->mask == e2->mask)
7830 einfo (_("%X%P: duplicate expression `%s'"
7831 " in version information\n"), e1->pattern);
7832 }
7833 }
7834
7835 version->deps = deps;
7836 version->name = name;
7837 if (name[0] != '\0')
7838 {
7839 ++version_index;
7840 version->vernum = version_index;
7841 }
7842 else
7843 version->vernum = 0;
7844
7845 for (pp = &lang_elf_version_info; *pp != NULL; pp = &(*pp)->next)
7846 ;
7847 *pp = version;
7848}
7849
7850/* This is called when we see a version dependency. */
7851
7852struct bfd_elf_version_deps *
7853lang_add_vers_depend (struct bfd_elf_version_deps *list, const char *name)
7854{
7855 struct bfd_elf_version_deps *ret;
7856 struct bfd_elf_version_tree *t;
7857
7858 ret = (struct bfd_elf_version_deps *) xmalloc (sizeof *ret);
7859 ret->next = list;
7860
7861 for (t = lang_elf_version_info; t != NULL; t = t->next)
7862 {
7863 if (strcmp (t->name, name) == 0)
7864 {
7865 ret->version_needed = t;
7866 return ret;
7867 }
7868 }
7869
7870 einfo (_("%X%P: unable to find version dependency `%s'\n"), name);
7871
7872 ret->version_needed = NULL;
7873 return ret;
7874}
7875
7876static void
7877lang_do_version_exports_section (void)
7878{
7879 struct bfd_elf_version_expr *greg = NULL, *lreg;
7880
7881 LANG_FOR_EACH_INPUT_STATEMENT (is)
7882 {
7883 asection *sec = bfd_get_section_by_name (is->the_bfd, ".exports");
7884 char *contents, *p;
7885 bfd_size_type len;
7886
7887 if (sec == NULL)
7888 continue;
7889
7890 len = sec->size;
7891 contents = (char *) xmalloc (len);
7892 if (!bfd_get_section_contents (is->the_bfd, sec, contents, 0, len))
7893 einfo (_("%X%P: unable to read .exports section contents\n"), sec);
7894
7895 p = contents;
7896 while (p < contents + len)
7897 {
7898 greg = lang_new_vers_pattern (greg, p, NULL, FALSE);
7899 p = strchr (p, '\0') + 1;
7900 }
7901
7902 /* Do not free the contents, as we used them creating the regex. */
7903
7904 /* Do not include this section in the link. */
7905 sec->flags |= SEC_EXCLUDE | SEC_KEEP;
7906 }
7907
7908 lreg = lang_new_vers_pattern (NULL, "*", NULL, FALSE);
7909 lang_register_vers_node (command_line.version_exports_section,
7910 lang_new_vers_node (greg, lreg), NULL);
7911}
7912
7913void
7914lang_add_unique (const char *name)
7915{
7916 struct unique_sections *ent;
7917
7918 for (ent = unique_section_list; ent; ent = ent->next)
7919 if (strcmp (ent->name, name) == 0)
7920 return;
7921
7922 ent = (struct unique_sections *) xmalloc (sizeof *ent);
7923 ent->name = xstrdup (name);
7924 ent->next = unique_section_list;
7925 unique_section_list = ent;
7926}
7927
7928/* Append the list of dynamic symbols to the existing one. */
7929
7930void
7931lang_append_dynamic_list (struct bfd_elf_version_expr *dynamic)
7932{
7933 if (link_info.dynamic_list)
7934 {
7935 struct bfd_elf_version_expr *tail;
7936 for (tail = dynamic; tail->next != NULL; tail = tail->next)
7937 ;
7938 tail->next = link_info.dynamic_list->head.list;
7939 link_info.dynamic_list->head.list = dynamic;
7940 }
7941 else
7942 {
7943 struct bfd_elf_dynamic_list *d;
7944
7945 d = (struct bfd_elf_dynamic_list *) xcalloc (1, sizeof *d);
7946 d->head.list = dynamic;
7947 d->match = lang_vers_match;
7948 link_info.dynamic_list = d;
7949 }
7950}
7951
7952/* Append the list of C++ typeinfo dynamic symbols to the existing
7953 one. */
7954
7955void
7956lang_append_dynamic_list_cpp_typeinfo (void)
7957{
7958 const char * symbols [] =
7959 {
7960 "typeinfo name for*",
7961 "typeinfo for*"
7962 };
7963 struct bfd_elf_version_expr *dynamic = NULL;
7964 unsigned int i;
7965
7966 for (i = 0; i < ARRAY_SIZE (symbols); i++)
7967 dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++",
7968 FALSE);
7969
7970 lang_append_dynamic_list (dynamic);
7971}
7972
7973/* Append the list of C++ operator new and delete dynamic symbols to the
7974 existing one. */
7975
7976void
7977lang_append_dynamic_list_cpp_new (void)
7978{
7979 const char * symbols [] =
7980 {
7981 "operator new*",
7982 "operator delete*"
7983 };
7984 struct bfd_elf_version_expr *dynamic = NULL;
7985 unsigned int i;
7986
7987 for (i = 0; i < ARRAY_SIZE (symbols); i++)
7988 dynamic = lang_new_vers_pattern (dynamic, symbols [i], "C++",
7989 FALSE);
7990
7991 lang_append_dynamic_list (dynamic);
7992}
7993
7994/* Scan a space and/or comma separated string of features. */
7995
7996void
7997lang_ld_feature (char *str)
7998{
7999 char *p, *q;
8000
8001 p = str;
8002 while (*p)
8003 {
8004 char sep;
8005 while (*p == ',' || ISSPACE (*p))
8006 ++p;
8007 if (!*p)
8008 break;
8009 q = p + 1;
8010 while (*q && *q != ',' && !ISSPACE (*q))
8011 ++q;
8012 sep = *q;
8013 *q = 0;
8014 if (strcasecmp (p, "SANE_EXPR") == 0)
8015 config.sane_expr = TRUE;
8016 else
8017 einfo (_("%X%P: unknown feature `%s'\n"), p);
8018 *q = sep;
8019 p = q;
8020 }
8021}
This page took 0.048997 seconds and 4 git commands to generate.