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