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