* elf-bfd.h (struct elf_link_local_dynamic_entry): New.
[deliverable/binutils-gdb.git] / bfd / elflink.c
CommitLineData
252b5132 1/* ELF linking support for BFD.
7442e600 2 Copyright 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
252b5132
RH
3
4This file is part of BFD, the Binary File Descriptor library.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20#include "bfd.h"
21#include "sysdep.h"
22#include "bfdlink.h"
23#include "libbfd.h"
24#define ARCH_SIZE 0
25#include "elf-bfd.h"
26
27boolean
28_bfd_elf_create_got_section (abfd, info)
29 bfd *abfd;
30 struct bfd_link_info *info;
31{
32 flagword flags;
33 register asection *s;
34 struct elf_link_hash_entry *h;
35 struct elf_backend_data *bed = get_elf_backend_data (abfd);
36 int ptralign;
37
38 /* This function may be called more than once. */
39 if (bfd_get_section_by_name (abfd, ".got") != NULL)
40 return true;
41
42 switch (bed->s->arch_size)
43 {
44 case 32: ptralign = 2; break;
45 case 64: ptralign = 3; break;
46 default: abort();
47 }
48
49 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
50 | SEC_LINKER_CREATED);
51
52 s = bfd_make_section (abfd, ".got");
53 if (s == NULL
54 || !bfd_set_section_flags (abfd, s, flags)
55 || !bfd_set_section_alignment (abfd, s, ptralign))
56 return false;
57
58 if (bed->want_got_plt)
59 {
60 s = bfd_make_section (abfd, ".got.plt");
61 if (s == NULL
62 || !bfd_set_section_flags (abfd, s, flags)
63 || !bfd_set_section_alignment (abfd, s, ptralign))
64 return false;
65 }
66
67 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
68 (or .got.plt) section. We don't do this in the linker script
69 because we don't want to define the symbol if we are not creating
70 a global offset table. */
71 h = NULL;
72 if (!(_bfd_generic_link_add_one_symbol
73 (info, abfd, "_GLOBAL_OFFSET_TABLE_", BSF_GLOBAL, s,
74 bed->got_symbol_offset, (const char *) NULL, false,
75 bed->collect, (struct bfd_link_hash_entry **) &h)))
76 return false;
77 h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR;
78 h->type = STT_OBJECT;
79
80 if (info->shared
81 && ! _bfd_elf_link_record_dynamic_symbol (info, h))
82 return false;
83
84 elf_hash_table (info)->hgot = h;
85
86 /* The first bit of the global offset table is the header. */
87 s->_raw_size += bed->got_header_size + bed->got_symbol_offset;
88
89 return true;
90}
91\f
92
93/* Create dynamic sections when linking against a dynamic object. */
94
95boolean
96_bfd_elf_create_dynamic_sections (abfd, info)
97 bfd *abfd;
98 struct bfd_link_info *info;
99{
100 flagword flags, pltflags;
101 register asection *s;
102 struct elf_backend_data *bed = get_elf_backend_data (abfd);
7442e600 103 int ptralign = 0;
252b5132
RH
104
105 switch (bed->s->arch_size)
106 {
107 case 32: ptralign = 2; break;
108 case 64: ptralign = 3; break;
109 default: abort();
110 }
111
112 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
113 .rel[a].bss sections. */
114
115 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
116 | SEC_LINKER_CREATED);
117
118 pltflags = flags;
119 pltflags |= SEC_CODE;
120 if (bed->plt_not_loaded)
121 pltflags &= ~ (SEC_LOAD | SEC_HAS_CONTENTS);
122 if (bed->plt_readonly)
123 pltflags |= SEC_READONLY;
124
125 s = bfd_make_section (abfd, ".plt");
126 if (s == NULL
127 || ! bfd_set_section_flags (abfd, s, pltflags)
128 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
129 return false;
130
131 if (bed->want_plt_sym)
132 {
133 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
134 .plt section. */
135 struct elf_link_hash_entry *h = NULL;
136 if (! (_bfd_generic_link_add_one_symbol
137 (info, abfd, "_PROCEDURE_LINKAGE_TABLE_", BSF_GLOBAL, s,
138 (bfd_vma) 0, (const char *) NULL, false,
139 get_elf_backend_data (abfd)->collect,
140 (struct bfd_link_hash_entry **) &h)))
141 return false;
142 h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR;
143 h->type = STT_OBJECT;
144
145 if (info->shared
146 && ! _bfd_elf_link_record_dynamic_symbol (info, h))
147 return false;
148 }
149
bf572ba0
MM
150 s = bfd_make_section (abfd,
151 bed->default_use_rela_p ? ".rela.plt" : ".rel.plt");
252b5132
RH
152 if (s == NULL
153 || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
154 || ! bfd_set_section_alignment (abfd, s, ptralign))
155 return false;
156
157 if (! _bfd_elf_create_got_section (abfd, info))
158 return false;
159
160 /* The .dynbss section is a place to put symbols which are defined
161 by dynamic objects, are referenced by regular objects, and are
162 not functions. We must allocate space for them in the process
163 image and use a R_*_COPY reloc to tell the dynamic linker to
164 initialize them at run time. The linker script puts the .dynbss
165 section into the .bss section of the final image. */
166 s = bfd_make_section (abfd, ".dynbss");
167 if (s == NULL
168 || ! bfd_set_section_flags (abfd, s, SEC_ALLOC))
169 return false;
170
171 /* The .rel[a].bss section holds copy relocs. This section is not
172 normally needed. We need to create it here, though, so that the
173 linker will map it to an output section. We can't just create it
174 only if we need it, because we will not know whether we need it
175 until we have seen all the input files, and the first time the
176 main linker code calls BFD after examining all the input files
177 (size_dynamic_sections) the input sections have already been
178 mapped to the output sections. If the section turns out not to
179 be needed, we can discard it later. We will never need this
180 section when generating a shared object, since they do not use
181 copy relocs. */
182 if (! info->shared)
183 {
bf572ba0
MM
184 s = bfd_make_section (abfd,
185 (bed->default_use_rela_p
186 ? ".rela.bss" : ".rel.bss"));
252b5132
RH
187 if (s == NULL
188 || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
189 || ! bfd_set_section_alignment (abfd, s, ptralign))
190 return false;
191 }
192
193 return true;
194}
195\f
196
197/* Record a new dynamic symbol. We record the dynamic symbols as we
198 read the input files, since we need to have a list of all of them
199 before we can determine the final sizes of the output sections.
200 Note that we may actually call this function even though we are not
201 going to output any dynamic symbols; in some cases we know that a
202 symbol should be in the dynamic symbol table, but only if there is
203 one. */
204
205boolean
206_bfd_elf_link_record_dynamic_symbol (info, h)
207 struct bfd_link_info *info;
208 struct elf_link_hash_entry *h;
209{
210 if (h->dynindx == -1)
211 {
212 struct bfd_strtab_hash *dynstr;
213 char *p, *alc;
214 const char *name;
215 boolean copy;
216 bfd_size_type indx;
217
218 h->dynindx = elf_hash_table (info)->dynsymcount;
219 ++elf_hash_table (info)->dynsymcount;
220
221 dynstr = elf_hash_table (info)->dynstr;
222 if (dynstr == NULL)
223 {
224 /* Create a strtab to hold the dynamic symbol names. */
225 elf_hash_table (info)->dynstr = dynstr = _bfd_elf_stringtab_init ();
226 if (dynstr == NULL)
227 return false;
228 }
229
230 /* We don't put any version information in the dynamic string
231 table. */
232 name = h->root.root.string;
233 p = strchr (name, ELF_VER_CHR);
234 if (p == NULL)
235 {
236 alc = NULL;
237 copy = false;
238 }
239 else
240 {
241 alc = bfd_malloc (p - name + 1);
242 if (alc == NULL)
243 return false;
244 strncpy (alc, name, p - name);
245 alc[p - name] = '\0';
246 name = alc;
247 copy = true;
248 }
249
250 indx = _bfd_stringtab_add (dynstr, name, true, copy);
251
252 if (alc != NULL)
253 free (alc);
254
255 if (indx == (bfd_size_type) -1)
256 return false;
257 h->dynstr_index = indx;
258 }
259
260 return true;
261}
42751cf3 262
30b30c21 263/* Return the dynindex of a local dynamic symbol. */
42751cf3 264
30b30c21
RH
265long
266_bfd_elf_link_lookup_local_dynindx (info, input_bfd, input_indx)
267 struct bfd_link_info *info;
268 bfd *input_bfd;
269 long input_indx;
270{
271 struct elf_link_local_dynamic_entry *e;
272
273 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
274 if (e->input_bfd == input_bfd && e->input_indx == input_indx)
275 return e->dynindx;
276 return -1;
277}
278
279/* This function is used to renumber the dynamic symbols, if some of
280 them are removed because they are marked as local. This is called
281 via elf_link_hash_traverse. */
282
283static boolean elf_link_renumber_hash_table_dynsyms
284 PARAMS ((struct elf_link_hash_entry *, PTR));
285
286static boolean
287elf_link_renumber_hash_table_dynsyms (h, data)
42751cf3 288 struct elf_link_hash_entry *h;
30b30c21 289 PTR data;
42751cf3 290{
30b30c21
RH
291 size_t *count = (size_t *) data;
292
42751cf3 293 if (h->dynindx != -1)
30b30c21
RH
294 h->dynindx = ++(*count);
295
42751cf3
MM
296 return true;
297}
30b30c21
RH
298
299/* Assign dynsym indicies. In a shared library we generate a section
300 symbol for each output section, which come first. Next come all of
301 the back-end allocated local dynamic syms, followed by the rest of
302 the global symbols. */
303
304unsigned long
305_bfd_elf_link_renumber_dynsyms (output_bfd, info)
306 bfd *output_bfd;
307 struct bfd_link_info *info;
308{
309 unsigned long dynsymcount = 0;
310
311 if (info->shared)
312 {
313 asection *p;
314 for (p = output_bfd->sections; p ; p = p->next)
315 elf_section_data (p)->dynindx = ++dynsymcount;
316 }
317
318 if (elf_hash_table (info)->dynlocal)
319 {
320 struct elf_link_local_dynamic_entry *p;
321 for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
322 p->dynindx = ++dynsymcount;
323 }
324
325 elf_link_hash_traverse (elf_hash_table (info),
326 elf_link_renumber_hash_table_dynsyms,
327 &dynsymcount);
328
329 /* There is an unused NULL entry at the head of the table which
330 we must account for in our count. Unless there weren't any
331 symbols, which means we'll have no table at all. */
332 if (dynsymcount != 0)
333 ++dynsymcount;
334
335 return elf_hash_table (info)->dynsymcount = dynsymcount;
336}
252b5132 337\f
30b30c21
RH
338/* Create a special linker section, or return a pointer to a linker
339 section already created */
252b5132
RH
340
341elf_linker_section_t *
342_bfd_elf_create_linker_section (abfd, info, which, defaults)
343 bfd *abfd;
344 struct bfd_link_info *info;
345 enum elf_linker_section_enum which;
346 elf_linker_section_t *defaults;
347{
348 bfd *dynobj = elf_hash_table (info)->dynobj;
349 elf_linker_section_t *lsect;
350
351 /* Record the first bfd section that needs the special section */
352 if (!dynobj)
353 dynobj = elf_hash_table (info)->dynobj = abfd;
354
355 /* If this is the first time, create the section */
356 lsect = elf_linker_section (dynobj, which);
357 if (!lsect)
358 {
359 asection *s;
360
361 lsect = (elf_linker_section_t *)
362 bfd_alloc (dynobj, sizeof (elf_linker_section_t));
363
364 *lsect = *defaults;
365 elf_linker_section (dynobj, which) = lsect;
366 lsect->which = which;
367 lsect->hole_written_p = false;
368
369 /* See if the sections already exist */
370 lsect->section = s = bfd_get_section_by_name (dynobj, lsect->name);
371 if (!s || (s->flags & defaults->flags) != defaults->flags)
372 {
373 lsect->section = s = bfd_make_section_anyway (dynobj, lsect->name);
374
375 if (s == NULL)
376 return (elf_linker_section_t *)0;
377
378 bfd_set_section_flags (dynobj, s, defaults->flags);
379 bfd_set_section_alignment (dynobj, s, lsect->alignment);
380 }
381 else if (bfd_get_section_alignment (dynobj, s) < lsect->alignment)
382 bfd_set_section_alignment (dynobj, s, lsect->alignment);
383
384 s->_raw_size = align_power (s->_raw_size, lsect->alignment);
385
386 /* Is there a hole we have to provide? If so check whether the segment is
387 too big already */
388 if (lsect->hole_size)
389 {
390 lsect->hole_offset = s->_raw_size;
391 s->_raw_size += lsect->hole_size;
392 if (lsect->hole_offset > lsect->max_hole_offset)
393 {
394 (*_bfd_error_handler) (_("%s: Section %s is already to large to put hole of %ld bytes in"),
395 bfd_get_filename (abfd),
396 lsect->name,
397 (long)lsect->hole_size);
398
399 bfd_set_error (bfd_error_bad_value);
400 return (elf_linker_section_t *)0;
401 }
402 }
403
404#ifdef DEBUG
405 fprintf (stderr, "Creating section %s, current size = %ld\n",
406 lsect->name, (long)s->_raw_size);
407#endif
408
409 if (lsect->sym_name)
410 {
411 struct elf_link_hash_entry *h = NULL;
412#ifdef DEBUG
413 fprintf (stderr, "Adding %s to section %s\n",
414 lsect->sym_name,
415 lsect->name);
416#endif
417 h = (struct elf_link_hash_entry *)
418 bfd_link_hash_lookup (info->hash, lsect->sym_name, false, false, false);
419
420 if ((h == NULL || h->root.type == bfd_link_hash_undefined)
421 && !(_bfd_generic_link_add_one_symbol (info,
422 abfd,
423 lsect->sym_name,
424 BSF_GLOBAL,
425 s,
426 ((lsect->hole_size)
427 ? s->_raw_size - lsect->hole_size + lsect->sym_offset
428 : lsect->sym_offset),
429 (const char *) NULL,
430 false,
431 get_elf_backend_data (abfd)->collect,
432 (struct bfd_link_hash_entry **) &h)))
433 return (elf_linker_section_t *)0;
434
435 if ((defaults->which != LINKER_SECTION_SDATA)
436 && (defaults->which != LINKER_SECTION_SDATA2))
437 h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_DYNAMIC;
438
439 h->type = STT_OBJECT;
440 lsect->sym_hash = h;
441
442 if (info->shared
443 && ! _bfd_elf_link_record_dynamic_symbol (info, h))
444 return (elf_linker_section_t *)0;
445 }
446 }
447
448#if 0
449 /* This does not make sense. The sections which may exist in the
450 object file have nothing to do with the sections we want to
451 create. */
452
453 /* Find the related sections if they have been created */
454 if (lsect->bss_name && !lsect->bss_section)
455 lsect->bss_section = bfd_get_section_by_name (dynobj, lsect->bss_name);
456
457 if (lsect->rel_name && !lsect->rel_section)
458 lsect->rel_section = bfd_get_section_by_name (dynobj, lsect->rel_name);
459#endif
460
461 return lsect;
462}
463
464\f
465/* Find a linker generated pointer with a given addend and type. */
466
467elf_linker_section_pointers_t *
468_bfd_elf_find_pointer_linker_section (linker_pointers, addend, which)
469 elf_linker_section_pointers_t *linker_pointers;
470 bfd_signed_vma addend;
471 elf_linker_section_enum_t which;
472{
473 for ( ; linker_pointers != NULL; linker_pointers = linker_pointers->next)
474 {
475 if (which == linker_pointers->which && addend == linker_pointers->addend)
476 return linker_pointers;
477 }
478
479 return (elf_linker_section_pointers_t *)0;
480}
481
482\f
483/* Make the .rela section corresponding to the generated linker section. */
484
485boolean
486_bfd_elf_make_linker_section_rela (dynobj, lsect, alignment)
487 bfd *dynobj;
488 elf_linker_section_t *lsect;
489 int alignment;
490{
491 if (lsect->rel_section)
492 return true;
493
494 lsect->rel_section = bfd_get_section_by_name (dynobj, lsect->rel_name);
495 if (lsect->rel_section == NULL)
496 {
497 lsect->rel_section = bfd_make_section (dynobj, lsect->rel_name);
498 if (lsect->rel_section == NULL
499 || ! bfd_set_section_flags (dynobj,
500 lsect->rel_section,
501 (SEC_ALLOC
502 | SEC_LOAD
503 | SEC_HAS_CONTENTS
504 | SEC_IN_MEMORY
505 | SEC_LINKER_CREATED
506 | SEC_READONLY))
507 || ! bfd_set_section_alignment (dynobj, lsect->rel_section, alignment))
508 return false;
509 }
510
511 return true;
512}
This page took 0.048789 seconds and 4 git commands to generate.