2000-07-09 Koundinya K <kk@ddeorg.soft.net>
[deliverable/binutils-gdb.git] / bfd / elf64-hppa.c
1 /* Generic support for 64-bit ELF
2 Copyright 1999, 2000 Free Software Foundation, Inc.
3
4 This file is part of BFD, the Binary File Descriptor library.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20 #include "bfd.h"
21 #include "sysdep.h"
22 #include "libbfd.h"
23 #include "elf-bfd.h"
24 #include "elf/hppa.h"
25 #include "libhppa.h"
26 #include "elf64-hppa.h"
27 #define ARCH_SIZE 64
28
29 #define PLT_ENTRY_SIZE 0x10
30 #define DLT_ENTRY_SIZE 0x8
31 #define OPD_ENTRY_SIZE 0x20
32
33 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/pa20_64/dld.sl"
34
35 /* The stub is supposed to load the target address and target's DP
36 value out of the PLT, then do an external branch to the target
37 address.
38
39 LDD PLTOFF(%r27),%r1
40 BVE (%r1)
41 LDD PLTOFF+8(%r27),%r27
42
43 Note that we must use the LDD with a 14 bit displacement, not the one
44 with a 5 bit displacement. */
45 static char plt_stub[] = {0x53, 0x61, 0x00, 0x00, 0xe8, 0x20, 0xd0, 0x00,
46 0x53, 0x7b, 0x00, 0x00 };
47
48 struct elf64_hppa_dyn_hash_entry
49 {
50 struct bfd_hash_entry root;
51
52 /* Offsets for this symbol in various linker sections. */
53 bfd_vma dlt_offset;
54 bfd_vma plt_offset;
55 bfd_vma opd_offset;
56 bfd_vma stub_offset;
57
58 /* The symbol table entry, if any, that this was derived from. */
59 struct elf_link_hash_entry *h;
60
61 /* The index of the (possibly local) symbol in the input bfd and its
62 associated BFD. Needed so that we can have relocs against local
63 symbols in shared libraries. */
64 unsigned long sym_indx;
65 bfd *owner;
66
67 /* Dynamic symbols may need to have two different values. One for
68 the dynamic symbol table, one for the normal symbol table.
69
70 In such cases we store the symbol's real value and section
71 index here so we can restore the real value before we write
72 the normal symbol table. */
73 bfd_vma st_value;
74 int st_shndx;
75
76 /* Used to count non-got, non-plt relocations for delayed sizing
77 of relocation sections. */
78 struct elf64_hppa_dyn_reloc_entry
79 {
80 /* Next relocation in the chain. */
81 struct elf64_hppa_dyn_reloc_entry *next;
82
83 /* The type of the relocation. */
84 int type;
85
86 /* The input section of the relocation. */
87 asection *sec;
88
89 /* The index of the section symbol for the input section of
90 the relocation. Only needed when building shared libraries. */
91 int sec_symndx;
92
93 /* The offset within the input section of the relocation. */
94 bfd_vma offset;
95
96 /* The addend for the relocation. */
97 bfd_vma addend;
98
99 } *reloc_entries;
100
101 /* Nonzero if this symbol needs an entry in one of the linker
102 sections. */
103 unsigned want_dlt;
104 unsigned want_plt;
105 unsigned want_opd;
106 unsigned want_stub;
107 };
108
109 struct elf64_hppa_dyn_hash_table
110 {
111 struct bfd_hash_table root;
112 };
113
114 struct elf64_hppa_link_hash_table
115 {
116 struct elf_link_hash_table root;
117
118 /* Shortcuts to get to the various linker defined sections. */
119 asection *dlt_sec;
120 asection *dlt_rel_sec;
121 asection *plt_sec;
122 asection *plt_rel_sec;
123 asection *opd_sec;
124 asection *opd_rel_sec;
125 asection *other_rel_sec;
126
127 /* Offset of __gp within .plt section. When the PLT gets large we want
128 to slide __gp into the PLT section so that we can continue to use
129 single DP relative instructions to load values out of the PLT. */
130 bfd_vma gp_offset;
131
132 /* Note this is not strictly correct. We should create a stub section for
133 each input section with calls. The stub section should be placed before
134 the section with the call. */
135 asection *stub_sec;
136
137 bfd_vma text_segment_base;
138 bfd_vma data_segment_base;
139
140 struct elf64_hppa_dyn_hash_table dyn_hash_table;
141
142 /* We build tables to map from an input section back to its
143 symbol index. This is the BFD for which we currently have
144 a map. */
145 bfd *section_syms_bfd;
146
147 /* Array of symbol numbers for each input section attached to the
148 current BFD. */
149 int *section_syms;
150 };
151
152 #define elf64_hppa_hash_table(p) \
153 ((struct elf64_hppa_link_hash_table *) ((p)->hash))
154
155 typedef struct bfd_hash_entry *(*new_hash_entry_func)
156 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
157
158 static boolean elf64_hppa_dyn_hash_table_init
159 PARAMS ((struct elf64_hppa_dyn_hash_table *ht, bfd *abfd,
160 new_hash_entry_func new));
161 static struct bfd_hash_entry *elf64_hppa_new_dyn_hash_entry
162 PARAMS ((struct bfd_hash_entry *entry, struct bfd_hash_table *table,
163 const char *string));
164 static struct bfd_link_hash_table *elf64_hppa_hash_table_create
165 PARAMS ((bfd *abfd));
166 static struct elf64_hppa_dyn_hash_entry *elf64_hppa_dyn_hash_lookup
167 PARAMS ((struct elf64_hppa_dyn_hash_table *table, const char *string,
168 boolean create, boolean copy));
169 static void elf64_hppa_dyn_hash_traverse
170 PARAMS ((struct elf64_hppa_dyn_hash_table *table,
171 boolean (*func)(struct elf64_hppa_dyn_hash_entry *, PTR),
172 PTR info));
173
174 static const char *get_dyn_name
175 PARAMS ((bfd *abfd, struct elf_link_hash_entry *h,
176 const Elf_Internal_Rela *rel, char **pbuf, size_t *plen));
177
178
179 /* This must follow the definitions of the various derived linker
180 hash tables and shared functions. */
181 #include "elf-hppa.h"
182
183
184 static boolean elf64_hppa_object_p
185 PARAMS ((bfd *));
186
187 static boolean elf64_hppa_section_from_shdr
188 PARAMS ((bfd *, Elf64_Internal_Shdr *, char *));
189
190 static void elf64_hppa_post_process_headers
191 PARAMS ((bfd *, struct bfd_link_info *));
192
193 static boolean elf64_hppa_create_dynamic_sections
194 PARAMS ((bfd *, struct bfd_link_info *));
195
196 static boolean elf64_hppa_adjust_dynamic_symbol
197 PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *));
198
199 static boolean elf64_hppa_size_dynamic_sections
200 PARAMS ((bfd *, struct bfd_link_info *));
201
202 static boolean elf64_hppa_finish_dynamic_symbol
203 PARAMS ((bfd *, struct bfd_link_info *,
204 struct elf_link_hash_entry *, Elf_Internal_Sym *));
205
206 static boolean elf64_hppa_finish_dynamic_sections
207 PARAMS ((bfd *, struct bfd_link_info *));
208
209 static boolean elf64_hppa_check_relocs
210 PARAMS ((bfd *, struct bfd_link_info *,
211 asection *, const Elf_Internal_Rela *));
212
213 static boolean elf64_hppa_dynamic_symbol_p
214 PARAMS ((struct elf_link_hash_entry *, struct bfd_link_info *));
215
216 static boolean elf64_hppa_mark_exported_functions
217 PARAMS ((struct elf_link_hash_entry *, PTR));
218
219 static boolean elf64_hppa_finalize_opd
220 PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
221
222 static boolean elf64_hppa_finalize_dlt
223 PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
224
225 static boolean allocate_global_data_dlt
226 PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
227
228 static boolean allocate_global_data_plt
229 PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
230
231 static boolean allocate_global_data_stub
232 PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
233
234 static boolean allocate_global_data_opd
235 PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
236
237 static boolean get_reloc_section
238 PARAMS ((bfd *, struct elf64_hppa_link_hash_table *, asection *));
239
240 static boolean count_dyn_reloc
241 PARAMS ((bfd *, struct elf64_hppa_dyn_hash_entry *,
242 int, asection *, int, bfd_vma, bfd_vma));
243
244 static boolean allocate_dynrel_entries
245 PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
246
247 static boolean elf64_hppa_finalize_dynreloc
248 PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
249
250 static boolean get_opd
251 PARAMS ((bfd *, struct bfd_link_info *, struct elf64_hppa_link_hash_table *));
252
253 static boolean get_plt
254 PARAMS ((bfd *, struct bfd_link_info *, struct elf64_hppa_link_hash_table *));
255
256 static boolean get_dlt
257 PARAMS ((bfd *, struct bfd_link_info *, struct elf64_hppa_link_hash_table *));
258
259 static boolean get_stub
260 PARAMS ((bfd *, struct bfd_link_info *, struct elf64_hppa_link_hash_table *));
261
262 static boolean
263 elf64_hppa_dyn_hash_table_init (ht, abfd, new)
264 struct elf64_hppa_dyn_hash_table *ht;
265 bfd *abfd ATTRIBUTE_UNUSED;
266 new_hash_entry_func new;
267 {
268 memset (ht, 0, sizeof(*ht));
269 return bfd_hash_table_init (&ht->root, new);
270 }
271
272 static struct bfd_hash_entry*
273 elf64_hppa_new_dyn_hash_entry (entry, table, string)
274 struct bfd_hash_entry *entry;
275 struct bfd_hash_table *table;
276 const char *string;
277 {
278 struct elf64_hppa_dyn_hash_entry *ret;
279 ret = (struct elf64_hppa_dyn_hash_entry *) entry;
280
281 /* Allocate the structure if it has not already been allocated by a
282 subclass. */
283 if (!ret)
284 ret = bfd_hash_allocate (table, sizeof (*ret));
285
286 if (!ret)
287 return 0;
288
289 /* Initialize our local data. All zeros, and definitely easier
290 than setting 8 bit fields. */
291 memset (ret, 0, sizeof(*ret));
292
293 /* Call the allocation method of the superclass. */
294 ret = ((struct elf64_hppa_dyn_hash_entry *)
295 bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string));
296
297 return &ret->root;
298 }
299
300 /* Create the derived linker hash table. The PA64 ELF port uses this
301 derived hash table to keep information specific to the PA ElF
302 linker (without using static variables). */
303
304 static struct bfd_link_hash_table*
305 elf64_hppa_hash_table_create (abfd)
306 bfd *abfd;
307 {
308 struct elf64_hppa_link_hash_table *ret;
309
310 ret = bfd_zalloc (abfd, sizeof (*ret));
311 if (!ret)
312 return 0;
313 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
314 _bfd_elf_link_hash_newfunc))
315 {
316 bfd_release (abfd, ret);
317 return 0;
318 }
319
320 if (!elf64_hppa_dyn_hash_table_init (&ret->dyn_hash_table, abfd,
321 elf64_hppa_new_dyn_hash_entry))
322 return 0;
323 return &ret->root.root;
324 }
325
326 /* Look up an entry in a PA64 ELF linker hash table. */
327
328 static struct elf64_hppa_dyn_hash_entry *
329 elf64_hppa_dyn_hash_lookup(table, string, create, copy)
330 struct elf64_hppa_dyn_hash_table *table;
331 const char *string;
332 boolean create, copy;
333 {
334 return ((struct elf64_hppa_dyn_hash_entry *)
335 bfd_hash_lookup (&table->root, string, create, copy));
336 }
337
338 /* Traverse a PA64 ELF linker hash table. */
339
340 static void
341 elf64_hppa_dyn_hash_traverse (table, func, info)
342 struct elf64_hppa_dyn_hash_table *table;
343 boolean (*func) PARAMS ((struct elf64_hppa_dyn_hash_entry *, PTR));
344 PTR info;
345 {
346 (bfd_hash_traverse
347 (&table->root,
348 (boolean (*) PARAMS ((struct bfd_hash_entry *, PTR))) func,
349 info));
350 }
351 \f
352 /* Return nonzero if ABFD represents a PA2.0 ELF64 file.
353
354 Additionally we set the default architecture and machine. */
355 static boolean
356 elf64_hppa_object_p (abfd)
357 bfd *abfd;
358 {
359 /* Set the right machine number for an HPPA ELF file. */
360 return bfd_default_set_arch_mach (abfd, bfd_arch_hppa, 25);
361 }
362
363 /* Given section type (hdr->sh_type), return a boolean indicating
364 whether or not the section is an elf64-hppa specific section. */
365 static boolean
366 elf64_hppa_section_from_shdr (abfd, hdr, name)
367 bfd *abfd;
368 Elf64_Internal_Shdr *hdr;
369 char *name;
370 {
371 asection *newsect;
372
373 switch (hdr->sh_type)
374 {
375 case SHT_PARISC_EXT:
376 if (strcmp (name, ".PARISC.archext") != 0)
377 return false;
378 break;
379 case SHT_PARISC_UNWIND:
380 if (strcmp (name, ".PARISC.unwind") != 0)
381 return false;
382 break;
383 case SHT_PARISC_DOC:
384 case SHT_PARISC_ANNOT:
385 default:
386 return false;
387 }
388
389 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name))
390 return false;
391 newsect = hdr->bfd_section;
392
393 return true;
394 }
395
396
397 /* Construct a string for use in the elf64_hppa_dyn_hash_table. The
398 name describes what was once potentially anonymous memory. We
399 allocate memory as necessary, possibly reusing PBUF/PLEN. */
400
401 static const char *
402 get_dyn_name (abfd, h, rel, pbuf, plen)
403 bfd *abfd;
404 struct elf_link_hash_entry *h;
405 const Elf_Internal_Rela *rel;
406 char **pbuf;
407 size_t *plen;
408 {
409 size_t nlen, tlen;
410 char *buf;
411 size_t len;
412
413 if (h && rel->r_addend == 0)
414 return h->root.root.string;
415
416 if (h)
417 nlen = strlen (h->root.root.string);
418 else
419 {
420 nlen = sizeof(void*)*2 + 1 + sizeof(bfd_vma)*4 + 1 + 1;
421 nlen += 10; /* %p slop */
422 }
423 tlen = nlen + 1 + 16 + 1;
424
425 len = *plen;
426 buf = *pbuf;
427 if (len < tlen)
428 {
429 if (buf)
430 free (buf);
431 *pbuf = buf = malloc (tlen);
432 *plen = len = tlen;
433 if (!buf)
434 return NULL;
435 }
436
437 if (h)
438 {
439 memcpy (buf, h->root.root.string, nlen);
440 sprintf_vma (buf + nlen, rel->r_addend);
441 }
442 else
443 {
444 nlen = sprintf (buf, "%p:%lx", abfd, ELF64_R_SYM (rel->r_info));
445 if (rel->r_addend)
446 {
447 buf[nlen++] = '+';
448 sprintf_vma (buf + nlen, rel->r_addend);
449 }
450 }
451
452 return buf;
453 }
454
455 /* SEC is a section containing relocs for an input BFD when linking; return
456 a suitable section for holding relocs in the output BFD for a link. */
457
458 static boolean
459 get_reloc_section (abfd, hppa_info, sec)
460 bfd *abfd;
461 struct elf64_hppa_link_hash_table *hppa_info;
462 asection *sec;
463 {
464 const char *srel_name;
465 asection *srel;
466 bfd *dynobj;
467
468 srel_name = (bfd_elf_string_from_elf_section
469 (abfd, elf_elfheader(abfd)->e_shstrndx,
470 elf_section_data(sec)->rel_hdr.sh_name));
471 if (srel_name == NULL)
472 return false;
473
474 BFD_ASSERT ((strncmp (srel_name, ".rela", 5) == 0
475 && strcmp (bfd_get_section_name (abfd, sec),
476 srel_name+5) == 0)
477 || (strncmp (srel_name, ".rel", 4) == 0
478 && strcmp (bfd_get_section_name (abfd, sec),
479 srel_name+4) == 0));
480
481 dynobj = hppa_info->root.dynobj;
482 if (!dynobj)
483 hppa_info->root.dynobj = dynobj = abfd;
484
485 srel = bfd_get_section_by_name (dynobj, srel_name);
486 if (srel == NULL)
487 {
488 srel = bfd_make_section (dynobj, srel_name);
489 if (srel == NULL
490 || !bfd_set_section_flags (dynobj, srel,
491 (SEC_ALLOC
492 | SEC_LOAD
493 | SEC_HAS_CONTENTS
494 | SEC_IN_MEMORY
495 | SEC_LINKER_CREATED
496 | SEC_READONLY))
497 || !bfd_set_section_alignment (dynobj, srel, 3))
498 return false;
499 }
500
501 hppa_info->other_rel_sec = srel;
502 return true;
503 }
504
505 /* Add a new entry to the list of dynamic relocations against DYN_H.
506
507 We use this to keep a record of all the FPTR relocations against a
508 particular symbol so that we can create FPTR relocations in the
509 output file. */
510
511 static boolean
512 count_dyn_reloc (abfd, dyn_h, type, sec, sec_symndx, offset, addend)
513 bfd *abfd;
514 struct elf64_hppa_dyn_hash_entry *dyn_h;
515 int type;
516 asection *sec;
517 int sec_symndx;
518 bfd_vma offset;
519 bfd_vma addend;
520 {
521 struct elf64_hppa_dyn_reloc_entry *rent;
522
523 rent = (struct elf64_hppa_dyn_reloc_entry *)
524 bfd_alloc (abfd, sizeof (*rent));
525 if (!rent)
526 return false;
527
528 rent->next = dyn_h->reloc_entries;
529 rent->type = type;
530 rent->sec = sec;
531 rent->sec_symndx = sec_symndx;
532 rent->offset = offset;
533 rent->addend = addend;
534 dyn_h->reloc_entries = rent;
535
536 return true;
537 }
538
539 /* Scan the RELOCS and record the type of dynamic entries that each
540 referenced symbol needs. */
541
542 static boolean
543 elf64_hppa_check_relocs (abfd, info, sec, relocs)
544 bfd *abfd;
545 struct bfd_link_info *info;
546 asection *sec;
547 const Elf_Internal_Rela *relocs;
548 {
549 struct elf64_hppa_link_hash_table *hppa_info;
550 const Elf_Internal_Rela *relend;
551 Elf_Internal_Shdr *symtab_hdr;
552 const Elf_Internal_Rela *rel;
553 asection *dlt, *plt, *stubs;
554 char *buf;
555 size_t buf_len;
556 int sec_symndx;
557
558 if (info->relocateable)
559 return true;
560
561 /* If this is the first dynamic object found in the link, create
562 the special sections required for dynamic linking. */
563 if (! elf_hash_table (info)->dynamic_sections_created)
564 {
565 if (! bfd_elf64_link_create_dynamic_sections (abfd, info))
566 return false;
567 }
568
569 hppa_info = elf64_hppa_hash_table (info);
570 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
571
572 /* If necessary, build a new table holding section symbols indices
573 for this BFD. This is disgusting. */
574
575 if (info->shared && hppa_info->section_syms_bfd != abfd)
576 {
577 int i, highest_shndx;
578 Elf_Internal_Sym *local_syms, *isym;
579 Elf64_External_Sym *ext_syms, *esym;
580
581 /* We're done with the old cache of section index to section symbol
582 index information. Free it.
583
584 ?!? Note we leak the last section_syms array. Presumably we
585 could free it in one of the later routines in this file. */
586 if (hppa_info->section_syms)
587 free (hppa_info->section_syms);
588
589 /* Allocate memory for the internal and external symbols. */
590 local_syms
591 = (Elf_Internal_Sym *) bfd_malloc (symtab_hdr->sh_info
592 * sizeof (Elf_Internal_Sym));
593 if (local_syms == NULL)
594 return false;
595
596 ext_syms
597 = (Elf64_External_Sym *) bfd_malloc (symtab_hdr->sh_info
598 * sizeof (Elf64_External_Sym));
599 if (ext_syms == NULL)
600 {
601 free (local_syms);
602 return false;
603 }
604
605 /* Read in the local symbols. */
606 if (bfd_seek (abfd, symtab_hdr->sh_offset, SEEK_SET) != 0
607 || bfd_read (ext_syms, 1,
608 (symtab_hdr->sh_info
609 * sizeof (Elf64_External_Sym)), abfd)
610 != (symtab_hdr->sh_info * sizeof (Elf64_External_Sym)))
611 {
612 free (local_syms);
613 free (ext_syms);
614 return false;
615 }
616
617 /* Swap in the local symbols, also record the highest section index
618 referenced by the local symbols. */
619 isym = local_syms;
620 esym = ext_syms;
621 highest_shndx = 0;
622 for (i = 0; i < symtab_hdr->sh_info; i++, esym++, isym++)
623 {
624 bfd_elf64_swap_symbol_in (abfd, esym, isym);
625 if (isym->st_shndx > highest_shndx)
626 highest_shndx = isym->st_shndx;
627 }
628
629 /* Now we can free the external symbols. */
630 free (ext_syms);
631
632 /* Allocate an array to hold the section index to section symbol index
633 mapping. Bump by one since we start counting at zero. */
634 highest_shndx++;
635 hppa_info->section_syms = (int *) bfd_malloc (highest_shndx
636 * sizeof (int));
637
638 /* Now walk the local symbols again. If we find a section symbol,
639 record the index of the symbol into the section_syms array. */
640 for (isym = local_syms, i = 0; i < symtab_hdr->sh_info; i++, isym++)
641 {
642 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
643 hppa_info->section_syms[isym->st_shndx] = i;
644 }
645
646 /* We are finished with the local symbols. Get rid of them. */
647 free (local_syms);
648
649 /* Record which BFD we built the section_syms mapping for. */
650 hppa_info->section_syms_bfd = abfd;
651 }
652
653 /* Record the symbol index for this input section. We may need it for
654 relocations when building shared libraries. When not building shared
655 libraries this value is never really used, but assign it to zero to
656 prevent out of bounds memory accesses in other routines. */
657 if (info->shared)
658 {
659 sec_symndx = _bfd_elf_section_from_bfd_section (abfd, sec);
660
661 /* If we did not find a section symbol for this section, then
662 something went terribly wrong above. */
663 if (sec_symndx == -1)
664 return false;
665
666 sec_symndx = hppa_info->section_syms[sec_symndx];
667 }
668 else
669 sec_symndx = 0;
670
671 dlt = plt = stubs = NULL;
672 buf = NULL;
673 buf_len = 0;
674
675 relend = relocs + sec->reloc_count;
676 for (rel = relocs; rel < relend; ++rel)
677 {
678 enum {
679 NEED_DLT = 1,
680 NEED_PLT = 2,
681 NEED_STUB = 4,
682 NEED_OPD = 8,
683 NEED_DYNREL = 16,
684 };
685
686 struct elf_link_hash_entry *h = NULL;
687 unsigned long r_symndx = ELF64_R_SYM (rel->r_info);
688 struct elf64_hppa_dyn_hash_entry *dyn_h;
689 int need_entry;
690 const char *addr_name;
691 boolean maybe_dynamic;
692 int dynrel_type = R_PARISC_NONE;
693 static reloc_howto_type *howto;
694
695 if (r_symndx >= symtab_hdr->sh_info)
696 {
697 /* We're dealing with a global symbol -- find its hash entry
698 and mark it as being referenced. */
699 long indx = r_symndx - symtab_hdr->sh_info;
700 h = elf_sym_hashes (abfd)[indx];
701 while (h->root.type == bfd_link_hash_indirect
702 || h->root.type == bfd_link_hash_warning)
703 h = (struct elf_link_hash_entry *) h->root.u.i.link;
704
705 h->elf_link_hash_flags |= ELF_LINK_HASH_REF_REGULAR;
706 }
707
708 /* We can only get preliminary data on whether a symbol is
709 locally or externally defined, as not all of the input files
710 have yet been processed. Do something with what we know, as
711 this may help reduce memory usage and processing time later. */
712 maybe_dynamic = false;
713 if (h && ((info->shared && ! info->symbolic)
714 || ! (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR)
715 || h->root.type == bfd_link_hash_defweak))
716 maybe_dynamic = true;
717
718 howto = elf_hppa_howto_table + ELF64_R_TYPE (rel->r_info);
719 need_entry = 0;
720 switch (howto->type)
721 {
722 /* These are simple indirect references to symbols through the
723 DLT. We need to create a DLT entry for any symbols which
724 appears in a DLTIND relocation. */
725 case R_PARISC_DLTIND21L:
726 case R_PARISC_DLTIND14R:
727 case R_PARISC_DLTIND14F:
728 case R_PARISC_DLTIND14WR:
729 case R_PARISC_DLTIND14DR:
730 need_entry = NEED_DLT;
731 break;
732
733 /* ?!? These need a DLT entry. But I have no idea what to do with
734 the "link time TP value. */
735 case R_PARISC_LTOFF_TP21L:
736 case R_PARISC_LTOFF_TP14R:
737 case R_PARISC_LTOFF_TP14F:
738 case R_PARISC_LTOFF_TP64:
739 case R_PARISC_LTOFF_TP14WR:
740 case R_PARISC_LTOFF_TP14DR:
741 case R_PARISC_LTOFF_TP16F:
742 case R_PARISC_LTOFF_TP16WF:
743 case R_PARISC_LTOFF_TP16DF:
744 need_entry = NEED_DLT;
745 break;
746
747 /* These are function calls. Depending on their precise target we
748 may need to make a stub for them. The stub uses the PLT, so we
749 need to create PLT entries for these symbols too. */
750 case R_PARISC_PCREL17F:
751 case R_PARISC_PCREL22F:
752 case R_PARISC_PCREL32:
753 case R_PARISC_PCREL64:
754 case R_PARISC_PCREL21L:
755 case R_PARISC_PCREL17R:
756 case R_PARISC_PCREL17C:
757 case R_PARISC_PCREL14R:
758 case R_PARISC_PCREL14F:
759 case R_PARISC_PCREL22C:
760 case R_PARISC_PCREL14WR:
761 case R_PARISC_PCREL14DR:
762 case R_PARISC_PCREL16F:
763 case R_PARISC_PCREL16WF:
764 case R_PARISC_PCREL16DF:
765 need_entry = (NEED_PLT | NEED_STUB);
766 break;
767
768 case R_PARISC_PLTOFF21L:
769 case R_PARISC_PLTOFF14R:
770 case R_PARISC_PLTOFF14F:
771 case R_PARISC_PLTOFF14WR:
772 case R_PARISC_PLTOFF14DR:
773 case R_PARISC_PLTOFF16F:
774 case R_PARISC_PLTOFF16WF:
775 case R_PARISC_PLTOFF16DF:
776 need_entry = (NEED_PLT);
777 break;
778
779 case R_PARISC_DIR64:
780 if (info->shared || maybe_dynamic)
781 need_entry = (NEED_DYNREL);
782 dynrel_type = R_PARISC_DIR64;
783 break;
784
785 /* This is an indirect reference through the DLT to get the address
786 of a OPD descriptor. Thus we need to make a DLT entry that points
787 to an OPD entry. */
788 case R_PARISC_LTOFF_FPTR21L:
789 case R_PARISC_LTOFF_FPTR14R:
790 case R_PARISC_LTOFF_FPTR14WR:
791 case R_PARISC_LTOFF_FPTR14DR:
792 case R_PARISC_LTOFF_FPTR32:
793 case R_PARISC_LTOFF_FPTR64:
794 case R_PARISC_LTOFF_FPTR16F:
795 case R_PARISC_LTOFF_FPTR16WF:
796 case R_PARISC_LTOFF_FPTR16DF:
797 if (info->shared || maybe_dynamic)
798 need_entry = (NEED_DLT | NEED_OPD);
799 else
800 need_entry = (NEED_DLT | NEED_OPD);
801 dynrel_type = R_PARISC_FPTR64;
802 break;
803
804 /* This is a simple OPD entry. */
805 case R_PARISC_FPTR64:
806 if (info->shared || maybe_dynamic)
807 need_entry = (NEED_OPD | NEED_DYNREL);
808 else
809 need_entry = (NEED_OPD);
810 dynrel_type = R_PARISC_FPTR64;
811 break;
812
813 /* Add more cases as needed. */
814 }
815
816 if (!need_entry)
817 continue;
818
819 /* Collect a canonical name for this address. */
820 addr_name = get_dyn_name (abfd, h, rel, &buf, &buf_len);
821
822 /* Collect the canonical entry data for this address. */
823 dyn_h = elf64_hppa_dyn_hash_lookup (&hppa_info->dyn_hash_table,
824 addr_name, true, true);
825 BFD_ASSERT (dyn_h);
826
827 /* Stash away enough information to be able to find this symbol
828 regardless of whether or not it is local or global. */
829 dyn_h->h = h;
830 dyn_h->owner = abfd;
831 dyn_h->sym_indx = r_symndx;
832
833 /* ?!? We may need to do some error checking in here. */
834 /* Create what's needed. */
835 if (need_entry & NEED_DLT)
836 {
837 if (! hppa_info->dlt_sec
838 && ! get_dlt (abfd, info, hppa_info))
839 goto err_out;
840 dyn_h->want_dlt = 1;
841 }
842
843 if (need_entry & NEED_PLT)
844 {
845 if (! hppa_info->plt_sec
846 && ! get_plt (abfd, info, hppa_info))
847 goto err_out;
848 dyn_h->want_plt = 1;
849 }
850
851 if (need_entry & NEED_STUB)
852 {
853 if (! hppa_info->stub_sec
854 && ! get_stub (abfd, info, hppa_info))
855 goto err_out;
856 dyn_h->want_stub = 1;
857 }
858
859 if (need_entry & NEED_OPD)
860 {
861 if (! hppa_info->opd_sec
862 && ! get_opd (abfd, info, hppa_info))
863 goto err_out;
864
865 dyn_h->want_opd = 1;
866
867 /* FPTRs are not allocated by the dynamic linker for PA64, though
868 it is possible that will change in the future. */
869
870 /* This could be a local function that had its address taken, in
871 which case H will be NULL. */
872 if (h)
873 h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
874 }
875
876 /* Add a new dynamic relocation to the chain of dynamic
877 relocations for this symbol. */
878 if ((need_entry & NEED_DYNREL) && (sec->flags & SEC_ALLOC))
879 {
880 if (! hppa_info->other_rel_sec
881 && ! get_reloc_section (abfd, hppa_info, sec))
882 goto err_out;
883
884 if (!count_dyn_reloc (abfd, dyn_h, dynrel_type, sec,
885 sec_symndx, rel->r_offset, rel->r_addend))
886 goto err_out;
887
888 /* If we are building a shared library and we just recorded
889 a dynamic R_PARISC_FPTR64 relocation, then make sure the
890 section symbol for this section ends up in the dynamic
891 symbol table. */
892 if (info->shared && dynrel_type == R_PARISC_FPTR64
893 && ! (_bfd_elf64_link_record_local_dynamic_symbol
894 (info, abfd, sec_symndx)))
895 return false;
896 }
897 }
898
899 if (buf)
900 free (buf);
901 return true;
902
903 err_out:
904 if (buf)
905 free (buf);
906 return false;
907 }
908
909 struct elf64_hppa_allocate_data
910 {
911 struct bfd_link_info *info;
912 bfd_size_type ofs;
913 };
914
915 /* Should we do dynamic things to this symbol? */
916
917 static boolean
918 elf64_hppa_dynamic_symbol_p (h, info)
919 struct elf_link_hash_entry *h;
920 struct bfd_link_info *info;
921 {
922 if (h == NULL)
923 return false;
924
925 while (h->root.type == bfd_link_hash_indirect
926 || h->root.type == bfd_link_hash_warning)
927 h = (struct elf_link_hash_entry *) h->root.u.i.link;
928
929 if (h->dynindx == -1)
930 return false;
931
932 if (h->root.type == bfd_link_hash_undefweak
933 || h->root.type == bfd_link_hash_defweak)
934 return true;
935
936 if (h->root.root.string[0] == '$' && h->root.root.string[1] == '$')
937 return false;
938
939 if ((info->shared && !info->symbolic)
940 || ((h->elf_link_hash_flags
941 & (ELF_LINK_HASH_DEF_DYNAMIC | ELF_LINK_HASH_REF_REGULAR))
942 == (ELF_LINK_HASH_DEF_DYNAMIC | ELF_LINK_HASH_REF_REGULAR)))
943 return true;
944
945 return false;
946 }
947
948 /* Mark all funtions exported by this file so that we can later allocate
949 entries in .opd for them. */
950
951 static boolean
952 elf64_hppa_mark_exported_functions (h, data)
953 struct elf_link_hash_entry *h;
954 PTR data;
955 {
956 struct bfd_link_info *info = (struct bfd_link_info *)data;
957 struct elf64_hppa_link_hash_table *hppa_info;
958
959 hppa_info = elf64_hppa_hash_table (info);
960
961 if (h
962 && (h->root.type == bfd_link_hash_defined
963 || h->root.type == bfd_link_hash_defweak)
964 && h->root.u.def.section->output_section != NULL
965 && h->type == STT_FUNC)
966 {
967 struct elf64_hppa_dyn_hash_entry *dyn_h;
968
969 /* Add this symbol to the PA64 linker hash table. */
970 dyn_h = elf64_hppa_dyn_hash_lookup (&hppa_info->dyn_hash_table,
971 h->root.root.string, true, true);
972 BFD_ASSERT (dyn_h);
973 dyn_h->h = h;
974
975 if (! hppa_info->opd_sec
976 && ! get_opd (hppa_info->root.dynobj, info, hppa_info))
977 return false;
978
979 dyn_h->want_opd = 1;
980 h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
981 }
982
983 return true;
984 }
985
986 /* Allocate space for a DLT entry. */
987
988 static boolean
989 allocate_global_data_dlt (dyn_h, data)
990 struct elf64_hppa_dyn_hash_entry *dyn_h;
991 PTR data;
992 {
993 struct elf64_hppa_allocate_data *x = (struct elf64_hppa_allocate_data *)data;
994
995 if (dyn_h->want_dlt)
996 {
997 struct elf_link_hash_entry *h = dyn_h->h;
998
999 if (x->info->shared)
1000 {
1001 /* Possibly add the symbol to the local dynamic symbol
1002 table since we might need to create a dynamic relocation
1003 against it. */
1004 if (! h
1005 || (h && h->dynindx == -1))
1006 {
1007 bfd *owner;
1008 owner = (h ? h->root.u.def.section->owner : dyn_h->owner);
1009
1010 if (!_bfd_elf64_link_record_local_dynamic_symbol
1011 (x->info, owner, dyn_h->sym_indx))
1012 return false;
1013 }
1014 }
1015
1016 dyn_h->dlt_offset = x->ofs;
1017 x->ofs += DLT_ENTRY_SIZE;
1018 }
1019 return true;
1020 }
1021
1022 /* Allocate space for a DLT.PLT entry. */
1023
1024 static boolean
1025 allocate_global_data_plt (dyn_h, data)
1026 struct elf64_hppa_dyn_hash_entry *dyn_h;
1027 PTR data;
1028 {
1029 struct elf64_hppa_allocate_data *x = (struct elf64_hppa_allocate_data *)data;
1030
1031 if (dyn_h->want_plt
1032 && elf64_hppa_dynamic_symbol_p (dyn_h->h, x->info)
1033 && !((dyn_h->h->root.type == bfd_link_hash_defined
1034 || dyn_h->h->root.type == bfd_link_hash_defweak)
1035 && dyn_h->h->root.u.def.section->output_section != NULL))
1036 {
1037 dyn_h->plt_offset = x->ofs;
1038 x->ofs += PLT_ENTRY_SIZE;
1039 if (dyn_h->plt_offset < 0x2000)
1040 elf64_hppa_hash_table (x->info)->gp_offset = dyn_h->plt_offset;
1041 }
1042 else
1043 dyn_h->want_plt = 0;
1044
1045 return true;
1046 }
1047
1048 /* Allocate space for a STUB entry. */
1049
1050 static boolean
1051 allocate_global_data_stub (dyn_h, data)
1052 struct elf64_hppa_dyn_hash_entry *dyn_h;
1053 PTR data;
1054 {
1055 struct elf64_hppa_allocate_data *x = (struct elf64_hppa_allocate_data *)data;
1056
1057 if (dyn_h->want_stub
1058 && elf64_hppa_dynamic_symbol_p (dyn_h->h, x->info)
1059 && !((dyn_h->h->root.type == bfd_link_hash_defined
1060 || dyn_h->h->root.type == bfd_link_hash_defweak)
1061 && dyn_h->h->root.u.def.section->output_section != NULL))
1062 {
1063 dyn_h->stub_offset = x->ofs;
1064 x->ofs += sizeof (plt_stub);
1065 }
1066 else
1067 dyn_h->want_stub = 0;
1068 return true;
1069 }
1070
1071 /* Allocate space for a FPTR entry. */
1072
1073 static boolean
1074 allocate_global_data_opd (dyn_h, data)
1075 struct elf64_hppa_dyn_hash_entry *dyn_h;
1076 PTR data;
1077 {
1078 struct elf64_hppa_allocate_data *x = (struct elf64_hppa_allocate_data *)data;
1079
1080 if (dyn_h->want_opd)
1081 {
1082 struct elf_link_hash_entry *h = dyn_h->h;
1083
1084 if (h)
1085 while (h->root.type == bfd_link_hash_indirect
1086 || h->root.type == bfd_link_hash_warning)
1087 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1088
1089 /* We never need an opd entry for a symbol which is not
1090 defined by this output file. */
1091 if (h && h->root.type == bfd_link_hash_undefined)
1092 dyn_h->want_opd = 0;
1093
1094 /* If we are creating a shared library, took the address of a local
1095 function or might export this function from this object file, then
1096 we have to create an opd descriptor. */
1097 else if (x->info->shared
1098 || h == NULL
1099 || h->dynindx == -1
1100 || ((h->root.type == bfd_link_hash_defined
1101 || h->root.type == bfd_link_hash_defweak)
1102 && h->root.u.def.section->output_section != NULL))
1103 {
1104 /* If we are creating a shared library, then we will have to
1105 create a runtime relocation for the symbol to properly
1106 initialize the .opd entry. Make sure the symbol gets
1107 added to the dynamic symbol table. */
1108 if (x->info->shared
1109 && (h == NULL || (h->dynindx == -1)))
1110 {
1111 bfd *owner;
1112 owner = (h ? h->root.u.def.section->owner : dyn_h->owner);
1113
1114 if (!_bfd_elf64_link_record_local_dynamic_symbol
1115 (x->info, owner, dyn_h->sym_indx))
1116 return false;
1117 }
1118
1119 /* This may not be necessary or desirable anymore now that
1120 we have some support for dealing with section symbols
1121 in dynamic relocs. But name munging does make the result
1122 much easier to debug. ie, the EPLT reloc will reference
1123 a symbol like .foobar, instead of .text + offset. */
1124 if (x->info->shared && h)
1125 {
1126 char *new_name;
1127 struct elf_link_hash_entry *nh;
1128
1129 new_name = alloca (strlen (h->root.root.string) + 2);
1130 new_name[0] = '.';
1131 strcpy (new_name + 1, h->root.root.string);
1132
1133 nh = elf_link_hash_lookup (elf_hash_table (x->info),
1134 new_name, true, true, true);
1135
1136 nh->root.type = h->root.type;
1137 nh->root.u.def.value = h->root.u.def.value;
1138 nh->root.u.def.section = h->root.u.def.section;
1139
1140 if (! bfd_elf64_link_record_dynamic_symbol (x->info, nh))
1141 return false;
1142
1143 }
1144 dyn_h->opd_offset = x->ofs;
1145 x->ofs += OPD_ENTRY_SIZE;
1146 }
1147
1148 /* Otherwise we do not need an opd entry. */
1149 else
1150 dyn_h->want_opd = 0;
1151 }
1152 return true;
1153 }
1154
1155 /* HP requires the EI_OSABI field to be filled in. The assignment to
1156 EI_ABIVERSION may not be strictly necessary. */
1157
1158 static void
1159 elf64_hppa_post_process_headers (abfd, link_info)
1160 bfd * abfd;
1161 struct bfd_link_info * link_info ATTRIBUTE_UNUSED;
1162 {
1163 Elf_Internal_Ehdr * i_ehdrp;
1164
1165 i_ehdrp = elf_elfheader (abfd);
1166
1167 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_HPUX;
1168 i_ehdrp->e_ident[EI_ABIVERSION] = 1;
1169 }
1170
1171 /* Create function descriptor section (.opd). This section is called .opd
1172 because it contains "official prodecure descriptors". The "official"
1173 refers to the fact that these descriptors are used when taking the address
1174 of a procedure, thus ensuring a unique address for each procedure. */
1175
1176 static boolean
1177 get_opd (abfd, info, hppa_info)
1178 bfd *abfd;
1179 struct bfd_link_info *info ATTRIBUTE_UNUSED;
1180 struct elf64_hppa_link_hash_table *hppa_info;
1181 {
1182 asection *opd;
1183 bfd *dynobj;
1184
1185 opd = hppa_info->opd_sec;
1186 if (!opd)
1187 {
1188 dynobj = hppa_info->root.dynobj;
1189 if (!dynobj)
1190 hppa_info->root.dynobj = dynobj = abfd;
1191
1192 opd = bfd_make_section (dynobj, ".opd");
1193 if (!opd
1194 || !bfd_set_section_flags (dynobj, opd,
1195 (SEC_ALLOC
1196 | SEC_LOAD
1197 | SEC_HAS_CONTENTS
1198 | SEC_IN_MEMORY
1199 | SEC_LINKER_CREATED))
1200 || !bfd_set_section_alignment (abfd, opd, 3))
1201 {
1202 BFD_ASSERT (0);
1203 return false;
1204 }
1205
1206 hppa_info->opd_sec = opd;
1207 }
1208
1209 return true;
1210 }
1211
1212 /* Create the PLT section. */
1213
1214 static boolean
1215 get_plt (abfd, info, hppa_info)
1216 bfd *abfd;
1217 struct bfd_link_info *info ATTRIBUTE_UNUSED;
1218 struct elf64_hppa_link_hash_table *hppa_info;
1219 {
1220 asection *plt;
1221 bfd *dynobj;
1222
1223 plt = hppa_info->plt_sec;
1224 if (!plt)
1225 {
1226 dynobj = hppa_info->root.dynobj;
1227 if (!dynobj)
1228 hppa_info->root.dynobj = dynobj = abfd;
1229
1230 plt = bfd_make_section (dynobj, ".plt");
1231 if (!plt
1232 || !bfd_set_section_flags (dynobj, plt,
1233 (SEC_ALLOC
1234 | SEC_LOAD
1235 | SEC_HAS_CONTENTS
1236 | SEC_IN_MEMORY
1237 | SEC_LINKER_CREATED))
1238 || !bfd_set_section_alignment (abfd, plt, 3))
1239 {
1240 BFD_ASSERT (0);
1241 return false;
1242 }
1243
1244 hppa_info->plt_sec = plt;
1245 }
1246
1247 return true;
1248 }
1249
1250 /* Create the DLT section. */
1251
1252 static boolean
1253 get_dlt (abfd, info, hppa_info)
1254 bfd *abfd;
1255 struct bfd_link_info *info ATTRIBUTE_UNUSED;
1256 struct elf64_hppa_link_hash_table *hppa_info;
1257 {
1258 asection *dlt;
1259 bfd *dynobj;
1260
1261 dlt = hppa_info->dlt_sec;
1262 if (!dlt)
1263 {
1264 dynobj = hppa_info->root.dynobj;
1265 if (!dynobj)
1266 hppa_info->root.dynobj = dynobj = abfd;
1267
1268 dlt = bfd_make_section (dynobj, ".dlt");
1269 if (!dlt
1270 || !bfd_set_section_flags (dynobj, dlt,
1271 (SEC_ALLOC
1272 | SEC_LOAD
1273 | SEC_HAS_CONTENTS
1274 | SEC_IN_MEMORY
1275 | SEC_LINKER_CREATED))
1276 || !bfd_set_section_alignment (abfd, dlt, 3))
1277 {
1278 BFD_ASSERT (0);
1279 return false;
1280 }
1281
1282 hppa_info->dlt_sec = dlt;
1283 }
1284
1285 return true;
1286 }
1287
1288 /* Create the stubs section. */
1289
1290 static boolean
1291 get_stub (abfd, info, hppa_info)
1292 bfd *abfd;
1293 struct bfd_link_info *info ATTRIBUTE_UNUSED;
1294 struct elf64_hppa_link_hash_table *hppa_info;
1295 {
1296 asection *stub;
1297 bfd *dynobj;
1298
1299 stub = hppa_info->stub_sec;
1300 if (!stub)
1301 {
1302 dynobj = hppa_info->root.dynobj;
1303 if (!dynobj)
1304 hppa_info->root.dynobj = dynobj = abfd;
1305
1306 stub = bfd_make_section (dynobj, ".stub");
1307 if (!stub
1308 || !bfd_set_section_flags (dynobj, stub,
1309 (SEC_ALLOC
1310 | SEC_LOAD
1311 | SEC_HAS_CONTENTS
1312 | SEC_IN_MEMORY
1313 | SEC_READONLY
1314 | SEC_LINKER_CREATED))
1315 || !bfd_set_section_alignment (abfd, stub, 3))
1316 {
1317 BFD_ASSERT (0);
1318 return false;
1319 }
1320
1321 hppa_info->stub_sec = stub;
1322 }
1323
1324 return true;
1325 }
1326
1327 /* Create sections necessary for dynamic linking. This is only a rough
1328 cut and will likely change as we learn more about the somewhat
1329 unusual dynamic linking scheme HP uses.
1330
1331 .stub:
1332 Contains code to implement cross-space calls. The first time one
1333 of the stubs is used it will call into the dynamic linker, later
1334 calls will go straight to the target.
1335
1336 The only stub we support right now looks like
1337
1338 ldd OFFSET(%dp),%r1
1339 bve %r0(%r1)
1340 ldd OFFSET+8(%dp),%dp
1341
1342 Other stubs may be needed in the future. We may want the remove
1343 the break/nop instruction. It is only used right now to keep the
1344 offset of a .plt entry and a .stub entry in sync.
1345
1346 .dlt:
1347 This is what most people call the .got. HP used a different name.
1348 Losers.
1349
1350 .rela.dlt:
1351 Relocations for the DLT.
1352
1353 .plt:
1354 Function pointers as address,gp pairs.
1355
1356 .rela.plt:
1357 Should contain dynamic IPLT (and EPLT?) relocations.
1358
1359 .opd:
1360 FPTRS
1361
1362 .rela.opd:
1363 EPLT relocations for symbols exported from shared libraries. */
1364
1365 static boolean
1366 elf64_hppa_create_dynamic_sections (abfd, info)
1367 bfd *abfd;
1368 struct bfd_link_info *info;
1369 {
1370 asection *s;
1371
1372 if (! get_stub (abfd, info, elf64_hppa_hash_table (info)))
1373 return false;
1374
1375 if (! get_dlt (abfd, info, elf64_hppa_hash_table (info)))
1376 return false;
1377
1378 if (! get_plt (abfd, info, elf64_hppa_hash_table (info)))
1379 return false;
1380
1381 if (! get_opd (abfd, info, elf64_hppa_hash_table (info)))
1382 return false;
1383
1384 s = bfd_make_section(abfd, ".rela.dlt");
1385 if (s == NULL
1386 || !bfd_set_section_flags (abfd, s, (SEC_ALLOC | SEC_LOAD
1387 | SEC_HAS_CONTENTS
1388 | SEC_IN_MEMORY
1389 | SEC_READONLY
1390 | SEC_LINKER_CREATED))
1391 || !bfd_set_section_alignment (abfd, s, 3))
1392 return false;
1393 elf64_hppa_hash_table (info)->dlt_rel_sec = s;
1394
1395 s = bfd_make_section(abfd, ".rela.plt");
1396 if (s == NULL
1397 || !bfd_set_section_flags (abfd, s, (SEC_ALLOC | SEC_LOAD
1398 | SEC_HAS_CONTENTS
1399 | SEC_IN_MEMORY
1400 | SEC_READONLY
1401 | SEC_LINKER_CREATED))
1402 || !bfd_set_section_alignment (abfd, s, 3))
1403 return false;
1404 elf64_hppa_hash_table (info)->plt_rel_sec = s;
1405
1406 s = bfd_make_section(abfd, ".rela.data");
1407 if (s == NULL
1408 || !bfd_set_section_flags (abfd, s, (SEC_ALLOC | SEC_LOAD
1409 | SEC_HAS_CONTENTS
1410 | SEC_IN_MEMORY
1411 | SEC_READONLY
1412 | SEC_LINKER_CREATED))
1413 || !bfd_set_section_alignment (abfd, s, 3))
1414 return false;
1415 elf64_hppa_hash_table (info)->other_rel_sec = s;
1416
1417 s = bfd_make_section(abfd, ".rela.opd");
1418 if (s == NULL
1419 || !bfd_set_section_flags (abfd, s, (SEC_ALLOC | SEC_LOAD
1420 | SEC_HAS_CONTENTS
1421 | SEC_IN_MEMORY
1422 | SEC_READONLY
1423 | SEC_LINKER_CREATED))
1424 || !bfd_set_section_alignment (abfd, s, 3))
1425 return false;
1426 elf64_hppa_hash_table (info)->opd_rel_sec = s;
1427
1428 return true;
1429 }
1430
1431 /* Allocate dynamic relocations for those symbols that turned out
1432 to be dynamic. */
1433
1434 static boolean
1435 allocate_dynrel_entries (dyn_h, data)
1436 struct elf64_hppa_dyn_hash_entry *dyn_h;
1437 PTR data;
1438 {
1439 struct elf64_hppa_allocate_data *x = (struct elf64_hppa_allocate_data *)data;
1440 struct elf64_hppa_link_hash_table *hppa_info;
1441 struct elf64_hppa_dyn_reloc_entry *rent;
1442 boolean dynamic_symbol, shared;
1443
1444 hppa_info = elf64_hppa_hash_table (x->info);
1445 dynamic_symbol = elf64_hppa_dynamic_symbol_p (dyn_h->h, x->info);
1446 shared = x->info->shared;
1447
1448 /* We may need to allocate relocations for a non-dynamic symbol
1449 when creating a shared library. */
1450 if (!dynamic_symbol && !shared)
1451 return true;
1452
1453 /* Take care of the normal data relocations. */
1454
1455 for (rent = dyn_h->reloc_entries; rent; rent = rent->next)
1456 {
1457 switch (rent->type)
1458 {
1459 case R_PARISC_FPTR64:
1460 /* Allocate one iff we are not building a shared library and
1461 !want_opd, which by this point will be true only if we're
1462 actually allocating one statically in the main executable. */
1463 if (!x->info->shared && dyn_h->want_opd)
1464 continue;
1465 break;
1466 }
1467 hppa_info->other_rel_sec->_raw_size += sizeof (Elf64_External_Rela);
1468
1469 /* Make sure this symbol gets into the dynamic symbol table if it is
1470 not already recorded. ?!? This should not be in the loop since
1471 the symbol need only be added once. */
1472 if (dyn_h->h == 0 || dyn_h->h->dynindx == -1)
1473 if (!_bfd_elf64_link_record_local_dynamic_symbol
1474 (x->info, rent->sec->owner, dyn_h->sym_indx))
1475 return false;
1476 }
1477
1478 /* Take care of the GOT and PLT relocations. */
1479
1480 if ((dynamic_symbol || shared) && dyn_h->want_dlt)
1481 hppa_info->dlt_rel_sec->_raw_size += sizeof (Elf64_External_Rela);
1482
1483 /* If we are building a shared library, then every symbol that has an
1484 opd entry will need an EPLT relocation to relocate the symbol's address
1485 and __gp value based on the runtime load address. */
1486 if (shared && dyn_h->want_opd)
1487 hppa_info->opd_rel_sec->_raw_size += sizeof (Elf64_External_Rela);
1488
1489 if (dyn_h->want_plt && dynamic_symbol)
1490 {
1491 bfd_size_type t = 0;
1492
1493 /* Dynamic symbols get one IPLT relocation. Local symbols in
1494 shared libraries get two REL relocations. Local symbols in
1495 main applications get nothing. */
1496 if (dynamic_symbol)
1497 t = sizeof (Elf64_External_Rela);
1498 else if (shared)
1499 t = 2 * sizeof (Elf64_External_Rela);
1500
1501 hppa_info->plt_rel_sec->_raw_size += t;
1502 }
1503
1504 return true;
1505 }
1506
1507 /* Adjust a symbol defined by a dynamic object and referenced by a
1508 regular object. */
1509
1510 static boolean
1511 elf64_hppa_adjust_dynamic_symbol (info, h)
1512 struct bfd_link_info *info ATTRIBUTE_UNUSED;
1513 struct elf_link_hash_entry *h;
1514 {
1515 /* ??? Undefined symbols with PLT entries should be re-defined
1516 to be the PLT entry. */
1517
1518 /* If this is a weak symbol, and there is a real definition, the
1519 processor independent code will have arranged for us to see the
1520 real definition first, and we can just use the same value. */
1521 if (h->weakdef != NULL)
1522 {
1523 BFD_ASSERT (h->weakdef->root.type == bfd_link_hash_defined
1524 || h->weakdef->root.type == bfd_link_hash_defweak);
1525 h->root.u.def.section = h->weakdef->root.u.def.section;
1526 h->root.u.def.value = h->weakdef->root.u.def.value;
1527 return true;
1528 }
1529
1530 /* If this is a reference to a symbol defined by a dynamic object which
1531 is not a function, we might allocate the symbol in our .dynbss section
1532 and allocate a COPY dynamic relocation.
1533
1534 But PA64 code is canonically PIC, so as a rule we can avoid this sort
1535 of hackery. */
1536
1537 return true;
1538 }
1539
1540 /* Set the final sizes of the dynamic sections and allocate memory for
1541 the contents of our special sections. */
1542
1543 static boolean
1544 elf64_hppa_size_dynamic_sections (output_bfd, info)
1545 bfd *output_bfd;
1546 struct bfd_link_info *info;
1547 {
1548 bfd *dynobj;
1549 asection *s;
1550 boolean plt;
1551 boolean relocs;
1552 boolean reltext;
1553 struct elf64_hppa_allocate_data data;
1554 struct elf64_hppa_link_hash_table *hppa_info;
1555
1556 hppa_info = elf64_hppa_hash_table (info);
1557
1558 dynobj = elf_hash_table (info)->dynobj;
1559 BFD_ASSERT (dynobj != NULL);
1560
1561 if (elf_hash_table (info)->dynamic_sections_created)
1562 {
1563 /* Set the contents of the .interp section to the interpreter. */
1564 if (! info->shared)
1565 {
1566 s = bfd_get_section_by_name (dynobj, ".interp");
1567 BFD_ASSERT (s != NULL);
1568 s->_raw_size = sizeof ELF_DYNAMIC_INTERPRETER;
1569 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
1570 }
1571 }
1572 else
1573 {
1574 /* We may have created entries in the .rela.got section.
1575 However, if we are not creating the dynamic sections, we will
1576 not actually use these entries. Reset the size of .rela.dlt,
1577 which will cause it to get stripped from the output file
1578 below. */
1579 s = bfd_get_section_by_name (dynobj, ".rela.dlt");
1580 if (s != NULL)
1581 s->_raw_size = 0;
1582 }
1583
1584 /* Allocate the GOT entries. */
1585
1586 data.info = info;
1587 if (elf64_hppa_hash_table (info)->dlt_sec)
1588 {
1589 data.ofs = 0x0;
1590 elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
1591 allocate_global_data_dlt, &data);
1592 hppa_info->dlt_sec->_raw_size = data.ofs;
1593
1594 data.ofs = 0x0;
1595 elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
1596 allocate_global_data_plt, &data);
1597 hppa_info->plt_sec->_raw_size = data.ofs;
1598
1599 data.ofs = 0x0;
1600 elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
1601 allocate_global_data_stub, &data);
1602 hppa_info->stub_sec->_raw_size = data.ofs;
1603 }
1604
1605 /* Mark each function this program exports so that we will allocate
1606 space in the .opd section for each function's FPTR.
1607
1608 We have to traverse the main linker hash table since we have to
1609 find functions which may not have been mentioned in any relocs. */
1610 elf_link_hash_traverse (elf_hash_table (info),
1611 elf64_hppa_mark_exported_functions,
1612 info);
1613
1614 /* Allocate space for entries in the .opd section. */
1615 if (elf64_hppa_hash_table (info)->opd_sec)
1616 {
1617 data.ofs = 0;
1618 elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
1619 allocate_global_data_opd, &data);
1620 hppa_info->opd_sec->_raw_size = data.ofs;
1621 }
1622
1623 /* Now allocate space for dynamic relocations, if necessary. */
1624 if (hppa_info->root.dynamic_sections_created)
1625 elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
1626 allocate_dynrel_entries, &data);
1627
1628 /* The sizes of all the sections are set. Allocate memory for them. */
1629 plt = false;
1630 relocs = false;
1631 reltext = false;
1632 for (s = dynobj->sections; s != NULL; s = s->next)
1633 {
1634 const char *name;
1635 boolean strip;
1636
1637 if ((s->flags & SEC_LINKER_CREATED) == 0)
1638 continue;
1639
1640 /* It's OK to base decisions on the section name, because none
1641 of the dynobj section names depend upon the input files. */
1642 name = bfd_get_section_name (dynobj, s);
1643
1644 strip = 0;
1645
1646 if (strcmp (name, ".plt") == 0)
1647 {
1648 if (s->_raw_size == 0)
1649 {
1650 /* Strip this section if we don't need it; see the
1651 comment below. */
1652 strip = true;
1653 }
1654 else
1655 {
1656 /* Remember whether there is a PLT. */
1657 plt = true;
1658 }
1659 }
1660 else if (strcmp (name, ".dlt") == 0)
1661 {
1662 if (s->_raw_size == 0)
1663 {
1664 /* Strip this section if we don't need it; see the
1665 comment below. */
1666 strip = true;
1667 }
1668 }
1669 else if (strcmp (name, ".opd") == 0)
1670 {
1671 if (s->_raw_size == 0)
1672 {
1673 /* Strip this section if we don't need it; see the
1674 comment below. */
1675 strip = true;
1676 }
1677 }
1678 else if (strncmp (name, ".rela", 4) == 0)
1679 {
1680 if (s->_raw_size == 0)
1681 {
1682 /* If we don't need this section, strip it from the
1683 output file. This is mostly to handle .rela.bss and
1684 .rela.plt. We must create both sections in
1685 create_dynamic_sections, because they must be created
1686 before the linker maps input sections to output
1687 sections. The linker does that before
1688 adjust_dynamic_symbol is called, and it is that
1689 function which decides whether anything needs to go
1690 into these sections. */
1691 strip = true;
1692 }
1693 else
1694 {
1695 asection *target;
1696
1697 /* Remember whether there are any reloc sections other
1698 than .rela.plt. */
1699 if (strcmp (name, ".rela.plt") != 0)
1700 {
1701 const char *outname;
1702
1703 relocs = true;
1704
1705 /* If this relocation section applies to a read only
1706 section, then we probably need a DT_TEXTREL
1707 entry. The entries in the .rela.plt section
1708 really apply to the .got section, which we
1709 created ourselves and so know is not readonly. */
1710 outname = bfd_get_section_name (output_bfd,
1711 s->output_section);
1712 target = bfd_get_section_by_name (output_bfd, outname + 4);
1713 if (target != NULL
1714 && (target->flags & SEC_READONLY) != 0
1715 && (target->flags & SEC_ALLOC) != 0)
1716 reltext = true;
1717 }
1718
1719 /* We use the reloc_count field as a counter if we need
1720 to copy relocs into the output file. */
1721 s->reloc_count = 0;
1722 }
1723 }
1724 else if (strncmp (name, ".dlt", 4) != 0
1725 && strcmp (name, ".stub") != 0
1726 && strcmp (name, ".got") != 0)
1727 {
1728 /* It's not one of our sections, so don't allocate space. */
1729 continue;
1730 }
1731
1732 if (strip)
1733 {
1734 _bfd_strip_section_from_output (info, s);
1735 continue;
1736 }
1737
1738 /* Allocate memory for the section contents if it has not
1739 been allocated already. */
1740 if (s->contents == NULL)
1741 {
1742 s->contents = (bfd_byte *) bfd_alloc (dynobj, s->_raw_size);
1743 if (s->contents == NULL && s->_raw_size != 0)
1744 return false;
1745 }
1746 }
1747
1748 if (elf_hash_table (info)->dynamic_sections_created)
1749 {
1750 /* Always create a DT_PLTGOT. It actually has nothing to do with
1751 the PLT, it is how we communicate the __gp value of a load
1752 module to the dynamic linker. */
1753 if (! bfd_elf64_add_dynamic_entry (info, DT_HP_DLD_FLAGS, 0)
1754 || ! bfd_elf64_add_dynamic_entry (info, DT_PLTGOT, 0))
1755 return false;
1756
1757 /* Add some entries to the .dynamic section. We fill in the
1758 values later, in elf64_hppa_finish_dynamic_sections, but we
1759 must add the entries now so that we get the correct size for
1760 the .dynamic section. The DT_DEBUG entry is filled in by the
1761 dynamic linker and used by the debugger. */
1762 if (! info->shared)
1763 {
1764 if (! bfd_elf64_add_dynamic_entry (info, DT_DEBUG, 0)
1765 || ! bfd_elf64_add_dynamic_entry (info, DT_HP_DLD_HOOK, 0)
1766 || ! bfd_elf64_add_dynamic_entry (info, DT_HP_LOAD_MAP, 0))
1767 return false;
1768 }
1769
1770 if (plt)
1771 {
1772 if (! bfd_elf64_add_dynamic_entry (info, DT_PLTRELSZ, 0)
1773 || ! bfd_elf64_add_dynamic_entry (info, DT_PLTREL, DT_RELA)
1774 || ! bfd_elf64_add_dynamic_entry (info, DT_JMPREL, 0))
1775 return false;
1776 }
1777
1778 if (relocs)
1779 {
1780 if (! bfd_elf64_add_dynamic_entry (info, DT_RELA, 0)
1781 || ! bfd_elf64_add_dynamic_entry (info, DT_RELASZ, 0)
1782 || ! bfd_elf64_add_dynamic_entry (info, DT_RELAENT,
1783 sizeof (Elf64_External_Rela)))
1784 return false;
1785 }
1786
1787 if (reltext)
1788 {
1789 if (! bfd_elf64_add_dynamic_entry (info, DT_TEXTREL, 0))
1790 return false;
1791 }
1792 }
1793
1794 return true;
1795 }
1796
1797 /* Called after we have output the symbol into the dynamic symbol
1798 table, but before we output the symbol into the normal symbol
1799 table.
1800
1801 For some symbols we had to change their address when outputting
1802 the dynamic symbol table. We undo that change here so that
1803 the symbols have their expected value in the normal symbol
1804 table. Ick. */
1805
1806 static boolean
1807 elf64_hppa_link_output_symbol_hook (abfd, info, name, sym, input_sec)
1808 bfd *abfd ATTRIBUTE_UNUSED;
1809 struct bfd_link_info *info;
1810 const char *name;
1811 Elf_Internal_Sym *sym;
1812 asection *input_sec ATTRIBUTE_UNUSED;
1813 {
1814 struct elf64_hppa_link_hash_table *hppa_info;
1815 struct elf64_hppa_dyn_hash_entry *dyn_h;
1816
1817 /* We may be called with the file symbol or section symbols.
1818 They never need munging, so it is safe to ignore them. */
1819 if (!name)
1820 return true;
1821
1822 /* Get the PA dyn_symbol (if any) associated with NAME. */
1823 hppa_info = elf64_hppa_hash_table (info);
1824 dyn_h = elf64_hppa_dyn_hash_lookup (&hppa_info->dyn_hash_table,
1825 name, false, false);
1826
1827 /* Function symbols for which we created .opd entries were munged
1828 by finish_dynamic_symbol and have to be un-munged here. */
1829 if (dyn_h && dyn_h->want_opd)
1830 {
1831 /* Restore the saved value and section index. */
1832 sym->st_value = dyn_h->st_value;
1833 sym->st_shndx = dyn_h->st_shndx;
1834 }
1835
1836 return true;
1837 }
1838
1839 /* Finish up dynamic symbol handling. We set the contents of various
1840 dynamic sections here. */
1841
1842 static boolean
1843 elf64_hppa_finish_dynamic_symbol (output_bfd, info, h, sym)
1844 bfd *output_bfd;
1845 struct bfd_link_info *info;
1846 struct elf_link_hash_entry *h;
1847 Elf_Internal_Sym *sym;
1848 {
1849 asection *stub, *splt, *sdlt, *sopd, *spltrel, *sdltrel;
1850 struct elf64_hppa_link_hash_table *hppa_info;
1851 struct elf64_hppa_dyn_hash_entry *dyn_h;
1852
1853 hppa_info = elf64_hppa_hash_table (info);
1854 dyn_h = elf64_hppa_dyn_hash_lookup (&hppa_info->dyn_hash_table,
1855 h->root.root.string, false, false);
1856
1857 stub = hppa_info->stub_sec;
1858 splt = hppa_info->plt_sec;
1859 sdlt = hppa_info->dlt_sec;
1860 sopd = hppa_info->opd_sec;
1861 spltrel = hppa_info->plt_rel_sec;
1862 sdltrel = hppa_info->dlt_rel_sec;
1863
1864 BFD_ASSERT (stub != NULL && splt != NULL
1865 && sopd != NULL && sdlt != NULL)
1866
1867 /* Incredible. It is actually necessary to NOT use the symbol's real
1868 value when building the dynamic symbol table for a shared library.
1869 At least for symbols that refer to functions.
1870
1871 We will store a new value and section index into the symbol long
1872 enough to output it into the dynamic symbol table, then we restore
1873 the original values (in elf64_hppa_link_output_symbol_hook). */
1874 if (dyn_h && dyn_h->want_opd)
1875 {
1876 /* Save away the original value and section index so that we
1877 can restore them later. */
1878 dyn_h->st_value = sym->st_value;
1879 dyn_h->st_shndx = sym->st_shndx;
1880
1881 /* For the dynamic symbol table entry, we want the value to be
1882 address of this symbol's entry within the .opd section. */
1883 sym->st_value = (dyn_h->opd_offset
1884 + sopd->output_offset
1885 + sopd->output_section->vma);
1886 sym->st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
1887 sopd->output_section);
1888 }
1889
1890 /* Initialize a .plt entry if requested. */
1891 if (dyn_h && dyn_h->want_plt
1892 && elf64_hppa_dynamic_symbol_p (dyn_h->h, info))
1893 {
1894 bfd_vma value;
1895 Elf_Internal_Rela rel;
1896
1897 /* We do not actually care about the value in the PLT entry
1898 if we are creating a shared library and the symbol is
1899 still undefined, we create a dynamic relocation to fill
1900 in the correct value. */
1901 if (info->shared && h->root.type == bfd_link_hash_undefined)
1902 value = 0;
1903 else
1904 value = (h->root.u.def.value + h->root.u.def.section->vma);
1905
1906 /* Fill in the entry in the procedure linkage table.
1907
1908 The format of a plt entry is
1909 <funcaddr> <__gp>.
1910
1911 plt_offset is the offset within the PLT section at which to
1912 install the PLT entry.
1913
1914 We are modifying the in-memory PLT contents here, so we do not add
1915 in the output_offset of the PLT section. */
1916
1917 bfd_put_64 (splt->owner, value, splt->contents + dyn_h->plt_offset);
1918 value = _bfd_get_gp_value (splt->output_section->owner);
1919 bfd_put_64 (splt->owner, value, splt->contents + dyn_h->plt_offset + 0x8);
1920
1921 /* Create a dynamic IPLT relocation for this entry.
1922
1923 We are creating a relocation in the output file's PLT section,
1924 which is included within the DLT secton. So we do need to include
1925 the PLT's output_offset in the computation of the relocation's
1926 address. */
1927 rel.r_offset = (dyn_h->plt_offset + splt->output_offset
1928 + splt->output_section->vma);
1929 rel.r_info = ELF64_R_INFO (h->dynindx, R_PARISC_IPLT);
1930 rel.r_addend = 0;
1931
1932 bfd_elf64_swap_reloca_out (splt->output_section->owner, &rel,
1933 (((Elf64_External_Rela *)
1934 spltrel->contents)
1935 + spltrel->reloc_count));
1936 spltrel->reloc_count++;
1937 }
1938
1939 /* Initialize an external call stub entry if requested. */
1940 if (dyn_h && dyn_h->want_stub
1941 && elf64_hppa_dynamic_symbol_p (dyn_h->h, info))
1942 {
1943 bfd_vma value;
1944 int insn;
1945
1946 /* Install the generic stub template.
1947
1948 We are modifying the contents of the stub section, so we do not
1949 need to include the stub section's output_offset here. */
1950 memcpy (stub->contents + dyn_h->stub_offset, plt_stub, sizeof (plt_stub));
1951
1952 /* Fix up the first ldd instruction.
1953
1954 We are modifying the contents of the STUB section in memory,
1955 so we do not need to include its output offset in this computation.
1956
1957 Note the plt_offset value is the value of the PLT entry relative to
1958 the start of the PLT section. These instructions will reference
1959 data relative to the value of __gp, which may not necessarily have
1960 the same address as the start of the PLT section.
1961
1962 gp_offset contains the offset of __gp within the PLT section. */
1963 value = dyn_h->plt_offset - hppa_info->gp_offset;
1964
1965 insn = bfd_get_32 (stub->owner, stub->contents + dyn_h->stub_offset);
1966 insn &= 0xffffc00e;
1967 insn |= ((value & 0x2000) >> 13);
1968 value &= 0x1ff8;
1969 value <<= 1;
1970 bfd_put_32 (stub->owner, (insn | value),
1971 stub->contents + dyn_h->stub_offset);
1972
1973 /* Fix up the second ldd instruction. */
1974 value = dyn_h->plt_offset - hppa_info->gp_offset + 8;
1975
1976 insn = bfd_get_32 (stub->owner, stub->contents + dyn_h->stub_offset + 8);
1977 insn &= 0xffffc00e;
1978 insn |= ((value & 0x2000) >> 13);
1979 value &= 0x1ff8;
1980 value <<= 1;
1981 bfd_put_32 (stub->owner, (insn | value),
1982 stub->contents + dyn_h->stub_offset + 8);
1983 }
1984
1985 /* Millicode symbols should not be put in the dynamic
1986 symbol table under any circumstances. */
1987 if (ELF_ST_TYPE (sym->st_info) == STT_PARISC_MILLI)
1988 h->dynindx = -1;
1989
1990 return true;
1991 }
1992
1993 /* The .opd section contains FPTRs for each function this file
1994 exports. Initialize the FPTR entries. */
1995
1996 static boolean
1997 elf64_hppa_finalize_opd (dyn_h, data)
1998 struct elf64_hppa_dyn_hash_entry *dyn_h;
1999 PTR data;
2000 {
2001 struct bfd_link_info *info = (struct bfd_link_info *)data;
2002 struct elf64_hppa_link_hash_table *hppa_info;
2003 struct elf_link_hash_entry *h = dyn_h->h;
2004 asection *sopd;
2005 asection *sopdrel;
2006
2007 hppa_info = elf64_hppa_hash_table (info);
2008 sopd = hppa_info->opd_sec;
2009 sopdrel = hppa_info->opd_rel_sec;
2010
2011 if (h && dyn_h && dyn_h->want_opd)
2012 {
2013 bfd_vma value;
2014
2015 /* The first two words of an .opd entry are zero.
2016
2017 We are modifying the contents of the OPD section in memory, so we
2018 do not need to include its output offset in this computation. */
2019 memset (sopd->contents + dyn_h->opd_offset, 0, 16);
2020
2021 value = (h->root.u.def.value
2022 + h->root.u.def.section->output_section->vma
2023 + h->root.u.def.section->output_offset);
2024
2025 /* The next word is the address of the function. */
2026 bfd_put_64 (sopd->owner, value, sopd->contents + dyn_h->opd_offset + 16);
2027
2028 /* The last word is our local __gp value. */
2029 value = _bfd_get_gp_value (sopd->output_section->owner);
2030 bfd_put_64 (sopd->owner, value, sopd->contents + dyn_h->opd_offset + 24);
2031 }
2032
2033 /* If we are generating a shared library, we must generate EPLT relocations
2034 for each entry in the .opd, even for static functions (they may have
2035 had their address taken). */
2036 if (info->shared && dyn_h && dyn_h->want_opd)
2037 {
2038 Elf64_Internal_Rela rel;
2039 int dynindx;
2040
2041 /* We may need to do a relocation against a local symbol, in
2042 which case we have to look up it's dynamic symbol index off
2043 the local symbol hash table. */
2044 if (h && h->dynindx != -1)
2045 dynindx = h->dynindx;
2046 else
2047 dynindx
2048 = _bfd_elf_link_lookup_local_dynindx (info, dyn_h->owner,
2049 dyn_h->sym_indx);
2050
2051 /* The offset of this relocation is the absolute address of the
2052 .opd entry for this symbol. */
2053 rel.r_offset = (dyn_h->opd_offset + sopd->output_offset
2054 + sopd->output_section->vma);
2055
2056 /* If H is non-null, then we have an external symbol.
2057
2058 It is imperative that we use a different dynamic symbol for the
2059 EPLT relocation if the symbol has global scope.
2060
2061 In the dynamic symbol table, the function symbol will have a value
2062 which is address of the function's .opd entry.
2063
2064 Thus, we can not use that dynamic symbol for the EPLT relocation
2065 (if we did, the data in the .opd would reference itself rather
2066 than the actual address of the function). Instead we have to use
2067 a new dynamic symbol which has the same value as the original global
2068 function symbol.
2069
2070 We prefix the original symbol with a "." and use the new symbol in
2071 the EPLT relocation. This new symbol has already been recorded in
2072 the symbol table, we just have to look it up and use it.
2073
2074 We do not have such problems with static functions because we do
2075 not make their addresses in the dynamic symbol table point to
2076 the .opd entry. Ultimately this should be safe since a static
2077 function can not be directly referenced outside of its shared
2078 library.
2079
2080 We do have to play similar games for FPTR relocations in shared
2081 libraries, including those for static symbols. See the FPTR
2082 handling in elf64_hppa_finalize_dynreloc. */
2083 if (h)
2084 {
2085 char *new_name;
2086 struct elf_link_hash_entry *nh;
2087
2088 new_name = alloca (strlen (h->root.root.string) + 2);
2089 new_name[0] = '.';
2090 strcpy (new_name + 1, h->root.root.string);
2091
2092 nh = elf_link_hash_lookup (elf_hash_table (info),
2093 new_name, false, false, false);
2094
2095 /* All we really want from the new symbol is its dynamic
2096 symbol index. */
2097 dynindx = nh->dynindx;
2098 }
2099
2100 rel.r_addend = 0;
2101 rel.r_info = ELF64_R_INFO (dynindx, R_PARISC_EPLT);
2102
2103 bfd_elf64_swap_reloca_out (sopd->output_section->owner, &rel,
2104 (((Elf64_External_Rela *)
2105 sopdrel->contents)
2106 + sopdrel->reloc_count));
2107 sopdrel->reloc_count++;
2108 }
2109 return true;
2110 }
2111
2112 /* The .dlt section contains addresses for items referenced through the
2113 dlt. Note that we can have a DLTIND relocation for a local symbol, thus
2114 we can not depend on finish_dynamic_symbol to initialize the .dlt. */
2115
2116 static boolean
2117 elf64_hppa_finalize_dlt (dyn_h, data)
2118 struct elf64_hppa_dyn_hash_entry *dyn_h;
2119 PTR data;
2120 {
2121 struct bfd_link_info *info = (struct bfd_link_info *)data;
2122 struct elf64_hppa_link_hash_table *hppa_info;
2123 asection *sdlt, *sdltrel;
2124 struct elf_link_hash_entry *h = dyn_h->h;
2125
2126 hppa_info = elf64_hppa_hash_table (info);
2127
2128 sdlt = hppa_info->dlt_sec;
2129 sdltrel = hppa_info->dlt_rel_sec;
2130
2131 /* H/DYN_H may refer to a local variable and we know it's
2132 address, so there is no need to create a relocation. Just install
2133 the proper value into the DLT, note this shortcut can not be
2134 skipped when building a shared library. */
2135 if (! info->shared && h && dyn_h && dyn_h->want_dlt)
2136 {
2137 bfd_vma value;
2138
2139 /* If we had an LTOFF_FPTR style relocation we want the DLT entry
2140 to point to the FPTR entry in the .opd section.
2141
2142 We include the OPD's output offset in this computation as
2143 we are referring to an absolute address in the resulting
2144 object file. */
2145 if (dyn_h->want_opd)
2146 {
2147 value = (dyn_h->opd_offset
2148 + hppa_info->opd_sec->output_offset
2149 + hppa_info->opd_sec->output_section->vma);
2150 }
2151 else
2152 {
2153 value = (h->root.u.def.value
2154 + h->root.u.def.section->output_offset);
2155
2156 if (h->root.u.def.section->output_section)
2157 value += h->root.u.def.section->output_section->vma;
2158 else
2159 value += h->root.u.def.section->vma;
2160 }
2161
2162 /* We do not need to include the output offset of the DLT section
2163 here because we are modifying the in-memory contents. */
2164 bfd_put_64 (sdlt->owner, value, sdlt->contents + dyn_h->dlt_offset);
2165 }
2166
2167 /* Create a relocation for the DLT entry assocated with this symbol.
2168 When building a shared library the symbol does not have to be dynamic. */
2169 if (dyn_h->want_dlt
2170 && (elf64_hppa_dynamic_symbol_p (dyn_h->h, info) || info->shared))
2171 {
2172 Elf64_Internal_Rela rel;
2173 int dynindx;
2174
2175 /* We may need to do a relocation against a local symbol, in
2176 which case we have to look up it's dynamic symbol index off
2177 the local symbol hash table. */
2178 if (h && h->dynindx != -1)
2179 dynindx = h->dynindx;
2180 else
2181 dynindx
2182 = _bfd_elf_link_lookup_local_dynindx (info, dyn_h->owner,
2183 dyn_h->sym_indx);
2184
2185
2186 /* Create a dynamic relocation for this entry. Do include the output
2187 offset of the DLT entry since we need an absolute address in the
2188 resulting object file. */
2189 rel.r_offset = (dyn_h->dlt_offset + sdlt->output_offset
2190 + sdlt->output_section->vma);
2191 if (h && h->type == STT_FUNC)
2192 rel.r_info = ELF64_R_INFO (dynindx, R_PARISC_FPTR64);
2193 else
2194 rel.r_info = ELF64_R_INFO (dynindx, R_PARISC_DIR64);
2195 rel.r_addend = 0;
2196
2197 bfd_elf64_swap_reloca_out (sdlt->output_section->owner, &rel,
2198 (((Elf64_External_Rela *)
2199 sdltrel->contents)
2200 + sdltrel->reloc_count));
2201 sdltrel->reloc_count++;
2202 }
2203 return true;
2204 }
2205
2206 /* Finalize the dynamic relocations. Specifically the FPTR relocations
2207 for dynamic functions used to initialize static data. */
2208
2209 static boolean
2210 elf64_hppa_finalize_dynreloc (dyn_h, data)
2211 struct elf64_hppa_dyn_hash_entry *dyn_h;
2212 PTR data;
2213 {
2214 struct bfd_link_info *info = (struct bfd_link_info *)data;
2215 struct elf64_hppa_link_hash_table *hppa_info;
2216 struct elf_link_hash_entry *h;
2217 int dynamic_symbol;
2218
2219 dynamic_symbol = elf64_hppa_dynamic_symbol_p (dyn_h->h, info);
2220
2221 if (!dynamic_symbol && !info->shared)
2222 return true;
2223
2224 if (dyn_h->reloc_entries)
2225 {
2226 struct elf64_hppa_dyn_reloc_entry *rent;
2227 int dynindx;
2228
2229 hppa_info = elf64_hppa_hash_table (info);
2230 h = dyn_h->h;
2231
2232 /* We may need to do a relocation against a local symbol, in
2233 which case we have to look up it's dynamic symbol index off
2234 the local symbol hash table. */
2235 if (h && h->dynindx != -1)
2236 dynindx = h->dynindx;
2237 else
2238 dynindx
2239 = _bfd_elf_link_lookup_local_dynindx (info, dyn_h->owner,
2240 dyn_h->sym_indx);
2241
2242 for (rent = dyn_h->reloc_entries; rent; rent = rent->next)
2243 {
2244 Elf64_Internal_Rela rel;
2245
2246 switch (rent->type)
2247 {
2248 case R_PARISC_FPTR64:
2249 /* Allocate one iff we are not building a shared library and
2250 !want_opd, which by this point will be true only if we're
2251 actually allocating one statically in the main executable. */
2252 if (!info->shared && dyn_h->want_opd)
2253 continue;
2254 break;
2255 }
2256
2257 /* Create a dynamic relocation for this entry.
2258
2259 We need the output offset for the reloc's section because
2260 we are creating an absolute address in the resulting object
2261 file. */
2262 rel.r_offset = (rent->offset + rent->sec->output_offset
2263 + rent->sec->output_section->vma);
2264
2265 /* An FPTR64 relocation implies that we took the address of
2266 a function and that the function has an entry in the .opd
2267 section. We want the FPTR64 relocation to reference the
2268 entry in .opd.
2269
2270 We could munge the symbol value in the dynamic symbol table
2271 (in fact we already do for functions with global scope) to point
2272 to the .opd entry. Then we could use that dynamic symbol in
2273 this relocation.
2274
2275 Or we could do something sensible, not munge the symbol's
2276 address and instead just use a different symbol to reference
2277 the .opd entry. At least that seems sensible until you
2278 realize there's no local dynamic symbols we can use for that
2279 purpose. Thus the hair in the check_relocs routine.
2280
2281 We use a section symbol recorded by check_relocs as the
2282 base symbol for the relocation. The addend is the difference
2283 between the section symbol and the address of the .opd entry. */
2284 if (info->shared && rent->type == R_PARISC_FPTR64)
2285 {
2286 bfd_vma value, value2;
2287
2288 /* First compute the address of the opd entry for this symbol. */
2289 value = (dyn_h->opd_offset
2290 + hppa_info->opd_sec->output_section->vma
2291 + hppa_info->opd_sec->output_offset);
2292
2293 /* Compute the value of the start of the section with
2294 the relocation. */
2295 value2 = (rent->sec->output_section->vma
2296 + rent->sec->output_offset);
2297
2298 /* Compute the difference between the start of the section
2299 with the relocation and the opd entry. */
2300 value -= value2;
2301
2302 /* The result becomes the addend of the relocation. */
2303 rel.r_addend = value;
2304
2305 /* The section symbol becomes the symbol for the dynamic
2306 relocation. */
2307 dynindx
2308 = _bfd_elf_link_lookup_local_dynindx (info,
2309 rent->sec->owner,
2310 rent->sec_symndx);
2311 }
2312 else
2313 rel.r_addend = rent->addend;
2314
2315 rel.r_info = ELF64_R_INFO (dynindx, rent->type);
2316
2317 bfd_elf64_swap_reloca_out (hppa_info->other_rel_sec->output_section->owner,
2318 &rel,
2319 (((Elf64_External_Rela *)
2320 hppa_info->other_rel_sec->contents)
2321 + hppa_info->other_rel_sec->reloc_count));
2322 hppa_info->other_rel_sec->reloc_count++;
2323 }
2324 }
2325
2326 return true;
2327 }
2328
2329 /* Finish up the dynamic sections. */
2330
2331 static boolean
2332 elf64_hppa_finish_dynamic_sections (output_bfd, info)
2333 bfd *output_bfd;
2334 struct bfd_link_info *info;
2335 {
2336 bfd *dynobj;
2337 asection *sdyn;
2338 struct elf64_hppa_link_hash_table *hppa_info;
2339
2340 hppa_info = elf64_hppa_hash_table (info);
2341
2342 /* Finalize the contents of the .opd section. */
2343 elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
2344 elf64_hppa_finalize_opd,
2345 info);
2346
2347 elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
2348 elf64_hppa_finalize_dynreloc,
2349 info);
2350
2351 /* Finalize the contents of the .dlt section. */
2352 dynobj = elf_hash_table (info)->dynobj;
2353 /* Finalize the contents of the .dlt section. */
2354 elf64_hppa_dyn_hash_traverse (&hppa_info->dyn_hash_table,
2355 elf64_hppa_finalize_dlt,
2356 info);
2357
2358
2359 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
2360
2361 if (elf_hash_table (info)->dynamic_sections_created)
2362 {
2363 Elf64_External_Dyn *dyncon, *dynconend;
2364
2365 BFD_ASSERT (sdyn != NULL);
2366
2367 dyncon = (Elf64_External_Dyn *) sdyn->contents;
2368 dynconend = (Elf64_External_Dyn *) (sdyn->contents + sdyn->_raw_size);
2369 for (; dyncon < dynconend; dyncon++)
2370 {
2371 Elf_Internal_Dyn dyn;
2372 asection *s;
2373
2374 bfd_elf64_swap_dyn_in (dynobj, dyncon, &dyn);
2375
2376 switch (dyn.d_tag)
2377 {
2378 default:
2379 break;
2380
2381 case DT_HP_LOAD_MAP:
2382 /* Compute the absolute address of 16byte scratchpad area
2383 for the dynamic linker.
2384
2385 By convention the linker script will allocate the scratchpad
2386 area at the start of the .data section. So all we have to
2387 to is find the start of the .data section. */
2388 s = bfd_get_section_by_name (output_bfd, ".data");
2389 dyn.d_un.d_ptr = s->vma;
2390 bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
2391 break;
2392
2393 case DT_PLTGOT:
2394 /* HP's use PLTGOT to set the GOT register. */
2395 dyn.d_un.d_ptr = _bfd_get_gp_value (output_bfd);
2396 bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
2397 break;
2398
2399 case DT_JMPREL:
2400 s = hppa_info->plt_rel_sec;
2401 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
2402 bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
2403 break;
2404
2405 case DT_PLTRELSZ:
2406 s = hppa_info->plt_rel_sec;
2407 dyn.d_un.d_val = s->_raw_size;
2408 bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
2409 break;
2410
2411 case DT_RELA:
2412 s = hppa_info->other_rel_sec;
2413 if (! s)
2414 s = hppa_info->dlt_rel_sec;
2415 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
2416 bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
2417 break;
2418
2419 case DT_RELASZ:
2420 s = hppa_info->other_rel_sec;
2421 dyn.d_un.d_val = s->_raw_size;
2422 s = hppa_info->dlt_rel_sec;
2423 dyn.d_un.d_val += s->_raw_size;
2424 s = hppa_info->opd_rel_sec;
2425 dyn.d_un.d_val += s->_raw_size;
2426 /* There is some question about whether or not the size of
2427 the PLT relocs should be included here. HP's tools do
2428 it, so we'll emulate them. */
2429 s = hppa_info->plt_rel_sec;
2430 dyn.d_un.d_val += s->_raw_size;
2431 bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon);
2432 break;
2433
2434 }
2435 }
2436 }
2437
2438 return true;
2439 }
2440
2441
2442 /* Return the number of additional phdrs we will need.
2443
2444 The generic ELF code only creates PT_PHDRs for executables. The HP
2445 dynamic linker requires PT_PHDRs for dynamic libraries too.
2446
2447 This routine indicates that the backend needs one additional program
2448 header for that case.
2449
2450 Note we do not have access to the link info structure here, so we have
2451 to guess whether or not we are building a shared library based on the
2452 existence of a .interp section. */
2453
2454 static int
2455 elf64_hppa_additional_program_headers (abfd)
2456 bfd *abfd;
2457 {
2458 asection *s;
2459
2460 /* If we are creating a shared library, then we have to create a
2461 PT_PHDR segment. HP's dynamic linker chokes without it. */
2462 s = bfd_get_section_by_name (abfd, ".interp");
2463 if (! s)
2464 return 1;
2465 return 0;
2466 }
2467
2468 /* Allocate and initialize any program headers required by this
2469 specific backend.
2470
2471 The generic ELF code only creates PT_PHDRs for executables. The HP
2472 dynamic linker requires PT_PHDRs for dynamic libraries too.
2473
2474 This allocates the PT_PHDR and initializes it in a manner suitable
2475 for the HP linker.
2476
2477 Note we do not have access to the link info structure here, so we have
2478 to guess whether or not we are building a shared library based on the
2479 existence of a .interp section. */
2480
2481 static boolean
2482 elf64_hppa_modify_segment_map (abfd)
2483 bfd *abfd;
2484 {
2485 struct elf_segment_map *m;
2486 asection *s;
2487
2488 s = bfd_get_section_by_name (abfd, ".interp");
2489 if (! s)
2490 {
2491 for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
2492 if (m->p_type == PT_PHDR)
2493 break;
2494 if (m == NULL)
2495 {
2496 m = (struct elf_segment_map *) bfd_zalloc (abfd, sizeof *m);
2497 if (m == NULL)
2498 return false;
2499
2500 m->p_type = PT_PHDR;
2501 m->p_flags = PF_R | PF_X;
2502 m->p_flags_valid = 1;
2503 m->p_paddr_valid = 1;
2504 m->includes_phdrs = 1;
2505
2506 m->next = elf_tdata (abfd)->segment_map;
2507 elf_tdata (abfd)->segment_map = m;
2508 }
2509 }
2510
2511 for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
2512 if (m->p_type == PT_LOAD)
2513 {
2514 int i;
2515
2516 for (i = 0; i < m->count; i++)
2517 {
2518 /* The code "hint" is not really a hint. It is a requirement
2519 for certain versions of the HP dynamic linker. Worse yet,
2520 it must be set even if the shared library does not have
2521 any code in its "text" segment (thus the check for .hash
2522 to catch this situation). */
2523 if (m->sections[i]->flags & SEC_CODE
2524 || (strcmp (m->sections[i]->name, ".hash") == 0))
2525 m->p_flags |= (PF_X | PF_HP_CODE);
2526 }
2527 }
2528
2529 return true;
2530 }
2531
2532 /* The hash bucket size is the standard one, namely 4. */
2533
2534 const struct elf_size_info hppa64_elf_size_info =
2535 {
2536 sizeof (Elf64_External_Ehdr),
2537 sizeof (Elf64_External_Phdr),
2538 sizeof (Elf64_External_Shdr),
2539 sizeof (Elf64_External_Rel),
2540 sizeof (Elf64_External_Rela),
2541 sizeof (Elf64_External_Sym),
2542 sizeof (Elf64_External_Dyn),
2543 sizeof (Elf_External_Note),
2544 4,
2545 1,
2546 64, 8,
2547 ELFCLASS64, EV_CURRENT,
2548 bfd_elf64_write_out_phdrs,
2549 bfd_elf64_write_shdrs_and_ehdr,
2550 bfd_elf64_write_relocs,
2551 bfd_elf64_swap_symbol_out,
2552 bfd_elf64_slurp_reloc_table,
2553 bfd_elf64_slurp_symbol_table,
2554 bfd_elf64_swap_dyn_in,
2555 bfd_elf64_swap_dyn_out,
2556 NULL,
2557 NULL,
2558 NULL,
2559 NULL
2560 };
2561
2562 #define TARGET_BIG_SYM bfd_elf64_hppa_vec
2563 #define TARGET_BIG_NAME "elf64-hppa"
2564 #define ELF_ARCH bfd_arch_hppa
2565 #define ELF_MACHINE_CODE EM_PARISC
2566 /* This is not strictly correct. The maximum page size for PA2.0 is
2567 64M. But everything still uses 4k. */
2568 #define ELF_MAXPAGESIZE 0x1000
2569 #define bfd_elf64_bfd_reloc_type_lookup elf_hppa_reloc_type_lookup
2570 #define bfd_elf64_bfd_is_local_label_name elf_hppa_is_local_label_name
2571 #define elf_info_to_howto elf_hppa_info_to_howto
2572 #define elf_info_to_howto_rel elf_hppa_info_to_howto_rel
2573
2574 #define elf_backend_section_from_shdr elf64_hppa_section_from_shdr
2575 #define elf_backend_object_p elf64_hppa_object_p
2576 #define elf_backend_final_write_processing \
2577 elf_hppa_final_write_processing
2578 #define elf_backend_fake_sections elf_hppa_fake_sections
2579 #define elf_backend_add_symbol_hook elf_hppa_add_symbol_hook
2580
2581 #define elf_backend_relocate_section elf_hppa_relocate_section
2582
2583 #define bfd_elf64_bfd_final_link elf_hppa_final_link
2584
2585 #define elf_backend_create_dynamic_sections \
2586 elf64_hppa_create_dynamic_sections
2587 #define elf_backend_post_process_headers elf64_hppa_post_process_headers
2588
2589 #define elf_backend_adjust_dynamic_symbol \
2590 elf64_hppa_adjust_dynamic_symbol
2591
2592 #define elf_backend_size_dynamic_sections \
2593 elf64_hppa_size_dynamic_sections
2594
2595 #define elf_backend_finish_dynamic_symbol \
2596 elf64_hppa_finish_dynamic_symbol
2597 #define elf_backend_finish_dynamic_sections \
2598 elf64_hppa_finish_dynamic_sections
2599
2600 /* Stuff for the BFD linker: */
2601 #define bfd_elf64_bfd_link_hash_table_create \
2602 elf64_hppa_hash_table_create
2603
2604 #define elf_backend_check_relocs \
2605 elf64_hppa_check_relocs
2606
2607 #define elf_backend_size_info \
2608 hppa64_elf_size_info
2609
2610 #define elf_backend_additional_program_headers \
2611 elf64_hppa_additional_program_headers
2612
2613 #define elf_backend_modify_segment_map \
2614 elf64_hppa_modify_segment_map
2615
2616 #define elf_backend_link_output_symbol_hook \
2617 elf64_hppa_link_output_symbol_hook
2618
2619
2620 #define elf_backend_want_got_plt 0
2621 #define elf_backend_plt_readonly 0
2622 #define elf_backend_want_plt_sym 0
2623 #define elf_backend_got_header_size 0
2624 #define elf_backend_plt_header_size 0
2625 #define elf_backend_type_change_ok true
2626
2627 #include "elf64-target.h"
This page took 0.082447 seconds and 4 git commands to generate.