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