* ldlang.c (lang_finish): Don't free lang_definedness_table.
[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
4 Free Software Foundation, Inc.
5
6 This file is part of GLD, the Gnu Linker.
7
8 GLD 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 2, or (at your option)
11 any later version.
12
13 GLD 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 GLD; see the file COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA. */
22
23 #include "bfd.h"
24 #include "sysdep.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
44 #ifndef offsetof
45 #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
46 #endif
47
48 /* Locals variables. */
49 static struct obstack stat_obstack;
50 static struct obstack map_obstack;
51
52 #define obstack_chunk_alloc xmalloc
53 #define obstack_chunk_free free
54 static const char *startup_file;
55 static lang_statement_list_type input_file_chain;
56 static bfd_boolean placed_commons = FALSE;
57 static lang_output_section_statement_type *default_common_section;
58 static bfd_boolean map_option_f;
59 static bfd_vma print_dot;
60 static lang_input_statement_type *first_file;
61 static const char *current_target;
62 static const char *output_target;
63 static lang_statement_list_type statement_list;
64 static struct lang_phdr *lang_phdr_list;
65 static struct bfd_hash_table lang_definedness_table;
66
67 /* Forward declarations. */
68 static void exp_init_os (etree_type *);
69 static void init_map_userdata (bfd *, asection *, void *);
70 static bfd_boolean wildcardp (const char *);
71 static lang_input_statement_type *lookup_name (const char *);
72 static bfd_boolean load_symbols (lang_input_statement_type *,
73 lang_statement_list_type *);
74 static struct bfd_hash_entry *lang_definedness_newfunc
75 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
76 static void insert_undefined (const char *);
77 static void print_all_symbols (asection *);
78 static bfd_boolean sort_def_symbol (struct bfd_link_hash_entry *, void *);
79 static void print_statement (lang_statement_union_type *,
80 lang_output_section_statement_type *);
81 static void print_statement_list (lang_statement_union_type *,
82 lang_output_section_statement_type *);
83 static void print_statements (void);
84 static bfd_boolean lang_one_common (struct bfd_link_hash_entry *, void *);
85 static void lang_record_phdrs (void);
86 static void lang_do_version_exports_section (void);
87
88 typedef void (*callback_t) (lang_wild_statement_type *, struct wildcard_list *,
89 asection *, lang_input_statement_type *, void *);
90
91 /* Exported variables. */
92 lang_output_section_statement_type *abs_output_section;
93 lang_statement_list_type lang_output_section_statement;
94 lang_statement_list_type *stat_ptr = &statement_list;
95 lang_statement_list_type file_chain = { NULL, NULL };
96 struct bfd_sym_chain entry_symbol = { NULL, NULL };
97 const char *entry_section = ".text";
98 bfd_boolean entry_from_cmdline;
99 bfd_boolean lang_has_input_file = FALSE;
100 bfd_boolean had_output_filename = FALSE;
101 bfd_boolean lang_float_flag = FALSE;
102 bfd_boolean delete_output_file_on_failure = FALSE;
103 struct lang_nocrossrefs *nocrossref_list;
104 struct unique_sections *unique_section_list;
105 static bfd_boolean ldlang_sysrooted_script = FALSE;
106 int lang_statement_iteration = 0;
107
108 etree_type *base; /* Relocation base - or null */
109
110 #define new_stat(x, y) \
111 (x##_type *) new_statement (x##_enum, sizeof (x##_type), y)
112
113 #define outside_section_address(q) \
114 ((q)->output_offset + (q)->output_section->vma)
115
116 #define outside_symbol_address(q) \
117 ((q)->value + outside_section_address (q->section))
118
119 #define SECTION_NAME_MAP_LENGTH (16)
120
121 void *
122 stat_alloc (size_t size)
123 {
124 return obstack_alloc (&stat_obstack, size);
125 }
126
127 bfd_boolean
128 unique_section_p (const asection *sec)
129 {
130 struct unique_sections *unam;
131 const char *secnam;
132
133 if (link_info.relocatable
134 && sec->owner != NULL
135 && bfd_is_group_section (sec->owner, sec))
136 return TRUE;
137
138 secnam = sec->name;
139 for (unam = unique_section_list; unam; unam = unam->next)
140 if (wildcardp (unam->name)
141 ? fnmatch (unam->name, secnam, 0) == 0
142 : strcmp (unam->name, secnam) == 0)
143 {
144 return TRUE;
145 }
146
147 return FALSE;
148 }
149
150 /* Generic traversal routines for finding matching sections. */
151
152 static void
153 walk_wild_section (lang_wild_statement_type *ptr,
154 lang_input_statement_type *file,
155 callback_t callback,
156 void *data)
157 {
158 asection *s;
159
160 if (file->just_syms_flag)
161 return;
162
163 for (s = file->the_bfd->sections; s != NULL; s = s->next)
164 {
165 struct wildcard_list *sec;
166
167 sec = ptr->section_list;
168 if (sec == NULL)
169 (*callback) (ptr, sec, s, file, data);
170
171 while (sec != NULL)
172 {
173 bfd_boolean skip = FALSE;
174 struct name_list *list_tmp;
175
176 /* Don't process sections from files which were
177 excluded. */
178 for (list_tmp = sec->spec.exclude_name_list;
179 list_tmp;
180 list_tmp = list_tmp->next)
181 {
182 if (wildcardp (list_tmp->name))
183 skip = fnmatch (list_tmp->name, file->filename, 0) == 0;
184 else
185 skip = strcmp (list_tmp->name, file->filename) == 0;
186
187 /* If this file is part of an archive, and the archive is
188 excluded, exclude this file. */
189 if (! skip && file->the_bfd != NULL
190 && file->the_bfd->my_archive != NULL
191 && file->the_bfd->my_archive->filename != NULL)
192 {
193 if (wildcardp (list_tmp->name))
194 skip = fnmatch (list_tmp->name,
195 file->the_bfd->my_archive->filename,
196 0) == 0;
197 else
198 skip = strcmp (list_tmp->name,
199 file->the_bfd->my_archive->filename) == 0;
200 }
201
202 if (skip)
203 break;
204 }
205
206 if (!skip && sec->spec.name != NULL)
207 {
208 const char *sname = bfd_get_section_name (file->the_bfd, s);
209
210 if (wildcardp (sec->spec.name))
211 skip = fnmatch (sec->spec.name, sname, 0) != 0;
212 else
213 skip = strcmp (sec->spec.name, sname) != 0;
214 }
215
216 if (!skip)
217 (*callback) (ptr, sec, s, file, data);
218
219 sec = sec->next;
220 }
221 }
222 }
223
224 /* Handle a wild statement for a single file F. */
225
226 static void
227 walk_wild_file (lang_wild_statement_type *s,
228 lang_input_statement_type *f,
229 callback_t callback,
230 void *data)
231 {
232 if (f->the_bfd == NULL
233 || ! bfd_check_format (f->the_bfd, bfd_archive))
234 walk_wild_section (s, f, callback, data);
235 else
236 {
237 bfd *member;
238
239 /* This is an archive file. We must map each member of the
240 archive separately. */
241 member = bfd_openr_next_archived_file (f->the_bfd, NULL);
242 while (member != NULL)
243 {
244 /* When lookup_name is called, it will call the add_symbols
245 entry point for the archive. For each element of the
246 archive which is included, BFD will call ldlang_add_file,
247 which will set the usrdata field of the member to the
248 lang_input_statement. */
249 if (member->usrdata != NULL)
250 {
251 walk_wild_section (s, member->usrdata, callback, data);
252 }
253
254 member = bfd_openr_next_archived_file (f->the_bfd, member);
255 }
256 }
257 }
258
259 static void
260 walk_wild (lang_wild_statement_type *s, callback_t callback, void *data)
261 {
262 const char *file_spec = s->filename;
263
264 if (file_spec == NULL)
265 {
266 /* Perform the iteration over all files in the list. */
267 LANG_FOR_EACH_INPUT_STATEMENT (f)
268 {
269 walk_wild_file (s, f, callback, data);
270 }
271 }
272 else if (wildcardp (file_spec))
273 {
274 LANG_FOR_EACH_INPUT_STATEMENT (f)
275 {
276 if (fnmatch (file_spec, f->filename, FNM_FILE_NAME) == 0)
277 walk_wild_file (s, f, callback, data);
278 }
279 }
280 else
281 {
282 lang_input_statement_type *f;
283
284 /* Perform the iteration over a single file. */
285 f = lookup_name (file_spec);
286 if (f)
287 walk_wild_file (s, f, callback, data);
288 }
289 }
290
291 /* lang_for_each_statement walks the parse tree and calls the provided
292 function for each node. */
293
294 static void
295 lang_for_each_statement_worker (void (*func) (lang_statement_union_type *),
296 lang_statement_union_type *s)
297 {
298 for (; s != NULL; s = s->header.next)
299 {
300 func (s);
301
302 switch (s->header.type)
303 {
304 case lang_constructors_statement_enum:
305 lang_for_each_statement_worker (func, constructor_list.head);
306 break;
307 case lang_output_section_statement_enum:
308 lang_for_each_statement_worker
309 (func, s->output_section_statement.children.head);
310 break;
311 case lang_wild_statement_enum:
312 lang_for_each_statement_worker (func,
313 s->wild_statement.children.head);
314 break;
315 case lang_group_statement_enum:
316 lang_for_each_statement_worker (func,
317 s->group_statement.children.head);
318 break;
319 case lang_data_statement_enum:
320 case lang_reloc_statement_enum:
321 case lang_object_symbols_statement_enum:
322 case lang_output_statement_enum:
323 case lang_target_statement_enum:
324 case lang_input_section_enum:
325 case lang_input_statement_enum:
326 case lang_assignment_statement_enum:
327 case lang_padding_statement_enum:
328 case lang_address_statement_enum:
329 case lang_fill_statement_enum:
330 break;
331 default:
332 FAIL ();
333 break;
334 }
335 }
336 }
337
338 void
339 lang_for_each_statement (void (*func) (lang_statement_union_type *))
340 {
341 lang_for_each_statement_worker (func, statement_list.head);
342 }
343
344 /*----------------------------------------------------------------------*/
345
346 void
347 lang_list_init (lang_statement_list_type *list)
348 {
349 list->head = NULL;
350 list->tail = &list->head;
351 }
352
353 /* Build a new statement node for the parse tree. */
354
355 static lang_statement_union_type *
356 new_statement (enum statement_enum type,
357 size_t size,
358 lang_statement_list_type *list)
359 {
360 lang_statement_union_type *new;
361
362 new = stat_alloc (size);
363 new->header.type = type;
364 new->header.next = NULL;
365 lang_statement_append (list, new, &new->header.next);
366 return new;
367 }
368
369 /* Build a new input file node for the language. There are several
370 ways in which we treat an input file, eg, we only look at symbols,
371 or prefix it with a -l etc.
372
373 We can be supplied with requests for input files more than once;
374 they may, for example be split over several lines like foo.o(.text)
375 foo.o(.data) etc, so when asked for a file we check that we haven't
376 got it already so we don't duplicate the bfd. */
377
378 static lang_input_statement_type *
379 new_afile (const char *name,
380 lang_input_file_enum_type file_type,
381 const char *target,
382 bfd_boolean add_to_list)
383 {
384 lang_input_statement_type *p;
385
386 if (add_to_list)
387 p = new_stat (lang_input_statement, stat_ptr);
388 else
389 {
390 p = stat_alloc (sizeof (lang_input_statement_type));
391 p->header.next = NULL;
392 }
393
394 lang_has_input_file = TRUE;
395 p->target = target;
396 p->sysrooted = FALSE;
397 switch (file_type)
398 {
399 case lang_input_file_is_symbols_only_enum:
400 p->filename = name;
401 p->is_archive = FALSE;
402 p->real = TRUE;
403 p->local_sym_name = name;
404 p->just_syms_flag = TRUE;
405 p->search_dirs_flag = FALSE;
406 break;
407 case lang_input_file_is_fake_enum:
408 p->filename = name;
409 p->is_archive = FALSE;
410 p->real = FALSE;
411 p->local_sym_name = name;
412 p->just_syms_flag = FALSE;
413 p->search_dirs_flag = FALSE;
414 break;
415 case lang_input_file_is_l_enum:
416 p->is_archive = TRUE;
417 p->filename = name;
418 p->real = TRUE;
419 p->local_sym_name = concat ("-l", name, NULL);
420 p->just_syms_flag = FALSE;
421 p->search_dirs_flag = TRUE;
422 break;
423 case lang_input_file_is_marker_enum:
424 p->filename = name;
425 p->is_archive = FALSE;
426 p->real = FALSE;
427 p->local_sym_name = name;
428 p->just_syms_flag = FALSE;
429 p->search_dirs_flag = TRUE;
430 break;
431 case lang_input_file_is_search_file_enum:
432 p->sysrooted = ldlang_sysrooted_script;
433 p->filename = name;
434 p->is_archive = FALSE;
435 p->real = TRUE;
436 p->local_sym_name = name;
437 p->just_syms_flag = FALSE;
438 p->search_dirs_flag = TRUE;
439 break;
440 case lang_input_file_is_file_enum:
441 p->filename = name;
442 p->is_archive = FALSE;
443 p->real = TRUE;
444 p->local_sym_name = name;
445 p->just_syms_flag = FALSE;
446 p->search_dirs_flag = FALSE;
447 break;
448 default:
449 FAIL ();
450 }
451 p->the_bfd = NULL;
452 p->asymbols = NULL;
453 p->next_real_file = NULL;
454 p->next = NULL;
455 p->symbol_count = 0;
456 p->dynamic = config.dynamic_link;
457 p->as_needed = as_needed;
458 p->whole_archive = whole_archive;
459 p->loaded = FALSE;
460 lang_statement_append (&input_file_chain,
461 (lang_statement_union_type *) p,
462 &p->next_real_file);
463 return p;
464 }
465
466 lang_input_statement_type *
467 lang_add_input_file (const char *name,
468 lang_input_file_enum_type file_type,
469 const char *target)
470 {
471 lang_has_input_file = TRUE;
472 return new_afile (name, file_type, target, TRUE);
473 }
474
475 /* Build enough state so that the parser can build its tree. */
476
477 void
478 lang_init (void)
479 {
480 obstack_begin (&stat_obstack, 1000);
481
482 stat_ptr = &statement_list;
483
484 lang_list_init (stat_ptr);
485
486 lang_list_init (&input_file_chain);
487 lang_list_init (&lang_output_section_statement);
488 lang_list_init (&file_chain);
489 first_file = lang_add_input_file (NULL, lang_input_file_is_marker_enum,
490 NULL);
491 abs_output_section =
492 lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME);
493
494 abs_output_section->bfd_section = bfd_abs_section_ptr;
495
496 /* The value "3" is ad-hoc, somewhat related to the expected number of
497 DEFINED expressions in a linker script. For most default linker
498 scripts, there are none. Why a hash table then? Well, it's somewhat
499 simpler to re-use working machinery than using a linked list in terms
500 of code-complexity here in ld, besides the initialization which just
501 looks like other code here. */
502 if (bfd_hash_table_init_n (&lang_definedness_table,
503 lang_definedness_newfunc, 3) != TRUE)
504 einfo (_("%P%F: out of memory during initialization"));
505
506 /* Callers of exp_fold_tree need to increment this. */
507 lang_statement_iteration = 0;
508 }
509
510 /*----------------------------------------------------------------------
511 A region is an area of memory declared with the
512 MEMORY { name:org=exp, len=exp ... }
513 syntax.
514
515 We maintain a list of all the regions here.
516
517 If no regions are specified in the script, then the default is used
518 which is created when looked up to be the entire data space.
519
520 If create is true we are creating a region inside a MEMORY block.
521 In this case it is probably an error to create a region that has
522 already been created. If we are not inside a MEMORY block it is
523 dubious to use an undeclared region name (except DEFAULT_MEMORY_REGION)
524 and so we issue a warning. */
525
526 static lang_memory_region_type *lang_memory_region_list;
527 static lang_memory_region_type **lang_memory_region_list_tail
528 = &lang_memory_region_list;
529
530 lang_memory_region_type *
531 lang_memory_region_lookup (const char *const name, bfd_boolean create)
532 {
533 lang_memory_region_type *p;
534 lang_memory_region_type *new;
535
536 /* NAME is NULL for LMA memspecs if no region was specified. */
537 if (name == NULL)
538 return NULL;
539
540 for (p = lang_memory_region_list; p != NULL; p = p->next)
541 if (strcmp (p->name, name) == 0)
542 {
543 if (create)
544 einfo (_("%P:%S: warning: redeclaration of memory region '%s'\n"),
545 name);
546 return p;
547 }
548
549 #if 0
550 /* This code used to always use the first region in the list as the
551 default region. I changed it to instead use a region
552 encompassing all of memory as the default region. This permits
553 NOLOAD sections to work reasonably without requiring a region.
554 People should specify what region they mean, if they really want
555 a region. */
556 if (strcmp (name, DEFAULT_MEMORY_REGION) == 0)
557 {
558 if (lang_memory_region_list != NULL)
559 return lang_memory_region_list;
560 }
561 #endif
562
563 if (!create && strcmp (name, DEFAULT_MEMORY_REGION))
564 einfo (_("%P:%S: warning: memory region %s not declared\n"), name);
565
566 new = stat_alloc (sizeof (lang_memory_region_type));
567
568 new->name = xstrdup (name);
569 new->next = NULL;
570
571 *lang_memory_region_list_tail = new;
572 lang_memory_region_list_tail = &new->next;
573 new->origin = 0;
574 new->flags = 0;
575 new->not_flags = 0;
576 new->length = ~(bfd_size_type) 0;
577 new->current = 0;
578 new->had_full_message = FALSE;
579
580 return new;
581 }
582
583 static lang_memory_region_type *
584 lang_memory_default (asection *section)
585 {
586 lang_memory_region_type *p;
587
588 flagword sec_flags = section->flags;
589
590 /* Override SEC_DATA to mean a writable section. */
591 if ((sec_flags & (SEC_ALLOC | SEC_READONLY | SEC_CODE)) == SEC_ALLOC)
592 sec_flags |= SEC_DATA;
593
594 for (p = lang_memory_region_list; p != NULL; p = p->next)
595 {
596 if ((p->flags & sec_flags) != 0
597 && (p->not_flags & sec_flags) == 0)
598 {
599 return p;
600 }
601 }
602 return lang_memory_region_lookup (DEFAULT_MEMORY_REGION, FALSE);
603 }
604
605 static lang_output_section_statement_type *
606 lang_output_section_find_1 (const char *const name, int constraint)
607 {
608 lang_statement_union_type *u;
609 lang_output_section_statement_type *lookup;
610
611 for (u = lang_output_section_statement.head; u != NULL; u = lookup->next)
612 {
613 lookup = &u->output_section_statement;
614 if (strcmp (name, lookup->name) == 0
615 && lookup->constraint != -1
616 && (constraint == 0 || constraint == lookup->constraint))
617 return lookup;
618 }
619 return NULL;
620 }
621
622 lang_output_section_statement_type *
623 lang_output_section_find (const char *const name)
624 {
625 return lang_output_section_find_1 (name, 0);
626 }
627
628 static lang_output_section_statement_type *
629 lang_output_section_statement_lookup_1 (const char *const name, int constraint)
630 {
631 lang_output_section_statement_type *lookup;
632
633 lookup = lang_output_section_find_1 (name, constraint);
634 if (lookup == NULL)
635 {
636 lookup = new_stat (lang_output_section_statement, stat_ptr);
637 lookup->region = NULL;
638 lookup->lma_region = NULL;
639 lookup->fill = 0;
640 lookup->block_value = 1;
641 lookup->name = name;
642
643 lookup->next = NULL;
644 lookup->bfd_section = NULL;
645 lookup->processed = 0;
646 lookup->constraint = constraint;
647 lookup->sectype = normal_section;
648 lookup->addr_tree = NULL;
649 lang_list_init (&lookup->children);
650
651 lookup->memspec = NULL;
652 lookup->flags = 0;
653 lookup->subsection_alignment = -1;
654 lookup->section_alignment = -1;
655 lookup->load_base = NULL;
656 lookup->update_dot_tree = NULL;
657 lookup->phdrs = NULL;
658
659 lang_statement_append (&lang_output_section_statement,
660 (lang_statement_union_type *) lookup,
661 &lookup->next);
662 }
663 return lookup;
664 }
665
666 lang_output_section_statement_type *
667 lang_output_section_statement_lookup (const char *const name)
668 {
669 return lang_output_section_statement_lookup_1 (name, 0);
670 }
671
672 static void
673 lang_map_flags (flagword flag)
674 {
675 if (flag & SEC_ALLOC)
676 minfo ("a");
677
678 if (flag & SEC_CODE)
679 minfo ("x");
680
681 if (flag & SEC_READONLY)
682 minfo ("r");
683
684 if (flag & SEC_DATA)
685 minfo ("w");
686
687 if (flag & SEC_LOAD)
688 minfo ("l");
689 }
690
691 void
692 lang_map (void)
693 {
694 lang_memory_region_type *m;
695 bfd *p;
696
697 minfo (_("\nMemory Configuration\n\n"));
698 fprintf (config.map_file, "%-16s %-18s %-18s %s\n",
699 _("Name"), _("Origin"), _("Length"), _("Attributes"));
700
701 for (m = lang_memory_region_list; m != NULL; m = m->next)
702 {
703 char buf[100];
704 int len;
705
706 fprintf (config.map_file, "%-16s ", m->name);
707
708 sprintf_vma (buf, m->origin);
709 minfo ("0x%s ", buf);
710 len = strlen (buf);
711 while (len < 16)
712 {
713 print_space ();
714 ++len;
715 }
716
717 minfo ("0x%V", m->length);
718 if (m->flags || m->not_flags)
719 {
720 #ifndef BFD64
721 minfo (" ");
722 #endif
723 if (m->flags)
724 {
725 print_space ();
726 lang_map_flags (m->flags);
727 }
728
729 if (m->not_flags)
730 {
731 minfo (" !");
732 lang_map_flags (m->not_flags);
733 }
734 }
735
736 print_nl ();
737 }
738
739 fprintf (config.map_file, _("\nLinker script and memory map\n\n"));
740
741 if (! command_line.reduce_memory_overheads)
742 {
743 obstack_begin (&map_obstack, 1000);
744 for (p = link_info.input_bfds; p != (bfd *) NULL; p = p->link_next)
745 bfd_map_over_sections (p, init_map_userdata, 0);
746 bfd_link_hash_traverse (link_info.hash, sort_def_symbol, 0);
747 }
748 print_statements ();
749 }
750
751 static void
752 init_map_userdata (abfd, sec, data)
753 bfd *abfd ATTRIBUTE_UNUSED;
754 asection *sec;
755 void *data ATTRIBUTE_UNUSED;
756 {
757 fat_section_userdata_type *new_data
758 = ((fat_section_userdata_type *) (stat_alloc
759 (sizeof (fat_section_userdata_type))));
760
761 ASSERT (get_userdata (sec) == NULL);
762 get_userdata (sec) = new_data;
763 new_data->map_symbol_def_tail = &new_data->map_symbol_def_head;
764 }
765
766 static bfd_boolean
767 sort_def_symbol (hash_entry, info)
768 struct bfd_link_hash_entry *hash_entry;
769 void *info ATTRIBUTE_UNUSED;
770 {
771 if (hash_entry->type == bfd_link_hash_defined
772 || hash_entry->type == bfd_link_hash_defweak)
773 {
774 struct fat_user_section_struct *ud;
775 struct map_symbol_def *def;
776
777 ud = get_userdata (hash_entry->u.def.section);
778 if (! ud)
779 {
780 /* ??? What do we have to do to initialize this beforehand? */
781 /* The first time we get here is bfd_abs_section... */
782 init_map_userdata (0, hash_entry->u.def.section, 0);
783 ud = get_userdata (hash_entry->u.def.section);
784 }
785 else if (!ud->map_symbol_def_tail)
786 ud->map_symbol_def_tail = &ud->map_symbol_def_head;
787 def = obstack_alloc (&map_obstack, sizeof *def);
788 def->entry = hash_entry;
789 *ud->map_symbol_def_tail = def;
790 ud->map_symbol_def_tail = &def->next;
791 }
792 return TRUE;
793 }
794
795 /* Initialize an output section. */
796
797 static void
798 init_os (lang_output_section_statement_type *s)
799 {
800 lean_section_userdata_type *new;
801
802 if (s->bfd_section != NULL)
803 return;
804
805 if (strcmp (s->name, DISCARD_SECTION_NAME) == 0)
806 einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME);
807
808 new = stat_alloc (SECTION_USERDATA_SIZE);
809
810 s->bfd_section = bfd_get_section_by_name (output_bfd, s->name);
811 if (s->bfd_section == NULL)
812 s->bfd_section = bfd_make_section (output_bfd, s->name);
813 if (s->bfd_section == NULL)
814 {
815 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
816 output_bfd->xvec->name, s->name);
817 }
818 s->bfd_section->output_section = s->bfd_section;
819
820 /* We initialize an output sections output offset to minus its own
821 vma to allow us to output a section through itself. */
822 s->bfd_section->output_offset = 0;
823 get_userdata (s->bfd_section) = new;
824
825 /* If there is a base address, make sure that any sections it might
826 mention are initialized. */
827 if (s->addr_tree != NULL)
828 exp_init_os (s->addr_tree);
829
830 if (s->load_base != NULL)
831 exp_init_os (s->load_base);
832 }
833
834 /* Make sure that all output sections mentioned in an expression are
835 initialized. */
836
837 static void
838 exp_init_os (etree_type *exp)
839 {
840 switch (exp->type.node_class)
841 {
842 case etree_assign:
843 exp_init_os (exp->assign.src);
844 break;
845
846 case etree_binary:
847 exp_init_os (exp->binary.lhs);
848 exp_init_os (exp->binary.rhs);
849 break;
850
851 case etree_trinary:
852 exp_init_os (exp->trinary.cond);
853 exp_init_os (exp->trinary.lhs);
854 exp_init_os (exp->trinary.rhs);
855 break;
856
857 case etree_assert:
858 exp_init_os (exp->assert_s.child);
859 break;
860
861 case etree_unary:
862 exp_init_os (exp->unary.child);
863 break;
864
865 case etree_name:
866 switch (exp->type.node_code)
867 {
868 case ADDR:
869 case LOADADDR:
870 case SIZEOF:
871 {
872 lang_output_section_statement_type *os;
873
874 os = lang_output_section_find (exp->name.name);
875 if (os != NULL && os->bfd_section == NULL)
876 init_os (os);
877 }
878 }
879 break;
880
881 default:
882 break;
883 }
884 }
885 \f
886 /* Sections marked with the SEC_LINK_ONCE flag should only be linked
887 once into the output. This routine checks each section, and
888 arrange to discard it if a section of the same name has already
889 been linked. If the section has COMDAT information, then it uses
890 that to decide whether the section should be included. This code
891 assumes that all relevant sections have the SEC_LINK_ONCE flag set;
892 that is, it does not depend solely upon the section name.
893 section_already_linked is called via bfd_map_over_sections. */
894
895 /* This is the shape of the elements inside the already_linked hash
896 table. It maps a name onto a list of already_linked elements with
897 the same name. It's possible to get more than one element in a
898 list if the COMDAT sections have different names. */
899
900 struct already_linked_hash_entry
901 {
902 struct bfd_hash_entry root;
903 struct already_linked *entry;
904 };
905
906 struct already_linked
907 {
908 struct already_linked *next;
909 asection *sec;
910 };
911
912 /* The hash table. */
913
914 static struct bfd_hash_table already_linked_table;
915
916 static void
917 section_already_linked (bfd *abfd, asection *sec, void *data)
918 {
919 lang_input_statement_type *entry = data;
920 flagword flags;
921 const char *name;
922 struct already_linked *l;
923 struct already_linked_hash_entry *already_linked_list;
924
925 /* If we are only reading symbols from this object, then we want to
926 discard all sections. */
927 if (entry->just_syms_flag)
928 {
929 bfd_link_just_syms (sec, &link_info);
930 return;
931 }
932
933 flags = sec->flags;
934 if ((flags & SEC_LINK_ONCE) == 0)
935 return;
936
937 /* FIXME: When doing a relocatable link, we may have trouble
938 copying relocations in other sections that refer to local symbols
939 in the section being discarded. Those relocations will have to
940 be converted somehow; as of this writing I'm not sure that any of
941 the backends handle that correctly.
942
943 It is tempting to instead not discard link once sections when
944 doing a relocatable link (technically, they should be discarded
945 whenever we are building constructors). However, that fails,
946 because the linker winds up combining all the link once sections
947 into a single large link once section, which defeats the purpose
948 of having link once sections in the first place.
949
950 Also, not merging link once sections in a relocatable link
951 causes trouble for MIPS ELF, which relies on link once semantics
952 to handle the .reginfo section correctly. */
953
954 name = bfd_get_section_name (abfd, sec);
955
956 already_linked_list =
957 ((struct already_linked_hash_entry *)
958 bfd_hash_lookup (&already_linked_table, name, TRUE, FALSE));
959
960 for (l = already_linked_list->entry; l != NULL; l = l->next)
961 {
962 if (sec->comdat == NULL
963 || l->sec->comdat == NULL
964 || strcmp (sec->comdat->name, l->sec->comdat->name) == 0)
965 {
966 /* The section has already been linked. See if we should
967 issue a warning. */
968 switch (flags & SEC_LINK_DUPLICATES)
969 {
970 default:
971 abort ();
972
973 case SEC_LINK_DUPLICATES_DISCARD:
974 break;
975
976 case SEC_LINK_DUPLICATES_ONE_ONLY:
977 if (sec->comdat == NULL)
978 einfo (_("%P: %B: warning: ignoring duplicate section `%s'\n"),
979 abfd, name);
980 else
981 einfo (_("%P: %B: warning: ignoring duplicate `%s'"
982 " section symbol `%s'\n"),
983 abfd, name, sec->comdat->name);
984 break;
985
986 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
987 /* FIXME: We should really dig out the contents of both
988 sections and memcmp them. The COFF/PE spec says that
989 the Microsoft linker does not implement this
990 correctly, so I'm not going to bother doing it
991 either. */
992 /* Fall through. */
993 case SEC_LINK_DUPLICATES_SAME_SIZE:
994 if (bfd_section_size (abfd, sec)
995 != bfd_section_size (l->sec->owner, l->sec))
996 einfo (_("%P: %B: warning: duplicate section `%s'"
997 " has different size\n"),
998 abfd, name);
999 break;
1000 }
1001
1002 /* Set the output_section field so that lang_add_section
1003 does not create a lang_input_section structure for this
1004 section. Since there might be a symbol in the section
1005 being discarded, we must retain a pointer to the section
1006 which we are really going to use. */
1007 sec->output_section = bfd_abs_section_ptr;
1008 sec->kept_section = l->sec;
1009
1010 if (flags & SEC_GROUP)
1011 bfd_discard_group (abfd, sec);
1012
1013 return;
1014 }
1015 }
1016
1017 /* This is the first section with this name. Record it. Allocate
1018 the memory from the same obstack as the hash table is kept in. */
1019
1020 l = bfd_hash_allocate (&already_linked_table, sizeof *l);
1021
1022 l->sec = sec;
1023 l->next = already_linked_list->entry;
1024 already_linked_list->entry = l;
1025 }
1026
1027 /* Support routines for the hash table used by section_already_linked,
1028 initialize the table, fill in an entry and remove the table. */
1029
1030 static struct bfd_hash_entry *
1031 already_linked_newfunc (struct bfd_hash_entry *entry ATTRIBUTE_UNUSED,
1032 struct bfd_hash_table *table,
1033 const char *string ATTRIBUTE_UNUSED)
1034 {
1035 struct already_linked_hash_entry *ret =
1036 bfd_hash_allocate (table, sizeof (struct already_linked_hash_entry));
1037
1038 ret->entry = NULL;
1039
1040 return &ret->root;
1041 }
1042
1043 static void
1044 already_linked_table_init (void)
1045 {
1046 if (! bfd_hash_table_init_n (&already_linked_table,
1047 already_linked_newfunc,
1048 42))
1049 einfo (_("%P%F: Failed to create hash table\n"));
1050 }
1051
1052 static void
1053 already_linked_table_free (void)
1054 {
1055 bfd_hash_table_free (&already_linked_table);
1056 }
1057 \f
1058 /* The wild routines.
1059
1060 These expand statements like *(.text) and foo.o to a list of
1061 explicit actions, like foo.o(.text), bar.o(.text) and
1062 foo.o(.text, .data). */
1063
1064 /* Return TRUE if the PATTERN argument is a wildcard pattern.
1065 Although backslashes are treated specially if a pattern contains
1066 wildcards, we do not consider the mere presence of a backslash to
1067 be enough to cause the pattern to be treated as a wildcard.
1068 That lets us handle DOS filenames more naturally. */
1069
1070 static bfd_boolean
1071 wildcardp (const char *pattern)
1072 {
1073 const char *s;
1074
1075 for (s = pattern; *s != '\0'; ++s)
1076 if (*s == '?'
1077 || *s == '*'
1078 || *s == '[')
1079 return TRUE;
1080 return FALSE;
1081 }
1082
1083 /* Add SECTION to the output section OUTPUT. Do this by creating a
1084 lang_input_section statement which is placed at PTR. FILE is the
1085 input file which holds SECTION. */
1086
1087 void
1088 lang_add_section (lang_statement_list_type *ptr,
1089 asection *section,
1090 lang_output_section_statement_type *output,
1091 lang_input_statement_type *file)
1092 {
1093 flagword flags = section->flags;
1094 bfd_boolean discard;
1095
1096 /* Discard sections marked with SEC_EXCLUDE. */
1097 discard = (flags & SEC_EXCLUDE) != 0;
1098
1099 /* Discard input sections which are assigned to a section named
1100 DISCARD_SECTION_NAME. */
1101 if (strcmp (output->name, DISCARD_SECTION_NAME) == 0)
1102 discard = TRUE;
1103
1104 /* Discard debugging sections if we are stripping debugging
1105 information. */
1106 if ((link_info.strip == strip_debugger || link_info.strip == strip_all)
1107 && (flags & SEC_DEBUGGING) != 0)
1108 discard = TRUE;
1109
1110 if (discard)
1111 {
1112 if (section->output_section == NULL)
1113 {
1114 /* This prevents future calls from assigning this section. */
1115 section->output_section = bfd_abs_section_ptr;
1116 }
1117 return;
1118 }
1119
1120 if (section->output_section == NULL)
1121 {
1122 bfd_boolean first;
1123 lang_input_section_type *new;
1124 flagword flags;
1125
1126 if (output->bfd_section == NULL)
1127 init_os (output);
1128
1129 first = ! output->bfd_section->linker_has_input;
1130 output->bfd_section->linker_has_input = 1;
1131
1132 /* Add a section reference to the list. */
1133 new = new_stat (lang_input_section, ptr);
1134
1135 new->section = section;
1136 new->ifile = file;
1137 section->output_section = output->bfd_section;
1138
1139 flags = section->flags;
1140
1141 /* We don't copy the SEC_NEVER_LOAD flag from an input section
1142 to an output section, because we want to be able to include a
1143 SEC_NEVER_LOAD section in the middle of an otherwise loaded
1144 section (I don't know why we want to do this, but we do).
1145 build_link_order in ldwrite.c handles this case by turning
1146 the embedded SEC_NEVER_LOAD section into a fill. */
1147
1148 flags &= ~ SEC_NEVER_LOAD;
1149
1150 /* If final link, don't copy the SEC_LINK_ONCE flags, they've
1151 already been processed. One reason to do this is that on pe
1152 format targets, .text$foo sections go into .text and it's odd
1153 to see .text with SEC_LINK_ONCE set. */
1154
1155 if (! link_info.relocatable)
1156 flags &= ~ (SEC_LINK_ONCE | SEC_LINK_DUPLICATES);
1157
1158 /* If this is not the first input section, and the SEC_READONLY
1159 flag is not currently set, then don't set it just because the
1160 input section has it set. */
1161
1162 if (! first && (section->output_section->flags & SEC_READONLY) == 0)
1163 flags &= ~ SEC_READONLY;
1164
1165 /* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
1166 if (! first
1167 && ((section->output_section->flags & (SEC_MERGE | SEC_STRINGS))
1168 != (flags & (SEC_MERGE | SEC_STRINGS))
1169 || ((flags & SEC_MERGE)
1170 && section->output_section->entsize != section->entsize)))
1171 {
1172 section->output_section->flags &= ~ (SEC_MERGE | SEC_STRINGS);
1173 flags &= ~ (SEC_MERGE | SEC_STRINGS);
1174 }
1175
1176 section->output_section->flags |= flags;
1177
1178 if (flags & SEC_MERGE)
1179 section->output_section->entsize = section->entsize;
1180
1181 /* If SEC_READONLY is not set in the input section, then clear
1182 it from the output section. */
1183 if ((section->flags & SEC_READONLY) == 0)
1184 section->output_section->flags &= ~SEC_READONLY;
1185
1186 switch (output->sectype)
1187 {
1188 case normal_section:
1189 break;
1190 case dsect_section:
1191 case copy_section:
1192 case info_section:
1193 case overlay_section:
1194 output->bfd_section->flags &= ~SEC_ALLOC;
1195 break;
1196 case noload_section:
1197 output->bfd_section->flags &= ~SEC_LOAD;
1198 output->bfd_section->flags |= SEC_NEVER_LOAD;
1199 break;
1200 }
1201
1202 /* Copy over SEC_SMALL_DATA. */
1203 if (section->flags & SEC_SMALL_DATA)
1204 section->output_section->flags |= SEC_SMALL_DATA;
1205
1206 if (section->alignment_power > output->bfd_section->alignment_power)
1207 output->bfd_section->alignment_power = section->alignment_power;
1208
1209 /* If supplied an alignment, then force it. */
1210 if (output->section_alignment != -1)
1211 output->bfd_section->alignment_power = output->section_alignment;
1212
1213 if (section->flags & SEC_BLOCK)
1214 {
1215 section->output_section->flags |= SEC_BLOCK;
1216 /* FIXME: This value should really be obtained from the bfd... */
1217 output->block_value = 128;
1218 }
1219 }
1220 }
1221
1222 /* Handle wildcard sorting. This returns the lang_input_section which
1223 should follow the one we are going to create for SECTION and FILE,
1224 based on the sorting requirements of WILD. It returns NULL if the
1225 new section should just go at the end of the current list. */
1226
1227 static lang_statement_union_type *
1228 wild_sort (lang_wild_statement_type *wild,
1229 struct wildcard_list *sec,
1230 lang_input_statement_type *file,
1231 asection *section)
1232 {
1233 const char *section_name;
1234 lang_statement_union_type *l;
1235
1236 if (!wild->filenames_sorted && (sec == NULL || !sec->spec.sorted))
1237 return NULL;
1238
1239 section_name = bfd_get_section_name (file->the_bfd, section);
1240 for (l = wild->children.head; l != NULL; l = l->header.next)
1241 {
1242 lang_input_section_type *ls;
1243
1244 if (l->header.type != lang_input_section_enum)
1245 continue;
1246 ls = &l->input_section;
1247
1248 /* Sorting by filename takes precedence over sorting by section
1249 name. */
1250
1251 if (wild->filenames_sorted)
1252 {
1253 const char *fn, *ln;
1254 bfd_boolean fa, la;
1255 int i;
1256
1257 /* The PE support for the .idata section as generated by
1258 dlltool assumes that files will be sorted by the name of
1259 the archive and then the name of the file within the
1260 archive. */
1261
1262 if (file->the_bfd != NULL
1263 && bfd_my_archive (file->the_bfd) != NULL)
1264 {
1265 fn = bfd_get_filename (bfd_my_archive (file->the_bfd));
1266 fa = TRUE;
1267 }
1268 else
1269 {
1270 fn = file->filename;
1271 fa = FALSE;
1272 }
1273
1274 if (ls->ifile->the_bfd != NULL
1275 && bfd_my_archive (ls->ifile->the_bfd) != NULL)
1276 {
1277 ln = bfd_get_filename (bfd_my_archive (ls->ifile->the_bfd));
1278 la = TRUE;
1279 }
1280 else
1281 {
1282 ln = ls->ifile->filename;
1283 la = FALSE;
1284 }
1285
1286 i = strcmp (fn, ln);
1287 if (i > 0)
1288 continue;
1289 else if (i < 0)
1290 break;
1291
1292 if (fa || la)
1293 {
1294 if (fa)
1295 fn = file->filename;
1296 if (la)
1297 ln = ls->ifile->filename;
1298
1299 i = strcmp (fn, ln);
1300 if (i > 0)
1301 continue;
1302 else if (i < 0)
1303 break;
1304 }
1305 }
1306
1307 /* Here either the files are not sorted by name, or we are
1308 looking at the sections for this file. */
1309
1310 if (sec != NULL && sec->spec.sorted)
1311 {
1312 if (strcmp (section_name,
1313 bfd_get_section_name (ls->ifile->the_bfd,
1314 ls->section))
1315 < 0)
1316 break;
1317 }
1318 }
1319
1320 return l;
1321 }
1322
1323 /* Expand a wild statement for a particular FILE. SECTION may be
1324 NULL, in which case it is a wild card. */
1325
1326 static void
1327 output_section_callback (lang_wild_statement_type *ptr,
1328 struct wildcard_list *sec,
1329 asection *section,
1330 lang_input_statement_type *file,
1331 void *output)
1332 {
1333 lang_statement_union_type *before;
1334
1335 /* Exclude sections that match UNIQUE_SECTION_LIST. */
1336 if (unique_section_p (section))
1337 return;
1338
1339 before = wild_sort (ptr, sec, file, section);
1340
1341 /* Here BEFORE points to the lang_input_section which
1342 should follow the one we are about to add. If BEFORE
1343 is NULL, then the section should just go at the end
1344 of the current list. */
1345
1346 if (before == NULL)
1347 lang_add_section (&ptr->children, section,
1348 (lang_output_section_statement_type *) output,
1349 file);
1350 else
1351 {
1352 lang_statement_list_type list;
1353 lang_statement_union_type **pp;
1354
1355 lang_list_init (&list);
1356 lang_add_section (&list, section,
1357 (lang_output_section_statement_type *) output,
1358 file);
1359
1360 /* If we are discarding the section, LIST.HEAD will
1361 be NULL. */
1362 if (list.head != NULL)
1363 {
1364 ASSERT (list.head->header.next == NULL);
1365
1366 for (pp = &ptr->children.head;
1367 *pp != before;
1368 pp = &(*pp)->header.next)
1369 ASSERT (*pp != NULL);
1370
1371 list.head->header.next = *pp;
1372 *pp = list.head;
1373 }
1374 }
1375 }
1376
1377 /* Check if all sections in a wild statement for a particular FILE
1378 are readonly. */
1379
1380 static void
1381 check_section_callback (lang_wild_statement_type *ptr ATTRIBUTE_UNUSED,
1382 struct wildcard_list *sec ATTRIBUTE_UNUSED,
1383 asection *section,
1384 lang_input_statement_type *file ATTRIBUTE_UNUSED,
1385 void *data)
1386 {
1387 /* Exclude sections that match UNIQUE_SECTION_LIST. */
1388 if (unique_section_p (section))
1389 return;
1390
1391 if (section->output_section == NULL && (section->flags & SEC_READONLY) == 0)
1392 ((lang_output_section_statement_type *) data)->all_input_readonly = FALSE;
1393 }
1394
1395 /* This is passed a file name which must have been seen already and
1396 added to the statement tree. We will see if it has been opened
1397 already and had its symbols read. If not then we'll read it. */
1398
1399 static lang_input_statement_type *
1400 lookup_name (const char *name)
1401 {
1402 lang_input_statement_type *search;
1403
1404 for (search = (lang_input_statement_type *) input_file_chain.head;
1405 search != NULL;
1406 search = (lang_input_statement_type *) search->next_real_file)
1407 {
1408 /* Use the local_sym_name as the name of the file that has
1409 already been loaded as filename might have been transformed
1410 via the search directory lookup mechanism. */
1411 const char * filename = search->local_sym_name;
1412
1413 if (filename == NULL && name == NULL)
1414 return search;
1415 if (filename != NULL
1416 && name != NULL
1417 && strcmp (filename, name) == 0)
1418 break;
1419 }
1420
1421 if (search == NULL)
1422 search = new_afile (name, lang_input_file_is_search_file_enum,
1423 default_target, FALSE);
1424
1425 /* If we have already added this file, or this file is not real
1426 (FIXME: can that ever actually happen?) or the name is NULL
1427 (FIXME: can that ever actually happen?) don't add this file. */
1428 if (search->loaded
1429 || ! search->real
1430 || search->filename == NULL)
1431 return search;
1432
1433 if (! load_symbols (search, NULL))
1434 return NULL;
1435
1436 return search;
1437 }
1438
1439 /* Get the symbols for an input file. */
1440
1441 static bfd_boolean
1442 load_symbols (lang_input_statement_type *entry,
1443 lang_statement_list_type *place)
1444 {
1445 char **matching;
1446
1447 if (entry->loaded)
1448 return TRUE;
1449
1450 ldfile_open_file (entry);
1451
1452 if (! bfd_check_format (entry->the_bfd, bfd_archive)
1453 && ! bfd_check_format_matches (entry->the_bfd, bfd_object, &matching))
1454 {
1455 bfd_error_type err;
1456 lang_statement_list_type *hold;
1457 bfd_boolean bad_load = TRUE;
1458 bfd_boolean save_ldlang_sysrooted_script;
1459
1460 err = bfd_get_error ();
1461
1462 /* See if the emulation has some special knowledge. */
1463 if (ldemul_unrecognized_file (entry))
1464 return TRUE;
1465
1466 if (err == bfd_error_file_ambiguously_recognized)
1467 {
1468 char **p;
1469
1470 einfo (_("%B: file not recognized: %E\n"), entry->the_bfd);
1471 einfo (_("%B: matching formats:"), entry->the_bfd);
1472 for (p = matching; *p != NULL; p++)
1473 einfo (" %s", *p);
1474 einfo ("%F\n");
1475 }
1476 else if (err != bfd_error_file_not_recognized
1477 || place == NULL)
1478 einfo (_("%F%B: file not recognized: %E\n"), entry->the_bfd);
1479 else
1480 bad_load = FALSE;
1481
1482 bfd_close (entry->the_bfd);
1483 entry->the_bfd = NULL;
1484
1485 /* Try to interpret the file as a linker script. */
1486 ldfile_open_command_file (entry->filename);
1487
1488 hold = stat_ptr;
1489 stat_ptr = place;
1490 save_ldlang_sysrooted_script = ldlang_sysrooted_script;
1491 ldlang_sysrooted_script = entry->sysrooted;
1492
1493 ldfile_assumed_script = TRUE;
1494 parser_input = input_script;
1495 yyparse ();
1496 ldfile_assumed_script = FALSE;
1497
1498 ldlang_sysrooted_script = save_ldlang_sysrooted_script;
1499 stat_ptr = hold;
1500
1501 return ! bad_load;
1502 }
1503
1504 if (ldemul_recognized_file (entry))
1505 return TRUE;
1506
1507 /* We don't call ldlang_add_file for an archive. Instead, the
1508 add_symbols entry point will call ldlang_add_file, via the
1509 add_archive_element callback, for each element of the archive
1510 which is used. */
1511 switch (bfd_get_format (entry->the_bfd))
1512 {
1513 default:
1514 break;
1515
1516 case bfd_object:
1517 ldlang_add_file (entry);
1518 if (trace_files || trace_file_tries)
1519 info_msg ("%I\n", entry);
1520 break;
1521
1522 case bfd_archive:
1523 if (entry->whole_archive)
1524 {
1525 bfd *member = NULL;
1526 bfd_boolean loaded = TRUE;
1527
1528 for (;;)
1529 {
1530 member = bfd_openr_next_archived_file (entry->the_bfd, member);
1531
1532 if (member == NULL)
1533 break;
1534
1535 if (! bfd_check_format (member, bfd_object))
1536 {
1537 einfo (_("%F%B: member %B in archive is not an object\n"),
1538 entry->the_bfd, member);
1539 loaded = FALSE;
1540 }
1541
1542 if (! ((*link_info.callbacks->add_archive_element)
1543 (&link_info, member, "--whole-archive")))
1544 abort ();
1545
1546 if (! bfd_link_add_symbols (member, &link_info))
1547 {
1548 einfo (_("%F%B: could not read symbols: %E\n"), member);
1549 loaded = FALSE;
1550 }
1551 }
1552
1553 entry->loaded = loaded;
1554 return loaded;
1555 }
1556 break;
1557 }
1558
1559 if (bfd_link_add_symbols (entry->the_bfd, &link_info))
1560 entry->loaded = TRUE;
1561 else
1562 einfo (_("%F%B: could not read symbols: %E\n"), entry->the_bfd);
1563
1564 return entry->loaded;
1565 }
1566
1567 /* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
1568 may be NULL, indicating that it is a wildcard. Separate
1569 lang_input_section statements are created for each part of the
1570 expansion; they are added after the wild statement S. OUTPUT is
1571 the output section. */
1572
1573 static void
1574 wild (lang_wild_statement_type *s,
1575 const char *target ATTRIBUTE_UNUSED,
1576 lang_output_section_statement_type *output)
1577 {
1578 struct wildcard_list *sec;
1579
1580 walk_wild (s, output_section_callback, output);
1581
1582 for (sec = s->section_list; sec != NULL; sec = sec->next)
1583 {
1584 if (default_common_section != NULL)
1585 break;
1586 if (sec->spec.name != NULL && strcmp (sec->spec.name, "COMMON") == 0)
1587 {
1588 /* Remember the section that common is going to in case we
1589 later get something which doesn't know where to put it. */
1590 default_common_section = output;
1591 }
1592 }
1593 }
1594
1595 /* Return TRUE iff target is the sought target. */
1596
1597 static int
1598 get_target (const bfd_target *target, void *data)
1599 {
1600 const char *sought = data;
1601
1602 return strcmp (target->name, sought) == 0;
1603 }
1604
1605 /* Like strcpy() but convert to lower case as well. */
1606
1607 static void
1608 stricpy (char *dest, char *src)
1609 {
1610 char c;
1611
1612 while ((c = *src++) != 0)
1613 *dest++ = TOLOWER (c);
1614
1615 *dest = 0;
1616 }
1617
1618 /* Remove the first occurrence of needle (if any) in haystack
1619 from haystack. */
1620
1621 static void
1622 strcut (char *haystack, char *needle)
1623 {
1624 haystack = strstr (haystack, needle);
1625
1626 if (haystack)
1627 {
1628 char *src;
1629
1630 for (src = haystack + strlen (needle); *src;)
1631 *haystack++ = *src++;
1632
1633 *haystack = 0;
1634 }
1635 }
1636
1637 /* Compare two target format name strings.
1638 Return a value indicating how "similar" they are. */
1639
1640 static int
1641 name_compare (char *first, char *second)
1642 {
1643 char *copy1;
1644 char *copy2;
1645 int result;
1646
1647 copy1 = xmalloc (strlen (first) + 1);
1648 copy2 = xmalloc (strlen (second) + 1);
1649
1650 /* Convert the names to lower case. */
1651 stricpy (copy1, first);
1652 stricpy (copy2, second);
1653
1654 /* Remove size and endian strings from the name. */
1655 strcut (copy1, "big");
1656 strcut (copy1, "little");
1657 strcut (copy2, "big");
1658 strcut (copy2, "little");
1659
1660 /* Return a value based on how many characters match,
1661 starting from the beginning. If both strings are
1662 the same then return 10 * their length. */
1663 for (result = 0; copy1[result] == copy2[result]; result++)
1664 if (copy1[result] == 0)
1665 {
1666 result *= 10;
1667 break;
1668 }
1669
1670 free (copy1);
1671 free (copy2);
1672
1673 return result;
1674 }
1675
1676 /* Set by closest_target_match() below. */
1677 static const bfd_target *winner;
1678
1679 /* Scan all the valid bfd targets looking for one that has the endianness
1680 requirement that was specified on the command line, and is the nearest
1681 match to the original output target. */
1682
1683 static int
1684 closest_target_match (const bfd_target *target, void *data)
1685 {
1686 const bfd_target *original = data;
1687
1688 if (command_line.endian == ENDIAN_BIG
1689 && target->byteorder != BFD_ENDIAN_BIG)
1690 return 0;
1691
1692 if (command_line.endian == ENDIAN_LITTLE
1693 && target->byteorder != BFD_ENDIAN_LITTLE)
1694 return 0;
1695
1696 /* Must be the same flavour. */
1697 if (target->flavour != original->flavour)
1698 return 0;
1699
1700 /* If we have not found a potential winner yet, then record this one. */
1701 if (winner == NULL)
1702 {
1703 winner = target;
1704 return 0;
1705 }
1706
1707 /* Oh dear, we now have two potential candidates for a successful match.
1708 Compare their names and choose the better one. */
1709 if (name_compare (target->name, original->name)
1710 > name_compare (winner->name, original->name))
1711 winner = target;
1712
1713 /* Keep on searching until wqe have checked them all. */
1714 return 0;
1715 }
1716
1717 /* Return the BFD target format of the first input file. */
1718
1719 static char *
1720 get_first_input_target (void)
1721 {
1722 char *target = NULL;
1723
1724 LANG_FOR_EACH_INPUT_STATEMENT (s)
1725 {
1726 if (s->header.type == lang_input_statement_enum
1727 && s->real)
1728 {
1729 ldfile_open_file (s);
1730
1731 if (s->the_bfd != NULL
1732 && bfd_check_format (s->the_bfd, bfd_object))
1733 {
1734 target = bfd_get_target (s->the_bfd);
1735
1736 if (target != NULL)
1737 break;
1738 }
1739 }
1740 }
1741
1742 return target;
1743 }
1744
1745 const char *
1746 lang_get_output_target (void)
1747 {
1748 const char *target;
1749
1750 /* Has the user told us which output format to use? */
1751 if (output_target != NULL)
1752 return output_target;
1753
1754 /* No - has the current target been set to something other than
1755 the default? */
1756 if (current_target != default_target)
1757 return current_target;
1758
1759 /* No - can we determine the format of the first input file? */
1760 target = get_first_input_target ();
1761 if (target != NULL)
1762 return target;
1763
1764 /* Failed - use the default output target. */
1765 return default_target;
1766 }
1767
1768 /* Open the output file. */
1769
1770 static bfd *
1771 open_output (const char *name)
1772 {
1773 bfd *output;
1774
1775 output_target = lang_get_output_target ();
1776
1777 /* Has the user requested a particular endianness on the command
1778 line? */
1779 if (command_line.endian != ENDIAN_UNSET)
1780 {
1781 const bfd_target *target;
1782 enum bfd_endian desired_endian;
1783
1784 /* Get the chosen target. */
1785 target = bfd_search_for_target (get_target, (void *) output_target);
1786
1787 /* If the target is not supported, we cannot do anything. */
1788 if (target != NULL)
1789 {
1790 if (command_line.endian == ENDIAN_BIG)
1791 desired_endian = BFD_ENDIAN_BIG;
1792 else
1793 desired_endian = BFD_ENDIAN_LITTLE;
1794
1795 /* See if the target has the wrong endianness. This should
1796 not happen if the linker script has provided big and
1797 little endian alternatives, but some scrips don't do
1798 this. */
1799 if (target->byteorder != desired_endian)
1800 {
1801 /* If it does, then see if the target provides
1802 an alternative with the correct endianness. */
1803 if (target->alternative_target != NULL
1804 && (target->alternative_target->byteorder == desired_endian))
1805 output_target = target->alternative_target->name;
1806 else
1807 {
1808 /* Try to find a target as similar as possible to
1809 the default target, but which has the desired
1810 endian characteristic. */
1811 bfd_search_for_target (closest_target_match,
1812 (void *) target);
1813
1814 /* Oh dear - we could not find any targets that
1815 satisfy our requirements. */
1816 if (winner == NULL)
1817 einfo (_("%P: warning: could not find any targets"
1818 " that match endianness requirement\n"));
1819 else
1820 output_target = winner->name;
1821 }
1822 }
1823 }
1824 }
1825
1826 output = bfd_openw (name, output_target);
1827
1828 if (output == NULL)
1829 {
1830 if (bfd_get_error () == bfd_error_invalid_target)
1831 einfo (_("%P%F: target %s not found\n"), output_target);
1832
1833 einfo (_("%P%F: cannot open output file %s: %E\n"), name);
1834 }
1835
1836 delete_output_file_on_failure = TRUE;
1837
1838 #if 0
1839 output->flags |= D_PAGED;
1840 #endif
1841
1842 if (! bfd_set_format (output, bfd_object))
1843 einfo (_("%P%F:%s: can not make object file: %E\n"), name);
1844 if (! bfd_set_arch_mach (output,
1845 ldfile_output_architecture,
1846 ldfile_output_machine))
1847 einfo (_("%P%F:%s: can not set architecture: %E\n"), name);
1848
1849 link_info.hash = bfd_link_hash_table_create (output);
1850 if (link_info.hash == NULL)
1851 einfo (_("%P%F: can not create link hash table: %E\n"));
1852
1853 bfd_set_gp_size (output, g_switch_value);
1854 return output;
1855 }
1856
1857 static void
1858 ldlang_open_output (lang_statement_union_type *statement)
1859 {
1860 switch (statement->header.type)
1861 {
1862 case lang_output_statement_enum:
1863 ASSERT (output_bfd == NULL);
1864 output_bfd = open_output (statement->output_statement.name);
1865 ldemul_set_output_arch ();
1866 if (config.magic_demand_paged && !link_info.relocatable)
1867 output_bfd->flags |= D_PAGED;
1868 else
1869 output_bfd->flags &= ~D_PAGED;
1870 if (config.text_read_only)
1871 output_bfd->flags |= WP_TEXT;
1872 else
1873 output_bfd->flags &= ~WP_TEXT;
1874 if (link_info.traditional_format)
1875 output_bfd->flags |= BFD_TRADITIONAL_FORMAT;
1876 else
1877 output_bfd->flags &= ~BFD_TRADITIONAL_FORMAT;
1878 break;
1879
1880 case lang_target_statement_enum:
1881 current_target = statement->target_statement.target;
1882 break;
1883 default:
1884 break;
1885 }
1886 }
1887
1888 /* Convert between addresses in bytes and sizes in octets.
1889 For currently supported targets, octets_per_byte is always a power
1890 of two, so we can use shifts. */
1891 #define TO_ADDR(X) ((X) >> opb_shift)
1892 #define TO_SIZE(X) ((X) << opb_shift)
1893
1894 /* Support the above. */
1895 static unsigned int opb_shift = 0;
1896
1897 static void
1898 init_opb (void)
1899 {
1900 unsigned x = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
1901 ldfile_output_machine);
1902 opb_shift = 0;
1903 if (x > 1)
1904 while ((x & 1) == 0)
1905 {
1906 x >>= 1;
1907 ++opb_shift;
1908 }
1909 ASSERT (x == 1);
1910 }
1911
1912 /* Open all the input files. */
1913
1914 static void
1915 open_input_bfds (lang_statement_union_type *s, bfd_boolean force)
1916 {
1917 for (; s != NULL; s = s->header.next)
1918 {
1919 switch (s->header.type)
1920 {
1921 case lang_constructors_statement_enum:
1922 open_input_bfds (constructor_list.head, force);
1923 break;
1924 case lang_output_section_statement_enum:
1925 open_input_bfds (s->output_section_statement.children.head, force);
1926 break;
1927 case lang_wild_statement_enum:
1928 /* Maybe we should load the file's symbols. */
1929 if (s->wild_statement.filename
1930 && ! wildcardp (s->wild_statement.filename))
1931 lookup_name (s->wild_statement.filename);
1932 open_input_bfds (s->wild_statement.children.head, force);
1933 break;
1934 case lang_group_statement_enum:
1935 {
1936 struct bfd_link_hash_entry *undefs;
1937
1938 /* We must continually search the entries in the group
1939 until no new symbols are added to the list of undefined
1940 symbols. */
1941
1942 do
1943 {
1944 undefs = link_info.hash->undefs_tail;
1945 open_input_bfds (s->group_statement.children.head, TRUE);
1946 }
1947 while (undefs != link_info.hash->undefs_tail);
1948 }
1949 break;
1950 case lang_target_statement_enum:
1951 current_target = s->target_statement.target;
1952 break;
1953 case lang_input_statement_enum:
1954 if (s->input_statement.real)
1955 {
1956 lang_statement_list_type add;
1957
1958 s->input_statement.target = current_target;
1959
1960 /* If we are being called from within a group, and this
1961 is an archive which has already been searched, then
1962 force it to be researched unless the whole archive
1963 has been loaded already. */
1964 if (force
1965 && !s->input_statement.whole_archive
1966 && s->input_statement.loaded
1967 && bfd_check_format (s->input_statement.the_bfd,
1968 bfd_archive))
1969 s->input_statement.loaded = FALSE;
1970
1971 lang_list_init (&add);
1972
1973 if (! load_symbols (&s->input_statement, &add))
1974 config.make_executable = FALSE;
1975
1976 if (add.head != NULL)
1977 {
1978 *add.tail = s->header.next;
1979 s->header.next = add.head;
1980 }
1981 }
1982 break;
1983 default:
1984 break;
1985 }
1986 }
1987 }
1988
1989 /* If there are [COMMONS] statements, put a wild one into the bss
1990 section. */
1991
1992 static void
1993 lang_reasonable_defaults (void)
1994 {
1995 #if 0
1996 lang_output_section_statement_lookup (".text");
1997 lang_output_section_statement_lookup (".data");
1998
1999 default_common_section = lang_output_section_statement_lookup (".bss");
2000
2001 if (!placed_commons)
2002 {
2003 lang_wild_statement_type *new =
2004 new_stat (lang_wild_statement,
2005 &default_common_section->children);
2006
2007 new->section_name = "COMMON";
2008 new->filename = NULL;
2009 lang_list_init (&new->children);
2010 }
2011 #endif
2012 }
2013
2014 /* Add a symbol to a hash of symbols used in DEFINED (NAME) expressions. */
2015
2016 void
2017 lang_track_definedness (const char *name)
2018 {
2019 if (bfd_hash_lookup (&lang_definedness_table, name, TRUE, FALSE) == NULL)
2020 einfo (_("%P%F: bfd_hash_lookup failed creating symbol %s\n"), name);
2021 }
2022
2023 /* New-function for the definedness hash table. */
2024
2025 static struct bfd_hash_entry *
2026 lang_definedness_newfunc (struct bfd_hash_entry *entry,
2027 struct bfd_hash_table *table ATTRIBUTE_UNUSED,
2028 const char *name ATTRIBUTE_UNUSED)
2029 {
2030 struct lang_definedness_hash_entry *ret
2031 = (struct lang_definedness_hash_entry *) entry;
2032
2033 if (ret == NULL)
2034 ret = (struct lang_definedness_hash_entry *)
2035 bfd_hash_allocate (table, sizeof (struct lang_definedness_hash_entry));
2036
2037 if (ret == NULL)
2038 einfo (_("%P%F: bfd_hash_allocate failed creating symbol %s\n"), name);
2039
2040 ret->iteration = -1;
2041 return &ret->root;
2042 }
2043
2044 /* Return the iteration when the definition of NAME was last updated. A
2045 value of -1 means that the symbol is not defined in the linker script
2046 or the command line, but may be defined in the linker symbol table. */
2047
2048 int
2049 lang_symbol_definition_iteration (const char *name)
2050 {
2051 struct lang_definedness_hash_entry *defentry
2052 = (struct lang_definedness_hash_entry *)
2053 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
2054
2055 /* We've already created this one on the presence of DEFINED in the
2056 script, so it can't be NULL unless something is borked elsewhere in
2057 the code. */
2058 if (defentry == NULL)
2059 FAIL ();
2060
2061 return defentry->iteration;
2062 }
2063
2064 /* Update the definedness state of NAME. */
2065
2066 void
2067 lang_update_definedness (const char *name, struct bfd_link_hash_entry *h)
2068 {
2069 struct lang_definedness_hash_entry *defentry
2070 = (struct lang_definedness_hash_entry *)
2071 bfd_hash_lookup (&lang_definedness_table, name, FALSE, FALSE);
2072
2073 /* We don't keep track of symbols not tested with DEFINED. */
2074 if (defentry == NULL)
2075 return;
2076
2077 /* If the symbol was already defined, and not from an earlier statement
2078 iteration, don't update the definedness iteration, because that'd
2079 make the symbol seem defined in the linker script at this point, and
2080 it wasn't; it was defined in some object. If we do anyway, DEFINED
2081 would start to yield false before this point and the construct "sym =
2082 DEFINED (sym) ? sym : X;" would change sym to X despite being defined
2083 in an object. */
2084 if (h->type != bfd_link_hash_undefined
2085 && h->type != bfd_link_hash_common
2086 && h->type != bfd_link_hash_new
2087 && defentry->iteration == -1)
2088 return;
2089
2090 defentry->iteration = lang_statement_iteration;
2091 }
2092
2093 /* Add the supplied name to the symbol table as an undefined reference.
2094 This is a two step process as the symbol table doesn't even exist at
2095 the time the ld command line is processed. First we put the name
2096 on a list, then, once the output file has been opened, transfer the
2097 name to the symbol table. */
2098
2099 typedef struct bfd_sym_chain ldlang_undef_chain_list_type;
2100
2101 #define ldlang_undef_chain_list_head entry_symbol.next
2102
2103 void
2104 ldlang_add_undef (const char *const name)
2105 {
2106 ldlang_undef_chain_list_type *new =
2107 stat_alloc (sizeof (ldlang_undef_chain_list_type));
2108
2109 new->next = ldlang_undef_chain_list_head;
2110 ldlang_undef_chain_list_head = new;
2111
2112 new->name = xstrdup (name);
2113
2114 if (output_bfd != NULL)
2115 insert_undefined (new->name);
2116 }
2117
2118 /* Insert NAME as undefined in the symbol table. */
2119
2120 static void
2121 insert_undefined (const char *name)
2122 {
2123 struct bfd_link_hash_entry *h;
2124
2125 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, FALSE, TRUE);
2126 if (h == NULL)
2127 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
2128 if (h->type == bfd_link_hash_new)
2129 {
2130 h->type = bfd_link_hash_undefined;
2131 h->u.undef.abfd = NULL;
2132 bfd_link_add_undef (link_info.hash, h);
2133 }
2134 }
2135
2136 /* Run through the list of undefineds created above and place them
2137 into the linker hash table as undefined symbols belonging to the
2138 script file. */
2139
2140 static void
2141 lang_place_undefineds (void)
2142 {
2143 ldlang_undef_chain_list_type *ptr;
2144
2145 for (ptr = ldlang_undef_chain_list_head; ptr != NULL; ptr = ptr->next)
2146 insert_undefined (ptr->name);
2147 }
2148
2149 /* Check for all readonly or some readwrite sections. */
2150
2151 static void
2152 check_input_sections
2153 (lang_statement_union_type *s,
2154 lang_output_section_statement_type *output_section_statement)
2155 {
2156 for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
2157 {
2158 switch (s->header.type)
2159 {
2160 case lang_wild_statement_enum:
2161 walk_wild (&s->wild_statement, check_section_callback,
2162 output_section_statement);
2163 if (! output_section_statement->all_input_readonly)
2164 return;
2165 break;
2166 case lang_constructors_statement_enum:
2167 check_input_sections (constructor_list.head,
2168 output_section_statement);
2169 if (! output_section_statement->all_input_readonly)
2170 return;
2171 break;
2172 case lang_group_statement_enum:
2173 check_input_sections (s->group_statement.children.head,
2174 output_section_statement);
2175 if (! output_section_statement->all_input_readonly)
2176 return;
2177 break;
2178 default:
2179 break;
2180 }
2181 }
2182 }
2183
2184 /* Open input files and attach to output sections. */
2185
2186 static void
2187 map_input_to_output_sections
2188 (lang_statement_union_type *s, const char *target,
2189 lang_output_section_statement_type *output_section_statement)
2190 {
2191 for (; s != NULL; s = s->header.next)
2192 {
2193 switch (s->header.type)
2194 {
2195 case lang_wild_statement_enum:
2196 wild (&s->wild_statement, target, output_section_statement);
2197 break;
2198 case lang_constructors_statement_enum:
2199 map_input_to_output_sections (constructor_list.head,
2200 target,
2201 output_section_statement);
2202 break;
2203 case lang_output_section_statement_enum:
2204 if (s->output_section_statement.constraint)
2205 {
2206 if (s->output_section_statement.constraint == -1)
2207 break;
2208 s->output_section_statement.all_input_readonly = TRUE;
2209 check_input_sections (s->output_section_statement.children.head,
2210 &s->output_section_statement);
2211 if ((s->output_section_statement.all_input_readonly
2212 && s->output_section_statement.constraint == ONLY_IF_RW)
2213 || (!s->output_section_statement.all_input_readonly
2214 && s->output_section_statement.constraint == ONLY_IF_RO))
2215 {
2216 s->output_section_statement.constraint = -1;
2217 break;
2218 }
2219 }
2220
2221 map_input_to_output_sections (s->output_section_statement.children.head,
2222 target,
2223 &s->output_section_statement);
2224 break;
2225 case lang_output_statement_enum:
2226 break;
2227 case lang_target_statement_enum:
2228 target = s->target_statement.target;
2229 break;
2230 case lang_group_statement_enum:
2231 map_input_to_output_sections (s->group_statement.children.head,
2232 target,
2233 output_section_statement);
2234 break;
2235 case lang_data_statement_enum:
2236 /* Make sure that any sections mentioned in the expression
2237 are initialized. */
2238 exp_init_os (s->data_statement.exp);
2239 /* FALLTHROUGH */
2240 case lang_fill_statement_enum:
2241 case lang_input_section_enum:
2242 case lang_object_symbols_statement_enum:
2243 case lang_reloc_statement_enum:
2244 case lang_padding_statement_enum:
2245 case lang_input_statement_enum:
2246 if (output_section_statement != NULL
2247 && output_section_statement->bfd_section == NULL)
2248 init_os (output_section_statement);
2249 break;
2250 case lang_assignment_statement_enum:
2251 if (output_section_statement != NULL
2252 && output_section_statement->bfd_section == NULL)
2253 init_os (output_section_statement);
2254
2255 /* Make sure that any sections mentioned in the assignment
2256 are initialized. */
2257 exp_init_os (s->assignment_statement.exp);
2258 break;
2259 case lang_afile_asection_pair_statement_enum:
2260 FAIL ();
2261 break;
2262 case lang_address_statement_enum:
2263 /* Mark the specified section with the supplied address. */
2264 {
2265 lang_output_section_statement_type *os =
2266 lang_output_section_statement_lookup
2267 (s->address_statement.section_name);
2268
2269 if (os->bfd_section == NULL)
2270 init_os (os);
2271 os->addr_tree = s->address_statement.address;
2272 }
2273 break;
2274 }
2275 }
2276 }
2277
2278 /* An output section might have been removed after its statement was
2279 added. For example, ldemul_before_allocation can remove dynamic
2280 sections if they turn out to be not needed. Clean them up here. */
2281
2282 static void
2283 strip_excluded_output_sections (void)
2284 {
2285 lang_statement_union_type *u;
2286
2287 for (u = lang_output_section_statement.head;
2288 u != NULL;
2289 u = u->output_section_statement.next)
2290 {
2291 lang_output_section_statement_type *os;
2292 asection *s;
2293
2294 os = &u->output_section_statement;
2295 if (os->constraint == -1)
2296 continue;
2297 s = os->bfd_section;
2298 if (s != NULL && (s->flags & SEC_EXCLUDE) != 0)
2299 {
2300 asection **p;
2301
2302 os->bfd_section = NULL;
2303
2304 for (p = &output_bfd->sections; *p; p = &(*p)->next)
2305 if (*p == s)
2306 {
2307 bfd_section_list_remove (output_bfd, p);
2308 output_bfd->section_count--;
2309 break;
2310 }
2311 }
2312 }
2313 }
2314
2315 static void
2316 print_output_section_statement
2317 (lang_output_section_statement_type *output_section_statement)
2318 {
2319 asection *section = output_section_statement->bfd_section;
2320 int len;
2321
2322 if (output_section_statement != abs_output_section)
2323 {
2324 minfo ("\n%s", output_section_statement->name);
2325
2326 if (section != NULL)
2327 {
2328 print_dot = section->vma;
2329
2330 len = strlen (output_section_statement->name);
2331 if (len >= SECTION_NAME_MAP_LENGTH - 1)
2332 {
2333 print_nl ();
2334 len = 0;
2335 }
2336 while (len < SECTION_NAME_MAP_LENGTH)
2337 {
2338 print_space ();
2339 ++len;
2340 }
2341
2342 minfo ("0x%V %W", section->vma, section->_raw_size);
2343
2344 if (output_section_statement->load_base != NULL)
2345 {
2346 bfd_vma addr;
2347
2348 addr = exp_get_abs_int (output_section_statement->load_base, 0,
2349 "load base", lang_final_phase_enum);
2350 minfo (_(" load address 0x%V"), addr);
2351 }
2352 }
2353
2354 print_nl ();
2355 }
2356
2357 print_statement_list (output_section_statement->children.head,
2358 output_section_statement);
2359 }
2360
2361 static void
2362 print_assignment (lang_assignment_statement_type *assignment,
2363 lang_output_section_statement_type *output_section)
2364 {
2365 int i;
2366 etree_value_type result;
2367
2368 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2369 print_space ();
2370
2371 result = exp_fold_tree (assignment->exp->assign.src, output_section,
2372 lang_final_phase_enum, print_dot, &print_dot);
2373 if (result.valid_p)
2374 {
2375 const char *dst;
2376 bfd_vma value;
2377
2378 value = result.value + result.section->bfd_section->vma;
2379 dst = assignment->exp->assign.dst;
2380
2381 minfo ("0x%V", value);
2382 if (dst[0] == '.' && dst[1] == 0)
2383 print_dot = value;
2384 }
2385 else
2386 {
2387 minfo ("*undef* ");
2388 #ifdef BFD64
2389 minfo (" ");
2390 #endif
2391 }
2392
2393 minfo (" ");
2394
2395 exp_print_tree (assignment->exp);
2396
2397 print_nl ();
2398 }
2399
2400 static void
2401 print_input_statement (lang_input_statement_type *statm)
2402 {
2403 if (statm->filename != NULL)
2404 {
2405 fprintf (config.map_file, "LOAD %s\n", statm->filename);
2406 }
2407 }
2408
2409 /* Print all symbols defined in a particular section. This is called
2410 via bfd_link_hash_traverse, or by print_all_symbols. */
2411
2412 static bfd_boolean
2413 print_one_symbol (struct bfd_link_hash_entry *hash_entry, void *ptr)
2414 {
2415 asection *sec = ptr;
2416
2417 if ((hash_entry->type == bfd_link_hash_defined
2418 || hash_entry->type == bfd_link_hash_defweak)
2419 && sec == hash_entry->u.def.section)
2420 {
2421 int i;
2422
2423 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2424 print_space ();
2425 minfo ("0x%V ",
2426 (hash_entry->u.def.value
2427 + hash_entry->u.def.section->output_offset
2428 + hash_entry->u.def.section->output_section->vma));
2429
2430 minfo (" %T\n", hash_entry->root.string);
2431 }
2432
2433 return TRUE;
2434 }
2435
2436 static void
2437 print_all_symbols (sec)
2438 asection *sec;
2439 {
2440 struct fat_user_section_struct *ud = get_userdata (sec);
2441 struct map_symbol_def *def;
2442
2443 *ud->map_symbol_def_tail = 0;
2444 for (def = ud->map_symbol_def_head; def; def = def->next)
2445 print_one_symbol (def->entry, sec);
2446 }
2447
2448 /* Print information about an input section to the map file. */
2449
2450 static void
2451 print_input_section (lang_input_section_type *in)
2452 {
2453 asection *i = in->section;
2454 bfd_size_type size = i->_cooked_size != 0 ? i->_cooked_size : i->_raw_size;
2455
2456 init_opb ();
2457 if (size != 0)
2458 {
2459 int len;
2460 bfd_vma addr;
2461
2462 print_space ();
2463 minfo ("%s", i->name);
2464
2465 len = 1 + strlen (i->name);
2466 if (len >= SECTION_NAME_MAP_LENGTH - 1)
2467 {
2468 print_nl ();
2469 len = 0;
2470 }
2471 while (len < SECTION_NAME_MAP_LENGTH)
2472 {
2473 print_space ();
2474 ++len;
2475 }
2476
2477 if (i->output_section != NULL && (i->flags & SEC_EXCLUDE) == 0)
2478 addr = i->output_section->vma + i->output_offset;
2479 else
2480 {
2481 addr = print_dot;
2482 size = 0;
2483 }
2484
2485 minfo ("0x%V %W %B\n", addr, TO_ADDR (size), i->owner);
2486
2487 if (size != i->_raw_size)
2488 {
2489 len = SECTION_NAME_MAP_LENGTH + 3;
2490 #ifdef BFD64
2491 len += 16;
2492 #else
2493 len += 8;
2494 #endif
2495 while (len > 0)
2496 {
2497 print_space ();
2498 --len;
2499 }
2500
2501 minfo (_("%W (size before relaxing)\n"), i->_raw_size);
2502 }
2503
2504 if (i->output_section != NULL && (i->flags & SEC_EXCLUDE) == 0)
2505 {
2506 if (command_line.reduce_memory_overheads)
2507 bfd_link_hash_traverse (link_info.hash, print_one_symbol, i);
2508 else
2509 print_all_symbols (i);
2510
2511 print_dot = addr + TO_ADDR (size);
2512 }
2513 }
2514 }
2515
2516 static void
2517 print_fill_statement (lang_fill_statement_type *fill)
2518 {
2519 size_t size;
2520 unsigned char *p;
2521 fputs (" FILL mask 0x", config.map_file);
2522 for (p = fill->fill->data, size = fill->fill->size; size != 0; p++, size--)
2523 fprintf (config.map_file, "%02x", *p);
2524 fputs ("\n", config.map_file);
2525 }
2526
2527 static void
2528 print_data_statement (lang_data_statement_type *data)
2529 {
2530 int i;
2531 bfd_vma addr;
2532 bfd_size_type size;
2533 const char *name;
2534
2535 init_opb ();
2536 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2537 print_space ();
2538
2539 addr = data->output_vma;
2540 if (data->output_section != NULL)
2541 addr += data->output_section->vma;
2542
2543 switch (data->type)
2544 {
2545 default:
2546 abort ();
2547 case BYTE:
2548 size = BYTE_SIZE;
2549 name = "BYTE";
2550 break;
2551 case SHORT:
2552 size = SHORT_SIZE;
2553 name = "SHORT";
2554 break;
2555 case LONG:
2556 size = LONG_SIZE;
2557 name = "LONG";
2558 break;
2559 case QUAD:
2560 size = QUAD_SIZE;
2561 name = "QUAD";
2562 break;
2563 case SQUAD:
2564 size = QUAD_SIZE;
2565 name = "SQUAD";
2566 break;
2567 }
2568
2569 minfo ("0x%V %W %s 0x%v", addr, size, name, data->value);
2570
2571 if (data->exp->type.node_class != etree_value)
2572 {
2573 print_space ();
2574 exp_print_tree (data->exp);
2575 }
2576
2577 print_nl ();
2578
2579 print_dot = addr + TO_ADDR (size);
2580 }
2581
2582 /* Print an address statement. These are generated by options like
2583 -Ttext. */
2584
2585 static void
2586 print_address_statement (lang_address_statement_type *address)
2587 {
2588 minfo (_("Address of section %s set to "), address->section_name);
2589 exp_print_tree (address->address);
2590 print_nl ();
2591 }
2592
2593 /* Print a reloc statement. */
2594
2595 static void
2596 print_reloc_statement (lang_reloc_statement_type *reloc)
2597 {
2598 int i;
2599 bfd_vma addr;
2600 bfd_size_type size;
2601
2602 init_opb ();
2603 for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
2604 print_space ();
2605
2606 addr = reloc->output_vma;
2607 if (reloc->output_section != NULL)
2608 addr += reloc->output_section->vma;
2609
2610 size = bfd_get_reloc_size (reloc->howto);
2611
2612 minfo ("0x%V %W RELOC %s ", addr, size, reloc->howto->name);
2613
2614 if (reloc->name != NULL)
2615 minfo ("%s+", reloc->name);
2616 else
2617 minfo ("%s+", reloc->section->name);
2618
2619 exp_print_tree (reloc->addend_exp);
2620
2621 print_nl ();
2622
2623 print_dot = addr + TO_ADDR (size);
2624 }
2625
2626 static void
2627 print_padding_statement (lang_padding_statement_type *s)
2628 {
2629 int len;
2630 bfd_vma addr;
2631
2632 init_opb ();
2633 minfo (" *fill*");
2634
2635 len = sizeof " *fill*" - 1;
2636 while (len < SECTION_NAME_MAP_LENGTH)
2637 {
2638 print_space ();
2639 ++len;
2640 }
2641
2642 addr = s->output_offset;
2643 if (s->output_section != NULL)
2644 addr += s->output_section->vma;
2645 minfo ("0x%V %W ", addr, (bfd_vma) s->size);
2646
2647 if (s->fill->size != 0)
2648 {
2649 size_t size;
2650 unsigned char *p;
2651 for (p = s->fill->data, size = s->fill->size; size != 0; p++, size--)
2652 fprintf (config.map_file, "%02x", *p);
2653 }
2654
2655 print_nl ();
2656
2657 print_dot = addr + TO_ADDR (s->size);
2658 }
2659
2660 static void
2661 print_wild_statement (lang_wild_statement_type *w,
2662 lang_output_section_statement_type *os)
2663 {
2664 struct wildcard_list *sec;
2665
2666 print_space ();
2667
2668 if (w->filenames_sorted)
2669 minfo ("SORT(");
2670 if (w->filename != NULL)
2671 minfo ("%s", w->filename);
2672 else
2673 minfo ("*");
2674 if (w->filenames_sorted)
2675 minfo (")");
2676
2677 minfo ("(");
2678 for (sec = w->section_list; sec; sec = sec->next)
2679 {
2680 if (sec->spec.sorted)
2681 minfo ("SORT(");
2682 if (sec->spec.exclude_name_list != NULL)
2683 {
2684 name_list *tmp;
2685 minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
2686 for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
2687 minfo (" %s", tmp->name);
2688 minfo (") ");
2689 }
2690 if (sec->spec.name != NULL)
2691 minfo ("%s", sec->spec.name);
2692 else
2693 minfo ("*");
2694 if (sec->spec.sorted)
2695 minfo (")");
2696 if (sec->next)
2697 minfo (" ");
2698 }
2699 minfo (")");
2700
2701 print_nl ();
2702
2703 print_statement_list (w->children.head, os);
2704 }
2705
2706 /* Print a group statement. */
2707
2708 static void
2709 print_group (lang_group_statement_type *s,
2710 lang_output_section_statement_type *os)
2711 {
2712 fprintf (config.map_file, "START GROUP\n");
2713 print_statement_list (s->children.head, os);
2714 fprintf (config.map_file, "END GROUP\n");
2715 }
2716
2717 /* Print the list of statements in S.
2718 This can be called for any statement type. */
2719
2720 static void
2721 print_statement_list (lang_statement_union_type *s,
2722 lang_output_section_statement_type *os)
2723 {
2724 while (s != NULL)
2725 {
2726 print_statement (s, os);
2727 s = s->header.next;
2728 }
2729 }
2730
2731 /* Print the first statement in statement list S.
2732 This can be called for any statement type. */
2733
2734 static void
2735 print_statement (lang_statement_union_type *s,
2736 lang_output_section_statement_type *os)
2737 {
2738 switch (s->header.type)
2739 {
2740 default:
2741 fprintf (config.map_file, _("Fail with %d\n"), s->header.type);
2742 FAIL ();
2743 break;
2744 case lang_constructors_statement_enum:
2745 if (constructor_list.head != NULL)
2746 {
2747 if (constructors_sorted)
2748 minfo (" SORT (CONSTRUCTORS)\n");
2749 else
2750 minfo (" CONSTRUCTORS\n");
2751 print_statement_list (constructor_list.head, os);
2752 }
2753 break;
2754 case lang_wild_statement_enum:
2755 print_wild_statement (&s->wild_statement, os);
2756 break;
2757 case lang_address_statement_enum:
2758 print_address_statement (&s->address_statement);
2759 break;
2760 case lang_object_symbols_statement_enum:
2761 minfo (" CREATE_OBJECT_SYMBOLS\n");
2762 break;
2763 case lang_fill_statement_enum:
2764 print_fill_statement (&s->fill_statement);
2765 break;
2766 case lang_data_statement_enum:
2767 print_data_statement (&s->data_statement);
2768 break;
2769 case lang_reloc_statement_enum:
2770 print_reloc_statement (&s->reloc_statement);
2771 break;
2772 case lang_input_section_enum:
2773 print_input_section (&s->input_section);
2774 break;
2775 case lang_padding_statement_enum:
2776 print_padding_statement (&s->padding_statement);
2777 break;
2778 case lang_output_section_statement_enum:
2779 print_output_section_statement (&s->output_section_statement);
2780 break;
2781 case lang_assignment_statement_enum:
2782 print_assignment (&s->assignment_statement, os);
2783 break;
2784 case lang_target_statement_enum:
2785 fprintf (config.map_file, "TARGET(%s)\n", s->target_statement.target);
2786 break;
2787 case lang_output_statement_enum:
2788 minfo ("OUTPUT(%s", s->output_statement.name);
2789 if (output_target != NULL)
2790 minfo (" %s", output_target);
2791 minfo (")\n");
2792 break;
2793 case lang_input_statement_enum:
2794 print_input_statement (&s->input_statement);
2795 break;
2796 case lang_group_statement_enum:
2797 print_group (&s->group_statement, os);
2798 break;
2799 case lang_afile_asection_pair_statement_enum:
2800 FAIL ();
2801 break;
2802 }
2803 }
2804
2805 static void
2806 print_statements (void)
2807 {
2808 print_statement_list (statement_list.head, abs_output_section);
2809 }
2810
2811 /* Print the first N statements in statement list S to STDERR.
2812 If N == 0, nothing is printed.
2813 If N < 0, the entire list is printed.
2814 Intended to be called from GDB. */
2815
2816 void
2817 dprint_statement (lang_statement_union_type *s, int n)
2818 {
2819 FILE *map_save = config.map_file;
2820
2821 config.map_file = stderr;
2822
2823 if (n < 0)
2824 print_statement_list (s, abs_output_section);
2825 else
2826 {
2827 while (s && --n >= 0)
2828 {
2829 print_statement (s, abs_output_section);
2830 s = s->header.next;
2831 }
2832 }
2833
2834 config.map_file = map_save;
2835 }
2836
2837 static void
2838 insert_pad (lang_statement_union_type **ptr,
2839 fill_type *fill,
2840 unsigned int alignment_needed,
2841 asection *output_section,
2842 bfd_vma dot)
2843 {
2844 static fill_type zero_fill = { 1, { 0 } };
2845 lang_statement_union_type *pad;
2846
2847 pad = ((lang_statement_union_type *)
2848 ((char *) ptr - offsetof (lang_statement_union_type, header.next)));
2849 if (ptr != &statement_list.head
2850 && pad->header.type == lang_padding_statement_enum
2851 && pad->padding_statement.output_section == output_section)
2852 {
2853 /* Use the existing pad statement. The above test on output
2854 section is probably redundant, but it doesn't hurt to check. */
2855 }
2856 else
2857 {
2858 /* Make a new padding statement, linked into existing chain. */
2859 pad = stat_alloc (sizeof (lang_padding_statement_type));
2860 pad->header.next = *ptr;
2861 *ptr = pad;
2862 pad->header.type = lang_padding_statement_enum;
2863 pad->padding_statement.output_section = output_section;
2864 if (fill == NULL)
2865 fill = &zero_fill;
2866 pad->padding_statement.fill = fill;
2867 }
2868 pad->padding_statement.output_offset = dot - output_section->vma;
2869 pad->padding_statement.size = alignment_needed;
2870 output_section->_raw_size += alignment_needed;
2871 }
2872
2873 /* Work out how much this section will move the dot point. */
2874
2875 static bfd_vma
2876 size_input_section
2877 (lang_statement_union_type **this_ptr,
2878 lang_output_section_statement_type *output_section_statement,
2879 fill_type *fill,
2880 bfd_vma dot)
2881 {
2882 lang_input_section_type *is = &((*this_ptr)->input_section);
2883 asection *i = is->section;
2884
2885 if (!is->ifile->just_syms_flag && (i->flags & SEC_EXCLUDE) == 0)
2886 {
2887 unsigned int alignment_needed;
2888 asection *o;
2889
2890 /* Align this section first to the input sections requirement,
2891 then to the output section's requirement. If this alignment
2892 is greater than any seen before, then record it too. Perform
2893 the alignment by inserting a magic 'padding' statement. */
2894
2895 if (output_section_statement->subsection_alignment != -1)
2896 i->alignment_power = output_section_statement->subsection_alignment;
2897
2898 o = output_section_statement->bfd_section;
2899 if (o->alignment_power < i->alignment_power)
2900 o->alignment_power = i->alignment_power;
2901
2902 alignment_needed = align_power (dot, i->alignment_power) - dot;
2903
2904 if (alignment_needed != 0)
2905 {
2906 insert_pad (this_ptr, fill, TO_SIZE (alignment_needed), o, dot);
2907 dot += alignment_needed;
2908 }
2909
2910 /* Remember where in the output section this input section goes. */
2911
2912 i->output_offset = dot - o->vma;
2913
2914 /* Mark how big the output section must be to contain this now. */
2915 if (i->_cooked_size != 0)
2916 dot += TO_ADDR (i->_cooked_size);
2917 else
2918 dot += TO_ADDR (i->_raw_size);
2919 o->_raw_size = TO_SIZE (dot - o->vma);
2920 }
2921 else
2922 {
2923 i->output_offset = i->vma - output_section_statement->bfd_section->vma;
2924 }
2925
2926 return dot;
2927 }
2928
2929 #define IGNORE_SECTION(bfd, s) \
2930 (((s->flags & SEC_THREAD_LOCAL) != 0 \
2931 ? (s->flags & (SEC_LOAD | SEC_NEVER_LOAD)) != SEC_LOAD \
2932 : (s->flags & (SEC_ALLOC | SEC_NEVER_LOAD)) != SEC_ALLOC) \
2933 || bfd_section_size (bfd, s) == 0)
2934
2935 /* Check to see if any allocated sections overlap with other allocated
2936 sections. This can happen when the linker script specifically specifies
2937 the output section addresses of the two sections. */
2938
2939 static void
2940 lang_check_section_addresses (void)
2941 {
2942 asection *s;
2943
2944 /* Scan all sections in the output list. */
2945 for (s = output_bfd->sections; s != NULL; s = s->next)
2946 {
2947 asection *os;
2948
2949 /* Ignore sections which are not loaded or which have no contents. */
2950 if (IGNORE_SECTION (output_bfd, s))
2951 continue;
2952
2953 /* Once we reach section 's' stop our seach. This prevents two
2954 warning messages from being produced, one for 'section A overlaps
2955 section B' and one for 'section B overlaps section A'. */
2956 for (os = output_bfd->sections; os != s; os = os->next)
2957 {
2958 bfd_vma s_start;
2959 bfd_vma s_end;
2960 bfd_vma os_start;
2961 bfd_vma os_end;
2962
2963 /* Only consider loadable sections with real contents. */
2964 if (IGNORE_SECTION (output_bfd, os))
2965 continue;
2966
2967 /* We must check the sections' LMA addresses not their
2968 VMA addresses because overlay sections can have
2969 overlapping VMAs but they must have distinct LMAs. */
2970 s_start = bfd_section_lma (output_bfd, s);
2971 os_start = bfd_section_lma (output_bfd, os);
2972 s_end = s_start + TO_ADDR (bfd_section_size (output_bfd, s)) - 1;
2973 os_end = os_start + TO_ADDR (bfd_section_size (output_bfd, os)) - 1;
2974
2975 /* Look for an overlap. */
2976 if ((s_end < os_start) || (s_start > os_end))
2977 continue;
2978
2979 einfo (
2980 _("%X%P: section %s [%V -> %V] overlaps section %s [%V -> %V]\n"),
2981 s->name, s_start, s_end, os->name, os_start, os_end);
2982
2983 /* Once we have found one overlap for this section,
2984 stop looking for others. */
2985 break;
2986 }
2987 }
2988 }
2989
2990 /* Make sure the new address is within the region. We explicitly permit the
2991 current address to be at the exact end of the region when the address is
2992 non-zero, in case the region is at the end of addressable memory and the
2993 calculation wraps around. */
2994
2995 static void
2996 os_region_check (lang_output_section_statement_type *os,
2997 lang_memory_region_type *region,
2998 etree_type *tree,
2999 bfd_vma base)
3000 {
3001 if ((region->current < region->origin
3002 || (region->current - region->origin > region->length))
3003 && ((region->current != region->origin + region->length)
3004 || base == 0))
3005 {
3006 if (tree != NULL)
3007 {
3008 einfo (_("%X%P: address 0x%v of %B section %s"
3009 " is not within region %s\n"),
3010 region->current,
3011 os->bfd_section->owner,
3012 os->bfd_section->name,
3013 region->name);
3014 }
3015 else
3016 {
3017 einfo (_("%X%P: region %s is full (%B section %s)\n"),
3018 region->name,
3019 os->bfd_section->owner,
3020 os->bfd_section->name);
3021 }
3022 /* Reset the region pointer. */
3023 region->current = region->origin;
3024 }
3025 }
3026
3027 /* Set the sizes for all the output sections. */
3028
3029 static bfd_vma
3030 lang_size_sections_1
3031 (lang_statement_union_type *s,
3032 lang_output_section_statement_type *output_section_statement,
3033 lang_statement_union_type **prev,
3034 fill_type *fill,
3035 bfd_vma dot,
3036 bfd_boolean *relax,
3037 bfd_boolean check_regions)
3038 {
3039 /* Size up the sections from their constituent parts. */
3040 for (; s != NULL; s = s->header.next)
3041 {
3042 switch (s->header.type)
3043 {
3044 case lang_output_section_statement_enum:
3045 {
3046 bfd_vma after;
3047 lang_output_section_statement_type *os;
3048
3049 os = &s->output_section_statement;
3050 if (os->bfd_section == NULL)
3051 /* This section was never actually created. */
3052 break;
3053
3054 /* If this is a COFF shared library section, use the size and
3055 address from the input section. FIXME: This is COFF
3056 specific; it would be cleaner if there were some other way
3057 to do this, but nothing simple comes to mind. */
3058 if ((os->bfd_section->flags & SEC_COFF_SHARED_LIBRARY) != 0)
3059 {
3060 asection *input;
3061
3062 if (os->children.head == NULL
3063 || os->children.head->header.next != NULL
3064 || (os->children.head->header.type
3065 != lang_input_section_enum))
3066 einfo (_("%P%X: Internal error on COFF shared library"
3067 " section %s\n"), os->name);
3068
3069 input = os->children.head->input_section.section;
3070 bfd_set_section_vma (os->bfd_section->owner,
3071 os->bfd_section,
3072 bfd_section_vma (input->owner, input));
3073 os->bfd_section->_raw_size = input->_raw_size;
3074 break;
3075 }
3076
3077 if (bfd_is_abs_section (os->bfd_section))
3078 {
3079 /* No matter what happens, an abs section starts at zero. */
3080 ASSERT (os->bfd_section->vma == 0);
3081 }
3082 else
3083 {
3084 if (os->addr_tree == NULL)
3085 {
3086 /* No address specified for this section, get one
3087 from the region specification. */
3088 if (os->region == NULL
3089 || ((os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))
3090 && os->region->name[0] == '*'
3091 && strcmp (os->region->name,
3092 DEFAULT_MEMORY_REGION) == 0))
3093 {
3094 os->region = lang_memory_default (os->bfd_section);
3095 }
3096
3097 /* If a loadable section is using the default memory
3098 region, and some non default memory regions were
3099 defined, issue an error message. */
3100 if (!IGNORE_SECTION (output_bfd, os->bfd_section)
3101 && ! link_info.relocatable
3102 && check_regions
3103 && strcmp (os->region->name,
3104 DEFAULT_MEMORY_REGION) == 0
3105 && lang_memory_region_list != NULL
3106 && (strcmp (lang_memory_region_list->name,
3107 DEFAULT_MEMORY_REGION) != 0
3108 || lang_memory_region_list->next != NULL))
3109 {
3110 /* By default this is an error rather than just a
3111 warning because if we allocate the section to the
3112 default memory region we can end up creating an
3113 excessively large binary, or even seg faulting when
3114 attempting to perform a negative seek. See
3115 sources.redhat.com/ml/binutils/2003-04/msg00423.html
3116 for an example of this. This behaviour can be
3117 overridden by the using the --no-check-sections
3118 switch. */
3119 if (command_line.check_section_addresses)
3120 einfo (_("%P%F: error: no memory region specified"
3121 " for loadable section `%s'\n"),
3122 bfd_get_section_name (output_bfd,
3123 os->bfd_section));
3124 else
3125 einfo (_("%P: warning: no memory region specified"
3126 " for loadable section `%s'\n"),
3127 bfd_get_section_name (output_bfd,
3128 os->bfd_section));
3129 }
3130
3131 dot = os->region->current;
3132
3133 if (os->section_alignment == -1)
3134 {
3135 bfd_vma olddot;
3136
3137 olddot = dot;
3138 dot = align_power (dot,
3139 os->bfd_section->alignment_power);
3140
3141 if (dot != olddot && config.warn_section_align)
3142 einfo (_("%P: warning: changing start of section"
3143 " %s by %u bytes\n"),
3144 os->name, (unsigned int) (dot - olddot));
3145 }
3146 }
3147 else
3148 {
3149 etree_value_type r;
3150
3151 os->processed = -1;
3152 r = exp_fold_tree (os->addr_tree,
3153 abs_output_section,
3154 lang_allocating_phase_enum,
3155 dot, &dot);
3156 os->processed = 0;
3157
3158 if (!r.valid_p)
3159 einfo (_("%F%S: non constant or forward reference"
3160 " address expression for section %s\n"),
3161 os->name);
3162
3163 dot = r.value + r.section->bfd_section->vma;
3164 }
3165
3166 /* The section starts here.
3167 First, align to what the section needs. */
3168
3169 if (os->section_alignment != -1)
3170 dot = align_power (dot, os->section_alignment);
3171
3172 bfd_set_section_vma (0, os->bfd_section, dot);
3173
3174 os->bfd_section->output_offset = 0;
3175 }
3176
3177 lang_size_sections_1 (os->children.head, os, &os->children.head,
3178 os->fill, dot, relax, check_regions);
3179
3180 /* Put the section within the requested block size, or
3181 align at the block boundary. */
3182 after = ((os->bfd_section->vma
3183 + TO_ADDR (os->bfd_section->_raw_size)
3184 + os->block_value - 1)
3185 & - (bfd_vma) os->block_value);
3186
3187 if (bfd_is_abs_section (os->bfd_section))
3188 ASSERT (after == os->bfd_section->vma);
3189 else
3190 os->bfd_section->_raw_size
3191 = TO_SIZE (after - os->bfd_section->vma);
3192
3193 dot = os->bfd_section->vma;
3194 /* .tbss sections effectively have zero size. */
3195 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
3196 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
3197 || link_info.relocatable)
3198 dot += TO_ADDR (os->bfd_section->_raw_size);
3199
3200 os->processed = 1;
3201
3202 if (os->update_dot_tree != 0)
3203 exp_fold_tree (os->update_dot_tree, abs_output_section,
3204 lang_allocating_phase_enum, dot, &dot);
3205
3206 /* Update dot in the region ?
3207 We only do this if the section is going to be allocated,
3208 since unallocated sections do not contribute to the region's
3209 overall size in memory.
3210
3211 If the SEC_NEVER_LOAD bit is not set, it will affect the
3212 addresses of sections after it. We have to update
3213 dot. */
3214 if (os->region != NULL
3215 && ((os->bfd_section->flags & SEC_NEVER_LOAD) == 0
3216 || (os->bfd_section->flags & (SEC_ALLOC | SEC_LOAD))))
3217 {
3218 os->region->current = dot;
3219
3220 if (check_regions)
3221 /* Make sure the new address is within the region. */
3222 os_region_check (os, os->region, os->addr_tree,
3223 os->bfd_section->vma);
3224
3225 /* If there's no load address specified, use the run
3226 region as the load region. */
3227 if (os->lma_region == NULL && os->load_base == NULL)
3228 os->lma_region = os->region;
3229
3230 if (os->lma_region != NULL && os->lma_region != os->region)
3231 {
3232 /* Set load_base, which will be handled later. */
3233 os->load_base = exp_intop (os->lma_region->current);
3234 os->lma_region->current +=
3235 TO_ADDR (os->bfd_section->_raw_size);
3236 if (check_regions)
3237 os_region_check (os, os->lma_region, NULL,
3238 os->bfd_section->lma);
3239 }
3240 }
3241 }
3242 break;
3243
3244 case lang_constructors_statement_enum:
3245 dot = lang_size_sections_1 (constructor_list.head,
3246 output_section_statement,
3247 &s->wild_statement.children.head,
3248 fill, dot, relax, check_regions);
3249 break;
3250
3251 case lang_data_statement_enum:
3252 {
3253 unsigned int size = 0;
3254
3255 s->data_statement.output_vma =
3256 dot - output_section_statement->bfd_section->vma;
3257 s->data_statement.output_section =
3258 output_section_statement->bfd_section;
3259
3260 /* We might refer to provided symbols in the expression, and
3261 need to mark them as needed. */
3262 exp_fold_tree (s->data_statement.exp, abs_output_section,
3263 lang_allocating_phase_enum, dot, &dot);
3264
3265 switch (s->data_statement.type)
3266 {
3267 default:
3268 abort ();
3269 case QUAD:
3270 case SQUAD:
3271 size = QUAD_SIZE;
3272 break;
3273 case LONG:
3274 size = LONG_SIZE;
3275 break;
3276 case SHORT:
3277 size = SHORT_SIZE;
3278 break;
3279 case BYTE:
3280 size = BYTE_SIZE;
3281 break;
3282 }
3283 if (size < TO_SIZE ((unsigned) 1))
3284 size = TO_SIZE ((unsigned) 1);
3285 dot += TO_ADDR (size);
3286 output_section_statement->bfd_section->_raw_size += size;
3287 /* The output section gets contents, and then we inspect for
3288 any flags set in the input script which override any ALLOC. */
3289 output_section_statement->bfd_section->flags |= SEC_HAS_CONTENTS;
3290 if (!(output_section_statement->flags & SEC_NEVER_LOAD))
3291 {
3292 output_section_statement->bfd_section->flags |=
3293 SEC_ALLOC | SEC_LOAD;
3294 }
3295 }
3296 break;
3297
3298 case lang_reloc_statement_enum:
3299 {
3300 int size;
3301
3302 s->reloc_statement.output_vma =
3303 dot - output_section_statement->bfd_section->vma;
3304 s->reloc_statement.output_section =
3305 output_section_statement->bfd_section;
3306 size = bfd_get_reloc_size (s->reloc_statement.howto);
3307 dot += TO_ADDR (size);
3308 output_section_statement->bfd_section->_raw_size += size;
3309 }
3310 break;
3311
3312 case lang_wild_statement_enum:
3313
3314 dot = lang_size_sections_1 (s->wild_statement.children.head,
3315 output_section_statement,
3316 &s->wild_statement.children.head,
3317 fill, dot, relax, check_regions);
3318
3319 break;
3320
3321 case lang_object_symbols_statement_enum:
3322 link_info.create_object_symbols_section =
3323 output_section_statement->bfd_section;
3324 break;
3325 case lang_output_statement_enum:
3326 case lang_target_statement_enum:
3327 break;
3328 case lang_input_section_enum:
3329 {
3330 asection *i;
3331
3332 i = (*prev)->input_section.section;
3333 if (! relax)
3334 {
3335 if (i->_cooked_size == 0)
3336 i->_cooked_size = i->_raw_size;
3337 }
3338 else
3339 {
3340 bfd_boolean again;
3341
3342 if (! bfd_relax_section (i->owner, i, &link_info, &again))
3343 einfo (_("%P%F: can't relax section: %E\n"));
3344 if (again)
3345 *relax = TRUE;
3346 }
3347 dot = size_input_section (prev, output_section_statement,
3348 output_section_statement->fill, dot);
3349 }
3350 break;
3351 case lang_input_statement_enum:
3352 break;
3353 case lang_fill_statement_enum:
3354 s->fill_statement.output_section =
3355 output_section_statement->bfd_section;
3356
3357 fill = s->fill_statement.fill;
3358 break;
3359 case lang_assignment_statement_enum:
3360 {
3361 bfd_vma newdot = dot;
3362
3363 exp_fold_tree (s->assignment_statement.exp,
3364 output_section_statement,
3365 lang_allocating_phase_enum,
3366 dot,
3367 &newdot);
3368
3369 if (newdot != dot)
3370 {
3371 if (output_section_statement == abs_output_section)
3372 {
3373 /* If we don't have an output section, then just adjust
3374 the default memory address. */
3375 lang_memory_region_lookup (DEFAULT_MEMORY_REGION,
3376 FALSE)->current = newdot;
3377 }
3378 else
3379 {
3380 /* Insert a pad after this statement. We can't
3381 put the pad before when relaxing, in case the
3382 assignment references dot. */
3383 insert_pad (&s->header.next, fill, TO_SIZE (newdot - dot),
3384 output_section_statement->bfd_section, dot);
3385
3386 /* Don't neuter the pad below when relaxing. */
3387 s = s->header.next;
3388 }
3389
3390 /* If dot is advanced, this implies that the section should
3391 have space allocated to it, unless the user has explicitly
3392 stated that the section should never be loaded. */
3393 if (!(output_section_statement->flags
3394 & (SEC_NEVER_LOAD | SEC_ALLOC)))
3395 output_section_statement->bfd_section->flags |= SEC_ALLOC;
3396
3397 dot = newdot;
3398 }
3399 }
3400 break;
3401
3402 case lang_padding_statement_enum:
3403 /* If this is the first time lang_size_sections is called,
3404 we won't have any padding statements. If this is the
3405 second or later passes when relaxing, we should allow
3406 padding to shrink. If padding is needed on this pass, it
3407 will be added back in. */
3408 s->padding_statement.size = 0;
3409
3410 /* Make sure output_offset is valid. If relaxation shrinks
3411 the section and this pad isn't needed, it's possible to
3412 have output_offset larger than the final size of the
3413 section. bfd_set_section_contents will complain even for
3414 a pad size of zero. */
3415 s->padding_statement.output_offset
3416 = dot - output_section_statement->bfd_section->vma;
3417 break;
3418
3419 case lang_group_statement_enum:
3420 dot = lang_size_sections_1 (s->group_statement.children.head,
3421 output_section_statement,
3422 &s->group_statement.children.head,
3423 fill, dot, relax, check_regions);
3424 break;
3425
3426 default:
3427 FAIL ();
3428 break;
3429
3430 /* We can only get here when relaxing is turned on. */
3431 case lang_address_statement_enum:
3432 break;
3433 }
3434 prev = &s->header.next;
3435 }
3436 return dot;
3437 }
3438
3439 bfd_vma
3440 lang_size_sections
3441 (lang_statement_union_type *s,
3442 lang_output_section_statement_type *output_section_statement,
3443 lang_statement_union_type **prev,
3444 fill_type *fill,
3445 bfd_vma dot,
3446 bfd_boolean *relax,
3447 bfd_boolean check_regions)
3448 {
3449 bfd_vma result;
3450 asection *o;
3451
3452 /* Callers of exp_fold_tree need to increment this. */
3453 lang_statement_iteration++;
3454
3455 exp_data_seg.phase = exp_dataseg_none;
3456 result = lang_size_sections_1 (s, output_section_statement, prev, fill,
3457 dot, relax, check_regions);
3458 if (exp_data_seg.phase == exp_dataseg_end_seen
3459 && link_info.relro && exp_data_seg.relro_end)
3460 {
3461 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END pair was seen, try
3462 to put exp_data_seg.relro on a (common) page boundary. */
3463
3464 exp_data_seg.phase = exp_dataseg_relro_adjust;
3465 result = lang_size_sections_1 (s, output_section_statement, prev, fill,
3466 dot, relax, check_regions);
3467 link_info.relro_start = exp_data_seg.base;
3468 link_info.relro_end = exp_data_seg.relro_end;
3469 }
3470 else if (exp_data_seg.phase == exp_dataseg_end_seen)
3471 {
3472 /* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
3473 a page could be saved in the data segment. */
3474 bfd_vma first, last;
3475
3476 first = -exp_data_seg.base & (exp_data_seg.pagesize - 1);
3477 last = exp_data_seg.end & (exp_data_seg.pagesize - 1);
3478 if (first && last
3479 && ((exp_data_seg.base & ~(exp_data_seg.pagesize - 1))
3480 != (exp_data_seg.end & ~(exp_data_seg.pagesize - 1)))
3481 && first + last <= exp_data_seg.pagesize)
3482 {
3483 exp_data_seg.phase = exp_dataseg_adjust;
3484 lang_statement_iteration++;
3485 result = lang_size_sections_1 (s, output_section_statement, prev,
3486 fill, dot, relax, check_regions);
3487 }
3488 }
3489
3490 /* Some backend relaxers want to refer to the output section size. Give
3491 them a section size that does not change on the next call while they
3492 relax. We can't set this at top because lang_reset_memory_regions
3493 which is called before we get here, sets _raw_size to 0 on relaxing
3494 rounds. */
3495 for (o = output_bfd->sections; o != NULL; o = o->next)
3496 o->_cooked_size = o->_raw_size;
3497
3498 return result;
3499 }
3500
3501 /* Worker function for lang_do_assignments. Recursiveness goes here. */
3502
3503 static bfd_vma
3504 lang_do_assignments_1
3505 (lang_statement_union_type *s,
3506 lang_output_section_statement_type *output_section_statement,
3507 fill_type *fill,
3508 bfd_vma dot)
3509 {
3510 for (; s != NULL; s = s->header.next)
3511 {
3512 switch (s->header.type)
3513 {
3514 case lang_constructors_statement_enum:
3515 dot = lang_do_assignments_1 (constructor_list.head,
3516 output_section_statement,
3517 fill,
3518 dot);
3519 break;
3520
3521 case lang_output_section_statement_enum:
3522 {
3523 lang_output_section_statement_type *os;
3524
3525 os = &(s->output_section_statement);
3526 if (os->bfd_section != NULL)
3527 {
3528 dot = os->bfd_section->vma;
3529 lang_do_assignments_1 (os->children.head, os, os->fill, dot);
3530 /* .tbss sections effectively have zero size. */
3531 if ((os->bfd_section->flags & SEC_HAS_CONTENTS) != 0
3532 || (os->bfd_section->flags & SEC_THREAD_LOCAL) == 0
3533 || link_info.relocatable)
3534 dot += TO_ADDR (os->bfd_section->_raw_size);
3535 }
3536 if (os->load_base)
3537 {
3538 /* If nothing has been placed into the output section then
3539 it won't have a bfd_section. */
3540 if (os->bfd_section)
3541 {
3542 os->bfd_section->lma
3543 = exp_get_abs_int (os->load_base, 0, "load base",
3544 lang_final_phase_enum);
3545 }
3546 }
3547 }
3548 break;
3549 case lang_wild_statement_enum:
3550
3551 dot = lang_do_assignments_1 (s->wild_statement.children.head,
3552 output_section_statement,
3553 fill, dot);
3554
3555 break;
3556
3557 case lang_object_symbols_statement_enum:
3558 case lang_output_statement_enum:
3559 case lang_target_statement_enum:
3560 #if 0
3561 case lang_common_statement_enum:
3562 #endif
3563 break;
3564 case lang_data_statement_enum:
3565 {
3566 etree_value_type value;
3567
3568 value = exp_fold_tree (s->data_statement.exp,
3569 abs_output_section,
3570 lang_final_phase_enum, dot, &dot);
3571 if (!value.valid_p)
3572 einfo (_("%F%P: invalid data statement\n"));
3573 s->data_statement.value
3574 = value.value + value.section->bfd_section->vma;
3575 }
3576 {
3577 unsigned int size;
3578 switch (s->data_statement.type)
3579 {
3580 default:
3581 abort ();
3582 case QUAD:
3583 case SQUAD:
3584 size = QUAD_SIZE;
3585 break;
3586 case LONG:
3587 size = LONG_SIZE;
3588 break;
3589 case SHORT:
3590 size = SHORT_SIZE;
3591 break;
3592 case BYTE:
3593 size = BYTE_SIZE;
3594 break;
3595 }
3596 if (size < TO_SIZE ((unsigned) 1))
3597 size = TO_SIZE ((unsigned) 1);
3598 dot += TO_ADDR (size);
3599 }
3600 break;
3601
3602 case lang_reloc_statement_enum:
3603 {
3604 etree_value_type value;
3605
3606 value = exp_fold_tree (s->reloc_statement.addend_exp,
3607 abs_output_section,
3608 lang_final_phase_enum, dot, &dot);
3609 s->reloc_statement.addend_value = value.value;
3610 if (!value.valid_p)
3611 einfo (_("%F%P: invalid reloc statement\n"));
3612 }
3613 dot += TO_ADDR (bfd_get_reloc_size (s->reloc_statement.howto));
3614 break;
3615
3616 case lang_input_section_enum:
3617 {
3618 asection *in = s->input_section.section;
3619
3620 if ((in->flags & SEC_EXCLUDE) == 0)
3621 {
3622 if (in->_cooked_size != 0)
3623 dot += TO_ADDR (in->_cooked_size);
3624 else
3625 dot += TO_ADDR (in->_raw_size);
3626 }
3627 }
3628 break;
3629
3630 case lang_input_statement_enum:
3631 break;
3632 case lang_fill_statement_enum:
3633 fill = s->fill_statement.fill;
3634 break;
3635 case lang_assignment_statement_enum:
3636 {
3637 exp_fold_tree (s->assignment_statement.exp,
3638 output_section_statement,
3639 lang_final_phase_enum,
3640 dot,
3641 &dot);
3642 }
3643
3644 break;
3645 case lang_padding_statement_enum:
3646 dot += TO_ADDR (s->padding_statement.size);
3647 break;
3648
3649 case lang_group_statement_enum:
3650 dot = lang_do_assignments_1 (s->group_statement.children.head,
3651 output_section_statement,
3652 fill, dot);
3653
3654 break;
3655
3656 default:
3657 FAIL ();
3658 break;
3659 case lang_address_statement_enum:
3660 break;
3661 }
3662
3663 }
3664 return dot;
3665 }
3666
3667 void
3668 lang_do_assignments
3669 (lang_statement_union_type *s,
3670 lang_output_section_statement_type *output_section_statement,
3671 fill_type *fill,
3672 bfd_vma dot)
3673 {
3674 /* Callers of exp_fold_tree need to increment this. */
3675 lang_statement_iteration++;
3676 lang_do_assignments_1 (s, output_section_statement, fill, dot);
3677 }
3678
3679 /* Fix any .startof. or .sizeof. symbols. When the assemblers see the
3680 operator .startof. (section_name), it produces an undefined symbol
3681 .startof.section_name. Similarly, when it sees
3682 .sizeof. (section_name), it produces an undefined symbol
3683 .sizeof.section_name. For all the output sections, we look for
3684 such symbols, and set them to the correct value. */
3685
3686 static void
3687 lang_set_startof (void)
3688 {
3689 asection *s;
3690
3691 if (link_info.relocatable)
3692 return;
3693
3694 for (s = output_bfd->sections; s != NULL; s = s->next)
3695 {
3696 const char *secname;
3697 char *buf;
3698 struct bfd_link_hash_entry *h;
3699
3700 secname = bfd_get_section_name (output_bfd, s);
3701 buf = xmalloc (10 + strlen (secname));
3702
3703 sprintf (buf, ".startof.%s", secname);
3704 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
3705 if (h != NULL && h->type == bfd_link_hash_undefined)
3706 {
3707 h->type = bfd_link_hash_defined;
3708 h->u.def.value = bfd_get_section_vma (output_bfd, s);
3709 h->u.def.section = bfd_abs_section_ptr;
3710 }
3711
3712 sprintf (buf, ".sizeof.%s", secname);
3713 h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
3714 if (h != NULL && h->type == bfd_link_hash_undefined)
3715 {
3716 h->type = bfd_link_hash_defined;
3717 if (s->_cooked_size != 0)
3718 h->u.def.value = TO_ADDR (s->_cooked_size);
3719 else
3720 h->u.def.value = TO_ADDR (s->_raw_size);
3721 h->u.def.section = bfd_abs_section_ptr;
3722 }
3723
3724 free (buf);
3725 }
3726 }
3727
3728 static void
3729 lang_finish (void)
3730 {
3731 struct bfd_link_hash_entry *h;
3732 bfd_boolean warn;
3733
3734 if (link_info.relocatable || link_info.shared)
3735 warn = FALSE;
3736 else
3737 warn = TRUE;
3738
3739 if (entry_symbol.name == NULL)
3740 {
3741 /* No entry has been specified. Look for start, but don't warn
3742 if we don't find it. */
3743 entry_symbol.name = "start";
3744 warn = FALSE;
3745 }
3746
3747 h = bfd_link_hash_lookup (link_info.hash, entry_symbol.name,
3748 FALSE, FALSE, TRUE);
3749 if (h != NULL
3750 && (h->type == bfd_link_hash_defined
3751 || h->type == bfd_link_hash_defweak)
3752 && h->u.def.section->output_section != NULL)
3753 {
3754 bfd_vma val;
3755
3756 val = (h->u.def.value
3757 + bfd_get_section_vma (output_bfd,
3758 h->u.def.section->output_section)
3759 + h->u.def.section->output_offset);
3760 if (! bfd_set_start_address (output_bfd, val))
3761 einfo (_("%P%F:%s: can't set start address\n"), entry_symbol.name);
3762 }
3763 else
3764 {
3765 bfd_vma val;
3766 const char *send;
3767
3768 /* We couldn't find the entry symbol. Try parsing it as a
3769 number. */
3770 val = bfd_scan_vma (entry_symbol.name, &send, 0);
3771 if (*send == '\0')
3772 {
3773 if (! bfd_set_start_address (output_bfd, val))
3774 einfo (_("%P%F: can't set start address\n"));
3775 }
3776 else
3777 {
3778 asection *ts;
3779
3780 /* Can't find the entry symbol, and it's not a number. Use
3781 the first address in the text section. */
3782 ts = bfd_get_section_by_name (output_bfd, entry_section);
3783 if (ts != NULL)
3784 {
3785 if (warn)
3786 einfo (_("%P: warning: cannot find entry symbol %s;"
3787 " defaulting to %V\n"),
3788 entry_symbol.name,
3789 bfd_get_section_vma (output_bfd, ts));
3790 if (! bfd_set_start_address (output_bfd,
3791 bfd_get_section_vma (output_bfd,
3792 ts)))
3793 einfo (_("%P%F: can't set start address\n"));
3794 }
3795 else
3796 {
3797 if (warn)
3798 einfo (_("%P: warning: cannot find entry symbol %s;"
3799 " not setting start address\n"),
3800 entry_symbol.name);
3801 }
3802 }
3803 }
3804
3805 /* Don't bfd_hash_table_free (&lang_definedness_table);
3806 map file output may result in a call of lang_track_definedness. */
3807 }
3808
3809 /* This is a small function used when we want to ignore errors from
3810 BFD. */
3811
3812 static void
3813 ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED, ...)
3814 {
3815 /* Don't do anything. */
3816 }
3817
3818 /* Check that the architecture of all the input files is compatible
3819 with the output file. Also call the backend to let it do any
3820 other checking that is needed. */
3821
3822 static void
3823 lang_check (void)
3824 {
3825 lang_statement_union_type *file;
3826 bfd *input_bfd;
3827 const bfd_arch_info_type *compatible;
3828
3829 for (file = file_chain.head; file != NULL; file = file->input_statement.next)
3830 {
3831 input_bfd = file->input_statement.the_bfd;
3832 compatible
3833 = bfd_arch_get_compatible (input_bfd, output_bfd,
3834 command_line.accept_unknown_input_arch);
3835
3836 /* In general it is not possible to perform a relocatable
3837 link between differing object formats when the input
3838 file has relocations, because the relocations in the
3839 input format may not have equivalent representations in
3840 the output format (and besides BFD does not translate
3841 relocs for other link purposes than a final link). */
3842 if ((link_info.relocatable || link_info.emitrelocations)
3843 && (compatible == NULL
3844 || bfd_get_flavour (input_bfd) != bfd_get_flavour (output_bfd))
3845 && (bfd_get_file_flags (input_bfd) & HAS_RELOC) != 0)
3846 {
3847 einfo (_("%P%F: Relocatable linking with relocations from"
3848 " format %s (%B) to format %s (%B) is not supported\n"),
3849 bfd_get_target (input_bfd), input_bfd,
3850 bfd_get_target (output_bfd), output_bfd);
3851 /* einfo with %F exits. */
3852 }
3853
3854 if (compatible == NULL)
3855 {
3856 if (command_line.warn_mismatch)
3857 einfo (_("%P: warning: %s architecture of input file `%B'"
3858 " is incompatible with %s output\n"),
3859 bfd_printable_name (input_bfd), input_bfd,
3860 bfd_printable_name (output_bfd));
3861 }
3862 else if (bfd_count_sections (input_bfd))
3863 {
3864 /* If the input bfd has no contents, it shouldn't set the
3865 private data of the output bfd. */
3866
3867 bfd_error_handler_type pfn = NULL;
3868
3869 /* If we aren't supposed to warn about mismatched input
3870 files, temporarily set the BFD error handler to a
3871 function which will do nothing. We still want to call
3872 bfd_merge_private_bfd_data, since it may set up
3873 information which is needed in the output file. */
3874 if (! command_line.warn_mismatch)
3875 pfn = bfd_set_error_handler (ignore_bfd_errors);
3876 if (! bfd_merge_private_bfd_data (input_bfd, output_bfd))
3877 {
3878 if (command_line.warn_mismatch)
3879 einfo (_("%P%X: failed to merge target specific data"
3880 " of file %B\n"), input_bfd);
3881 }
3882 if (! command_line.warn_mismatch)
3883 bfd_set_error_handler (pfn);
3884 }
3885 }
3886 }
3887
3888 /* Look through all the global common symbols and attach them to the
3889 correct section. The -sort-common command line switch may be used
3890 to roughly sort the entries by size. */
3891
3892 static void
3893 lang_common (void)
3894 {
3895 if (command_line.inhibit_common_definition)
3896 return;
3897 if (link_info.relocatable
3898 && ! command_line.force_common_definition)
3899 return;
3900
3901 if (! config.sort_common)
3902 bfd_link_hash_traverse (link_info.hash, lang_one_common, NULL);
3903 else
3904 {
3905 int power;
3906
3907 for (power = 4; power >= 0; power--)
3908 bfd_link_hash_traverse (link_info.hash, lang_one_common, &power);
3909 }
3910 }
3911
3912 /* Place one common symbol in the correct section. */
3913
3914 static bfd_boolean
3915 lang_one_common (struct bfd_link_hash_entry *h, void *info)
3916 {
3917 unsigned int power_of_two;
3918 bfd_vma size;
3919 asection *section;
3920
3921 if (h->type != bfd_link_hash_common)
3922 return TRUE;
3923
3924 size = h->u.c.size;
3925 power_of_two = h->u.c.p->alignment_power;
3926
3927 if (config.sort_common
3928 && power_of_two < (unsigned int) *(int *) info)
3929 return TRUE;
3930
3931 section = h->u.c.p->section;
3932
3933 /* Increase the size of the section to align the common sym. */
3934 section->_cooked_size += ((bfd_vma) 1 << (power_of_two + opb_shift)) - 1;
3935 section->_cooked_size &= (- (bfd_vma) 1 << (power_of_two + opb_shift));
3936
3937 /* Adjust the alignment if necessary. */
3938 if (power_of_two > section->alignment_power)
3939 section->alignment_power = power_of_two;
3940
3941 /* Change the symbol from common to defined. */
3942 h->type = bfd_link_hash_defined;
3943 h->u.def.section = section;
3944 h->u.def.value = section->_cooked_size;
3945
3946 /* Increase the size of the section. */
3947 section->_cooked_size += size;
3948
3949 /* Make sure the section is allocated in memory, and make sure that
3950 it is no longer a common section. */
3951 section->flags |= SEC_ALLOC;
3952 section->flags &= ~SEC_IS_COMMON;
3953
3954 if (config.map_file != NULL)
3955 {
3956 static bfd_boolean header_printed;
3957 int len;
3958 char *name;
3959 char buf[50];
3960
3961 if (! header_printed)
3962 {
3963 minfo (_("\nAllocating common symbols\n"));
3964 minfo (_("Common symbol size file\n\n"));
3965 header_printed = TRUE;
3966 }
3967
3968 name = demangle (h->root.string);
3969 minfo ("%s", name);
3970 len = strlen (name);
3971 free (name);
3972
3973 if (len >= 19)
3974 {
3975 print_nl ();
3976 len = 0;
3977 }
3978 while (len < 20)
3979 {
3980 print_space ();
3981 ++len;
3982 }
3983
3984 minfo ("0x");
3985 if (size <= 0xffffffff)
3986 sprintf (buf, "%lx", (unsigned long) size);
3987 else
3988 sprintf_vma (buf, size);
3989 minfo ("%s", buf);
3990 len = strlen (buf);
3991
3992 while (len < 16)
3993 {
3994 print_space ();
3995 ++len;
3996 }
3997
3998 minfo ("%B\n", section->owner);
3999 }
4000
4001 return TRUE;
4002 }
4003
4004 /* Run through the input files and ensure that every input section has
4005 somewhere to go. If one is found without a destination then create
4006 an input request and place it into the statement tree. */
4007
4008 static void
4009 lang_place_orphans (void)
4010 {
4011 LANG_FOR_EACH_INPUT_STATEMENT (file)
4012 {
4013 asection *s;
4014
4015 for (s = file->the_bfd->sections; s != NULL; s = s->next)
4016 {
4017 if (s->output_section == NULL)
4018 {
4019 /* This section of the file is not attached, root
4020 around for a sensible place for it to go. */
4021
4022 if (file->just_syms_flag)
4023 abort ();
4024
4025 if ((s->flags & SEC_EXCLUDE) != 0)
4026 s->output_section = bfd_abs_section_ptr;
4027 else if (strcmp (s->name, "COMMON") == 0)
4028 {
4029 /* This is a lonely common section which must have
4030 come from an archive. We attach to the section
4031 with the wildcard. */
4032 if (! link_info.relocatable
4033 || command_line.force_common_definition)
4034 {
4035 if (default_common_section == NULL)
4036 {
4037 #if 0
4038 /* This message happens when using the
4039 svr3.ifile linker script, so I have
4040 disabled it. */
4041 info_msg (_("%P: no [COMMON] command,"
4042 " defaulting to .bss\n"));
4043 #endif
4044 default_common_section =
4045 lang_output_section_statement_lookup (".bss");
4046
4047 }
4048 lang_add_section (&default_common_section->children, s,
4049 default_common_section, file);
4050 }
4051 }
4052 else if (ldemul_place_orphan (file, s))
4053 ;
4054 else
4055 {
4056 lang_output_section_statement_type *os;
4057
4058 os = lang_output_section_statement_lookup (s->name);
4059 lang_add_section (&os->children, s, os, file);
4060 }
4061 }
4062 }
4063 }
4064 }
4065
4066 void
4067 lang_set_flags (lang_memory_region_type *ptr, const char *flags, int invert)
4068 {
4069 flagword *ptr_flags;
4070
4071 ptr_flags = invert ? &ptr->not_flags : &ptr->flags;
4072 while (*flags)
4073 {
4074 switch (*flags)
4075 {
4076 case 'A': case 'a':
4077 *ptr_flags |= SEC_ALLOC;
4078 break;
4079
4080 case 'R': case 'r':
4081 *ptr_flags |= SEC_READONLY;
4082 break;
4083
4084 case 'W': case 'w':
4085 *ptr_flags |= SEC_DATA;
4086 break;
4087
4088 case 'X': case 'x':
4089 *ptr_flags |= SEC_CODE;
4090 break;
4091
4092 case 'L': case 'l':
4093 case 'I': case 'i':
4094 *ptr_flags |= SEC_LOAD;
4095 break;
4096
4097 default:
4098 einfo (_("%P%F: invalid syntax in flags\n"));
4099 break;
4100 }
4101 flags++;
4102 }
4103 }
4104
4105 /* Call a function on each input file. This function will be called
4106 on an archive, but not on the elements. */
4107
4108 void
4109 lang_for_each_input_file (void (*func) (lang_input_statement_type *))
4110 {
4111 lang_input_statement_type *f;
4112
4113 for (f = (lang_input_statement_type *) input_file_chain.head;
4114 f != NULL;
4115 f = (lang_input_statement_type *) f->next_real_file)
4116 func (f);
4117 }
4118
4119 /* Call a function on each file. The function will be called on all
4120 the elements of an archive which are included in the link, but will
4121 not be called on the archive file itself. */
4122
4123 void
4124 lang_for_each_file (void (*func) (lang_input_statement_type *))
4125 {
4126 LANG_FOR_EACH_INPUT_STATEMENT (f)
4127 {
4128 func (f);
4129 }
4130 }
4131
4132 void
4133 ldlang_add_file (lang_input_statement_type *entry)
4134 {
4135 bfd **pp;
4136
4137 lang_statement_append (&file_chain,
4138 (lang_statement_union_type *) entry,
4139 &entry->next);
4140
4141 /* The BFD linker needs to have a list of all input BFDs involved in
4142 a link. */
4143 ASSERT (entry->the_bfd->link_next == NULL);
4144 ASSERT (entry->the_bfd != output_bfd);
4145 for (pp = &link_info.input_bfds; *pp != NULL; pp = &(*pp)->link_next)
4146 ;
4147 *pp = entry->the_bfd;
4148 entry->the_bfd->usrdata = entry;
4149 bfd_set_gp_size (entry->the_bfd, g_switch_value);
4150
4151 /* Look through the sections and check for any which should not be
4152 included in the link. We need to do this now, so that we can
4153 notice when the backend linker tries to report multiple
4154 definition errors for symbols which are in sections we aren't
4155 going to link. FIXME: It might be better to entirely ignore
4156 symbols which are defined in sections which are going to be
4157 discarded. This would require modifying the backend linker for
4158 each backend which might set the SEC_LINK_ONCE flag. If we do
4159 this, we should probably handle SEC_EXCLUDE in the same way. */
4160
4161 bfd_map_over_sections (entry->the_bfd, section_already_linked, entry);
4162 }
4163
4164 void
4165 lang_add_output (const char *name, int from_script)
4166 {
4167 /* Make -o on command line override OUTPUT in script. */
4168 if (!had_output_filename || !from_script)
4169 {
4170 output_filename = name;
4171 had_output_filename = TRUE;
4172 }
4173 }
4174
4175 static lang_output_section_statement_type *current_section;
4176
4177 static int
4178 topower (int x)
4179 {
4180 unsigned int i = 1;
4181 int l;
4182
4183 if (x < 0)
4184 return -1;
4185
4186 for (l = 0; l < 32; l++)
4187 {
4188 if (i >= (unsigned int) x)
4189 return l;
4190 i <<= 1;
4191 }
4192
4193 return 0;
4194 }
4195
4196 lang_output_section_statement_type *
4197 lang_enter_output_section_statement (const char *output_section_statement_name,
4198 etree_type *address_exp,
4199 enum section_type sectype,
4200 etree_type *align,
4201 etree_type *subalign,
4202 etree_type *ebase,
4203 int constraint)
4204 {
4205 lang_output_section_statement_type *os;
4206
4207 current_section =
4208 os =
4209 lang_output_section_statement_lookup_1 (output_section_statement_name,
4210 constraint);
4211
4212 /* Add this statement to tree. */
4213 #if 0
4214 add_statement (lang_output_section_statement_enum,
4215 output_section_statement);
4216 #endif
4217 /* Make next things chain into subchain of this. */
4218
4219 if (os->addr_tree == NULL)
4220 {
4221 os->addr_tree = address_exp;
4222 }
4223 os->sectype = sectype;
4224 if (sectype != noload_section)
4225 os->flags = SEC_NO_FLAGS;
4226 else
4227 os->flags = SEC_NEVER_LOAD;
4228 os->block_value = 1;
4229 stat_ptr = &os->children;
4230
4231 os->subsection_alignment =
4232 topower (exp_get_value_int (subalign, -1, "subsection alignment", 0));
4233 os->section_alignment =
4234 topower (exp_get_value_int (align, -1, "section alignment", 0));
4235
4236 os->load_base = ebase;
4237 return os;
4238 }
4239
4240 void
4241 lang_final (void)
4242 {
4243 lang_output_statement_type *new =
4244 new_stat (lang_output_statement, stat_ptr);
4245
4246 new->name = output_filename;
4247 }
4248
4249 /* Reset the current counters in the regions. */
4250
4251 void
4252 lang_reset_memory_regions (void)
4253 {
4254 lang_memory_region_type *p = lang_memory_region_list;
4255 asection *o;
4256
4257 for (p = lang_memory_region_list; p != NULL; p = p->next)
4258 {
4259 p->old_length = (bfd_size_type) (p->current - p->origin);
4260 p->current = p->origin;
4261 }
4262
4263 for (o = output_bfd->sections; o != NULL; o = o->next)
4264 o->_raw_size = 0;
4265 }
4266
4267 /* Worker for lang_gc_sections_1. */
4268
4269 static void
4270 gc_section_callback (lang_wild_statement_type *ptr,
4271 struct wildcard_list *sec ATTRIBUTE_UNUSED,
4272 asection *section,
4273 lang_input_statement_type *file ATTRIBUTE_UNUSED,
4274 void *data ATTRIBUTE_UNUSED)
4275 {
4276 /* If the wild pattern was marked KEEP, the member sections
4277 should be as well. */
4278 if (ptr->keep_sections)
4279 section->flags |= SEC_KEEP;
4280 }
4281
4282 /* Iterate over sections marking them against GC. */
4283
4284 static void
4285 lang_gc_sections_1 (lang_statement_union_type *s)
4286 {
4287 for (; s != NULL; s = s->header.next)
4288 {
4289 switch (s->header.type)
4290 {
4291 case lang_wild_statement_enum:
4292 walk_wild (&s->wild_statement, gc_section_callback, NULL);
4293 break;
4294 case lang_constructors_statement_enum:
4295 lang_gc_sections_1 (constructor_list.head);
4296 break;
4297 case lang_output_section_statement_enum:
4298 lang_gc_sections_1 (s->output_section_statement.children.head);
4299 break;
4300 case lang_group_statement_enum:
4301 lang_gc_sections_1 (s->group_statement.children.head);
4302 break;
4303 default:
4304 break;
4305 }
4306 }
4307 }
4308
4309 static void
4310 lang_gc_sections (void)
4311 {
4312 struct bfd_link_hash_entry *h;
4313 ldlang_undef_chain_list_type *ulist;
4314
4315 /* Keep all sections so marked in the link script. */
4316
4317 lang_gc_sections_1 (statement_list.head);
4318
4319 /* Keep all sections containing symbols undefined on the command-line,
4320 and the section containing the entry symbol. */
4321
4322 for (ulist = link_info.gc_sym_list; ulist; ulist = ulist->next)
4323 {
4324 h = bfd_link_hash_lookup (link_info.hash, ulist->name,
4325 FALSE, FALSE, FALSE);
4326
4327 if (h != NULL
4328 && (h->type == bfd_link_hash_defined
4329 || h->type == bfd_link_hash_defweak)
4330 && ! bfd_is_abs_section (h->u.def.section))
4331 {
4332 h->u.def.section->flags |= SEC_KEEP;
4333 }
4334 }
4335
4336 /* SEC_EXCLUDE is ignored when doing a relocatable link, except in
4337 the special case of debug info. (See bfd/stabs.c)
4338 Twiddle the flag here, to simplify later linker code. */
4339 if (link_info.relocatable)
4340 {
4341 LANG_FOR_EACH_INPUT_STATEMENT (f)
4342 {
4343 asection *sec;
4344 for (sec = f->the_bfd->sections; sec != NULL; sec = sec->next)
4345 if ((sec->flags & SEC_DEBUGGING) == 0)
4346 sec->flags &= ~SEC_EXCLUDE;
4347 }
4348 }
4349
4350 if (command_line.gc_sections)
4351 bfd_gc_sections (output_bfd, &link_info);
4352 }
4353
4354 void
4355 lang_process (void)
4356 {
4357 lang_reasonable_defaults ();
4358 current_target = default_target;
4359
4360 /* Open the output file. */
4361 lang_for_each_statement (ldlang_open_output);
4362 init_opb ();
4363
4364 ldemul_create_output_section_statements ();
4365
4366 /* Add to the hash table all undefineds on the command line. */
4367 lang_place_undefineds ();
4368
4369 already_linked_table_init ();
4370
4371 /* Create a bfd for each input file. */
4372 current_target = default_target;
4373 open_input_bfds (statement_list.head, FALSE);
4374
4375 link_info.gc_sym_list = &entry_symbol;
4376 if (entry_symbol.name == NULL)
4377 link_info.gc_sym_list = ldlang_undef_chain_list_head;
4378
4379 ldemul_after_open ();
4380
4381 already_linked_table_free ();
4382
4383 /* Make sure that we're not mixing architectures. We call this
4384 after all the input files have been opened, but before we do any
4385 other processing, so that any operations merge_private_bfd_data
4386 does on the output file will be known during the rest of the
4387 link. */
4388 lang_check ();
4389
4390 /* Handle .exports instead of a version script if we're told to do so. */
4391 if (command_line.version_exports_section)
4392 lang_do_version_exports_section ();
4393
4394 /* Build all sets based on the information gathered from the input
4395 files. */
4396 ldctor_build_sets ();
4397
4398 /* Remove unreferenced sections if asked to. */
4399 lang_gc_sections ();
4400
4401 /* Size up the common data. */
4402 lang_common ();
4403
4404 /* Run through the contours of the script and attach input sections
4405 to the correct output sections. */
4406 map_input_to_output_sections (statement_list.head, NULL, NULL);
4407
4408 /* Find any sections not attached explicitly and handle them. */
4409 lang_place_orphans ();
4410
4411 if (! link_info.relocatable)
4412 {
4413 asection *found;
4414
4415 /* Merge SEC_MERGE sections. This has to be done after GC of
4416 sections, so that GCed sections are not merged, but before
4417 assigning dynamic symbols, since removing whole input sections
4418 is hard then. */
4419 bfd_merge_sections (output_bfd, &link_info);
4420
4421 /* Look for a text section and set the readonly attribute in it. */
4422 found = bfd_get_section_by_name (output_bfd, ".text");
4423
4424 if (found != NULL)
4425 {
4426 if (config.text_read_only)
4427 found->flags |= SEC_READONLY;
4428 else
4429 found->flags &= ~SEC_READONLY;
4430 }
4431 }
4432
4433 /* Do anything special before sizing sections. This is where ELF
4434 and other back-ends size dynamic sections. */
4435 ldemul_before_allocation ();
4436
4437 if (!link_info.relocatable)
4438 strip_excluded_output_sections ();
4439
4440 /* We must record the program headers before we try to fix the
4441 section positions, since they will affect SIZEOF_HEADERS. */
4442 lang_record_phdrs ();
4443
4444 /* Size up the sections. */
4445 lang_size_sections (statement_list.head, abs_output_section,
4446 &statement_list.head, 0, 0, NULL,
4447 command_line.relax ? FALSE : TRUE);
4448
4449 /* Now run around and relax if we can. */
4450 if (command_line.relax)
4451 {
4452 /* Keep relaxing until bfd_relax_section gives up. */
4453 bfd_boolean relax_again;
4454
4455 do
4456 {
4457 relax_again = FALSE;
4458
4459 /* Note: pe-dll.c does something like this also. If you find
4460 you need to change this code, you probably need to change
4461 pe-dll.c also. DJ */
4462
4463 /* Do all the assignments with our current guesses as to
4464 section sizes. */
4465 lang_do_assignments (statement_list.head, abs_output_section,
4466 NULL, 0);
4467
4468 /* We must do this after lang_do_assignments, because it uses
4469 _raw_size. */
4470 lang_reset_memory_regions ();
4471
4472 /* Perform another relax pass - this time we know where the
4473 globals are, so can make a better guess. */
4474 lang_size_sections (statement_list.head, abs_output_section,
4475 &statement_list.head, 0, 0, &relax_again, FALSE);
4476
4477 /* If the normal relax is done and the relax finalize pass
4478 is not performed yet, we perform another relax pass. */
4479 if (!relax_again && link_info.need_relax_finalize)
4480 {
4481 link_info.need_relax_finalize = FALSE;
4482 relax_again = TRUE;
4483 }
4484 }
4485 while (relax_again);
4486
4487 /* Final extra sizing to report errors. */
4488 lang_do_assignments (statement_list.head, abs_output_section, NULL, 0);
4489 lang_reset_memory_regions ();
4490 lang_size_sections (statement_list.head, abs_output_section,
4491 &statement_list.head, 0, 0, NULL, TRUE);
4492 }
4493
4494 /* See if anything special should be done now we know how big
4495 everything is. */
4496 ldemul_after_allocation ();
4497
4498 /* Fix any .startof. or .sizeof. symbols. */
4499 lang_set_startof ();
4500
4501 /* Do all the assignments, now that we know the final resting places
4502 of all the symbols. */
4503
4504 lang_do_assignments (statement_list.head, abs_output_section, NULL, 0);
4505
4506 /* Make sure that the section addresses make sense. */
4507 if (! link_info.relocatable
4508 && command_line.check_section_addresses)
4509 lang_check_section_addresses ();
4510
4511 /* Final stuffs. */
4512
4513 ldemul_finish ();
4514 lang_finish ();
4515 }
4516
4517 /* EXPORTED TO YACC */
4518
4519 void
4520 lang_add_wild (struct wildcard_spec *filespec,
4521 struct wildcard_list *section_list,
4522 bfd_boolean keep_sections)
4523 {
4524 struct wildcard_list *curr, *next;
4525 lang_wild_statement_type *new;
4526
4527 /* Reverse the list as the parser puts it back to front. */
4528 for (curr = section_list, section_list = NULL;
4529 curr != NULL;
4530 section_list = curr, curr = next)
4531 {
4532 if (curr->spec.name != NULL && strcmp (curr->spec.name, "COMMON") == 0)
4533 placed_commons = TRUE;
4534
4535 next = curr->next;
4536 curr->next = section_list;
4537 }
4538
4539 if (filespec != NULL && filespec->name != NULL)
4540 {
4541 if (strcmp (filespec->name, "*") == 0)
4542 filespec->name = NULL;
4543 else if (! wildcardp (filespec->name))
4544 lang_has_input_file = TRUE;
4545 }
4546
4547 new = new_stat (lang_wild_statement, stat_ptr);
4548 new->filename = NULL;
4549 new->filenames_sorted = FALSE;
4550 if (filespec != NULL)
4551 {
4552 new->filename = filespec->name;
4553 new->filenames_sorted = filespec->sorted;
4554 }
4555 new->section_list = section_list;
4556 new->keep_sections = keep_sections;
4557 lang_list_init (&new->children);
4558 }
4559
4560 void
4561 lang_section_start (const char *name, etree_type *address)
4562 {
4563 lang_address_statement_type *ad;
4564
4565 ad = new_stat (lang_address_statement, stat_ptr);
4566 ad->section_name = name;
4567 ad->address = address;
4568 }
4569
4570 /* Set the start symbol to NAME. CMDLINE is nonzero if this is called
4571 because of a -e argument on the command line, or zero if this is
4572 called by ENTRY in a linker script. Command line arguments take
4573 precedence. */
4574
4575 void
4576 lang_add_entry (const char *name, bfd_boolean cmdline)
4577 {
4578 if (entry_symbol.name == NULL
4579 || cmdline
4580 || ! entry_from_cmdline)
4581 {
4582 entry_symbol.name = name;
4583 entry_from_cmdline = cmdline;
4584 }
4585 }
4586
4587 void
4588 lang_add_target (const char *name)
4589 {
4590 lang_target_statement_type *new = new_stat (lang_target_statement,
4591 stat_ptr);
4592
4593 new->target = name;
4594
4595 }
4596
4597 void
4598 lang_add_map (const char *name)
4599 {
4600 while (*name)
4601 {
4602 switch (*name)
4603 {
4604 case 'F':
4605 map_option_f = TRUE;
4606 break;
4607 }
4608 name++;
4609 }
4610 }
4611
4612 void
4613 lang_add_fill (fill_type *fill)
4614 {
4615 lang_fill_statement_type *new = new_stat (lang_fill_statement,
4616 stat_ptr);
4617
4618 new->fill = fill;
4619 }
4620
4621 void
4622 lang_add_data (int type, union etree_union *exp)
4623 {
4624
4625 lang_data_statement_type *new = new_stat (lang_data_statement,
4626 stat_ptr);
4627
4628 new->exp = exp;
4629 new->type = type;
4630
4631 }
4632
4633 /* Create a new reloc statement. RELOC is the BFD relocation type to
4634 generate. HOWTO is the corresponding howto structure (we could
4635 look this up, but the caller has already done so). SECTION is the
4636 section to generate a reloc against, or NAME is the name of the
4637 symbol to generate a reloc against. Exactly one of SECTION and
4638 NAME must be NULL. ADDEND is an expression for the addend. */
4639
4640 void
4641 lang_add_reloc (bfd_reloc_code_real_type reloc,
4642 reloc_howto_type *howto,
4643 asection *section,
4644 const char *name,
4645 union etree_union *addend)
4646 {
4647 lang_reloc_statement_type *p = new_stat (lang_reloc_statement, stat_ptr);
4648
4649 p->reloc = reloc;
4650 p->howto = howto;
4651 p->section = section;
4652 p->name = name;
4653 p->addend_exp = addend;
4654
4655 p->addend_value = 0;
4656 p->output_section = NULL;
4657 p->output_vma = 0;
4658 }
4659
4660 lang_assignment_statement_type *
4661 lang_add_assignment (etree_type *exp)
4662 {
4663 lang_assignment_statement_type *new = new_stat (lang_assignment_statement,
4664 stat_ptr);
4665
4666 new->exp = exp;
4667 return new;
4668 }
4669
4670 void
4671 lang_add_attribute (enum statement_enum attribute)
4672 {
4673 new_statement (attribute, sizeof (lang_statement_union_type), stat_ptr);
4674 }
4675
4676 void
4677 lang_startup (const char *name)
4678 {
4679 if (startup_file != NULL)
4680 {
4681 einfo (_("%P%Fmultiple STARTUP files\n"));
4682 }
4683 first_file->filename = name;
4684 first_file->local_sym_name = name;
4685 first_file->real = TRUE;
4686
4687 startup_file = name;
4688 }
4689
4690 void
4691 lang_float (bfd_boolean maybe)
4692 {
4693 lang_float_flag = maybe;
4694 }
4695
4696
4697 /* Work out the load- and run-time regions from a script statement, and
4698 store them in *LMA_REGION and *REGION respectively.
4699
4700 MEMSPEC is the name of the run-time region, or the value of
4701 DEFAULT_MEMORY_REGION if the statement didn't specify one.
4702 LMA_MEMSPEC is the name of the load-time region, or null if the
4703 statement didn't specify one.HAVE_LMA_P is TRUE if the statement
4704 had an explicit load address.
4705
4706 It is an error to specify both a load region and a load address. */
4707
4708 static void
4709 lang_get_regions (lang_memory_region_type **region,
4710 lang_memory_region_type **lma_region,
4711 const char *memspec,
4712 const char *lma_memspec,
4713 bfd_boolean have_lma,
4714 bfd_boolean have_vma)
4715 {
4716 *lma_region = lang_memory_region_lookup (lma_memspec, FALSE);
4717
4718 /* If no runtime region or VMA has been specified, but the load region
4719 has been specified, then use the load region for the runtime region
4720 as well. */
4721 if (lma_memspec != NULL
4722 && ! have_vma
4723 && strcmp (memspec, DEFAULT_MEMORY_REGION) == 0)
4724 *region = *lma_region;
4725 else
4726 *region = lang_memory_region_lookup (memspec, FALSE);
4727
4728 if (have_lma && lma_memspec != 0)
4729 einfo (_("%X%P:%S: section has both a load address and a load region\n"));
4730 }
4731
4732 void
4733 lang_leave_output_section_statement (fill_type *fill, const char *memspec,
4734 lang_output_section_phdr_list *phdrs,
4735 const char *lma_memspec)
4736 {
4737 lang_get_regions (&current_section->region,
4738 &current_section->lma_region,
4739 memspec, lma_memspec,
4740 current_section->load_base != NULL,
4741 current_section->addr_tree != NULL);
4742 current_section->fill = fill;
4743 current_section->phdrs = phdrs;
4744 stat_ptr = &statement_list;
4745 }
4746
4747 /* Create an absolute symbol with the given name with the value of the
4748 address of first byte of the section named.
4749
4750 If the symbol already exists, then do nothing. */
4751
4752 void
4753 lang_abs_symbol_at_beginning_of (const char *secname, const char *name)
4754 {
4755 struct bfd_link_hash_entry *h;
4756
4757 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
4758 if (h == NULL)
4759 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
4760
4761 if (h->type == bfd_link_hash_new
4762 || h->type == bfd_link_hash_undefined)
4763 {
4764 asection *sec;
4765
4766 h->type = bfd_link_hash_defined;
4767
4768 sec = bfd_get_section_by_name (output_bfd, secname);
4769 if (sec == NULL)
4770 h->u.def.value = 0;
4771 else
4772 h->u.def.value = bfd_get_section_vma (output_bfd, sec);
4773
4774 h->u.def.section = bfd_abs_section_ptr;
4775 }
4776 }
4777
4778 /* Create an absolute symbol with the given name with the value of the
4779 address of the first byte after the end of the section named.
4780
4781 If the symbol already exists, then do nothing. */
4782
4783 void
4784 lang_abs_symbol_at_end_of (const char *secname, const char *name)
4785 {
4786 struct bfd_link_hash_entry *h;
4787
4788 h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
4789 if (h == NULL)
4790 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
4791
4792 if (h->type == bfd_link_hash_new
4793 || h->type == bfd_link_hash_undefined)
4794 {
4795 asection *sec;
4796
4797 h->type = bfd_link_hash_defined;
4798
4799 sec = bfd_get_section_by_name (output_bfd, secname);
4800 if (sec == NULL)
4801 h->u.def.value = 0;
4802 else
4803 h->u.def.value = (bfd_get_section_vma (output_bfd, sec)
4804 + TO_ADDR (bfd_section_size (output_bfd, sec)));
4805
4806 h->u.def.section = bfd_abs_section_ptr;
4807 }
4808 }
4809
4810 void
4811 lang_statement_append (lang_statement_list_type *list,
4812 lang_statement_union_type *element,
4813 lang_statement_union_type **field)
4814 {
4815 *(list->tail) = element;
4816 list->tail = field;
4817 }
4818
4819 /* Set the output format type. -oformat overrides scripts. */
4820
4821 void
4822 lang_add_output_format (const char *format,
4823 const char *big,
4824 const char *little,
4825 int from_script)
4826 {
4827 if (output_target == NULL || !from_script)
4828 {
4829 if (command_line.endian == ENDIAN_BIG
4830 && big != NULL)
4831 format = big;
4832 else if (command_line.endian == ENDIAN_LITTLE
4833 && little != NULL)
4834 format = little;
4835
4836 output_target = format;
4837 }
4838 }
4839
4840 /* Enter a group. This creates a new lang_group_statement, and sets
4841 stat_ptr to build new statements within the group. */
4842
4843 void
4844 lang_enter_group (void)
4845 {
4846 lang_group_statement_type *g;
4847
4848 g = new_stat (lang_group_statement, stat_ptr);
4849 lang_list_init (&g->children);
4850 stat_ptr = &g->children;
4851 }
4852
4853 /* Leave a group. This just resets stat_ptr to start writing to the
4854 regular list of statements again. Note that this will not work if
4855 groups can occur inside anything else which can adjust stat_ptr,
4856 but currently they can't. */
4857
4858 void
4859 lang_leave_group (void)
4860 {
4861 stat_ptr = &statement_list;
4862 }
4863
4864 /* Add a new program header. This is called for each entry in a PHDRS
4865 command in a linker script. */
4866
4867 void
4868 lang_new_phdr (const char *name,
4869 etree_type *type,
4870 bfd_boolean filehdr,
4871 bfd_boolean phdrs,
4872 etree_type *at,
4873 etree_type *flags)
4874 {
4875 struct lang_phdr *n, **pp;
4876
4877 n = stat_alloc (sizeof (struct lang_phdr));
4878 n->next = NULL;
4879 n->name = name;
4880 n->type = exp_get_value_int (type, 0, "program header type",
4881 lang_final_phase_enum);
4882 n->filehdr = filehdr;
4883 n->phdrs = phdrs;
4884 n->at = at;
4885 n->flags = flags;
4886
4887 for (pp = &lang_phdr_list; *pp != NULL; pp = &(*pp)->next)
4888 ;
4889 *pp = n;
4890 }
4891
4892 /* Record the program header information in the output BFD. FIXME: We
4893 should not be calling an ELF specific function here. */
4894
4895 static void
4896 lang_record_phdrs (void)
4897 {
4898 unsigned int alc;
4899 asection **secs;
4900 lang_output_section_phdr_list *last;
4901 struct lang_phdr *l;
4902 lang_statement_union_type *u;
4903
4904 alc = 10;
4905 secs = xmalloc (alc * sizeof (asection *));
4906 last = NULL;
4907 for (l = lang_phdr_list; l != NULL; l = l->next)
4908 {
4909 unsigned int c;
4910 flagword flags;
4911 bfd_vma at;
4912
4913 c = 0;
4914 for (u = lang_output_section_statement.head;
4915 u != NULL;
4916 u = u->output_section_statement.next)
4917 {
4918 lang_output_section_statement_type *os;
4919 lang_output_section_phdr_list *pl;
4920
4921 os = &u->output_section_statement;
4922 if (os->constraint == -1)
4923 continue;
4924
4925 pl = os->phdrs;
4926 if (pl != NULL)
4927 last = pl;
4928 else
4929 {
4930 if (os->sectype == noload_section
4931 || os->bfd_section == NULL
4932 || (os->bfd_section->flags & SEC_ALLOC) == 0)
4933 continue;
4934 pl = last;
4935 }
4936
4937 if (os->bfd_section == NULL)
4938 continue;
4939
4940 for (; pl != NULL; pl = pl->next)
4941 {
4942 if (strcmp (pl->name, l->name) == 0)
4943 {
4944 if (c >= alc)
4945 {
4946 alc *= 2;
4947 secs = xrealloc (secs, alc * sizeof (asection *));
4948 }
4949 secs[c] = os->bfd_section;
4950 ++c;
4951 pl->used = TRUE;
4952 }
4953 }
4954 }
4955
4956 if (l->flags == NULL)
4957 flags = 0;
4958 else
4959 flags = exp_get_vma (l->flags, 0, "phdr flags",
4960 lang_final_phase_enum);
4961
4962 if (l->at == NULL)
4963 at = 0;
4964 else
4965 at = exp_get_vma (l->at, 0, "phdr load address",
4966 lang_final_phase_enum);
4967
4968 if (! bfd_record_phdr (output_bfd, l->type,
4969 l->flags != NULL, flags, l->at != NULL,
4970 at, l->filehdr, l->phdrs, c, secs))
4971 einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
4972 }
4973
4974 free (secs);
4975
4976 /* Make sure all the phdr assignments succeeded. */
4977 for (u = lang_output_section_statement.head;
4978 u != NULL;
4979 u = u->output_section_statement.next)
4980 {
4981 lang_output_section_phdr_list *pl;
4982
4983 if (u->output_section_statement.constraint == -1
4984 || u->output_section_statement.bfd_section == NULL)
4985 continue;
4986
4987 for (pl = u->output_section_statement.phdrs;
4988 pl != NULL;
4989 pl = pl->next)
4990 if (! pl->used && strcmp (pl->name, "NONE") != 0)
4991 einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
4992 u->output_section_statement.name, pl->name);
4993 }
4994 }
4995
4996 /* Record a list of sections which may not be cross referenced. */
4997
4998 void
4999 lang_add_nocrossref (lang_nocrossref_type *l)
5000 {
5001 struct lang_nocrossrefs *n;
5002
5003 n = xmalloc (sizeof *n);
5004 n->next = nocrossref_list;
5005 n->list = l;
5006 nocrossref_list = n;
5007
5008 /* Set notice_all so that we get informed about all symbols. */
5009 link_info.notice_all = TRUE;
5010 }
5011 \f
5012 /* Overlay handling. We handle overlays with some static variables. */
5013
5014 /* The overlay virtual address. */
5015 static etree_type *overlay_vma;
5016 /* And subsection alignment. */
5017 static etree_type *overlay_subalign;
5018
5019 /* An expression for the maximum section size seen so far. */
5020 static etree_type *overlay_max;
5021
5022 /* A list of all the sections in this overlay. */
5023
5024 struct overlay_list {
5025 struct overlay_list *next;
5026 lang_output_section_statement_type *os;
5027 };
5028
5029 static struct overlay_list *overlay_list;
5030
5031 /* Start handling an overlay. */
5032
5033 void
5034 lang_enter_overlay (etree_type *vma_expr, etree_type *subalign)
5035 {
5036 /* The grammar should prevent nested overlays from occurring. */
5037 ASSERT (overlay_vma == NULL
5038 && overlay_subalign == NULL
5039 && overlay_max == NULL);
5040
5041 overlay_vma = vma_expr;
5042 overlay_subalign = subalign;
5043 }
5044
5045 /* Start a section in an overlay. We handle this by calling
5046 lang_enter_output_section_statement with the correct VMA.
5047 lang_leave_overlay sets up the LMA and memory regions. */
5048
5049 void
5050 lang_enter_overlay_section (const char *name)
5051 {
5052 struct overlay_list *n;
5053 etree_type *size;
5054
5055 lang_enter_output_section_statement (name, overlay_vma, normal_section,
5056 0, overlay_subalign, 0, 0);
5057
5058 /* If this is the first section, then base the VMA of future
5059 sections on this one. This will work correctly even if `.' is
5060 used in the addresses. */
5061 if (overlay_list == NULL)
5062 overlay_vma = exp_nameop (ADDR, name);
5063
5064 /* Remember the section. */
5065 n = xmalloc (sizeof *n);
5066 n->os = current_section;
5067 n->next = overlay_list;
5068 overlay_list = n;
5069
5070 size = exp_nameop (SIZEOF, name);
5071
5072 /* Arrange to work out the maximum section end address. */
5073 if (overlay_max == NULL)
5074 overlay_max = size;
5075 else
5076 overlay_max = exp_binop (MAX_K, overlay_max, size);
5077 }
5078
5079 /* Finish a section in an overlay. There isn't any special to do
5080 here. */
5081
5082 void
5083 lang_leave_overlay_section (fill_type *fill,
5084 lang_output_section_phdr_list *phdrs)
5085 {
5086 const char *name;
5087 char *clean, *s2;
5088 const char *s1;
5089 char *buf;
5090
5091 name = current_section->name;
5092
5093 /* For now, assume that DEFAULT_MEMORY_REGION is the run-time memory
5094 region and that no load-time region has been specified. It doesn't
5095 really matter what we say here, since lang_leave_overlay will
5096 override it. */
5097 lang_leave_output_section_statement (fill, DEFAULT_MEMORY_REGION, phdrs, 0);
5098
5099 /* Define the magic symbols. */
5100
5101 clean = xmalloc (strlen (name) + 1);
5102 s2 = clean;
5103 for (s1 = name; *s1 != '\0'; s1++)
5104 if (ISALNUM (*s1) || *s1 == '_')
5105 *s2++ = *s1;
5106 *s2 = '\0';
5107
5108 buf = xmalloc (strlen (clean) + sizeof "__load_start_");
5109 sprintf (buf, "__load_start_%s", clean);
5110 lang_add_assignment (exp_assop ('=', buf,
5111 exp_nameop (LOADADDR, name)));
5112
5113 buf = xmalloc (strlen (clean) + sizeof "__load_stop_");
5114 sprintf (buf, "__load_stop_%s", clean);
5115 lang_add_assignment (exp_assop ('=', buf,
5116 exp_binop ('+',
5117 exp_nameop (LOADADDR, name),
5118 exp_nameop (SIZEOF, name))));
5119
5120 free (clean);
5121 }
5122
5123 /* Finish an overlay. If there are any overlay wide settings, this
5124 looks through all the sections in the overlay and sets them. */
5125
5126 void
5127 lang_leave_overlay (etree_type *lma_expr,
5128 int nocrossrefs,
5129 fill_type *fill,
5130 const char *memspec,
5131 lang_output_section_phdr_list *phdrs,
5132 const char *lma_memspec)
5133 {
5134 lang_memory_region_type *region;
5135 lang_memory_region_type *lma_region;
5136 struct overlay_list *l;
5137 lang_nocrossref_type *nocrossref;
5138
5139 lang_get_regions (&region, &lma_region,
5140 memspec, lma_memspec,
5141 lma_expr != NULL, FALSE);
5142
5143 nocrossref = NULL;
5144
5145 /* After setting the size of the last section, set '.' to end of the
5146 overlay region. */
5147 if (overlay_list != NULL)
5148 overlay_list->os->update_dot_tree
5149 = exp_assop ('=', ".", exp_binop ('+', overlay_vma, overlay_max));
5150
5151 l = overlay_list;
5152 while (l != NULL)
5153 {
5154 struct overlay_list *next;
5155
5156 if (fill != NULL && l->os->fill == NULL)
5157 l->os->fill = fill;
5158
5159 l->os->region = region;
5160 l->os->lma_region = lma_region;
5161
5162 /* The first section has the load address specified in the
5163 OVERLAY statement. The rest are worked out from that.
5164 The base address is not needed (and should be null) if
5165 an LMA region was specified. */
5166 if (l->next == 0)
5167 l->os->load_base = lma_expr;
5168 else if (lma_region == 0)
5169 l->os->load_base = exp_binop ('+',
5170 exp_nameop (LOADADDR, l->next->os->name),
5171 exp_nameop (SIZEOF, l->next->os->name));
5172
5173 if (phdrs != NULL && l->os->phdrs == NULL)
5174 l->os->phdrs = phdrs;
5175
5176 if (nocrossrefs)
5177 {
5178 lang_nocrossref_type *nc;
5179
5180 nc = xmalloc (sizeof *nc);
5181 nc->name = l->os->name;
5182 nc->next = nocrossref;
5183 nocrossref = nc;
5184 }
5185
5186 next = l->next;
5187 free (l);
5188 l = next;
5189 }
5190
5191 if (nocrossref != NULL)
5192 lang_add_nocrossref (nocrossref);
5193
5194 overlay_vma = NULL;
5195 overlay_list = NULL;
5196 overlay_max = NULL;
5197 }
5198 \f
5199 /* Version handling. This is only useful for ELF. */
5200
5201 /* This global variable holds the version tree that we build. */
5202
5203 struct bfd_elf_version_tree *lang_elf_version_info;
5204
5205 /* If PREV is NULL, return first version pattern matching particular symbol.
5206 If PREV is non-NULL, return first version pattern matching particular
5207 symbol after PREV (previously returned by lang_vers_match). */
5208
5209 static struct bfd_elf_version_expr *
5210 lang_vers_match (struct bfd_elf_version_expr_head *head,
5211 struct bfd_elf_version_expr *prev,
5212 const char *sym)
5213 {
5214 const char *cxx_sym = sym;
5215 const char *java_sym = sym;
5216 struct bfd_elf_version_expr *expr = NULL;
5217
5218 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
5219 {
5220 cxx_sym = cplus_demangle (sym, DMGL_PARAMS | DMGL_ANSI);
5221 if (!cxx_sym)
5222 cxx_sym = sym;
5223 }
5224 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
5225 {
5226 java_sym = cplus_demangle (sym, DMGL_JAVA);
5227 if (!java_sym)
5228 java_sym = sym;
5229 }
5230
5231 if (head->htab && (prev == NULL || prev->symbol))
5232 {
5233 struct bfd_elf_version_expr e;
5234
5235 switch (prev ? prev->mask : 0)
5236 {
5237 case 0:
5238 if (head->mask & BFD_ELF_VERSION_C_TYPE)
5239 {
5240 e.symbol = sym;
5241 expr = htab_find (head->htab, &e);
5242 while (expr && strcmp (expr->symbol, sym) == 0)
5243 if (expr->mask == BFD_ELF_VERSION_C_TYPE)
5244 goto out_ret;
5245 else
5246 expr = expr->next;
5247 }
5248 /* Fallthrough */
5249 case BFD_ELF_VERSION_C_TYPE:
5250 if (head->mask & BFD_ELF_VERSION_CXX_TYPE)
5251 {
5252 e.symbol = cxx_sym;
5253 expr = htab_find (head->htab, &e);
5254 while (expr && strcmp (expr->symbol, cxx_sym) == 0)
5255 if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
5256 goto out_ret;
5257 else
5258 expr = expr->next;
5259 }
5260 /* Fallthrough */
5261 case BFD_ELF_VERSION_CXX_TYPE:
5262 if (head->mask & BFD_ELF_VERSION_JAVA_TYPE)
5263 {
5264 e.symbol = java_sym;
5265 expr = htab_find (head->htab, &e);
5266 while (expr && strcmp (expr->symbol, java_sym) == 0)
5267 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
5268 goto out_ret;
5269 else
5270 expr = expr->next;
5271 }
5272 /* Fallthrough */
5273 default:
5274 break;
5275 }
5276 }
5277
5278 /* Finally, try the wildcards. */
5279 if (prev == NULL || prev->symbol)
5280 expr = head->remaining;
5281 else
5282 expr = prev->next;
5283 while (expr)
5284 {
5285 const char *s;
5286
5287 if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
5288 break;
5289
5290 if (expr->mask == BFD_ELF_VERSION_JAVA_TYPE)
5291 s = java_sym;
5292 else if (expr->mask == BFD_ELF_VERSION_CXX_TYPE)
5293 s = cxx_sym;
5294 else
5295 s = sym;
5296 if (fnmatch (expr->pattern, s, 0) == 0)
5297 break;
5298 expr = expr->next;
5299 }
5300
5301 out_ret:
5302 if (cxx_sym != sym)
5303 free ((char *) cxx_sym);
5304 if (java_sym != sym)
5305 free ((char *) java_sym);
5306 return expr;
5307 }
5308
5309 /* Return NULL if the PATTERN argument is a glob pattern, otherwise,
5310 return a string pointing to the symbol name. */
5311
5312 static const char *
5313 realsymbol (const char *pattern)
5314 {
5315 const char *p;
5316 bfd_boolean changed = FALSE, backslash = FALSE;
5317 char *s, *symbol = xmalloc (strlen (pattern) + 1);
5318
5319 for (p = pattern, s = symbol; *p != '\0'; ++p)
5320 {
5321 /* It is a glob pattern only if there is no preceding
5322 backslash. */
5323 if (! backslash && (*p == '?' || *p == '*' || *p == '['))
5324 {
5325 free (symbol);
5326 return NULL;
5327 }
5328
5329 if (backslash)
5330 {
5331 /* Remove the preceding backslash. */
5332 *(s - 1) = *p;
5333 changed = TRUE;
5334 }
5335 else
5336 *s++ = *p;
5337
5338 backslash = *p == '\\';
5339 }
5340
5341 if (changed)
5342 {
5343 *s = '\0';
5344 return symbol;
5345 }
5346 else
5347 {
5348 free (symbol);
5349 return pattern;
5350 }
5351 }
5352
5353 /* This is called for each variable name or match expression. */
5354
5355 struct bfd_elf_version_expr *
5356 lang_new_vers_pattern (struct bfd_elf_version_expr *orig,
5357 const char *new,
5358 const char *lang)
5359 {
5360 struct bfd_elf_version_expr *ret;
5361
5362 ret = xmalloc (sizeof *ret);
5363 ret->next = orig;
5364 ret->pattern = new;
5365 ret->symver = 0;
5366 ret->script = 0;
5367 ret->symbol = realsymbol (new);
5368
5369 if (lang == NULL || strcasecmp (lang, "C") == 0)
5370 ret->mask = BFD_ELF_VERSION_C_TYPE;
5371 else if (strcasecmp (lang, "C++") == 0)
5372 ret->mask = BFD_ELF_VERSION_CXX_TYPE;
5373 else if (strcasecmp (lang, "Java") == 0)
5374 ret->mask = BFD_ELF_VERSION_JAVA_TYPE;
5375 else
5376 {
5377 einfo (_("%X%P: unknown language `%s' in version information\n"),
5378 lang);
5379 ret->mask = BFD_ELF_VERSION_C_TYPE;
5380 }
5381
5382 return ldemul_new_vers_pattern (ret);
5383 }
5384
5385 /* This is called for each set of variable names and match
5386 expressions. */
5387
5388 struct bfd_elf_version_tree *
5389 lang_new_vers_node (struct bfd_elf_version_expr *globals,
5390 struct bfd_elf_version_expr *locals)
5391 {
5392 struct bfd_elf_version_tree *ret;
5393
5394 ret = xcalloc (1, sizeof *ret);
5395 ret->globals.list = globals;
5396 ret->locals.list = locals;
5397 ret->match = lang_vers_match;
5398 ret->name_indx = (unsigned int) -1;
5399 return ret;
5400 }
5401
5402 /* This static variable keeps track of version indices. */
5403
5404 static int version_index;
5405
5406 static hashval_t
5407 version_expr_head_hash (const void *p)
5408 {
5409 const struct bfd_elf_version_expr *e = p;
5410
5411 return htab_hash_string (e->symbol);
5412 }
5413
5414 static int
5415 version_expr_head_eq (const void *p1, const void *p2)
5416 {
5417 const struct bfd_elf_version_expr *e1 = p1;
5418 const struct bfd_elf_version_expr *e2 = p2;
5419
5420 return strcmp (e1->symbol, e2->symbol) == 0;
5421 }
5422
5423 static void
5424 lang_finalize_version_expr_head (struct bfd_elf_version_expr_head *head)
5425 {
5426 size_t count = 0;
5427 struct bfd_elf_version_expr *e, *next;
5428 struct bfd_elf_version_expr **list_loc, **remaining_loc;
5429
5430 for (e = head->list; e; e = e->next)
5431 {
5432 if (e->symbol)
5433 count++;
5434 head->mask |= e->mask;
5435 }
5436
5437 if (count)
5438 {
5439 head->htab = htab_create (count * 2, version_expr_head_hash,
5440 version_expr_head_eq, NULL);
5441 list_loc = &head->list;
5442 remaining_loc = &head->remaining;
5443 for (e = head->list; e; e = next)
5444 {
5445 next = e->next;
5446 if (!e->symbol)
5447 {
5448 *remaining_loc = e;
5449 remaining_loc = &e->next;
5450 }
5451 else
5452 {
5453 void **loc = htab_find_slot (head->htab, e, INSERT);
5454
5455 if (*loc)
5456 {
5457 struct bfd_elf_version_expr *e1, *last;
5458
5459 e1 = *loc;
5460 last = NULL;
5461 do
5462 {
5463 if (e1->mask == e->mask)
5464 {
5465 last = NULL;
5466 break;
5467 }
5468 last = e1;
5469 e1 = e1->next;
5470 }
5471 while (e1 && strcmp (e1->symbol, e->symbol) == 0);
5472
5473 if (last == NULL)
5474 {
5475 /* This is a duplicate. */
5476 /* FIXME: Memory leak. Sometimes pattern is not
5477 xmalloced alone, but in larger chunk of memory. */
5478 /* free (e->symbol); */
5479 free (e);
5480 }
5481 else
5482 {
5483 e->next = last->next;
5484 last->next = e;
5485 }
5486 }
5487 else
5488 {
5489 *loc = e;
5490 *list_loc = e;
5491 list_loc = &e->next;
5492 }
5493 }
5494 }
5495 *remaining_loc = NULL;
5496 *list_loc = head->remaining;
5497 }
5498 else
5499 head->remaining = head->list;
5500 }
5501
5502 /* This is called when we know the name and dependencies of the
5503 version. */
5504
5505 void
5506 lang_register_vers_node (const char *name,
5507 struct bfd_elf_version_tree *version,
5508 struct bfd_elf_version_deps *deps)
5509 {
5510 struct bfd_elf_version_tree *t, **pp;
5511 struct bfd_elf_version_expr *e1;
5512
5513 if (name == NULL)
5514 name = "";
5515
5516 if ((name[0] == '\0' && lang_elf_version_info != NULL)
5517 || (lang_elf_version_info && lang_elf_version_info->name[0] == '\0'))
5518 {
5519 einfo (_("%X%P: anonymous version tag cannot be combined"
5520 " with other version tags\n"));
5521 free (version);
5522 return;
5523 }
5524
5525 /* Make sure this node has a unique name. */
5526 for (t = lang_elf_version_info; t != NULL; t = t->next)
5527 if (strcmp (t->name, name) == 0)
5528 einfo (_("%X%P: duplicate version tag `%s'\n"), name);
5529
5530 lang_finalize_version_expr_head (&version->globals);
5531 lang_finalize_version_expr_head (&version->locals);
5532
5533 /* Check the global and local match names, and make sure there
5534 aren't any duplicates. */
5535
5536 for (e1 = version->globals.list; e1 != NULL; e1 = e1->next)
5537 {
5538 for (t = lang_elf_version_info; t != NULL; t = t->next)
5539 {
5540 struct bfd_elf_version_expr *e2;
5541
5542 if (t->locals.htab && e1->symbol)
5543 {
5544 e2 = htab_find (t->locals.htab, e1);
5545 while (e2 && strcmp (e1->symbol, e2->symbol) == 0)
5546 {
5547 if (e1->mask == e2->mask)
5548 einfo (_("%X%P: duplicate expression `%s'"
5549 " in version information\n"), e1->symbol);
5550 e2 = e2->next;
5551 }
5552 }
5553 else if (!e1->symbol)
5554 for (e2 = t->locals.remaining; e2 != NULL; e2 = e2->next)
5555 if (strcmp (e1->pattern, e2->pattern) == 0
5556 && e1->mask == e2->mask)
5557 einfo (_("%X%P: duplicate expression `%s'"
5558 " in version information\n"), e1->pattern);
5559 }
5560 }
5561
5562 for (e1 = version->locals.list; e1 != NULL; e1 = e1->next)
5563 {
5564 for (t = lang_elf_version_info; t != NULL; t = t->next)
5565 {
5566 struct bfd_elf_version_expr *e2;
5567
5568 if (t->globals.htab && e1->symbol)
5569 {
5570 e2 = htab_find (t->globals.htab, e1);
5571 while (e2 && strcmp (e1->symbol, e2->symbol) == 0)
5572 {
5573 if (e1->mask == e2->mask)
5574 einfo (_("%X%P: duplicate expression `%s'"
5575 " in version information\n"),
5576 e1->symbol);
5577 e2 = e2->next;
5578 }
5579 }
5580 else if (!e1->symbol)
5581 for (e2 = t->globals.remaining; e2 != NULL; e2 = e2->next)
5582 if (strcmp (e1->pattern, e2->pattern) == 0
5583 && e1->mask == e2->mask)
5584 einfo (_("%X%P: duplicate expression `%s'"
5585 " in version information\n"), e1->pattern);
5586 }
5587 }
5588
5589 version->deps = deps;
5590 version->name = name;
5591 if (name[0] != '\0')
5592 {
5593 ++version_index;
5594 version->vernum = version_index;
5595 }
5596 else
5597 version->vernum = 0;
5598
5599 for (pp = &lang_elf_version_info; *pp != NULL; pp = &(*pp)->next)
5600 ;
5601 *pp = version;
5602 }
5603
5604 /* This is called when we see a version dependency. */
5605
5606 struct bfd_elf_version_deps *
5607 lang_add_vers_depend (struct bfd_elf_version_deps *list, const char *name)
5608 {
5609 struct bfd_elf_version_deps *ret;
5610 struct bfd_elf_version_tree *t;
5611
5612 ret = xmalloc (sizeof *ret);
5613 ret->next = list;
5614
5615 for (t = lang_elf_version_info; t != NULL; t = t->next)
5616 {
5617 if (strcmp (t->name, name) == 0)
5618 {
5619 ret->version_needed = t;
5620 return ret;
5621 }
5622 }
5623
5624 einfo (_("%X%P: unable to find version dependency `%s'\n"), name);
5625
5626 return ret;
5627 }
5628
5629 static void
5630 lang_do_version_exports_section (void)
5631 {
5632 struct bfd_elf_version_expr *greg = NULL, *lreg;
5633
5634 LANG_FOR_EACH_INPUT_STATEMENT (is)
5635 {
5636 asection *sec = bfd_get_section_by_name (is->the_bfd, ".exports");
5637 char *contents, *p;
5638 bfd_size_type len;
5639
5640 if (sec == NULL)
5641 continue;
5642
5643 len = bfd_section_size (is->the_bfd, sec);
5644 contents = xmalloc (len);
5645 if (!bfd_get_section_contents (is->the_bfd, sec, contents, 0, len))
5646 einfo (_("%X%P: unable to read .exports section contents\n"), sec);
5647
5648 p = contents;
5649 while (p < contents + len)
5650 {
5651 greg = lang_new_vers_pattern (greg, p, NULL);
5652 p = strchr (p, '\0') + 1;
5653 }
5654
5655 /* Do not free the contents, as we used them creating the regex. */
5656
5657 /* Do not include this section in the link. */
5658 sec->flags |= SEC_EXCLUDE;
5659 }
5660
5661 lreg = lang_new_vers_pattern (NULL, "*", NULL);
5662 lang_register_vers_node (command_line.version_exports_section,
5663 lang_new_vers_node (greg, lreg), NULL);
5664 }
5665
5666 void
5667 lang_add_unique (const char *name)
5668 {
5669 struct unique_sections *ent;
5670
5671 for (ent = unique_section_list; ent; ent = ent->next)
5672 if (strcmp (ent->name, name) == 0)
5673 return;
5674
5675 ent = xmalloc (sizeof *ent);
5676 ent->name = xstrdup (name);
5677 ent->next = unique_section_list;
5678 unique_section_list = ent;
5679 }
This page took 0.140843 seconds and 5 git commands to generate.