Coverage Report

Created: 2026-04-04 08:16

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/binutils-gdb/bfd/elf32-ppc.c
Line
Count
Source
1
/* PowerPC-specific support for 32-bit ELF
2
   Copyright (C) 1994-2026 Free Software Foundation, Inc.
3
   Written by Ian Lance Taylor, Cygnus Support.
4
5
   This file is part of BFD, the Binary File Descriptor library.
6
7
   This program is free software; you can redistribute it and/or modify
8
   it under the terms of the GNU General Public License as published by
9
   the Free Software Foundation; either version 3 of the License, or
10
   (at your option) any later version.
11
12
   This program is distributed in the hope that it will be useful,
13
   but WITHOUT ANY WARRANTY; without even the implied warranty of
14
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
   GNU General Public License for more details.
16
17
   You should have received a copy of the GNU General Public License
18
   along with this program; if not, write to the
19
   Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20
   Boston, MA 02110-1301, USA.  */
21
22
/* The assembler should generate a full set of section symbols even
23
   when they appear unused.  The linux kernel build tool recordmcount
24
   needs them.  */
25
#define TARGET_KEEP_UNUSED_SECTION_SYMBOLS true
26
27
#include "sysdep.h"
28
#include <stdarg.h>
29
#include "bfd.h"
30
#include "bfdlink.h"
31
#include "libbfd.h"
32
#include "elf-bfd.h"
33
#include "elf/ppc.h"
34
#include "elf32-ppc.h"
35
#include "elf-vxworks.h"
36
#include "dwarf2.h"
37
#include "opcode/ppc.h"
38
39
/* All users of this file have bfd_octets_per_byte (abfd, sec) == 1.  */
40
0
#define OCTETS_PER_BYTE(ABFD, SEC) 1
41
42
typedef enum split16_format_type
43
{
44
  split16a_type = 0,
45
  split16d_type
46
}
47
split16_format_type;
48
49
/* RELA relocations are used here.  */
50
51
static bfd_reloc_status_type ppc_elf_addr16_ha_reloc
52
  (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
53
static bfd_reloc_status_type ppc_elf_unhandled_reloc
54
  (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
55
56
#ifndef ARRAY_SIZE
57
425
#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
58
#endif
59
60
/* Branch prediction bit for branch taken relocs.  */
61
0
#define BRANCH_PREDICT_BIT 0x200000
62
/* Mask to set RA in memory instructions.  */
63
0
#define RA_REGISTER_MASK 0x001f0000
64
/* Value to shift register by to insert RA.  */
65
0
#define RA_REGISTER_SHIFT 16
66
67
/* The name of the dynamic interpreter.  This is put in the .interp
68
   section.  */
69
0
#define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
70
71
/* For old-style PLT.  */
72
/* The number of single-slot PLT entries (the rest use two slots).  */
73
0
#define PLT_NUM_SINGLE_ENTRIES 8192
74
75
/* For new-style .glink and .plt.  */
76
0
#define GLINK_PLTRESOLVE 16*4
77
#define GLINK_ENTRY_SIZE(htab, h)         \
78
0
  ((4*4                 \
79
0
    + (h != NULL              \
80
0
       && h == htab->tls_get_addr          \
81
0
       && !htab->params->no_tls_get_addr_opt ? 8*4 : 0)     \
82
0
    + (1u << htab->params->plt_stub_align) - 1)       \
83
0
   & -(1u << htab->params->plt_stub_align))
84
85
/* VxWorks uses its own plt layout, filled in by the static linker.  */
86
87
/* The standard VxWorks PLT entry.  */
88
0
#define VXWORKS_PLT_ENTRY_SIZE 32
89
static const bfd_vma ppc_elf_vxworks_plt_entry
90
    [VXWORKS_PLT_ENTRY_SIZE / 4] =
91
  {
92
    0x3d800000, /* lis     r12,0     */
93
    0x818c0000, /* lwz     r12,0(r12)    */
94
    0x7d8903a6, /* mtctr   r12       */
95
    0x4e800420, /* bctr        */
96
    0x39600000, /* li    r11,0     */
97
    0x48000000, /* b     14 <.PLT0resolve+0x4> */
98
    0x60000000, /* nop         */
99
    0x60000000, /* nop         */
100
  };
101
static const bfd_vma ppc_elf_vxworks_pic_plt_entry
102
    [VXWORKS_PLT_ENTRY_SIZE / 4] =
103
  {
104
    0x3d9e0000, /* addis r12,r30,0 */
105
    0x818c0000, /* lwz   r12,0(r12) */
106
    0x7d8903a6, /* mtctr r12 */
107
    0x4e800420, /* bctr */
108
    0x39600000, /* li  r11,0 */
109
    0x48000000, /* b   14 <.PLT0resolve+0x4> 14: R_PPC_REL24 .PLTresolve */
110
    0x60000000, /* nop */
111
    0x60000000, /* nop */
112
  };
113
114
/* The initial VxWorks PLT entry.  */
115
0
#define VXWORKS_PLT_INITIAL_ENTRY_SIZE 32
116
static const bfd_vma ppc_elf_vxworks_plt0_entry
117
    [VXWORKS_PLT_INITIAL_ENTRY_SIZE / 4] =
118
  {
119
    0x3d800000, /* lis     r12,0  */
120
    0x398c0000, /* addi    r12,r12,0  */
121
    0x800c0008, /* lwz     r0,8(r12)  */
122
    0x7c0903a6, /* mtctr   r0   */
123
    0x818c0004, /* lwz     r12,4(r12) */
124
    0x4e800420, /* bctr     */
125
    0x60000000, /* nop      */
126
    0x60000000, /* nop      */
127
  };
128
static const bfd_vma ppc_elf_vxworks_pic_plt0_entry
129
    [VXWORKS_PLT_INITIAL_ENTRY_SIZE / 4] =
130
  {
131
    0x819e0008, /* lwz   r12,8(r30) */
132
    0x7d8903a6, /* mtctr r12      */
133
    0x819e0004, /* lwz   r12,4(r30) */
134
    0x4e800420, /* bctr       */
135
    0x60000000, /* nop        */
136
    0x60000000, /* nop        */
137
    0x60000000, /* nop        */
138
    0x60000000, /* nop        */
139
  };
140
141
/* For executables, we have some additional relocations in
142
   .rela.plt.unloaded, for the kernel loader.  */
143
144
/* The number of non-JMP_SLOT relocations per PLT0 slot. */
145
0
#define VXWORKS_PLT_NON_JMP_SLOT_RELOCS 3
146
/* The number of relocations in the PLTResolve slot. */
147
0
#define VXWORKS_PLTRESOLVE_RELOCS 2
148
/* The number of relocations in the PLTResolve slot when creating
149
   a shared library. */
150
#define VXWORKS_PLTRESOLVE_RELOCS_SHLIB 0
151
152
/* Some instructions.  */
153
#define ADDIS_11_11 0x3d6b0000
154
#define ADDIS_11_30 0x3d7e0000
155
#define ADDIS_12_12 0x3d8c0000
156
#define ADDI_11_11  0x396b0000
157
#define ADD_0_11_11 0x7c0b5a14
158
#define ADD_3_12_2  0x7c6c1214
159
#define ADD_11_0_11 0x7d605a14
160
0
#define B   0x48000000
161
#define BA    0x48000002
162
#define BCL_20_31 0x429f0005
163
0
#define BCTR    0x4e800420
164
#define BEQLR   0x4d820020
165
#define CMPWI_11_0  0x2c0b0000
166
0
#define LIS_11    0x3d600000
167
#define LIS_12    0x3d800000
168
#define LWZU_0_12 0x840c0000
169
#define LWZ_0_12  0x800c0000
170
#define LWZ_11_3  0x81630000
171
0
#define LWZ_11_11 0x816b0000
172
#define LWZ_11_30 0x817e0000
173
#define LWZ_12_3  0x81830000
174
#define LWZ_12_12 0x818c0000
175
#define MR_0_3    0x7c601b78
176
#define MR_3_0    0x7c030378
177
#define MFLR_0    0x7c0802a6
178
#define MFLR_12   0x7d8802a6
179
#define MTCTR_0   0x7c0903a6
180
0
#define MTCTR_11  0x7d6903a6
181
#define MTLR_0    0x7c0803a6
182
0
#define NOP   0x60000000
183
#define SUB_11_11_12  0x7d6c5850
184
185
/* Offset of tp and dtp pointers from start of TLS block.  */
186
0
#define TP_OFFSET 0x7000
187
0
#define DTP_OFFSET  0x8000
188
189
/* The value of a defined global symbol.  */
190
#define SYM_VAL(SYM) \
191
0
  ((SYM)->root.u.def.section->output_section->vma \
192
0
   + (SYM)->root.u.def.section->output_offset   \
193
0
   + (SYM)->root.u.def.value)
194

195
/* Relocation HOWTO's.  */
196
/* Like other ELF RELA targets that don't apply multiple
197
   field-altering relocations to the same localation, src_mask is
198
   always zero and pcrel_offset is the same as pc_relative.
199
   PowerPC can always use a zero bitpos, even when the field is not at
200
   the LSB.  For example, a REL24 could use rightshift=2, bisize=24
201
   and bitpos=2 which matches the ABI description, or as we do here,
202
   rightshift=0, bitsize=26 and bitpos=0.  */
203
#define HOW(type, size, bitsize, mask, rightshift, pc_relative, \
204
      complain, special_func)       \
205
  HOWTO (type, rightshift, size, bitsize, pc_relative, 0, \
206
   complain_overflow_ ## complain, special_func,    \
207
   #type, false, 0, mask, pc_relative)
208
209
static reloc_howto_type *ppc_elf_howto_table[R_PPC_max];
210
211
static reloc_howto_type ppc_elf_howto_raw[] = {
212
  /* This reloc does nothing.  */
213
  HOW (R_PPC_NONE, 0, 0, 0, 0, false, dont,
214
       bfd_elf_generic_reloc),
215
216
  /* A standard 32 bit relocation.  */
217
  HOW (R_PPC_ADDR32, 4, 32, 0xffffffff, 0, false, dont,
218
       bfd_elf_generic_reloc),
219
220
  /* An absolute 26 bit branch; the lower two bits must be zero.
221
     FIXME: we don't check that, we just clear them.  */
222
  HOW (R_PPC_ADDR24, 4, 26, 0x3fffffc, 0, false, signed,
223
       bfd_elf_generic_reloc),
224
225
  /* A standard 16 bit relocation.  */
226
  HOW (R_PPC_ADDR16, 2, 16, 0xffff, 0, false, bitfield,
227
       bfd_elf_generic_reloc),
228
229
  /* A 16 bit relocation without overflow.  */
230
  HOW (R_PPC_ADDR16_LO, 2, 16, 0xffff, 0, false, dont,
231
       bfd_elf_generic_reloc),
232
233
  /* The high order 16 bits of an address.  */
234
  HOW (R_PPC_ADDR16_HI, 2, 16, 0xffff, 16, false, dont,
235
       bfd_elf_generic_reloc),
236
237
  /* The high order 16 bits of an address, plus 1 if the contents of
238
     the low 16 bits, treated as a signed number, is negative.  */
239
  HOW (R_PPC_ADDR16_HA, 2, 16, 0xffff, 16, false, dont,
240
       ppc_elf_addr16_ha_reloc),
241
242
  /* An absolute 16 bit branch; the lower two bits must be zero.
243
     FIXME: we don't check that, we just clear them.  */
244
  HOW (R_PPC_ADDR14, 4, 16, 0xfffc, 0, false, signed,
245
       bfd_elf_generic_reloc),
246
247
  /* An absolute 16 bit branch, for which bit 10 should be set to
248
     indicate that the branch is expected to be taken.  The lower two
249
     bits must be zero.  */
250
  HOW (R_PPC_ADDR14_BRTAKEN, 4, 16, 0xfffc, 0, false, signed,
251
       bfd_elf_generic_reloc),
252
253
  /* An absolute 16 bit branch, for which bit 10 should be set to
254
     indicate that the branch is not expected to be taken.  The lower
255
     two bits must be zero.  */
256
  HOW (R_PPC_ADDR14_BRNTAKEN, 4, 16, 0xfffc, 0, false, signed,
257
       bfd_elf_generic_reloc),
258
259
  /* A relative 26 bit branch; the lower two bits must be zero.  */
260
  HOW (R_PPC_REL24, 4, 26, 0x3fffffc, 0, true, signed,
261
       bfd_elf_generic_reloc),
262
263
  /* A relative 16 bit branch; the lower two bits must be zero.  */
264
  HOW (R_PPC_REL14, 4, 16, 0xfffc, 0, true, signed,
265
       bfd_elf_generic_reloc),
266
267
  /* A relative 16 bit branch.  Bit 10 should be set to indicate that
268
     the branch is expected to be taken.  The lower two bits must be
269
     zero.  */
270
  HOW (R_PPC_REL14_BRTAKEN, 4, 16, 0xfffc, 0, true, signed,
271
       bfd_elf_generic_reloc),
272
273
  /* A relative 16 bit branch.  Bit 10 should be set to indicate that
274
     the branch is not expected to be taken.  The lower two bits must
275
     be zero.  */
276
  HOW (R_PPC_REL14_BRNTAKEN, 4, 16, 0xfffc, 0, true, signed,
277
       bfd_elf_generic_reloc),
278
279
  /* Like R_PPC_ADDR16, but referring to the GOT table entry for the
280
     symbol.  */
281
  HOW (R_PPC_GOT16, 2, 16, 0xffff, 0, false, signed,
282
       ppc_elf_unhandled_reloc),
283
284
  /* Like R_PPC_ADDR16_LO, but referring to the GOT table entry for
285
     the symbol.  */
286
  HOW (R_PPC_GOT16_LO, 2, 16, 0xffff, 0, false, dont,
287
       ppc_elf_unhandled_reloc),
288
289
  /* Like R_PPC_ADDR16_HI, but referring to the GOT table entry for
290
     the symbol.  */
291
  HOW (R_PPC_GOT16_HI, 2, 16, 0xffff, 16, false, dont,
292
       ppc_elf_unhandled_reloc),
293
294
  /* Like R_PPC_ADDR16_HA, but referring to the GOT table entry for
295
     the symbol.  */
296
  HOW (R_PPC_GOT16_HA, 2, 16, 0xffff, 16, false, dont,
297
       ppc_elf_unhandled_reloc),
298
299
  /* Like R_PPC_REL24, but referring to the procedure linkage table
300
     entry for the symbol.  */
301
  HOW (R_PPC_PLTREL24, 4, 26, 0x3fffffc, 0, true, signed,
302
       ppc_elf_unhandled_reloc),
303
304
  /* This is used only by the dynamic linker.  The symbol should exist
305
     both in the object being run and in some shared library.  The
306
     dynamic linker copies the data addressed by the symbol from the
307
     shared library into the object, because the object being
308
     run has to have the data at some particular address.  */
309
  HOW (R_PPC_COPY, 4, 32, 0, 0, false, dont,
310
       ppc_elf_unhandled_reloc),
311
312
  /* Like R_PPC_ADDR32, but used when setting global offset table
313
     entries.  */
314
  HOW (R_PPC_GLOB_DAT, 4, 32, 0xffffffff, 0, false, dont,
315
       ppc_elf_unhandled_reloc),
316
317
  /* Marks a procedure linkage table entry for a symbol.  */
318
  HOW (R_PPC_JMP_SLOT, 4, 32, 0, 0, false, dont,
319
       ppc_elf_unhandled_reloc),
320
321
  /* Used only by the dynamic linker.  When the object is run, this
322
     longword is set to the load address of the object, plus the
323
     addend.  */
324
  HOW (R_PPC_RELATIVE, 4, 32, 0xffffffff, 0, false, dont,
325
       bfd_elf_generic_reloc),
326
327
  /* Like R_PPC_REL24, but uses the value of the symbol within the
328
     object rather than the final value.  Normally used for
329
     _GLOBAL_OFFSET_TABLE_.  */
330
  HOW (R_PPC_LOCAL24PC, 4, 26, 0x3fffffc, 0, true, signed,
331
       bfd_elf_generic_reloc),
332
333
  /* Like R_PPC_ADDR32, but may be unaligned.  */
334
  HOW (R_PPC_UADDR32, 4, 32, 0xffffffff, 0, false, dont,
335
       bfd_elf_generic_reloc),
336
337
  /* Like R_PPC_ADDR16, but may be unaligned.  */
338
  HOW (R_PPC_UADDR16, 2, 16, 0xffff, 0, false, bitfield,
339
       bfd_elf_generic_reloc),
340
341
  /* 32-bit PC relative */
342
  HOW (R_PPC_REL32, 4, 32, 0xffffffff, 0, true, dont,
343
       bfd_elf_generic_reloc),
344
345
  /* 32-bit relocation to the symbol's procedure linkage table.
346
     FIXME: not supported.  */
347
  HOW (R_PPC_PLT32, 4, 32, 0, 0, false, dont,
348
       ppc_elf_unhandled_reloc),
349
350
  /* 32-bit PC relative relocation to the symbol's procedure linkage table.
351
     FIXME: not supported.  */
352
  HOW (R_PPC_PLTREL32, 4, 32, 0, 0, true, dont,
353
       ppc_elf_unhandled_reloc),
354
355
  /* Like R_PPC_ADDR16_LO, but referring to the PLT table entry for
356
     the symbol.  */
357
  HOW (R_PPC_PLT16_LO, 2, 16, 0xffff, 0, false, dont,
358
       ppc_elf_unhandled_reloc),
359
360
  /* Like R_PPC_ADDR16_HI, but referring to the PLT table entry for
361
     the symbol.  */
362
  HOW (R_PPC_PLT16_HI, 2, 16, 0xffff, 16, false, dont,
363
       ppc_elf_unhandled_reloc),
364
365
  /* Like R_PPC_ADDR16_HA, but referring to the PLT table entry for
366
     the symbol.  */
367
  HOW (R_PPC_PLT16_HA, 2, 16, 0xffff, 16, false, dont,
368
       ppc_elf_unhandled_reloc),
369
370
  /* A sign-extended 16 bit value relative to _SDA_BASE_, for use with
371
     small data items.  */
372
  HOW (R_PPC_SDAREL16, 2, 16, 0xffff, 0, false, signed,
373
       ppc_elf_unhandled_reloc),
374
375
  /* 16-bit section relative relocation.  */
376
  HOW (R_PPC_SECTOFF, 2, 16, 0xffff, 0, false, signed,
377
       ppc_elf_unhandled_reloc),
378
379
  /* 16-bit lower half section relative relocation.  */
380
  HOW (R_PPC_SECTOFF_LO, 2, 16, 0xffff, 0, false, dont,
381
       ppc_elf_unhandled_reloc),
382
383
  /* 16-bit upper half section relative relocation.  */
384
  HOW (R_PPC_SECTOFF_HI, 2, 16, 0xffff, 16, false, dont,
385
       ppc_elf_unhandled_reloc),
386
387
  /* 16-bit upper half adjusted section relative relocation.  */
388
  HOW (R_PPC_SECTOFF_HA, 2, 16, 0xffff, 16, false, dont,
389
       ppc_elf_unhandled_reloc),
390
391
  /* Marker relocs for TLS.  */
392
  HOW (R_PPC_TLS, 4, 32, 0, 0, false, dont,
393
       bfd_elf_generic_reloc),
394
395
  HOW (R_PPC_TLSGD, 4, 32, 0, 0, false, dont,
396
       bfd_elf_generic_reloc),
397
398
  HOW (R_PPC_TLSLD, 4, 32, 0, 0, false, dont,
399
       bfd_elf_generic_reloc),
400
401
  /* Marker relocs on inline plt call instructions.  */
402
  HOW (R_PPC_PLTSEQ, 4, 32, 0, 0, false, dont,
403
       bfd_elf_generic_reloc),
404
405
  HOW (R_PPC_PLTCALL, 4, 32, 0, 0, false, dont,
406
       bfd_elf_generic_reloc),
407
408
  /* Computes the load module index of the load module that contains the
409
     definition of its TLS sym.  */
410
  HOW (R_PPC_DTPMOD32, 4, 32, 0xffffffff, 0, false, dont,
411
       ppc_elf_unhandled_reloc),
412
413
  /* Computes a dtv-relative displacement, the difference between the value
414
     of sym+add and the base address of the thread-local storage block that
415
     contains the definition of sym, minus 0x8000.  */
416
  HOW (R_PPC_DTPREL32, 4, 32, 0xffffffff, 0, false, dont,
417
       ppc_elf_unhandled_reloc),
418
419
  /* A 16 bit dtprel reloc.  */
420
  HOW (R_PPC_DTPREL16, 2, 16, 0xffff, 0, false, signed,
421
       ppc_elf_unhandled_reloc),
422
423
  /* Like DTPREL16, but no overflow.  */
424
  HOW (R_PPC_DTPREL16_LO, 2, 16, 0xffff, 0, false, dont,
425
       ppc_elf_unhandled_reloc),
426
427
  /* Like DTPREL16_LO, but next higher group of 16 bits.  */
428
  HOW (R_PPC_DTPREL16_HI, 2, 16, 0xffff, 16, false, dont,
429
       ppc_elf_unhandled_reloc),
430
431
  /* Like DTPREL16_HI, but adjust for low 16 bits.  */
432
  HOW (R_PPC_DTPREL16_HA, 2, 16, 0xffff, 16, false, dont,
433
       ppc_elf_unhandled_reloc),
434
435
  /* Computes a tp-relative displacement, the difference between the value of
436
     sym+add and the value of the thread pointer (r13).  */
437
  HOW (R_PPC_TPREL32, 4, 32, 0xffffffff, 0, false, dont,
438
       ppc_elf_unhandled_reloc),
439
440
  /* A 16 bit tprel reloc.  */
441
  HOW (R_PPC_TPREL16, 2, 16, 0xffff, 0, false, signed,
442
       ppc_elf_unhandled_reloc),
443
444
  /* Like TPREL16, but no overflow.  */
445
  HOW (R_PPC_TPREL16_LO, 2, 16, 0xffff, 0, false, dont,
446
       ppc_elf_unhandled_reloc),
447
448
  /* Like TPREL16_LO, but next higher group of 16 bits.  */
449
  HOW (R_PPC_TPREL16_HI, 2, 16, 0xffff, 16, false, dont,
450
       ppc_elf_unhandled_reloc),
451
452
  /* Like TPREL16_HI, but adjust for low 16 bits.  */
453
  HOW (R_PPC_TPREL16_HA, 2, 16, 0xffff, 16, false, dont,
454
       ppc_elf_unhandled_reloc),
455
456
  /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
457
     with values (sym+add)@dtpmod and (sym+add)@dtprel, and computes the offset
458
     to the first entry.  */
459
  HOW (R_PPC_GOT_TLSGD16, 2, 16, 0xffff, 0, false, signed,
460
       ppc_elf_unhandled_reloc),
461
462
  /* Like GOT_TLSGD16, but no overflow.  */
463
  HOW (R_PPC_GOT_TLSGD16_LO, 2, 16, 0xffff, 0, false, dont,
464
       ppc_elf_unhandled_reloc),
465
466
  /* Like GOT_TLSGD16_LO, but next higher group of 16 bits.  */
467
  HOW (R_PPC_GOT_TLSGD16_HI, 2, 16, 0xffff, 16, false, dont,
468
       ppc_elf_unhandled_reloc),
469
470
  /* Like GOT_TLSGD16_HI, but adjust for low 16 bits.  */
471
  HOW (R_PPC_GOT_TLSGD16_HA, 2, 16, 0xffff, 16, false, dont,
472
       ppc_elf_unhandled_reloc),
473
474
  /* Allocates two contiguous entries in the GOT to hold a tls_index structure,
475
     with values (sym+add)@dtpmod and zero, and computes the offset to the
476
     first entry.  */
477
  HOW (R_PPC_GOT_TLSLD16, 2, 16, 0xffff, 0, false, signed,
478
       ppc_elf_unhandled_reloc),
479
480
  /* Like GOT_TLSLD16, but no overflow.  */
481
  HOW (R_PPC_GOT_TLSLD16_LO, 2, 16, 0xffff, 0, false, dont,
482
       ppc_elf_unhandled_reloc),
483
484
  /* Like GOT_TLSLD16_LO, but next higher group of 16 bits.  */
485
  HOW (R_PPC_GOT_TLSLD16_HI, 2, 16, 0xffff, 16, false, dont,
486
       ppc_elf_unhandled_reloc),
487
488
  /* Like GOT_TLSLD16_HI, but adjust for low 16 bits.  */
489
  HOW (R_PPC_GOT_TLSLD16_HA, 2, 16, 0xffff, 16, false, dont,
490
       ppc_elf_unhandled_reloc),
491
492
  /* Allocates an entry in the GOT with value (sym+add)@dtprel, and computes
493
     the offset to the entry.  */
494
  HOW (R_PPC_GOT_DTPREL16, 2, 16, 0xffff, 0, false, signed,
495
       ppc_elf_unhandled_reloc),
496
497
  /* Like GOT_DTPREL16, but no overflow.  */
498
  HOW (R_PPC_GOT_DTPREL16_LO, 2, 16, 0xffff, 0, false, dont,
499
       ppc_elf_unhandled_reloc),
500
501
  /* Like GOT_DTPREL16_LO, but next higher group of 16 bits.  */
502
  HOW (R_PPC_GOT_DTPREL16_HI, 2, 16, 0xffff, 16, false, dont,
503
       ppc_elf_unhandled_reloc),
504
505
  /* Like GOT_DTPREL16_HI, but adjust for low 16 bits.  */
506
  HOW (R_PPC_GOT_DTPREL16_HA, 2, 16, 0xffff, 16, false, dont,
507
       ppc_elf_unhandled_reloc),
508
509
  /* Allocates an entry in the GOT with value (sym+add)@tprel, and computes the
510
     offset to the entry.  */
511
  HOW (R_PPC_GOT_TPREL16, 2, 16, 0xffff, 0, false, signed,
512
       ppc_elf_unhandled_reloc),
513
514
  /* Like GOT_TPREL16, but no overflow.  */
515
  HOW (R_PPC_GOT_TPREL16_LO, 2, 16, 0xffff, 0, false, dont,
516
       ppc_elf_unhandled_reloc),
517
518
  /* Like GOT_TPREL16_LO, but next higher group of 16 bits.  */
519
  HOW (R_PPC_GOT_TPREL16_HI, 2, 16, 0xffff, 16, false, dont,
520
       ppc_elf_unhandled_reloc),
521
522
  /* Like GOT_TPREL16_HI, but adjust for low 16 bits.  */
523
  HOW (R_PPC_GOT_TPREL16_HA, 2, 16, 0xffff, 16, false, dont,
524
       ppc_elf_unhandled_reloc),
525
526
  /* The remaining relocs are from the Embedded ELF ABI, and are not
527
     in the SVR4 ELF ABI.  */
528
529
  /* 32 bit value resulting from the addend minus the symbol.  */
530
  HOW (R_PPC_EMB_NADDR32, 4, 32, 0xffffffff, 0, false, dont,
531
       ppc_elf_unhandled_reloc),
532
533
  /* 16 bit value resulting from the addend minus the symbol.  */
534
  HOW (R_PPC_EMB_NADDR16, 2, 16, 0xffff, 0, false, signed,
535
       ppc_elf_unhandled_reloc),
536
537
  /* 16 bit value resulting from the addend minus the symbol.  */
538
  HOW (R_PPC_EMB_NADDR16_LO, 2, 16, 0xffff, 0, false, dont,
539
       ppc_elf_unhandled_reloc),
540
541
  /* The high order 16 bits of the addend minus the symbol.  */
542
  HOW (R_PPC_EMB_NADDR16_HI, 2, 16, 0xffff, 16, false, dont,
543
       ppc_elf_unhandled_reloc),
544
545
  /* The high order 16 bits of the result of the addend minus the address,
546
     plus 1 if the contents of the low 16 bits, treated as a signed number,
547
     is negative.  */
548
  HOW (R_PPC_EMB_NADDR16_HA, 2, 16, 0xffff, 16, false, dont,
549
       ppc_elf_unhandled_reloc),
550
551
  /* 16 bit value resulting from allocating a 4 byte word to hold an
552
     address in the .sdata section, and returning the offset from
553
     _SDA_BASE_ for that relocation.  */
554
  HOW (R_PPC_EMB_SDAI16, 2, 16, 0xffff, 0, false, signed,
555
       ppc_elf_unhandled_reloc),
556
557
  /* 16 bit value resulting from allocating a 4 byte word to hold an
558
     address in the .sdata2 section, and returning the offset from
559
     _SDA2_BASE_ for that relocation.  */
560
  HOW (R_PPC_EMB_SDA2I16, 2, 16, 0xffff, 0, false, signed,
561
       ppc_elf_unhandled_reloc),
562
563
  /* A sign-extended 16 bit value relative to _SDA2_BASE_, for use with
564
     small data items.   */
565
  HOW (R_PPC_EMB_SDA2REL, 2, 16, 0xffff, 0, false, signed,
566
       ppc_elf_unhandled_reloc),
567
568
  /* Relocate against either _SDA_BASE_ or _SDA2_BASE_, filling in the 16 bit
569
     signed offset from the appropriate base, and filling in the register
570
     field with the appropriate register (0, 2, or 13).  */
571
  HOW (R_PPC_EMB_SDA21, 4, 16, 0xffff, 0, false, signed,
572
       ppc_elf_unhandled_reloc),
573
574
  /* Relocation not handled: R_PPC_EMB_MRKREF */
575
  /* Relocation not handled: R_PPC_EMB_RELSEC16 */
576
  /* Relocation not handled: R_PPC_EMB_RELST_LO */
577
  /* Relocation not handled: R_PPC_EMB_RELST_HI */
578
  /* Relocation not handled: R_PPC_EMB_RELST_HA */
579
  /* Relocation not handled: R_PPC_EMB_BIT_FLD */
580
581
  /* PC relative relocation against either _SDA_BASE_ or _SDA2_BASE_, filling
582
     in the 16 bit signed offset from the appropriate base, and filling in the
583
     register field with the appropriate register (0, 2, or 13).  */
584
  HOW (R_PPC_EMB_RELSDA, 2, 16, 0xffff, 0, false, signed,
585
       ppc_elf_unhandled_reloc),
586
587
  /* A relative 8 bit branch.  */
588
  HOW (R_PPC_VLE_REL8, 2, 8, 0xff, 1, true, signed,
589
       bfd_elf_generic_reloc),
590
591
  /* A relative 15 bit branch.  */
592
  HOW (R_PPC_VLE_REL15, 4, 16, 0xfffe, 0, true, signed,
593
       bfd_elf_generic_reloc),
594
595
  /* A relative 24 bit branch.  */
596
  HOW (R_PPC_VLE_REL24, 4, 25, 0x1fffffe, 0, true, signed,
597
       bfd_elf_generic_reloc),
598
599
  /* The 16 LSBS in split16a format.  */
600
  HOW (R_PPC_VLE_LO16A, 4, 16, 0x1f07ff, 0, false, dont,
601
       ppc_elf_unhandled_reloc),
602
603
  /* The 16 LSBS in split16d format.  */
604
  HOW (R_PPC_VLE_LO16D, 4, 16, 0x3e007ff, 0, false, dont,
605
       ppc_elf_unhandled_reloc),
606
607
  /* Bits 16-31 split16a format.  */
608
  HOW (R_PPC_VLE_HI16A, 4, 16, 0x1f07ff, 16, false, dont,
609
       ppc_elf_unhandled_reloc),
610
611
  /* Bits 16-31 split16d format.  */
612
  HOW (R_PPC_VLE_HI16D, 4, 16, 0x3e007ff, 16, false, dont,
613
       ppc_elf_unhandled_reloc),
614
615
  /* Bits 16-31 (High Adjusted) in split16a format.  */
616
  HOW (R_PPC_VLE_HA16A, 4, 16, 0x1f07ff, 16, false, dont,
617
       ppc_elf_unhandled_reloc),
618
619
  /* Bits 16-31 (High Adjusted) in split16d format.  */
620
  HOW (R_PPC_VLE_HA16D, 4, 16, 0x3e007ff, 16, false, dont,
621
       ppc_elf_unhandled_reloc),
622
623
  /* This reloc is like R_PPC_EMB_SDA21 but only applies to e_add16i
624
     instructions.  If the register base is 0 then the linker changes
625
     the e_add16i to an e_li instruction.  */
626
  HOW (R_PPC_VLE_SDA21, 4, 16, 0xffff, 0, false, signed,
627
       ppc_elf_unhandled_reloc),
628
629
  /* Like R_PPC_VLE_SDA21 but ignore overflow.  */
630
  HOW (R_PPC_VLE_SDA21_LO, 4, 16, 0xffff, 0, false, dont,
631
       ppc_elf_unhandled_reloc),
632
633
  /* The 16 LSBS relative to _SDA_BASE_ in split16a format.  */
634
  HOW (R_PPC_VLE_SDAREL_LO16A, 4, 16, 0x1f07ff, 0, false, dont,
635
       ppc_elf_unhandled_reloc),
636
637
  /* The 16 LSBS relative to _SDA_BASE_ in split16d format.  */
638
  HOW (R_PPC_VLE_SDAREL_LO16D, 4, 16, 0x3e007ff, 0, false, dont,
639
       ppc_elf_unhandled_reloc),
640
641
  /* Bits 16-31 relative to _SDA_BASE_ in split16a format.  */
642
  HOW (R_PPC_VLE_SDAREL_HI16A, 4, 16, 0x1f07ff, 16, false, dont,
643
       ppc_elf_unhandled_reloc),
644
645
  /* Bits 16-31 relative to _SDA_BASE_ in split16d format.  */
646
  HOW (R_PPC_VLE_SDAREL_HI16D, 4, 16, 0x3e007ff, 16, false, dont,
647
       ppc_elf_unhandled_reloc),
648
649
  /* Bits 16-31 (HA) relative to _SDA_BASE split16a format.  */
650
  HOW (R_PPC_VLE_SDAREL_HA16A, 4, 16, 0x1f07ff, 16, false, dont,
651
       ppc_elf_unhandled_reloc),
652
653
  /* Bits 16-31 (HA) relative to _SDA_BASE split16d format.  */
654
  HOW (R_PPC_VLE_SDAREL_HA16D, 4, 16, 0x3e007ff, 16, false, dont,
655
       ppc_elf_unhandled_reloc),
656
657
  /* e_li split20 format.  */
658
  HOW (R_PPC_VLE_ADDR20, 4, 20, 0x1f7fff, 0, false, dont,
659
       ppc_elf_unhandled_reloc),
660
661
  HOW (R_PPC_IRELATIVE, 4, 32, 0xffffffff, 0, false, dont,
662
       ppc_elf_unhandled_reloc),
663
664
  /* A 16 bit relative relocation.  */
665
  HOW (R_PPC_REL16, 2, 16, 0xffff, 0, true, signed,
666
       bfd_elf_generic_reloc),
667
668
  /* A 16 bit relative relocation without overflow.  */
669
  HOW (R_PPC_REL16_LO, 2, 16, 0xffff, 0, true, dont,
670
       bfd_elf_generic_reloc),
671
672
  /* The high order 16 bits of a relative address.  */
673
  HOW (R_PPC_REL16_HI, 2, 16, 0xffff, 16, true, dont,
674
       bfd_elf_generic_reloc),
675
676
  /* The high order 16 bits of a relative address, plus 1 if the contents of
677
     the low 16 bits, treated as a signed number, is negative.  */
678
  HOW (R_PPC_REL16_HA, 2, 16, 0xffff, 16, true, dont,
679
       ppc_elf_addr16_ha_reloc),
680
681
  /* Like R_PPC_REL16_HA but for split field in addpcis.  */
682
  HOW (R_PPC_REL16DX_HA, 4, 16, 0x1fffc1, 16, true, signed,
683
       ppc_elf_addr16_ha_reloc),
684
685
  /* A split-field reloc for addpcis, non-relative (gas internal use only).  */
686
  HOW (R_PPC_16DX_HA, 4, 16, 0x1fffc1, 16, false, signed,
687
       ppc_elf_addr16_ha_reloc),
688
689
  /* GNU extension to record C++ vtable hierarchy.  */
690
  HOW (R_PPC_GNU_VTINHERIT, 0, 0, 0, 0, false, dont,
691
       NULL),
692
693
  /* GNU extension to record C++ vtable member usage.  */
694
  HOW (R_PPC_GNU_VTENTRY, 0, 0, 0, 0, false, dont,
695
       NULL),
696
697
  /* Phony reloc to handle AIX style TOC entries.  */
698
  HOW (R_PPC_TOC16, 2, 16, 0xffff, 0, false, signed,
699
       ppc_elf_unhandled_reloc),
700
};
701

702
/* Initialize the ppc_elf_howto_table, so that linear accesses can be done.  */
703
704
static void
705
ppc_elf_howto_init (void)
706
1
{
707
1
  unsigned int i, type;
708
709
108
  for (i = 0; i < ARRAY_SIZE (ppc_elf_howto_raw); i++)
710
107
    {
711
107
      type = ppc_elf_howto_raw[i].type;
712
107
      if (type >= ARRAY_SIZE (ppc_elf_howto_table))
713
0
  abort ();
714
107
      ppc_elf_howto_table[type] = &ppc_elf_howto_raw[i];
715
107
    }
716
1
}
717
718
static reloc_howto_type *
719
ppc_elf_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
720
         bfd_reloc_code_real_type code)
721
0
{
722
0
  enum elf_ppc_reloc_type r;
723
724
  /* Initialize howto table if not already done.  */
725
0
  if (!ppc_elf_howto_table[R_PPC_ADDR32])
726
0
    ppc_elf_howto_init ();
727
728
0
  switch (code)
729
0
    {
730
0
    default:
731
0
      return NULL;
732
733
0
    case BFD_RELOC_NONE:    r = R_PPC_NONE;     break;
734
0
    case BFD_RELOC_32:      r = R_PPC_ADDR32;   break;
735
0
    case BFD_RELOC_PPC_BA26:    r = R_PPC_ADDR24;   break;
736
0
    case BFD_RELOC_PPC64_ADDR16_DS:
737
0
    case BFD_RELOC_16:      r = R_PPC_ADDR16;   break;
738
0
    case BFD_RELOC_PPC64_ADDR16_LO_DS:
739
0
    case BFD_RELOC_LO16:    r = R_PPC_ADDR16_LO;    break;
740
0
    case BFD_RELOC_HI16:    r = R_PPC_ADDR16_HI;    break;
741
0
    case BFD_RELOC_HI16_S:    r = R_PPC_ADDR16_HA;    break;
742
0
    case BFD_RELOC_PPC_BA16:    r = R_PPC_ADDR14;   break;
743
0
    case BFD_RELOC_PPC_BA16_BRTAKEN:  r = R_PPC_ADDR14_BRTAKEN; break;
744
0
    case BFD_RELOC_PPC_BA16_BRNTAKEN: r = R_PPC_ADDR14_BRNTAKEN;  break;
745
0
    case BFD_RELOC_PPC_B26:   r = R_PPC_REL24;    break;
746
0
    case BFD_RELOC_PPC_B16:   r = R_PPC_REL14;    break;
747
0
    case BFD_RELOC_PPC_B16_BRTAKEN: r = R_PPC_REL14_BRTAKEN;  break;
748
0
    case BFD_RELOC_PPC_B16_BRNTAKEN:  r = R_PPC_REL14_BRNTAKEN; break;
749
0
    case BFD_RELOC_PPC64_GOT16_DS:
750
0
    case BFD_RELOC_16_GOTOFF:   r = R_PPC_GOT16;    break;
751
0
    case BFD_RELOC_PPC64_GOT16_LO_DS:
752
0
    case BFD_RELOC_LO16_GOTOFF:   r = R_PPC_GOT16_LO;   break;
753
0
    case BFD_RELOC_HI16_GOTOFF:   r = R_PPC_GOT16_HI;   break;
754
0
    case BFD_RELOC_HI16_S_GOTOFF: r = R_PPC_GOT16_HA;   break;
755
0
    case BFD_RELOC_24_PLT_PCREL:  r = R_PPC_PLTREL24;   break;
756
0
    case BFD_RELOC_COPY:    r = R_PPC_COPY;     break;
757
0
    case BFD_RELOC_GLOB_DAT:    r = R_PPC_GLOB_DAT;   break;
758
0
    case BFD_RELOC_PPC_LOCAL24PC: r = R_PPC_LOCAL24PC;    break;
759
0
    case BFD_RELOC_32_PCREL:    r = R_PPC_REL32;    break;
760
0
    case BFD_RELOC_32_PLTOFF:   r = R_PPC_PLT32;    break;
761
0
    case BFD_RELOC_32_PLT_PCREL:  r = R_PPC_PLTREL32;   break;
762
0
    case BFD_RELOC_PPC64_PLT16_LO_DS:
763
0
    case BFD_RELOC_LO16_PLTOFF:   r = R_PPC_PLT16_LO;   break;
764
0
    case BFD_RELOC_HI16_PLTOFF:   r = R_PPC_PLT16_HI;   break;
765
0
    case BFD_RELOC_HI16_S_PLTOFF: r = R_PPC_PLT16_HA;   break;
766
0
    case BFD_RELOC_GPREL16:   r = R_PPC_SDAREL16;   break;
767
0
    case BFD_RELOC_PPC64_SECTOFF_DS:
768
0
    case BFD_RELOC_16_BASEREL:    r = R_PPC_SECTOFF;    break;
769
0
    case BFD_RELOC_PPC64_SECTOFF_LO_DS:
770
0
    case BFD_RELOC_LO16_BASEREL:  r = R_PPC_SECTOFF_LO;   break;
771
0
    case BFD_RELOC_HI16_BASEREL:  r = R_PPC_SECTOFF_HI;   break;
772
0
    case BFD_RELOC_HI16_S_BASEREL:  r = R_PPC_SECTOFF_HA;   break;
773
0
    case BFD_RELOC_CTOR:    r = R_PPC_ADDR32;   break;
774
0
    case BFD_RELOC_PPC64_TOC16_DS:
775
0
    case BFD_RELOC_PPC_TOC16:   r = R_PPC_TOC16;    break;
776
0
    case BFD_RELOC_PPC_TLS:   r = R_PPC_TLS;      break;
777
0
    case BFD_RELOC_PPC_TLSGD:   r = R_PPC_TLSGD;    break;
778
0
    case BFD_RELOC_PPC_TLSLD:   r = R_PPC_TLSLD;    break;
779
0
    case BFD_RELOC_PPC_DTPMOD:    r = R_PPC_DTPMOD32;   break;
780
0
    case BFD_RELOC_PPC64_TPREL16_DS:
781
0
    case BFD_RELOC_PPC_TPREL16:   r = R_PPC_TPREL16;    break;
782
0
    case BFD_RELOC_PPC64_TPREL16_LO_DS:
783
0
    case BFD_RELOC_PPC_TPREL16_LO:  r = R_PPC_TPREL16_LO;   break;
784
0
    case BFD_RELOC_PPC_TPREL16_HI:  r = R_PPC_TPREL16_HI;   break;
785
0
    case BFD_RELOC_PPC_TPREL16_HA:  r = R_PPC_TPREL16_HA;   break;
786
0
    case BFD_RELOC_PPC_TPREL:   r = R_PPC_TPREL32;    break;
787
0
    case BFD_RELOC_PPC64_DTPREL16_DS:
788
0
    case BFD_RELOC_PPC_DTPREL16:  r = R_PPC_DTPREL16;   break;
789
0
    case BFD_RELOC_PPC64_DTPREL16_LO_DS:
790
0
    case BFD_RELOC_PPC_DTPREL16_LO: r = R_PPC_DTPREL16_LO;    break;
791
0
    case BFD_RELOC_PPC_DTPREL16_HI: r = R_PPC_DTPREL16_HI;    break;
792
0
    case BFD_RELOC_PPC_DTPREL16_HA: r = R_PPC_DTPREL16_HA;    break;
793
0
    case BFD_RELOC_PPC_DTPREL:    r = R_PPC_DTPREL32;   break;
794
0
    case BFD_RELOC_PPC_GOT_TLSGD16: r = R_PPC_GOT_TLSGD16;    break;
795
0
    case BFD_RELOC_PPC_GOT_TLSGD16_LO:  r = R_PPC_GOT_TLSGD16_LO; break;
796
0
    case BFD_RELOC_PPC_GOT_TLSGD16_HI:  r = R_PPC_GOT_TLSGD16_HI; break;
797
0
    case BFD_RELOC_PPC_GOT_TLSGD16_HA:  r = R_PPC_GOT_TLSGD16_HA; break;
798
0
    case BFD_RELOC_PPC_GOT_TLSLD16: r = R_PPC_GOT_TLSLD16;    break;
799
0
    case BFD_RELOC_PPC_GOT_TLSLD16_LO:  r = R_PPC_GOT_TLSLD16_LO; break;
800
0
    case BFD_RELOC_PPC_GOT_TLSLD16_HI:  r = R_PPC_GOT_TLSLD16_HI; break;
801
0
    case BFD_RELOC_PPC_GOT_TLSLD16_HA:  r = R_PPC_GOT_TLSLD16_HA; break;
802
0
    case BFD_RELOC_PPC_GOT_TPREL16: r = R_PPC_GOT_TPREL16;    break;
803
0
    case BFD_RELOC_PPC_GOT_TPREL16_LO:  r = R_PPC_GOT_TPREL16_LO; break;
804
0
    case BFD_RELOC_PPC_GOT_TPREL16_HI:  r = R_PPC_GOT_TPREL16_HI; break;
805
0
    case BFD_RELOC_PPC_GOT_TPREL16_HA:  r = R_PPC_GOT_TPREL16_HA; break;
806
0
    case BFD_RELOC_PPC_GOT_DTPREL16:  r = R_PPC_GOT_DTPREL16;   break;
807
0
    case BFD_RELOC_PPC_GOT_DTPREL16_LO: r = R_PPC_GOT_DTPREL16_LO;  break;
808
0
    case BFD_RELOC_PPC_GOT_DTPREL16_HI: r = R_PPC_GOT_DTPREL16_HI;  break;
809
0
    case BFD_RELOC_PPC_GOT_DTPREL16_HA: r = R_PPC_GOT_DTPREL16_HA;  break;
810
0
    case BFD_RELOC_PPC_EMB_NADDR32: r = R_PPC_EMB_NADDR32;    break;
811
0
    case BFD_RELOC_PPC_EMB_NADDR16: r = R_PPC_EMB_NADDR16;    break;
812
0
    case BFD_RELOC_PPC_EMB_NADDR16_LO:  r = R_PPC_EMB_NADDR16_LO; break;
813
0
    case BFD_RELOC_PPC_EMB_NADDR16_HI:  r = R_PPC_EMB_NADDR16_HI; break;
814
0
    case BFD_RELOC_PPC_EMB_NADDR16_HA:  r = R_PPC_EMB_NADDR16_HA; break;
815
0
    case BFD_RELOC_PPC_EMB_SDAI16:  r = R_PPC_EMB_SDAI16;   break;
816
0
    case BFD_RELOC_PPC_EMB_SDA2I16: r = R_PPC_EMB_SDA2I16;    break;
817
0
    case BFD_RELOC_PPC_EMB_SDA2REL: r = R_PPC_EMB_SDA2REL;    break;
818
0
    case BFD_RELOC_PPC_EMB_SDA21: r = R_PPC_EMB_SDA21;    break;
819
0
    case BFD_RELOC_PPC_EMB_MRKREF:  r = R_PPC_EMB_MRKREF;   break;
820
0
    case BFD_RELOC_PPC_EMB_RELSEC16:  r = R_PPC_EMB_RELSEC16;   break;
821
0
    case BFD_RELOC_PPC_EMB_RELST_LO:  r = R_PPC_EMB_RELST_LO;   break;
822
0
    case BFD_RELOC_PPC_EMB_RELST_HI:  r = R_PPC_EMB_RELST_HI;   break;
823
0
    case BFD_RELOC_PPC_EMB_RELST_HA:  r = R_PPC_EMB_RELST_HA;   break;
824
0
    case BFD_RELOC_PPC_EMB_BIT_FLD: r = R_PPC_EMB_BIT_FLD;    break;
825
0
    case BFD_RELOC_PPC_EMB_RELSDA:  r = R_PPC_EMB_RELSDA;   break;
826
0
    case BFD_RELOC_PPC_VLE_REL8:  r = R_PPC_VLE_REL8;   break;
827
0
    case BFD_RELOC_PPC_VLE_REL15: r = R_PPC_VLE_REL15;    break;
828
0
    case BFD_RELOC_PPC_VLE_REL24: r = R_PPC_VLE_REL24;    break;
829
0
    case BFD_RELOC_PPC_VLE_LO16A: r = R_PPC_VLE_LO16A;    break;
830
0
    case BFD_RELOC_PPC_VLE_LO16D: r = R_PPC_VLE_LO16D;    break;
831
0
    case BFD_RELOC_PPC_VLE_HI16A: r = R_PPC_VLE_HI16A;    break;
832
0
    case BFD_RELOC_PPC_VLE_HI16D: r = R_PPC_VLE_HI16D;    break;
833
0
    case BFD_RELOC_PPC_VLE_HA16A: r = R_PPC_VLE_HA16A;    break;
834
0
    case BFD_RELOC_PPC_VLE_HA16D: r = R_PPC_VLE_HA16D;    break;
835
0
    case BFD_RELOC_PPC_VLE_SDA21: r = R_PPC_VLE_SDA21;    break;
836
0
    case BFD_RELOC_PPC_VLE_SDA21_LO:  r = R_PPC_VLE_SDA21_LO;   break;
837
0
    case BFD_RELOC_PPC_VLE_SDAREL_LO16A:
838
0
      r = R_PPC_VLE_SDAREL_LO16A;
839
0
      break;
840
0
    case BFD_RELOC_PPC_VLE_SDAREL_LO16D:
841
0
      r = R_PPC_VLE_SDAREL_LO16D;
842
0
      break;
843
0
    case BFD_RELOC_PPC_VLE_SDAREL_HI16A:
844
0
      r = R_PPC_VLE_SDAREL_HI16A;
845
0
      break;
846
0
    case BFD_RELOC_PPC_VLE_SDAREL_HI16D:
847
0
      r = R_PPC_VLE_SDAREL_HI16D;
848
0
      break;
849
0
    case BFD_RELOC_PPC_VLE_SDAREL_HA16A:
850
0
      r = R_PPC_VLE_SDAREL_HA16A;
851
0
      break;
852
0
    case BFD_RELOC_PPC_VLE_SDAREL_HA16D:
853
0
      r = R_PPC_VLE_SDAREL_HA16D;
854
0
      break;
855
0
    case BFD_RELOC_16_PCREL:    r = R_PPC_REL16;    break;
856
0
    case BFD_RELOC_LO16_PCREL:    r = R_PPC_REL16_LO;   break;
857
0
    case BFD_RELOC_HI16_PCREL:    r = R_PPC_REL16_HI;   break;
858
0
    case BFD_RELOC_HI16_S_PCREL:  r = R_PPC_REL16_HA;   break;
859
0
    case BFD_RELOC_PPC_16DX_HA:   r = R_PPC_16DX_HA;    break;
860
0
    case BFD_RELOC_PPC_REL16DX_HA:  r = R_PPC_REL16DX_HA;   break;
861
0
    case BFD_RELOC_VTABLE_INHERIT:  r = R_PPC_GNU_VTINHERIT;  break;
862
0
    case BFD_RELOC_VTABLE_ENTRY:  r = R_PPC_GNU_VTENTRY;    break;
863
0
    }
864
865
0
  return ppc_elf_howto_table[r];
866
0
};
867
868
static reloc_howto_type *
869
ppc_elf_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
870
         const char *r_name)
871
0
{
872
0
  unsigned int i;
873
874
0
  for (i = 0; i < ARRAY_SIZE (ppc_elf_howto_raw); i++)
875
0
    if (ppc_elf_howto_raw[i].name != NULL
876
0
  && strcasecmp (ppc_elf_howto_raw[i].name, r_name) == 0)
877
0
      return &ppc_elf_howto_raw[i];
878
879
0
  return NULL;
880
0
}
881
882
/* Set the howto pointer for a PowerPC ELF reloc.  */
883
884
static bool
885
ppc_elf_info_to_howto (bfd *abfd,
886
           arelent *cache_ptr,
887
           Elf_Internal_Rela *dst)
888
105
{
889
105
  unsigned int r_type;
890
891
  /* Initialize howto table if not already done.  */
892
105
  if (!ppc_elf_howto_table[R_PPC_ADDR32])
893
1
    ppc_elf_howto_init ();
894
895
105
  r_type = ELF32_R_TYPE (dst->r_info);
896
105
  if (r_type >= ARRAY_SIZE (ppc_elf_howto_table)
897
105
      || ppc_elf_howto_table[r_type] == NULL)
898
3
    {
899
      /* xgettext:c-format */
900
3
      _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
901
3
        abfd, r_type);
902
3
      bfd_set_error (bfd_error_bad_value);
903
3
      return false;
904
3
    }
905
906
102
  cache_ptr->howto = ppc_elf_howto_table[r_type];
907
102
  return true;
908
105
}
909
910
/* Handle the R_PPC_ADDR16_HA and R_PPC_REL16_HA relocs.  */
911
912
static bfd_reloc_status_type
913
ppc_elf_addr16_ha_reloc (bfd *abfd,
914
       arelent *reloc_entry,
915
       asymbol *symbol,
916
       void *data,
917
       asection *input_section,
918
       bfd *output_bfd,
919
       char **error_message ATTRIBUTE_UNUSED)
920
0
{
921
0
  enum elf_ppc_reloc_type r_type;
922
0
  long insn;
923
0
  bfd_size_type octets;
924
0
  bfd_vma value;
925
926
0
  if (output_bfd != NULL)
927
0
    {
928
0
      reloc_entry->address += input_section->output_offset;
929
0
      return bfd_reloc_ok;
930
0
    }
931
932
0
  reloc_entry->addend += 0x8000;
933
0
  r_type = reloc_entry->howto->type;
934
0
  if (r_type != R_PPC_REL16DX_HA)
935
0
    return bfd_reloc_continue;
936
937
0
  value = 0;
938
0
  if (!bfd_is_com_section (symbol->section))
939
0
    value = symbol->value;
940
0
  value += (reloc_entry->addend
941
0
      + symbol->section->output_offset
942
0
      + symbol->section->output_section->vma);
943
0
  value -= (reloc_entry->address
944
0
      + input_section->output_offset
945
0
      + input_section->output_section->vma);
946
0
  value >>= 16;
947
948
0
  octets = reloc_entry->address * OCTETS_PER_BYTE (abfd, input_section);
949
0
  if (!bfd_reloc_offset_in_range (reloc_entry->howto, abfd,
950
0
          input_section, octets))
951
0
    return bfd_reloc_outofrange;
952
953
0
  insn = bfd_get_32 (abfd, (bfd_byte *) data + octets);
954
0
  insn &= ~0x1fffc1;
955
0
  insn |= (value & 0xffc1) | ((value & 0x3e) << 15);
956
0
  bfd_put_32 (abfd, insn, (bfd_byte *) data + octets);
957
0
  return bfd_reloc_ok;
958
0
}
959
960
static bfd_reloc_status_type
961
ppc_elf_unhandled_reloc (bfd *abfd,
962
       arelent *reloc_entry,
963
       asymbol *symbol,
964
       void *data,
965
       asection *input_section,
966
       bfd *output_bfd,
967
       char **error_message)
968
42
{
969
  /* If this is a relocatable link (output_bfd test tells us), just
970
     call the generic function.  Any adjustment will be done at final
971
     link time.  */
972
42
  if (output_bfd != NULL)
973
0
    return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
974
0
          input_section, output_bfd, error_message);
975
976
42
  if (error_message != NULL)
977
42
    *error_message = bfd_asprintf (_("generic linker can't handle %s"),
978
42
             reloc_entry->howto->name);
979
42
  return bfd_reloc_dangerous;
980
42
}
981

982
/* Sections created by the linker.  */
983
984
typedef struct elf_linker_section
985
{
986
  /* Pointer to the bfd section.  */
987
  asection *section;
988
  /* Section name.  */
989
  const char *name;
990
  /* Associated bss section name.  */
991
  const char *bss_name;
992
  /* Associated symbol name.  */
993
  const char *sym_name;
994
  /* Associated symbol.  */
995
  struct elf_link_hash_entry *sym;
996
} elf_linker_section_t;
997
998
/* Linked list of allocated pointer entries.  This hangs off of the
999
   symbol lists, and provides allows us to return different pointers,
1000
   based on different addend's.  */
1001
1002
typedef struct elf_linker_section_pointers
1003
{
1004
  /* next allocated pointer for this symbol */
1005
  struct elf_linker_section_pointers *next;
1006
  /* offset of pointer from beginning of section */
1007
  bfd_vma offset;
1008
  /* addend used */
1009
  bfd_vma addend;
1010
  /* which linker section this is */
1011
  elf_linker_section_t *lsect;
1012
} elf_linker_section_pointers_t;
1013
1014
struct ppc_elf_obj_tdata
1015
{
1016
  struct elf_obj_tdata elf;
1017
1018
  /* A mapping from local symbols to offsets into the various linker
1019
     sections added.  This is index by the symbol index.  */
1020
  elf_linker_section_pointers_t **linker_section_pointers;
1021
1022
  /* Flags used to auto-detect plt type.  */
1023
  unsigned int makes_plt_call : 1;
1024
  unsigned int has_rel16 : 1;
1025
};
1026
1027
#define ppc_elf_tdata(bfd) \
1028
0
  ((struct ppc_elf_obj_tdata *) (bfd)->tdata.any)
1029
1030
#define elf_local_ptr_offsets(bfd) \
1031
0
  (ppc_elf_tdata (bfd)->linker_section_pointers)
1032
1033
#define is_ppc_elf(bfd) \
1034
0
  (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
1035
0
   && elf_object_id (bfd) == PPC32_ELF_DATA)
1036
1037
/* Override the generic function because we store some extras.  */
1038
1039
static bool
1040
ppc_elf_mkobject (bfd *abfd)
1041
50.4k
{
1042
50.4k
  return bfd_elf_allocate_object (abfd, sizeof (struct ppc_elf_obj_tdata));
1043
50.4k
}
1044
1045
/* When defaulting arch/mach, decode apuinfo to find a better match.  */
1046
1047
bool
1048
_bfd_elf_ppc_set_arch (bfd *abfd)
1049
1.12k
{
1050
1.12k
  unsigned long mach = 0;
1051
1.12k
  asection *s;
1052
1.12k
  unsigned char *contents;
1053
1054
1.12k
  if (abfd->arch_info->bits_per_word == 32
1055
755
      && bfd_big_endian (abfd))
1056
421
    {
1057
1058
421
      for (s = abfd->sections; s != NULL; s = s->next)
1059
0
  if ((elf_section_data (s)->this_hdr.sh_flags & SHF_PPC_VLE) != 0)
1060
0
    break;
1061
421
      if (s != NULL)
1062
0
  mach = bfd_mach_ppc_vle;
1063
421
    }
1064
1065
1.12k
  if (mach == 0)
1066
1.12k
    {
1067
1.12k
      s = bfd_get_section_by_name (abfd, APUINFO_SECTION_NAME);
1068
1.12k
      if (s != NULL
1069
141
    && s->size >= 24
1070
139
    && (s->flags & SEC_HAS_CONTENTS) != 0
1071
137
    && bfd_malloc_and_get_section (abfd, s, &contents))
1072
133
  {
1073
133
    unsigned int apuinfo_size = bfd_get_32 (abfd, contents + 4);
1074
133
    unsigned int i;
1075
1076
127k
    for (i = 20; i < apuinfo_size + 20 && i + 4 <= s->size; i += 4)
1077
127k
      {
1078
127k
        unsigned int val = bfd_get_32 (abfd, contents + i);
1079
127k
        switch (val >> 16)
1080
127k
    {
1081
1.35k
    case PPC_APUINFO_PMR:
1082
2.57k
    case PPC_APUINFO_RFMCI:
1083
2.57k
      if (mach == 0)
1084
4
        mach = bfd_mach_ppc_titan;
1085
2.57k
      break;
1086
1087
492
    case PPC_APUINFO_ISEL:
1088
875
    case PPC_APUINFO_CACHELCK:
1089
875
      if (mach == bfd_mach_ppc_titan)
1090
0
        mach = bfd_mach_ppc_e500mc;
1091
875
      break;
1092
1093
1.51k
    case PPC_APUINFO_SPE:
1094
10.2k
    case PPC_APUINFO_EFS:
1095
11.0k
    case PPC_APUINFO_BRLOCK:
1096
11.0k
      if (mach != bfd_mach_ppc_vle)
1097
10.2k
        mach = bfd_mach_ppc_e500;
1098
11.0k
      break;
1099
1100
309
    case PPC_APUINFO_VLE:
1101
309
      mach = bfd_mach_ppc_vle;
1102
309
      break;
1103
1104
112k
    default:
1105
112k
      mach = -1ul;
1106
127k
    }
1107
127k
      }
1108
133
    free (contents);
1109
133
  }
1110
1.12k
    }
1111
1112
1.12k
  if (mach != 0 && mach != -1ul)
1113
17
    {
1114
17
      const bfd_arch_info_type *arch;
1115
1116
226
      for (arch = abfd->arch_info->next; arch; arch = arch->next)
1117
226
  if (arch->mach == mach)
1118
17
    {
1119
17
      abfd->arch_info = arch;
1120
17
      break;
1121
17
    }
1122
17
    }
1123
1.12k
  return true;
1124
1.12k
}
1125
1126
/* Fix bad default arch selected for a 32 bit input bfd when the
1127
   default is 64 bit.  Also select arch based on apuinfo.  */
1128
1129
static bool
1130
ppc_elf_object_p (bfd *abfd)
1131
755
{
1132
755
  if (!abfd->arch_info->the_default)
1133
0
    return true;
1134
1135
755
  if (abfd->arch_info->bits_per_word == 64)
1136
755
    {
1137
755
      Elf_Internal_Ehdr *i_ehdr = elf_elfheader (abfd);
1138
1139
755
      if (i_ehdr->e_ident[EI_CLASS] == ELFCLASS32)
1140
755
  {
1141
    /* Relies on arch after 64 bit default being 32 bit default.  */
1142
755
    abfd->arch_info = abfd->arch_info->next;
1143
755
    BFD_ASSERT (abfd->arch_info->bits_per_word == 32);
1144
755
  }
1145
755
    }
1146
755
  return _bfd_elf_ppc_set_arch (abfd);
1147
755
}
1148
1149
/* Function to set whether a module needs the -mrelocatable bit set.  */
1150
1151
static bool
1152
ppc_elf_set_private_flags (bfd *abfd, flagword flags)
1153
0
{
1154
0
  BFD_ASSERT (!elf_flags_init (abfd)
1155
0
        || elf_elfheader (abfd)->e_flags == flags);
1156
1157
0
  elf_elfheader (abfd)->e_flags = flags;
1158
0
  elf_flags_init (abfd) = true;
1159
0
  return true;
1160
0
}
1161
1162
/* Support for core dump NOTE sections.  */
1163
1164
static bool
1165
ppc_elf_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
1166
0
{
1167
0
  int offset;
1168
0
  unsigned int size;
1169
1170
0
  switch (note->descsz)
1171
0
    {
1172
0
    default:
1173
0
      return false;
1174
1175
0
    case 268:   /* Linux/PPC.  */
1176
      /* pr_cursig */
1177
0
      elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12);
1178
1179
      /* pr_pid */
1180
0
      elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 24);
1181
1182
      /* pr_reg */
1183
0
      offset = 72;
1184
0
      size = 192;
1185
1186
0
      break;
1187
0
    }
1188
1189
  /* Make a ".reg/999" section.  */
1190
0
  return _bfd_elfcore_make_pseudosection (abfd, ".reg",
1191
0
            size, note->descpos + offset);
1192
0
}
1193
1194
static bool
1195
ppc_elf_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
1196
0
{
1197
0
  switch (note->descsz)
1198
0
    {
1199
0
    default:
1200
0
      return false;
1201
1202
0
    case 128:   /* Linux/PPC elf_prpsinfo.  */
1203
0
      elf_tdata (abfd)->core->pid
1204
0
  = bfd_get_32 (abfd, note->descdata + 16);
1205
0
      elf_tdata (abfd)->core->program
1206
0
  = _bfd_elfcore_strndup (abfd, note->descdata + 32, 16);
1207
0
      elf_tdata (abfd)->core->command
1208
0
  = _bfd_elfcore_strndup (abfd, note->descdata + 48, 80);
1209
0
    }
1210
1211
  /* Note that for some reason, a spurious space is tacked
1212
     onto the end of the args in some (at least one anyway)
1213
     implementations, so strip it off if it exists.  */
1214
1215
0
  {
1216
0
    char *command = elf_tdata (abfd)->core->command;
1217
0
    int n = strlen (command);
1218
1219
0
    if (0 < n && command[n - 1] == ' ')
1220
0
      command[n - 1] = '\0';
1221
0
  }
1222
1223
0
  return true;
1224
0
}
1225
1226
static char *
1227
ppc_elf_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type, ...)
1228
0
{
1229
0
  switch (note_type)
1230
0
    {
1231
0
    default:
1232
0
      return NULL;
1233
1234
0
    case NT_PRPSINFO:
1235
0
      {
1236
0
  char data[128] ATTRIBUTE_NONSTRING;
1237
0
  va_list ap;
1238
1239
0
  va_start (ap, note_type);
1240
0
  memset (data, 0, sizeof (data));
1241
0
  strncpy (data + 32, va_arg (ap, const char *), 16);
1242
#if GCC_VERSION == 8000 || GCC_VERSION == 8001
1243
  DIAGNOSTIC_PUSH;
1244
  /* GCC 8.0 and 8.1 warn about 80 equals destination size with
1245
     -Wstringop-truncation:
1246
     https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85643
1247
   */
1248
  DIAGNOSTIC_IGNORE_STRINGOP_TRUNCATION;
1249
#endif
1250
0
  strncpy (data + 48, va_arg (ap, const char *), 80);
1251
#if GCC_VERSION == 8000 || GCC_VERSION == 8001
1252
  DIAGNOSTIC_POP;
1253
#endif
1254
0
  va_end (ap);
1255
0
  return elfcore_write_note (abfd, buf, bufsiz,
1256
0
           "CORE", note_type, data, sizeof (data));
1257
0
      }
1258
1259
0
    case NT_PRSTATUS:
1260
0
      {
1261
0
  char data[268];
1262
0
  va_list ap;
1263
0
  long pid;
1264
0
  int cursig;
1265
0
  const void *greg;
1266
1267
0
  va_start (ap, note_type);
1268
0
  memset (data, 0, 72);
1269
0
  pid = va_arg (ap, long);
1270
0
  bfd_put_32 (abfd, pid, data + 24);
1271
0
  cursig = va_arg (ap, int);
1272
0
  bfd_put_16 (abfd, cursig, data + 12);
1273
0
  greg = va_arg (ap, const void *);
1274
0
  memcpy (data + 72, greg, 192);
1275
0
  memset (data + 264, 0, 4);
1276
0
  va_end (ap);
1277
0
  return elfcore_write_note (abfd, buf, bufsiz,
1278
0
           "CORE", note_type, data, sizeof (data));
1279
0
      }
1280
0
    }
1281
0
}
1282
1283
static flagword
1284
ppc_elf_lookup_section_flags (char *flag_name)
1285
0
{
1286
1287
0
  if (!strcmp (flag_name, "SHF_PPC_VLE"))
1288
0
    return SHF_PPC_VLE;
1289
1290
0
  return 0;
1291
0
}
1292
1293
/* Return address for Ith PLT stub in section PLT, for relocation REL
1294
   or (bfd_vma) -1 if it should not be included.  */
1295
1296
static bfd_vma
1297
ppc_elf_plt_sym_val (bfd_vma i ATTRIBUTE_UNUSED,
1298
         const asection *plt ATTRIBUTE_UNUSED,
1299
         const arelent *rel)
1300
0
{
1301
0
  return rel->address;
1302
0
}
1303
1304
/* Handle a PowerPC specific section when reading an object file.  This
1305
   is called when bfd_section_from_shdr finds a section with an unknown
1306
   type.  */
1307
1308
static bool
1309
ppc_elf_section_from_shdr (bfd *abfd,
1310
         Elf_Internal_Shdr *hdr,
1311
         const char *name,
1312
         int shindex)
1313
1.82k
{
1314
1.82k
  asection *newsect;
1315
1.82k
  flagword flags;
1316
1317
1.82k
  if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
1318
0
    return false;
1319
1320
1.82k
  newsect = hdr->bfd_section;
1321
1.82k
  flags = 0;
1322
1.82k
  if (hdr->sh_flags & SHF_EXCLUDE)
1323
454
    flags |= SEC_EXCLUDE;
1324
1325
1.82k
  if (hdr->sh_type == SHT_ORDERED)
1326
27
    flags |= SEC_SORT_ENTRIES;
1327
1328
1.82k
  if (startswith (name, ".PPC.EMB"))
1329
259
    name += 8;
1330
1.82k
  if (startswith (name, ".sbss")
1331
1.78k
      || startswith (name, ".sdata"))
1332
77
    flags |= SEC_SMALL_DATA;
1333
1334
1.82k
  return (flags == 0
1335
532
    || bfd_set_section_flags (newsect, newsect->flags | flags));
1336
1.82k
}
1337
1338
/* Set up any other section flags and such that may be necessary.  */
1339
1340
static bool
1341
ppc_elf_fake_sections (bfd *abfd ATTRIBUTE_UNUSED,
1342
           Elf_Internal_Shdr *shdr,
1343
           asection *asect)
1344
0
{
1345
0
  if ((asect->flags & SEC_SORT_ENTRIES) != 0)
1346
0
    shdr->sh_type = SHT_ORDERED;
1347
1348
0
  return true;
1349
0
}
1350
1351
/* If we have .sbss2 or .PPC.EMB.sbss0 output sections, we
1352
   need to bump up the number of section headers.  */
1353
1354
static int
1355
ppc_elf_additional_program_headers (bfd *abfd,
1356
            struct bfd_link_info *info ATTRIBUTE_UNUSED)
1357
0
{
1358
0
  asection *s;
1359
0
  int ret = 0;
1360
1361
0
  s = bfd_get_section_by_name (abfd, ".sbss2");
1362
0
  if (s != NULL && (s->flags & SEC_ALLOC) != 0)
1363
0
    ++ret;
1364
1365
0
  s = bfd_get_section_by_name (abfd, ".PPC.EMB.sbss0");
1366
0
  if (s != NULL && (s->flags & SEC_ALLOC) != 0)
1367
0
    ++ret;
1368
1369
0
  return ret;
1370
0
}
1371
1372
/* Modify the segment map for VLE executables.  */
1373
1374
bool
1375
ppc_elf_modify_segment_map (bfd *abfd,
1376
          struct bfd_link_info *info ATTRIBUTE_UNUSED)
1377
0
{
1378
0
  struct elf_segment_map *m;
1379
1380
  /* At this point in the link, output sections have already been sorted by
1381
     LMA and assigned to segments.  All that is left to do is to ensure
1382
     there is no mixing of VLE & non-VLE sections in a text segment.
1383
     If we find that case, we split the segment.
1384
     We maintain the original output section order.  */
1385
1386
0
  for (m = elf_seg_map (abfd); m != NULL; m = m->next)
1387
0
    {
1388
0
      struct elf_segment_map *n;
1389
0
      size_t amt;
1390
0
      unsigned int j, k;
1391
0
      unsigned int p_flags;
1392
1393
0
      if (m->p_type != PT_LOAD || m->count == 0)
1394
0
  continue;
1395
1396
0
      for (p_flags = PF_R, j = 0; j != m->count; ++j)
1397
0
  {
1398
0
    if ((m->sections[j]->flags & SEC_READONLY) == 0)
1399
0
      p_flags |= PF_W;
1400
0
    if ((m->sections[j]->flags & SEC_CODE) != 0)
1401
0
      {
1402
0
        p_flags |= PF_X;
1403
0
        if ((elf_section_flags (m->sections[j]) & SHF_PPC_VLE) != 0)
1404
0
    p_flags |= PF_PPC_VLE;
1405
0
        break;
1406
0
      }
1407
0
  }
1408
0
      if (j != m->count)
1409
0
  while (++j != m->count)
1410
0
    {
1411
0
      unsigned int p_flags1 = PF_R;
1412
1413
0
      if ((m->sections[j]->flags & SEC_READONLY) == 0)
1414
0
        p_flags1 |= PF_W;
1415
0
      if ((m->sections[j]->flags & SEC_CODE) != 0)
1416
0
        {
1417
0
    p_flags1 |= PF_X;
1418
0
    if ((elf_section_flags (m->sections[j]) & SHF_PPC_VLE) != 0)
1419
0
      p_flags1 |= PF_PPC_VLE;
1420
0
    if (((p_flags1 ^ p_flags) & PF_PPC_VLE) != 0)
1421
0
      break;
1422
0
        }
1423
0
      p_flags |= p_flags1;
1424
0
    }
1425
      /* If we're splitting a segment which originally contained rw
1426
   sections then those sections might now only be in one of the
1427
   two parts.  So always set p_flags if splitting, even if we
1428
   are being called for objcopy with p_flags_valid set.  */
1429
0
      if (j != m->count || !m->p_flags_valid)
1430
0
  {
1431
0
    m->p_flags_valid = 1;
1432
0
    m->p_flags = p_flags;
1433
0
  }
1434
0
      if (j == m->count)
1435
0
  continue;
1436
1437
      /* Sections 0..j-1 stay in this (current) segment,
1438
   the remainder are put in a new segment.
1439
   The scan resumes with the new segment.  */
1440
1441
0
      amt = sizeof (struct elf_segment_map);
1442
0
      amt += (m->count - j - 1) * sizeof (asection *);
1443
0
      n = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
1444
0
      if (n == NULL)
1445
0
  return false;
1446
1447
0
      n->p_type = PT_LOAD;
1448
0
      n->count = m->count - j;
1449
0
      for (k = 0; k < n->count; ++k)
1450
0
  n->sections[k] = m->sections[j + k];
1451
0
      m->count = j;
1452
0
      m->p_size_valid = 0;
1453
0
      n->next = m->next;
1454
0
      m->next = n;
1455
0
    }
1456
1457
0
  return true;
1458
0
}
1459
1460
/* Add extra PPC sections -- Note, for now, make .sbss2 and
1461
   .PPC.EMB.sbss0 a normal section, and not a bss section so
1462
   that the linker doesn't crater when trying to make more than
1463
   2 sections.  */
1464
1465
static const struct bfd_elf_special_section ppc_elf_special_sections[] =
1466
{
1467
  { STRING_COMMA_LEN (".plt"), 0, SHT_NOBITS, SHF_ALLOC + SHF_EXECINSTR },
1468
  { STRING_COMMA_LEN (".sbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
1469
  { STRING_COMMA_LEN (".sbss2"), -2, SHT_PROGBITS, SHF_ALLOC },
1470
  { STRING_COMMA_LEN (".sdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
1471
  { STRING_COMMA_LEN (".sdata2"), -2, SHT_PROGBITS, SHF_ALLOC },
1472
  { STRING_COMMA_LEN (".tags"), 0, SHT_ORDERED, SHF_ALLOC },
1473
  { STRING_COMMA_LEN (APUINFO_SECTION_NAME), 0, SHT_NOTE, 0 },
1474
  { STRING_COMMA_LEN (".PPC.EMB.sbss0"), 0, SHT_PROGBITS, SHF_ALLOC },
1475
  { STRING_COMMA_LEN (".PPC.EMB.sdata0"), 0, SHT_PROGBITS, SHF_ALLOC },
1476
  { NULL, 0, 0, 0, 0 }
1477
};
1478
1479
/* This is what we want for new plt/got.  */
1480
static const struct bfd_elf_special_section ppc_alt_plt =
1481
  { STRING_COMMA_LEN (".plt"),       0, SHT_PROGBITS, SHF_ALLOC };
1482
1483
static const struct bfd_elf_special_section *
1484
ppc_elf_get_sec_type_attr (bfd *abfd, asection *sec)
1485
16.3k
{
1486
16.3k
  const struct bfd_elf_special_section *ssect;
1487
1488
  /* See if this is one of the special sections.  */
1489
16.3k
  if (sec->name == NULL)
1490
0
    return NULL;
1491
1492
16.3k
  ssect = _bfd_elf_get_special_section (sec->name, ppc_elf_special_sections,
1493
16.3k
          sec->use_rela_p);
1494
16.3k
  if (ssect != NULL)
1495
251
    {
1496
251
      if (ssect == ppc_elf_special_sections && (sec->flags & SEC_LOAD) != 0)
1497
0
  ssect = &ppc_alt_plt;
1498
251
      return ssect;
1499
251
    }
1500
1501
16.1k
  return _bfd_elf_get_sec_type_attr (abfd, sec);
1502
16.3k
}
1503

1504
/* Very simple linked list structure for recording apuinfo values.  */
1505
typedef struct apuinfo_list
1506
{
1507
  struct apuinfo_list *next;
1508
  unsigned long value;
1509
}
1510
apuinfo_list;
1511
1512
static apuinfo_list *head;
1513
static bool apuinfo_set;
1514
1515
static void
1516
apuinfo_list_init (void)
1517
0
{
1518
0
  head = NULL;
1519
0
  apuinfo_set = false;
1520
0
}
1521
1522
static void
1523
apuinfo_list_add (unsigned long value)
1524
0
{
1525
0
  apuinfo_list *entry = head;
1526
1527
0
  while (entry != NULL)
1528
0
    {
1529
0
      if (entry->value == value)
1530
0
  return;
1531
0
      entry = entry->next;
1532
0
    }
1533
1534
0
  entry = bfd_malloc (sizeof (* entry));
1535
0
  if (entry == NULL)
1536
0
    return;
1537
1538
0
  entry->value = value;
1539
0
  entry->next  = head;
1540
0
  head = entry;
1541
0
}
1542
1543
static unsigned
1544
apuinfo_list_length (void)
1545
0
{
1546
0
  apuinfo_list *entry;
1547
0
  unsigned long count;
1548
1549
0
  for (entry = head, count = 0;
1550
0
       entry;
1551
0
       entry = entry->next)
1552
0
    ++ count;
1553
1554
0
  return count;
1555
0
}
1556
1557
static inline unsigned long
1558
apuinfo_list_element (unsigned long number)
1559
0
{
1560
0
  apuinfo_list * entry;
1561
1562
0
  for (entry = head;
1563
0
       entry && number --;
1564
0
       entry = entry->next)
1565
0
    ;
1566
1567
0
  return entry ? entry->value : 0;
1568
0
}
1569
1570
static void
1571
apuinfo_list_finish (void)
1572
0
{
1573
0
  apuinfo_list *entry;
1574
1575
0
  for (entry = head; entry;)
1576
0
    {
1577
0
      apuinfo_list *next = entry->next;
1578
0
      free (entry);
1579
0
      entry = next;
1580
0
    }
1581
1582
0
  head = NULL;
1583
0
}
1584
1585
/* Scan the input BFDs and create a linked list of
1586
   the APUinfo values that will need to be emitted.  */
1587
1588
static void
1589
ppc_elf_begin_write_processing (bfd *abfd, struct bfd_link_info *link_info)
1590
0
{
1591
0
  bfd *ibfd;
1592
0
  asection *asec;
1593
0
  char *buffer = NULL;
1594
0
  bfd_size_type largest_input_size = 0;
1595
0
  unsigned i;
1596
0
  unsigned long length;
1597
0
  const char *error_message = NULL;
1598
1599
0
  if (link_info == NULL)
1600
0
    return;
1601
1602
0
  apuinfo_list_init ();
1603
1604
  /* Read in the input sections contents.  */
1605
0
  for (ibfd = link_info->input_bfds; ibfd; ibfd = ibfd->link.next)
1606
0
    {
1607
0
      unsigned long datum;
1608
1609
0
      asec = bfd_get_section_by_name (ibfd, APUINFO_SECTION_NAME);
1610
0
      if (asec == NULL)
1611
0
  continue;
1612
1613
      /* xgettext:c-format */
1614
0
      error_message = _("corrupt %s section in %pB");
1615
0
      length = asec->size;
1616
0
      if (length < 20)
1617
0
  goto fail;
1618
1619
0
      apuinfo_set = true;
1620
0
      if (largest_input_size < asec->size)
1621
0
  {
1622
0
    free (buffer);
1623
0
    largest_input_size = asec->size;
1624
0
    buffer = bfd_malloc (largest_input_size);
1625
0
    if (!buffer)
1626
0
      return;
1627
0
  }
1628
1629
0
      if (bfd_seek (ibfd, asec->filepos, SEEK_SET) != 0
1630
0
    || (bfd_read (buffer, length, ibfd) != length))
1631
0
  {
1632
    /* xgettext:c-format */
1633
0
    error_message = _("unable to read in %s section from %pB");
1634
0
    goto fail;
1635
0
  }
1636
1637
      /* Verify the contents of the header.  Note - we have to
1638
   extract the values this way in order to allow for a
1639
   host whose endian-ness is different from the target.  */
1640
0
      datum = bfd_get_32 (ibfd, buffer);
1641
0
      if (datum != sizeof APUINFO_LABEL)
1642
0
  goto fail;
1643
1644
0
      datum = bfd_get_32 (ibfd, buffer + 8);
1645
0
      if (datum != 0x2)
1646
0
  goto fail;
1647
1648
0
      if (strcmp (buffer + 12, APUINFO_LABEL) != 0)
1649
0
  goto fail;
1650
1651
      /* Get the number of bytes used for apuinfo entries.  */
1652
0
      datum = bfd_get_32 (ibfd, buffer + 4);
1653
0
      if (datum + 20 != length)
1654
0
  goto fail;
1655
1656
      /* Scan the apuinfo section, building a list of apuinfo numbers.  */
1657
0
      for (i = 0; i < datum; i += 4)
1658
0
  apuinfo_list_add (bfd_get_32 (ibfd, buffer + 20 + i));
1659
0
    }
1660
1661
0
  error_message = NULL;
1662
1663
0
  if (apuinfo_set)
1664
0
    {
1665
      /* Compute the size of the output section.  */
1666
0
      unsigned num_entries = apuinfo_list_length ();
1667
1668
      /* Set the output section size, if it exists.  */
1669
0
      asec = bfd_get_section_by_name (abfd, APUINFO_SECTION_NAME);
1670
1671
0
      if (asec && !bfd_set_section_size (asec, 20 + num_entries * 4))
1672
0
  {
1673
0
    ibfd = abfd;
1674
    /* xgettext:c-format */
1675
0
    error_message = _("warning: unable to set size of %s section in %pB");
1676
0
  }
1677
0
    }
1678
1679
0
 fail:
1680
0
  free (buffer);
1681
1682
0
  if (error_message)
1683
0
    _bfd_error_handler (error_message, APUINFO_SECTION_NAME, ibfd);
1684
0
}
1685
1686
/* Prevent the output section from accumulating the input sections'
1687
   contents.  We have already stored this in our linked list structure.  */
1688
1689
static bool
1690
ppc_elf_write_section (bfd *abfd ATTRIBUTE_UNUSED,
1691
           struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
1692
           asection *asec,
1693
           bfd_byte *contents ATTRIBUTE_UNUSED)
1694
0
{
1695
0
  return apuinfo_set && strcmp (asec->name, APUINFO_SECTION_NAME) == 0;
1696
0
}
1697
1698
/* Finally we can generate the output section.  */
1699
1700
static void
1701
ppc_final_write_processing (bfd *abfd)
1702
0
{
1703
0
  bfd_byte *buffer;
1704
0
  asection *asec;
1705
0
  unsigned i;
1706
0
  unsigned num_entries;
1707
0
  bfd_size_type length;
1708
1709
0
  asec = bfd_get_section_by_name (abfd, APUINFO_SECTION_NAME);
1710
0
  if (asec == NULL)
1711
0
    return;
1712
1713
0
  if (!apuinfo_set)
1714
0
    return;
1715
1716
0
  length = asec->size;
1717
0
  if (length < 20)
1718
0
    return;
1719
1720
0
  buffer = bfd_malloc (length);
1721
0
  if (buffer == NULL)
1722
0
    {
1723
0
      _bfd_error_handler
1724
0
  (_("failed to allocate space for new APUinfo section"));
1725
0
      return;
1726
0
    }
1727
1728
  /* Create the apuinfo header.  */
1729
0
  num_entries = apuinfo_list_length ();
1730
0
  bfd_put_32 (abfd, sizeof APUINFO_LABEL, buffer);
1731
0
  bfd_put_32 (abfd, num_entries * 4, buffer + 4);
1732
0
  bfd_put_32 (abfd, 0x2, buffer + 8);
1733
0
  strcpy ((char *) buffer + 12, APUINFO_LABEL);
1734
1735
0
  length = 20;
1736
0
  for (i = 0; i < num_entries; i++)
1737
0
    {
1738
0
      bfd_put_32 (abfd, apuinfo_list_element (i), buffer + length);
1739
0
      length += 4;
1740
0
    }
1741
1742
0
  if (length != asec->size)
1743
0
    _bfd_error_handler (_("failed to compute new APUinfo section"));
1744
1745
0
  if (! bfd_set_section_contents (abfd, asec, buffer, (file_ptr) 0, length))
1746
0
    _bfd_error_handler (_("failed to install new APUinfo section"));
1747
1748
0
  free (buffer);
1749
1750
0
  apuinfo_list_finish ();
1751
0
}
1752
1753
static bool
1754
ppc_elf_final_write_processing (bfd *abfd)
1755
0
{
1756
0
  ppc_final_write_processing (abfd);
1757
0
  return _bfd_elf_final_write_processing (abfd);
1758
0
}
1759

1760
static bool
1761
is_nonpic_glink_stub (bfd *abfd, asection *glink, bfd_vma off)
1762
0
{
1763
0
  bfd_byte buf[4 * 4];
1764
1765
0
  if (!bfd_get_section_contents (abfd, glink, buf, off, sizeof buf))
1766
0
    return false;
1767
1768
0
  return ((bfd_get_32 (abfd, buf + 0) & 0xffff0000) == LIS_11
1769
0
    && (bfd_get_32 (abfd, buf + 4) & 0xffff0000) == LWZ_11_11
1770
0
    && bfd_get_32 (abfd, buf + 8) == MTCTR_11
1771
0
    && bfd_get_32 (abfd, buf + 12) == BCTR);
1772
0
}
1773
1774
static bool
1775
section_covers_vma (bfd *abfd ATTRIBUTE_UNUSED, asection *section, void *ptr)
1776
0
{
1777
0
  bfd_vma vma = *(bfd_vma *) ptr;
1778
0
  return ((section->flags & SEC_ALLOC) != 0
1779
0
    && section->vma <= vma
1780
0
    && vma < section->vma + section->size);
1781
0
}
1782
1783
static long
1784
ppc_elf_get_synthetic_symtab (bfd *abfd, long symcount, asymbol **syms,
1785
            long dynsymcount, asymbol **dynsyms,
1786
            asymbol **ret)
1787
160
{
1788
160
  bool (*slurp_relocs) (bfd *, asection *, asymbol **, bool);
1789
160
  asection *plt, *relplt, *dynamic, *glink;
1790
160
  bfd_vma glink_vma = 0;
1791
160
  bfd_vma resolv_vma = 0;
1792
160
  bfd_vma stub_off;
1793
160
  asymbol *s;
1794
160
  arelent *p;
1795
160
  size_t count, i, stub_delta;
1796
160
  size_t size;
1797
160
  char *names;
1798
160
  bfd_byte buf[4];
1799
1800
160
  *ret = NULL;
1801
1802
160
  if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
1803
160
    return 0;
1804
1805
0
  if (dynsymcount <= 0)
1806
0
    return 0;
1807
1808
0
  relplt = bfd_get_section_by_name (abfd, ".rela.plt");
1809
0
  if (relplt == NULL)
1810
0
    return 0;
1811
1812
0
  plt = bfd_get_section_by_name (abfd, ".plt");
1813
0
  if (plt == NULL)
1814
0
    return 0;
1815
1816
  /* Call common code to handle old-style executable PLTs.  */
1817
0
  if (elf_section_flags (plt) & SHF_EXECINSTR)
1818
0
    return _bfd_elf_get_synthetic_symtab (abfd, symcount, syms,
1819
0
            dynsymcount, dynsyms, ret);
1820
1821
  /* If this object was prelinked, the prelinker stored the address
1822
     of .glink at got[1].  If it wasn't prelinked, got[1] will be zero.  */
1823
0
  dynamic = bfd_get_section_by_name (abfd, ".dynamic");
1824
0
  if (dynamic != NULL
1825
0
      && (dynamic->flags & SEC_HAS_CONTENTS) != 0)
1826
0
    {
1827
0
      bfd_byte *dynbuf, *extdyn, *extdynend;
1828
0
      size_t extdynsize;
1829
0
      void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
1830
1831
0
      if (!bfd_malloc_and_get_section (abfd, dynamic, &dynbuf))
1832
0
  return -1;
1833
1834
0
      extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1835
0
      swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1836
1837
0
      for (extdyn = dynbuf, extdynend = dynbuf + dynamic->size;
1838
0
     (size_t) (extdynend - extdyn) >= extdynsize;
1839
0
     extdyn += extdynsize)
1840
0
  {
1841
0
    Elf_Internal_Dyn dyn;
1842
0
    (*swap_dyn_in) (abfd, extdyn, &dyn);
1843
1844
0
    if (dyn.d_tag == DT_NULL)
1845
0
      break;
1846
1847
0
    if (dyn.d_tag == DT_PPC_GOT)
1848
0
      {
1849
0
        unsigned int g_o_t = dyn.d_un.d_val;
1850
0
        asection *got = bfd_get_section_by_name (abfd, ".got");
1851
0
        if (got != NULL
1852
0
      && bfd_get_section_contents (abfd, got, buf,
1853
0
                 g_o_t - got->vma + 4, 4))
1854
0
    glink_vma = bfd_get_32 (abfd, buf);
1855
0
        break;
1856
0
      }
1857
0
  }
1858
0
      free (dynbuf);
1859
0
    }
1860
1861
  /* Otherwise we read the first plt entry.  */
1862
0
  if (glink_vma == 0)
1863
0
    {
1864
0
      if (bfd_get_section_contents (abfd, plt, buf, 0, 4))
1865
0
  glink_vma = bfd_get_32 (abfd, buf);
1866
0
    }
1867
1868
0
  if (glink_vma == 0)
1869
0
    return 0;
1870
1871
  /* The .glink section usually does not survive the final
1872
     link; search for the section (usually .text) where the
1873
     glink stubs now reside.  */
1874
0
  glink = bfd_sections_find_if (abfd, section_covers_vma, &glink_vma);
1875
0
  if (glink == NULL)
1876
0
    return 0;
1877
1878
  /* Determine glink PLT resolver by reading the relative branch
1879
     from the first glink stub.  */
1880
0
  if (bfd_get_section_contents (abfd, glink, buf,
1881
0
        glink_vma - glink->vma, 4))
1882
0
    {
1883
0
      unsigned int insn = bfd_get_32 (abfd, buf);
1884
1885
      /* The first glink stub may either branch to the resolver ...  */
1886
0
      insn ^= B;
1887
0
      if ((insn & ~0x3fffffc) == 0)
1888
0
  resolv_vma = glink_vma + (insn ^ 0x2000000) - 0x2000000;
1889
1890
      /* ... or fall through a bunch of NOPs.  */
1891
0
      else if ((insn ^ B ^ NOP) == 0)
1892
0
  for (i = 4;
1893
0
       bfd_get_section_contents (abfd, glink, buf,
1894
0
               glink_vma - glink->vma + i, 4);
1895
0
       i += 4)
1896
0
    if (bfd_get_32 (abfd, buf) != NOP)
1897
0
      {
1898
0
        resolv_vma = glink_vma + i;
1899
0
        break;
1900
0
      }
1901
0
    }
1902
1903
0
  count = NUM_SHDR_ENTRIES (&elf_section_data (relplt)->this_hdr);
1904
  /* If the stubs are those for -shared/-pie then we might have
1905
     multiple stubs for each plt entry.  If that is the case then
1906
     there is no way to associate stubs with their plt entries short
1907
     of figuring out the GOT pointer value used in the stub.
1908
     The offsets tested here need to cover all possible values of
1909
     GLINK_ENTRY_SIZE for other than __tls_get_addr_opt.  */
1910
0
  stub_off = glink_vma - glink->vma;
1911
0
  for (stub_delta = 16; stub_delta <= 32; stub_delta += 8)
1912
0
    if (is_nonpic_glink_stub (abfd, glink, stub_off - stub_delta))
1913
0
      break;
1914
0
  if (stub_delta > 32)
1915
0
    return 0;
1916
1917
0
  slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
1918
0
  if (! (*slurp_relocs) (abfd, relplt, dynsyms, true))
1919
0
    return -1;
1920
1921
0
  size = count * sizeof (asymbol);
1922
0
  p = relplt->relocation;
1923
0
  for (i = 0; i < count; i++, p++)
1924
0
    {
1925
0
      size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
1926
0
      if (p->addend != 0)
1927
0
  size += sizeof ("+0x") - 1 + 8;
1928
0
    }
1929
1930
0
  size += sizeof (asymbol) + sizeof ("__glink");
1931
1932
0
  if (resolv_vma)
1933
0
    size += sizeof (asymbol) + sizeof ("__glink_PLTresolve");
1934
1935
0
  s = *ret = bfd_malloc (size);
1936
0
  if (s == NULL)
1937
0
    return -1;
1938
1939
0
  stub_off = glink_vma - glink->vma;
1940
0
  names = (char *) (s + count + 1 + (resolv_vma != 0));
1941
0
  p = relplt->relocation + count - 1;
1942
0
  for (i = 0; i < count; i++)
1943
0
    {
1944
0
      size_t len;
1945
1946
0
      stub_off -= stub_delta;
1947
0
      if (strcmp ((*p->sym_ptr_ptr)->name, "__tls_get_addr_opt") == 0)
1948
0
  stub_off -= 32;
1949
0
      *s = **p->sym_ptr_ptr;
1950
      /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set.  Since
1951
   we are defining a symbol, ensure one of them is set.  */
1952
0
      if ((s->flags & BSF_LOCAL) == 0)
1953
0
  s->flags |= BSF_GLOBAL;
1954
0
      s->flags |= BSF_SYNTHETIC;
1955
0
      s->section = glink;
1956
0
      s->value = stub_off;
1957
0
      s->name = names;
1958
0
      s->udata.p = NULL;
1959
0
      len = strlen ((*p->sym_ptr_ptr)->name);
1960
0
      memcpy (names, (*p->sym_ptr_ptr)->name, len);
1961
0
      names += len;
1962
0
      if (p->addend != 0)
1963
0
  {
1964
0
    memcpy (names, "+0x", sizeof ("+0x") - 1);
1965
0
    names += sizeof ("+0x") - 1;
1966
0
    bfd_sprintf_vma (abfd, names, p->addend);
1967
0
    names += strlen (names);
1968
0
  }
1969
0
      memcpy (names, "@plt", sizeof ("@plt"));
1970
0
      names += sizeof ("@plt");
1971
0
      ++s;
1972
0
      --p;
1973
0
    }
1974
1975
  /* Add a symbol at the start of the glink branch table.  */
1976
0
  memset (s, 0, sizeof *s);
1977
0
  s->the_bfd = abfd;
1978
0
  s->flags = BSF_GLOBAL | BSF_SYNTHETIC;
1979
0
  s->section = glink;
1980
0
  s->value = glink_vma - glink->vma;
1981
0
  s->name = names;
1982
0
  memcpy (names, "__glink", sizeof ("__glink"));
1983
0
  names += sizeof ("__glink");
1984
0
  s++;
1985
0
  count++;
1986
1987
0
  if (resolv_vma)
1988
0
    {
1989
      /* Add a symbol for the glink PLT resolver.  */
1990
0
      memset (s, 0, sizeof *s);
1991
0
      s->the_bfd = abfd;
1992
0
      s->flags = BSF_GLOBAL | BSF_SYNTHETIC;
1993
0
      s->section = glink;
1994
0
      s->value = resolv_vma - glink->vma;
1995
0
      s->name = names;
1996
0
      memcpy (names, "__glink_PLTresolve", sizeof ("__glink_PLTresolve"));
1997
0
      names += sizeof ("__glink_PLTresolve");
1998
0
      s++;
1999
0
      count++;
2000
0
    }
2001
2002
0
  return count;
2003
0
}
2004

2005
/* The following functions are specific to the ELF linker, while
2006
   functions above are used generally.  They appear in this file more
2007
   or less in the order in which they are called.  eg.
2008
   ppc_elf_check_relocs is called early in the link process,
2009
   ppc_elf_finish_dynamic_sections is one of the last functions
2010
   called.  */
2011
2012
/* Track PLT entries needed for a given symbol.  We might need more
2013
   than one glink entry per symbol when generating a pic binary.  */
2014
struct plt_entry
2015
{
2016
  struct plt_entry *next;
2017
2018
  /* -fPIC uses multiple GOT sections, one per file, called ".got2".
2019
     This field stores the offset into .got2 used to initialise the
2020
     GOT pointer reg.  It will always be at least 32768.  (Current
2021
     gcc always uses an offset of 32768, but ld -r will pack .got2
2022
     sections together resulting in larger offsets).  */
2023
  bfd_vma addend;
2024
2025
  /* The .got2 section.  */
2026
  asection *sec;
2027
2028
  /* PLT refcount or offset.  */
2029
  union
2030
    {
2031
      bfd_signed_vma refcount;
2032
      bfd_vma offset;
2033
    } plt;
2034
2035
  /* .glink stub offset.  */
2036
  bfd_vma glink_offset;
2037
};
2038
2039
/* Of those relocs that might be copied as dynamic relocs, this
2040
   function selects those that must be copied when linking a shared
2041
   library or PIE, even when the symbol is local.  */
2042
2043
static int
2044
must_be_dyn_reloc (struct bfd_link_info *info,
2045
       enum elf_ppc_reloc_type r_type)
2046
0
{
2047
0
  switch (r_type)
2048
0
    {
2049
0
    default:
2050
      /* Only relative relocs can be resolved when the object load
2051
   address isn't fixed.  DTPREL32 is excluded because the
2052
   dynamic linker needs to differentiate global dynamic from
2053
   local dynamic __tls_index pairs when PPC_OPT_TLS is set.  */
2054
0
      return 1;
2055
2056
0
    case R_PPC_REL24:
2057
0
    case R_PPC_REL14:
2058
0
    case R_PPC_REL14_BRTAKEN:
2059
0
    case R_PPC_REL14_BRNTAKEN:
2060
0
    case R_PPC_REL32:
2061
0
      return 0;
2062
2063
0
    case R_PPC_TPREL32:
2064
0
    case R_PPC_TPREL16:
2065
0
    case R_PPC_TPREL16_LO:
2066
0
    case R_PPC_TPREL16_HI:
2067
0
    case R_PPC_TPREL16_HA:
2068
      /* These relocations are relative but in a shared library the
2069
   linker doesn't know the thread pointer base.  */
2070
0
      return bfd_link_dll (info);
2071
0
    }
2072
0
}
2073
2074
/* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid
2075
   copying dynamic variables from a shared lib into an app's dynbss
2076
   section, and instead use a dynamic relocation to point into the
2077
   shared lib.  */
2078
0
#define ELIMINATE_COPY_RELOCS 1
2079
2080
/* Used to track dynamic relocations for local symbols.  */
2081
struct ppc_dyn_relocs
2082
{
2083
  struct ppc_dyn_relocs *next;
2084
2085
  /* The input section of the reloc.  */
2086
  asection *sec;
2087
2088
  /* Total number of relocs copied for the input section.  */
2089
  unsigned int count : 31;
2090
2091
  /* Whether this entry is for STT_GNU_IFUNC symbols.  */
2092
  unsigned int ifunc : 1;
2093
};
2094
2095
/* PPC ELF linker hash entry.  */
2096
2097
struct ppc_elf_link_hash_entry
2098
{
2099
  struct elf_link_hash_entry elf;
2100
2101
  /* If this symbol is used in the linker created sections, the processor
2102
     specific backend uses this field to map the field into the offset
2103
     from the beginning of the section.  */
2104
  elf_linker_section_pointers_t *linker_section_pointer;
2105
2106
  /* Contexts in which symbol is used in the GOT.
2107
     Bits are or'd into the mask as the corresponding relocs are
2108
     encountered during check_relocs, with TLS_TLS being set when any
2109
     of the other TLS bits are set.  tls_optimize clears bits when
2110
     optimizing to indicate the corresponding GOT entry type is not
2111
     needed.  If set, TLS_TLS is never cleared.  tls_optimize may also
2112
     set TLS_GDIE when a GD reloc turns into an IE one.
2113
     These flags are also kept for local symbols.  */
2114
0
#define TLS_TLS    1  /* Any TLS reloc.  */
2115
0
#define TLS_GD     2  /* GD reloc. */
2116
0
#define TLS_LD     4  /* LD reloc. */
2117
0
#define TLS_TPREL  8  /* TPREL reloc, => IE. */
2118
0
#define TLS_DTPREL  16  /* DTPREL reloc, => LD. */
2119
0
#define TLS_MARK  32  /* __tls_get_addr call marked. */
2120
0
#define TLS_GDIE  64  /* GOT TPREL reloc resulting from GD->IE. */
2121
  unsigned char tls_mask;
2122
2123
  /* The above field is also used to mark function symbols.  In which
2124
     case TLS_TLS will be 0.  */
2125
0
#define PLT_IFUNC  2  /* STT_GNU_IFUNC.  */
2126
0
#define PLT_KEEP   4  /* inline plt call requires plt entry.  */
2127
0
#define NON_GOT        256  /* local symbol plt, not stored.  */
2128
2129
  /* Nonzero if we have seen a small data relocation referring to this
2130
     symbol.  */
2131
  unsigned char has_sda_refs : 1;
2132
2133
  /* Flag use of given relocations.  */
2134
  unsigned char has_addr16_ha : 1;
2135
  unsigned char has_addr16_lo : 1;
2136
};
2137
2138
0
#define ppc_elf_hash_entry(ent) ((struct ppc_elf_link_hash_entry *) (ent))
2139
2140
/* PPC ELF linker hash table.  */
2141
2142
struct ppc_elf_link_hash_table
2143
{
2144
  struct elf_link_hash_table elf;
2145
2146
  /* Various options passed from the linker.  */
2147
  struct ppc_elf_params *params;
2148
2149
  /* Short-cuts to get to dynamic linker sections.  */
2150
  asection *glink;
2151
  asection *dynsbss;
2152
  asection *relsbss;
2153
  elf_linker_section_t sdata[2];
2154
  asection *sbss;
2155
  asection *glink_eh_frame;
2156
  asection *pltlocal;
2157
  asection *relpltlocal;
2158
2159
  /* The (unloaded but important) .rela.plt.unloaded on VxWorks.  */
2160
  asection *srelplt2;
2161
2162
  /* Shortcut to __tls_get_addr.  */
2163
  struct elf_link_hash_entry *tls_get_addr;
2164
2165
  /* The bfd that forced an old-style PLT.  */
2166
  bfd *old_bfd;
2167
2168
  /* TLS local dynamic got entry handling.  */
2169
  union {
2170
    bfd_signed_vma refcount;
2171
    bfd_vma offset;
2172
  } tlsld_got;
2173
2174
  /* Offset of branch table to PltResolve function in glink.  */
2175
  bfd_vma glink_pltresolve;
2176
2177
  /* Size of reserved GOT entries.  */
2178
  unsigned int got_header_size;
2179
  /* Non-zero if allocating the header left a gap.  */
2180
  unsigned int got_gap;
2181
2182
  /* The type of PLT we have chosen to use.  */
2183
  enum ppc_elf_plt_type plt_type;
2184
2185
  /* Whether there exist local gnu indirect function resolvers,
2186
     referenced by dynamic relocations.  */
2187
  unsigned int local_ifunc_resolver:1;
2188
  unsigned int maybe_local_ifunc_resolver:1;
2189
2190
  /* Set if tls optimization is enabled.  */
2191
  unsigned int do_tls_opt:1;
2192
2193
  /* Set if inline plt calls should be converted to direct calls.  */
2194
  unsigned int can_convert_all_inline_plt:1;
2195
2196
  /* The size of PLT entries.  */
2197
  int plt_entry_size;
2198
  /* The distance between adjacent PLT slots.  */
2199
  int plt_slot_size;
2200
  /* The size of the first PLT entry.  */
2201
  int plt_initial_entry_size;
2202
};
2203
2204
/* Rename some of the generic section flags to better document how they
2205
   are used for ppc32.  The flags are only valid for ppc32 elf objects.  */
2206
2207
/* Nonzero if this section has TLS related relocations.  */
2208
0
#define has_tls_reloc sec_flg0
2209
2210
/* Nonzero if this section has a call to __tls_get_addr lacking marker
2211
   relocs.  */
2212
0
#define nomark_tls_get_addr sec_flg1
2213
2214
  /* Flag set when PLTCALL relocs are detected.  */
2215
0
#define has_pltcall sec_flg2
2216
2217
/* Get the PPC ELF linker hash table from a link_info structure.  */
2218
2219
#define ppc_elf_hash_table(p) \
2220
0
  ((is_elf_hash_table ((p)->hash)          \
2221
0
    && elf_hash_table_id (elf_hash_table (p)) == PPC32_ELF_DATA) \
2222
0
   ? (struct ppc_elf_link_hash_table *) (p)->hash : NULL)
2223
2224
/* Create an entry in a PPC ELF linker hash table.  */
2225
2226
static struct bfd_hash_entry *
2227
ppc_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
2228
         struct bfd_hash_table *table,
2229
         const char *string)
2230
0
{
2231
  /* Allocate the structure if it has not already been allocated by a
2232
     subclass.  */
2233
0
  if (entry == NULL)
2234
0
    {
2235
0
      entry = bfd_hash_allocate (table,
2236
0
         sizeof (struct ppc_elf_link_hash_entry));
2237
0
      if (entry == NULL)
2238
0
  return entry;
2239
0
    }
2240
2241
  /* Call the allocation method of the superclass.  */
2242
0
  entry = _bfd_elf_link_hash_newfunc (entry, table, string);
2243
0
  if (entry != NULL)
2244
0
    {
2245
0
      ppc_elf_hash_entry (entry)->linker_section_pointer = NULL;
2246
0
      ppc_elf_hash_entry (entry)->tls_mask = 0;
2247
0
      ppc_elf_hash_entry (entry)->has_sda_refs = 0;
2248
0
    }
2249
2250
0
  return entry;
2251
0
}
2252
2253
/* Create a PPC ELF linker hash table.  */
2254
2255
static struct bfd_link_hash_table *
2256
ppc_elf_link_hash_table_create (bfd *abfd)
2257
0
{
2258
0
  struct ppc_elf_link_hash_table *ret;
2259
0
  static struct ppc_elf_params default_params
2260
0
    = { PLT_OLD, 0, 0, 1, 0, 0, 12, 0, 0, 0 };
2261
2262
0
  ret = bfd_zmalloc (sizeof (struct ppc_elf_link_hash_table));
2263
0
  if (ret == NULL)
2264
0
    return NULL;
2265
2266
0
  if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd,
2267
0
              ppc_elf_link_hash_newfunc,
2268
0
              sizeof (struct ppc_elf_link_hash_entry)))
2269
0
    {
2270
0
      free (ret);
2271
0
      return NULL;
2272
0
    }
2273
2274
0
  ret->elf.init_plt_refcount.refcount = 0;
2275
0
  ret->elf.init_plt_refcount.glist = NULL;
2276
0
  ret->elf.init_plt_offset.offset = 0;
2277
0
  ret->elf.init_plt_offset.glist = NULL;
2278
2279
0
  ret->params = &default_params;
2280
2281
0
  ret->sdata[0].name = ".sdata";
2282
0
  ret->sdata[0].sym_name = "_SDA_BASE_";
2283
0
  ret->sdata[0].bss_name = ".sbss";
2284
2285
0
  ret->sdata[1].name = ".sdata2";
2286
0
  ret->sdata[1].sym_name = "_SDA2_BASE_";
2287
0
  ret->sdata[1].bss_name = ".sbss2";
2288
2289
0
  ret->plt_entry_size = 12;
2290
0
  ret->plt_slot_size = 8;
2291
0
  ret->plt_initial_entry_size = 72;
2292
2293
0
  return &ret->elf.root;
2294
0
}
2295
2296
/* Hook linker params into hash table.  */
2297
2298
void
2299
ppc_elf_link_params (struct bfd_link_info *info, struct ppc_elf_params *params)
2300
0
{
2301
0
  struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
2302
2303
0
  if (htab)
2304
0
    htab->params = params;
2305
0
  params->pagesize_p2 = bfd_log2 (params->pagesize);
2306
0
}
2307
2308
/* Create .got and the related sections.  */
2309
2310
static bool
2311
ppc_elf_create_got (bfd *abfd, struct bfd_link_info *info)
2312
0
{
2313
0
  struct ppc_elf_link_hash_table *htab;
2314
2315
0
  if (!_bfd_elf_create_got_section (abfd, info))
2316
0
    return false;
2317
2318
0
  htab = ppc_elf_hash_table (info);
2319
0
  if (htab->elf.target_os != is_vxworks)
2320
0
    {
2321
      /* The powerpc .got has a blrl instruction in it.  Mark it
2322
   executable.  */
2323
0
      flagword flags = (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS
2324
0
      | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2325
0
      if (!bfd_set_section_flags (htab->elf.sgot, flags))
2326
0
  return false;
2327
0
    }
2328
2329
0
  return true;
2330
0
}
2331
2332
/* Create a special linker section, used for R_PPC_EMB_SDAI16 and
2333
   R_PPC_EMB_SDA2I16 pointers.  These sections become part of .sdata
2334
   and .sdata2.  Create _SDA_BASE_ and _SDA2_BASE too.  */
2335
2336
static bool
2337
ppc_elf_create_linker_section (bfd *abfd,
2338
             struct bfd_link_info *info,
2339
             flagword flags,
2340
             elf_linker_section_t *lsect)
2341
0
{
2342
0
  asection *s;
2343
2344
0
  flags |= (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
2345
0
      | SEC_LINKER_CREATED);
2346
2347
0
  s = bfd_make_section_anyway_with_flags (abfd, lsect->name, flags);
2348
0
  if (s == NULL)
2349
0
    return false;
2350
0
  lsect->section = s;
2351
2352
  /* Define the sym on the first section of this name.  */
2353
0
  s = bfd_get_section_by_name (abfd, lsect->name);
2354
2355
0
  lsect->sym = _bfd_elf_define_linkage_sym (abfd, info, s, lsect->sym_name);
2356
0
  if (lsect->sym == NULL)
2357
0
    return false;
2358
0
  lsect->sym->root.u.def.value = 0x8000;
2359
0
  return true;
2360
0
}
2361
2362
static bool
2363
ppc_elf_create_glink (bfd *abfd, struct bfd_link_info *info)
2364
0
{
2365
0
  struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
2366
0
  asection *s;
2367
0
  flagword flags;
2368
0
  int p2align;
2369
2370
0
  flags = (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_READONLY | SEC_HAS_CONTENTS
2371
0
     | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2372
0
  s = bfd_make_section_anyway_with_flags (abfd, ".glink", flags);
2373
0
  htab->glink = s;
2374
0
  p2align = htab->params->ppc476_workaround ? 6 : 4;
2375
0
  if (p2align < htab->params->plt_stub_align)
2376
0
    p2align = htab->params->plt_stub_align;
2377
0
  if (s == NULL
2378
0
      || !bfd_set_section_alignment (s, p2align))
2379
0
    return false;
2380
2381
0
  if (!info->no_ld_generated_unwind_info)
2382
0
    {
2383
0
      flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_HAS_CONTENTS
2384
0
         | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2385
0
      s = bfd_make_section_anyway_with_flags (abfd, ".eh_frame", flags);
2386
0
      htab->glink_eh_frame = s;
2387
0
      if (s == NULL
2388
0
    || !bfd_set_section_alignment (s, 2))
2389
0
  return false;
2390
0
    }
2391
2392
0
  flags = SEC_ALLOC | SEC_LINKER_CREATED;
2393
0
  s = bfd_make_section_anyway_with_flags (abfd, ".iplt", flags);
2394
0
  htab->elf.iplt = s;
2395
0
  if (s == NULL
2396
0
      || !bfd_set_section_alignment (s, 4))
2397
0
    return false;
2398
2399
0
  flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_HAS_CONTENTS
2400
0
     | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2401
0
  s = bfd_make_section_anyway_with_flags (abfd, ".rela.iplt", flags);
2402
0
  htab->elf.irelplt = s;
2403
0
  if (s == NULL
2404
0
      || ! bfd_set_section_alignment (s, 2))
2405
0
    return false;
2406
2407
  /* Local plt entries.  */
2408
0
  flags = (SEC_ALLOC | SEC_LOAD
2409
0
     | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2410
0
  htab->pltlocal = bfd_make_section_anyway_with_flags (abfd, ".branch_lt",
2411
0
                   flags);
2412
0
  if (htab->pltlocal == NULL
2413
0
      || !bfd_set_section_alignment (htab->pltlocal, 2))
2414
0
    return false;
2415
2416
0
  if (bfd_link_pic (info))
2417
0
    {
2418
0
      flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY
2419
0
         | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2420
0
      htab->relpltlocal
2421
0
  = bfd_make_section_anyway_with_flags (abfd, ".rela.branch_lt", flags);
2422
0
      if (htab->relpltlocal == NULL
2423
0
    || !bfd_set_section_alignment (htab->relpltlocal, 2))
2424
0
  return false;
2425
0
    }
2426
2427
0
  if (!ppc_elf_create_linker_section (abfd, info, 0,
2428
0
              &htab->sdata[0]))
2429
0
    return false;
2430
2431
0
  if (!ppc_elf_create_linker_section (abfd, info, SEC_READONLY,
2432
0
              &htab->sdata[1]))
2433
0
    return false;
2434
2435
0
  return true;
2436
0
}
2437
2438
/* We have to create .dynsbss and .rela.sbss here so that they get mapped
2439
   to output sections (just like _bfd_elf_create_dynamic_sections has
2440
   to create .dynbss and .rela.bss).  */
2441
2442
static bool
2443
ppc_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
2444
0
{
2445
0
  struct ppc_elf_link_hash_table *htab;
2446
0
  asection *s;
2447
0
  flagword flags;
2448
2449
0
  htab = ppc_elf_hash_table (info);
2450
2451
0
  if (htab->elf.sgot == NULL
2452
0
      && !ppc_elf_create_got (abfd, info))
2453
0
    return false;
2454
2455
0
  if (!_bfd_elf_create_dynamic_sections (abfd, info))
2456
0
    return false;
2457
2458
0
  if (htab->glink == NULL
2459
0
      && !ppc_elf_create_glink (abfd, info))
2460
0
    return false;
2461
2462
0
  s = bfd_make_section_anyway_with_flags (abfd, ".dynsbss",
2463
0
            SEC_ALLOC | SEC_LINKER_CREATED);
2464
0
  htab->dynsbss = s;
2465
0
  if (s == NULL)
2466
0
    return false;
2467
2468
0
  if (! bfd_link_pic (info))
2469
0
    {
2470
0
      flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_HAS_CONTENTS
2471
0
         | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2472
0
      s = bfd_make_section_anyway_with_flags (abfd, ".rela.sbss", flags);
2473
0
      htab->relsbss = s;
2474
0
      if (s == NULL
2475
0
    || !bfd_set_section_alignment (s, 2))
2476
0
  return false;
2477
0
    }
2478
2479
0
#ifdef OBJ_MAYBE_ELF_VXWORKS
2480
0
  if (htab->elf.target_os == is_vxworks
2481
0
      && !elf_vxworks_create_dynamic_sections (abfd, info, &htab->srelplt2))
2482
0
    return false;
2483
0
#endif /* OBJ_MAYBE_ELF_VXWORKS */
2484
2485
0
  s = htab->elf.splt;
2486
0
  flags = SEC_ALLOC | SEC_CODE | SEC_LINKER_CREATED;
2487
0
  if (htab->plt_type == PLT_VXWORKS)
2488
    /* The VxWorks PLT is a loaded section with contents.  */
2489
0
    flags |= SEC_HAS_CONTENTS | SEC_LOAD | SEC_READONLY;
2490
0
  return bfd_set_section_flags (s, flags);
2491
0
}
2492
2493
/* Copy the extra info we tack onto an elf_link_hash_entry.  */
2494
2495
static void
2496
ppc_elf_copy_indirect_symbol (struct bfd_link_info *info,
2497
            struct elf_link_hash_entry *dir,
2498
            struct elf_link_hash_entry *ind)
2499
0
{
2500
0
  struct ppc_elf_link_hash_entry *edir, *eind;
2501
2502
0
  edir = (struct ppc_elf_link_hash_entry *) dir;
2503
0
  eind = (struct ppc_elf_link_hash_entry *) ind;
2504
2505
0
  edir->tls_mask |= eind->tls_mask;
2506
0
  edir->has_sda_refs |= eind->has_sda_refs;
2507
2508
0
  if (edir->elf.versioned != versioned_hidden)
2509
0
    edir->elf.ref_dynamic |= eind->elf.ref_dynamic;
2510
0
  edir->elf.ref_regular |= eind->elf.ref_regular;
2511
0
  edir->elf.ref_regular_nonweak |= eind->elf.ref_regular_nonweak;
2512
0
  edir->elf.non_got_ref |= eind->elf.non_got_ref;
2513
0
  edir->elf.needs_plt |= eind->elf.needs_plt;
2514
0
  edir->elf.pointer_equality_needed |= eind->elf.pointer_equality_needed;
2515
2516
  /* If we were called to copy over info for a weak sym, that's all.  */
2517
0
  if (eind->elf.root.type != bfd_link_hash_indirect)
2518
0
    return;
2519
2520
0
  if (ind->dyn_relocs != NULL)
2521
0
    {
2522
0
      if (dir->dyn_relocs != NULL)
2523
0
  {
2524
0
    struct elf_dyn_relocs **pp;
2525
0
    struct elf_dyn_relocs *p;
2526
2527
    /* Add reloc counts against the indirect sym to the direct sym
2528
       list.  Merge any entries against the same section.  */
2529
0
    for (pp = &ind->dyn_relocs; (p = *pp) != NULL; )
2530
0
      {
2531
0
        struct elf_dyn_relocs *q;
2532
2533
0
        for (q = dir->dyn_relocs; q != NULL; q = q->next)
2534
0
    if (q->sec == p->sec)
2535
0
      {
2536
0
        q->pc_count += p->pc_count;
2537
0
        q->count += p->count;
2538
0
        *pp = p->next;
2539
0
        break;
2540
0
      }
2541
0
        if (q == NULL)
2542
0
    pp = &p->next;
2543
0
      }
2544
0
    *pp = dir->dyn_relocs;
2545
0
  }
2546
2547
0
      dir->dyn_relocs = ind->dyn_relocs;
2548
0
      ind->dyn_relocs = NULL;
2549
0
    }
2550
2551
  /* Copy over the GOT refcount entries that we may have already seen to
2552
     the symbol which just became indirect.  */
2553
0
  edir->elf.got.refcount += eind->elf.got.refcount;
2554
0
  eind->elf.got.refcount = 0;
2555
2556
  /* And plt entries.  */
2557
0
  if (eind->elf.plt.plist != NULL)
2558
0
    {
2559
0
      if (edir->elf.plt.plist != NULL)
2560
0
  {
2561
0
    struct plt_entry **entp;
2562
0
    struct plt_entry *ent;
2563
2564
0
    for (entp = &eind->elf.plt.plist; (ent = *entp) != NULL; )
2565
0
      {
2566
0
        struct plt_entry *dent;
2567
2568
0
        for (dent = edir->elf.plt.plist; dent != NULL; dent = dent->next)
2569
0
    if (dent->sec == ent->sec && dent->addend == ent->addend)
2570
0
      {
2571
0
        dent->plt.refcount += ent->plt.refcount;
2572
0
        *entp = ent->next;
2573
0
        break;
2574
0
      }
2575
0
        if (dent == NULL)
2576
0
    entp = &ent->next;
2577
0
      }
2578
0
    *entp = edir->elf.plt.plist;
2579
0
  }
2580
2581
0
      edir->elf.plt.plist = eind->elf.plt.plist;
2582
0
      eind->elf.plt.plist = NULL;
2583
0
    }
2584
2585
0
  if (eind->elf.dynindx != -1)
2586
0
    {
2587
0
      if (edir->elf.dynindx != -1)
2588
0
  _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
2589
0
        edir->elf.dynstr_index);
2590
0
      edir->elf.dynindx = eind->elf.dynindx;
2591
0
      edir->elf.dynstr_index = eind->elf.dynstr_index;
2592
0
      eind->elf.dynindx = -1;
2593
0
      eind->elf.dynstr_index = 0;
2594
0
    }
2595
0
}
2596
2597
/* Hook called by the linker routine which adds symbols from an object
2598
   file.  We use it to put .comm items in .sbss, and not .bss.  */
2599
2600
static bool
2601
ppc_elf_add_symbol_hook (bfd *abfd,
2602
       struct bfd_link_info *info,
2603
       Elf_Internal_Sym *sym,
2604
       const char **namep ATTRIBUTE_UNUSED,
2605
       flagword *flagsp ATTRIBUTE_UNUSED,
2606
       asection **secp,
2607
       bfd_vma *valp)
2608
0
{
2609
0
  if (sym->st_shndx == SHN_COMMON
2610
0
      && !bfd_link_relocatable (info)
2611
0
      && is_ppc_elf (info->output_bfd)
2612
0
      && sym->st_size <= elf_gp_size (abfd))
2613
0
    {
2614
      /* Common symbols less than or equal to -G nn bytes are automatically
2615
   put into .sbss.  */
2616
0
      struct ppc_elf_link_hash_table *htab;
2617
2618
0
      htab = ppc_elf_hash_table (info);
2619
0
      if (htab->sbss == NULL)
2620
0
  {
2621
0
    flagword flags = SEC_IS_COMMON | SEC_SMALL_DATA | SEC_LINKER_CREATED;
2622
2623
0
    if (!htab->elf.dynobj)
2624
0
      htab->elf.dynobj = abfd;
2625
2626
0
    htab->sbss = bfd_make_section_anyway_with_flags (htab->elf.dynobj,
2627
0
                 ".sbss",
2628
0
                 flags);
2629
0
    if (htab->sbss == NULL)
2630
0
      return false;
2631
0
  }
2632
2633
0
      *secp = htab->sbss;
2634
0
      *valp = sym->st_size;
2635
0
    }
2636
2637
0
  return true;
2638
0
}
2639

2640
/* Find a linker generated pointer with a given addend and type.  */
2641
2642
static elf_linker_section_pointers_t *
2643
elf_find_pointer_linker_section
2644
  (elf_linker_section_pointers_t *linker_pointers,
2645
   bfd_vma addend,
2646
   elf_linker_section_t *lsect)
2647
0
{
2648
0
  for ( ; linker_pointers != NULL; linker_pointers = linker_pointers->next)
2649
0
    if (lsect == linker_pointers->lsect && addend == linker_pointers->addend)
2650
0
      return linker_pointers;
2651
2652
0
  return NULL;
2653
0
}
2654
2655
/* Allocate a pointer to live in a linker created section.  */
2656
2657
static bool
2658
elf_allocate_pointer_linker_section (bfd *abfd,
2659
             elf_linker_section_t *lsect,
2660
             struct elf_link_hash_entry *h,
2661
             const Elf_Internal_Rela *rel)
2662
0
{
2663
0
  elf_linker_section_pointers_t **ptr_linker_section_ptr = NULL;
2664
0
  elf_linker_section_pointers_t *linker_section_ptr;
2665
0
  unsigned long r_symndx = ELF32_R_SYM (rel->r_info);
2666
0
  bfd_size_type amt;
2667
2668
0
  BFD_ASSERT (lsect != NULL);
2669
2670
  /* Is this a global symbol?  */
2671
0
  if (h != NULL)
2672
0
    {
2673
0
      struct ppc_elf_link_hash_entry *eh;
2674
2675
      /* Has this symbol already been allocated?  If so, our work is done.  */
2676
0
      eh = (struct ppc_elf_link_hash_entry *) h;
2677
0
      if (elf_find_pointer_linker_section (eh->linker_section_pointer,
2678
0
             rel->r_addend,
2679
0
             lsect))
2680
0
  return true;
2681
2682
0
      ptr_linker_section_ptr = &eh->linker_section_pointer;
2683
0
    }
2684
0
  else
2685
0
    {
2686
0
      BFD_ASSERT (is_ppc_elf (abfd));
2687
2688
      /* Allocation of a pointer to a local symbol.  */
2689
0
      elf_linker_section_pointers_t **ptr = elf_local_ptr_offsets (abfd);
2690
2691
      /* Allocate a table to hold the local symbols if first time.  */
2692
0
      if (!ptr)
2693
0
  {
2694
0
    unsigned int num_symbols = elf_symtab_hdr (abfd).sh_info;
2695
2696
0
    amt = num_symbols;
2697
0
    amt *= sizeof (elf_linker_section_pointers_t *);
2698
0
    ptr = bfd_zalloc (abfd, amt);
2699
2700
0
    if (!ptr)
2701
0
      return false;
2702
2703
0
    elf_local_ptr_offsets (abfd) = ptr;
2704
0
  }
2705
2706
      /* Has this symbol already been allocated?  If so, our work is done.  */
2707
0
      if (elf_find_pointer_linker_section (ptr[r_symndx],
2708
0
             rel->r_addend,
2709
0
             lsect))
2710
0
  return true;
2711
2712
0
      ptr_linker_section_ptr = &ptr[r_symndx];
2713
0
    }
2714
2715
  /* Allocate space for a pointer in the linker section, and allocate
2716
     a new pointer record from internal memory.  */
2717
0
  BFD_ASSERT (ptr_linker_section_ptr != NULL);
2718
0
  amt = sizeof (elf_linker_section_pointers_t);
2719
0
  linker_section_ptr = bfd_alloc (abfd, amt);
2720
2721
0
  if (!linker_section_ptr)
2722
0
    return false;
2723
2724
0
  linker_section_ptr->next = *ptr_linker_section_ptr;
2725
0
  linker_section_ptr->addend = rel->r_addend;
2726
0
  linker_section_ptr->lsect = lsect;
2727
0
  *ptr_linker_section_ptr = linker_section_ptr;
2728
2729
0
  if (!bfd_set_section_alignment (lsect->section, 2))
2730
0
    return false;
2731
0
  linker_section_ptr->offset = lsect->section->size;
2732
0
  lsect->section->size += 4;
2733
2734
#ifdef DEBUG
2735
  fprintf (stderr,
2736
     "Create pointer in linker section %s, offset = %ld, section size = %ld\n",
2737
     lsect->name, (long) linker_section_ptr->offset,
2738
     (long) lsect->section->size);
2739
#endif
2740
2741
0
  return true;
2742
0
}
2743
2744
static struct plt_entry **
2745
update_local_sym_info (bfd *abfd,
2746
           Elf_Internal_Shdr *symtab_hdr,
2747
           unsigned long r_symndx,
2748
           int tls_type)
2749
0
{
2750
0
  bfd_signed_vma *local_got_refcounts = elf_local_got_refcounts (abfd);
2751
0
  struct plt_entry **local_plt;
2752
0
  unsigned char *local_got_tls_masks;
2753
2754
0
  if (local_got_refcounts == NULL)
2755
0
    {
2756
0
      bfd_size_type size = symtab_hdr->sh_info;
2757
2758
0
      size *= (sizeof (*local_got_refcounts)
2759
0
         + sizeof (*local_plt)
2760
0
         + sizeof (*local_got_tls_masks));
2761
0
      local_got_refcounts = bfd_zalloc (abfd, size);
2762
0
      if (local_got_refcounts == NULL)
2763
0
  return NULL;
2764
0
      elf_local_got_refcounts (abfd) = local_got_refcounts;
2765
0
    }
2766
2767
0
  local_plt = (struct plt_entry **) (local_got_refcounts + symtab_hdr->sh_info);
2768
0
  local_got_tls_masks = (unsigned char *) (local_plt + symtab_hdr->sh_info);
2769
0
  local_got_tls_masks[r_symndx] |= tls_type & 0xff;
2770
0
  if ((tls_type & NON_GOT) == 0)
2771
0
    local_got_refcounts[r_symndx] += 1;
2772
0
  return local_plt + r_symndx;
2773
0
}
2774
2775
static bool
2776
update_plt_info (bfd *abfd, struct plt_entry **plist,
2777
     asection *sec, bfd_vma addend)
2778
0
{
2779
0
  struct plt_entry *ent;
2780
2781
0
  if (addend < 32768)
2782
0
    sec = NULL;
2783
0
  for (ent = *plist; ent != NULL; ent = ent->next)
2784
0
    if (ent->sec == sec && ent->addend == addend)
2785
0
      break;
2786
0
  if (ent == NULL)
2787
0
    {
2788
0
      size_t amt = sizeof (*ent);
2789
0
      ent = bfd_alloc (abfd, amt);
2790
0
      if (ent == NULL)
2791
0
  return false;
2792
0
      ent->next = *plist;
2793
0
      ent->sec = sec;
2794
0
      ent->addend = addend;
2795
0
      ent->plt.refcount = 0;
2796
0
      *plist = ent;
2797
0
    }
2798
0
  ent->plt.refcount += 1;
2799
0
  return true;
2800
0
}
2801
2802
static struct plt_entry *
2803
find_plt_ent (struct plt_entry **plist, asection *sec, bfd_vma addend)
2804
0
{
2805
0
  struct plt_entry *ent;
2806
2807
0
  if (addend < 32768)
2808
0
    sec = NULL;
2809
0
  for (ent = *plist; ent != NULL; ent = ent->next)
2810
0
    if (ent->sec == sec && ent->addend == addend)
2811
0
      break;
2812
0
  return ent;
2813
0
}
2814
2815
static bool
2816
is_branch_reloc (enum elf_ppc_reloc_type r_type)
2817
0
{
2818
0
  return (r_type == R_PPC_PLTREL24
2819
0
    || r_type == R_PPC_LOCAL24PC
2820
0
    || r_type == R_PPC_REL24
2821
0
    || r_type == R_PPC_REL14
2822
0
    || r_type == R_PPC_REL14_BRTAKEN
2823
0
    || r_type == R_PPC_REL14_BRNTAKEN
2824
0
    || r_type == R_PPC_ADDR24
2825
0
    || r_type == R_PPC_ADDR14
2826
0
    || r_type == R_PPC_ADDR14_BRTAKEN
2827
0
    || r_type == R_PPC_ADDR14_BRNTAKEN
2828
0
    || r_type == R_PPC_VLE_REL24);
2829
0
}
2830
2831
/* Relocs on inline plt call sequence insns prior to the call.  */
2832
2833
static bool
2834
is_plt_seq_reloc (enum elf_ppc_reloc_type r_type)
2835
0
{
2836
0
  return (r_type == R_PPC_PLT16_HA
2837
0
    || r_type == R_PPC_PLT16_HI
2838
0
    || r_type == R_PPC_PLT16_LO
2839
0
    || r_type == R_PPC_PLTSEQ);
2840
0
}
2841
2842
/* Like bfd_reloc_offset_in_range but without a howto.  Return true
2843
   iff a field of SIZE bytes at OFFSET is within SEC limits.  */
2844
2845
static bool
2846
offset_in_range (asection *sec, bfd_vma offset, size_t size)
2847
0
{
2848
0
  return offset <= sec->size && size <= sec->size - offset;
2849
0
}
2850
2851
static void
2852
bad_shared_reloc (bfd *abfd, enum elf_ppc_reloc_type r_type)
2853
0
{
2854
0
  _bfd_error_handler
2855
    /* xgettext:c-format */
2856
0
    (_("%pB: relocation %s cannot be used when making a shared object"),
2857
0
     abfd,
2858
0
     ppc_elf_howto_table[r_type]->name);
2859
0
  bfd_set_error (bfd_error_bad_value);
2860
0
}
2861
2862
/* Look through the relocs for a section during the first phase, and
2863
   allocate space in the global offset table or procedure linkage
2864
   table.  */
2865
2866
static bool
2867
ppc_elf_check_relocs (bfd *abfd,
2868
          struct bfd_link_info *info,
2869
          asection *sec,
2870
          const Elf_Internal_Rela *relocs)
2871
0
{
2872
0
  struct ppc_elf_link_hash_table *htab;
2873
0
  Elf_Internal_Shdr *symtab_hdr;
2874
0
  struct elf_link_hash_entry **sym_hashes;
2875
0
  const Elf_Internal_Rela *rel;
2876
0
  const Elf_Internal_Rela *rel_end;
2877
0
  asection *got2, *sreloc;
2878
0
  struct elf_link_hash_entry *tga;
2879
2880
0
  if (bfd_link_relocatable (info))
2881
0
    return true;
2882
2883
#ifdef DEBUG
2884
  _bfd_error_handler ("ppc_elf_check_relocs called for section %pA in %pB",
2885
          sec, abfd);
2886
#endif
2887
2888
0
  BFD_ASSERT (is_ppc_elf (abfd));
2889
2890
  /* Initialize howto table if not already done.  */
2891
0
  if (!ppc_elf_howto_table[R_PPC_ADDR32])
2892
0
    ppc_elf_howto_init ();
2893
2894
0
  htab = ppc_elf_hash_table (info);
2895
0
  if (htab->glink == NULL)
2896
0
    {
2897
0
      if (htab->elf.dynobj == NULL)
2898
0
  htab->elf.dynobj = abfd;
2899
0
      if (!ppc_elf_create_glink (htab->elf.dynobj, info))
2900
0
  return false;
2901
0
    }
2902
0
  tga = elf_link_hash_lookup (&htab->elf, "__tls_get_addr",
2903
0
            false, false, true);
2904
0
  symtab_hdr = &elf_symtab_hdr (abfd);
2905
0
  sym_hashes = elf_sym_hashes (abfd);
2906
0
  got2 = bfd_get_section_by_name (abfd, ".got2");
2907
0
  sreloc = NULL;
2908
2909
0
  rel_end = relocs + sec->reloc_count;
2910
0
  for (rel = relocs; rel < rel_end; rel++)
2911
0
    {
2912
0
      unsigned long r_symndx;
2913
0
      enum elf_ppc_reloc_type r_type;
2914
0
      struct elf_link_hash_entry *h;
2915
0
      Elf_Internal_Sym *isym;
2916
0
      int tls_type;
2917
0
      struct plt_entry **ifunc;
2918
0
      struct plt_entry **pltent;
2919
0
      bfd_vma addend;
2920
2921
0
      r_symndx = ELF32_R_SYM (rel->r_info);
2922
0
      if (r_symndx < symtab_hdr->sh_info)
2923
0
  {
2924
0
    h = NULL;
2925
0
    isym = bfd_sym_from_r_symndx (&htab->elf.sym_cache, abfd, r_symndx);
2926
0
    if (isym == NULL)
2927
0
      return false;
2928
0
  }
2929
0
      else
2930
0
  {
2931
0
    h = sym_hashes[r_symndx - symtab_hdr->sh_info];
2932
0
    while (h->root.type == bfd_link_hash_indirect
2933
0
     || h->root.type == bfd_link_hash_warning)
2934
0
      h = (struct elf_link_hash_entry *) h->root.u.i.link;
2935
0
    isym = NULL;
2936
0
  }
2937
2938
      /* If a relocation refers to _GLOBAL_OFFSET_TABLE_, create the .got.
2939
   This shows up in particular in an R_PPC_ADDR32 in the eabi
2940
   startup code.  */
2941
0
      if (h != NULL
2942
0
    && htab->elf.sgot == NULL
2943
0
    && strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
2944
0
  {
2945
0
    if (htab->elf.dynobj == NULL)
2946
0
      htab->elf.dynobj = abfd;
2947
0
    if (!ppc_elf_create_got (htab->elf.dynobj, info))
2948
0
      return false;
2949
0
    BFD_ASSERT (h == htab->elf.hgot);
2950
0
  }
2951
2952
0
      tls_type = 0;
2953
0
      r_type = ELF32_R_TYPE (rel->r_info);
2954
0
      ifunc = NULL;
2955
0
      if (h != NULL)
2956
0
  {
2957
0
    if (h->type == STT_GNU_IFUNC)
2958
0
      {
2959
0
        h->needs_plt = 1;
2960
0
        ifunc = &h->plt.plist;
2961
0
      }
2962
0
  }
2963
0
      else if (htab->elf.target_os != is_vxworks)
2964
0
  {
2965
0
    if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
2966
0
      {
2967
        /* Set PLT_IFUNC flag for this sym, no GOT entry yet.  */
2968
0
        ifunc = update_local_sym_info (abfd, symtab_hdr, r_symndx,
2969
0
               NON_GOT | PLT_IFUNC);
2970
0
        if (ifunc == NULL)
2971
0
    return false;
2972
2973
        /* STT_GNU_IFUNC symbols must have a PLT entry;
2974
     In a non-pie executable even when there are
2975
     no plt calls.  */
2976
0
        if (!bfd_link_pic (info)
2977
0
      || is_branch_reloc (r_type)
2978
0
      || r_type == R_PPC_PLT16_LO
2979
0
      || r_type == R_PPC_PLT16_HI
2980
0
      || r_type == R_PPC_PLT16_HA)
2981
0
    {
2982
0
      addend = 0;
2983
0
      if (r_type == R_PPC_PLTREL24)
2984
0
        ppc_elf_tdata (abfd)->makes_plt_call = 1;
2985
0
      if (bfd_link_pic (info)
2986
0
          && (r_type == R_PPC_PLTREL24
2987
0
        || r_type == R_PPC_PLT16_LO
2988
0
        || r_type == R_PPC_PLT16_HI
2989
0
        || r_type == R_PPC_PLT16_HA))
2990
0
        addend = rel->r_addend;
2991
0
      if (!update_plt_info (abfd, ifunc, got2, addend))
2992
0
        return false;
2993
0
    }
2994
0
      }
2995
0
  }
2996
2997
0
      if (htab->elf.target_os != is_vxworks
2998
0
    && is_branch_reloc (r_type)
2999
0
    && h != NULL
3000
0
    && h == tga)
3001
0
  {
3002
0
    if (rel != relocs
3003
0
        && (ELF32_R_TYPE (rel[-1].r_info) == R_PPC_TLSGD
3004
0
      || ELF32_R_TYPE (rel[-1].r_info) == R_PPC_TLSLD))
3005
      /* We have a new-style __tls_get_addr call with a marker
3006
         reloc.  */
3007
0
      ;
3008
0
    else
3009
      /* Mark this section as having an old-style call.  */
3010
0
      sec->nomark_tls_get_addr = 1;
3011
0
  }
3012
3013
0
      switch (r_type)
3014
0
  {
3015
0
  case R_PPC_TLSGD:
3016
0
  case R_PPC_TLSLD:
3017
    /* These special tls relocs tie a call to __tls_get_addr with
3018
       its parameter symbol.  */
3019
0
    if (h != NULL)
3020
0
      ppc_elf_hash_entry (h)->tls_mask |= TLS_TLS | TLS_MARK;
3021
0
    else
3022
0
      if (!update_local_sym_info (abfd, symtab_hdr, r_symndx,
3023
0
          NON_GOT | TLS_TLS | TLS_MARK))
3024
0
        return false;
3025
0
    break;
3026
3027
0
  case R_PPC_PLTSEQ:
3028
0
    break;
3029
3030
0
  case R_PPC_GOT_TLSLD16:
3031
0
  case R_PPC_GOT_TLSLD16_LO:
3032
0
  case R_PPC_GOT_TLSLD16_HI:
3033
0
  case R_PPC_GOT_TLSLD16_HA:
3034
0
    tls_type = TLS_TLS | TLS_LD;
3035
0
    goto dogottls;
3036
3037
0
  case R_PPC_GOT_TLSGD16:
3038
0
  case R_PPC_GOT_TLSGD16_LO:
3039
0
  case R_PPC_GOT_TLSGD16_HI:
3040
0
  case R_PPC_GOT_TLSGD16_HA:
3041
0
    tls_type = TLS_TLS | TLS_GD;
3042
0
    goto dogottls;
3043
3044
0
  case R_PPC_GOT_TPREL16:
3045
0
  case R_PPC_GOT_TPREL16_LO:
3046
0
  case R_PPC_GOT_TPREL16_HI:
3047
0
  case R_PPC_GOT_TPREL16_HA:
3048
0
    if (bfd_link_dll (info))
3049
0
      info->flags |= DF_STATIC_TLS;
3050
0
    tls_type = TLS_TLS | TLS_TPREL;
3051
0
    goto dogottls;
3052
3053
0
  case R_PPC_GOT_DTPREL16:
3054
0
  case R_PPC_GOT_DTPREL16_LO:
3055
0
  case R_PPC_GOT_DTPREL16_HI:
3056
0
  case R_PPC_GOT_DTPREL16_HA:
3057
0
    tls_type = TLS_TLS | TLS_DTPREL;
3058
0
  dogottls:
3059
0
    sec->has_tls_reloc = 1;
3060
    /* Fall through.  */
3061
3062
    /* GOT16 relocations */
3063
0
  case R_PPC_GOT16:
3064
0
  case R_PPC_GOT16_LO:
3065
0
  case R_PPC_GOT16_HI:
3066
0
  case R_PPC_GOT16_HA:
3067
    /* This symbol requires a global offset table entry.  */
3068
0
    if (htab->elf.sgot == NULL)
3069
0
      {
3070
0
        if (htab->elf.dynobj == NULL)
3071
0
    htab->elf.dynobj = abfd;
3072
0
        if (!ppc_elf_create_got (htab->elf.dynobj, info))
3073
0
    return false;
3074
0
      }
3075
0
    if (h != NULL)
3076
0
      {
3077
0
        h->got.refcount += 1;
3078
0
        ppc_elf_hash_entry (h)->tls_mask |= tls_type;
3079
0
      }
3080
0
    else
3081
      /* This is a global offset table entry for a local symbol.  */
3082
0
      if (!update_local_sym_info (abfd, symtab_hdr, r_symndx, tls_type))
3083
0
        return false;
3084
3085
    /* We may also need a plt entry if the symbol turns out to be
3086
       an ifunc.  */
3087
0
    if (h != NULL && !bfd_link_pic (info))
3088
0
      {
3089
0
        if (!update_plt_info (abfd, &h->plt.plist, NULL, 0))
3090
0
    return false;
3091
0
      }
3092
0
    break;
3093
3094
    /* Indirect .sdata relocation.  */
3095
0
  case R_PPC_EMB_SDAI16:
3096
0
    htab->sdata[0].sym->ref_regular = 1;
3097
0
    if (!elf_allocate_pointer_linker_section (abfd, &htab->sdata[0],
3098
0
                h, rel))
3099
0
      return false;
3100
0
    if (h != NULL)
3101
0
      {
3102
0
        ppc_elf_hash_entry (h)->has_sda_refs = true;
3103
0
        h->non_got_ref = true;
3104
0
      }
3105
0
    break;
3106
3107
    /* Indirect .sdata2 relocation.  */
3108
0
  case R_PPC_EMB_SDA2I16:
3109
0
    if (!bfd_link_executable (info))
3110
0
      {
3111
0
        bad_shared_reloc (abfd, r_type);
3112
0
        return false;
3113
0
      }
3114
0
    htab->sdata[1].sym->ref_regular = 1;
3115
0
    if (!elf_allocate_pointer_linker_section (abfd, &htab->sdata[1],
3116
0
                h, rel))
3117
0
      return false;
3118
0
    if (h != NULL)
3119
0
      {
3120
0
        ppc_elf_hash_entry (h)->has_sda_refs = true;
3121
0
        h->non_got_ref = true;
3122
0
      }
3123
0
    break;
3124
3125
0
  case R_PPC_SDAREL16:
3126
0
    htab->sdata[0].sym->ref_regular = 1;
3127
    /* Fall through.  */
3128
3129
0
  case R_PPC_VLE_SDAREL_LO16A:
3130
0
  case R_PPC_VLE_SDAREL_LO16D:
3131
0
  case R_PPC_VLE_SDAREL_HI16A:
3132
0
  case R_PPC_VLE_SDAREL_HI16D:
3133
0
  case R_PPC_VLE_SDAREL_HA16A:
3134
0
  case R_PPC_VLE_SDAREL_HA16D:
3135
0
    if (h != NULL)
3136
0
      {
3137
0
        ppc_elf_hash_entry (h)->has_sda_refs = true;
3138
0
        h->non_got_ref = true;
3139
0
      }
3140
0
    break;
3141
3142
0
  case R_PPC_VLE_REL8:
3143
0
  case R_PPC_VLE_REL15:
3144
0
  case R_PPC_VLE_REL24:
3145
0
  case R_PPC_VLE_LO16A:
3146
0
  case R_PPC_VLE_LO16D:
3147
0
  case R_PPC_VLE_HI16A:
3148
0
  case R_PPC_VLE_HI16D:
3149
0
  case R_PPC_VLE_HA16A:
3150
0
  case R_PPC_VLE_HA16D:
3151
0
  case R_PPC_VLE_ADDR20:
3152
0
    break;
3153
3154
0
  case R_PPC_EMB_SDA2REL:
3155
0
    if (!bfd_link_executable (info))
3156
0
      {
3157
0
        bad_shared_reloc (abfd, r_type);
3158
0
        return false;
3159
0
      }
3160
0
    htab->sdata[1].sym->ref_regular = 1;
3161
0
    if (h != NULL)
3162
0
      {
3163
0
        ppc_elf_hash_entry (h)->has_sda_refs = true;
3164
0
        h->non_got_ref = true;
3165
0
      }
3166
0
    break;
3167
3168
0
  case R_PPC_VLE_SDA21_LO:
3169
0
  case R_PPC_VLE_SDA21:
3170
0
  case R_PPC_EMB_SDA21:
3171
0
  case R_PPC_EMB_RELSDA:
3172
0
    if (h != NULL)
3173
0
      {
3174
0
        ppc_elf_hash_entry (h)->has_sda_refs = true;
3175
0
        h->non_got_ref = true;
3176
0
      }
3177
0
    break;
3178
3179
0
  case R_PPC_EMB_NADDR32:
3180
0
  case R_PPC_EMB_NADDR16:
3181
0
  case R_PPC_EMB_NADDR16_LO:
3182
0
  case R_PPC_EMB_NADDR16_HI:
3183
0
  case R_PPC_EMB_NADDR16_HA:
3184
0
    if (h != NULL)
3185
0
      h->non_got_ref = true;
3186
0
    break;
3187
3188
0
  case R_PPC_PLTREL24:
3189
0
    if (h == NULL)
3190
0
      break;
3191
0
    ppc_elf_tdata (abfd)->makes_plt_call = 1;
3192
0
    goto pltentry;
3193
3194
0
  case R_PPC_PLTCALL:
3195
0
    sec->has_pltcall = 1;
3196
    /* Fall through.  */
3197
3198
0
  case R_PPC_PLT32:
3199
0
  case R_PPC_PLTREL32:
3200
0
  case R_PPC_PLT16_LO:
3201
0
  case R_PPC_PLT16_HI:
3202
0
  case R_PPC_PLT16_HA:
3203
0
  pltentry:
3204
#ifdef DEBUG
3205
    fprintf (stderr, "Reloc requires a PLT entry\n");
3206
#endif
3207
    /* This symbol requires a procedure linkage table entry.  */
3208
0
    if (h == NULL)
3209
0
      {
3210
0
        pltent = update_local_sym_info (abfd, symtab_hdr, r_symndx,
3211
0
                NON_GOT | PLT_KEEP);
3212
0
        if (pltent == NULL)
3213
0
    return false;
3214
0
      }
3215
0
    else
3216
0
      {
3217
0
        if (r_type != R_PPC_PLTREL24)
3218
0
    ppc_elf_hash_entry (h)->tls_mask |= PLT_KEEP;
3219
0
        h->needs_plt = 1;
3220
0
        pltent = &h->plt.plist;
3221
0
      }
3222
0
    addend = 0;
3223
0
    if (bfd_link_pic (info)
3224
0
        && (r_type == R_PPC_PLTREL24
3225
0
      || r_type == R_PPC_PLT16_LO
3226
0
      || r_type == R_PPC_PLT16_HI
3227
0
      || r_type == R_PPC_PLT16_HA))
3228
0
      addend = rel->r_addend;
3229
0
    if (!update_plt_info (abfd, pltent, got2, addend))
3230
0
      return false;
3231
0
    break;
3232
3233
    /* The following relocations don't need to propagate the
3234
       relocation if linking a shared object since they are
3235
       section relative.  */
3236
0
  case R_PPC_SECTOFF:
3237
0
  case R_PPC_SECTOFF_LO:
3238
0
  case R_PPC_SECTOFF_HI:
3239
0
  case R_PPC_SECTOFF_HA:
3240
0
  case R_PPC_DTPREL16:
3241
0
  case R_PPC_DTPREL16_LO:
3242
0
  case R_PPC_DTPREL16_HI:
3243
0
  case R_PPC_DTPREL16_HA:
3244
0
  case R_PPC_TOC16:
3245
0
    break;
3246
3247
0
  case R_PPC_REL16:
3248
0
  case R_PPC_REL16_LO:
3249
0
  case R_PPC_REL16_HI:
3250
0
  case R_PPC_REL16_HA:
3251
0
  case R_PPC_REL16DX_HA:
3252
0
    ppc_elf_tdata (abfd)->has_rel16 = 1;
3253
0
    break;
3254
3255
    /* These are just markers.  */
3256
0
  case R_PPC_TLS:
3257
0
  case R_PPC_EMB_MRKREF:
3258
0
  case R_PPC_NONE:
3259
0
  case R_PPC_max:
3260
0
  case R_PPC_RELAX:
3261
0
  case R_PPC_RELAX_PLT:
3262
0
  case R_PPC_RELAX_PLTREL24:
3263
0
  case R_PPC_16DX_HA:
3264
0
    break;
3265
3266
    /* These should only appear in dynamic objects.  */
3267
0
  case R_PPC_COPY:
3268
0
  case R_PPC_GLOB_DAT:
3269
0
  case R_PPC_JMP_SLOT:
3270
0
  case R_PPC_RELATIVE:
3271
0
  case R_PPC_IRELATIVE:
3272
0
    break;
3273
3274
    /* These aren't handled yet.  We'll report an error later.  */
3275
0
  case R_PPC_ADDR30:
3276
0
  case R_PPC_EMB_RELSEC16:
3277
0
  case R_PPC_EMB_RELST_LO:
3278
0
  case R_PPC_EMB_RELST_HI:
3279
0
  case R_PPC_EMB_RELST_HA:
3280
0
  case R_PPC_EMB_BIT_FLD:
3281
0
    break;
3282
3283
    /* This refers only to functions defined in the shared library.  */
3284
0
  case R_PPC_LOCAL24PC:
3285
0
    if (h != NULL && h == htab->elf.hgot && htab->plt_type == PLT_UNSET)
3286
0
      {
3287
0
        htab->plt_type = PLT_OLD;
3288
0
        htab->old_bfd = abfd;
3289
0
      }
3290
0
    if (h != NULL
3291
0
        && ifunc != NULL
3292
0
        && !update_plt_info (abfd, ifunc, NULL, 0))
3293
0
      return false;
3294
0
    break;
3295
3296
    /* This relocation describes the C++ object vtable hierarchy.
3297
       Reconstruct it for later use during GC.  */
3298
0
  case R_PPC_GNU_VTINHERIT:
3299
0
    if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
3300
0
      return false;
3301
0
    break;
3302
3303
    /* This relocation describes which C++ vtable entries are actually
3304
       used.  Record for later use during GC.  */
3305
0
  case R_PPC_GNU_VTENTRY:
3306
0
    if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
3307
0
      return false;
3308
0
    break;
3309
3310
0
  case R_PPC_TPREL16_HI:
3311
0
  case R_PPC_TPREL16_HA:
3312
0
    sec->has_tls_reloc = 1;
3313
    /* Fall through.  */
3314
    /* We shouldn't really be seeing TPREL32.  */
3315
0
  case R_PPC_TPREL32:
3316
0
  case R_PPC_TPREL16:
3317
0
  case R_PPC_TPREL16_LO:
3318
0
    if (bfd_link_dll (info))
3319
0
      info->flags |= DF_STATIC_TLS;
3320
0
    goto dodyn;
3321
3322
    /* Nor these.  */
3323
0
  case R_PPC_DTPMOD32:
3324
0
  case R_PPC_DTPREL32:
3325
0
    goto dodyn;
3326
3327
0
  case R_PPC_REL32:
3328
0
    if (h == NULL
3329
0
        && got2 != NULL
3330
0
        && (sec->flags & SEC_CODE) != 0
3331
0
        && bfd_link_pic (info)
3332
0
        && htab->plt_type == PLT_UNSET)
3333
0
      {
3334
        /* Old -fPIC gcc code has .long LCTOC1-LCFx just before
3335
     the start of a function, which assembles to a REL32
3336
     reference to .got2.  If we detect one of these, then
3337
     force the old PLT layout because the linker cannot
3338
     reliably deduce the GOT pointer value needed for
3339
     PLT call stubs.  */
3340
0
        asection *s;
3341
3342
0
        s = bfd_section_from_elf_index (abfd, isym->st_shndx);
3343
0
        if (s == got2)
3344
0
    {
3345
0
      htab->plt_type = PLT_OLD;
3346
0
      htab->old_bfd = abfd;
3347
0
    }
3348
0
      }
3349
0
    if (h == NULL || h == htab->elf.hgot)
3350
0
      break;
3351
    /* fall through */
3352
3353
0
  case R_PPC_ADDR32:
3354
0
  case R_PPC_ADDR16:
3355
0
  case R_PPC_ADDR16_LO:
3356
0
  case R_PPC_ADDR16_HI:
3357
0
  case R_PPC_ADDR16_HA:
3358
0
  case R_PPC_UADDR32:
3359
0
  case R_PPC_UADDR16:
3360
0
    if (h != NULL && !bfd_link_pic (info))
3361
0
      {
3362
        /* We may need a plt entry if the symbol turns out to be
3363
     a function defined in a dynamic object.  */
3364
0
        if (!update_plt_info (abfd, &h->plt.plist, NULL, 0))
3365
0
    return false;
3366
3367
        /* We may need a copy reloc too.  */
3368
0
        h->non_got_ref = 1;
3369
0
        h->pointer_equality_needed = 1;
3370
0
        if (r_type == R_PPC_ADDR16_HA)
3371
0
    ppc_elf_hash_entry (h)->has_addr16_ha = 1;
3372
0
        if (r_type == R_PPC_ADDR16_LO)
3373
0
    ppc_elf_hash_entry (h)->has_addr16_lo = 1;
3374
0
      }
3375
0
    goto dodyn;
3376
3377
0
  case R_PPC_REL24:
3378
0
  case R_PPC_REL14:
3379
0
  case R_PPC_REL14_BRTAKEN:
3380
0
  case R_PPC_REL14_BRNTAKEN:
3381
0
    if (h == NULL)
3382
0
      break;
3383
0
    if (h == htab->elf.hgot)
3384
0
      {
3385
0
        if (htab->plt_type == PLT_UNSET)
3386
0
    {
3387
0
      htab->plt_type = PLT_OLD;
3388
0
      htab->old_bfd = abfd;
3389
0
    }
3390
0
        break;
3391
0
      }
3392
    /* fall through */
3393
3394
0
  case R_PPC_ADDR24:
3395
0
  case R_PPC_ADDR14:
3396
0
  case R_PPC_ADDR14_BRTAKEN:
3397
0
  case R_PPC_ADDR14_BRNTAKEN:
3398
0
    if (h != NULL && !bfd_link_pic (info))
3399
0
      {
3400
        /* We may need a plt entry if the symbol turns out to be
3401
     a function defined in a dynamic object.  */
3402
0
        h->needs_plt = 1;
3403
0
        if (!update_plt_info (abfd, &h->plt.plist, NULL, 0))
3404
0
    return false;
3405
0
        break;
3406
0
      }
3407
3408
0
  dodyn:
3409
    /* Set up information for symbols that might need dynamic
3410
       relocations.  At this point in linking we have read all
3411
       the input files and resolved most symbols, but have not
3412
       yet decided whether symbols are dynamic or finalized
3413
       symbol flags.  In some cases we might be setting dynamic
3414
       reloc info for symbols that do not end up needing such.
3415
       That's OK, adjust_dynamic_symbol and allocate_dynrelocs
3416
       work together with this code.  */
3417
0
    if ((h != NULL
3418
0
         && !SYMBOL_REFERENCES_LOCAL (info, h))
3419
0
        || (bfd_link_pic (info)
3420
0
      && (h != NULL
3421
0
          ? !bfd_is_abs_symbol (&h->root)
3422
0
          : isym->st_shndx != SHN_ABS)
3423
0
      && must_be_dyn_reloc (info, r_type)))
3424
0
      {
3425
#ifdef DEBUG
3426
        fprintf (stderr,
3427
           "ppc_elf_check_relocs needs to "
3428
           "create relocation for %s\n",
3429
           (h && h->root.root.string
3430
      ? h->root.root.string : "<unknown>"));
3431
#endif
3432
0
        if (sreloc == NULL)
3433
0
    {
3434
0
      if (htab->elf.dynobj == NULL)
3435
0
        htab->elf.dynobj = abfd;
3436
3437
0
      sreloc = _bfd_elf_make_dynamic_reloc_section
3438
0
        (sec, htab->elf.dynobj, 2, abfd, /*rela?*/ true);
3439
3440
0
      if (sreloc == NULL)
3441
0
        return false;
3442
0
    }
3443
3444
        /* If this is a global symbol, we count the number of
3445
     relocations we need for this symbol.  */
3446
0
        if (h != NULL)
3447
0
    {
3448
0
      struct elf_dyn_relocs *p;
3449
0
      struct elf_dyn_relocs **rel_head;
3450
3451
0
      rel_head = &h->dyn_relocs;
3452
0
      p = *rel_head;
3453
0
      if (p == NULL || p->sec != sec)
3454
0
        {
3455
0
          p = bfd_alloc (htab->elf.dynobj, sizeof *p);
3456
0
          if (p == NULL)
3457
0
      return false;
3458
0
          p->next = *rel_head;
3459
0
          *rel_head = p;
3460
0
          p->sec = sec;
3461
0
          p->count = 0;
3462
0
          p->pc_count = 0;
3463
0
        }
3464
0
      p->count += 1;
3465
0
      if (!must_be_dyn_reloc (info, r_type))
3466
0
        p->pc_count += 1;
3467
0
    }
3468
0
        else
3469
0
    {
3470
      /* Track dynamic relocs needed for local syms too.
3471
         We really need local syms available to do this
3472
         easily.  Oh well.  */
3473
0
      struct ppc_dyn_relocs *p;
3474
0
      struct ppc_dyn_relocs **rel_head;
3475
0
      bool is_ifunc;
3476
0
      asection *s;
3477
0
      void *vpp;
3478
3479
0
      s = bfd_section_from_elf_index (abfd, isym->st_shndx);
3480
0
      if (s == NULL)
3481
0
        s = sec;
3482
3483
0
      vpp = &elf_section_data (s)->local_dynrel;
3484
0
      rel_head = (struct ppc_dyn_relocs **) vpp;
3485
0
      is_ifunc = ifunc != NULL;
3486
0
      p = *rel_head;
3487
0
      if (p != NULL && p->sec == sec && p->ifunc != is_ifunc)
3488
0
        p = p->next;
3489
0
      if (p == NULL || p->sec != sec || p->ifunc != is_ifunc)
3490
0
        {
3491
0
          p = bfd_alloc (htab->elf.dynobj, sizeof *p);
3492
0
          if (p == NULL)
3493
0
      return false;
3494
0
          p->next = *rel_head;
3495
0
          *rel_head = p;
3496
0
          p->sec = sec;
3497
0
          p->ifunc = is_ifunc;
3498
0
          p->count = 0;
3499
0
        }
3500
0
      p->count += 1;
3501
0
    }
3502
0
      }
3503
3504
0
    break;
3505
0
  }
3506
0
    }
3507
3508
0
  return true;
3509
0
}
3510

3511
/* Warn for conflicting Tag_GNU_Power_ABI_FP attributes between IBFD
3512
   and OBFD, and merge non-conflicting ones.  */
3513
bool
3514
_bfd_elf_ppc_merge_fp_attributes (bfd *ibfd, struct bfd_link_info *info)
3515
0
{
3516
0
  bfd *obfd = info->output_bfd;
3517
0
  obj_attribute *in_attr, *in_attrs;
3518
0
  obj_attribute *out_attr, *out_attrs;
3519
0
  bool ret = true;
3520
0
  bool warn_only;
3521
3522
  /* We only warn about shared library mismatches, because common
3523
     libraries advertise support for a particular long double variant
3524
     but actually support more than one variant.  For example, glibc
3525
     typically supports 128-bit IBM long double in the shared library
3526
     but has a compatibility static archive for 64-bit long double.
3527
     The linker doesn't have the smarts to see that an app using
3528
     object files marked as 64-bit long double call the compatibility
3529
     layer objects and only from there call into the shared library.  */
3530
0
  warn_only = (ibfd->flags & DYNAMIC) != 0;
3531
3532
0
  in_attrs = elf_known_obj_attributes (ibfd)[OBJ_ATTR_GNU];
3533
0
  out_attrs = elf_known_obj_attributes (obfd)[OBJ_ATTR_GNU];
3534
3535
0
  in_attr = &in_attrs[Tag_GNU_Power_ABI_FP];
3536
0
  out_attr = &out_attrs[Tag_GNU_Power_ABI_FP];
3537
3538
0
  if (in_attr->i != out_attr->i)
3539
0
    {
3540
0
      int in_fp = in_attr->i & 3;
3541
0
      int out_fp = out_attr->i & 3;
3542
0
      static bfd *last_fp, *last_ld;
3543
3544
0
      if (in_fp == 0)
3545
0
  ;
3546
0
      else if (out_fp == 0)
3547
0
  {
3548
0
    if (!warn_only)
3549
0
      {
3550
0
        out_attr->type = ATTR_TYPE_FLAG_INT_VAL;
3551
0
        out_attr->i ^= in_fp;
3552
0
        last_fp = ibfd;
3553
0
      }
3554
0
  }
3555
0
      else if (out_fp != 2 && in_fp == 2)
3556
0
  {
3557
0
    _bfd_error_handler
3558
      /* xgettext:c-format */
3559
0
      (_("%pB uses hard float, %pB uses soft float"),
3560
0
       last_fp, ibfd);
3561
0
    ret = warn_only;
3562
0
  }
3563
0
      else if (out_fp == 2 && in_fp != 2)
3564
0
  {
3565
0
    _bfd_error_handler
3566
      /* xgettext:c-format */
3567
0
      (_("%pB uses hard float, %pB uses soft float"),
3568
0
       ibfd, last_fp);
3569
0
    ret = warn_only;
3570
0
  }
3571
0
      else if (out_fp == 1 && in_fp == 3)
3572
0
  {
3573
0
    _bfd_error_handler
3574
      /* xgettext:c-format */
3575
0
      (_("%pB uses double-precision hard float, "
3576
0
         "%pB uses single-precision hard float"), last_fp, ibfd);
3577
0
    ret = warn_only;
3578
0
  }
3579
0
      else if (out_fp == 3 && in_fp == 1)
3580
0
  {
3581
0
    _bfd_error_handler
3582
      /* xgettext:c-format */
3583
0
      (_("%pB uses double-precision hard float, "
3584
0
         "%pB uses single-precision hard float"), ibfd, last_fp);
3585
0
    ret = warn_only;
3586
0
  }
3587
3588
0
      in_fp = in_attr->i & 0xc;
3589
0
      out_fp = out_attr->i & 0xc;
3590
0
      if (in_fp == 0)
3591
0
  ;
3592
0
      else if (out_fp == 0)
3593
0
  {
3594
0
    if (!warn_only)
3595
0
      {
3596
0
        out_attr->type = ATTR_TYPE_FLAG_INT_VAL;
3597
0
        out_attr->i ^= in_fp;
3598
0
        last_ld = ibfd;
3599
0
      }
3600
0
  }
3601
0
      else if (out_fp != 2 * 4 && in_fp == 2 * 4)
3602
0
  {
3603
0
    _bfd_error_handler
3604
      /* xgettext:c-format */
3605
0
      (_("%pB uses 64-bit long double, "
3606
0
         "%pB uses 128-bit long double"), ibfd, last_ld);
3607
0
    ret = warn_only;
3608
0
  }
3609
0
      else if (in_fp != 2 * 4 && out_fp == 2 * 4)
3610
0
  {
3611
0
    _bfd_error_handler
3612
      /* xgettext:c-format */
3613
0
      (_("%pB uses 64-bit long double, "
3614
0
         "%pB uses 128-bit long double"), last_ld, ibfd);
3615
0
    ret = warn_only;
3616
0
  }
3617
0
      else if (out_fp == 1 * 4 && in_fp == 3 * 4)
3618
0
  {
3619
0
    _bfd_error_handler
3620
      /* xgettext:c-format */
3621
0
      (_("%pB uses IBM long double, "
3622
0
         "%pB uses IEEE long double"), last_ld, ibfd);
3623
0
    ret = warn_only;
3624
0
  }
3625
0
      else if (out_fp == 3 * 4 && in_fp == 1 * 4)
3626
0
  {
3627
0
    _bfd_error_handler
3628
      /* xgettext:c-format */
3629
0
      (_("%pB uses IBM long double, "
3630
0
         "%pB uses IEEE long double"), ibfd, last_ld);
3631
0
    ret = warn_only;
3632
0
  }
3633
0
    }
3634
3635
0
  if (!ret)
3636
0
    {
3637
0
      out_attr->type = ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_ERROR;
3638
0
      bfd_set_error (bfd_error_bad_value);
3639
0
    }
3640
0
  return ret;
3641
0
}
3642
3643
/* Merge object attributes from IBFD into OBFD.  Warn if
3644
   there are conflicting attributes.  */
3645
static bool
3646
ppc_elf_merge_obj_attributes (bfd *ibfd, struct bfd_link_info *info)
3647
0
{
3648
0
  bfd *obfd;
3649
0
  obj_attribute *in_attr, *in_attrs;
3650
0
  obj_attribute *out_attr, *out_attrs;
3651
0
  bool ret;
3652
3653
0
  if (!_bfd_elf_ppc_merge_fp_attributes (ibfd, info))
3654
0
    return false;
3655
3656
0
  obfd = info->output_bfd;
3657
0
  in_attrs = elf_known_obj_attributes (ibfd)[OBJ_ATTR_GNU];
3658
0
  out_attrs = elf_known_obj_attributes (obfd)[OBJ_ATTR_GNU];
3659
3660
  /* Check for conflicting Tag_GNU_Power_ABI_Vector attributes and
3661
     merge non-conflicting ones.  */
3662
0
  in_attr = &in_attrs[Tag_GNU_Power_ABI_Vector];
3663
0
  out_attr = &out_attrs[Tag_GNU_Power_ABI_Vector];
3664
0
  ret = true;
3665
0
  if (in_attr->i != out_attr->i)
3666
0
    {
3667
0
      int in_vec = in_attr->i & 3;
3668
0
      int out_vec = out_attr->i & 3;
3669
0
      static bfd *last_vec;
3670
3671
0
      if (in_vec == 0)
3672
0
  ;
3673
0
      else if (out_vec == 0)
3674
0
  {
3675
0
    out_attr->type = ATTR_TYPE_FLAG_INT_VAL;
3676
0
    out_attr->i = in_vec;
3677
0
    last_vec = ibfd;
3678
0
  }
3679
      /* For now, allow generic to transition to AltiVec or SPE
3680
   without a warning.  If GCC marked files with their stack
3681
   alignment and used don't-care markings for files which are
3682
   not affected by the vector ABI, we could warn about this
3683
   case too.  */
3684
0
      else if (in_vec == 1)
3685
0
  ;
3686
0
      else if (out_vec == 1)
3687
0
  {
3688
0
    out_attr->type = ATTR_TYPE_FLAG_INT_VAL;
3689
0
    out_attr->i = in_vec;
3690
0
    last_vec = ibfd;
3691
0
  }
3692
0
      else if (out_vec < in_vec)
3693
0
  {
3694
0
    _bfd_error_handler
3695
      /* xgettext:c-format */
3696
0
      (_("%pB uses AltiVec vector ABI, %pB uses SPE vector ABI"),
3697
0
       last_vec, ibfd);
3698
0
    out_attr->type = ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_ERROR;
3699
0
    ret = false;
3700
0
  }
3701
0
      else if (out_vec > in_vec)
3702
0
  {
3703
0
    _bfd_error_handler
3704
      /* xgettext:c-format */
3705
0
      (_("%pB uses AltiVec vector ABI, %pB uses SPE vector ABI"),
3706
0
       ibfd, last_vec);
3707
0
    out_attr->type = ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_ERROR;
3708
0
    ret = false;
3709
0
  }
3710
0
    }
3711
3712
  /* Check for conflicting Tag_GNU_Power_ABI_Struct_Return attributes
3713
     and merge non-conflicting ones.  */
3714
0
  in_attr = &in_attrs[Tag_GNU_Power_ABI_Struct_Return];
3715
0
  out_attr = &out_attrs[Tag_GNU_Power_ABI_Struct_Return];
3716
0
  if (in_attr->i != out_attr->i)
3717
0
    {
3718
0
      int in_struct = in_attr->i & 3;
3719
0
      int out_struct = out_attr->i & 3;
3720
0
      static bfd *last_struct;
3721
3722
0
      if (in_struct == 0 || in_struct == 3)
3723
0
       ;
3724
0
      else if (out_struct == 0)
3725
0
  {
3726
0
    out_attr->type = ATTR_TYPE_FLAG_INT_VAL;
3727
0
    out_attr->i = in_struct;
3728
0
    last_struct = ibfd;
3729
0
  }
3730
0
      else if (out_struct < in_struct)
3731
0
  {
3732
0
    _bfd_error_handler
3733
      /* xgettext:c-format */
3734
0
      (_("%pB uses r3/r4 for small structure returns, "
3735
0
         "%pB uses memory"), last_struct, ibfd);
3736
0
    out_attr->type = ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_ERROR;
3737
0
    ret = false;
3738
0
  }
3739
0
      else if (out_struct > in_struct)
3740
0
  {
3741
0
    _bfd_error_handler
3742
      /* xgettext:c-format */
3743
0
      (_("%pB uses r3/r4 for small structure returns, "
3744
0
         "%pB uses memory"), ibfd, last_struct);
3745
0
    out_attr->type = ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_ERROR;
3746
0
    ret = false;
3747
0
  }
3748
0
    }
3749
0
  if (!ret)
3750
0
    {
3751
0
      bfd_set_error (bfd_error_bad_value);
3752
0
      return false;
3753
0
    }
3754
3755
  /* Merge Tag_compatibility attributes and any common GNU ones.  */
3756
0
  return _bfd_elf_merge_object_attributes (ibfd, info);
3757
0
}
3758
3759
/* Merge backend specific data from an object file to the output
3760
   object file when linking.  */
3761
3762
static bool
3763
ppc_elf_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
3764
0
{
3765
0
  bfd *obfd = info->output_bfd;
3766
0
  flagword old_flags;
3767
0
  flagword new_flags;
3768
0
  bool error;
3769
3770
0
  if (!is_ppc_elf (ibfd))
3771
0
    return true;
3772
3773
  /* Check if we have the same endianness.  */
3774
0
  if (! _bfd_generic_verify_endian_match (ibfd, info))
3775
0
    return false;
3776
3777
0
  if (!ppc_elf_merge_obj_attributes (ibfd, info))
3778
0
    return false;
3779
3780
0
  if ((ibfd->flags & DYNAMIC) != 0)
3781
0
    return true;
3782
3783
0
  new_flags = elf_elfheader (ibfd)->e_flags;
3784
0
  old_flags = elf_elfheader (obfd)->e_flags;
3785
0
  if (!elf_flags_init (obfd))
3786
0
    {
3787
      /* First call, no flags set.  */
3788
0
      elf_flags_init (obfd) = true;
3789
0
      elf_elfheader (obfd)->e_flags = new_flags;
3790
0
    }
3791
3792
  /* Compatible flags are ok.  */
3793
0
  else if (new_flags == old_flags)
3794
0
    ;
3795
3796
  /* Incompatible flags.  */
3797
0
  else
3798
0
    {
3799
      /* Warn about -mrelocatable mismatch.  Allow -mrelocatable-lib
3800
   to be linked with either.  */
3801
0
      error = false;
3802
0
      if ((new_flags & EF_PPC_RELOCATABLE) != 0
3803
0
    && (old_flags & (EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB)) == 0)
3804
0
  {
3805
0
    error = true;
3806
0
    _bfd_error_handler
3807
0
      (_("%pB: compiled with -mrelocatable and linked with "
3808
0
         "modules compiled normally"), ibfd);
3809
0
  }
3810
0
      else if ((new_flags & (EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB)) == 0
3811
0
         && (old_flags & EF_PPC_RELOCATABLE) != 0)
3812
0
  {
3813
0
    error = true;
3814
0
    _bfd_error_handler
3815
0
      (_("%pB: compiled normally and linked with "
3816
0
         "modules compiled with -mrelocatable"), ibfd);
3817
0
  }
3818
3819
      /* The output is -mrelocatable-lib iff both the input files are.  */
3820
0
      if (! (new_flags & EF_PPC_RELOCATABLE_LIB))
3821
0
  elf_elfheader (obfd)->e_flags &= ~EF_PPC_RELOCATABLE_LIB;
3822
3823
      /* The output is -mrelocatable iff it can't be -mrelocatable-lib,
3824
   but each input file is either -mrelocatable or -mrelocatable-lib.  */
3825
0
      if (! (elf_elfheader (obfd)->e_flags & EF_PPC_RELOCATABLE_LIB)
3826
0
    && (new_flags & (EF_PPC_RELOCATABLE_LIB | EF_PPC_RELOCATABLE))
3827
0
    && (old_flags & (EF_PPC_RELOCATABLE_LIB | EF_PPC_RELOCATABLE)))
3828
0
  elf_elfheader (obfd)->e_flags |= EF_PPC_RELOCATABLE;
3829
3830
      /* Do not warn about eabi vs. V.4 mismatch, just or in the bit if
3831
   any module uses it.  */
3832
0
      elf_elfheader (obfd)->e_flags |= (new_flags & EF_PPC_EMB);
3833
3834
0
      new_flags &= ~(EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB | EF_PPC_EMB);
3835
0
      old_flags &= ~(EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB | EF_PPC_EMB);
3836
3837
      /* Warn about any other mismatches.  */
3838
0
      if (new_flags != old_flags)
3839
0
  {
3840
0
    error = true;
3841
0
    _bfd_error_handler
3842
      /* xgettext:c-format */
3843
0
      (_("%pB: uses different e_flags (%#x) fields "
3844
0
         "than previous modules (%#x)"),
3845
0
       ibfd, new_flags, old_flags);
3846
0
  }
3847
3848
0
      if (error)
3849
0
  {
3850
0
    bfd_set_error (bfd_error_bad_value);
3851
0
    return false;
3852
0
  }
3853
0
    }
3854
3855
0
  return true;
3856
0
}
3857
3858
static bfd_reloc_status_type
3859
ppc_elf_vle_split16 (bfd *input_bfd,
3860
         asection *input_section,
3861
         unsigned long offset,
3862
         bfd_byte *loc,
3863
         bfd_vma value,
3864
         split16_format_type split16_format,
3865
         bool fixup)
3866
0
{
3867
0
  unsigned int insn, opcode;
3868
3869
0
  if (!offset_in_range (input_section, offset, 4))
3870
0
    return bfd_reloc_outofrange;
3871
0
  insn = bfd_get_32 (input_bfd, loc);
3872
0
  opcode = insn & E_OPCODE_MASK;
3873
0
  if (opcode == E_OR2I_INSN
3874
0
      || opcode == E_AND2I_DOT_INSN
3875
0
      || opcode == E_OR2IS_INSN
3876
0
      || opcode == E_LIS_INSN
3877
0
      || opcode == E_AND2IS_DOT_INSN)
3878
0
    {
3879
0
      if (split16_format != split16a_type)
3880
0
  {
3881
0
    if (fixup)
3882
0
      split16_format = split16a_type;
3883
0
    else
3884
0
      _bfd_error_handler
3885
        /* xgettext:c-format */
3886
0
        (_("%pB(%pA+0x%lx): expected 16A style relocation on 0x%08x insn"),
3887
0
         input_bfd, input_section, offset, opcode);
3888
0
  }
3889
0
    }
3890
0
  else if (opcode == E_ADD2I_DOT_INSN
3891
0
     || opcode == E_ADD2IS_INSN
3892
0
     || opcode == E_CMP16I_INSN
3893
0
     || opcode == E_MULL2I_INSN
3894
0
     || opcode == E_CMPL16I_INSN
3895
0
     || opcode == E_CMPH16I_INSN
3896
0
     || opcode == E_CMPHL16I_INSN)
3897
0
    {
3898
0
      if (split16_format != split16d_type)
3899
0
  {
3900
0
    if (fixup)
3901
0
      split16_format = split16d_type;
3902
0
    else
3903
0
      _bfd_error_handler
3904
        /* xgettext:c-format */
3905
0
        (_("%pB(%pA+0x%lx): expected 16D style relocation on 0x%08x insn"),
3906
0
         input_bfd, input_section, offset, opcode);
3907
0
  }
3908
0
    }
3909
0
  if (split16_format == split16a_type)
3910
0
    {
3911
0
      insn &= ~((0xf800 << 5) | 0x7ff);
3912
0
      insn |= (value & 0xf800) << 5;
3913
0
      if ((insn & E_LI_MASK) == E_LI_INSN)
3914
0
  {
3915
    /* Hack for e_li.  Extend sign.  */
3916
0
    insn &= ~(0xf0000 >> 5);
3917
0
    insn |= (-(value & 0x8000) & 0xf0000) >> 5;
3918
0
  }
3919
0
    }
3920
0
  else
3921
0
    {
3922
0
      insn &= ~((0xf800 << 10) | 0x7ff);
3923
0
      insn |= (value & 0xf800) << 10;
3924
0
    }
3925
0
  insn |= value & 0x7ff;
3926
0
  bfd_put_32 (input_bfd, insn, loc);
3927
0
  return bfd_reloc_ok;
3928
0
}
3929
3930
static void
3931
ppc_elf_vle_split20 (bfd *output_bfd, bfd_byte *loc, bfd_vma value)
3932
0
{
3933
0
  unsigned int insn;
3934
3935
0
  insn = bfd_get_32 (output_bfd, loc);
3936
  /* We have an li20 field, bits 17..20, 11..15, 21..31.  */
3937
  /* Top 4 bits of value to 17..20.  */
3938
0
  insn |= (value & 0xf0000) >> 5;
3939
  /* Next 5 bits of the value to 11..15.  */
3940
0
  insn |= (value & 0xf800) << 5;
3941
  /* And the final 11 bits of the value to bits 21 to 31.  */
3942
0
  insn |= value & 0x7ff;
3943
0
  bfd_put_32 (output_bfd, insn, loc);
3944
0
}
3945
3946

3947
/* Choose which PLT scheme to use, and set .plt flags appropriately.
3948
   Returns -1 on error, 0 for old PLT, 1 for new PLT.  */
3949
int
3950
ppc_elf_select_plt_layout (bfd *output_bfd ATTRIBUTE_UNUSED,
3951
         struct bfd_link_info *info)
3952
0
{
3953
0
  struct ppc_elf_link_hash_table *htab;
3954
0
  flagword flags;
3955
3956
0
  htab = ppc_elf_hash_table (info);
3957
3958
0
  if (htab->plt_type == PLT_UNSET)
3959
0
    {
3960
0
      struct elf_link_hash_entry *h;
3961
3962
0
      if (htab->params->plt_style == PLT_OLD)
3963
0
  htab->plt_type = PLT_OLD;
3964
0
      else if (bfd_link_pic (info)
3965
0
         && htab->elf.dynamic_sections_created
3966
0
         && (h = elf_link_hash_lookup (&htab->elf, "_mcount",
3967
0
               false, false, true)) != NULL
3968
0
         && (h->type == STT_FUNC
3969
0
       || h->needs_plt)
3970
0
         && h->ref_regular
3971
0
         && !(SYMBOL_CALLS_LOCAL (info, h)
3972
0
        || UNDEFWEAK_NO_DYNAMIC_RELOC (info, h)))
3973
0
  {
3974
    /* Profiling of shared libs (and pies) is not supported with
3975
       secure plt, because ppc32 does profiling before a
3976
       function prologue and a secure plt pic call stubs needs
3977
       r30 to be set up.  */
3978
0
    htab->plt_type = PLT_OLD;
3979
0
  }
3980
0
      else
3981
0
  {
3982
0
    bfd *ibfd;
3983
0
    enum ppc_elf_plt_type plt_type = htab->params->plt_style;
3984
3985
    /* Look through the reloc flags left by ppc_elf_check_relocs.
3986
       Use the old style bss plt if a file makes plt calls
3987
       without using the new relocs, and if ld isn't given
3988
       --secure-plt and we never see REL16 relocs.  */
3989
0
    if (plt_type == PLT_UNSET)
3990
0
      plt_type = PLT_OLD;
3991
0
    for (ibfd = info->input_bfds; ibfd; ibfd = ibfd->link.next)
3992
0
      if (is_ppc_elf (ibfd))
3993
0
        {
3994
0
    if (ppc_elf_tdata (ibfd)->has_rel16)
3995
0
      plt_type = PLT_NEW;
3996
0
    else if (ppc_elf_tdata (ibfd)->makes_plt_call)
3997
0
      {
3998
0
        plt_type = PLT_OLD;
3999
0
        htab->old_bfd = ibfd;
4000
0
        break;
4001
0
      }
4002
0
        }
4003
0
    htab->plt_type = plt_type;
4004
0
  }
4005
0
    }
4006
0
  if (htab->plt_type == PLT_OLD)
4007
0
    {
4008
0
      if (!info->user_warn_rwx_segments)
4009
0
  info->no_warn_rwx_segments = 1;
4010
0
      if (htab->params->plt_style == PLT_NEW
4011
0
    || (htab->params->plt_style != PLT_OLD
4012
0
        && !info->no_warn_rwx_segments))
4013
0
  {
4014
0
    if (htab->old_bfd != NULL)
4015
0
      _bfd_error_handler (_("bss-plt forced due to %pB"), htab->old_bfd);
4016
0
    else
4017
0
      _bfd_error_handler (_("bss-plt forced by profiling"));
4018
0
  }
4019
0
    }
4020
4021
0
  BFD_ASSERT (htab->plt_type != PLT_VXWORKS);
4022
4023
0
  if (htab->plt_type == PLT_NEW)
4024
0
    {
4025
0
      flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
4026
0
         | SEC_IN_MEMORY | SEC_LINKER_CREATED);
4027
4028
      /* The new PLT is a loaded section.  */
4029
0
      if (htab->elf.splt != NULL
4030
0
    && !bfd_set_section_flags (htab->elf.splt, flags))
4031
0
  return -1;
4032
4033
      /* The new GOT is not executable.  */
4034
0
      if (htab->elf.sgot != NULL
4035
0
    && !bfd_set_section_flags (htab->elf.sgot, flags))
4036
0
  return -1;
4037
0
    }
4038
0
  else
4039
0
    {
4040
      /* Stop an unused .glink section from affecting .text alignment.  */
4041
0
      if (htab->glink != NULL
4042
0
    && !bfd_set_section_alignment (htab->glink, 0))
4043
0
  return -1;
4044
0
    }
4045
0
  return htab->plt_type == PLT_NEW;
4046
0
}
4047

4048
/* Return the section that should be marked against GC for a given
4049
   relocation.  */
4050
4051
static asection *
4052
ppc_elf_gc_mark_hook (asection *sec,
4053
          struct bfd_link_info *info,
4054
          struct elf_reloc_cookie *cookie,
4055
          struct elf_link_hash_entry *h,
4056
          unsigned int symndx)
4057
0
{
4058
0
  if (h != NULL)
4059
0
    switch (ELF32_R_TYPE (cookie->rel->r_info))
4060
0
      {
4061
0
      case R_PPC_GNU_VTINHERIT:
4062
0
      case R_PPC_GNU_VTENTRY:
4063
0
  return NULL;
4064
0
      }
4065
4066
0
  return _bfd_elf_gc_mark_hook (sec, info, cookie, h, symndx);
4067
0
}
4068
4069
static bool
4070
get_sym_h (struct elf_link_hash_entry **hp,
4071
     Elf_Internal_Sym **symp,
4072
     asection **symsecp,
4073
     unsigned char **tls_maskp,
4074
     Elf_Internal_Sym **locsymsp,
4075
     unsigned long r_symndx,
4076
     bfd *ibfd)
4077
0
{
4078
0
  Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (ibfd);
4079
4080
0
  if (r_symndx >= symtab_hdr->sh_info)
4081
0
    {
4082
0
      struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (ibfd);
4083
0
      struct elf_link_hash_entry *h;
4084
4085
0
      h = sym_hashes[r_symndx - symtab_hdr->sh_info];
4086
0
      while (h->root.type == bfd_link_hash_indirect
4087
0
       || h->root.type == bfd_link_hash_warning)
4088
0
  h = (struct elf_link_hash_entry *) h->root.u.i.link;
4089
4090
0
      if (hp != NULL)
4091
0
  *hp = h;
4092
4093
0
      if (symp != NULL)
4094
0
  *symp = NULL;
4095
4096
0
      if (symsecp != NULL)
4097
0
  {
4098
0
    asection *symsec = NULL;
4099
0
    if (h->root.type == bfd_link_hash_defined
4100
0
        || h->root.type == bfd_link_hash_defweak)
4101
0
      symsec = h->root.u.def.section;
4102
0
    *symsecp = symsec;
4103
0
  }
4104
4105
0
      if (tls_maskp != NULL)
4106
0
  *tls_maskp = &ppc_elf_hash_entry (h)->tls_mask;
4107
0
    }
4108
0
  else
4109
0
    {
4110
0
      Elf_Internal_Sym *sym;
4111
0
      Elf_Internal_Sym *locsyms = *locsymsp;
4112
4113
0
      if (locsyms == NULL)
4114
0
  {
4115
0
    locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
4116
0
    if (locsyms == NULL)
4117
0
      locsyms = bfd_elf_get_elf_syms (ibfd, symtab_hdr,
4118
0
              symtab_hdr->sh_info,
4119
0
              0, NULL, NULL, NULL);
4120
0
    if (locsyms == NULL)
4121
0
      return false;
4122
0
    *locsymsp = locsyms;
4123
0
  }
4124
0
      sym = locsyms + r_symndx;
4125
4126
0
      if (hp != NULL)
4127
0
  *hp = NULL;
4128
4129
0
      if (symp != NULL)
4130
0
  *symp = sym;
4131
4132
0
      if (symsecp != NULL)
4133
0
  *symsecp = bfd_section_from_elf_index (ibfd, sym->st_shndx);
4134
4135
0
      if (tls_maskp != NULL)
4136
0
  {
4137
0
    bfd_signed_vma *local_got;
4138
0
    unsigned char *tls_mask;
4139
4140
0
    tls_mask = NULL;
4141
0
    local_got = elf_local_got_refcounts (ibfd);
4142
0
    if (local_got != NULL)
4143
0
      {
4144
0
        struct plt_entry **local_plt = (struct plt_entry **)
4145
0
    (local_got + symtab_hdr->sh_info);
4146
0
        unsigned char *lgot_masks = (unsigned char *)
4147
0
    (local_plt + symtab_hdr->sh_info);
4148
0
        tls_mask = &lgot_masks[r_symndx];
4149
0
      }
4150
0
    *tls_maskp = tls_mask;
4151
0
  }
4152
0
    }
4153
0
  return true;
4154
0
}
4155

4156
/* Analyze inline PLT call relocations to see whether calls to locally
4157
   defined functions can be converted to direct calls.  */
4158
4159
bool
4160
ppc_elf_inline_plt (struct bfd_link_info *info)
4161
0
{
4162
0
  struct ppc_elf_link_hash_table *htab;
4163
0
  bfd *ibfd;
4164
0
  asection *sec;
4165
0
  bfd_vma low_vma, high_vma, limit;
4166
4167
0
  htab = ppc_elf_hash_table (info);
4168
0
  if (htab == NULL)
4169
0
    return false;
4170
4171
  /* A bl insn can reach -0x2000000 to 0x1fffffc.  The limit is
4172
     reduced somewhat to cater for possible stubs that might be added
4173
     between the call and its destination.  */
4174
0
  limit = 0x1e00000;
4175
0
  low_vma = -1;
4176
0
  high_vma = 0;
4177
0
  for (sec = info->output_bfd->sections; sec != NULL; sec = sec->next)
4178
0
    if ((sec->flags & (SEC_ALLOC | SEC_CODE)) == (SEC_ALLOC | SEC_CODE))
4179
0
      {
4180
0
  if (low_vma > sec->vma)
4181
0
    low_vma = sec->vma;
4182
0
  if (high_vma < sec->vma + sec->size)
4183
0
    high_vma = sec->vma + sec->size;
4184
0
      }
4185
4186
  /* If a "bl" can reach anywhere in local code sections, then we can
4187
     convert all inline PLT sequences to direct calls when the symbol
4188
     is local.  */
4189
0
  if (high_vma - low_vma < limit)
4190
0
    {
4191
0
      htab->can_convert_all_inline_plt = 1;
4192
0
      return true;
4193
0
    }
4194
4195
  /* Otherwise, go looking through relocs for cases where a direct
4196
     call won't reach.  Mark the symbol on any such reloc to disable
4197
     the optimization and keep the PLT entry as it seems likely that
4198
     this will be better than creating trampolines.  Note that this
4199
     will disable the optimization for all inline PLT calls to a
4200
     particular symbol, not just those that won't reach.  The
4201
     difficulty in doing a more precise optimization is that the
4202
     linker needs to make a decision depending on whether a
4203
     particular R_PPC_PLTCALL insn can be turned into a direct
4204
     call, for each of the R_PPC_PLTSEQ and R_PPC_PLT16* insns in
4205
     the sequence, and there is nothing that ties those relocs
4206
     together except their symbol.  */
4207
4208
0
  for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
4209
0
    {
4210
0
      Elf_Internal_Shdr *symtab_hdr;
4211
0
      Elf_Internal_Sym *local_syms;
4212
4213
0
      if (!is_ppc_elf (ibfd))
4214
0
  continue;
4215
4216
0
      local_syms = NULL;
4217
0
      symtab_hdr = &elf_symtab_hdr (ibfd);
4218
4219
0
      for (sec = ibfd->sections; sec != NULL; sec = sec->next)
4220
0
  if (sec->has_pltcall
4221
0
      && !bfd_is_abs_section (sec->output_section))
4222
0
    {
4223
0
      Elf_Internal_Rela *relstart, *rel, *relend;
4224
4225
      /* Read the relocations.  */
4226
0
      relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
4227
0
              info->keep_memory);
4228
0
      if (relstart == NULL)
4229
0
        return false;
4230
4231
0
      relend = relstart + sec->reloc_count;
4232
0
      for (rel = relstart; rel < relend; rel++)
4233
0
        {
4234
0
    enum elf_ppc_reloc_type r_type;
4235
0
    unsigned long r_symndx;
4236
0
    asection *sym_sec;
4237
0
    struct elf_link_hash_entry *h;
4238
0
    Elf_Internal_Sym *sym;
4239
0
    unsigned char *tls_maskp;
4240
4241
0
    r_type = ELF32_R_TYPE (rel->r_info);
4242
0
    if (r_type != R_PPC_PLTCALL)
4243
0
      continue;
4244
4245
0
    r_symndx = ELF32_R_SYM (rel->r_info);
4246
0
    if (!get_sym_h (&h, &sym, &sym_sec, &tls_maskp, &local_syms,
4247
0
        r_symndx, ibfd))
4248
0
      {
4249
0
        if (elf_section_data (sec)->relocs != relstart)
4250
0
          free (relstart);
4251
0
        if (symtab_hdr->contents != (unsigned char *) local_syms)
4252
0
          free (local_syms);
4253
0
        return false;
4254
0
      }
4255
4256
0
    if (sym_sec != NULL && sym_sec->output_section != NULL)
4257
0
      {
4258
0
        bfd_vma from, to;
4259
0
        if (h != NULL)
4260
0
          to = h->root.u.def.value;
4261
0
        else
4262
0
          to = sym->st_value;
4263
0
        to += (rel->r_addend
4264
0
         + sym_sec->output_offset
4265
0
         + sym_sec->output_section->vma);
4266
0
        from = (rel->r_offset
4267
0
          + sec->output_offset
4268
0
          + sec->output_section->vma);
4269
0
        if (to - from + limit < 2 * limit)
4270
0
          *tls_maskp &= ~PLT_KEEP;
4271
0
      }
4272
0
        }
4273
0
      if (elf_section_data (sec)->relocs != relstart)
4274
0
        free (relstart);
4275
0
    }
4276
4277
0
      if (local_syms != NULL
4278
0
    && symtab_hdr->contents != (unsigned char *) local_syms)
4279
0
  {
4280
0
    if (!info->keep_memory)
4281
0
      free (local_syms);
4282
0
    else
4283
0
      symtab_hdr->contents = (unsigned char *) local_syms;
4284
0
  }
4285
0
    }
4286
4287
0
  return true;
4288
0
}
4289
4290
/* Set plt output section type, htab->tls_get_addr, and call the
4291
   generic ELF tls_setup function.  */
4292
4293
asection *
4294
ppc_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
4295
0
{
4296
0
  struct ppc_elf_link_hash_table *htab;
4297
4298
0
  htab = ppc_elf_hash_table (info);
4299
0
  htab->tls_get_addr = elf_link_hash_lookup (&htab->elf, "__tls_get_addr",
4300
0
               false, false, true);
4301
0
  if (htab->plt_type != PLT_NEW)
4302
0
    htab->params->no_tls_get_addr_opt = true;
4303
4304
0
  if (!htab->params->no_tls_get_addr_opt)
4305
0
    {
4306
0
      struct elf_link_hash_entry *opt, *tga;
4307
0
      opt = elf_link_hash_lookup (&htab->elf, "__tls_get_addr_opt",
4308
0
          false, false, true);
4309
0
      if (opt != NULL
4310
0
    && (opt->root.type == bfd_link_hash_defined
4311
0
        || opt->root.type == bfd_link_hash_defweak))
4312
0
  {
4313
    /* If glibc supports an optimized __tls_get_addr call stub,
4314
       signalled by the presence of __tls_get_addr_opt, and we'll
4315
       be calling __tls_get_addr via a plt call stub, then
4316
       make __tls_get_addr point to __tls_get_addr_opt.  */
4317
0
    tga = htab->tls_get_addr;
4318
0
    if (htab->elf.dynamic_sections_created
4319
0
        && tga != NULL
4320
0
        && (tga->type == STT_FUNC
4321
0
      || tga->needs_plt)
4322
0
        && !(SYMBOL_CALLS_LOCAL (info, tga)
4323
0
       || UNDEFWEAK_NO_DYNAMIC_RELOC (info, tga)))
4324
0
      {
4325
0
        struct plt_entry *ent;
4326
0
        for (ent = tga->plt.plist; ent != NULL; ent = ent->next)
4327
0
    if (ent->plt.refcount > 0)
4328
0
      break;
4329
0
        if (ent != NULL)
4330
0
    {
4331
0
      tga->root.type = bfd_link_hash_indirect;
4332
0
      tga->root.u.i.link = &opt->root;
4333
0
      ppc_elf_copy_indirect_symbol (info, opt, tga);
4334
0
      opt->mark = 1;
4335
0
      if (opt->dynindx != -1)
4336
0
        {
4337
          /* Use __tls_get_addr_opt in dynamic relocations.  */
4338
0
          opt->dynindx = -1;
4339
0
          _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
4340
0
                opt->dynstr_index);
4341
0
          if (!bfd_elf_link_record_dynamic_symbol (info, opt))
4342
0
      return NULL;
4343
0
        }
4344
0
      htab->tls_get_addr = opt;
4345
0
    }
4346
0
      }
4347
0
  }
4348
0
      else
4349
0
  htab->params->no_tls_get_addr_opt = true;
4350
0
    }
4351
0
  if (htab->plt_type == PLT_NEW
4352
0
      && htab->elf.splt != NULL
4353
0
      && htab->elf.splt->output_section != NULL)
4354
0
    {
4355
0
      elf_section_type (htab->elf.splt->output_section) = SHT_PROGBITS;
4356
0
      elf_section_flags (htab->elf.splt->output_section) = SHF_ALLOC + SHF_WRITE;
4357
0
    }
4358
4359
0
  return bfd_elf_tls_setup (obfd, info);
4360
0
}
4361
4362
/* Return TRUE iff REL is a branch reloc with a global symbol matching
4363
   HASH.  */
4364
4365
static bool
4366
branch_reloc_hash_match (const bfd *ibfd,
4367
       const Elf_Internal_Rela *rel,
4368
       const struct elf_link_hash_entry *hash)
4369
0
{
4370
0
  Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (ibfd);
4371
0
  enum elf_ppc_reloc_type r_type = ELF32_R_TYPE (rel->r_info);
4372
0
  unsigned int r_symndx = ELF32_R_SYM (rel->r_info);
4373
4374
0
  if (r_symndx >= symtab_hdr->sh_info && is_branch_reloc (r_type))
4375
0
    {
4376
0
      struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (ibfd);
4377
0
      struct elf_link_hash_entry *h;
4378
4379
0
      h = sym_hashes[r_symndx - symtab_hdr->sh_info];
4380
0
      while (h->root.type == bfd_link_hash_indirect
4381
0
       || h->root.type == bfd_link_hash_warning)
4382
0
  h = (struct elf_link_hash_entry *) h->root.u.i.link;
4383
0
      if (h == hash)
4384
0
  return true;
4385
0
    }
4386
0
  return false;
4387
0
}
4388
4389
/* Run through all the TLS relocs looking for optimization
4390
   opportunities.  */
4391
4392
bool
4393
ppc_elf_tls_optimize (bfd *obfd ATTRIBUTE_UNUSED,
4394
          struct bfd_link_info *info)
4395
0
{
4396
0
  bfd *ibfd;
4397
0
  asection *sec;
4398
0
  struct ppc_elf_link_hash_table *htab;
4399
0
  int pass;
4400
4401
0
  if (!bfd_link_executable (info))
4402
0
    return true;
4403
4404
0
  htab = ppc_elf_hash_table (info);
4405
0
  if (htab == NULL)
4406
0
    return false;
4407
4408
0
  htab->do_tls_opt = 1;
4409
4410
  /* Make two passes through the relocs.  First time check that tls
4411
     relocs involved in setting up a tls_get_addr call are indeed
4412
     followed by such a call.  If they are not, don't do any tls
4413
     optimization.  On the second pass twiddle tls_mask flags to
4414
     notify relocate_section that optimization can be done, and
4415
     adjust got and plt refcounts.  */
4416
0
  for (pass = 0; pass < 2; ++pass)
4417
0
    for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
4418
0
      {
4419
0
  Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (ibfd);
4420
0
  asection *got2 = bfd_get_section_by_name (ibfd, ".got2");
4421
4422
0
  for (sec = ibfd->sections; sec != NULL; sec = sec->next)
4423
0
    if (sec->has_tls_reloc && !bfd_is_abs_section (sec->output_section))
4424
0
      {
4425
0
        Elf_Internal_Rela *relstart, *rel, *relend;
4426
0
        int expecting_tls_get_addr = 0;
4427
4428
        /* Read the relocations.  */
4429
0
        relstart = _bfd_elf_link_read_relocs (ibfd, sec, NULL, NULL,
4430
0
                info->keep_memory);
4431
0
        if (relstart == NULL)
4432
0
    return false;
4433
4434
0
        relend = relstart + sec->reloc_count;
4435
0
        for (rel = relstart; rel < relend; rel++)
4436
0
    {
4437
0
      enum elf_ppc_reloc_type r_type;
4438
0
      unsigned long r_symndx;
4439
0
      struct elf_link_hash_entry *h = NULL;
4440
0
      unsigned char *tls_mask;
4441
0
      unsigned char tls_set, tls_clear;
4442
0
      bool is_local;
4443
0
      bfd_signed_vma *got_count;
4444
4445
0
      r_symndx = ELF32_R_SYM (rel->r_info);
4446
0
      if (r_symndx >= symtab_hdr->sh_info)
4447
0
        {
4448
0
          struct elf_link_hash_entry **sym_hashes;
4449
4450
0
          sym_hashes = elf_sym_hashes (ibfd);
4451
0
          h = sym_hashes[r_symndx - symtab_hdr->sh_info];
4452
0
          while (h->root.type == bfd_link_hash_indirect
4453
0
           || h->root.type == bfd_link_hash_warning)
4454
0
      h = (struct elf_link_hash_entry *) h->root.u.i.link;
4455
0
        }
4456
4457
0
      is_local = SYMBOL_REFERENCES_LOCAL (info, h);
4458
0
      r_type = ELF32_R_TYPE (rel->r_info);
4459
      /* If this section has old-style __tls_get_addr calls
4460
         without marker relocs, then check that each
4461
         __tls_get_addr call reloc is preceded by a reloc
4462
         that conceivably belongs to the __tls_get_addr arg
4463
         setup insn.  If we don't find matching arg setup
4464
         relocs, don't do any tls optimization.  */
4465
0
      if (pass == 0
4466
0
          && sec->nomark_tls_get_addr
4467
0
          && h != NULL
4468
0
          && h == htab->tls_get_addr
4469
0
          && !expecting_tls_get_addr
4470
0
          && is_branch_reloc (r_type))
4471
0
        {
4472
0
          info->callbacks->minfo ("%H __tls_get_addr lost arg, "
4473
0
                "TLS optimization disabled\n",
4474
0
                ibfd, sec, rel->r_offset);
4475
0
          if (elf_section_data (sec)->relocs != relstart)
4476
0
      free (relstart);
4477
0
          return true;
4478
0
        }
4479
4480
0
      expecting_tls_get_addr = 0;
4481
0
      switch (r_type)
4482
0
        {
4483
0
        case R_PPC_GOT_TLSLD16:
4484
0
        case R_PPC_GOT_TLSLD16_LO:
4485
0
          expecting_tls_get_addr = 1;
4486
          /* Fall through.  */
4487
4488
0
        case R_PPC_GOT_TLSLD16_HI:
4489
0
        case R_PPC_GOT_TLSLD16_HA:
4490
          /* These relocs should never be against a symbol
4491
       defined in a shared lib.  Leave them alone if
4492
       that turns out to be the case.  */
4493
0
          if (!is_local)
4494
0
      continue;
4495
4496
          /* LD -> LE */
4497
0
          tls_set = 0;
4498
0
          tls_clear = TLS_LD;
4499
0
          break;
4500
4501
0
        case R_PPC_GOT_TLSGD16:
4502
0
        case R_PPC_GOT_TLSGD16_LO:
4503
0
          expecting_tls_get_addr = 1;
4504
          /* Fall through.  */
4505
4506
0
        case R_PPC_GOT_TLSGD16_HI:
4507
0
        case R_PPC_GOT_TLSGD16_HA:
4508
0
          if (is_local)
4509
      /* GD -> LE */
4510
0
      tls_set = 0;
4511
0
          else
4512
      /* GD -> IE */
4513
0
      tls_set = TLS_TLS | TLS_GDIE;
4514
0
          tls_clear = TLS_GD;
4515
0
          break;
4516
4517
0
        case R_PPC_GOT_TPREL16:
4518
0
        case R_PPC_GOT_TPREL16_LO:
4519
0
        case R_PPC_GOT_TPREL16_HI:
4520
0
        case R_PPC_GOT_TPREL16_HA:
4521
0
          if (is_local)
4522
0
      {
4523
        /* IE -> LE */
4524
0
        tls_set = 0;
4525
0
        tls_clear = TLS_TPREL;
4526
0
        break;
4527
0
      }
4528
0
          else
4529
0
      continue;
4530
4531
0
        case R_PPC_TLSLD:
4532
0
          if (!is_local)
4533
0
      continue;
4534
          /* Fall through.  */
4535
0
        case R_PPC_TLSGD:
4536
0
          if (rel + 1 < relend
4537
0
        && is_plt_seq_reloc (ELF32_R_TYPE (rel[1].r_info)))
4538
0
      {
4539
0
        if (pass != 0
4540
0
            && ELF32_R_TYPE (rel[1].r_info) != R_PPC_PLTSEQ)
4541
0
          {
4542
0
            r_type = ELF32_R_TYPE (rel[1].r_info);
4543
0
            r_symndx = ELF32_R_SYM (rel[1].r_info);
4544
0
            if (r_symndx >= symtab_hdr->sh_info)
4545
0
        {
4546
0
          struct elf_link_hash_entry **sym_hashes;
4547
4548
0
          sym_hashes = elf_sym_hashes (ibfd);
4549
0
          h = sym_hashes[r_symndx - symtab_hdr->sh_info];
4550
0
          while (h->root.type == bfd_link_hash_indirect
4551
0
           || h->root.type == bfd_link_hash_warning)
4552
0
            h = (struct elf_link_hash_entry *) h->root.u.i.link;
4553
0
          if (h != NULL)
4554
0
            {
4555
0
              struct plt_entry *ent = NULL;
4556
0
              bfd_vma addend = 0;
4557
4558
0
              if (bfd_link_pic (info))
4559
0
          addend = rel->r_addend;
4560
0
              ent = find_plt_ent (&h->plt.plist,
4561
0
                got2, addend);
4562
0
              if (ent != NULL
4563
0
            && ent->plt.refcount > 0)
4564
0
          ent->plt.refcount -= 1;
4565
0
            }
4566
0
        }
4567
0
          }
4568
0
        continue;
4569
0
      }
4570
0
          expecting_tls_get_addr = 2;
4571
0
          tls_set = 0;
4572
0
          tls_clear = 0;
4573
0
          break;
4574
4575
0
        case R_PPC_TPREL16_HA:
4576
0
          if (pass == 0)
4577
0
      {
4578
0
        unsigned char buf[4];
4579
0
        unsigned int insn;
4580
0
        bfd_vma off = rel->r_offset & ~3;
4581
0
        if (!bfd_get_section_contents (ibfd, sec, buf,
4582
0
               off, 4))
4583
0
          {
4584
0
            if (elf_section_data (sec)->relocs != relstart)
4585
0
        free (relstart);
4586
0
            return false;
4587
0
          }
4588
0
        insn = bfd_get_32 (ibfd, buf);
4589
        /* addis rt,2,imm */
4590
0
        if ((insn & ((0x3fu << 26) | 0x1f << 16))
4591
0
            != ((15u << 26) | (2 << 16)))
4592
0
          {
4593
            /* xgettext:c-format */
4594
0
            info->callbacks->minfo
4595
0
        (_("%H: warning: %s unexpected insn %#x.\n"),
4596
0
         ibfd, sec, off, "R_PPC_TPREL16_HA", insn);
4597
0
            htab->do_tls_opt = 0;
4598
0
          }
4599
0
      }
4600
0
          continue;
4601
4602
0
        case R_PPC_TPREL16_HI:
4603
0
          htab->do_tls_opt = 0;
4604
0
          continue;
4605
4606
0
        default:
4607
0
          continue;
4608
0
        }
4609
4610
0
      if (pass == 0)
4611
0
        {
4612
0
          if (!expecting_tls_get_addr
4613
0
        || !sec->nomark_tls_get_addr)
4614
0
      continue;
4615
4616
0
          if (rel + 1 < relend
4617
0
        && branch_reloc_hash_match (ibfd, rel + 1,
4618
0
                  htab->tls_get_addr))
4619
0
      continue;
4620
4621
          /* Uh oh, we didn't find the expected call.  We
4622
       could just mark this symbol to exclude it
4623
       from tls optimization but it's safer to skip
4624
       the entire optimization.  */
4625
0
          info->callbacks->minfo (_("%H arg lost __tls_get_addr, "
4626
0
            "TLS optimization disabled\n"),
4627
0
                ibfd, sec, rel->r_offset);
4628
0
          if (elf_section_data (sec)->relocs != relstart)
4629
0
      free (relstart);
4630
0
          return true;
4631
0
        }
4632
4633
0
      if (h != NULL)
4634
0
        {
4635
0
          tls_mask = &ppc_elf_hash_entry (h)->tls_mask;
4636
0
          got_count = &h->got.refcount;
4637
0
        }
4638
0
      else
4639
0
        {
4640
0
          bfd_signed_vma *lgot_refs;
4641
0
          struct plt_entry **local_plt;
4642
0
          unsigned char *lgot_masks;
4643
4644
0
          lgot_refs = elf_local_got_refcounts (ibfd);
4645
0
          if (lgot_refs == NULL)
4646
0
      abort ();
4647
0
          local_plt = (struct plt_entry **)
4648
0
      (lgot_refs + symtab_hdr->sh_info);
4649
0
          lgot_masks = (unsigned char *)
4650
0
      (local_plt + symtab_hdr->sh_info);
4651
0
          tls_mask = &lgot_masks[r_symndx];
4652
0
          got_count = &lgot_refs[r_symndx];
4653
0
        }
4654
4655
      /* If we don't have old-style __tls_get_addr calls
4656
         without TLSGD/TLSLD marker relocs, and we haven't
4657
         found a new-style __tls_get_addr call with a
4658
         marker for this symbol, then we either have a
4659
         broken object file or an -mlongcall style
4660
         indirect call to __tls_get_addr without a marker.
4661
         Disable optimization in this case.  */
4662
0
      if ((tls_clear & (TLS_GD | TLS_LD)) != 0
4663
0
          && !sec->nomark_tls_get_addr
4664
0
          && ((*tls_mask & (TLS_TLS | TLS_MARK))
4665
0
        != (TLS_TLS | TLS_MARK)))
4666
0
        continue;
4667
4668
0
      if (expecting_tls_get_addr == 1 + !sec->nomark_tls_get_addr)
4669
0
        {
4670
0
          struct plt_entry *ent;
4671
0
          bfd_vma addend = 0;
4672
4673
0
          if (bfd_link_pic (info)
4674
0
        && (ELF32_R_TYPE (rel[1].r_info) == R_PPC_PLTREL24
4675
0
            || ELF32_R_TYPE (rel[1].r_info) == R_PPC_PLTCALL))
4676
0
      addend = rel[1].r_addend;
4677
0
          ent = find_plt_ent (&htab->tls_get_addr->plt.plist,
4678
0
            got2, addend);
4679
0
          if (ent != NULL && ent->plt.refcount > 0)
4680
0
      ent->plt.refcount -= 1;
4681
0
        }
4682
0
      if (tls_clear == 0)
4683
0
        continue;
4684
4685
0
      if (tls_set == 0)
4686
0
        {
4687
          /* We managed to get rid of a got entry.  */
4688
0
          if (*got_count > 0)
4689
0
      *got_count -= 1;
4690
0
        }
4691
4692
0
      *tls_mask |= tls_set;
4693
0
      *tls_mask &= ~tls_clear;
4694
0
    }
4695
4696
0
        if (elf_section_data (sec)->relocs != relstart)
4697
0
    free (relstart);
4698
0
      }
4699
0
      }
4700
0
  return true;
4701
0
}
4702

4703
/* Return true if we have dynamic relocs against H or any of its weak
4704
   aliases, that apply to read-only sections.  Cannot be used after
4705
   size_dynamic_sections.  */
4706
4707
static bool
4708
alias_readonly_dynrelocs (struct elf_link_hash_entry *h)
4709
0
{
4710
0
  struct ppc_elf_link_hash_entry *eh = ppc_elf_hash_entry (h);
4711
0
  do
4712
0
    {
4713
0
      if (_bfd_elf_readonly_dynrelocs (&eh->elf))
4714
0
  return true;
4715
0
      eh = ppc_elf_hash_entry (eh->elf.u.alias);
4716
0
    } while (eh != NULL && &eh->elf != h);
4717
4718
0
  return false;
4719
0
}
4720
4721
/* Return whether H has pc-relative dynamic relocs.  */
4722
4723
static bool
4724
pc_dynrelocs (struct elf_link_hash_entry *h)
4725
0
{
4726
0
  struct elf_dyn_relocs *p;
4727
4728
0
  for (p = h->dyn_relocs; p != NULL; p = p->next)
4729
0
    if (p->pc_count != 0)
4730
0
      return true;
4731
0
  return false;
4732
0
}
4733
4734
/* Adjust a symbol defined by a dynamic object and referenced by a
4735
   regular object.  The current definition is in some section of the
4736
   dynamic object, but we're not including those sections.  We have to
4737
   change the definition to something the rest of the link can
4738
   understand.  */
4739
4740
static bool
4741
ppc_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
4742
             struct elf_link_hash_entry *h)
4743
0
{
4744
0
  struct ppc_elf_link_hash_table *htab;
4745
0
  asection *s;
4746
4747
#ifdef DEBUG
4748
  fprintf (stderr, "ppc_elf_adjust_dynamic_symbol called for %s\n",
4749
     h->root.root.string);
4750
#endif
4751
4752
  /* Make sure we know what is going on here.  */
4753
0
  htab = ppc_elf_hash_table (info);
4754
0
  BFD_ASSERT (htab->elf.dynobj != NULL
4755
0
        && (h->needs_plt
4756
0
      || h->type == STT_GNU_IFUNC
4757
0
      || h->is_weakalias
4758
0
      || (h->def_dynamic
4759
0
          && h->ref_regular
4760
0
          && !h->def_regular)));
4761
4762
  /* Deal with function syms.  */
4763
0
  if (h->type == STT_FUNC
4764
0
      || h->type == STT_GNU_IFUNC
4765
0
      || h->needs_plt)
4766
0
    {
4767
0
      bool local = (SYMBOL_CALLS_LOCAL (info, h)
4768
0
         || UNDEFWEAK_NO_DYNAMIC_RELOC (info, h));
4769
      /* Discard dyn_relocs when non-pic if we've decided that a
4770
   function symbol is local.  */
4771
0
      if (!bfd_link_pic (info) && local)
4772
0
  h->dyn_relocs = NULL;
4773
4774
      /* Clear procedure linkage table information for any symbol that
4775
   won't need a .plt entry.  */
4776
0
      struct plt_entry *ent;
4777
0
      for (ent = h->plt.plist; ent != NULL; ent = ent->next)
4778
0
  if (ent->plt.refcount > 0)
4779
0
    break;
4780
0
      if (ent == NULL
4781
0
    || (h->type != STT_GNU_IFUNC
4782
0
        && local
4783
0
        && (htab->can_convert_all_inline_plt
4784
0
      || (ppc_elf_hash_entry (h)->tls_mask
4785
0
          & (TLS_TLS | PLT_KEEP)) != PLT_KEEP)))
4786
0
  {
4787
    /* A PLT entry is not required/allowed when:
4788
4789
       1. We are not using ld.so; because then the PLT entry
4790
       can't be set up, so we can't use one.  In this case,
4791
       ppc_elf_adjust_dynamic_symbol won't even be called.
4792
4793
       2. GC has rendered the entry unused.
4794
4795
       3. We know for certain that a call to this symbol
4796
       will go to this object, or will remain undefined.  */
4797
0
    h->plt.plist = NULL;
4798
0
    h->needs_plt = 0;
4799
0
    h->pointer_equality_needed = 0;
4800
0
  }
4801
0
      else
4802
0
  {
4803
    /* Taking a function's address in a read/write section
4804
       doesn't require us to define the function symbol in the
4805
       executable on a plt call stub.  A dynamic reloc can
4806
       be used instead, giving better runtime performance.
4807
       (Calls via that function pointer don't need to bounce
4808
       through the plt call stub.)  Similarly, use a dynamic
4809
       reloc for a weak reference when possible, allowing the
4810
       resolution of the symbol to be set at load time rather
4811
       than link time.  */
4812
0
    if ((h->pointer_equality_needed
4813
0
         || (h->non_got_ref
4814
0
       && !h->ref_regular_nonweak
4815
0
       && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h)))
4816
0
        && htab->elf.target_os != is_vxworks
4817
0
        && !ppc_elf_hash_entry (h)->has_sda_refs
4818
0
        && !_bfd_elf_readonly_dynrelocs (h))
4819
0
      {
4820
0
        h->pointer_equality_needed = 0;
4821
        /* If we haven't seen a branch reloc and the symbol
4822
     isn't an ifunc then we don't need a plt entry.  */
4823
0
        if (!h->needs_plt && h->type != STT_GNU_IFUNC)
4824
0
    h->plt.plist = NULL;
4825
0
      }
4826
0
    else if (!bfd_link_pic (info))
4827
      /* We are going to be defining the function symbol on the
4828
         plt stub, so no dyn_relocs needed when non-pic.  */
4829
0
      h->dyn_relocs = NULL;
4830
0
  }
4831
0
      h->protected_def = 0;
4832
      /* Function symbols can't have copy relocs.  */
4833
0
      return true;
4834
0
    }
4835
0
  else
4836
0
    h->plt.plist = NULL;
4837
4838
  /* If this is a weak symbol, and there is a real definition, the
4839
     processor independent code will have arranged for us to see the
4840
     real definition first, and we can just use the same value.  */
4841
0
  if (h->is_weakalias)
4842
0
    {
4843
0
      struct elf_link_hash_entry *def = weakdef (h);
4844
0
      BFD_ASSERT (def->root.type == bfd_link_hash_defined);
4845
0
      h->root.u.def.section = def->root.u.def.section;
4846
0
      h->root.u.def.value = def->root.u.def.value;
4847
0
      if (def->root.u.def.section == htab->elf.sdynbss
4848
0
    || def->root.u.def.section == htab->elf.sdynrelro
4849
0
    || def->root.u.def.section == htab->dynsbss)
4850
0
  h->dyn_relocs = NULL;
4851
0
      return true;
4852
0
    }
4853
4854
  /* This is a reference to a symbol defined by a dynamic object which
4855
     is not a function.  */
4856
4857
  /* If we are creating a shared library, we must presume that the
4858
     only references to the symbol are via the global offset table.
4859
     For such cases we need not do anything here; the relocations will
4860
     be handled correctly by relocate_section.  */
4861
0
  if (bfd_link_pic (info))
4862
0
    {
4863
0
      h->protected_def = 0;
4864
0
      return true;
4865
0
    }
4866
4867
  /* If there are no references to this symbol that do not use the
4868
     GOT, we don't need to generate a copy reloc.  */
4869
0
  if (!h->non_got_ref)
4870
0
    {
4871
0
      h->protected_def = 0;
4872
0
      return true;
4873
0
    }
4874
4875
  /* Protected variables do not work with .dynbss.  The copy in
4876
     .dynbss won't be used by the shared library with the protected
4877
     definition for the variable.  Editing to PIC, or text relocations
4878
     are preferable to an incorrect program.  */
4879
0
  if (h->protected_def)
4880
0
    {
4881
0
      if (ELIMINATE_COPY_RELOCS
4882
0
    && ppc_elf_hash_entry (h)->has_addr16_ha
4883
0
    && ppc_elf_hash_entry (h)->has_addr16_lo
4884
0
    && htab->params->pic_fixup == 0
4885
0
    && info->disable_target_specific_optimizations <= 1)
4886
0
  htab->params->pic_fixup = 1;
4887
0
      return true;
4888
0
    }
4889
4890
  /* If -z nocopyreloc was given, we won't generate them either.  */
4891
0
  if (info->nocopyreloc)
4892
0
    return true;
4893
4894
   /* If we don't find any dynamic relocs in read-only sections, then
4895
      we'll be keeping the dynamic relocs and avoiding the copy reloc.
4896
      We can't do this if there are any small data relocations.  This
4897
      doesn't work on VxWorks, where we can not have dynamic
4898
      relocations (other than copy and jump slot relocations) in an
4899
      executable.  */
4900
0
  if (ELIMINATE_COPY_RELOCS
4901
0
      && !ppc_elf_hash_entry (h)->has_sda_refs
4902
0
      && htab->elf.target_os != is_vxworks
4903
0
      && !h->def_regular
4904
0
      && !alias_readonly_dynrelocs (h))
4905
0
    return true;
4906
4907
  /* We must allocate the symbol in our .dynbss section, which will
4908
     become part of the .bss section of the executable.  There will be
4909
     an entry for this symbol in the .dynsym section.  The dynamic
4910
     object will contain position independent code, so all references
4911
     from the dynamic object to this symbol will go through the global
4912
     offset table.  The dynamic linker will use the .dynsym entry to
4913
     determine the address it must put in the global offset table, so
4914
     both the dynamic object and the regular object will refer to the
4915
     same memory location for the variable.
4916
4917
     Of course, if the symbol is referenced using SDAREL relocs, we
4918
     must instead allocate it in .sbss.  */
4919
0
  if (ppc_elf_hash_entry (h)->has_sda_refs)
4920
0
    s = htab->dynsbss;
4921
0
  else if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
4922
0
    s = htab->elf.sdynrelro;
4923
0
  else
4924
0
    s = htab->elf.sdynbss;
4925
0
  BFD_ASSERT (s != NULL);
4926
4927
0
  if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
4928
0
    {
4929
0
      asection *srel;
4930
4931
      /* We must generate a R_PPC_COPY reloc to tell the dynamic
4932
   linker to copy the initial value out of the dynamic object
4933
   and into the runtime process image.  */
4934
0
      if (ppc_elf_hash_entry (h)->has_sda_refs)
4935
0
  srel = htab->relsbss;
4936
0
      else if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
4937
0
  srel = htab->elf.sreldynrelro;
4938
0
      else
4939
0
  srel = htab->elf.srelbss;
4940
0
      BFD_ASSERT (srel != NULL);
4941
0
      srel->size += sizeof (Elf32_External_Rela);
4942
0
      h->needs_copy = 1;
4943
0
    }
4944
4945
  /* We no longer want dyn_relocs.  */
4946
0
  h->dyn_relocs = NULL;
4947
0
  return _bfd_elf_adjust_dynamic_copy (info, h, s);
4948
0
}
4949

4950
/* Generate a symbol to mark plt call stubs.  For non-PIC code the sym is
4951
   xxxxxxxx.plt_call32.<callee> where xxxxxxxx is a hex number, usually 0,
4952
   specifying the addend on the plt relocation.  For -fpic code, the sym
4953
   is xxxxxxxx.plt_pic32.<callee>, and for -fPIC
4954
   xxxxxxxx.got2.plt_pic32.<callee>.  */
4955
4956
static bool
4957
add_stub_sym (struct plt_entry *ent,
4958
        struct elf_link_hash_entry *h,
4959
        struct bfd_link_info *info)
4960
0
{
4961
0
  struct elf_link_hash_entry *sh;
4962
0
  size_t len1, len2, len3;
4963
0
  char *name;
4964
0
  const char *stub;
4965
0
  struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
4966
4967
0
  if (bfd_link_pic (info))
4968
0
    stub = ".plt_pic32.";
4969
0
  else
4970
0
    stub = ".plt_call32.";
4971
4972
0
  len1 = strlen (h->root.root.string);
4973
0
  len2 = strlen (stub);
4974
0
  len3 = 0;
4975
0
  if (ent->sec)
4976
0
    len3 = strlen (ent->sec->name);
4977
0
  name = bfd_alloc (info->output_bfd, len1 + len2 + len3 + 9);
4978
0
  if (name == NULL)
4979
0
    return false;
4980
0
  sprintf (name, "%08x", (unsigned) ent->addend & 0xffffffff);
4981
0
  if (ent->sec)
4982
0
    memcpy (name + 8, ent->sec->name, len3);
4983
0
  memcpy (name + 8 + len3, stub, len2);
4984
0
  memcpy (name + 8 + len3 + len2, h->root.root.string, len1 + 1);
4985
0
  sh = elf_link_hash_lookup (&htab->elf, name, true, false, false);
4986
0
  if (sh == NULL)
4987
0
    return false;
4988
0
  if (sh->root.type == bfd_link_hash_new)
4989
0
    {
4990
0
      sh->root.type = bfd_link_hash_defined;
4991
0
      sh->root.u.def.section = htab->glink;
4992
0
      sh->root.u.def.value = ent->glink_offset;
4993
0
      sh->ref_regular = 1;
4994
0
      sh->def_regular = 1;
4995
0
      sh->ref_regular_nonweak = 1;
4996
0
      sh->forced_local = 1;
4997
0
      sh->non_elf = 0;
4998
0
      sh->root.linker_def = 1;
4999
0
    }
5000
0
  return true;
5001
0
}
5002
5003
/* Allocate NEED contiguous space in .got, and return the offset.
5004
   Handles allocation of the got header when crossing 32k.  */
5005
5006
static bfd_vma
5007
allocate_got (struct ppc_elf_link_hash_table *htab, unsigned int need)
5008
0
{
5009
0
  bfd_vma where;
5010
0
  unsigned int max_before_header;
5011
5012
0
  if (htab->plt_type == PLT_VXWORKS)
5013
0
    {
5014
0
      where = htab->elf.sgot->size;
5015
0
      htab->elf.sgot->size += need;
5016
0
    }
5017
0
  else
5018
0
    {
5019
0
      max_before_header = htab->plt_type == PLT_NEW ? 32768 : 32764;
5020
0
      if (need <= htab->got_gap)
5021
0
  {
5022
0
    where = max_before_header - htab->got_gap;
5023
0
    htab->got_gap -= need;
5024
0
  }
5025
0
      else
5026
0
  {
5027
0
    if (htab->elf.sgot->size + need > max_before_header
5028
0
        && htab->elf.sgot->size <= max_before_header)
5029
0
      {
5030
0
        htab->got_gap = max_before_header - htab->elf.sgot->size;
5031
0
        htab->elf.sgot->size = max_before_header + htab->got_header_size;
5032
0
      }
5033
0
    where = htab->elf.sgot->size;
5034
0
    htab->elf.sgot->size += need;
5035
0
  }
5036
0
    }
5037
0
  return where;
5038
0
}
5039
5040
/* Calculate size of GOT entries for symbol given its TLS_MASK.
5041
   TLS_LD is excluded because those go in a special GOT slot.  */
5042
5043
static inline unsigned int
5044
got_entries_needed (int tls_mask)
5045
0
{
5046
0
  unsigned int need;
5047
0
  if ((tls_mask & TLS_TLS) == 0)
5048
0
    need = 4;
5049
0
  else
5050
0
    {
5051
0
      need = 0;
5052
0
      if ((tls_mask & TLS_GD) != 0)
5053
0
  need += 8;
5054
0
      if ((tls_mask & (TLS_TPREL | TLS_GDIE)) != 0)
5055
0
  need += 4;
5056
0
      if ((tls_mask & TLS_DTPREL) != 0)
5057
0
  need += 4;
5058
0
    }
5059
0
  return need;
5060
0
}
5061
5062
/* If H is undefined, make it dynamic if that makes sense.  */
5063
5064
static bool
5065
ensure_undef_dynamic (struct bfd_link_info *info,
5066
          struct elf_link_hash_entry *h)
5067
0
{
5068
0
  struct elf_link_hash_table *htab = elf_hash_table (info);
5069
5070
0
  if (htab->dynamic_sections_created
5071
0
      && ((info->dynamic_undefined_weak != 0
5072
0
     && h->root.type == bfd_link_hash_undefweak)
5073
0
    || h->root.type == bfd_link_hash_undefined)
5074
0
      && h->dynindx == -1
5075
0
      && !h->forced_local
5076
0
      && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
5077
0
    return bfd_elf_link_record_dynamic_symbol (info, h);
5078
0
  return true;
5079
0
}
5080
5081
/* Choose whether to use htab->iplt or htab->pltlocal rather than the
5082
   usual htab->elf.splt section for a PLT entry.  */
5083
5084
static inline
5085
bool use_local_plt (struct bfd_link_info *info,
5086
         struct elf_link_hash_entry *h)
5087
0
{
5088
0
  return (h == NULL
5089
0
    || h->dynindx == -1
5090
0
    || !elf_hash_table (info)->dynamic_sections_created);
5091
0
}
5092
5093
/* Allocate space in associated reloc sections for dynamic relocs.  */
5094
5095
static bool
5096
allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
5097
0
{
5098
0
  struct bfd_link_info *info = inf;
5099
0
  struct ppc_elf_link_hash_entry *eh;
5100
0
  struct ppc_elf_link_hash_table *htab;
5101
0
  struct elf_dyn_relocs *p;
5102
5103
0
  if (h->root.type == bfd_link_hash_indirect)
5104
0
    return true;
5105
5106
0
  htab = ppc_elf_hash_table (info);
5107
0
  eh = (struct ppc_elf_link_hash_entry *) h;
5108
0
  if (eh->elf.got.refcount > 0
5109
0
      || (ELIMINATE_COPY_RELOCS
5110
0
    && !eh->elf.def_regular
5111
0
    && eh->elf.protected_def
5112
0
    && eh->has_addr16_ha
5113
0
    && eh->has_addr16_lo
5114
0
    && htab->params->pic_fixup > 0))
5115
0
    {
5116
      /* Make sure this symbol is output as a dynamic symbol.  */
5117
0
      if (!ensure_undef_dynamic (info, &eh->elf))
5118
0
  return false;
5119
5120
0
      unsigned int need = got_entries_needed (eh->tls_mask);
5121
0
      unsigned int rel_need = need * sizeof (Elf32_External_Rela) / 4;
5122
0
      if ((eh->tls_mask & (TLS_TLS | TLS_LD)) == (TLS_TLS | TLS_LD))
5123
0
  {
5124
0
    if (SYMBOL_REFERENCES_LOCAL (info, &eh->elf))
5125
      /* We'll just use htab->tlsld_got.offset.  This should
5126
         always be the case.  It's a little odd if we have
5127
         a local dynamic reloc against a non-local symbol.  */
5128
0
      htab->tlsld_got.refcount += 1;
5129
0
    else
5130
0
      {
5131
0
        need += 8;
5132
0
        rel_need += sizeof (Elf32_External_Rela);
5133
0
      }
5134
0
  }
5135
0
      if (need == 0)
5136
0
  eh->elf.got.offset = (bfd_vma) -1;
5137
0
      else
5138
0
  {
5139
0
    eh->elf.got.offset = allocate_got (htab, need);
5140
0
    if (((bfd_link_pic (info)
5141
0
    && !((eh->tls_mask & TLS_TLS) != 0
5142
0
         && bfd_link_executable (info)
5143
0
         && SYMBOL_REFERENCES_LOCAL (info, &eh->elf))
5144
0
    && !bfd_is_abs_symbol (&h->root))
5145
0
         || (htab->elf.dynamic_sections_created
5146
0
       && eh->elf.dynindx != -1
5147
0
       && !SYMBOL_REFERENCES_LOCAL (info, &eh->elf)))
5148
0
        && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, &eh->elf))
5149
0
      {
5150
0
        asection *rsec;
5151
5152
0
        rsec = htab->elf.srelgot;
5153
0
        if (eh->elf.type == STT_GNU_IFUNC)
5154
0
    rsec = htab->elf.irelplt;
5155
0
        rsec->size += rel_need;
5156
0
      }
5157
0
  }
5158
0
    }
5159
0
  else
5160
0
    eh->elf.got.offset = (bfd_vma) -1;
5161
5162
  /* If no dynamic sections we can't have dynamic relocs, except for
5163
     IFUNCs which are handled even in static executables.  */
5164
0
  if (!htab->elf.dynamic_sections_created
5165
0
      && h->type != STT_GNU_IFUNC)
5166
0
    h->dyn_relocs = NULL;
5167
5168
  /* Discard relocs on undefined symbols that must be local.  */
5169
0
  else if (h->root.type == bfd_link_hash_undefined
5170
0
     && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
5171
0
    h->dyn_relocs = NULL;
5172
5173
  /* Also discard relocs on undefined weak syms with non-default
5174
     visibility, or when dynamic_undefined_weak says so.  */
5175
0
  else if (UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
5176
0
    h->dyn_relocs = NULL;
5177
5178
0
  if (h->dyn_relocs == NULL)
5179
0
    ;
5180
5181
  /* In the shared -Bsymbolic case, discard space allocated for
5182
     dynamic pc-relative relocs against symbols which turn out to be
5183
     defined in regular objects.  For the normal shared case, discard
5184
     space for relocs that have become local due to symbol visibility
5185
     changes.  */
5186
0
  else if (bfd_link_pic (info))
5187
0
    {
5188
      /* Relocs that use pc_count are those that appear on a call insn,
5189
   or certain REL relocs (see must_be_dyn_reloc) that can be
5190
   generated via assembly.  We want calls to protected symbols to
5191
   resolve directly to the function rather than going via the plt.
5192
   If people want function pointer comparisons to work as expected
5193
   then they should avoid writing weird assembly.  */
5194
0
      if (SYMBOL_CALLS_LOCAL (info, h))
5195
0
  {
5196
0
    struct elf_dyn_relocs **pp;
5197
5198
0
    for (pp = &h->dyn_relocs; (p = *pp) != NULL; )
5199
0
      {
5200
0
        p->count -= p->pc_count;
5201
0
        p->pc_count = 0;
5202
0
        if (p->count == 0)
5203
0
    *pp = p->next;
5204
0
        else
5205
0
    pp = &p->next;
5206
0
      }
5207
0
  }
5208
5209
0
      if (htab->elf.target_os == is_vxworks)
5210
0
  {
5211
0
    struct elf_dyn_relocs **pp;
5212
5213
0
    for (pp = &h->dyn_relocs; (p = *pp) != NULL; )
5214
0
      {
5215
0
        if (strcmp (p->sec->output_section->name, ".tls_vars") == 0)
5216
0
    *pp = p->next;
5217
0
        else
5218
0
    pp = &p->next;
5219
0
      }
5220
0
  }
5221
5222
0
      if (h->dyn_relocs != NULL)
5223
0
  {
5224
    /* Make sure this symbol is output as a dynamic symbol.  */
5225
0
    if (!ensure_undef_dynamic (info, h))
5226
0
      return false;
5227
0
  }
5228
0
    }
5229
0
  else if (ELIMINATE_COPY_RELOCS)
5230
0
    {
5231
      /* For the non-pic case, discard space for relocs against
5232
   symbols which turn out to need copy relocs or are not
5233
   dynamic.  */
5234
0
      if ((h->dynamic_adjusted
5235
0
     || (h->ref_regular
5236
0
         && h->root.type == bfd_link_hash_undefweak
5237
0
         && (info->dynamic_undefined_weak > 0
5238
0
       || !_bfd_elf_readonly_dynrelocs (h))))
5239
0
    && !h->def_regular
5240
0
    && !ELF_COMMON_DEF_P (h)
5241
0
    && !(h->protected_def
5242
0
         && eh->has_addr16_ha
5243
0
         && eh->has_addr16_lo
5244
0
         && htab->params->pic_fixup > 0))
5245
0
  {
5246
    /* Make sure this symbol is output as a dynamic symbol.  */
5247
0
    if (!ensure_undef_dynamic (info, h))
5248
0
      return false;
5249
5250
0
    if (h->dynindx == -1)
5251
0
      h->dyn_relocs = NULL;
5252
0
  }
5253
0
      else
5254
0
  h->dyn_relocs = NULL;
5255
0
    }
5256
5257
  /* Allocate space.  */
5258
0
  for (p = h->dyn_relocs; p != NULL; p = p->next)
5259
0
    if (!discarded_section (p->sec))
5260
0
      {
5261
0
  asection *sreloc = elf_section_data (p->sec)->sreloc;
5262
0
  if (eh->elf.type == STT_GNU_IFUNC)
5263
0
    sreloc = htab->elf.irelplt;
5264
0
  sreloc->size += p->count * sizeof (Elf32_External_Rela);
5265
0
      }
5266
5267
  /* Handle PLT relocs.  Done last, after dynindx has settled.
5268
     We might need a PLT entry when the symbol
5269
     a) is dynamic, or
5270
     b) is an ifunc, or
5271
     c) has plt16 relocs and has been processed by adjust_dynamic_symbol, or
5272
     d) has plt16 relocs and we are linking statically.  */
5273
0
  if ((htab->elf.dynamic_sections_created && h->dynindx != -1)
5274
0
      || h->type == STT_GNU_IFUNC
5275
0
      || (h->needs_plt && h->dynamic_adjusted)
5276
0
      || (h->needs_plt
5277
0
    && h->def_regular
5278
0
    && !htab->elf.dynamic_sections_created
5279
0
    && !htab->can_convert_all_inline_plt
5280
0
    && (ppc_elf_hash_entry (h)->tls_mask
5281
0
        & (TLS_TLS | PLT_KEEP)) == PLT_KEEP))
5282
0
    {
5283
0
      struct plt_entry *ent;
5284
0
      bool doneone = false;
5285
0
      bfd_vma plt_offset = 0, glink_offset = (bfd_vma) -1;
5286
5287
0
      for (ent = h->plt.plist; ent != NULL; ent = ent->next)
5288
0
  if (ent->plt.refcount > 0)
5289
0
    {
5290
0
      asection *s;
5291
0
      bool dyn;
5292
5293
0
      if (!ensure_undef_dynamic (info, h))
5294
0
        return false;
5295
5296
0
      dyn = !use_local_plt (info, h);
5297
0
      s = htab->elf.splt;
5298
0
      if (!dyn)
5299
0
        {
5300
0
    if (h->type == STT_GNU_IFUNC)
5301
0
      s = htab->elf.iplt;
5302
0
    else
5303
0
      s = htab->pltlocal;
5304
0
        }
5305
5306
0
      if (htab->plt_type == PLT_NEW || !dyn)
5307
0
        {
5308
0
    if (!doneone)
5309
0
      {
5310
0
        plt_offset = s->size;
5311
0
        s->size += 4;
5312
0
      }
5313
0
    ent->plt.offset = plt_offset;
5314
5315
0
    if (s == htab->pltlocal)
5316
0
      ent->glink_offset = glink_offset;
5317
0
    else
5318
0
      {
5319
0
        s = htab->glink;
5320
0
        if (!doneone || bfd_link_pic (info))
5321
0
          {
5322
0
      glink_offset = s->size;
5323
0
      s->size += GLINK_ENTRY_SIZE (htab, h);
5324
0
          }
5325
0
        if (!doneone
5326
0
      && !bfd_link_pic (info)
5327
0
      && h->def_dynamic
5328
0
      && !h->def_regular)
5329
0
          {
5330
0
      h->root.u.def.section = s;
5331
0
      h->root.u.def.value = glink_offset;
5332
0
          }
5333
0
        ent->glink_offset = glink_offset;
5334
5335
0
        if (htab->params->emit_stub_syms
5336
0
      && !add_stub_sym (ent, h, info))
5337
0
          return false;
5338
0
      }
5339
0
        }
5340
0
      else
5341
0
        {
5342
0
    if (!doneone)
5343
0
      {
5344
        /* If this is the first .plt entry, make room
5345
           for the special first entry.  */
5346
0
        if (s->size == 0)
5347
0
          s->size += htab->plt_initial_entry_size;
5348
5349
        /* The PowerPC PLT is actually composed of two
5350
           parts, the first part is 2 words (for a load
5351
           and a jump), and then there is a remaining
5352
           word available at the end.  */
5353
0
        plt_offset = (htab->plt_initial_entry_size
5354
0
          + (htab->plt_slot_size
5355
0
             * ((s->size
5356
0
           - htab->plt_initial_entry_size)
5357
0
          / htab->plt_entry_size)));
5358
5359
        /* If this symbol is not defined in a regular
5360
           file, and we are not generating a shared
5361
           library, then set the symbol to this location
5362
           in the .plt.  This is to avoid text
5363
           relocations, and is required to make
5364
           function pointers compare as equal between
5365
           the normal executable and the shared library.  */
5366
0
        if (! bfd_link_pic (info)
5367
0
      && h->def_dynamic
5368
0
      && !h->def_regular)
5369
0
          {
5370
0
      h->root.u.def.section = s;
5371
0
      h->root.u.def.value = plt_offset;
5372
0
          }
5373
5374
        /* Make room for this entry.  */
5375
0
        s->size += htab->plt_entry_size;
5376
        /* After the 8192nd entry, room for two entries
5377
           is allocated.  */
5378
0
        if (htab->plt_type == PLT_OLD
5379
0
      && (s->size - htab->plt_initial_entry_size)
5380
0
      / htab->plt_entry_size
5381
0
      > PLT_NUM_SINGLE_ENTRIES)
5382
0
          s->size += htab->plt_entry_size;
5383
0
      }
5384
0
    ent->plt.offset = plt_offset;
5385
0
        }
5386
5387
      /* We also need to make an entry in the .rela.plt section.  */
5388
0
      if (!doneone)
5389
0
        {
5390
0
    if (!dyn)
5391
0
      {
5392
0
        if (h->type == STT_GNU_IFUNC)
5393
0
          {
5394
0
      s = htab->elf.irelplt;
5395
0
      s->size += sizeof (Elf32_External_Rela);
5396
0
          }
5397
0
        else if (bfd_link_pic (info))
5398
0
          {
5399
0
      s = htab->relpltlocal;
5400
0
      s->size += sizeof (Elf32_External_Rela);
5401
0
          }
5402
0
      }
5403
0
    else
5404
0
      {
5405
0
        htab->elf.srelplt->size += sizeof (Elf32_External_Rela);
5406
5407
0
        if (htab->plt_type == PLT_VXWORKS)
5408
0
          {
5409
      /* Allocate space for the unloaded relocations.  */
5410
0
      if (!bfd_link_pic (info)
5411
0
          && htab->elf.dynamic_sections_created)
5412
0
        {
5413
0
          if (ent->plt.offset
5414
0
        == (bfd_vma) htab->plt_initial_entry_size)
5415
0
            {
5416
0
        htab->srelplt2->size
5417
0
          += (sizeof (Elf32_External_Rela)
5418
0
              * VXWORKS_PLTRESOLVE_RELOCS);
5419
0
            }
5420
5421
0
          htab->srelplt2->size
5422
0
            += (sizeof (Elf32_External_Rela)
5423
0
          * VXWORKS_PLT_NON_JMP_SLOT_RELOCS);
5424
0
        }
5425
5426
      /* Every PLT entry has an associated GOT entry in
5427
         .got.plt.  */
5428
0
      htab->elf.sgotplt->size += 4;
5429
0
          }
5430
0
      }
5431
0
    doneone = true;
5432
0
        }
5433
0
    }
5434
0
  else
5435
0
    ent->plt.offset = (bfd_vma) -1;
5436
5437
0
      if (!doneone)
5438
0
  {
5439
0
    h->plt.plist = NULL;
5440
0
    h->needs_plt = 0;
5441
0
  }
5442
0
    }
5443
0
  else
5444
0
    {
5445
0
      h->plt.plist = NULL;
5446
0
      h->needs_plt = 0;
5447
0
    }
5448
5449
0
  return true;
5450
0
}
5451
5452
static const unsigned char glink_eh_frame_cie[] =
5453
{
5454
  0, 0, 0, 16,        /* length.  */
5455
  0, 0, 0, 0,       /* id.  */
5456
  1,          /* CIE version.  */
5457
  'z', 'R', 0,        /* Augmentation string.  */
5458
  4,          /* Code alignment.  */
5459
  0x7c,         /* Data alignment.  */
5460
  65,         /* RA reg.  */
5461
  1,          /* Augmentation size.  */
5462
  DW_EH_PE_pcrel | DW_EH_PE_sdata4, /* FDE encoding.  */
5463
  DW_CFA_def_cfa, 1, 0      /* def_cfa: r1 offset 0.  */
5464
};
5465
5466
/* Set the sizes of the dynamic sections.  */
5467
5468
static bool
5469
ppc_elf_late_size_sections (bfd *output_bfd,
5470
          struct bfd_link_info *info)
5471
0
{
5472
0
  struct ppc_elf_link_hash_table *htab;
5473
0
  asection *s;
5474
0
  bool relocs;
5475
0
  bfd *ibfd;
5476
5477
#ifdef DEBUG
5478
  fprintf (stderr, "ppc_elf_late_size_sections called\n");
5479
#endif
5480
5481
0
  htab = ppc_elf_hash_table (info);
5482
0
  if (htab->elf.dynobj == NULL)
5483
0
    return true;
5484
5485
0
  if (elf_hash_table (info)->dynamic_sections_created)
5486
0
    {
5487
      /* Set the contents of the .interp section to the interpreter.  */
5488
0
      if (bfd_link_executable (info) && !info->nointerp)
5489
0
  {
5490
0
    s = elf_hash_table (info)->interp;
5491
0
    BFD_ASSERT (s != NULL);
5492
0
    s->size = sizeof ELF_DYNAMIC_INTERPRETER;
5493
0
    s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
5494
0
    s->alloced = 1;
5495
0
  }
5496
0
    }
5497
5498
0
  if (htab->plt_type == PLT_OLD)
5499
0
    htab->got_header_size = 16;
5500
0
  else if (htab->plt_type == PLT_NEW)
5501
0
    htab->got_header_size = 12;
5502
5503
  /* Set up .got offsets for local syms, and space for local dynamic
5504
     relocs.  */
5505
0
  for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
5506
0
    {
5507
0
      bfd_signed_vma *local_got;
5508
0
      bfd_signed_vma *end_local_got;
5509
0
      struct plt_entry **local_plt;
5510
0
      struct plt_entry **end_local_plt;
5511
0
      char *lgot_masks;
5512
0
      bfd_size_type locsymcount;
5513
0
      Elf_Internal_Shdr *symtab_hdr;
5514
0
      Elf_Internal_Sym *local_syms;
5515
0
      Elf_Internal_Sym *isym;
5516
5517
0
      if (!is_ppc_elf (ibfd))
5518
0
  continue;
5519
5520
0
      for (s = ibfd->sections; s != NULL; s = s->next)
5521
0
  {
5522
0
    struct ppc_dyn_relocs *p;
5523
5524
0
    for (p = ((struct ppc_dyn_relocs *)
5525
0
        elf_section_data (s)->local_dynrel);
5526
0
         p != NULL;
5527
0
         p = p->next)
5528
0
      {
5529
0
        if (discarded_section (p->sec))
5530
0
    {
5531
      /* Input section has been discarded, either because
5532
         it is a copy of a linkonce section or due to
5533
         linker script /DISCARD/, so we'll be discarding
5534
         the relocs too.  */
5535
0
    }
5536
0
        else if (htab->elf.target_os == is_vxworks
5537
0
           && strcmp (p->sec->output_section->name,
5538
0
          ".tls_vars") == 0)
5539
0
    {
5540
      /* Relocations in vxworks .tls_vars sections are
5541
         handled specially by the loader.  */
5542
0
    }
5543
0
        else if (p->count != 0)
5544
0
    {
5545
0
      asection *sreloc = elf_section_data (p->sec)->sreloc;
5546
0
      if (p->ifunc)
5547
0
        sreloc = htab->elf.irelplt;
5548
0
      sreloc->size += p->count * sizeof (Elf32_External_Rela);
5549
0
      if ((p->sec->output_section->flags
5550
0
           & (SEC_READONLY | SEC_ALLOC))
5551
0
          == (SEC_READONLY | SEC_ALLOC))
5552
0
        {
5553
0
          info->flags |= DF_TEXTREL;
5554
0
          info->callbacks->minfo (_("%pB: dynamic relocation in read-only section `%pA'\n"),
5555
0
                p->sec->owner, p->sec);
5556
0
        }
5557
0
    }
5558
0
      }
5559
0
  }
5560
5561
0
      local_got = elf_local_got_refcounts (ibfd);
5562
0
      if (!local_got)
5563
0
  continue;
5564
5565
0
      symtab_hdr = &elf_symtab_hdr (ibfd);
5566
0
      locsymcount = symtab_hdr->sh_info;
5567
0
      end_local_got = local_got + locsymcount;
5568
0
      local_plt = (struct plt_entry **) end_local_got;
5569
0
      end_local_plt = local_plt + locsymcount;
5570
0
      lgot_masks = (char *) end_local_plt;
5571
0
      local_syms = (Elf_Internal_Sym *) symtab_hdr->contents;
5572
0
      if (local_syms == NULL && locsymcount != 0)
5573
0
  {
5574
0
    local_syms = bfd_elf_get_elf_syms (ibfd, symtab_hdr, locsymcount,
5575
0
               0, NULL, NULL, NULL);
5576
0
    if (local_syms == NULL)
5577
0
      return false;
5578
0
  }
5579
5580
0
      for (isym = local_syms;
5581
0
     local_got < end_local_got;
5582
0
     ++local_got, ++lgot_masks, ++isym)
5583
0
  if (*local_got > 0)
5584
0
    {
5585
0
      unsigned int need;
5586
0
      if ((*lgot_masks & (TLS_TLS | TLS_LD)) == (TLS_TLS | TLS_LD))
5587
0
        htab->tlsld_got.refcount += 1;
5588
0
      need = got_entries_needed (*lgot_masks);
5589
0
      if (need == 0)
5590
0
        *local_got = (bfd_vma) -1;
5591
0
      else
5592
0
        {
5593
0
    *local_got = allocate_got (htab, need);
5594
0
    if (bfd_link_pic (info)
5595
0
        && !((*lgot_masks & TLS_TLS) != 0
5596
0
       && bfd_link_executable (info))
5597
0
        && isym->st_shndx != SHN_ABS)
5598
0
      {
5599
0
        asection *srel;
5600
5601
0
        need *= sizeof (Elf32_External_Rela) / 4;
5602
0
        srel = htab->elf.srelgot;
5603
0
        if ((*lgot_masks & (TLS_TLS | PLT_IFUNC)) == PLT_IFUNC)
5604
0
          srel = htab->elf.irelplt;
5605
0
        srel->size += need;
5606
0
      }
5607
0
        }
5608
0
    }
5609
0
  else
5610
0
    *local_got = (bfd_vma) -1;
5611
5612
0
      if (htab->elf.target_os == is_vxworks)
5613
0
  continue;
5614
5615
      /* Allocate space for calls to local STT_GNU_IFUNC syms in .iplt.  */
5616
0
      lgot_masks = (char *) end_local_plt;
5617
0
      for (; local_plt < end_local_plt; ++local_plt, ++lgot_masks)
5618
0
  {
5619
0
    struct plt_entry *ent;
5620
0
    bool doneone = false;
5621
0
    bfd_vma plt_offset = 0, glink_offset = (bfd_vma) -1;
5622
5623
0
    for (ent = *local_plt; ent != NULL; ent = ent->next)
5624
0
      if (ent->plt.refcount > 0)
5625
0
        {
5626
0
    if ((*lgot_masks & (TLS_TLS | PLT_IFUNC)) == PLT_IFUNC)
5627
0
      s = htab->elf.iplt;
5628
0
    else if (htab->can_convert_all_inline_plt
5629
0
       || (*lgot_masks & (TLS_TLS | PLT_KEEP)) != PLT_KEEP)
5630
0
      {
5631
0
        ent->plt.offset = (bfd_vma) -1;
5632
0
        continue;
5633
0
      }
5634
0
    else
5635
0
      s = htab->pltlocal;
5636
5637
0
    if (!doneone)
5638
0
      {
5639
0
        plt_offset = s->size;
5640
0
        s->size += 4;
5641
0
      }
5642
0
    ent->plt.offset = plt_offset;
5643
5644
0
    if (s != htab->pltlocal && (!doneone || bfd_link_pic (info)))
5645
0
      {
5646
0
        s = htab->glink;
5647
0
        glink_offset = s->size;
5648
0
        s->size += GLINK_ENTRY_SIZE (htab, NULL);
5649
0
      }
5650
0
    ent->glink_offset = glink_offset;
5651
5652
0
    if (!doneone)
5653
0
      {
5654
0
        if ((*lgot_masks & (TLS_TLS | PLT_IFUNC)) == PLT_IFUNC)
5655
0
          {
5656
0
      s = htab->elf.irelplt;
5657
0
      s->size += sizeof (Elf32_External_Rela);
5658
0
          }
5659
0
        else if (bfd_link_pic (info))
5660
0
          {
5661
0
      s = htab->relpltlocal;
5662
0
      s->size += sizeof (Elf32_External_Rela);
5663
0
          }
5664
0
        doneone = true;
5665
0
      }
5666
0
        }
5667
0
      else
5668
0
        ent->plt.offset = (bfd_vma) -1;
5669
0
  }
5670
5671
0
      if (local_syms != NULL
5672
0
    && symtab_hdr->contents != (unsigned char *) local_syms)
5673
0
  {
5674
0
    if (!info->keep_memory)
5675
0
      free (local_syms);
5676
0
    else
5677
0
      symtab_hdr->contents = (unsigned char *) local_syms;
5678
0
  }
5679
0
    }
5680
5681
  /* Allocate space for global sym dynamic relocs.  */
5682
0
  elf_link_hash_traverse (elf_hash_table (info), allocate_dynrelocs, info);
5683
5684
0
  if (htab->tlsld_got.refcount > 0)
5685
0
    {
5686
0
      htab->tlsld_got.offset = allocate_got (htab, 8);
5687
0
      if (bfd_link_dll (info))
5688
0
  htab->elf.srelgot->size += sizeof (Elf32_External_Rela);
5689
0
    }
5690
0
  else
5691
0
    htab->tlsld_got.offset = (bfd_vma) -1;
5692
5693
0
  if (htab->elf.sgot != NULL && htab->plt_type != PLT_VXWORKS)
5694
0
    {
5695
0
      unsigned int g_o_t = 32768;
5696
5697
      /* If we haven't allocated the header, do so now.  When we get here,
5698
   for old plt/got the got size will be 0 to 32764 (not allocated),
5699
   or 32780 to 65536 (header allocated).  For new plt/got, the
5700
   corresponding ranges are 0 to 32768 and 32780 to 65536.  */
5701
0
      if (htab->elf.sgot->size <= 32768)
5702
0
  {
5703
0
    g_o_t = htab->elf.sgot->size;
5704
0
    if (htab->plt_type == PLT_OLD)
5705
0
      g_o_t += 4;
5706
0
    htab->elf.sgot->size += htab->got_header_size;
5707
0
  }
5708
5709
0
      htab->elf.hgot->root.u.def.value = g_o_t;
5710
0
    }
5711
0
  if (bfd_link_pic (info))
5712
0
    {
5713
0
      struct elf_link_hash_entry *sda = htab->sdata[0].sym;
5714
5715
0
      sda->root.u.def.section = htab->elf.hgot->root.u.def.section;
5716
0
      sda->root.u.def.value = htab->elf.hgot->root.u.def.value;
5717
0
    }
5718
0
  if (info->emitrelocations)
5719
0
    {
5720
0
      struct elf_link_hash_entry *sda = htab->sdata[0].sym;
5721
5722
0
      if (sda != NULL && sda->ref_regular)
5723
0
  sda->root.u.def.section->flags |= SEC_KEEP;
5724
0
      sda = htab->sdata[1].sym;
5725
0
      if (sda != NULL && sda->ref_regular)
5726
0
  sda->root.u.def.section->flags |= SEC_KEEP;
5727
0
    }
5728
5729
0
  if (htab->glink != NULL
5730
0
      && htab->glink->size != 0
5731
0
      && htab->elf.dynamic_sections_created)
5732
0
    {
5733
0
      htab->glink_pltresolve = htab->glink->size;
5734
      /* Space for the branch table.  */
5735
0
      htab->glink->size
5736
0
  += htab->elf.srelplt->size / (sizeof (Elf32_External_Rela) / 4) - 4;
5737
      /* Pad out to align the start of PLTresolve.  */
5738
0
      htab->glink->size += -htab->glink->size & (htab->params->ppc476_workaround
5739
0
             ? 63 : 15);
5740
0
      htab->glink->size += GLINK_PLTRESOLVE;
5741
5742
0
      if (htab->params->emit_stub_syms)
5743
0
  {
5744
0
    struct elf_link_hash_entry *sh;
5745
0
    sh = elf_link_hash_lookup (&htab->elf, "__glink",
5746
0
             true, false, false);
5747
0
    if (sh == NULL)
5748
0
      return false;
5749
0
    if (sh->root.type == bfd_link_hash_new)
5750
0
      {
5751
0
        sh->root.type = bfd_link_hash_defined;
5752
0
        sh->root.u.def.section = htab->glink;
5753
0
        sh->root.u.def.value = htab->glink_pltresolve;
5754
0
        sh->ref_regular = 1;
5755
0
        sh->def_regular = 1;
5756
0
        sh->ref_regular_nonweak = 1;
5757
0
        sh->forced_local = 1;
5758
0
        sh->non_elf = 0;
5759
0
        sh->root.linker_def = 1;
5760
0
      }
5761
0
    sh = elf_link_hash_lookup (&htab->elf, "__glink_PLTresolve",
5762
0
             true, false, false);
5763
0
    if (sh == NULL)
5764
0
      return false;
5765
0
    if (sh->root.type == bfd_link_hash_new)
5766
0
      {
5767
0
        sh->root.type = bfd_link_hash_defined;
5768
0
        sh->root.u.def.section = htab->glink;
5769
0
        sh->root.u.def.value = htab->glink->size - GLINK_PLTRESOLVE;
5770
0
        sh->ref_regular = 1;
5771
0
        sh->def_regular = 1;
5772
0
        sh->ref_regular_nonweak = 1;
5773
0
        sh->forced_local = 1;
5774
0
        sh->non_elf = 0;
5775
0
        sh->root.linker_def = 1;
5776
0
      }
5777
0
  }
5778
0
    }
5779
5780
0
  if (htab->glink != NULL
5781
0
      && htab->glink->size != 0
5782
0
      && htab->glink_eh_frame != NULL
5783
0
      && !bfd_is_abs_section (htab->glink_eh_frame->output_section)
5784
0
      && _bfd_elf_eh_frame_present (info))
5785
0
    {
5786
0
      s = htab->glink_eh_frame;
5787
0
      s->size = sizeof (glink_eh_frame_cie) + 20;
5788
0
      if (bfd_link_pic (info))
5789
0
  {
5790
0
    s->size += 4;
5791
0
    if (htab->glink->size - GLINK_PLTRESOLVE + 8 >= 256)
5792
0
      s->size += 4;
5793
0
  }
5794
0
    }
5795
5796
  /* We've now determined the sizes of the various dynamic sections.
5797
     Allocate memory for them.  */
5798
0
  relocs = false;
5799
0
  for (s = htab->elf.dynobj->sections; s != NULL; s = s->next)
5800
0
    {
5801
0
      bool strip_section = true;
5802
5803
0
      if ((s->flags & SEC_LINKER_CREATED) == 0)
5804
0
  continue;
5805
5806
0
      if (s == htab->elf.splt
5807
0
    || s == htab->elf.sgot)
5808
0
  {
5809
    /* We'd like to strip these sections if they aren't needed, but if
5810
       we've exported dynamic symbols from them we must leave them.
5811
       It's too late to tell BFD to get rid of the symbols.  */
5812
0
    if (htab->elf.hplt != NULL)
5813
0
      strip_section = false;
5814
    /* Strip this section if we don't need it; see the
5815
       comment below.  */
5816
0
  }
5817
0
      else if (s == htab->elf.iplt
5818
0
         || s == htab->pltlocal
5819
0
         || s == htab->glink
5820
0
         || s == htab->glink_eh_frame
5821
0
         || s == htab->elf.sgotplt
5822
0
         || s == htab->sbss
5823
0
         || s == htab->elf.sdynbss
5824
0
         || s == htab->elf.sdynrelro
5825
0
         || s == htab->dynsbss)
5826
0
  {
5827
    /* Strip these too.  */
5828
0
  }
5829
0
      else if (s == htab->sdata[0].section
5830
0
         || s == htab->sdata[1].section)
5831
0
  {
5832
0
    strip_section = (s->flags & SEC_KEEP) == 0;
5833
0
  }
5834
0
      else if (startswith (bfd_section_name (s), ".rela"))
5835
0
  {
5836
0
    if (s->size != 0)
5837
0
      {
5838
        /* Remember whether there are any relocation sections.  */
5839
0
        relocs = true;
5840
5841
        /* We use the reloc_count field as a counter if we need
5842
     to copy relocs into the output file.  */
5843
0
        s->reloc_count = 0;
5844
0
      }
5845
0
  }
5846
0
      else
5847
0
  {
5848
    /* It's not one of our sections, so don't allocate space.  */
5849
0
    continue;
5850
0
  }
5851
5852
0
      if (s->size == 0 && strip_section)
5853
0
  {
5854
    /* If we don't need this section, strip it from the
5855
       output file.  This is mostly to handle .rela.bss and
5856
       .rela.plt.  We must create both sections in
5857
       create_dynamic_sections, because they must be created
5858
       before the linker maps input sections to output
5859
       sections.  The linker does that before
5860
       adjust_dynamic_symbol is called, and it is that
5861
       function which decides whether anything needs to go
5862
       into these sections.  */
5863
0
    s->flags |= SEC_EXCLUDE;
5864
0
    continue;
5865
0
  }
5866
5867
0
      if ((s->flags & SEC_HAS_CONTENTS) == 0)
5868
0
  continue;
5869
5870
      /* Allocate memory for the section contents.  */
5871
0
      s->contents = bfd_zalloc (htab->elf.dynobj, s->size);
5872
0
      if (s->contents == NULL)
5873
0
  return false;
5874
0
      s->alloced = 1;
5875
0
    }
5876
5877
0
  if (htab->elf.dynamic_sections_created)
5878
0
    {
5879
      /* Add some entries to the .dynamic section.  We fill in the
5880
   values later, in ppc_elf_finish_dynamic_sections, but we
5881
   must add the entries now so that we get the correct size for
5882
   the .dynamic section.  The DT_DEBUG entry is filled in by the
5883
   dynamic linker and used by the debugger.  */
5884
0
#define add_dynamic_entry(TAG, VAL) \
5885
0
  _bfd_elf_add_dynamic_entry (info, TAG, VAL)
5886
5887
0
      if (!_bfd_elf_maybe_vxworks_add_dynamic_tags (output_bfd, info,
5888
0
                relocs))
5889
0
  return false;
5890
5891
0
      if (htab->plt_type == PLT_NEW
5892
0
    && htab->glink != NULL
5893
0
    && htab->glink->size != 0)
5894
0
  {
5895
0
    if (!add_dynamic_entry (DT_PPC_GOT, 0))
5896
0
      return false;
5897
0
    if (!htab->params->no_tls_get_addr_opt
5898
0
        && htab->tls_get_addr != NULL
5899
0
        && htab->tls_get_addr->plt.plist != NULL
5900
0
        && !add_dynamic_entry (DT_PPC_OPT, PPC_OPT_TLS))
5901
0
      return false;
5902
0
  }
5903
0
   }
5904
0
#undef add_dynamic_entry
5905
5906
0
  if (htab->glink_eh_frame != NULL
5907
0
      && htab->glink_eh_frame->contents != NULL)
5908
0
    {
5909
0
      unsigned char *p = htab->glink_eh_frame->contents;
5910
0
      bfd_vma val;
5911
5912
0
      memcpy (p, glink_eh_frame_cie, sizeof (glink_eh_frame_cie));
5913
      /* CIE length (rewrite in case little-endian).  */
5914
0
      bfd_put_32 (htab->elf.dynobj, sizeof (glink_eh_frame_cie) - 4, p);
5915
0
      p += sizeof (glink_eh_frame_cie);
5916
      /* FDE length.  */
5917
0
      val = htab->glink_eh_frame->size - 4 - sizeof (glink_eh_frame_cie);
5918
0
      bfd_put_32 (htab->elf.dynobj, val, p);
5919
0
      p += 4;
5920
      /* CIE pointer.  */
5921
0
      val = p - htab->glink_eh_frame->contents;
5922
0
      bfd_put_32 (htab->elf.dynobj, val, p);
5923
0
      p += 4;
5924
      /* Offset to .glink.  Set later.  */
5925
0
      p += 4;
5926
      /* .glink size.  */
5927
0
      bfd_put_32 (htab->elf.dynobj, htab->glink->size, p);
5928
0
      p += 4;
5929
      /* Augmentation.  */
5930
0
      p += 1;
5931
5932
0
      if (bfd_link_pic (info)
5933
0
    && htab->elf.dynamic_sections_created)
5934
0
  {
5935
0
    bfd_vma adv = (htab->glink->size - GLINK_PLTRESOLVE + 8) >> 2;
5936
0
    if (adv < 64)
5937
0
      *p++ = DW_CFA_advance_loc + adv;
5938
0
    else if (adv < 256)
5939
0
      {
5940
0
        *p++ = DW_CFA_advance_loc1;
5941
0
        *p++ = adv;
5942
0
      }
5943
0
    else if (adv < 65536)
5944
0
      {
5945
0
        *p++ = DW_CFA_advance_loc2;
5946
0
        bfd_put_16 (htab->elf.dynobj, adv, p);
5947
0
        p += 2;
5948
0
      }
5949
0
    else
5950
0
      {
5951
0
        *p++ = DW_CFA_advance_loc4;
5952
0
        bfd_put_32 (htab->elf.dynobj, adv, p);
5953
0
        p += 4;
5954
0
      }
5955
0
    *p++ = DW_CFA_register;
5956
0
    *p++ = 65;
5957
0
    p++;
5958
0
    *p++ = DW_CFA_advance_loc + 4;
5959
0
    *p++ = DW_CFA_restore_extended;
5960
0
    *p++ = 65;
5961
0
  }
5962
0
      BFD_ASSERT ((bfd_vma) ((p + 3 - htab->glink_eh_frame->contents) & -4)
5963
0
      == htab->glink_eh_frame->size);
5964
0
    }
5965
5966
0
  return true;
5967
0
}
5968
5969
/* Arrange to have _SDA_BASE_ or _SDA2_BASE_ stripped from the output
5970
   if it looks like nothing is using them.  */
5971
5972
static void
5973
maybe_strip_sdasym (bfd *output_bfd, elf_linker_section_t *lsect)
5974
0
{
5975
0
  struct elf_link_hash_entry *sda = lsect->sym;
5976
5977
0
  if (sda != NULL && !sda->ref_regular && sda->dynindx == -1)
5978
0
    {
5979
0
      asection *s;
5980
5981
0
      s = bfd_get_section_by_name (output_bfd, lsect->name);
5982
0
      if (s == NULL || bfd_section_removed_from_list (output_bfd, s))
5983
0
  {
5984
0
    s = bfd_get_section_by_name (output_bfd, lsect->bss_name);
5985
0
    if (s == NULL || bfd_section_removed_from_list (output_bfd, s))
5986
0
      {
5987
0
        sda->def_regular = 0;
5988
        /* This is somewhat magic.  See elf_link_output_extsym.  */
5989
0
        sda->ref_dynamic = 1;
5990
0
        sda->forced_local = 0;
5991
0
      }
5992
0
  }
5993
0
    }
5994
0
}
5995
5996
void
5997
ppc_elf_maybe_strip_sdata_syms (struct bfd_link_info *info)
5998
0
{
5999
0
  struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
6000
6001
0
  if (htab != NULL)
6002
0
    {
6003
0
      maybe_strip_sdasym (info->output_bfd, &htab->sdata[0]);
6004
0
      maybe_strip_sdasym (info->output_bfd, &htab->sdata[1]);
6005
0
    }
6006
0
}
6007
6008
6009
/* Return TRUE if symbol should be hashed in the `.gnu.hash' section.  */
6010
6011
static bool
6012
ppc_elf_hash_symbol (struct elf_link_hash_entry *h)
6013
0
{
6014
0
  if (h->plt.plist != NULL
6015
0
      && !h->def_regular
6016
0
      && (!h->pointer_equality_needed
6017
0
    || !h->ref_regular_nonweak))
6018
0
    return false;
6019
6020
0
  return _bfd_elf_hash_symbol (h);
6021
0
}
6022

6023
0
#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
6024
6025
/* Relaxation trampolines.  r12 is available for clobbering (r11, is
6026
   used for some functions that are allowed to break the ABI).  */
6027
static const int shared_stub_entry[] =
6028
  {
6029
    0x7c0802a6, /* mflr 0 */
6030
    0x429f0005, /* bcl 20, 31, .Lxxx */
6031
    0x7d8802a6, /* mflr 12 */
6032
    0x3d8c0000, /* addis 12, 12, (xxx-.Lxxx)@ha */
6033
    0x398c0000, /* addi 12, 12, (xxx-.Lxxx)@l */
6034
    0x7c0803a6, /* mtlr 0 */
6035
    0x7d8903a6, /* mtctr 12 */
6036
    0x4e800420, /* bctr */
6037
  };
6038
6039
static const int stub_entry[] =
6040
  {
6041
    0x3d800000, /* lis 12,xxx@ha */
6042
    0x398c0000, /* addi 12,12,xxx@l */
6043
    0x7d8903a6, /* mtctr 12 */
6044
    0x4e800420, /* bctr */
6045
  };
6046
6047
struct ppc_elf_relax_info
6048
{
6049
  unsigned int workaround_size;
6050
  unsigned int picfixup_size;
6051
};
6052
6053
/* This function implements long branch trampolines, and the ppc476
6054
   icache bug workaround.  Any section needing trampolines or patch
6055
   space for the workaround has its size extended so that we can
6056
   add trampolines at the end of the section.  */
6057
6058
static bool
6059
ppc_elf_relax_section (bfd *abfd,
6060
           asection *isec,
6061
           struct bfd_link_info *link_info,
6062
           bool *again)
6063
0
{
6064
0
  struct one_branch_fixup
6065
0
  {
6066
0
    struct one_branch_fixup *next;
6067
0
    asection *tsec;
6068
    /* Final link, can use the symbol offset.  For a
6069
       relocatable link we use the symbol's index.  */
6070
0
    bfd_vma toff;
6071
0
    bfd_vma trampoff;
6072
0
  };
6073
6074
0
  Elf_Internal_Shdr *symtab_hdr;
6075
0
  bfd_byte *contents = NULL;
6076
0
  Elf_Internal_Sym *isymbuf = NULL;
6077
0
  Elf_Internal_Rela *internal_relocs = NULL;
6078
0
  Elf_Internal_Rela *irel, *irelend = NULL;
6079
0
  struct one_branch_fixup *branch_fixups = NULL;
6080
0
  struct ppc_elf_relax_info *relax_info = NULL;
6081
0
  unsigned changes = 0;
6082
0
  bool workaround_change;
6083
0
  struct ppc_elf_link_hash_table *htab;
6084
0
  bfd_size_type trampbase, trampoff, newsize, picfixup_size;
6085
0
  asection *got2;
6086
0
  bool maybe_pasted;
6087
6088
0
  *again = false;
6089
6090
  /* No need to do anything with non-alloc or non-code sections.  */
6091
0
  if ((isec->flags & SEC_ALLOC) == 0
6092
0
      || (isec->flags & SEC_CODE) == 0
6093
0
      || (isec->flags & SEC_HAS_CONTENTS) == 0
6094
0
      || (isec->flags & SEC_LINKER_CREATED) != 0
6095
0
      || isec->size < 4)
6096
0
    return true;
6097
6098
  /* We cannot represent the required PIC relocs in the output, so don't
6099
     do anything.  The linker doesn't support mixing -shared and -r
6100
     anyway.  */
6101
0
  if (bfd_link_relocatable (link_info) && bfd_link_pic (link_info))
6102
0
    return true;
6103
6104
0
  htab = ppc_elf_hash_table (link_info);
6105
0
  if (htab == NULL)
6106
0
    return true;
6107
6108
0
  isec->size = (isec->size + 3) & -4;
6109
0
  if (isec->rawsize == 0)
6110
0
    isec->rawsize = isec->size;
6111
0
  trampbase = isec->size;
6112
6113
0
  BFD_ASSERT (isec->sec_info_type == SEC_INFO_TYPE_NONE
6114
0
        || isec->sec_info_type == SEC_INFO_TYPE_TARGET);
6115
0
  isec->sec_info_type = SEC_INFO_TYPE_TARGET;
6116
6117
0
  if (htab->params->ppc476_workaround
6118
0
      || htab->params->pic_fixup > 0)
6119
0
    {
6120
0
      if (isec->sec_info == NULL)
6121
0
  {
6122
0
    isec->sec_info
6123
0
      = bfd_zalloc (abfd, sizeof (struct ppc_elf_relax_info));
6124
0
    if (isec->sec_info == NULL)
6125
0
      return false;
6126
0
  }
6127
0
      relax_info = isec->sec_info;
6128
0
      trampbase -= relax_info->workaround_size;
6129
0
    }
6130
6131
0
  maybe_pasted = (strcmp (isec->output_section->name, ".init") == 0
6132
0
      || strcmp (isec->output_section->name, ".fini") == 0);
6133
  /* Space for a branch around any trampolines.  */
6134
0
  trampoff = trampbase;
6135
0
  if (maybe_pasted && trampbase == isec->rawsize)
6136
0
    trampoff += 4;
6137
6138
0
  symtab_hdr = &elf_symtab_hdr (abfd);
6139
0
  picfixup_size = 0;
6140
0
  if (htab->params->branch_trampolines
6141
0
      || htab->params->pic_fixup > 0)
6142
0
    {
6143
      /* Get a copy of the native relocations.  */
6144
0
      if (isec->reloc_count != 0)
6145
0
  {
6146
0
    internal_relocs = _bfd_elf_link_read_relocs (abfd, isec, NULL, NULL,
6147
0
                   link_info->keep_memory);
6148
0
    if (internal_relocs == NULL)
6149
0
      goto error_return;
6150
0
  }
6151
6152
0
      got2 = bfd_get_section_by_name (abfd, ".got2");
6153
6154
0
      irelend = internal_relocs + isec->reloc_count;
6155
0
      for (irel = internal_relocs; irel < irelend; irel++)
6156
0
  {
6157
0
    unsigned long r_type = ELF32_R_TYPE (irel->r_info);
6158
0
    bfd_vma toff, roff;
6159
0
    asection *tsec;
6160
0
    struct one_branch_fixup *f;
6161
0
    size_t insn_offset = 0;
6162
0
    bfd_vma max_branch_offset = 0, val, reladdr;
6163
0
    bfd_byte *hit_addr;
6164
0
    unsigned long t0;
6165
0
    struct elf_link_hash_entry *h;
6166
0
    Elf_Internal_Sym *isym;
6167
0
    struct plt_entry **plist;
6168
0
    unsigned char sym_type;
6169
6170
0
    switch (r_type)
6171
0
      {
6172
0
      case R_PPC_REL24:
6173
0
      case R_PPC_LOCAL24PC:
6174
0
      case R_PPC_PLTREL24:
6175
0
      case R_PPC_PLTCALL:
6176
0
        max_branch_offset = 1 << 25;
6177
0
        break;
6178
6179
0
      case R_PPC_REL14:
6180
0
      case R_PPC_REL14_BRTAKEN:
6181
0
      case R_PPC_REL14_BRNTAKEN:
6182
0
        max_branch_offset = 1 << 15;
6183
0
        break;
6184
6185
0
      case R_PPC_ADDR16_HA:
6186
0
        if (htab->params->pic_fixup > 0)
6187
0
    break;
6188
0
        continue;
6189
6190
0
      default:
6191
0
        continue;
6192
0
      }
6193
6194
    /* Get the value of the symbol referred to by the reloc.  */
6195
0
    if (!get_sym_h (&h, &isym, &tsec, NULL, &isymbuf,
6196
0
        ELF32_R_SYM (irel->r_info), abfd))
6197
0
      goto error_return;
6198
6199
0
    if (isym != NULL)
6200
0
      {
6201
0
        if (tsec != NULL)
6202
0
    ;
6203
0
        else if (isym->st_shndx == SHN_ABS)
6204
0
    tsec = bfd_abs_section_ptr;
6205
0
        else
6206
0
    continue;
6207
6208
0
        toff = isym->st_value;
6209
0
        sym_type = ELF_ST_TYPE (isym->st_info);
6210
0
      }
6211
0
    else
6212
0
      {
6213
0
        if (tsec != NULL)
6214
0
    toff = h->root.u.def.value;
6215
0
        else if (h->root.type == bfd_link_hash_undefined
6216
0
           || h->root.type == bfd_link_hash_undefweak)
6217
0
    {
6218
0
      unsigned long indx;
6219
6220
0
      indx = ELF32_R_SYM (irel->r_info) - symtab_hdr->sh_info;
6221
0
      tsec = bfd_und_section_ptr;
6222
0
      toff = bfd_link_relocatable (link_info) ? indx : 0;
6223
0
    }
6224
0
        else
6225
0
    continue;
6226
6227
        /* If this branch is to __tls_get_addr then we may later
6228
     optimise away the call.  We won't be needing a long-
6229
     branch stub in that case.  */
6230
0
        if (bfd_link_executable (link_info)
6231
0
      && h == htab->tls_get_addr
6232
0
      && irel != internal_relocs)
6233
0
    {
6234
0
      unsigned long t_symndx = ELF32_R_SYM (irel[-1].r_info);
6235
0
      unsigned long t_rtype = ELF32_R_TYPE (irel[-1].r_info);
6236
0
      unsigned int tls_mask = 0;
6237
6238
      /* The previous reloc should be one of R_PPC_TLSGD or
6239
         R_PPC_TLSLD, or for older object files, a reloc
6240
         on the __tls_get_addr arg setup insn.  Get tls
6241
         mask bits from the symbol on that reloc.  */
6242
0
      if (t_symndx < symtab_hdr->sh_info)
6243
0
        {
6244
0
          bfd_vma *local_got_offsets = elf_local_got_offsets (abfd);
6245
6246
0
          if (local_got_offsets != NULL)
6247
0
      {
6248
0
        struct plt_entry **local_plt = (struct plt_entry **)
6249
0
          (local_got_offsets + symtab_hdr->sh_info);
6250
0
        char *lgot_masks = (char *)
6251
0
          (local_plt + symtab_hdr->sh_info);
6252
0
        tls_mask = lgot_masks[t_symndx];
6253
0
      }
6254
0
        }
6255
0
      else
6256
0
        {
6257
0
          struct elf_link_hash_entry *th
6258
0
      = elf_sym_hashes (abfd)[t_symndx - symtab_hdr->sh_info];
6259
6260
0
          while (th->root.type == bfd_link_hash_indirect
6261
0
           || th->root.type == bfd_link_hash_warning)
6262
0
      th = (struct elf_link_hash_entry *) th->root.u.i.link;
6263
6264
0
          tls_mask
6265
0
      = ((struct ppc_elf_link_hash_entry *) th)->tls_mask;
6266
0
        }
6267
6268
      /* The mask bits tell us if the call will be
6269
         optimised away.  */
6270
0
      if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_GD) == 0
6271
0
          && (t_rtype == R_PPC_TLSGD
6272
0
        || t_rtype == R_PPC_GOT_TLSGD16
6273
0
        || t_rtype == R_PPC_GOT_TLSGD16_LO))
6274
0
        continue;
6275
0
      if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_LD) == 0
6276
0
          && (t_rtype == R_PPC_TLSLD
6277
0
        || t_rtype == R_PPC_GOT_TLSLD16
6278
0
        || t_rtype == R_PPC_GOT_TLSLD16_LO))
6279
0
        continue;
6280
0
    }
6281
6282
0
        sym_type = h->type;
6283
0
      }
6284
6285
0
    if (r_type == R_PPC_ADDR16_HA)
6286
0
      {
6287
0
        if (h != NULL
6288
0
      && !h->def_regular
6289
0
      && h->protected_def
6290
0
      && ppc_elf_hash_entry (h)->has_addr16_ha
6291
0
      && ppc_elf_hash_entry (h)->has_addr16_lo)
6292
0
    picfixup_size += 12;
6293
0
        continue;
6294
0
      }
6295
6296
    /* The condition here under which we call find_plt_ent must
6297
       match that in relocate_section.  If we call find_plt_ent here
6298
       but not in relocate_section, or vice versa, then the branch
6299
       destination used here may be incorrect.  */
6300
0
    plist = NULL;
6301
0
    if (h != NULL)
6302
0
      {
6303
        /* We know is_branch_reloc (r_type) is true.  */
6304
0
        if (h->type == STT_GNU_IFUNC
6305
0
      || r_type == R_PPC_PLTREL24)
6306
0
    plist = &h->plt.plist;
6307
0
      }
6308
0
    else if (sym_type == STT_GNU_IFUNC
6309
0
       && elf_local_got_offsets (abfd) != NULL)
6310
0
      {
6311
0
        bfd_vma *local_got_offsets = elf_local_got_offsets (abfd);
6312
0
        struct plt_entry **local_plt = (struct plt_entry **)
6313
0
    (local_got_offsets + symtab_hdr->sh_info);
6314
0
        plist = local_plt + ELF32_R_SYM (irel->r_info);
6315
0
      }
6316
0
    if (plist != NULL)
6317
0
      {
6318
0
        bfd_vma addend = 0;
6319
0
        struct plt_entry *ent;
6320
6321
0
        if (r_type == R_PPC_PLTREL24 && bfd_link_pic (link_info))
6322
0
    addend = irel->r_addend;
6323
0
        ent = find_plt_ent (plist, got2, addend);
6324
0
        if (ent != NULL)
6325
0
    {
6326
0
      if (htab->plt_type == PLT_NEW
6327
0
          || h == NULL
6328
0
          || !htab->elf.dynamic_sections_created
6329
0
          || h->dynindx == -1)
6330
0
        {
6331
0
          tsec = htab->glink;
6332
0
          toff = ent->glink_offset;
6333
0
        }
6334
0
      else
6335
0
        {
6336
0
          tsec = htab->elf.splt;
6337
0
          toff = ent->plt.offset;
6338
0
        }
6339
0
    }
6340
0
      }
6341
6342
    /* If the branch and target are in the same section, you have
6343
       no hope of adding stubs.  We'll error out later should the
6344
       branch overflow.  */
6345
0
    if (tsec == isec)
6346
0
      continue;
6347
6348
    /* toff is used for the symbol index when the symbol is
6349
       undefined and we're doing a relocatable link, so we can't
6350
       support addends.  It would be possible to do so by
6351
       putting the addend in one_branch_fixup but addends on
6352
       branches are rare so it hardly seems worth supporting.  */
6353
0
    if (bfd_link_relocatable (link_info)
6354
0
        && tsec == bfd_und_section_ptr
6355
0
        && r_type != R_PPC_PLTREL24
6356
0
        && irel->r_addend != 0)
6357
0
      continue;
6358
6359
    /* There probably isn't any reason to handle symbols in
6360
       SEC_MERGE sections;  SEC_MERGE doesn't seem a likely
6361
       attribute for a code section, and we are only looking at
6362
       branches.  However, implement it correctly here as a
6363
       reference for other target relax_section functions.  */
6364
0
    if (0 && tsec->sec_info_type == SEC_INFO_TYPE_MERGE)
6365
0
      {
6366
        /* At this stage in linking, no SEC_MERGE symbol has been
6367
     adjusted, so all references to such symbols need to be
6368
     passed through _bfd_merged_section_offset.  (Later, in
6369
     relocate_section, all SEC_MERGE symbols *except* for
6370
     section symbols have been adjusted.)
6371
6372
     gas may reduce relocations against symbols in SEC_MERGE
6373
     sections to a relocation against the section symbol when
6374
     the original addend was zero.  When the reloc is against
6375
     a section symbol we should include the addend in the
6376
     offset passed to _bfd_merged_section_offset, since the
6377
     location of interest is the original symbol.  On the
6378
     other hand, an access to "sym+addend" where "sym" is not
6379
     a section symbol should not include the addend;  Such an
6380
     access is presumed to be an offset from "sym";  The
6381
     location of interest is just "sym".  */
6382
0
        if (sym_type == STT_SECTION
6383
0
      && r_type != R_PPC_PLTREL24)
6384
0
    toff += irel->r_addend;
6385
6386
0
        toff
6387
0
    = _bfd_merged_section_offset (abfd, &tsec, toff);
6388
6389
0
        if (sym_type != STT_SECTION
6390
0
      && r_type != R_PPC_PLTREL24)
6391
0
    toff += irel->r_addend;
6392
0
      }
6393
    /* PLTREL24 addends are special.  */
6394
0
    else if (r_type != R_PPC_PLTREL24)
6395
0
      toff += irel->r_addend;
6396
6397
    /* Attempted -shared link of non-pic code loses.  */
6398
0
    if ((!bfd_link_relocatable (link_info)
6399
0
         && tsec == bfd_und_section_ptr)
6400
0
        || tsec->output_section == NULL
6401
0
        || (tsec->owner != NULL
6402
0
      && (tsec->owner->flags & BFD_PLUGIN) != 0))
6403
0
      continue;
6404
6405
0
    roff = irel->r_offset;
6406
0
    reladdr = isec->output_section->vma + isec->output_offset + roff;
6407
6408
    /* Avoid creating a lot of unnecessary fixups when
6409
       relocatable if the output section size is such that a
6410
       fixup can be created at final link.
6411
       The max_branch_offset adjustment allows for some number
6412
       of other fixups being needed at final link.  */
6413
0
    if (bfd_link_relocatable (link_info)
6414
0
        && (isec->output_section->rawsize - (isec->output_offset + roff)
6415
0
      < max_branch_offset - (max_branch_offset >> 4)))
6416
0
      continue;
6417
6418
    /* If the branch is in range, no need to do anything.  */
6419
0
    if (tsec != bfd_und_section_ptr
6420
0
        && (!bfd_link_relocatable (link_info)
6421
      /* A relocatable link may have sections moved during
6422
         final link, so do not presume they remain in range.  */
6423
0
      || tsec->output_section == isec->output_section))
6424
0
      {
6425
0
        bfd_vma symaddr;
6426
6427
0
        symaddr = tsec->output_section->vma + tsec->output_offset + toff;
6428
0
        if (symaddr - reladdr + max_branch_offset
6429
0
      < 2 * max_branch_offset)
6430
0
    continue;
6431
0
      }
6432
6433
    /* Look for an existing fixup to this address.  */
6434
0
    for (f = branch_fixups; f ; f = f->next)
6435
0
      if (f->tsec == tsec && f->toff == toff)
6436
0
        break;
6437
6438
0
    if (f == NULL)
6439
0
      {
6440
0
        size_t size;
6441
0
        unsigned long stub_rtype;
6442
6443
0
        val = trampoff - roff;
6444
0
        if (val >= max_branch_offset)
6445
    /* Oh dear, we can't reach a trampoline.  Don't try to add
6446
       one.  We'll report an error later.  */
6447
0
    continue;
6448
6449
0
        if (bfd_link_pic (link_info))
6450
0
    {
6451
0
      size = 4 * ARRAY_SIZE (shared_stub_entry);
6452
0
      insn_offset = 12;
6453
0
    }
6454
0
        else
6455
0
    {
6456
0
      size = 4 * ARRAY_SIZE (stub_entry);
6457
0
      insn_offset = 0;
6458
0
    }
6459
0
        stub_rtype = R_PPC_RELAX;
6460
0
        if (tsec == htab->elf.splt
6461
0
      || tsec == htab->glink)
6462
0
    {
6463
0
      stub_rtype = R_PPC_RELAX_PLT;
6464
0
      if (r_type == R_PPC_PLTREL24)
6465
0
        stub_rtype = R_PPC_RELAX_PLTREL24;
6466
0
    }
6467
6468
        /* Hijack the old relocation.  Since we need two
6469
     relocations for this use a "composite" reloc.  */
6470
0
        irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
6471
0
             stub_rtype);
6472
0
        irel->r_offset = trampoff + insn_offset;
6473
0
        if (r_type == R_PPC_PLTREL24
6474
0
      && stub_rtype != R_PPC_RELAX_PLTREL24)
6475
0
    irel->r_addend = 0;
6476
6477
        /* Record the fixup so we don't do it again this section.  */
6478
0
        f = bfd_malloc (sizeof (*f));
6479
0
        f->next = branch_fixups;
6480
0
        f->tsec = tsec;
6481
0
        f->toff = toff;
6482
0
        f->trampoff = trampoff;
6483
0
        branch_fixups = f;
6484
6485
0
        trampoff += size;
6486
0
        changes++;
6487
0
      }
6488
0
    else
6489
0
      {
6490
0
        val = f->trampoff - roff;
6491
0
        if (val >= max_branch_offset)
6492
0
    continue;
6493
6494
        /* Nop out the reloc, since we're finalizing things here.  */
6495
0
        irel->r_info = ELF32_R_INFO (0, R_PPC_NONE);
6496
0
      }
6497
6498
0
    link_info->callbacks->minfo
6499
0
      (_("%pB: Adjusting branch at 0x%V towards \"%s\" in section %s\n"),
6500
0
       abfd, reladdr,
6501
0
       (h && h->root.root.string? h->root.root.string : "<unknown>"),
6502
0
       f->tsec->name);
6503
6504
    /* Get the section contents.  */
6505
0
    if (contents == NULL)
6506
0
      {
6507
        /* Get cached copy if it exists.  */
6508
0
        if (elf_section_data (isec)->this_hdr.contents != NULL)
6509
0
    contents = elf_section_data (isec)->this_hdr.contents;
6510
        /* Go get them off disk.  */
6511
0
        else if (!bfd_malloc_and_get_section (abfd, isec, &contents))
6512
0
    goto error_return;
6513
0
      }
6514
6515
    /* Fix up the existing branch to hit the trampoline.  */
6516
0
    hit_addr = contents + roff;
6517
0
    switch (r_type)
6518
0
      {
6519
0
      case R_PPC_REL24:
6520
0
      case R_PPC_LOCAL24PC:
6521
0
      case R_PPC_PLTREL24:
6522
0
        t0 = bfd_get_32 (abfd, hit_addr);
6523
0
        t0 &= ~0x3fffffc;
6524
0
        t0 |= val & 0x3fffffc;
6525
0
        bfd_put_32 (abfd, t0, hit_addr);
6526
0
        break;
6527
6528
0
      case R_PPC_REL14:
6529
0
      case R_PPC_REL14_BRTAKEN:
6530
0
      case R_PPC_REL14_BRNTAKEN:
6531
0
        t0 = bfd_get_32 (abfd, hit_addr);
6532
0
        t0 &= ~0xfffc;
6533
0
        t0 |= val & 0xfffc;
6534
0
        bfd_put_32 (abfd, t0, hit_addr);
6535
0
        break;
6536
0
      }
6537
0
  }
6538
6539
0
      while (branch_fixups != NULL)
6540
0
  {
6541
0
    struct one_branch_fixup *f = branch_fixups;
6542
0
    branch_fixups = branch_fixups->next;
6543
0
    free (f);
6544
0
  }
6545
0
    }
6546
6547
0
  workaround_change = false;
6548
0
  newsize = trampoff;
6549
0
  if (htab->params->ppc476_workaround
6550
0
      && (!bfd_link_relocatable (link_info)
6551
0
    || isec->output_section->alignment_power >= htab->params->pagesize_p2))
6552
0
    {
6553
0
      bfd_vma addr, end_addr;
6554
0
      unsigned int crossings;
6555
0
      bfd_vma pagesize = (bfd_vma) 1 << htab->params->pagesize_p2;
6556
6557
0
      addr = isec->output_section->vma + isec->output_offset;
6558
0
      end_addr = addr + trampoff;
6559
0
      addr &= -pagesize;
6560
0
      crossings = ((end_addr & -pagesize) - addr) >> htab->params->pagesize_p2;
6561
0
      if (crossings != 0)
6562
0
  {
6563
    /* Keep space aligned, to ensure the patch code itself does
6564
       not cross a page.  Don't decrease size calculated on a
6565
       previous pass as otherwise we might never settle on a layout.  */
6566
0
    newsize = 15 - ((end_addr - 1) & 15);
6567
0
    newsize += crossings * 16;
6568
0
    if (relax_info->workaround_size < newsize)
6569
0
      {
6570
0
        relax_info->workaround_size = newsize;
6571
0
        workaround_change = true;
6572
0
      }
6573
    /* Ensure relocate_section is called.  */
6574
0
    isec->flags |= SEC_RELOC;
6575
0
  }
6576
0
      newsize = trampoff + relax_info->workaround_size;
6577
0
    }
6578
6579
0
  if (htab->params->pic_fixup > 0)
6580
0
    {
6581
0
      picfixup_size -= relax_info->picfixup_size;
6582
0
      if (picfixup_size != 0)
6583
0
  relax_info->picfixup_size += picfixup_size;
6584
0
      newsize += relax_info->picfixup_size;
6585
0
    }
6586
6587
0
  if (changes != 0 || picfixup_size != 0 || workaround_change)
6588
0
    isec->size = newsize;
6589
6590
0
  if (isymbuf != NULL
6591
0
      && symtab_hdr->contents != (unsigned char *) isymbuf)
6592
0
    {
6593
0
      if (! link_info->keep_memory)
6594
0
  free (isymbuf);
6595
0
      else
6596
0
  {
6597
    /* Cache the symbols for elf_link_input_bfd.  */
6598
0
    symtab_hdr->contents = (unsigned char *) isymbuf;
6599
0
  }
6600
0
    }
6601
6602
0
  if (contents != NULL
6603
0
      && elf_section_data (isec)->this_hdr.contents != contents)
6604
0
    {
6605
0
      if (!changes && !link_info->keep_memory)
6606
0
  free (contents);
6607
0
      else
6608
0
  {
6609
    /* Cache the section contents for elf_link_input_bfd.  */
6610
0
    elf_section_data (isec)->this_hdr.contents = contents;
6611
0
  }
6612
0
    }
6613
6614
0
  changes += picfixup_size;
6615
0
  if (changes != 0)
6616
0
    {
6617
      /* Append sufficient NOP relocs so we can write out relocation
6618
   information for the trampolines.  */
6619
0
      size_t old_size = isec->reloc_count * sizeof (*internal_relocs);
6620
0
      size_t extra_size = changes * sizeof (*internal_relocs);
6621
0
      internal_relocs = bfd_realloc (internal_relocs, old_size + extra_size);
6622
0
      elf_section_data (isec)->relocs = internal_relocs;
6623
0
      if (!internal_relocs)
6624
0
  goto error_return;
6625
0
      memset ((char *) internal_relocs + old_size, 0, extra_size);
6626
0
      isec->reloc_count += changes;
6627
0
      Elf_Internal_Shdr *rel_hdr = _bfd_elf_single_rel_hdr (isec);
6628
0
      rel_hdr->sh_size += changes * rel_hdr->sh_entsize;
6629
0
    }
6630
0
  else if (elf_section_data (isec)->relocs != internal_relocs)
6631
0
    free (internal_relocs);
6632
6633
0
  *again = changes != 0 || workaround_change;
6634
0
  return true;
6635
6636
0
 error_return:
6637
0
  while (branch_fixups != NULL)
6638
0
    {
6639
0
      struct one_branch_fixup *f = branch_fixups;
6640
0
      branch_fixups = branch_fixups->next;
6641
0
      free (f);
6642
0
    }
6643
0
  if ((unsigned char *) isymbuf != symtab_hdr->contents)
6644
0
    free (isymbuf);
6645
0
  if (elf_section_data (isec)->this_hdr.contents != contents)
6646
0
    free (contents);
6647
0
  if (elf_section_data (isec)->relocs != internal_relocs)
6648
0
    free (internal_relocs);
6649
0
  return false;
6650
0
}
6651

6652
/* What to do when ld finds relocations against symbols defined in
6653
   discarded sections.  */
6654
6655
static unsigned int
6656
ppc_elf_action_discarded (asection *sec)
6657
0
{
6658
0
  if (strcmp (".fixup", sec->name) == 0)
6659
0
    return 0;
6660
6661
0
  if (strcmp (".got2", sec->name) == 0)
6662
0
    return 0;
6663
6664
0
  return _bfd_elf_default_action_discarded (sec);
6665
0
}
6666

6667
/* Fill in the address for a pointer generated in a linker section.  */
6668
6669
static bfd_vma
6670
elf_finish_pointer_linker_section (bfd *input_bfd,
6671
           elf_linker_section_t *lsect,
6672
           struct elf_link_hash_entry *h,
6673
           bfd_vma relocation,
6674
           const Elf_Internal_Rela *rel)
6675
0
{
6676
0
  elf_linker_section_pointers_t *linker_section_ptr;
6677
6678
0
  BFD_ASSERT (lsect != NULL);
6679
6680
0
  if (h != NULL)
6681
0
    {
6682
      /* Handle global symbol.  */
6683
0
      struct ppc_elf_link_hash_entry *eh;
6684
6685
0
      eh = (struct ppc_elf_link_hash_entry *) h;
6686
0
      BFD_ASSERT (eh->elf.def_regular);
6687
0
      linker_section_ptr = eh->linker_section_pointer;
6688
0
    }
6689
0
  else
6690
0
    {
6691
      /* Handle local symbol.  */
6692
0
      unsigned long r_symndx = ELF32_R_SYM (rel->r_info);
6693
6694
0
      BFD_ASSERT (is_ppc_elf (input_bfd));
6695
0
      BFD_ASSERT (elf_local_ptr_offsets (input_bfd) != NULL);
6696
0
      linker_section_ptr = elf_local_ptr_offsets (input_bfd)[r_symndx];
6697
0
    }
6698
6699
0
  linker_section_ptr = elf_find_pointer_linker_section (linker_section_ptr,
6700
0
              rel->r_addend,
6701
0
              lsect);
6702
0
  BFD_ASSERT (linker_section_ptr != NULL);
6703
6704
  /* Offset will always be a multiple of four, so use the bottom bit
6705
     as a "written" flag.  */
6706
0
  if ((linker_section_ptr->offset & 1) == 0)
6707
0
    {
6708
0
      bfd_put_32 (lsect->section->owner,
6709
0
      relocation + linker_section_ptr->addend,
6710
0
      lsect->section->contents + linker_section_ptr->offset);
6711
0
      linker_section_ptr->offset += 1;
6712
0
    }
6713
6714
0
  relocation = (lsect->section->output_section->vma
6715
0
    + lsect->section->output_offset
6716
0
    + linker_section_ptr->offset - 1
6717
0
    - SYM_VAL (lsect->sym));
6718
6719
#ifdef DEBUG
6720
  fprintf (stderr,
6721
     "Finish pointer in linker section %s, offset = %ld (0x%lx)\n",
6722
     lsect->name, (long) relocation, (long) relocation);
6723
#endif
6724
6725
0
  return relocation;
6726
0
}
6727
6728
#define PPC_LO(v) ((v) & 0xffff)
6729
0
#define PPC_HI(v) (((v) >> 16) & 0xffff)
6730
0
#define PPC_HA(v) PPC_HI ((v) + 0x8000)
6731
6732
static void
6733
write_glink_stub (struct elf_link_hash_entry *h, struct plt_entry *ent,
6734
      asection *plt_sec, unsigned char *p,
6735
      struct bfd_link_info *info)
6736
0
{
6737
0
  struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
6738
0
  bfd *output_bfd = info->output_bfd;
6739
0
  bfd_vma plt;
6740
0
  unsigned char *end = p + GLINK_ENTRY_SIZE (htab, h);
6741
6742
0
  if (h != NULL
6743
0
      && h == htab->tls_get_addr
6744
0
      && !htab->params->no_tls_get_addr_opt)
6745
0
    {
6746
0
      bfd_put_32 (output_bfd, LWZ_11_3, p);
6747
0
      p += 4;
6748
0
      bfd_put_32 (output_bfd, LWZ_12_3 + 4, p);
6749
0
      p += 4;
6750
0
      bfd_put_32 (output_bfd, MR_0_3, p);
6751
0
      p += 4;
6752
0
      bfd_put_32 (output_bfd, CMPWI_11_0, p);
6753
0
      p += 4;
6754
0
      bfd_put_32 (output_bfd, ADD_3_12_2, p);
6755
0
      p += 4;
6756
0
      bfd_put_32 (output_bfd, BEQLR, p);
6757
0
      p += 4;
6758
0
      bfd_put_32 (output_bfd, MR_3_0, p);
6759
0
      p += 4;
6760
0
      bfd_put_32 (output_bfd, NOP, p);
6761
0
      p += 4;
6762
0
    }
6763
6764
0
  plt = ((ent->plt.offset & ~1)
6765
0
   + plt_sec->output_section->vma
6766
0
   + plt_sec->output_offset);
6767
6768
0
  if (bfd_link_pic (info))
6769
0
    {
6770
0
      bfd_vma got = 0;
6771
6772
0
      if (ent->addend >= 32768)
6773
0
  got = (ent->addend
6774
0
         + ent->sec->output_section->vma
6775
0
         + ent->sec->output_offset);
6776
0
      else if (htab->elf.hgot != NULL)
6777
0
  got = SYM_VAL (htab->elf.hgot);
6778
6779
0
      plt -= got;
6780
6781
0
      if (plt + 0x8000 < 0x10000)
6782
0
  bfd_put_32 (output_bfd, LWZ_11_30 + PPC_LO (plt), p);
6783
0
      else
6784
0
  {
6785
0
    bfd_put_32 (output_bfd, ADDIS_11_30 + PPC_HA (plt), p);
6786
0
    p += 4;
6787
0
    bfd_put_32 (output_bfd, LWZ_11_11 + PPC_LO (plt), p);
6788
0
  }
6789
0
    }
6790
0
  else
6791
0
    {
6792
0
      bfd_put_32 (output_bfd, LIS_11 + PPC_HA (plt), p);
6793
0
      p += 4;
6794
0
      bfd_put_32 (output_bfd, LWZ_11_11 + PPC_LO (plt), p);
6795
0
    }
6796
0
  p += 4;
6797
0
  bfd_put_32 (output_bfd, MTCTR_11, p);
6798
0
  p += 4;
6799
0
  bfd_put_32 (output_bfd, BCTR, p);
6800
0
  p += 4;
6801
0
  while (p < end)
6802
0
    {
6803
0
      bfd_put_32 (output_bfd, htab->params->ppc476_workaround ? BA : NOP, p);
6804
0
      p += 4;
6805
0
    }
6806
0
}
6807
6808
/* Return true if symbol is defined statically.  */
6809
6810
static bool
6811
is_static_defined (struct elf_link_hash_entry *h)
6812
0
{
6813
0
  return ((h->root.type == bfd_link_hash_defined
6814
0
     || h->root.type == bfd_link_hash_defweak)
6815
0
    && h->root.u.def.section != NULL
6816
0
    && h->root.u.def.section->output_section != NULL);
6817
0
}
6818
6819
/* If INSN is an opcode that may be used with an @tls operand, return
6820
   the transformed insn for TLS optimisation, otherwise return 0.  If
6821
   REG is non-zero only match an insn with RB or RA equal to REG.  */
6822
6823
unsigned int
6824
bfd_elf_ppc_at_tls_transform (unsigned int insn, unsigned int reg)
6825
0
{
6826
0
  unsigned int rtra;
6827
6828
0
  if ((insn & (0x3fu << 26)) != 31 << 26)
6829
0
    return 0;
6830
6831
0
  if (reg == 0 || ((insn >> 11) & 0x1f) == reg)
6832
0
    rtra = insn & ((1 << 26) - (1 << 16));
6833
0
  else if (((insn >> 16) & 0x1f) == reg)
6834
0
    rtra = (insn & (0x1f << 21)) | ((insn & (0x1f << 11)) << 5);
6835
0
  else
6836
0
    return 0;
6837
6838
0
  if ((insn & (0x3ff << 1)) == 266 << 1)
6839
    /* add -> addi.  */
6840
0
    insn = 14 << 26;
6841
0
  else if ((insn & (0x1f << 1)) == 23 << 1
6842
0
     && ((insn & (0x1f << 6)) < 14 << 6
6843
0
         || ((insn & (0x1f << 6)) >= 16 << 6
6844
0
       && (insn & (0x1f << 6)) < 24 << 6)))
6845
    /* load and store indexed -> dform.  */
6846
0
    insn = (32u | ((insn >> 6) & 0x1f)) << 26;
6847
0
  else if ((insn & (((0x1a << 5) | 0x1f) << 1)) == 21 << 1)
6848
    /* ldx, ldux, stdx, stdux -> ld, ldu, std, stdu.  */
6849
0
    insn = ((58u | ((insn >> 6) & 4)) << 26) | ((insn >> 6) & 1);
6850
0
  else if ((insn & (((0x1f << 5) | 0x1f) << 1)) == 341 << 1)
6851
    /* lwax -> lwa.  */
6852
0
    insn = (58u << 26) | 2;
6853
0
  else
6854
0
    return 0;
6855
0
  insn |= rtra;
6856
0
  return insn;
6857
0
}
6858
6859
/* If INSN is an opcode that may be used with an @tprel operand, return
6860
   the transformed insn for an undefined weak symbol, ie. with the
6861
   thread pointer REG operand removed.  Otherwise return 0.  */
6862
6863
unsigned int
6864
_bfd_elf_ppc_at_tprel_transform (unsigned int insn, unsigned int reg)
6865
0
{
6866
0
  if ((insn & (0x1f << 16)) == reg << 16
6867
0
      && ((insn & (0x3fu << 26)) == 14u << 26 /* addi */
6868
0
    || (insn & (0x3fu << 26)) == 15u << 26 /* addis */
6869
0
    || (insn & (0x3fu << 26)) == 32u << 26 /* lwz */
6870
0
    || (insn & (0x3fu << 26)) == 34u << 26 /* lbz */
6871
0
    || (insn & (0x3fu << 26)) == 36u << 26 /* stw */
6872
0
    || (insn & (0x3fu << 26)) == 38u << 26 /* stb */
6873
0
    || (insn & (0x3fu << 26)) == 40u << 26 /* lhz */
6874
0
    || (insn & (0x3fu << 26)) == 42u << 26 /* lha */
6875
0
    || (insn & (0x3fu << 26)) == 44u << 26 /* sth */
6876
0
    || (insn & (0x3fu << 26)) == 46u << 26 /* lmw */
6877
0
    || (insn & (0x3fu << 26)) == 47u << 26 /* stmw */
6878
0
    || (insn & (0x3fu << 26)) == 48u << 26 /* lfs */
6879
0
    || (insn & (0x3fu << 26)) == 50u << 26 /* lfd */
6880
0
    || (insn & (0x3fu << 26)) == 52u << 26 /* stfs */
6881
0
    || (insn & (0x3fu << 26)) == 54u << 26 /* stfd */
6882
0
    || ((insn & (0x3fu << 26)) == 58u << 26 /* lwa,ld,lmd */
6883
0
        && (insn & 3) != 1)
6884
0
    || ((insn & (0x3fu << 26)) == 62u << 26 /* std, stmd */
6885
0
        && ((insn & 3) == 0 || (insn & 3) == 3))))
6886
0
    {
6887
0
      insn &= ~(0x1f << 16);
6888
0
    }
6889
0
  else if ((insn & (0x1f << 21)) == reg << 21
6890
0
     && ((insn & (0x3eu << 26)) == 24u << 26 /* ori, oris */
6891
0
         || (insn & (0x3eu << 26)) == 26u << 26 /* xori,xoris */
6892
0
         || (insn & (0x3eu << 26)) == 28u << 26 /* andi,andis */))
6893
0
    {
6894
0
      insn &= ~(0x1f << 21);
6895
0
      insn |= (insn & (0x1f << 16)) << 5;
6896
0
      if ((insn & (0x3eu << 26)) == 26u << 26 /* xori,xoris */)
6897
0
  insn -= 2 >> 26;  /* convert to ori,oris */
6898
0
    }
6899
0
  else
6900
0
    insn = 0;
6901
0
  return insn;
6902
0
}
6903
6904
static bool
6905
is_insn_ds_form (unsigned int insn)
6906
0
{
6907
0
  return ((insn & (0x3fu << 26)) == 58u << 26 /* ld,ldu,lwa */
6908
0
    || (insn & (0x3fu << 26)) == 62u << 26 /* std,stdu,stq */
6909
0
    || (insn & (0x3fu << 26)) == 57u << 26 /* lfdp */
6910
0
    || (insn & (0x3fu << 26)) == 61u << 26 /* stfdp */);
6911
0
}
6912
6913
static bool
6914
is_insn_dq_form (unsigned int insn)
6915
0
{
6916
0
  return ((insn & (0x3fu << 26)) == 56u << 26 /* lq */
6917
0
    || ((insn & (0x3fu << 26)) == (61u << 26) /* lxv, stxv */
6918
0
        && (insn & 3) == 1));
6919
0
}
6920
6921
static bool
6922
swap_reloc_out (bfd *obfd, Elf_Internal_Rela *rel, bfd_byte *loc, asection *s)
6923
0
{
6924
0
  if ((size_t) (loc - s->contents) >= s->size)
6925
0
    return false;
6926
0
  bfd_elf32_swap_reloca_out (obfd, rel, loc);
6927
0
  return true;
6928
0
}
6929
6930
static bool
6931
count_and_swap_reloc_out (bfd *obfd, Elf_Internal_Rela *rel, asection *s)
6932
0
{
6933
0
  bfd_byte *loc = s->contents;
6934
0
  loc += s->reloc_count++ * sizeof (Elf32_External_Rela);
6935
0
  return swap_reloc_out (obfd, rel, loc, s);
6936
0
}
6937
6938
/* The RELOCATE_SECTION function is called by the ELF backend linker
6939
   to handle the relocations for a section.
6940
6941
   The relocs are always passed as Rela structures; if the section
6942
   actually uses Rel structures, the r_addend field will always be
6943
   zero.
6944
6945
   This function is responsible for adjust the section contents as
6946
   necessary, and (if using Rela relocs and generating a
6947
   relocatable output file) adjusting the reloc addend as
6948
   necessary.
6949
6950
   This function does not have to worry about setting the reloc
6951
   address or the reloc symbol index.
6952
6953
   LOCAL_SYMS is a pointer to the swapped in local symbols.
6954
6955
   LOCAL_SECTIONS is an array giving the section in the input file
6956
   corresponding to the st_shndx field of each local symbol.
6957
6958
   The global hash table entry for the global symbols can be found
6959
   via elf_sym_hashes (input_bfd).
6960
6961
   When generating relocatable output, this function must handle
6962
   STB_LOCAL/STT_SECTION symbols specially.  The output symbol is
6963
   going to be the section symbol corresponding to the output
6964
   section, which means that the addend must be adjusted
6965
   accordingly.  */
6966
6967
static int
6968
ppc_elf_relocate_section (bfd *output_bfd,
6969
        struct bfd_link_info *info,
6970
        bfd *input_bfd,
6971
        asection *input_section,
6972
        bfd_byte *contents,
6973
        Elf_Internal_Rela *relocs,
6974
        Elf_Internal_Sym *local_syms,
6975
        asection **local_sections)
6976
0
{
6977
0
  Elf_Internal_Shdr *symtab_hdr;
6978
0
  struct elf_link_hash_entry **sym_hashes;
6979
0
  struct ppc_elf_link_hash_table *htab;
6980
0
  Elf_Internal_Rela *rel;
6981
0
  Elf_Internal_Rela *wrel;
6982
0
  Elf_Internal_Rela *relend;
6983
0
  Elf_Internal_Rela outrel;
6984
0
  asection *got2;
6985
0
  bfd_vma *local_got_offsets;
6986
0
  bool ret = true;
6987
0
  bfd_vma d_offset = (bfd_big_endian (input_bfd) ? 2 : 0);
6988
0
  bool is_vxworks_tls;
6989
0
  unsigned int picfixup_size = 0;
6990
0
  struct ppc_elf_relax_info *relax_info = NULL;
6991
6992
#ifdef DEBUG
6993
  _bfd_error_handler ("ppc_elf_relocate_section called for %pB section %pA, "
6994
          "%ld relocations%s",
6995
          input_bfd, input_section,
6996
          (long) input_section->reloc_count,
6997
          (bfd_link_relocatable (info)) ? " (relocatable)" : "");
6998
#endif
6999
7000
0
  if (!is_ppc_elf (input_bfd))
7001
0
    {
7002
0
      bfd_set_error (bfd_error_wrong_format);
7003
0
      return false;
7004
0
    }
7005
7006
0
  got2 = bfd_get_section_by_name (input_bfd, ".got2");
7007
7008
  /* Initialize howto table if not already done.  */
7009
0
  if (!ppc_elf_howto_table[R_PPC_ADDR32])
7010
0
    ppc_elf_howto_init ();
7011
7012
0
  htab = ppc_elf_hash_table (info);
7013
0
  local_got_offsets = elf_local_got_offsets (input_bfd);
7014
0
  symtab_hdr = &elf_symtab_hdr (input_bfd);
7015
0
  sym_hashes = elf_sym_hashes (input_bfd);
7016
  /* We have to handle relocations in vxworks .tls_vars sections
7017
     specially, because the dynamic loader is 'weird'.  */
7018
0
  is_vxworks_tls = (htab->elf.target_os == is_vxworks && bfd_link_pic (info)
7019
0
        && !strcmp (input_section->output_section->name,
7020
0
        ".tls_vars"));
7021
0
  if (input_section->sec_info_type == SEC_INFO_TYPE_TARGET)
7022
0
    relax_info = input_section->sec_info;
7023
0
  rel = wrel = relocs;
7024
0
  relend = relocs + input_section->reloc_count;
7025
0
  for (; rel < relend; wrel++, rel++)
7026
0
    {
7027
0
      enum elf_ppc_reloc_type r_type;
7028
0
      bfd_vma addend;
7029
0
      bfd_reloc_status_type r;
7030
0
      Elf_Internal_Sym *sym;
7031
0
      asection *sec;
7032
0
      struct elf_link_hash_entry *h;
7033
0
      const char *sym_name;
7034
0
      reloc_howto_type *howto;
7035
0
      unsigned long r_symndx;
7036
0
      bfd_vma relocation;
7037
0
      bfd_vma branch_bit, from;
7038
0
      bool unresolved_reloc, save_unresolved_reloc;
7039
0
      bool warned;
7040
0
      unsigned int tls_type, tls_mask, tls_gd;
7041
0
      struct plt_entry **ifunc, **plt_list;
7042
0
      struct reloc_howto_struct alt_howto;
7043
7044
0
    again:
7045
0
      r_type = ELF32_R_TYPE (rel->r_info);
7046
0
      sym = NULL;
7047
0
      sec = NULL;
7048
0
      h = NULL;
7049
0
      unresolved_reloc = false;
7050
0
      warned = false;
7051
0
      r_symndx = ELF32_R_SYM (rel->r_info);
7052
7053
0
      if (r_symndx < symtab_hdr->sh_info)
7054
0
  {
7055
0
    sym = local_syms + r_symndx;
7056
0
    sec = local_sections[r_symndx];
7057
0
    sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym, sec);
7058
7059
0
    relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
7060
0
  }
7061
0
      else
7062
0
  {
7063
0
    bool ignored;
7064
7065
0
    RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
7066
0
           r_symndx, symtab_hdr, sym_hashes,
7067
0
           h, sec, relocation,
7068
0
           unresolved_reloc, warned, ignored);
7069
7070
0
    sym_name = h->root.root.string;
7071
0
  }
7072
7073
0
      if (sec != NULL && discarded_section (sec))
7074
0
  {
7075
    /* For relocs against symbols from removed linkonce sections,
7076
       or sections discarded by a linker script, we just want the
7077
       section contents zeroed.  Avoid any special processing.  */
7078
0
    if (r_type < ARRAY_SIZE (ppc_elf_howto_table)
7079
0
        && ppc_elf_howto_table[r_type] != NULL)
7080
0
      _bfd_clear_contents (ppc_elf_howto_table[r_type],
7081
0
         input_bfd, input_section,
7082
0
         contents, rel->r_offset);
7083
0
    wrel->r_offset = rel->r_offset;
7084
0
    wrel->r_info = 0;
7085
0
    wrel->r_addend = 0;
7086
7087
    /* For ld -r, remove relocations in debug sections against
7088
       symbols defined in discarded sections.  Not done for
7089
       non-debug to preserve relocs in .eh_frame which the
7090
       eh_frame editing code expects to be present.  */
7091
0
    if (bfd_link_relocatable (info)
7092
0
        && (input_section->flags & SEC_DEBUGGING))
7093
0
      wrel--;
7094
7095
0
    continue;
7096
0
  }
7097
7098
0
      if (bfd_link_relocatable (info))
7099
0
  {
7100
0
    if (got2 != NULL
7101
0
        && r_type == R_PPC_PLTREL24
7102
0
        && rel->r_addend != 0)
7103
0
      {
7104
        /* R_PPC_PLTREL24 is rather special.  If non-zero, the
7105
     addend specifies the GOT pointer offset within .got2.  */
7106
0
        rel->r_addend += got2->output_offset;
7107
0
      }
7108
0
    if (r_type != R_PPC_RELAX_PLT
7109
0
        && r_type != R_PPC_RELAX_PLTREL24
7110
0
        && r_type != R_PPC_RELAX)
7111
0
      goto copy_reloc;
7112
0
  }
7113
7114
      /* TLS optimizations.  Replace instruction sequences and relocs
7115
   based on information we collected in tls_optimize.  We edit
7116
   RELOCS so that --emit-relocs will output something sensible
7117
   for the final instruction stream.  */
7118
0
      tls_mask = 0;
7119
0
      tls_gd = 0;
7120
0
      if (h != NULL)
7121
0
  tls_mask = ((struct ppc_elf_link_hash_entry *) h)->tls_mask;
7122
0
      else if (local_got_offsets != NULL)
7123
0
  {
7124
0
    struct plt_entry **local_plt;
7125
0
    char *lgot_masks;
7126
0
    local_plt
7127
0
      = (struct plt_entry **) (local_got_offsets + symtab_hdr->sh_info);
7128
0
    lgot_masks = (char *) (local_plt + symtab_hdr->sh_info);
7129
0
    tls_mask = lgot_masks[r_symndx];
7130
0
  }
7131
7132
      /* Ensure reloc mapping code below stays sane.  */
7133
0
      if ((R_PPC_GOT_TLSLD16 & 3)    != (R_PPC_GOT_TLSGD16 & 3)
7134
0
    || (R_PPC_GOT_TLSLD16_LO & 3) != (R_PPC_GOT_TLSGD16_LO & 3)
7135
0
    || (R_PPC_GOT_TLSLD16_HI & 3) != (R_PPC_GOT_TLSGD16_HI & 3)
7136
0
    || (R_PPC_GOT_TLSLD16_HA & 3) != (R_PPC_GOT_TLSGD16_HA & 3)
7137
0
    || (R_PPC_GOT_TLSLD16 & 3)    != (R_PPC_GOT_TPREL16 & 3)
7138
0
    || (R_PPC_GOT_TLSLD16_LO & 3) != (R_PPC_GOT_TPREL16_LO & 3)
7139
0
    || (R_PPC_GOT_TLSLD16_HI & 3) != (R_PPC_GOT_TPREL16_HI & 3)
7140
0
    || (R_PPC_GOT_TLSLD16_HA & 3) != (R_PPC_GOT_TPREL16_HA & 3))
7141
0
  abort ();
7142
0
      switch (r_type)
7143
0
  {
7144
0
  default:
7145
0
    break;
7146
7147
0
  case R_PPC_GOT_TPREL16:
7148
0
  case R_PPC_GOT_TPREL16_LO:
7149
0
    if ((tls_mask & TLS_TLS) != 0
7150
0
        && (tls_mask & TLS_TPREL) == 0
7151
0
        && offset_in_range (input_section, rel->r_offset - d_offset, 4))
7152
0
      {
7153
0
        bfd_vma insn;
7154
7155
0
        insn = bfd_get_32 (input_bfd,
7156
0
         contents + rel->r_offset - d_offset);
7157
0
        insn &= 31 << 21;
7158
0
        insn |= 0x3c020000; /* addis 0,2,0 */
7159
0
        bfd_put_32 (input_bfd, insn,
7160
0
        contents + rel->r_offset - d_offset);
7161
0
        r_type = R_PPC_TPREL16_HA;
7162
0
        rel->r_info = ELF32_R_INFO (r_symndx, r_type);
7163
0
      }
7164
0
    break;
7165
7166
0
  case R_PPC_TLS:
7167
0
    if ((tls_mask & TLS_TLS) != 0
7168
0
        && (tls_mask & TLS_TPREL) == 0
7169
0
        && offset_in_range (input_section, rel->r_offset, 4))
7170
0
      {
7171
0
        bfd_vma insn;
7172
7173
0
        insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
7174
0
        insn = bfd_elf_ppc_at_tls_transform (insn, 2);
7175
0
        if (insn == 0)
7176
0
    abort ();
7177
0
        bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
7178
0
        r_type = R_PPC_TPREL16_LO;
7179
0
        rel->r_info = ELF32_R_INFO (r_symndx, r_type);
7180
7181
        /* Was PPC_TLS which sits on insn boundary, now
7182
     PPC_TPREL16_LO which is at low-order half-word.  */
7183
0
        rel->r_offset += d_offset;
7184
0
      }
7185
0
    break;
7186
7187
0
  case R_PPC_GOT_TLSGD16_HI:
7188
0
  case R_PPC_GOT_TLSGD16_HA:
7189
0
    tls_gd = TLS_GDIE;
7190
0
    if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_GD) == 0
7191
0
        && offset_in_range (input_section, rel->r_offset - d_offset, 4))
7192
0
      goto tls_gdld_hi;
7193
0
    break;
7194
7195
0
  case R_PPC_GOT_TLSLD16_HI:
7196
0
  case R_PPC_GOT_TLSLD16_HA:
7197
0
    if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_LD) == 0
7198
0
        && offset_in_range (input_section, rel->r_offset - d_offset, 4))
7199
0
      {
7200
0
      tls_gdld_hi:
7201
0
        if ((tls_mask & tls_gd) != 0)
7202
0
    r_type = (((r_type - (R_PPC_GOT_TLSGD16 & 3)) & 3)
7203
0
        + R_PPC_GOT_TPREL16);
7204
0
        else
7205
0
    {
7206
0
      rel->r_offset -= d_offset;
7207
0
      bfd_put_32 (input_bfd, NOP, contents + rel->r_offset);
7208
0
      r_type = R_PPC_NONE;
7209
0
    }
7210
0
        rel->r_info = ELF32_R_INFO (r_symndx, r_type);
7211
0
      }
7212
0
    break;
7213
7214
0
  case R_PPC_GOT_TLSGD16:
7215
0
  case R_PPC_GOT_TLSGD16_LO:
7216
0
    tls_gd = TLS_GDIE;
7217
0
    if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_GD) == 0
7218
0
        && offset_in_range (input_section, rel->r_offset - d_offset, 4))
7219
0
      goto tls_ldgd_opt;
7220
0
    break;
7221
7222
0
  case R_PPC_GOT_TLSLD16:
7223
0
  case R_PPC_GOT_TLSLD16_LO:
7224
0
    if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_LD) == 0
7225
0
        && offset_in_range (input_section, rel->r_offset - d_offset, 4))
7226
0
      {
7227
0
        unsigned int insn1, insn2;
7228
0
        bfd_vma offset;
7229
7230
0
      tls_ldgd_opt:
7231
0
        offset = (bfd_vma) -1;
7232
        /* If not using the newer R_PPC_TLSGD/LD to mark
7233
     __tls_get_addr calls, we must trust that the call
7234
     stays with its arg setup insns, ie. that the next
7235
     reloc is the __tls_get_addr call associated with
7236
     the current reloc.  Edit both insns.  */
7237
0
        if (input_section->nomark_tls_get_addr
7238
0
      && rel + 1 < relend
7239
0
      && branch_reloc_hash_match (input_bfd, rel + 1,
7240
0
                htab->tls_get_addr))
7241
0
    offset = rel[1].r_offset;
7242
        /* We read the low GOT_TLS insn because we need to keep
7243
     the destination reg.  It may be something other than
7244
     the usual r3, and moved to r3 before the call by
7245
     intervening code.  */
7246
0
        insn1 = bfd_get_32 (input_bfd,
7247
0
          contents + rel->r_offset - d_offset);
7248
0
        if ((tls_mask & tls_gd) != 0)
7249
0
    {
7250
      /* IE */
7251
0
      insn1 &= (0x1f << 21) | (0x1f << 16);
7252
0
      insn1 |= 32u << 26; /* lwz */
7253
0
      if (offset != (bfd_vma) -1
7254
0
          && offset_in_range (input_section, offset, 4))
7255
0
        {
7256
0
          rel[1].r_info = ELF32_R_INFO (STN_UNDEF, R_PPC_NONE);
7257
0
          insn2 = 0x7c631214; /* add 3,3,2 */
7258
0
          bfd_put_32 (input_bfd, insn2, contents + offset);
7259
0
        }
7260
0
      r_type = (((r_type - (R_PPC_GOT_TLSGD16 & 3)) & 3)
7261
0
          + R_PPC_GOT_TPREL16);
7262
0
      rel->r_info = ELF32_R_INFO (r_symndx, r_type);
7263
0
    }
7264
0
        else
7265
0
    {
7266
      /* LE */
7267
0
      insn1 &= 0x1f << 21;
7268
0
      insn1 |= 0x3c020000;  /* addis r,2,0 */
7269
0
      if (tls_gd == 0)
7270
0
        {
7271
          /* Was an LD reloc.  */
7272
0
          for (r_symndx = 0;
7273
0
         r_symndx < symtab_hdr->sh_info;
7274
0
         r_symndx++)
7275
0
      if (local_sections[r_symndx] == sec)
7276
0
        break;
7277
0
          if (r_symndx >= symtab_hdr->sh_info)
7278
0
      r_symndx = STN_UNDEF;
7279
0
          rel->r_addend = htab->elf.tls_sec->vma + DTP_OFFSET;
7280
0
          if (r_symndx != STN_UNDEF)
7281
0
      rel->r_addend -= (local_syms[r_symndx].st_value
7282
0
            + sec->output_offset
7283
0
            + sec->output_section->vma);
7284
0
        }
7285
0
      r_type = R_PPC_TPREL16_HA;
7286
0
      rel->r_info = ELF32_R_INFO (r_symndx, r_type);
7287
0
      if (offset != (bfd_vma) -1
7288
0
          && offset_in_range (input_section, offset, 4))
7289
0
        {
7290
0
          rel[1].r_info = ELF32_R_INFO (r_symndx, R_PPC_TPREL16_LO);
7291
0
          rel[1].r_offset = offset + d_offset;
7292
0
          rel[1].r_addend = rel->r_addend;
7293
0
          insn2 = 0x38630000; /* addi 3,3,0 */
7294
0
          bfd_put_32 (input_bfd, insn2, contents + offset);
7295
0
        }
7296
0
    }
7297
0
        bfd_put_32 (input_bfd, insn1,
7298
0
        contents + rel->r_offset - d_offset);
7299
0
        if (tls_gd == 0)
7300
0
    {
7301
      /* We changed the symbol on an LD reloc.  Start over
7302
         in order to get h, sym, sec etc. right.  */
7303
0
      goto again;
7304
0
    }
7305
0
      }
7306
0
    break;
7307
7308
0
  case R_PPC_TLSGD:
7309
0
    if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_GD) == 0
7310
0
        && rel + 1 < relend
7311
0
        && offset_in_range (input_section, rel->r_offset, 4))
7312
0
      {
7313
0
        unsigned int insn2;
7314
0
        bfd_vma offset = rel->r_offset;
7315
7316
0
        if (is_plt_seq_reloc (ELF32_R_TYPE (rel[1].r_info)))
7317
0
    {
7318
0
      bfd_put_32 (input_bfd, NOP, contents + offset);
7319
0
      rel[1].r_info = ELF32_R_INFO (STN_UNDEF, R_PPC_NONE);
7320
0
      break;
7321
0
    }
7322
7323
0
        if ((tls_mask & TLS_GDIE) != 0)
7324
0
    {
7325
      /* IE */
7326
0
      r_type = R_PPC_NONE;
7327
0
      insn2 = 0x7c631214; /* add 3,3,2 */
7328
0
    }
7329
0
        else
7330
0
    {
7331
      /* LE */
7332
0
      r_type = R_PPC_TPREL16_LO;
7333
0
      rel->r_offset += d_offset;
7334
0
      insn2 = 0x38630000; /* addi 3,3,0 */
7335
0
    }
7336
0
        rel->r_info = ELF32_R_INFO (r_symndx, r_type);
7337
0
        bfd_put_32 (input_bfd, insn2, contents + offset);
7338
        /* Zap the reloc on the _tls_get_addr call too.  */
7339
0
        BFD_ASSERT (offset == rel[1].r_offset);
7340
0
        rel[1].r_info = ELF32_R_INFO (STN_UNDEF, R_PPC_NONE);
7341
0
      }
7342
0
    break;
7343
7344
0
  case R_PPC_TLSLD:
7345
0
    if ((tls_mask & TLS_TLS) != 0 && (tls_mask & TLS_LD) == 0
7346
0
        && rel + 1 < relend
7347
0
        && offset_in_range (input_section, rel->r_offset, 4))
7348
0
      {
7349
0
        unsigned int insn2;
7350
7351
0
        if (is_plt_seq_reloc (ELF32_R_TYPE (rel[1].r_info)))
7352
0
    {
7353
0
      bfd_put_32 (input_bfd, NOP, contents + rel->r_offset);
7354
0
      rel[1].r_info = ELF32_R_INFO (STN_UNDEF, R_PPC_NONE);
7355
0
      break;
7356
0
    }
7357
7358
0
        for (r_symndx = 0;
7359
0
       r_symndx < symtab_hdr->sh_info;
7360
0
       r_symndx++)
7361
0
    if (local_sections[r_symndx] == sec)
7362
0
      break;
7363
0
        if (r_symndx >= symtab_hdr->sh_info)
7364
0
    r_symndx = STN_UNDEF;
7365
0
        rel->r_addend = htab->elf.tls_sec->vma + DTP_OFFSET;
7366
0
        if (r_symndx != STN_UNDEF)
7367
0
    rel->r_addend -= (local_syms[r_symndx].st_value
7368
0
          + sec->output_offset
7369
0
          + sec->output_section->vma);
7370
7371
0
        rel->r_info = ELF32_R_INFO (r_symndx, R_PPC_TPREL16_LO);
7372
0
        rel->r_offset += d_offset;
7373
0
        insn2 = 0x38630000; /* addi 3,3,0 */
7374
0
        bfd_put_32 (input_bfd, insn2,
7375
0
        contents + rel->r_offset - d_offset);
7376
        /* Zap the reloc on the _tls_get_addr call too.  */
7377
0
        BFD_ASSERT (rel->r_offset - d_offset == rel[1].r_offset);
7378
0
        rel[1].r_info = ELF32_R_INFO (STN_UNDEF, R_PPC_NONE);
7379
0
        goto again;
7380
0
      }
7381
0
    break;
7382
0
  }
7383
7384
      /* Handle other relocations that tweak non-addend part of insn.  */
7385
0
      branch_bit = 0;
7386
0
      switch (r_type)
7387
0
  {
7388
0
  default:
7389
0
    break;
7390
7391
    /* Branch taken prediction relocations.  */
7392
0
  case R_PPC_ADDR14_BRTAKEN:
7393
0
  case R_PPC_REL14_BRTAKEN:
7394
0
    branch_bit = BRANCH_PREDICT_BIT;
7395
    /* Fall through.  */
7396
7397
    /* Branch not taken prediction relocations.  */
7398
0
  case R_PPC_ADDR14_BRNTAKEN:
7399
0
  case R_PPC_REL14_BRNTAKEN:
7400
0
    if (offset_in_range (input_section, rel->r_offset, 4))
7401
0
      {
7402
0
        unsigned int insn;
7403
7404
0
        insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
7405
0
        insn &= ~BRANCH_PREDICT_BIT;
7406
0
        insn |= branch_bit;
7407
7408
0
        from = (rel->r_offset
7409
0
          + input_section->output_offset
7410
0
          + input_section->output_section->vma);
7411
7412
        /* Invert 'y' bit if not the default.  */
7413
0
        if ((bfd_signed_vma) (relocation + rel->r_addend - from) < 0)
7414
0
    insn ^= BRANCH_PREDICT_BIT;
7415
7416
0
        bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
7417
0
      }
7418
0
    break;
7419
7420
0
  case R_PPC_PLT16_HA:
7421
0
    if (offset_in_range (input_section, rel->r_offset - d_offset, 4))
7422
0
      {
7423
0
        unsigned int insn;
7424
7425
0
        insn = bfd_get_32 (input_bfd,
7426
0
         contents + rel->r_offset - d_offset);
7427
0
        if ((insn & (0x3fu << 26)) == 15u << 26
7428
0
      && (insn & (0x1f << 16)) != 0)
7429
0
    {
7430
0
      if (!bfd_link_pic (info))
7431
0
        {
7432
          /* Convert addis to lis.  */
7433
0
          insn &= ~(0x1f << 16);
7434
0
          bfd_put_32 (input_bfd, insn,
7435
0
          contents + rel->r_offset - d_offset);
7436
0
        }
7437
0
    }
7438
0
        else if (bfd_link_pic (info))
7439
0
    info->callbacks->einfo
7440
0
      (_("%P: %H: error: %s with unexpected instruction %x\n"),
7441
0
       input_bfd, input_section, rel->r_offset,
7442
0
       "R_PPC_PLT16_HA", insn);
7443
0
      }
7444
0
    break;
7445
0
  }
7446
7447
0
      if (ELIMINATE_COPY_RELOCS
7448
0
    && h != NULL
7449
0
    && !h->def_regular
7450
0
    && h->protected_def
7451
0
    && ppc_elf_hash_entry (h)->has_addr16_ha
7452
0
    && ppc_elf_hash_entry (h)->has_addr16_lo
7453
0
    && htab->params->pic_fixup > 0)
7454
0
  {
7455
    /* Convert lis;addi or lis;load/store accessing a protected
7456
       variable defined in a shared library to PIC.  */
7457
0
    unsigned int insn;
7458
7459
0
    if (r_type == R_PPC_ADDR16_HA
7460
0
        && offset_in_range (input_section, rel->r_offset - d_offset, 4))
7461
0
      {
7462
0
        insn = bfd_get_32 (input_bfd,
7463
0
         contents + rel->r_offset - d_offset);
7464
0
        if ((insn & (0x3fu << 26)) == (15u << 26)
7465
0
      && (insn & (0x1f << 16)) == 0 /* lis */)
7466
0
    {
7467
0
      bfd_byte *p;
7468
0
      bfd_vma off;
7469
0
      bfd_vma got_addr;
7470
7471
0
      p = (contents + input_section->size
7472
0
           - relax_info->workaround_size
7473
0
           - relax_info->picfixup_size
7474
0
           + picfixup_size);
7475
0
      off = (p - contents) - (rel->r_offset - d_offset);
7476
0
      if (off > 0x1fffffc || (off & 3) != 0)
7477
0
        info->callbacks->einfo
7478
0
          (_("%H: fixup branch overflow\n"),
7479
0
           input_bfd, input_section, rel->r_offset);
7480
7481
0
      bfd_put_32 (input_bfd, B | off,
7482
0
            contents + rel->r_offset - d_offset);
7483
0
      got_addr = (htab->elf.sgot->output_section->vma
7484
0
            + htab->elf.sgot->output_offset
7485
0
            + (h->got.offset & ~1));
7486
0
      wrel->r_offset = (p - contents) + d_offset;
7487
0
      wrel->r_info = ELF32_R_INFO (0, R_PPC_ADDR16_HA);
7488
0
      wrel->r_addend = got_addr;
7489
0
      insn &= ~0xffff;
7490
0
      insn |= ((unsigned int) (got_addr + 0x8000) >> 16) & 0xffff;
7491
0
      bfd_put_32 (input_bfd, insn, p);
7492
7493
      /* Convert lis to lwz, loading address from GOT.  */
7494
0
      insn &= ~0xffff;
7495
0
      insn ^= (32u ^ 15u) << 26;
7496
0
      insn |= (insn & (0x1f << 21)) >> 5;
7497
0
      insn |= got_addr & 0xffff;
7498
0
      bfd_put_32 (input_bfd, insn, p + 4);
7499
7500
0
      bfd_put_32 (input_bfd, B | ((-4 - off) & 0x3ffffff), p + 8);
7501
0
      picfixup_size += 12;
7502
7503
      /* Use one of the spare relocs, so --emit-relocs
7504
         output is reasonable.  */
7505
0
      memmove (rel + 1, rel, (relend - rel - 1) * sizeof (*rel));
7506
0
      wrel++, rel++;
7507
0
      rel->r_offset = wrel[-1].r_offset + 4;
7508
0
      rel->r_info = ELF32_R_INFO (0, R_PPC_ADDR16_LO);
7509
0
      rel->r_addend = wrel[-1].r_addend;
7510
7511
      /* Continue on as if we had a got reloc, to output
7512
         dynamic reloc.  */
7513
0
      r_type = R_PPC_GOT16_LO;
7514
0
    }
7515
0
        else
7516
0
    _bfd_error_handler
7517
      /* xgettext:c-format */
7518
0
      (_("%pB(%pA+%#" PRIx64 "): error: "
7519
0
         "%s with unexpected instruction %#x"),
7520
0
       input_bfd, input_section, (uint64_t) rel->r_offset,
7521
0
       "R_PPC_ADDR16_HA", insn);
7522
0
      }
7523
0
    else if (r_type == R_PPC_ADDR16_LO
7524
0
       && offset_in_range (input_section,
7525
0
               rel->r_offset - d_offset, 4))
7526
0
      {
7527
0
        insn = bfd_get_32 (input_bfd,
7528
0
         contents + rel->r_offset - d_offset);
7529
0
        if ((insn & (0x3fu << 26)) == 14u << 26    /* addi */
7530
0
      || (insn & (0x3fu << 26)) == 32u << 26 /* lwz */
7531
0
      || (insn & (0x3fu << 26)) == 34u << 26 /* lbz */
7532
0
      || (insn & (0x3fu << 26)) == 36u << 26 /* stw */
7533
0
      || (insn & (0x3fu << 26)) == 38u << 26 /* stb */
7534
0
      || (insn & (0x3fu << 26)) == 40u << 26 /* lhz */
7535
0
      || (insn & (0x3fu << 26)) == 42u << 26 /* lha */
7536
0
      || (insn & (0x3fu << 26)) == 44u << 26 /* sth */
7537
0
      || (insn & (0x3fu << 26)) == 46u << 26 /* lmw */
7538
0
      || (insn & (0x3fu << 26)) == 47u << 26 /* stmw */
7539
0
      || (insn & (0x3fu << 26)) == 48u << 26 /* lfs */
7540
0
      || (insn & (0x3fu << 26)) == 50u << 26 /* lfd */
7541
0
      || (insn & (0x3fu << 26)) == 52u << 26 /* stfs */
7542
0
      || (insn & (0x3fu << 26)) == 54u << 26 /* stfd */
7543
0
      || ((insn & (0x3fu << 26)) == 58u << 26 /* lwa,ld,lmd */
7544
0
          && (insn & 3) != 1)
7545
0
      || ((insn & (0x3fu << 26)) == 62u << 26 /* std, stmd */
7546
0
          && ((insn & 3) == 0 || (insn & 3) == 3)))
7547
0
    {
7548
      /* Arrange to apply the reloc addend, if any.  */
7549
0
      relocation = 0;
7550
0
      unresolved_reloc = false;
7551
0
      rel->r_info = ELF32_R_INFO (0, r_type);
7552
0
    }
7553
0
        else
7554
0
    _bfd_error_handler
7555
      /* xgettext:c-format */
7556
0
      (_("%pB(%pA+%#" PRIx64 "): error: "
7557
0
         "%s with unexpected instruction %#x"),
7558
0
       input_bfd, input_section, (uint64_t) rel->r_offset,
7559
0
       "R_PPC_ADDR16_LO", insn);
7560
0
      }
7561
0
  }
7562
7563
0
      ifunc = NULL;
7564
0
      if (htab->elf.target_os != is_vxworks)
7565
0
  {
7566
0
    struct plt_entry *ent;
7567
7568
0
    if (h != NULL)
7569
0
      {
7570
0
        if (h->type == STT_GNU_IFUNC)
7571
0
    ifunc = &h->plt.plist;
7572
0
      }
7573
0
    else if (local_got_offsets != NULL
7574
0
       && ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
7575
0
      {
7576
0
        struct plt_entry **local_plt;
7577
7578
0
        local_plt = (struct plt_entry **) (local_got_offsets
7579
0
             + symtab_hdr->sh_info);
7580
0
        ifunc = local_plt + r_symndx;
7581
0
      }
7582
7583
0
    ent = NULL;
7584
0
    if (ifunc != NULL
7585
0
        && (!bfd_link_pic (info)
7586
0
      || is_branch_reloc (r_type)
7587
0
      || r_type == R_PPC_PLT16_LO
7588
0
      || r_type == R_PPC_PLT16_HI
7589
0
      || r_type == R_PPC_PLT16_HA))
7590
0
      {
7591
0
        addend = 0;
7592
0
        if (bfd_link_pic (info)
7593
0
      && (r_type == R_PPC_PLTREL24
7594
0
          || r_type == R_PPC_PLT16_LO
7595
0
          || r_type == R_PPC_PLT16_HI
7596
0
          || r_type == R_PPC_PLT16_HA))
7597
0
    addend = rel->r_addend;
7598
0
        ent = find_plt_ent (ifunc, got2, addend);
7599
0
      }
7600
0
    if (ent != NULL)
7601
0
      {
7602
0
        if (bfd_link_pic (info)
7603
0
      && ent->sec != got2
7604
0
      && htab->plt_type != PLT_NEW
7605
0
      && (!htab->elf.dynamic_sections_created
7606
0
          || h == NULL
7607
0
          || h->dynindx == -1))
7608
0
    {
7609
      /* Uh oh, we are going to create a pic glink stub
7610
         for an ifunc (here for h == NULL and later in
7611
         finish_dynamic_symbol for h != NULL), and
7612
         apparently are using code compiled with
7613
         -mbss-plt.  The difficulty is that -mbss-plt code
7614
         gives no indication via a magic PLTREL24 addend
7615
         whether r30 is equal to _GLOBAL_OFFSET_TABLE_ or
7616
         is pointing into a .got2 section (and how far
7617
         into .got2).  */
7618
0
        info->callbacks->einfo
7619
          /* xgettext:c-format */
7620
0
          (_("%X%H: unsupported bss-plt -fPIC ifunc %s\n"),
7621
0
           input_bfd, input_section, rel->r_offset, sym_name);
7622
0
    }
7623
7624
0
        unresolved_reloc = false;
7625
0
        if (htab->plt_type == PLT_NEW
7626
0
      || !htab->elf.dynamic_sections_created
7627
0
      || h == NULL
7628
0
      || h->dynindx == -1)
7629
0
    relocation = (htab->glink->output_section->vma
7630
0
            + htab->glink->output_offset
7631
0
            + (ent->glink_offset & ~1));
7632
0
        else
7633
0
    relocation = (htab->elf.splt->output_section->vma
7634
0
            + htab->elf.splt->output_offset
7635
0
            + ent->plt.offset);
7636
0
      }
7637
0
  }
7638
7639
0
      addend = rel->r_addend;
7640
0
      save_unresolved_reloc = unresolved_reloc;
7641
0
      howto = NULL;
7642
0
      if (r_type < ARRAY_SIZE (ppc_elf_howto_table))
7643
0
  howto = ppc_elf_howto_table[r_type];
7644
7645
0
      tls_type = 0;
7646
0
      switch (r_type)
7647
0
  {
7648
0
  default:
7649
0
  de_fault:
7650
0
    if (howto)
7651
      /* xgettext:c-format */
7652
0
      _bfd_error_handler (_("%pB: %s unsupported"),
7653
0
        input_bfd, howto->name);
7654
0
    else
7655
      /* xgettext:c-format */
7656
0
      _bfd_error_handler (_("%pB: reloc %#x unsupported"),
7657
0
        input_bfd, r_type);
7658
7659
0
    bfd_set_error (bfd_error_bad_value);
7660
0
    ret = false;
7661
0
    goto copy_reloc;
7662
7663
0
  case R_PPC_NONE:
7664
0
  case R_PPC_TLS:
7665
0
  case R_PPC_TLSGD:
7666
0
  case R_PPC_TLSLD:
7667
0
  case R_PPC_EMB_MRKREF:
7668
0
  case R_PPC_GNU_VTINHERIT:
7669
0
  case R_PPC_GNU_VTENTRY:
7670
0
    goto copy_reloc;
7671
7672
    /* GOT16 relocations.  Like an ADDR16 using the symbol's
7673
       address in the GOT as relocation value instead of the
7674
       symbol's value itself.  Also, create a GOT entry for the
7675
       symbol and put the symbol value there.  */
7676
0
  case R_PPC_GOT_TLSGD16:
7677
0
  case R_PPC_GOT_TLSGD16_LO:
7678
0
  case R_PPC_GOT_TLSGD16_HI:
7679
0
  case R_PPC_GOT_TLSGD16_HA:
7680
0
    tls_type = TLS_TLS | TLS_GD;
7681
0
    goto dogot;
7682
7683
0
  case R_PPC_GOT_TLSLD16:
7684
0
  case R_PPC_GOT_TLSLD16_LO:
7685
0
  case R_PPC_GOT_TLSLD16_HI:
7686
0
  case R_PPC_GOT_TLSLD16_HA:
7687
0
    tls_type = TLS_TLS | TLS_LD;
7688
0
    goto dogot;
7689
7690
0
  case R_PPC_GOT_TPREL16:
7691
0
  case R_PPC_GOT_TPREL16_LO:
7692
0
  case R_PPC_GOT_TPREL16_HI:
7693
0
  case R_PPC_GOT_TPREL16_HA:
7694
0
    tls_type = TLS_TLS | TLS_TPREL;
7695
0
    goto dogot;
7696
7697
0
  case R_PPC_GOT_DTPREL16:
7698
0
  case R_PPC_GOT_DTPREL16_LO:
7699
0
  case R_PPC_GOT_DTPREL16_HI:
7700
0
  case R_PPC_GOT_DTPREL16_HA:
7701
0
    tls_type = TLS_TLS | TLS_DTPREL;
7702
0
    goto dogot;
7703
7704
0
  case R_PPC_GOT16:
7705
0
  case R_PPC_GOT16_LO:
7706
0
  case R_PPC_GOT16_HI:
7707
0
  case R_PPC_GOT16_HA:
7708
0
    tls_mask = 0;
7709
0
  dogot:
7710
0
    {
7711
      /* Relocation is to the entry for this symbol in the global
7712
         offset table.  */
7713
0
      bfd_vma off;
7714
0
      bfd_vma *offp;
7715
0
      unsigned long indx;
7716
7717
0
      if (htab->elf.sgot == NULL)
7718
0
        abort ();
7719
7720
0
      indx = 0;
7721
0
      if (tls_type == (TLS_TLS | TLS_LD)
7722
0
    && SYMBOL_REFERENCES_LOCAL (info, h))
7723
0
        offp = &htab->tlsld_got.offset;
7724
0
      else if (h != NULL)
7725
0
        {
7726
0
    if (!htab->elf.dynamic_sections_created
7727
0
        || h->dynindx == -1
7728
0
        || SYMBOL_REFERENCES_LOCAL (info, h)
7729
0
        || UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
7730
      /* This is actually a static link, or it is a
7731
         -Bsymbolic link and the symbol is defined
7732
         locally, or the symbol was forced to be local
7733
         because of a version file.  */
7734
0
      ;
7735
0
    else
7736
0
      {
7737
0
        indx = h->dynindx;
7738
0
        unresolved_reloc = false;
7739
0
      }
7740
0
    offp = &h->got.offset;
7741
0
        }
7742
0
      else
7743
0
        {
7744
0
    if (local_got_offsets == NULL)
7745
0
      abort ();
7746
0
    offp = &local_got_offsets[r_symndx];
7747
0
        }
7748
7749
      /* The offset must always be a multiple of 4.  We use the
7750
         least significant bit to record whether we have already
7751
         processed this entry.  */
7752
0
      off = *offp;
7753
0
      if ((off & 1) != 0)
7754
0
        off &= ~1;
7755
0
      else
7756
0
        {
7757
0
    unsigned int tls_m = ((tls_mask & TLS_TLS) != 0
7758
0
              ? tls_mask & (TLS_LD | TLS_GD | TLS_DTPREL
7759
0
                | TLS_TPREL | TLS_GDIE)
7760
0
              : 0);
7761
7762
0
    if (offp == &htab->tlsld_got.offset)
7763
0
      tls_m = TLS_LD;
7764
0
    else if ((tls_m & TLS_LD) != 0
7765
0
       && SYMBOL_REFERENCES_LOCAL (info, h))
7766
0
      tls_m &= ~TLS_LD;
7767
7768
    /* We might have multiple got entries for this sym.
7769
       Initialize them all.  */
7770
0
    do
7771
0
      {
7772
0
        int tls_ty = 0;
7773
7774
0
        if ((tls_m & TLS_LD) != 0)
7775
0
          {
7776
0
      tls_ty = TLS_TLS | TLS_LD;
7777
0
      tls_m &= ~TLS_LD;
7778
0
          }
7779
0
        else if ((tls_m & TLS_GD) != 0)
7780
0
          {
7781
0
      tls_ty = TLS_TLS | TLS_GD;
7782
0
      tls_m &= ~TLS_GD;
7783
0
          }
7784
0
        else if ((tls_m & TLS_DTPREL) != 0)
7785
0
          {
7786
0
      tls_ty = TLS_TLS | TLS_DTPREL;
7787
0
      tls_m &= ~TLS_DTPREL;
7788
0
          }
7789
0
        else if ((tls_m & (TLS_TPREL | TLS_GDIE)) != 0)
7790
0
          {
7791
0
      tls_ty = TLS_TLS | TLS_TPREL;
7792
0
      tls_m = 0;
7793
0
          }
7794
7795
        /* Generate relocs for the dynamic linker.  */
7796
0
        if (indx != 0
7797
0
      || (bfd_link_pic (info)
7798
0
          && (h == NULL
7799
0
        || !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
7800
0
          && !(tls_ty != 0
7801
0
         && bfd_link_executable (info)
7802
0
         && SYMBOL_REFERENCES_LOCAL (info, h))
7803
0
          && (h != NULL
7804
0
        ? !bfd_is_abs_symbol (&h->root)
7805
0
        : sym->st_shndx != SHN_ABS)))
7806
0
          {
7807
0
      asection *rsec = htab->elf.srelgot;
7808
7809
0
      if (ifunc != NULL)
7810
0
        {
7811
0
          rsec = htab->elf.irelplt;
7812
0
          if (indx == 0)
7813
0
            htab->local_ifunc_resolver = 1;
7814
0
          else if (is_static_defined (h))
7815
0
            htab->maybe_local_ifunc_resolver = 1;
7816
0
        }
7817
0
      outrel.r_offset = (htab->elf.sgot->output_section->vma
7818
0
             + htab->elf.sgot->output_offset
7819
0
             + off);
7820
0
      outrel.r_addend = 0;
7821
0
      if (tls_ty & (TLS_LD | TLS_GD))
7822
0
        {
7823
0
          outrel.r_info = ELF32_R_INFO (indx, R_PPC_DTPMOD32);
7824
0
          if (tls_ty == (TLS_TLS | TLS_GD))
7825
0
            {
7826
0
        BFD_ASSERT (count_and_swap_reloc_out (output_bfd,
7827
0
                      &outrel,
7828
0
                      rsec));
7829
0
        outrel.r_offset += 4;
7830
0
        outrel.r_info
7831
0
          = ELF32_R_INFO (indx, R_PPC_DTPREL32);
7832
0
            }
7833
0
        }
7834
0
      else if (tls_ty == (TLS_TLS | TLS_DTPREL))
7835
0
        outrel.r_info = ELF32_R_INFO (indx, R_PPC_DTPREL32);
7836
0
      else if (tls_ty == (TLS_TLS | TLS_TPREL))
7837
0
        outrel.r_info = ELF32_R_INFO (indx, R_PPC_TPREL32);
7838
0
      else if (indx != 0)
7839
0
        outrel.r_info = ELF32_R_INFO (indx, R_PPC_GLOB_DAT);
7840
0
      else if (ifunc != NULL)
7841
0
        outrel.r_info = ELF32_R_INFO (0, R_PPC_IRELATIVE);
7842
0
      else
7843
0
        outrel.r_info = ELF32_R_INFO (0, R_PPC_RELATIVE);
7844
0
      if (indx == 0 && tls_ty != (TLS_TLS | TLS_LD))
7845
0
        {
7846
0
          outrel.r_addend += relocation;
7847
0
          if (tls_ty & (TLS_GD | TLS_DTPREL | TLS_TPREL))
7848
0
            {
7849
0
        if (htab->elf.tls_sec == NULL)
7850
0
          outrel.r_addend = 0;
7851
0
        else
7852
0
          outrel.r_addend -= htab->elf.tls_sec->vma;
7853
0
            }
7854
0
        }
7855
0
      BFD_ASSERT (count_and_swap_reloc_out (output_bfd,
7856
0
                    &outrel, rsec));
7857
0
          }
7858
7859
        /* Init the .got section contents if we're not
7860
           emitting a reloc.  */
7861
0
        else
7862
0
          {
7863
0
      bfd_vma value = relocation;
7864
7865
0
      if (tls_ty != 0)
7866
0
        {
7867
0
          if (htab->elf.tls_sec == NULL)
7868
0
            value = 0;
7869
0
          else
7870
0
            {
7871
0
        if (tls_ty & TLS_LD)
7872
0
          value = 0;
7873
0
        else
7874
0
          value -= htab->elf.tls_sec->vma + DTP_OFFSET;
7875
0
        if (tls_ty & TLS_TPREL)
7876
0
          value += DTP_OFFSET - TP_OFFSET;
7877
0
            }
7878
7879
0
          if (tls_ty & (TLS_LD | TLS_GD))
7880
0
            {
7881
0
        bfd_put_32 (input_bfd, value,
7882
0
              htab->elf.sgot->contents + off + 4);
7883
0
        value = 1;
7884
0
            }
7885
0
        }
7886
0
      bfd_put_32 (input_bfd, value,
7887
0
            htab->elf.sgot->contents + off);
7888
0
          }
7889
7890
0
        off += 4;
7891
0
        if (tls_ty & (TLS_LD | TLS_GD))
7892
0
          off += 4;
7893
0
      }
7894
0
    while (tls_m != 0);
7895
7896
0
    off = *offp;
7897
0
    *offp = off | 1;
7898
0
        }
7899
7900
0
      if (off >= (bfd_vma) -2)
7901
0
        abort ();
7902
7903
0
      if ((tls_type & TLS_TLS) != 0)
7904
0
        {
7905
0
    if (tls_type != (TLS_TLS | TLS_LD))
7906
0
      {
7907
0
        if ((tls_mask & TLS_LD) != 0
7908
0
      && !SYMBOL_REFERENCES_LOCAL (info, h))
7909
0
          off += 8;
7910
0
        if (tls_type != (TLS_TLS | TLS_GD))
7911
0
          {
7912
0
      if ((tls_mask & TLS_GD) != 0)
7913
0
        off += 8;
7914
0
      if (tls_type != (TLS_TLS | TLS_DTPREL))
7915
0
        {
7916
0
          if ((tls_mask & TLS_DTPREL) != 0)
7917
0
            off += 4;
7918
0
        }
7919
0
          }
7920
0
      }
7921
0
        }
7922
7923
      /* If here for a picfixup, we're done.  */
7924
0
      if (r_type != ELF32_R_TYPE (rel->r_info))
7925
0
        goto copy_reloc;
7926
7927
0
      relocation = (htab->elf.sgot->output_section->vma
7928
0
        + htab->elf.sgot->output_offset
7929
0
        + off
7930
0
        - SYM_VAL (htab->elf.hgot));
7931
7932
      /* Addends on got relocations don't make much sense.
7933
         x+off@got is actually x@got+off, and since the got is
7934
         generated by a hash table traversal, the value in the
7935
         got at entry m+n bears little relation to the entry m.  */
7936
0
      if (addend != 0)
7937
0
        info->callbacks->einfo
7938
    /* xgettext:c-format */
7939
0
    (_("%H: non-zero addend on %s reloc against `%s'\n"),
7940
0
     input_bfd, input_section, rel->r_offset,
7941
0
     howto->name,
7942
0
     sym_name);
7943
0
    }
7944
0
    break;
7945
7946
    /* Relocations that need no special processing.  */
7947
0
  case R_PPC_LOCAL24PC:
7948
    /* It makes no sense to point a local relocation
7949
       at a symbol not in this object.  */
7950
0
    if (unresolved_reloc)
7951
0
      {
7952
0
        (*info->callbacks->undefined_symbol) (info,
7953
0
                h->root.root.string,
7954
0
                input_bfd,
7955
0
                input_section,
7956
0
                rel->r_offset,
7957
0
                true);
7958
0
        goto copy_reloc;
7959
0
      }
7960
0
    if (h != NULL && h->type == STT_GNU_IFUNC && bfd_link_pic (info))
7961
0
      {
7962
        /* @local on an ifunc does not really make sense since
7963
     the ifunc resolver can take you anywhere.  More
7964
     seriously, calls to ifuncs must go through a plt call
7965
     stub, and for pic the plt call stubs uses r30 to
7966
     access the PLT.  The problem is that a call that is
7967
     local won't have the +32k reloc addend trick marking
7968
     -fPIC code, so the linker won't know whether r30 is
7969
     _GLOBAL_OFFSET_TABLE_ or pointing into a .got2 section.  */
7970
        /* xgettext:c-format */
7971
0
        info->callbacks->einfo (_("%X%H: @local call to ifunc %s\n"),
7972
0
              input_bfd, input_section, rel->r_offset,
7973
0
              h->root.root.string);
7974
0
      }
7975
0
    break;
7976
7977
0
  case R_PPC_DTPREL16:
7978
0
  case R_PPC_DTPREL16_LO:
7979
0
  case R_PPC_DTPREL16_HI:
7980
0
  case R_PPC_DTPREL16_HA:
7981
0
    if (htab->elf.tls_sec != NULL)
7982
0
      addend -= htab->elf.tls_sec->vma + DTP_OFFSET;
7983
0
    break;
7984
7985
    /* Relocations that may need to be propagated if this is a shared
7986
       object.  */
7987
0
  case R_PPC_TPREL16:
7988
0
  case R_PPC_TPREL16_LO:
7989
0
  case R_PPC_TPREL16_HI:
7990
0
  case R_PPC_TPREL16_HA:
7991
0
    if (h != NULL
7992
0
        && h->root.type == bfd_link_hash_undefweak
7993
0
        && h->dynindx == -1
7994
0
        && offset_in_range (input_section, rel->r_offset - d_offset, 4))
7995
0
      {
7996
        /* Make this relocation against an undefined weak symbol
7997
     resolve to zero.  This is really just a tweak, since
7998
     code using weak externs ought to check that they are
7999
     defined before using them.  */
8000
0
        bfd_byte *p = contents + rel->r_offset - d_offset;
8001
0
        unsigned int insn = bfd_get_32 (input_bfd, p);
8002
0
        insn = _bfd_elf_ppc_at_tprel_transform (insn, 2);
8003
0
        if (insn != 0)
8004
0
    bfd_put_32 (input_bfd, insn, p);
8005
0
        break;
8006
0
      }
8007
0
    if (htab->elf.tls_sec != NULL)
8008
0
      addend -= htab->elf.tls_sec->vma + TP_OFFSET;
8009
    /* The TPREL16 relocs shouldn't really be used in shared
8010
       libs or with non-local symbols as that will result in
8011
       DT_TEXTREL being set, but support them anyway.  */
8012
0
    goto dodyn;
8013
8014
0
  case R_PPC_TPREL32:
8015
0
    if (htab->elf.tls_sec != NULL)
8016
0
      addend -= htab->elf.tls_sec->vma + TP_OFFSET;
8017
0
    goto dodyn;
8018
8019
0
  case R_PPC_DTPREL32:
8020
0
    if (htab->elf.tls_sec != NULL)
8021
0
      addend -= htab->elf.tls_sec->vma + DTP_OFFSET;
8022
0
    goto dodyn;
8023
8024
0
  case R_PPC_DTPMOD32:
8025
0
    relocation = 1;
8026
0
    addend = 0;
8027
0
    goto dodyn;
8028
8029
0
  case R_PPC_REL16:
8030
0
  case R_PPC_REL16_LO:
8031
0
  case R_PPC_REL16_HI:
8032
0
  case R_PPC_REL16_HA:
8033
0
  case R_PPC_REL16DX_HA:
8034
0
    break;
8035
8036
0
  case R_PPC_REL32:
8037
0
    if (h == NULL || h == htab->elf.hgot)
8038
0
      break;
8039
    /* fall through */
8040
8041
0
  case R_PPC_ADDR32:
8042
0
  case R_PPC_ADDR16:
8043
0
  case R_PPC_ADDR16_LO:
8044
0
  case R_PPC_ADDR16_HI:
8045
0
  case R_PPC_ADDR16_HA:
8046
0
  case R_PPC_UADDR32:
8047
0
  case R_PPC_UADDR16:
8048
0
    goto dodyn;
8049
8050
0
  case R_PPC_VLE_REL8:
8051
0
  case R_PPC_VLE_REL15:
8052
0
  case R_PPC_VLE_REL24:
8053
0
  case R_PPC_REL24:
8054
0
  case R_PPC_REL14:
8055
0
  case R_PPC_REL14_BRTAKEN:
8056
0
  case R_PPC_REL14_BRNTAKEN:
8057
    /* If these relocations are not to a named symbol, they can be
8058
       handled right here, no need to bother the dynamic linker.  */
8059
0
    if (SYMBOL_CALLS_LOCAL (info, h)
8060
0
        || h == htab->elf.hgot)
8061
0
      break;
8062
    /* fall through */
8063
8064
0
  case R_PPC_ADDR24:
8065
0
  case R_PPC_ADDR14:
8066
0
  case R_PPC_ADDR14_BRTAKEN:
8067
0
  case R_PPC_ADDR14_BRNTAKEN:
8068
0
    if (h != NULL && !bfd_link_pic (info))
8069
0
      break;
8070
    /* fall through */
8071
8072
0
  dodyn:
8073
0
    if ((input_section->flags & SEC_ALLOC) == 0
8074
0
        || is_vxworks_tls)
8075
0
      break;
8076
8077
0
    if (bfd_link_pic (info)
8078
0
        ? ((h == NULL
8079
0
      || h->dyn_relocs != NULL)
8080
0
     && ((h != NULL && pc_dynrelocs (h))
8081
0
         || must_be_dyn_reloc (info, r_type)))
8082
0
        : (h != NULL
8083
0
     && h->dyn_relocs != NULL))
8084
0
      {
8085
0
        int skip;
8086
0
        asection *sreloc;
8087
0
        long indx = 0;
8088
8089
#ifdef DEBUG
8090
        fprintf (stderr, "ppc_elf_relocate_section needs to "
8091
           "create relocation for %s\n",
8092
           (h && h->root.root.string
8093
      ? h->root.root.string : "<unknown>"));
8094
#endif
8095
8096
        /* When generating a shared object, these relocations
8097
     are copied into the output file to be resolved at run
8098
     time.  */
8099
0
        skip = 0;
8100
0
        outrel.r_offset = _bfd_elf_section_offset (output_bfd, info,
8101
0
               input_section,
8102
0
               rel->r_offset);
8103
0
        if (outrel.r_offset == (bfd_vma) -1
8104
0
      || outrel.r_offset == (bfd_vma) -2)
8105
0
    skip = (int) outrel.r_offset;
8106
0
        outrel.r_offset += (input_section->output_section->vma
8107
0
          + input_section->output_offset);
8108
8109
        /* Optimize unaligned reloc use.  */
8110
0
        if ((r_type == R_PPC_ADDR32 && (outrel.r_offset & 3) != 0)
8111
0
      || (r_type == R_PPC_UADDR32 && (outrel.r_offset & 3) == 0))
8112
0
    r_type ^= R_PPC_ADDR32 ^ R_PPC_UADDR32;
8113
0
        if ((r_type == R_PPC_ADDR16 && (outrel.r_offset & 1) != 0)
8114
0
      || (r_type == R_PPC_UADDR16 && (outrel.r_offset & 1) == 0))
8115
0
    r_type ^= R_PPC_ADDR16 ^ R_PPC_UADDR16;
8116
8117
0
        if (skip)
8118
0
    memset (&outrel, 0, sizeof outrel);
8119
0
        else if (!SYMBOL_REFERENCES_LOCAL (info, h))
8120
0
    {
8121
0
      indx = h->dynindx;
8122
0
      BFD_ASSERT (indx != -1);
8123
0
      unresolved_reloc = false;
8124
0
      outrel.r_info = ELF32_R_INFO (indx, r_type);
8125
0
      outrel.r_addend = rel->r_addend;
8126
0
    }
8127
0
        else
8128
0
    {
8129
0
      outrel.r_addend = relocation + rel->r_addend;
8130
8131
0
      if (r_type != R_PPC_ADDR32)
8132
0
        {
8133
0
          if (ifunc != NULL)
8134
0
      {
8135
        /* If we get here when building a static
8136
           executable, then the libc startup function
8137
           responsible for applying indirect function
8138
           relocations is going to complain about
8139
           the reloc type.
8140
           If we get here when building a dynamic
8141
           executable, it will be because we have
8142
           a text relocation.  The dynamic loader
8143
           will set the text segment writable and
8144
           non-executable to apply text relocations.
8145
           So we'll segfault when trying to run the
8146
           indirection function to resolve the reloc.  */
8147
0
        info->callbacks->einfo
8148
          /* xgettext:c-format */
8149
0
          (_("%H: relocation %s for indirect "
8150
0
             "function %s unsupported\n"),
8151
0
           input_bfd, input_section, rel->r_offset,
8152
0
           howto->name,
8153
0
           sym_name);
8154
0
        ret = false;
8155
0
      }
8156
0
          else if (r_symndx == STN_UNDEF || bfd_is_abs_section (sec))
8157
0
      ;
8158
0
          else if (sec == NULL || sec->owner == NULL)
8159
0
      {
8160
0
        bfd_set_error (bfd_error_bad_value);
8161
0
        ret = false;
8162
0
      }
8163
0
          else
8164
0
      {
8165
0
        asection *osec;
8166
8167
        /* We are turning this relocation into one
8168
           against a section symbol.  It would be
8169
           proper to subtract the symbol's value,
8170
           osec->vma, from the emitted reloc addend,
8171
           but ld.so expects buggy relocs.
8172
           FIXME: Why not always use a zero index?  */
8173
0
        osec = sec->output_section;
8174
0
        if ((osec->flags & SEC_THREAD_LOCAL) != 0)
8175
0
          {
8176
0
            osec = htab->elf.tls_sec;
8177
0
            indx = 0;
8178
0
          }
8179
0
        else
8180
0
          {
8181
0
            indx = elf_section_data (osec)->dynindx;
8182
0
            if (indx == 0)
8183
0
        {
8184
0
          osec = htab->elf.text_index_section;
8185
0
          indx = elf_section_data (osec)->dynindx;
8186
0
        }
8187
0
            BFD_ASSERT (indx != 0);
8188
0
          }
8189
8190
        /* ld.so doesn't expect buggy TLS relocs.
8191
           Don't leave the symbol value in the
8192
           addend for them.  */
8193
0
        if (IS_PPC_TLS_RELOC (r_type))
8194
0
          outrel.r_addend -= osec->vma;
8195
0
      }
8196
8197
0
          outrel.r_info = ELF32_R_INFO (indx, r_type);
8198
0
        }
8199
0
      else if (ifunc != NULL)
8200
0
        outrel.r_info = ELF32_R_INFO (0, R_PPC_IRELATIVE);
8201
0
      else
8202
0
        outrel.r_info = ELF32_R_INFO (0, R_PPC_RELATIVE);
8203
0
    }
8204
8205
0
        sreloc = elf_section_data (input_section)->sreloc;
8206
0
        if (ifunc)
8207
0
    {
8208
0
      sreloc = htab->elf.irelplt;
8209
0
      if (indx == 0)
8210
0
        htab->local_ifunc_resolver = 1;
8211
0
      else if (is_static_defined (h))
8212
0
        htab->maybe_local_ifunc_resolver = 1;
8213
0
    }
8214
0
        if (sreloc == NULL)
8215
0
    return false;
8216
8217
0
        BFD_ASSERT (count_and_swap_reloc_out (output_bfd, &outrel,
8218
0
                sreloc));
8219
8220
0
        if (skip == -1)
8221
0
    goto copy_reloc;
8222
8223
        /* This reloc will be computed at runtime.  Clear the memory
8224
     so that it contains a predictable value for prelink.  */
8225
0
        if (!skip)
8226
0
    {
8227
0
      relocation = howto->pc_relative ? outrel.r_offset : 0;
8228
0
      addend = 0;
8229
0
      break;
8230
0
    }
8231
0
      }
8232
0
    break;
8233
8234
0
  case R_PPC_RELAX_PLT:
8235
0
  case R_PPC_RELAX_PLTREL24:
8236
0
    if (h != NULL)
8237
0
      {
8238
0
        struct plt_entry *ent;
8239
0
        bfd_vma got2_addend = 0;
8240
8241
0
        if (r_type == R_PPC_RELAX_PLTREL24)
8242
0
    {
8243
0
      if (bfd_link_pic (info))
8244
0
        got2_addend = addend;
8245
0
      addend = 0;
8246
0
    }
8247
0
        ent = find_plt_ent (&h->plt.plist, got2, got2_addend);
8248
0
        if (htab->plt_type == PLT_NEW)
8249
0
    relocation = (htab->glink->output_section->vma
8250
0
            + htab->glink->output_offset
8251
0
            + ent->glink_offset);
8252
0
        else
8253
0
    relocation = (htab->elf.splt->output_section->vma
8254
0
            + htab->elf.splt->output_offset
8255
0
            + ent->plt.offset);
8256
0
      }
8257
    /* Fall through.  */
8258
8259
0
  case R_PPC_RELAX:
8260
0
    if (bfd_link_pic (info)
8261
0
        ? offset_in_range (input_section, rel->r_offset - 12,
8262
0
         ARRAY_SIZE (shared_stub_entry) * 4)
8263
0
        : offset_in_range (input_section, rel->r_offset,
8264
0
         ARRAY_SIZE (stub_entry) * 4))
8265
0
      {
8266
0
        const int *stub;
8267
0
        size_t size;
8268
0
        size_t insn_offset = rel->r_offset;
8269
0
        unsigned int insn;
8270
8271
0
        if (bfd_link_pic (info))
8272
0
    {
8273
0
      relocation -= (input_section->output_section->vma
8274
0
         + input_section->output_offset
8275
0
         + rel->r_offset - 4);
8276
0
      stub = shared_stub_entry;
8277
0
      bfd_put_32 (input_bfd, stub[0], contents + insn_offset - 12);
8278
0
      bfd_put_32 (input_bfd, stub[1], contents + insn_offset - 8);
8279
0
      bfd_put_32 (input_bfd, stub[2], contents + insn_offset - 4);
8280
0
      stub += 3;
8281
0
      size = ARRAY_SIZE (shared_stub_entry) - 3;
8282
0
    }
8283
0
        else
8284
0
    {
8285
0
      stub = stub_entry;
8286
0
      size = ARRAY_SIZE (stub_entry);
8287
0
    }
8288
8289
0
        relocation += addend;
8290
0
        if (bfd_link_relocatable (info))
8291
0
    relocation = 0;
8292
8293
        /* First insn is HA, second is LO.  */
8294
0
        insn = *stub++;
8295
0
        insn |= ((relocation + 0x8000) >> 16) & 0xffff;
8296
0
        bfd_put_32 (input_bfd, insn, contents + insn_offset);
8297
0
        insn_offset += 4;
8298
8299
0
        insn = *stub++;
8300
0
        insn |= relocation & 0xffff;
8301
0
        bfd_put_32 (input_bfd, insn, contents + insn_offset);
8302
0
        insn_offset += 4;
8303
0
        size -= 2;
8304
8305
0
        while (size != 0)
8306
0
    {
8307
0
      insn = *stub++;
8308
0
      --size;
8309
0
      bfd_put_32 (input_bfd, insn, contents + insn_offset);
8310
0
      insn_offset += 4;
8311
0
    }
8312
8313
        /* Rewrite the reloc and convert one of the trailing nop
8314
     relocs to describe this relocation.  */
8315
0
        BFD_ASSERT (ELF32_R_TYPE (relend[-1].r_info) == R_PPC_NONE);
8316
        /* The relocs are at the bottom 2 bytes */
8317
0
        wrel->r_offset = rel->r_offset + d_offset;
8318
0
        wrel->r_info = ELF32_R_INFO (r_symndx, R_PPC_ADDR16_HA);
8319
0
        wrel->r_addend = rel->r_addend;
8320
0
        memmove (wrel + 1, wrel, (relend - wrel - 1) * sizeof (*wrel));
8321
0
        wrel++, rel++;
8322
0
        wrel->r_offset += 4;
8323
0
        wrel->r_info = ELF32_R_INFO (r_symndx, R_PPC_ADDR16_LO);
8324
0
      }
8325
0
    else
8326
0
      goto de_fault;
8327
0
    continue;
8328
8329
    /* Indirect .sdata relocation.  */
8330
0
  case R_PPC_EMB_SDAI16:
8331
0
    BFD_ASSERT (htab->sdata[0].section != NULL);
8332
0
    if (!is_static_defined (htab->sdata[0].sym))
8333
0
      {
8334
0
        unresolved_reloc = true;
8335
0
        break;
8336
0
      }
8337
0
    relocation
8338
0
      = elf_finish_pointer_linker_section (input_bfd, &htab->sdata[0],
8339
0
             h, relocation, rel);
8340
0
    addend = 0;
8341
0
    break;
8342
8343
    /* Indirect .sdata2 relocation.  */
8344
0
  case R_PPC_EMB_SDA2I16:
8345
0
    BFD_ASSERT (htab->sdata[1].section != NULL);
8346
0
    if (!is_static_defined (htab->sdata[1].sym))
8347
0
      {
8348
0
        unresolved_reloc = true;
8349
0
        break;
8350
0
      }
8351
0
    relocation
8352
0
      = elf_finish_pointer_linker_section (input_bfd, &htab->sdata[1],
8353
0
             h, relocation, rel);
8354
0
    addend = 0;
8355
0
    break;
8356
8357
    /* Handle the TOC16 reloc.  We want to use the offset within the .got
8358
       section, not the actual VMA.  This is appropriate when generating
8359
       an embedded ELF object, for which the .got section acts like the
8360
       AIX .toc section.  */
8361
0
  case R_PPC_TOC16:     /* phony GOT16 relocations */
8362
0
    if (sec == NULL || sec->output_section == NULL)
8363
0
      {
8364
0
        unresolved_reloc = true;
8365
0
        break;
8366
0
      }
8367
0
    BFD_ASSERT (strcmp (bfd_section_name (sec), ".got") == 0
8368
0
          || strcmp (bfd_section_name (sec), ".cgot") == 0);
8369
8370
0
    addend -= sec->output_section->vma + sec->output_offset + 0x8000;
8371
0
    break;
8372
8373
0
  case R_PPC_PLTREL24:
8374
0
    if (h != NULL && ifunc == NULL)
8375
0
      {
8376
0
        struct plt_entry *ent;
8377
8378
0
        ent = find_plt_ent (&h->plt.plist, got2,
8379
0
          bfd_link_pic (info) ? addend : 0);
8380
0
        if (ent == NULL
8381
0
      || htab->elf.splt == NULL)
8382
0
    {
8383
      /* We didn't make a PLT entry for this symbol.  This
8384
         happens when statically linking PIC code, or when
8385
         using -Bsymbolic.  */
8386
0
    }
8387
0
        else
8388
0
    {
8389
      /* Relocation is to the entry for this symbol in the
8390
         procedure linkage table.  */
8391
0
      unresolved_reloc = false;
8392
0
      if (htab->plt_type == PLT_NEW)
8393
0
        relocation = (htab->glink->output_section->vma
8394
0
          + htab->glink->output_offset
8395
0
          + ent->glink_offset);
8396
0
      else
8397
0
        relocation = (htab->elf.splt->output_section->vma
8398
0
          + htab->elf.splt->output_offset
8399
0
          + ent->plt.offset);
8400
0
    }
8401
0
      }
8402
8403
    /* R_PPC_PLTREL24 is rather special.  If non-zero, the
8404
       addend specifies the GOT pointer offset within .got2.
8405
       Don't apply it to the relocation field.  */
8406
0
    addend = 0;
8407
0
    break;
8408
8409
0
  case R_PPC_PLTSEQ:
8410
0
  case R_PPC_PLTCALL:
8411
0
  case R_PPC_PLT16_LO:
8412
0
  case R_PPC_PLT16_HI:
8413
0
  case R_PPC_PLT16_HA:
8414
0
    plt_list = NULL;
8415
0
    if (h != NULL)
8416
0
      plt_list = &h->plt.plist;
8417
0
    else if (ifunc != NULL)
8418
0
      plt_list = ifunc;
8419
0
    else if (local_got_offsets != NULL)
8420
0
      {
8421
0
        struct plt_entry **local_plt;
8422
0
        local_plt = (struct plt_entry **) (local_got_offsets
8423
0
             + symtab_hdr->sh_info);
8424
0
        plt_list = local_plt + r_symndx;
8425
0
      }
8426
0
    unresolved_reloc = true;
8427
0
    if (plt_list != NULL)
8428
0
      {
8429
0
        struct plt_entry *ent;
8430
8431
0
        ent = find_plt_ent (plt_list, got2,
8432
0
          bfd_link_pic (info) ? addend : 0);
8433
0
        if (ent != NULL && ent->plt.offset != (bfd_vma) -1)
8434
0
    {
8435
0
      asection *plt;
8436
8437
0
      unresolved_reloc = false;
8438
0
      plt = htab->elf.splt;
8439
0
      if (use_local_plt (info, h))
8440
0
        {
8441
0
          if (ifunc != NULL)
8442
0
      plt = htab->elf.iplt;
8443
0
          else
8444
0
      plt = htab->pltlocal;
8445
0
        }
8446
0
      relocation = (plt->output_section->vma
8447
0
        + plt->output_offset
8448
0
        + ent->plt.offset);
8449
0
      if (bfd_link_pic (info))
8450
0
        {
8451
0
          bfd_vma got = 0;
8452
8453
0
          if (ent->addend >= 32768)
8454
0
      got = (ent->addend
8455
0
             + ent->sec->output_section->vma
8456
0
             + ent->sec->output_offset);
8457
0
          else
8458
0
      got = SYM_VAL (htab->elf.hgot);
8459
0
          relocation -= got;
8460
0
        }
8461
0
    }
8462
0
      }
8463
0
    addend = 0;
8464
0
    break;
8465
8466
    /* Relocate against _SDA_BASE_.  */
8467
0
  case R_PPC_SDAREL16:
8468
0
    {
8469
0
      const char *name;
8470
0
      struct elf_link_hash_entry *sda = htab->sdata[0].sym;
8471
8472
0
      if (sec == NULL
8473
0
    || sec->output_section == NULL
8474
0
    || !is_static_defined (sda))
8475
0
        {
8476
0
    unresolved_reloc = true;
8477
0
    break;
8478
0
        }
8479
0
      addend -= SYM_VAL (sda);
8480
8481
0
      name = bfd_section_name (sec->output_section);
8482
0
      if (!(strcmp (name, ".sdata") == 0
8483
0
      || strcmp (name, ".sbss") == 0))
8484
0
        {
8485
0
    _bfd_error_handler
8486
      /* xgettext:c-format */
8487
0
      (_("%pB: the target (%s) of a %s relocation is "
8488
0
         "in the wrong output section (%s)"),
8489
0
       input_bfd,
8490
0
       sym_name,
8491
0
       howto->name,
8492
0
       name);
8493
0
        }
8494
0
    }
8495
0
    break;
8496
8497
    /* Relocate against _SDA2_BASE_.  */
8498
0
  case R_PPC_EMB_SDA2REL:
8499
0
    {
8500
0
      const char *name;
8501
0
      struct elf_link_hash_entry *sda = htab->sdata[1].sym;
8502
8503
0
      if (sec == NULL
8504
0
    || sec->output_section == NULL
8505
0
    || !is_static_defined (sda))
8506
0
        {
8507
0
    unresolved_reloc = true;
8508
0
    break;
8509
0
        }
8510
0
      addend -= SYM_VAL (sda);
8511
8512
0
      name = bfd_section_name (sec->output_section);
8513
0
      if (!(strcmp (name, ".sdata2") == 0
8514
0
      || strcmp (name, ".sbss2") == 0))
8515
0
        {
8516
0
    _bfd_error_handler
8517
      /* xgettext:c-format */
8518
0
      (_("%pB: the target (%s) of a %s relocation is "
8519
0
         "in the wrong output section (%s)"),
8520
0
       input_bfd,
8521
0
       sym_name,
8522
0
       howto->name,
8523
0
       name);
8524
0
        }
8525
0
    }
8526
0
    break;
8527
8528
0
  case R_PPC_VLE_LO16A:
8529
0
    relocation = relocation + addend;
8530
0
    r = ppc_elf_vle_split16 (input_bfd, input_section, rel->r_offset,
8531
0
           contents + rel->r_offset, relocation,
8532
0
           split16a_type,
8533
0
           htab->params->vle_reloc_fixup);
8534
0
    goto report_reloc;
8535
8536
0
  case R_PPC_VLE_LO16D:
8537
0
    relocation = relocation + addend;
8538
0
    r = ppc_elf_vle_split16 (input_bfd, input_section, rel->r_offset,
8539
0
           contents + rel->r_offset, relocation,
8540
0
           split16d_type,
8541
0
           htab->params->vle_reloc_fixup);
8542
0
    goto report_reloc;
8543
8544
0
  case R_PPC_VLE_HI16A:
8545
0
    relocation = (relocation + addend) >> 16;
8546
0
    r = ppc_elf_vle_split16 (input_bfd, input_section, rel->r_offset,
8547
0
           contents + rel->r_offset, relocation,
8548
0
           split16a_type,
8549
0
           htab->params->vle_reloc_fixup);
8550
0
    goto report_reloc;
8551
8552
0
  case R_PPC_VLE_HI16D:
8553
0
    relocation = (relocation + addend) >> 16;
8554
0
    r = ppc_elf_vle_split16 (input_bfd, input_section, rel->r_offset,
8555
0
           contents + rel->r_offset, relocation,
8556
0
           split16d_type,
8557
0
           htab->params->vle_reloc_fixup);
8558
0
    goto report_reloc;
8559
8560
0
  case R_PPC_VLE_HA16A:
8561
0
    relocation = (relocation + addend + 0x8000) >> 16;
8562
0
    r = ppc_elf_vle_split16 (input_bfd, input_section, rel->r_offset,
8563
0
           contents + rel->r_offset, relocation,
8564
0
           split16a_type,
8565
0
           htab->params->vle_reloc_fixup);
8566
0
    goto report_reloc;
8567
8568
0
  case R_PPC_VLE_HA16D:
8569
0
    relocation = (relocation + addend + 0x8000) >> 16;
8570
0
    r = ppc_elf_vle_split16 (input_bfd, input_section, rel->r_offset,
8571
0
           contents + rel->r_offset, relocation,
8572
0
           split16d_type,
8573
0
           htab->params->vle_reloc_fixup);
8574
0
    goto report_reloc;
8575
8576
    /* Relocate against either _SDA_BASE_, _SDA2_BASE_, or 0.  */
8577
0
  case R_PPC_EMB_SDA21:
8578
0
  case R_PPC_VLE_SDA21:
8579
0
  case R_PPC_EMB_RELSDA:
8580
0
  case R_PPC_VLE_SDA21_LO:
8581
0
    if (!offset_in_range (input_section, rel->r_offset, 4))
8582
0
      {
8583
0
        r = bfd_reloc_outofrange;
8584
0
        goto report_reloc;
8585
0
      }
8586
0
    else
8587
0
      {
8588
0
        const char *name;
8589
0
        int reg;
8590
0
        unsigned int insn;
8591
0
        struct elf_link_hash_entry *sda = NULL;
8592
8593
0
        if (sec == NULL || sec->output_section == NULL)
8594
0
    {
8595
0
      unresolved_reloc = true;
8596
0
      break;
8597
0
    }
8598
8599
0
        name = bfd_section_name (sec->output_section);
8600
0
        if (strcmp (name, ".sdata") == 0
8601
0
      || strcmp (name, ".sbss") == 0)
8602
0
    {
8603
0
      reg = 13;
8604
0
      sda = htab->sdata[0].sym;
8605
0
    }
8606
0
        else if (strcmp (name, ".sdata2") == 0
8607
0
           || strcmp (name, ".sbss2") == 0)
8608
0
    {
8609
0
      reg = 2;
8610
0
      sda = htab->sdata[1].sym;
8611
0
    }
8612
0
        else if (strcmp (name, ".PPC.EMB.sdata0") == 0
8613
0
           || strcmp (name, ".PPC.EMB.sbss0") == 0)
8614
0
    {
8615
0
      reg = 0;
8616
0
    }
8617
0
        else
8618
0
    {
8619
0
      _bfd_error_handler
8620
        /* xgettext:c-format */
8621
0
        (_("%pB: the target (%s) of a %s relocation is "
8622
0
           "in the wrong output section (%s)"),
8623
0
         input_bfd,
8624
0
         sym_name,
8625
0
         howto->name,
8626
0
         name);
8627
8628
0
      bfd_set_error (bfd_error_bad_value);
8629
0
      ret = false;
8630
0
      goto copy_reloc;
8631
0
    }
8632
8633
0
        if (sda != NULL)
8634
0
    {
8635
0
      if (!is_static_defined (sda))
8636
0
        {
8637
0
          unresolved_reloc = true;
8638
0
          break;
8639
0
        }
8640
0
      addend -= SYM_VAL (sda);
8641
0
    }
8642
8643
0
        if (r_type == R_PPC_EMB_RELSDA)
8644
0
    break;
8645
8646
        /* The PowerPC Embedded Application Binary Interface
8647
     version 1.0 insanely chose to specify R_PPC_EMB_SDA21
8648
     operating on a 24-bit field at r_offset.  GNU as and
8649
     GNU ld have always assumed R_PPC_EMB_SDA21 operates on
8650
     a 32-bit bit insn at r_offset.  Cope with object file
8651
     producers that possibly comply with the EABI in
8652
     generating an odd r_offset for big-endian objects.  */
8653
0
        if (r_type == R_PPC_EMB_SDA21)
8654
0
    rel->r_offset &= ~1;
8655
8656
0
        insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
8657
0
        if (reg == 0
8658
0
      && (r_type == R_PPC_VLE_SDA21
8659
0
          || r_type == R_PPC_VLE_SDA21_LO))
8660
0
    {
8661
0
      relocation = relocation + addend;
8662
0
      addend = 0;
8663
8664
      /* Force e_li insn, keeping RT from original insn.  */
8665
0
      insn &= 0x1f << 21;
8666
0
      insn |= 28u << 26;
8667
8668
      /* We have an li20 field, bits 17..20, 11..15, 21..31.  */
8669
      /* Top 4 bits of value to 17..20.  */
8670
0
      insn |= (relocation & 0xf0000) >> 5;
8671
      /* Next 5 bits of the value to 11..15.  */
8672
0
      insn |= (relocation & 0xf800) << 5;
8673
      /* And the final 11 bits of the value to bits 21 to 31.  */
8674
0
      insn |= relocation & 0x7ff;
8675
8676
0
      bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
8677
8678
0
      r = bfd_reloc_ok;
8679
0
      if (r_type == R_PPC_VLE_SDA21
8680
0
          && ((relocation + 0x80000) & 0xffffffff) > 0x100000)
8681
0
        r = bfd_reloc_overflow;
8682
0
      goto report_reloc;
8683
0
    }
8684
        /* Fill in register field.  */
8685
0
        insn = (insn & ~RA_REGISTER_MASK) | (reg << RA_REGISTER_SHIFT);
8686
0
        bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
8687
0
      }
8688
0
    break;
8689
8690
0
  case R_PPC_VLE_SDAREL_LO16A:
8691
0
  case R_PPC_VLE_SDAREL_LO16D:
8692
0
  case R_PPC_VLE_SDAREL_HI16A:
8693
0
  case R_PPC_VLE_SDAREL_HI16D:
8694
0
  case R_PPC_VLE_SDAREL_HA16A:
8695
0
  case R_PPC_VLE_SDAREL_HA16D:
8696
0
    if (!offset_in_range (input_section, rel->r_offset, 4))
8697
0
      r = bfd_reloc_outofrange;
8698
0
    else
8699
0
      {
8700
0
        bfd_vma value;
8701
0
        const char *name;
8702
0
        struct elf_link_hash_entry *sda = NULL;
8703
8704
0
        if (sec == NULL || sec->output_section == NULL)
8705
0
    {
8706
0
      unresolved_reloc = true;
8707
0
      break;
8708
0
    }
8709
8710
0
        name = bfd_section_name (sec->output_section);
8711
0
        if (strcmp (name, ".sdata") == 0
8712
0
      || strcmp (name, ".sbss") == 0)
8713
0
    sda = htab->sdata[0].sym;
8714
0
        else if (strcmp (name, ".sdata2") == 0
8715
0
           || strcmp (name, ".sbss2") == 0)
8716
0
    sda = htab->sdata[1].sym;
8717
0
        else
8718
0
    {
8719
0
      _bfd_error_handler
8720
        /* xgettext:c-format */
8721
0
        (_("%pB: the target (%s) of a %s relocation is "
8722
0
           "in the wrong output section (%s)"),
8723
0
         input_bfd,
8724
0
         sym_name,
8725
0
         howto->name,
8726
0
         name);
8727
8728
0
      bfd_set_error (bfd_error_bad_value);
8729
0
      ret = false;
8730
0
      goto copy_reloc;
8731
0
    }
8732
8733
0
        if (sda == NULL || !is_static_defined (sda))
8734
0
    {
8735
0
      unresolved_reloc = true;
8736
0
      break;
8737
0
    }
8738
0
        value = relocation + addend - SYM_VAL (sda);
8739
8740
0
        if (r_type == R_PPC_VLE_SDAREL_LO16A)
8741
0
    r = ppc_elf_vle_split16 (input_bfd, input_section,
8742
0
           rel->r_offset,
8743
0
           contents + rel->r_offset, value,
8744
0
           split16a_type,
8745
0
           htab->params->vle_reloc_fixup);
8746
0
        else if (r_type == R_PPC_VLE_SDAREL_LO16D)
8747
0
    r = ppc_elf_vle_split16 (input_bfd, input_section,
8748
0
           rel->r_offset,
8749
0
           contents + rel->r_offset, value,
8750
0
           split16d_type,
8751
0
           htab->params->vle_reloc_fixup);
8752
0
        else if (r_type == R_PPC_VLE_SDAREL_HI16A)
8753
0
    {
8754
0
      value = value >> 16;
8755
0
      r = ppc_elf_vle_split16 (input_bfd, input_section,
8756
0
             rel->r_offset,
8757
0
             contents + rel->r_offset, value,
8758
0
             split16a_type,
8759
0
             htab->params->vle_reloc_fixup);
8760
0
    }
8761
0
        else if (r_type == R_PPC_VLE_SDAREL_HI16D)
8762
0
    {
8763
0
      value = value >> 16;
8764
0
      r = ppc_elf_vle_split16 (input_bfd, input_section,
8765
0
             rel->r_offset,
8766
0
             contents + rel->r_offset, value,
8767
0
             split16d_type,
8768
0
             htab->params->vle_reloc_fixup);
8769
0
    }
8770
0
        else if (r_type == R_PPC_VLE_SDAREL_HA16A)
8771
0
    {
8772
0
      value = (value + 0x8000) >> 16;
8773
0
      r = ppc_elf_vle_split16 (input_bfd, input_section,
8774
0
             rel->r_offset,
8775
0
             contents + rel->r_offset, value,
8776
0
             split16a_type,
8777
0
             htab->params->vle_reloc_fixup);
8778
0
    }
8779
0
        else if (r_type == R_PPC_VLE_SDAREL_HA16D)
8780
0
    {
8781
0
      value = (value + 0x8000) >> 16;
8782
0
      r = ppc_elf_vle_split16 (input_bfd, input_section,
8783
0
             rel->r_offset,
8784
0
             contents + rel->r_offset, value,
8785
0
             split16d_type,
8786
0
             htab->params->vle_reloc_fixup);
8787
0
    }
8788
0
        else
8789
0
    abort ();
8790
0
      }
8791
0
    goto report_reloc;
8792
8793
0
  case R_PPC_VLE_ADDR20:
8794
0
    if (!offset_in_range (input_section, rel->r_offset, 4))
8795
0
      r = bfd_reloc_outofrange;
8796
0
    else
8797
0
      {
8798
0
        ppc_elf_vle_split20 (output_bfd, contents + rel->r_offset,
8799
0
           relocation);
8800
0
        r = bfd_reloc_ok;
8801
0
      }
8802
0
    goto report_reloc;
8803
8804
    /* Relocate against the beginning of the section.  */
8805
0
  case R_PPC_SECTOFF:
8806
0
  case R_PPC_SECTOFF_LO:
8807
0
  case R_PPC_SECTOFF_HI:
8808
0
  case R_PPC_SECTOFF_HA:
8809
0
    if (sec == NULL || sec->output_section == NULL)
8810
0
      {
8811
0
        unresolved_reloc = true;
8812
0
        break;
8813
0
      }
8814
0
    addend -= sec->output_section->vma;
8815
0
    break;
8816
8817
    /* Negative relocations.  */
8818
0
  case R_PPC_EMB_NADDR32:
8819
0
  case R_PPC_EMB_NADDR16:
8820
0
  case R_PPC_EMB_NADDR16_LO:
8821
0
  case R_PPC_EMB_NADDR16_HI:
8822
0
  case R_PPC_EMB_NADDR16_HA:
8823
0
    addend -= 2 * relocation;
8824
0
    break;
8825
8826
0
  case R_PPC_COPY:
8827
0
  case R_PPC_GLOB_DAT:
8828
0
  case R_PPC_JMP_SLOT:
8829
0
  case R_PPC_RELATIVE:
8830
0
  case R_PPC_IRELATIVE:
8831
0
  case R_PPC_PLT32:
8832
0
  case R_PPC_PLTREL32:
8833
0
  case R_PPC_ADDR30:
8834
0
  case R_PPC_EMB_RELSEC16:
8835
0
  case R_PPC_EMB_RELST_LO:
8836
0
  case R_PPC_EMB_RELST_HI:
8837
0
  case R_PPC_EMB_RELST_HA:
8838
0
  case R_PPC_EMB_BIT_FLD:
8839
    /* xgettext:c-format */
8840
0
    _bfd_error_handler (_("%pB: %s unsupported"),
8841
0
            input_bfd, howto->name);
8842
8843
0
    bfd_set_error (bfd_error_invalid_operation);
8844
0
    ret = false;
8845
0
    goto copy_reloc;
8846
0
  }
8847
8848
0
      switch (r_type)
8849
0
  {
8850
0
  default:
8851
0
    break;
8852
8853
0
  case R_PPC_TPREL16_HA:
8854
0
    if (htab->do_tls_opt
8855
0
        && relocation + addend + 0x8000 < 0x10000
8856
0
        && offset_in_range (input_section, rel->r_offset & ~3, 4))
8857
8858
0
      {
8859
0
        bfd_byte *p = contents + (rel->r_offset & ~3);
8860
0
        bfd_put_32 (input_bfd, NOP, p);
8861
0
      }
8862
0
    break;
8863
8864
0
  case R_PPC_TPREL16_LO:
8865
0
    if (htab->do_tls_opt
8866
0
        && relocation + addend + 0x8000 < 0x10000
8867
0
        && offset_in_range (input_section, rel->r_offset & ~3, 4))
8868
0
      {
8869
0
        bfd_byte *p = contents + (rel->r_offset & ~3);
8870
0
        unsigned int insn = bfd_get_32 (input_bfd, p);
8871
0
        insn &= ~(0x1f << 16);
8872
0
        insn |= 2 << 16;
8873
0
        bfd_put_32 (input_bfd, insn, p);
8874
0
      }
8875
0
    break;
8876
0
  }
8877
8878
0
      switch (r_type)
8879
0
  {
8880
0
  default:
8881
0
    break;
8882
8883
0
  case R_PPC_PLTCALL:
8884
0
    if (unresolved_reloc)
8885
0
      {
8886
0
        if (offset_in_range (input_section, rel->r_offset, 4))
8887
0
    {
8888
0
      bfd_byte *p = contents + rel->r_offset;
8889
0
      unsigned int insn = bfd_get_32 (input_bfd, p);
8890
0
      insn &= 1;
8891
0
      bfd_put_32 (input_bfd, B | insn, p);
8892
0
      unresolved_reloc = save_unresolved_reloc;
8893
0
      r_type = R_PPC_REL24;
8894
0
      howto = ppc_elf_howto_table[r_type];
8895
0
    }
8896
0
      }
8897
0
    else if (htab->plt_type != PLT_NEW)
8898
0
      info->callbacks->einfo
8899
0
        (_("%X%P: %H: %s relocation unsupported for bss-plt\n"),
8900
0
         input_bfd, input_section, rel->r_offset,
8901
0
         howto->name);
8902
0
    break;
8903
8904
0
  case R_PPC_PLTSEQ:
8905
0
  case R_PPC_PLT16_HA:
8906
0
  case R_PPC_PLT16_LO:
8907
0
    if (unresolved_reloc)
8908
0
      {
8909
0
        if (offset_in_range (input_section, rel->r_offset & ~3, 4))
8910
0
    {
8911
0
      bfd_byte *p = contents + (rel->r_offset & ~3);
8912
0
      bfd_put_32 (input_bfd, NOP, p);
8913
0
      unresolved_reloc = false;
8914
0
      r_type = R_PPC_NONE;
8915
0
      howto = ppc_elf_howto_table[r_type];
8916
0
    }
8917
0
      }
8918
0
    else if (htab->plt_type != PLT_NEW)
8919
0
      info->callbacks->einfo
8920
0
        (_("%X%P: %H: %s relocation unsupported for bss-plt\n"),
8921
0
         input_bfd, input_section, rel->r_offset,
8922
0
         howto->name);
8923
0
    break;
8924
0
  }
8925
8926
      /* Do any further special processing.  */
8927
0
      switch (r_type)
8928
0
  {
8929
0
  default:
8930
0
    break;
8931
8932
0
  case R_PPC_ADDR16_HA:
8933
0
  case R_PPC_REL16_HA:
8934
0
  case R_PPC_REL16DX_HA:
8935
0
  case R_PPC_SECTOFF_HA:
8936
0
  case R_PPC_TPREL16_HA:
8937
0
  case R_PPC_DTPREL16_HA:
8938
0
  case R_PPC_EMB_NADDR16_HA:
8939
0
  case R_PPC_EMB_RELST_HA:
8940
    /* It's just possible that this symbol is a weak symbol
8941
       that's not actually defined anywhere.  In that case,
8942
       'sec' would be NULL, and we should leave the symbol
8943
       alone (it will be set to zero elsewhere in the link).  */
8944
0
    if (sec == NULL)
8945
0
      break;
8946
    /* Fall through.  */
8947
8948
0
  case R_PPC_PLT16_HA:
8949
0
  case R_PPC_GOT16_HA:
8950
0
  case R_PPC_GOT_TLSGD16_HA:
8951
0
  case R_PPC_GOT_TLSLD16_HA:
8952
0
  case R_PPC_GOT_TPREL16_HA:
8953
0
  case R_PPC_GOT_DTPREL16_HA:
8954
    /* Add 0x10000 if sign bit in 0:15 is set.
8955
       Bits 0:15 are not used.  */
8956
0
    addend += 0x8000;
8957
0
    break;
8958
8959
0
  case R_PPC_ADDR16:
8960
0
  case R_PPC_ADDR16_LO:
8961
0
  case R_PPC_GOT16:
8962
0
  case R_PPC_GOT16_LO:
8963
0
  case R_PPC_SDAREL16:
8964
0
  case R_PPC_SECTOFF:
8965
0
  case R_PPC_SECTOFF_LO:
8966
0
  case R_PPC_DTPREL16:
8967
0
  case R_PPC_DTPREL16_LO:
8968
0
  case R_PPC_TPREL16:
8969
0
  case R_PPC_TPREL16_LO:
8970
0
  case R_PPC_GOT_TLSGD16:
8971
0
  case R_PPC_GOT_TLSGD16_LO:
8972
0
  case R_PPC_GOT_TLSLD16:
8973
0
  case R_PPC_GOT_TLSLD16_LO:
8974
0
  case R_PPC_GOT_DTPREL16:
8975
0
  case R_PPC_GOT_DTPREL16_LO:
8976
0
  case R_PPC_GOT_TPREL16:
8977
0
  case R_PPC_GOT_TPREL16_LO:
8978
0
    if (offset_in_range (input_section, rel->r_offset - d_offset, 4))
8979
0
      {
8980
        /* The 32-bit ABI lacks proper relocations to deal with
8981
     certain 64-bit instructions.  Prevent damage to bits
8982
     that make up part of the insn opcode.  */
8983
0
        unsigned int insn, mask, lobit;
8984
8985
0
        insn = bfd_get_32 (input_bfd,
8986
0
         contents + rel->r_offset - d_offset);
8987
0
        mask = 0;
8988
0
        if (is_insn_ds_form (insn))
8989
0
    mask = 3;
8990
0
        else if (is_insn_dq_form (insn))
8991
0
    mask = 15;
8992
0
        else
8993
0
    break;
8994
0
        relocation += addend;
8995
0
        addend = insn & mask;
8996
0
        lobit = mask & relocation;
8997
0
        if (lobit != 0)
8998
0
    {
8999
0
      relocation ^= lobit;
9000
0
      info->callbacks->einfo
9001
        /* xgettext:c-format */
9002
0
        (_("%H: error: %s against `%s' not a multiple of %u\n"),
9003
0
         input_bfd, input_section, rel->r_offset,
9004
0
         howto->name, sym_name, mask + 1);
9005
0
      bfd_set_error (bfd_error_bad_value);
9006
0
      ret = false;
9007
0
    }
9008
0
      }
9009
0
    break;
9010
0
  }
9011
9012
#ifdef DEBUG
9013
      fprintf (stderr, "\ttype = %s (%d), name = %s, symbol index = %ld, "
9014
         "offset = %ld, addend = %ld\n",
9015
         howto->name,
9016
         (int) r_type,
9017
         sym_name,
9018
         r_symndx,
9019
         (long) rel->r_offset,
9020
         (long) addend);
9021
#endif
9022
9023
0
      if (unresolved_reloc
9024
0
    && !((input_section->flags & SEC_DEBUGGING) != 0
9025
0
         && h->def_dynamic)
9026
0
    && _bfd_elf_section_offset (output_bfd, info, input_section,
9027
0
              rel->r_offset) != (bfd_vma) -1)
9028
0
  {
9029
0
    info->callbacks->einfo
9030
      /* xgettext:c-format */
9031
0
      (_("%H: unresolvable %s relocation against symbol `%s'\n"),
9032
0
       input_bfd, input_section, rel->r_offset,
9033
0
       howto->name,
9034
0
       sym_name);
9035
0
    ret = false;
9036
0
  }
9037
9038
      /* 16-bit fields in insns mostly have signed values, but a
9039
   few insns have 16-bit unsigned values.  Really, we should
9040
   have different reloc types.  */
9041
0
      if (howto->complain_on_overflow != complain_overflow_dont
9042
0
    && howto->dst_mask == 0xffff
9043
0
    && (input_section->flags & SEC_CODE) != 0
9044
0
    && offset_in_range (input_section, rel->r_offset & ~3, 4))
9045
0
  {
9046
0
    enum complain_overflow complain = complain_overflow_signed;
9047
9048
0
    if ((elf_section_flags (input_section) & SHF_PPC_VLE) == 0)
9049
0
      {
9050
0
        unsigned int insn;
9051
9052
0
        insn = bfd_get_32 (input_bfd, contents + (rel->r_offset & ~3));
9053
0
        if ((insn & (0x3fu << 26)) == 10u << 26 /* cmpli */)
9054
0
    complain = complain_overflow_bitfield;
9055
0
        else if ((insn & (0x3fu << 26)) == 28u << 26 /* andi */
9056
0
           || (insn & (0x3fu << 26)) == 24u << 26 /* ori */
9057
0
           || (insn & (0x3fu << 26)) == 26u << 26 /* xori */)
9058
0
    complain = complain_overflow_unsigned;
9059
0
      }
9060
0
    if (howto->complain_on_overflow != complain)
9061
0
      {
9062
0
        alt_howto = *howto;
9063
0
        alt_howto.complain_on_overflow = complain;
9064
0
        howto = &alt_howto;
9065
0
      }
9066
0
  }
9067
9068
0
      if (r_type == R_PPC_REL16DX_HA)
9069
0
  {
9070
    /* Split field reloc isn't handled by _bfd_final_link_relocate.  */
9071
0
    if (offset_in_range (input_section, rel->r_offset, 4))
9072
0
      r = bfd_reloc_outofrange;
9073
0
    else
9074
0
      {
9075
0
        unsigned int insn;
9076
9077
0
        relocation += addend;
9078
0
        relocation -= (rel->r_offset
9079
0
           + input_section->output_offset
9080
0
           + input_section->output_section->vma);
9081
0
        relocation >>= 16;
9082
0
        insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
9083
0
        insn &= ~0x1fffc1;
9084
0
        insn |= (relocation & 0xffc1) | ((relocation & 0x3e) << 15);
9085
0
        bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
9086
0
        r = bfd_reloc_ok;
9087
0
      }
9088
0
  }
9089
0
      else
9090
0
  r = _bfd_final_link_relocate (howto, input_bfd, input_section, contents,
9091
0
              rel->r_offset, relocation, addend);
9092
9093
0
    report_reloc:
9094
0
      if (r != bfd_reloc_ok)
9095
0
  {
9096
0
    if (r == bfd_reloc_overflow)
9097
0
      {
9098
        /* On code like "if (foo) foo();" don't report overflow
9099
     on a branch to zero when foo is undefined.  */
9100
0
        if (!warned
9101
0
      && !(h != NULL
9102
0
           && (h->root.type == bfd_link_hash_undefweak
9103
0
         || h->root.type == bfd_link_hash_undefined)
9104
0
           && is_branch_reloc (r_type)))
9105
0
    info->callbacks->reloc_overflow
9106
0
      (info, (h ? &h->root : NULL), sym_name, howto->name,
9107
0
       rel->r_addend, input_bfd, input_section, rel->r_offset);
9108
0
      }
9109
0
    else
9110
0
      {
9111
0
        info->callbacks->einfo
9112
    /* xgettext:c-format */
9113
0
    (_("%H: %s reloc against `%s': error %d\n"),
9114
0
     input_bfd, input_section, rel->r_offset,
9115
0
     howto->name, sym_name, (int) r);
9116
0
        ret = false;
9117
0
      }
9118
0
  }
9119
0
    copy_reloc:
9120
0
      if (wrel != rel)
9121
0
  *wrel = *rel;
9122
0
    }
9123
9124
0
  if (wrel != rel)
9125
0
    {
9126
0
      Elf_Internal_Shdr *rel_hdr;
9127
0
      size_t deleted = rel - wrel;
9128
9129
0
      rel_hdr = _bfd_elf_single_rel_hdr (input_section->output_section);
9130
0
      rel_hdr->sh_size -= rel_hdr->sh_entsize * deleted;
9131
0
      relend = wrel;
9132
0
      rel_hdr = _bfd_elf_single_rel_hdr (input_section);
9133
0
      rel_hdr->sh_size -= rel_hdr->sh_entsize * deleted;
9134
0
      input_section->reloc_count -= deleted;
9135
0
    }
9136
9137
#ifdef DEBUG
9138
  fprintf (stderr, "\n");
9139
#endif
9140
9141
0
  if (input_section->sec_info_type == SEC_INFO_TYPE_TARGET
9142
0
      && input_section->size != input_section->rawsize
9143
0
      && (strcmp (input_section->output_section->name, ".init") == 0
9144
0
    || strcmp (input_section->output_section->name, ".fini") == 0))
9145
0
    {
9146
      /* Branch around the trampolines.  */
9147
0
      unsigned int insn = B + input_section->size - input_section->rawsize;
9148
0
      bfd_put_32 (input_bfd, insn, contents + input_section->rawsize);
9149
0
    }
9150
9151
0
  if (htab->params->ppc476_workaround
9152
0
      && input_section->sec_info_type == SEC_INFO_TYPE_TARGET
9153
0
      && (!bfd_link_relocatable (info)
9154
0
    || (input_section->output_section->alignment_power
9155
0
        >= htab->params->pagesize_p2)))
9156
0
    {
9157
0
      bfd_vma start_addr, end_addr, addr;
9158
0
      bfd_vma pagesize = (bfd_vma) 1 << htab->params->pagesize_p2;
9159
9160
0
      if (relax_info->workaround_size != 0)
9161
0
  {
9162
0
    bfd_byte *p;
9163
0
    unsigned int n;
9164
0
    bfd_byte fill[4];
9165
9166
0
    bfd_put_32 (input_bfd, BA, fill);
9167
0
    p = contents + input_section->size - relax_info->workaround_size;
9168
0
    n = relax_info->workaround_size >> 2;
9169
0
    while (n--)
9170
0
      {
9171
0
        memcpy (p, fill, 4);
9172
0
        p += 4;
9173
0
      }
9174
0
  }
9175
9176
      /* The idea is: Replace the last instruction on a page with a
9177
   branch to a patch area.  Put the insn there followed by a
9178
   branch back to the next page.  Complicated a little by
9179
   needing to handle moved conditional branches, and by not
9180
   wanting to touch data-in-text.  */
9181
9182
0
      start_addr = (input_section->output_section->vma
9183
0
        + input_section->output_offset);
9184
0
      end_addr = (start_addr + input_section->size
9185
0
      - relax_info->workaround_size);
9186
0
      for (addr = ((start_addr & -pagesize) + pagesize - 4);
9187
0
     addr < end_addr;
9188
0
     addr += pagesize)
9189
0
  {
9190
0
    bfd_vma offset = addr - start_addr;
9191
0
    Elf_Internal_Rela *lo, *hi;
9192
0
    bool is_data;
9193
0
    bfd_vma patch_off, patch_addr;
9194
0
    unsigned int insn;
9195
9196
    /* Do we have a data reloc at this offset?  If so, leave
9197
       the word alone.  */
9198
0
    is_data = false;
9199
0
    lo = relocs;
9200
0
    hi = relend;
9201
0
    rel = NULL;
9202
0
    while (lo < hi)
9203
0
      {
9204
0
        rel = lo + (hi - lo) / 2;
9205
0
        if (rel->r_offset < offset)
9206
0
    lo = rel + 1;
9207
0
        else if (rel->r_offset > offset + 3)
9208
0
    hi = rel;
9209
0
        else
9210
0
    {
9211
0
      switch (ELF32_R_TYPE (rel->r_info))
9212
0
        {
9213
0
        case R_PPC_ADDR32:
9214
0
        case R_PPC_UADDR32:
9215
0
        case R_PPC_REL32:
9216
0
        case R_PPC_ADDR30:
9217
0
          is_data = true;
9218
0
          break;
9219
0
        default:
9220
0
          break;
9221
0
        }
9222
0
      break;
9223
0
    }
9224
0
      }
9225
0
    if (is_data)
9226
0
      continue;
9227
9228
    /* Some instructions can be left alone too.  Unconditional
9229
       branches, except for bcctr with BO=0x14 (bctr, bctrl),
9230
       avoid the icache failure.
9231
9232
       The problem occurs due to prefetch across a page boundary
9233
       where stale instructions can be fetched from the next
9234
       page, and the mechanism for flushing these bad
9235
       instructions fails under certain circumstances.  The
9236
       unconditional branches:
9237
       1) Branch: b, bl, ba, bla,
9238
       2) Branch Conditional: bc, bca, bcl, bcla,
9239
       3) Branch Conditional to Link Register: bclr, bclrl,
9240
       where (2) and (3) have BO=0x14 making them unconditional,
9241
       prevent the bad prefetch because the prefetch itself is
9242
       affected by these instructions.  This happens even if the
9243
       instruction is not executed.
9244
9245
       A bctr example:
9246
       .
9247
       .  lis 9,new_page@ha
9248
       .  addi 9,9,new_page@l
9249
       .  mtctr 9
9250
       .  bctr
9251
       .  nop
9252
       .  nop
9253
       . new_page:
9254
       .
9255
       The bctr is not predicted taken due to ctr not being
9256
       ready, so prefetch continues on past the bctr into the
9257
       new page which might have stale instructions.  If they
9258
       fail to be flushed, then they will be executed after the
9259
       bctr executes.  Either of the following modifications
9260
       prevent the bad prefetch from happening in the first
9261
       place:
9262
       .
9263
       .  lis 9,new_page@ha  lis 9,new_page@ha
9264
       .  addi 9,9,new_page@l  addi 9,9,new_page@l
9265
       .  mtctr 9      mtctr 9
9266
       .  bctr       bctr
9267
       .  nop      b somewhere_else
9268
       .  b somewhere_else   nop
9269
       . new_page:    new_page:
9270
       .  */
9271
0
    insn = bfd_get_32 (input_bfd, contents + offset);
9272
0
    if ((insn & (0x3fu << 26)) == (18u << 26)      /* b,bl,ba,bla */
9273
0
        || ((insn & (0x3fu << 26)) == (16u << 26)      /* bc,bcl,bca,bcla*/
9274
0
      && (insn & (0x14 << 21)) == (0x14 << 21)) /*   with BO=0x14 */
9275
0
        || ((insn & (0x3fu << 26)) == (19u << 26)
9276
0
      && (insn & (0x3ff << 1)) == (16u << 1)    /* bclr,bclrl */
9277
0
      && (insn & (0x14 << 21)) == (0x14 << 21)))/*   with BO=0x14 */
9278
0
      continue;
9279
9280
0
    patch_addr = (start_addr + input_section->size
9281
0
      - relax_info->workaround_size);
9282
0
    patch_addr = (patch_addr + 15) & -16;
9283
0
    patch_off = patch_addr - start_addr;
9284
0
    bfd_put_32 (input_bfd, B + patch_off - offset, contents + offset);
9285
9286
0
    if (rel != NULL
9287
0
        && rel->r_offset >= offset
9288
0
        && rel->r_offset < offset + 4)
9289
0
      {
9290
0
        asection *sreloc;
9291
9292
        /* If the insn we are patching had a reloc, adjust the
9293
     reloc r_offset so that the reloc applies to the moved
9294
     location.  This matters for -r and --emit-relocs.  */
9295
0
        if (rel + 1 != relend)
9296
0
    {
9297
0
      Elf_Internal_Rela tmp = *rel;
9298
9299
      /* Keep the relocs sorted by r_offset.  */
9300
0
      memmove (rel, rel + 1, (relend - (rel + 1)) * sizeof (*rel));
9301
0
      relend[-1] = tmp;
9302
0
    }
9303
0
        relend[-1].r_offset += patch_off - offset;
9304
9305
        /* Adjust REL16 addends too.  */
9306
0
        switch (ELF32_R_TYPE (relend[-1].r_info))
9307
0
    {
9308
0
    case R_PPC_REL16:
9309
0
    case R_PPC_REL16_LO:
9310
0
    case R_PPC_REL16_HI:
9311
0
    case R_PPC_REL16_HA:
9312
0
      relend[-1].r_addend += patch_off - offset;
9313
0
      break;
9314
0
    default:
9315
0
      break;
9316
0
    }
9317
9318
        /* If we are building a PIE or shared library with
9319
     non-PIC objects, perhaps we had a dynamic reloc too?
9320
     If so, the dynamic reloc must move with the insn.  */
9321
0
        sreloc = elf_section_data (input_section)->sreloc;
9322
0
        if (sreloc != NULL)
9323
0
    {
9324
0
      Elf32_External_Rela *slo, *shi, *srelend;
9325
0
      bfd_vma soffset;
9326
9327
0
      slo = (Elf32_External_Rela *) sreloc->contents;
9328
0
      shi = srelend = slo + sreloc->reloc_count;
9329
0
      soffset = (offset + input_section->output_section->vma
9330
0
           + input_section->output_offset);
9331
0
      while (slo < shi)
9332
0
        {
9333
0
          Elf32_External_Rela *srel = slo + (shi - slo) / 2;
9334
0
          bfd_elf32_swap_reloca_in (output_bfd, (bfd_byte *) srel,
9335
0
            &outrel);
9336
0
          if (outrel.r_offset < soffset)
9337
0
      slo = srel + 1;
9338
0
          else if (outrel.r_offset > soffset + 3)
9339
0
      shi = srel;
9340
0
          else
9341
0
      {
9342
0
        if (srel + 1 != srelend)
9343
0
          {
9344
0
            memmove (srel, srel + 1,
9345
0
               (srelend - (srel + 1)) * sizeof (*srel));
9346
0
            srel = srelend - 1;
9347
0
          }
9348
0
        outrel.r_offset += patch_off - offset;
9349
0
        bfd_elf32_swap_reloca_out (output_bfd, &outrel,
9350
0
                 (bfd_byte *) srel);
9351
0
        break;
9352
0
      }
9353
0
        }
9354
0
    }
9355
0
      }
9356
0
    else
9357
0
      rel = NULL;
9358
9359
0
    if ((insn & (0x3fu << 26)) == (16u << 26) /* bc */
9360
0
        && (insn & 2) == 0 /* relative */)
9361
0
      {
9362
0
        bfd_vma delta = ((insn & 0xfffc) ^ 0x8000) - 0x8000;
9363
9364
0
        delta += offset - patch_off;
9365
0
        if (bfd_link_relocatable (info) && rel != NULL)
9366
0
    delta = 0;
9367
0
        if (!bfd_link_relocatable (info) && rel != NULL)
9368
0
    {
9369
0
      enum elf_ppc_reloc_type r_type;
9370
9371
0
      r_type = ELF32_R_TYPE (relend[-1].r_info);
9372
0
      if (r_type == R_PPC_REL14_BRTAKEN)
9373
0
        insn |= BRANCH_PREDICT_BIT;
9374
0
      else if (r_type == R_PPC_REL14_BRNTAKEN)
9375
0
        insn &= ~BRANCH_PREDICT_BIT;
9376
0
      else
9377
0
        BFD_ASSERT (r_type == R_PPC_REL14);
9378
9379
0
      if ((r_type == R_PPC_REL14_BRTAKEN
9380
0
           || r_type == R_PPC_REL14_BRNTAKEN)
9381
0
          && delta + 0x8000 < 0x10000
9382
0
          && (bfd_signed_vma) delta < 0)
9383
0
        insn ^= BRANCH_PREDICT_BIT;
9384
0
    }
9385
0
        if (delta + 0x8000 < 0x10000)
9386
0
    {
9387
0
      bfd_put_32 (input_bfd,
9388
0
            (insn & ~0xfffc) | (delta & 0xfffc),
9389
0
            contents + patch_off);
9390
0
      patch_off += 4;
9391
0
      bfd_put_32 (input_bfd,
9392
0
            B | ((offset + 4 - patch_off) & 0x3fffffc),
9393
0
            contents + patch_off);
9394
0
      patch_off += 4;
9395
0
    }
9396
0
        else
9397
0
    {
9398
0
      if (rel != NULL)
9399
0
        {
9400
0
          unsigned int r_sym = ELF32_R_SYM (relend[-1].r_info);
9401
9402
0
          relend[-1].r_offset += 8;
9403
0
          relend[-1].r_info = ELF32_R_INFO (r_sym, R_PPC_REL24);
9404
0
        }
9405
0
      bfd_put_32 (input_bfd,
9406
0
            (insn & ~0xfffc) | 8,
9407
0
            contents + patch_off);
9408
0
      patch_off += 4;
9409
0
      bfd_put_32 (input_bfd,
9410
0
            B | ((offset + 4 - patch_off) & 0x3fffffc),
9411
0
            contents + patch_off);
9412
0
      patch_off += 4;
9413
0
      bfd_put_32 (input_bfd,
9414
0
            B | ((delta - 8) & 0x3fffffc),
9415
0
            contents + patch_off);
9416
0
      patch_off += 4;
9417
0
    }
9418
0
      }
9419
0
    else
9420
0
      {
9421
0
        bfd_put_32 (input_bfd, insn, contents + patch_off);
9422
0
        patch_off += 4;
9423
0
        bfd_put_32 (input_bfd,
9424
0
        B | ((offset + 4 - patch_off) & 0x3fffffc),
9425
0
        contents + patch_off);
9426
0
        patch_off += 4;
9427
0
      }
9428
0
    BFD_ASSERT (patch_off <= input_section->size);
9429
0
    relax_info->workaround_size = input_section->size - patch_off;
9430
0
  }
9431
0
    }
9432
9433
0
  return ret;
9434
0
}
9435

9436
/* Write out the PLT relocs and entries for H.  */
9437
9438
static bool
9439
write_global_sym_plt (struct elf_link_hash_entry *h, void *inf)
9440
0
{
9441
0
  struct bfd_link_info *info = (struct bfd_link_info *) inf;
9442
0
  struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
9443
0
  struct plt_entry *ent;
9444
0
  bool doneone;
9445
9446
0
  doneone = false;
9447
0
  for (ent = h->plt.plist; ent != NULL; ent = ent->next)
9448
0
    if (ent->plt.offset != (bfd_vma) -1)
9449
0
      {
9450
0
  bool dyn = !use_local_plt (info, h);
9451
9452
0
  if (!doneone)
9453
0
    {
9454
0
      Elf_Internal_Rela rela;
9455
0
      bfd_byte *loc;
9456
0
      bfd_vma reloc_index;
9457
0
      asection *plt = htab->elf.splt;
9458
0
      asection *relplt = htab->elf.srelplt;
9459
9460
0
      if (htab->plt_type == PLT_NEW || !dyn)
9461
0
        reloc_index = ent->plt.offset / 4;
9462
0
      else
9463
0
        {
9464
0
    reloc_index = ((ent->plt.offset - htab->plt_initial_entry_size)
9465
0
             / htab->plt_slot_size);
9466
0
    if (reloc_index > PLT_NUM_SINGLE_ENTRIES
9467
0
        && htab->plt_type == PLT_OLD)
9468
0
      reloc_index -= (reloc_index - PLT_NUM_SINGLE_ENTRIES) / 2;
9469
0
        }
9470
9471
      /* This symbol has an entry in the procedure linkage table.
9472
         Set it up.  */
9473
0
      if (htab->plt_type == PLT_VXWORKS && dyn)
9474
0
        {
9475
0
    bfd_vma got_offset;
9476
0
    const bfd_vma *plt_entry;
9477
9478
    /* The first three entries in .got.plt are reserved.  */
9479
0
    got_offset = (reloc_index + 3) * 4;
9480
9481
    /* Use the right PLT. */
9482
0
    plt_entry = bfd_link_pic (info) ? ppc_elf_vxworks_pic_plt_entry
9483
0
          : ppc_elf_vxworks_plt_entry;
9484
9485
    /* Fill in the .plt on VxWorks.  */
9486
0
    if (bfd_link_pic (info))
9487
0
      {
9488
0
        bfd_put_32 (info->output_bfd,
9489
0
        plt_entry[0] | PPC_HA (got_offset),
9490
0
        plt->contents + ent->plt.offset + 0);
9491
0
        bfd_put_32 (info->output_bfd,
9492
0
        plt_entry[1] | PPC_LO (got_offset),
9493
0
        plt->contents + ent->plt.offset + 4);
9494
0
      }
9495
0
    else
9496
0
      {
9497
0
        bfd_vma got_loc = got_offset + SYM_VAL (htab->elf.hgot);
9498
9499
0
        bfd_put_32 (info->output_bfd,
9500
0
        plt_entry[0] | PPC_HA (got_loc),
9501
0
        plt->contents + ent->plt.offset + 0);
9502
0
        bfd_put_32 (info->output_bfd,
9503
0
        plt_entry[1] | PPC_LO (got_loc),
9504
0
        plt->contents + ent->plt.offset + 4);
9505
0
      }
9506
9507
0
    bfd_put_32 (info->output_bfd, plt_entry[2],
9508
0
          plt->contents + ent->plt.offset + 8);
9509
0
    bfd_put_32 (info->output_bfd, plt_entry[3],
9510
0
          plt->contents + ent->plt.offset + 12);
9511
9512
    /* This instruction is an immediate load.  The value loaded is
9513
       the byte offset of the R_PPC_JMP_SLOT relocation from the
9514
       start of the .rela.plt section.  The value is stored in the
9515
       low-order 16 bits of the load instruction.  */
9516
    /* NOTE: It appears that this is now an index rather than a
9517
       prescaled offset.  */
9518
0
    bfd_put_32 (info->output_bfd,
9519
0
          plt_entry[4] | reloc_index,
9520
0
          plt->contents + ent->plt.offset + 16);
9521
    /* This instruction is a PC-relative branch whose target is
9522
       the start of the PLT section.  The address of this branch
9523
       instruction is 20 bytes beyond the start of this PLT entry.
9524
       The address is encoded in bits 6-29, inclusive.  The value
9525
       stored is right-shifted by two bits, permitting a 26-bit
9526
       offset.  */
9527
0
    bfd_put_32 (info->output_bfd,
9528
0
          (plt_entry[5]
9529
0
           | (-(ent->plt.offset + 20) & 0x03fffffc)),
9530
0
          plt->contents + ent->plt.offset + 20);
9531
0
    bfd_put_32 (info->output_bfd, plt_entry[6],
9532
0
          plt->contents + ent->plt.offset + 24);
9533
0
    bfd_put_32 (info->output_bfd, plt_entry[7],
9534
0
          plt->contents + ent->plt.offset + 28);
9535
9536
    /* Fill in the GOT entry corresponding to this PLT slot with
9537
       the address immediately after the "bctr" instruction
9538
       in this PLT entry.  */
9539
0
    bfd_put_32 (info->output_bfd, (plt->output_section->vma
9540
0
                 + plt->output_offset
9541
0
                 + ent->plt.offset + 16),
9542
0
          htab->elf.sgotplt->contents + got_offset);
9543
9544
0
    if (!bfd_link_pic (info))
9545
0
      {
9546
        /* Fill in a couple of entries in .rela.plt.unloaded.  */
9547
0
        loc = htab->srelplt2->contents
9548
0
          + ((VXWORKS_PLTRESOLVE_RELOCS + reloc_index
9549
0
        * VXWORKS_PLT_NON_JMP_SLOT_RELOCS)
9550
0
       * sizeof (Elf32_External_Rela));
9551
9552
        /* Provide the @ha relocation for the first instruction.  */
9553
0
        rela.r_offset = (plt->output_section->vma
9554
0
             + plt->output_offset
9555
0
             + ent->plt.offset + 2);
9556
0
        rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx,
9557
0
            R_PPC_ADDR16_HA);
9558
0
        rela.r_addend = got_offset;
9559
0
        BFD_ASSERT (swap_reloc_out (info->output_bfd, &rela, loc,
9560
0
            htab->srelplt2));
9561
0
        loc += sizeof (Elf32_External_Rela);
9562
9563
        /* Provide the @l relocation for the second instruction.  */
9564
0
        rela.r_offset = (plt->output_section->vma
9565
0
             + plt->output_offset
9566
0
             + ent->plt.offset + 6);
9567
0
        rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx,
9568
0
            R_PPC_ADDR16_LO);
9569
0
        rela.r_addend = got_offset;
9570
0
        BFD_ASSERT (swap_reloc_out (info->output_bfd, &rela, loc,
9571
0
            htab->srelplt2));
9572
0
        loc += sizeof (Elf32_External_Rela);
9573
9574
        /* Provide a relocation for the GOT entry corresponding to this
9575
           PLT slot.  Point it at the middle of the .plt entry.  */
9576
0
        rela.r_offset = (htab->elf.sgotplt->output_section->vma
9577
0
             + htab->elf.sgotplt->output_offset
9578
0
             + got_offset);
9579
0
        rela.r_info = ELF32_R_INFO (htab->elf.hplt->indx,
9580
0
            R_PPC_ADDR32);
9581
0
        rela.r_addend = ent->plt.offset + 16;
9582
0
        BFD_ASSERT (swap_reloc_out (info->output_bfd, &rela, loc,
9583
0
            htab->srelplt2));
9584
0
      }
9585
9586
    /* VxWorks uses non-standard semantics for R_PPC_JMP_SLOT.
9587
       In particular, the offset for the relocation is not the
9588
       address of the PLT entry for this function, as specified
9589
       by the ABI.  Instead, the offset is set to the address of
9590
       the GOT slot for this function.  See EABI 4.4.4.1.  */
9591
0
    rela.r_offset = (htab->elf.sgotplt->output_section->vma
9592
0
         + htab->elf.sgotplt->output_offset
9593
0
         + got_offset);
9594
0
    rela.r_addend = 0;
9595
0
        }
9596
0
      else
9597
0
        {
9598
0
    rela.r_addend = 0;
9599
0
    if (!dyn)
9600
0
      {
9601
0
        if (h->type == STT_GNU_IFUNC)
9602
0
          {
9603
0
      plt = htab->elf.iplt;
9604
0
      relplt = htab->elf.irelplt;
9605
0
          }
9606
0
        else
9607
0
          {
9608
0
      plt = htab->pltlocal;
9609
0
      relplt = bfd_link_pic (info) ? htab->relpltlocal : NULL;
9610
0
          }
9611
0
        if (h->def_regular
9612
0
      && (h->root.type == bfd_link_hash_defined
9613
0
          || h->root.type == bfd_link_hash_defweak))
9614
0
          rela.r_addend = SYM_VAL (h);
9615
0
      }
9616
9617
0
    if (relplt == NULL)
9618
0
      {
9619
0
        loc = plt->contents + ent->plt.offset;
9620
0
        bfd_put_32 (info->output_bfd, rela.r_addend, loc);
9621
0
      }
9622
0
    else
9623
0
      {
9624
0
        rela.r_offset = (plt->output_section->vma
9625
0
             + plt->output_offset
9626
0
             + ent->plt.offset);
9627
9628
0
        if (htab->plt_type == PLT_OLD || !dyn)
9629
0
          {
9630
      /* We don't need to fill in the .plt.  The ppc dynamic
9631
         linker will fill it in.  */
9632
0
          }
9633
0
        else
9634
0
          {
9635
0
      bfd_vma val = (htab->glink_pltresolve + ent->plt.offset
9636
0
               + htab->glink->output_section->vma
9637
0
               + htab->glink->output_offset);
9638
0
      bfd_put_32 (info->output_bfd, val,
9639
0
            plt->contents + ent->plt.offset);
9640
0
          }
9641
0
      }
9642
0
        }
9643
9644
0
      if (relplt != NULL)
9645
0
        {
9646
    /* Fill in the entry in the .rela.plt section.  */
9647
0
    if (!dyn)
9648
0
      {
9649
0
        if (h->type == STT_GNU_IFUNC)
9650
0
          rela.r_info = ELF32_R_INFO (0, R_PPC_IRELATIVE);
9651
0
        else
9652
0
          rela.r_info = ELF32_R_INFO (0, R_PPC_RELATIVE);
9653
0
        loc = relplt->contents + (relplt->reloc_count++
9654
0
                * sizeof (Elf32_External_Rela));
9655
0
        htab->local_ifunc_resolver = 1;
9656
0
      }
9657
0
    else
9658
0
      {
9659
0
        rela.r_info = ELF32_R_INFO (h->dynindx, R_PPC_JMP_SLOT);
9660
0
        loc = relplt->contents + (reloc_index
9661
0
                * sizeof (Elf32_External_Rela));
9662
0
        if (h->type == STT_GNU_IFUNC && is_static_defined (h))
9663
0
          htab->maybe_local_ifunc_resolver = 1;
9664
0
      }
9665
0
    BFD_ASSERT (swap_reloc_out (info->output_bfd, &rela,
9666
0
              loc, relplt));
9667
0
        }
9668
0
      doneone = true;
9669
0
    }
9670
9671
0
  if (htab->plt_type == PLT_NEW || !dyn)
9672
0
    {
9673
0
      unsigned char *p;
9674
0
      asection *plt = htab->elf.splt;
9675
9676
0
      if (!dyn)
9677
0
        {
9678
0
    if (h->type == STT_GNU_IFUNC)
9679
0
      plt = htab->elf.iplt;
9680
0
    else
9681
0
      break;
9682
0
        }
9683
9684
0
      p = (unsigned char *) htab->glink->contents + ent->glink_offset;
9685
0
      write_glink_stub (h, ent, plt, p, info);
9686
9687
0
      if (!bfd_link_pic (info))
9688
        /* We only need one non-PIC glink stub.  */
9689
0
        break;
9690
0
    }
9691
0
  else
9692
0
    break;
9693
0
      }
9694
0
  return true;
9695
0
}
9696
9697
/* Finish up PLT handling.  */
9698
9699
bool
9700
ppc_finish_symbols (struct bfd_link_info *info)
9701
0
{
9702
0
  struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
9703
0
  bfd *ibfd;
9704
9705
0
  if (!htab)
9706
0
    return true;
9707
9708
0
  elf_link_hash_traverse (&htab->elf, write_global_sym_plt, info);
9709
9710
0
  for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
9711
0
    {
9712
0
      bfd_vma *local_got, *end_local_got;
9713
0
      struct plt_entry **local_plt, **lplt, **end_local_plt;
9714
0
      Elf_Internal_Shdr *symtab_hdr;
9715
0
      bfd_size_type locsymcount;
9716
0
      Elf_Internal_Sym *local_syms = NULL;
9717
0
      struct plt_entry *ent;
9718
9719
0
      if (!is_ppc_elf (ibfd))
9720
0
  continue;
9721
9722
0
      local_got = elf_local_got_offsets (ibfd);
9723
0
      if (!local_got)
9724
0
  continue;
9725
9726
0
      symtab_hdr = &elf_symtab_hdr (ibfd);
9727
0
      locsymcount = symtab_hdr->sh_info;
9728
0
      end_local_got = local_got + locsymcount;
9729
0
      local_plt = (struct plt_entry **) end_local_got;
9730
0
      end_local_plt = local_plt + locsymcount;
9731
0
      for (lplt = local_plt; lplt < end_local_plt; ++lplt)
9732
0
  for (ent = *lplt; ent != NULL; ent = ent->next)
9733
0
    {
9734
0
      if (ent->plt.offset != (bfd_vma) -1)
9735
0
        {
9736
0
    Elf_Internal_Sym *sym;
9737
0
    asection *sym_sec;
9738
0
    asection *plt, *relplt;
9739
0
    bfd_byte *loc;
9740
0
    bfd_vma val;
9741
0
    Elf_Internal_Rela rela;
9742
0
    unsigned char *p;
9743
9744
0
    if (!get_sym_h (NULL, &sym, &sym_sec, NULL, &local_syms,
9745
0
        lplt - local_plt, ibfd))
9746
0
      {
9747
0
        if (symtab_hdr->contents != (unsigned char *) local_syms)
9748
0
          free (local_syms);
9749
0
        return false;
9750
0
      }
9751
9752
0
    val = sym->st_value;
9753
0
    if (sym_sec != NULL && sym_sec->output_section != NULL)
9754
0
      val += sym_sec->output_offset + sym_sec->output_section->vma;
9755
9756
0
    if (ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
9757
0
      {
9758
0
        htab->local_ifunc_resolver = 1;
9759
0
        plt = htab->elf.iplt;
9760
0
        relplt = htab->elf.irelplt;
9761
0
        rela.r_info = ELF32_R_INFO (0, R_PPC_IRELATIVE);
9762
0
      }
9763
0
    else
9764
0
      {
9765
0
        plt = htab->pltlocal;
9766
0
        if (bfd_link_pic (info))
9767
0
          {
9768
0
      relplt = htab->relpltlocal;
9769
0
      rela.r_info = ELF32_R_INFO (0, R_PPC_RELATIVE);
9770
0
          }
9771
0
        else
9772
0
          {
9773
0
      loc = plt->contents + ent->plt.offset;
9774
0
      bfd_put_32 (info->output_bfd, val, loc);
9775
0
      continue;
9776
0
          }
9777
0
      }
9778
9779
0
    rela.r_offset = (ent->plt.offset
9780
0
         + plt->output_offset
9781
0
         + plt->output_section->vma);
9782
0
    rela.r_addend = val;
9783
0
    BFD_ASSERT (count_and_swap_reloc_out (info->output_bfd, &rela,
9784
0
                  relplt));
9785
9786
0
    p = (unsigned char *) htab->glink->contents + ent->glink_offset;
9787
0
    write_glink_stub (NULL, ent, htab->elf.iplt, p, info);
9788
0
        }
9789
0
    }
9790
9791
0
      if (local_syms != NULL
9792
0
    && symtab_hdr->contents != (unsigned char *) local_syms)
9793
0
  {
9794
0
    if (!info->keep_memory)
9795
0
      free (local_syms);
9796
0
    else
9797
0
      symtab_hdr->contents = (unsigned char *) local_syms;
9798
0
  }
9799
0
    }
9800
0
  return true;
9801
0
}
9802
9803
/* Finish up dynamic symbol handling.  We set the contents of various
9804
   dynamic sections here.  */
9805
9806
static bool
9807
ppc_elf_finish_dynamic_symbol (bfd *output_bfd,
9808
             struct bfd_link_info *info,
9809
             struct elf_link_hash_entry *h,
9810
             Elf_Internal_Sym *sym)
9811
0
{
9812
0
  struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
9813
0
  struct plt_entry *ent;
9814
9815
#ifdef DEBUG
9816
  fprintf (stderr, "ppc_elf_finish_dynamic_symbol called for %s",
9817
     h->root.root.string);
9818
#endif
9819
9820
0
  if (!h->def_regular
9821
0
      || (h->type == STT_GNU_IFUNC && !bfd_link_pic (info)))
9822
0
    for (ent = h->plt.plist; ent != NULL; ent = ent->next)
9823
0
      if (ent->plt.offset != (bfd_vma) -1)
9824
0
  {
9825
0
    if (!h->def_regular)
9826
0
      {
9827
        /* Mark the symbol as undefined, rather than as
9828
     defined in the .plt section.  Leave the value if
9829
     there were any relocations where pointer equality
9830
     matters (this is a clue for the dynamic linker, to
9831
     make function pointer comparisons work between an
9832
     application and shared library), otherwise set it
9833
     to zero.  */
9834
0
        sym->st_shndx = SHN_UNDEF;
9835
0
        if (!h->pointer_equality_needed)
9836
0
    sym->st_value = 0;
9837
0
        else if (!h->ref_regular_nonweak)
9838
0
    {
9839
      /* This breaks function pointer comparisons, but
9840
         that is better than breaking tests for a NULL
9841
         function pointer.  */
9842
0
      sym->st_value = 0;
9843
0
    }
9844
0
      }
9845
0
    else
9846
0
      {
9847
        /* Set the value of ifunc symbols in a non-pie
9848
     executable to the glink entry.  This is to avoid
9849
     text relocations.  We can't do this for ifunc in
9850
     allocate_dynrelocs, as we do for normal dynamic
9851
     function symbols with plt entries, because we need
9852
     to keep the original value around for the ifunc
9853
     relocation.  */
9854
0
        sym->st_shndx
9855
0
    = (_bfd_elf_section_from_bfd_section
9856
0
       (info->output_bfd, htab->glink->output_section));
9857
0
        sym->st_value = (ent->glink_offset
9858
0
             + htab->glink->output_offset
9859
0
             + htab->glink->output_section->vma);
9860
0
      }
9861
0
    break;
9862
0
  }
9863
9864
0
  if (h->needs_copy)
9865
0
    {
9866
0
      asection *s;
9867
0
      Elf_Internal_Rela rela;
9868
9869
      /* This symbols needs a copy reloc.  Set it up.  */
9870
9871
#ifdef DEBUG
9872
      fprintf (stderr, ", copy");
9873
#endif
9874
9875
0
      BFD_ASSERT (h->dynindx != -1);
9876
9877
0
      if (ppc_elf_hash_entry (h)->has_sda_refs)
9878
0
  s = htab->relsbss;
9879
0
      else if (h->root.u.def.section == htab->elf.sdynrelro)
9880
0
  s = htab->elf.sreldynrelro;
9881
0
      else
9882
0
  s = htab->elf.srelbss;
9883
0
      BFD_ASSERT (s != NULL);
9884
9885
0
      rela.r_offset = SYM_VAL (h);
9886
0
      rela.r_info = ELF32_R_INFO (h->dynindx, R_PPC_COPY);
9887
0
      rela.r_addend = 0;
9888
0
      BFD_ASSERT (count_and_swap_reloc_out (output_bfd, &rela, s));
9889
0
    }
9890
9891
#ifdef DEBUG
9892
  fprintf (stderr, "\n");
9893
#endif
9894
9895
0
  return true;
9896
0
}
9897

9898
static enum elf_reloc_type_class
9899
ppc_elf_reloc_type_class (const struct bfd_link_info *info,
9900
        const asection *rel_sec,
9901
        const Elf_Internal_Rela *rela)
9902
0
{
9903
0
  struct ppc_elf_link_hash_table *htab = ppc_elf_hash_table (info);
9904
9905
0
  if (rel_sec == htab->elf.irelplt)
9906
0
    return reloc_class_ifunc;
9907
9908
0
  switch (ELF32_R_TYPE (rela->r_info))
9909
0
    {
9910
0
    case R_PPC_RELATIVE:
9911
0
      return reloc_class_relative;
9912
0
    case R_PPC_JMP_SLOT:
9913
0
      return reloc_class_plt;
9914
0
    case R_PPC_COPY:
9915
0
      return reloc_class_copy;
9916
0
    default:
9917
0
      return reloc_class_normal;
9918
0
    }
9919
0
}
9920

9921
/* Finish up the dynamic sections.  */
9922
9923
static bool
9924
ppc_elf_finish_dynamic_sections (bfd *output_bfd,
9925
         struct bfd_link_info *info,
9926
         bfd_byte *buf)
9927
0
{
9928
0
  asection *sdyn;
9929
0
  struct ppc_elf_link_hash_table *htab;
9930
0
  bfd_vma got;
9931
0
  bfd *dynobj;
9932
0
  bool ret = true;
9933
9934
#ifdef DEBUG
9935
  fprintf (stderr, "ppc_elf_finish_dynamic_sections called\n");
9936
#endif
9937
9938
0
  htab = ppc_elf_hash_table (info);
9939
0
  dynobj = htab->elf.dynobj;
9940
0
  sdyn = bfd_get_linker_section (dynobj, ".dynamic");
9941
9942
0
  got = 0;
9943
0
  if (htab->elf.hgot != NULL)
9944
0
    got = SYM_VAL (htab->elf.hgot);
9945
9946
0
  if (htab->elf.dynamic_sections_created)
9947
0
    {
9948
0
      Elf32_External_Dyn *dyncon, *dynconend;
9949
9950
0
      BFD_ASSERT (htab->elf.splt != NULL && sdyn != NULL);
9951
9952
0
      dyncon = (Elf32_External_Dyn *) sdyn->contents;
9953
0
      dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
9954
0
      for (; dyncon < dynconend; dyncon++)
9955
0
  {
9956
0
    Elf_Internal_Dyn dyn;
9957
0
    asection *s;
9958
9959
0
    bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
9960
9961
0
    switch (dyn.d_tag)
9962
0
      {
9963
0
      case DT_PLTGOT:
9964
0
        if (htab->elf.target_os == is_vxworks)
9965
0
    s = htab->elf.sgotplt;
9966
0
        else
9967
0
    s = htab->elf.splt;
9968
0
        dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
9969
0
        break;
9970
9971
0
      case DT_PLTRELSZ:
9972
0
        dyn.d_un.d_val = htab->elf.srelplt->size;
9973
0
        break;
9974
9975
0
      case DT_JMPREL:
9976
0
        s = htab->elf.srelplt;
9977
0
        dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
9978
0
        break;
9979
9980
0
      case DT_PPC_GOT:
9981
0
        dyn.d_un.d_ptr = got;
9982
0
        break;
9983
9984
0
      case DT_TEXTREL:
9985
0
        if (htab->local_ifunc_resolver)
9986
0
    info->callbacks->einfo
9987
0
      (_("%X%P: text relocations and GNU indirect "
9988
0
         "functions will result in a segfault at runtime\n"));
9989
0
        else if (htab->maybe_local_ifunc_resolver)
9990
0
    info->callbacks->einfo
9991
0
      (_("%P: warning: text relocations and GNU indirect "
9992
0
         "functions may result in a segfault at runtime\n"));
9993
0
        continue;
9994
9995
0
      default:
9996
0
#ifdef OBJ_MAYBE_ELF_VXWORKS
9997
0
        if (htab->elf.target_os == is_vxworks
9998
0
      && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
9999
0
    break;
10000
0
#endif /* OBJ_MAYBE_ELF_VXWORKS */
10001
0
        continue;
10002
0
      }
10003
10004
0
    bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
10005
0
  }
10006
0
    }
10007
10008
0
  if (htab->elf.sgot != NULL
10009
0
      && htab->elf.sgot->output_section != bfd_abs_section_ptr)
10010
0
    {
10011
0
      if (htab->elf.hgot->root.u.def.section == htab->elf.sgot
10012
0
    || htab->elf.hgot->root.u.def.section == htab->elf.sgotplt)
10013
0
  {
10014
0
    unsigned char *p = htab->elf.hgot->root.u.def.section->contents;
10015
10016
0
    p += htab->elf.hgot->root.u.def.value;
10017
0
    if (htab->plt_type == PLT_OLD)
10018
0
      {
10019
        /* Add a blrl instruction at _GLOBAL_OFFSET_TABLE_-4
10020
     so that a function can easily find the address of
10021
     _GLOBAL_OFFSET_TABLE_.  */
10022
0
        BFD_ASSERT (htab->elf.hgot->root.u.def.value - 4
10023
0
        < htab->elf.hgot->root.u.def.section->size);
10024
0
        bfd_put_32 (output_bfd, 0x4e800021, p - 4);
10025
0
      }
10026
10027
0
    if (sdyn != NULL)
10028
0
      {
10029
0
        bfd_vma val = sdyn->output_section->vma + sdyn->output_offset;
10030
0
        BFD_ASSERT (htab->elf.hgot->root.u.def.value
10031
0
        < htab->elf.hgot->root.u.def.section->size);
10032
0
        bfd_put_32 (output_bfd, val, p);
10033
0
      }
10034
0
  }
10035
0
      else
10036
0
  {
10037
    /* xgettext:c-format */
10038
0
    _bfd_error_handler (_("%s not defined in linker created %pA"),
10039
0
            htab->elf.hgot->root.root.string,
10040
0
            (htab->elf.sgotplt != NULL
10041
0
             ? htab->elf.sgotplt : htab->elf.sgot));
10042
0
    bfd_set_error (bfd_error_bad_value);
10043
0
    ret = false;
10044
0
  }
10045
10046
0
      elf_section_data (htab->elf.sgot->output_section)->this_hdr.sh_entsize = 4;
10047
0
    }
10048
10049
  /* Fill in the first entry in the VxWorks procedure linkage table.  */
10050
0
  if (htab->elf.target_os == is_vxworks
10051
0
      && htab->elf.splt != NULL
10052
0
      && htab->elf.splt->size != 0
10053
0
      && htab->elf.splt->output_section != bfd_abs_section_ptr)
10054
0
    {
10055
0
      asection *splt = htab->elf.splt;
10056
      /* Use the right PLT. */
10057
0
      const bfd_vma *plt_entry = (bfd_link_pic (info)
10058
0
          ? ppc_elf_vxworks_pic_plt0_entry
10059
0
          : ppc_elf_vxworks_plt0_entry);
10060
10061
0
      if (!bfd_link_pic (info))
10062
0
  {
10063
0
    bfd_vma got_value = SYM_VAL (htab->elf.hgot);
10064
10065
0
    bfd_put_32 (output_bfd, plt_entry[0] | PPC_HA (got_value),
10066
0
          splt->contents +  0);
10067
0
    bfd_put_32 (output_bfd, plt_entry[1] | PPC_LO (got_value),
10068
0
          splt->contents +  4);
10069
0
  }
10070
0
      else
10071
0
  {
10072
0
    bfd_put_32 (output_bfd, plt_entry[0], splt->contents +  0);
10073
0
    bfd_put_32 (output_bfd, plt_entry[1], splt->contents +  4);
10074
0
  }
10075
0
      bfd_put_32 (output_bfd, plt_entry[2], splt->contents +  8);
10076
0
      bfd_put_32 (output_bfd, plt_entry[3], splt->contents + 12);
10077
0
      bfd_put_32 (output_bfd, plt_entry[4], splt->contents + 16);
10078
0
      bfd_put_32 (output_bfd, plt_entry[5], splt->contents + 20);
10079
0
      bfd_put_32 (output_bfd, plt_entry[6], splt->contents + 24);
10080
0
      bfd_put_32 (output_bfd, plt_entry[7], splt->contents + 28);
10081
10082
0
      if (! bfd_link_pic (info))
10083
0
  {
10084
0
    Elf_Internal_Rela rela;
10085
0
    bfd_byte *loc;
10086
10087
0
    loc = htab->srelplt2->contents;
10088
10089
    /* Output the @ha relocation for the first instruction.  */
10090
0
    rela.r_offset = (htab->elf.splt->output_section->vma
10091
0
         + htab->elf.splt->output_offset
10092
0
         + 2);
10093
0
    rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_HA);
10094
0
    rela.r_addend = 0;
10095
0
    BFD_ASSERT (swap_reloc_out (output_bfd, &rela, loc, htab->srelplt2));
10096
0
    loc += sizeof (Elf32_External_Rela);
10097
10098
    /* Output the @l relocation for the second instruction.  */
10099
0
    rela.r_offset = (htab->elf.splt->output_section->vma
10100
0
         + htab->elf.splt->output_offset
10101
0
         + 6);
10102
0
    rela.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_LO);
10103
0
    rela.r_addend = 0;
10104
0
    BFD_ASSERT (swap_reloc_out (output_bfd, &rela, loc, htab->srelplt2));
10105
0
    loc += sizeof (Elf32_External_Rela);
10106
10107
    /* Fix up the remaining relocations.  They may have the wrong
10108
       symbol index for _G_O_T_ or _P_L_T_ depending on the order
10109
       in which symbols were output.  */
10110
0
    while (loc < htab->srelplt2->contents + htab->srelplt2->size)
10111
0
      {
10112
0
        Elf_Internal_Rela rel;
10113
10114
0
        bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
10115
0
        rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_HA);
10116
0
        bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
10117
0
        loc += sizeof (Elf32_External_Rela);
10118
10119
0
        bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
10120
0
        rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_PPC_ADDR16_LO);
10121
0
        bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
10122
0
        loc += sizeof (Elf32_External_Rela);
10123
10124
0
        bfd_elf32_swap_reloc_in (output_bfd, loc, &rel);
10125
0
        rel.r_info = ELF32_R_INFO (htab->elf.hplt->indx, R_PPC_ADDR32);
10126
0
        bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
10127
0
        loc += sizeof (Elf32_External_Rela);
10128
0
      }
10129
0
  }
10130
0
    }
10131
10132
0
  if (htab->glink != NULL
10133
0
      && htab->glink->contents != NULL
10134
0
      && htab->elf.dynamic_sections_created)
10135
0
    {
10136
0
      unsigned char *p;
10137
0
      unsigned char *endp;
10138
0
      bfd_vma res0;
10139
10140
      /*
10141
       * PIC glink code is the following:
10142
       *
10143
       * # ith PLT code stub.
10144
       *   addis 11,30,(plt+(i-1)*4-got)@ha
10145
       *   lwz 11,(plt+(i-1)*4-got)@l(11)
10146
       *   mtctr 11
10147
       *   bctr
10148
       *
10149
       * # A table of branches, one for each plt entry.
10150
       * # The idea is that the plt call stub loads ctr and r11 with these
10151
       * # addresses, so (r11 - res_0) gives the plt index * 4.
10152
       * res_0: b PLTresolve
10153
       * res_1: b PLTresolve
10154
       * .
10155
       * # Some number of entries towards the end can be nops
10156
       * res_n_m3: nop
10157
       * res_n_m2: nop
10158
       * res_n_m1:
10159
       *
10160
       * PLTresolve:
10161
       *    addis 11,11,(1f-res_0)@ha
10162
       *    mflr 0
10163
       *    bcl 20,31,1f
10164
       * 1: addi 11,11,(1b-res_0)@l
10165
       *    mflr 12
10166
       *    mtlr 0
10167
       *    sub 11,11,12    # r11 = index * 4
10168
       *    addis 12,12,(got+4-1b)@ha
10169
       *    lwz 0,(got+4-1b)@l(12)  # got[1] address of dl_runtime_resolve
10170
       *    lwz 12,(got+8-1b)@l(12) # got[2] contains the map address
10171
       *    mtctr 0
10172
       *    add 0,11,11
10173
       *    add 11,0,11     # r11 = index * 12 = reloc offset.
10174
       *    bctr
10175
       *
10176
       * Non-PIC glink code is a little simpler.
10177
       *
10178
       * # ith PLT code stub.
10179
       *   lis 11,(plt+(i-1)*4)@ha
10180
       *   lwz 11,(plt+(i-1)*4)@l(11)
10181
       *   mtctr 11
10182
       *   bctr
10183
       *
10184
       * The branch table is the same, then comes
10185
       *
10186
       * PLTresolve:
10187
       *    lis 12,(got+4)@ha
10188
       *    addis 11,11,(-res_0)@ha
10189
       *    lwz 0,(got+4)@l(12)   # got[1] address of dl_runtime_resolve
10190
       *    addi 11,11,(-res_0)@l # r11 = index * 4
10191
       *    mtctr 0
10192
       *    add 0,11,11
10193
       *    lwz 12,(got+8)@l(12)  # got[2] contains the map address
10194
       *    add 11,0,11     # r11 = index * 12 = reloc offset.
10195
       *    bctr
10196
       */
10197
10198
      /* Build the branch table, one for each plt entry (less one),
10199
   and perhaps some padding.  */
10200
0
      p = htab->glink->contents;
10201
0
      p += htab->glink_pltresolve;
10202
0
      endp = htab->glink->contents;
10203
0
      endp += htab->glink->size - GLINK_PLTRESOLVE;
10204
0
      while (p < endp - (htab->params->ppc476_workaround ? 0 : 8 * 4))
10205
0
  {
10206
0
    bfd_put_32 (output_bfd, B + endp - p, p);
10207
0
    p += 4;
10208
0
  }
10209
0
      while (p < endp)
10210
0
  {
10211
0
    bfd_put_32 (output_bfd, NOP, p);
10212
0
    p += 4;
10213
0
  }
10214
10215
0
      res0 = (htab->glink_pltresolve
10216
0
        + htab->glink->output_section->vma
10217
0
        + htab->glink->output_offset);
10218
10219
0
      if (htab->params->ppc476_workaround)
10220
0
  {
10221
    /* Ensure that a call stub at the end of a page doesn't
10222
       result in prefetch over the end of the page into the
10223
       glink branch table.  */
10224
0
    bfd_vma pagesize = (bfd_vma) 1 << htab->params->pagesize_p2;
10225
0
    bfd_vma page_addr;
10226
0
    bfd_vma glink_start = (htab->glink->output_section->vma
10227
0
         + htab->glink->output_offset);
10228
10229
0
    for (page_addr = res0 & -pagesize;
10230
0
         page_addr > glink_start;
10231
0
         page_addr -= pagesize)
10232
0
      {
10233
        /* We have a plt call stub that may need fixing.  */
10234
0
        bfd_byte *loc;
10235
0
        unsigned int insn;
10236
10237
0
        loc = htab->glink->contents + page_addr - 4 - glink_start;
10238
0
        insn = bfd_get_32 (output_bfd, loc);
10239
0
        if (insn == BCTR)
10240
0
    {
10241
      /* By alignment, we know that there must be at least
10242
         one other call stub before this one.  */
10243
0
      insn = bfd_get_32 (output_bfd, loc - 16);
10244
0
      if (insn == BCTR)
10245
0
        bfd_put_32 (output_bfd, B | (-16 & 0x3fffffc), loc);
10246
0
      else
10247
0
        bfd_put_32 (output_bfd, B | (-20 & 0x3fffffc), loc);
10248
0
    }
10249
0
      }
10250
0
  }
10251
10252
      /* Last comes the PLTresolve stub.  */
10253
0
      endp = p + GLINK_PLTRESOLVE;
10254
0
      if (bfd_link_pic (info))
10255
0
  {
10256
0
    bfd_vma bcl;
10257
10258
0
    bcl = (htab->glink->size - GLINK_PLTRESOLVE + 3*4
10259
0
     + htab->glink->output_section->vma
10260
0
     + htab->glink->output_offset);
10261
10262
0
    bfd_put_32 (output_bfd, ADDIS_11_11 + PPC_HA (bcl - res0), p);
10263
0
    p += 4;
10264
0
    bfd_put_32 (output_bfd, MFLR_0, p);
10265
0
    p += 4;
10266
0
    bfd_put_32 (output_bfd, BCL_20_31, p);
10267
0
    p += 4;
10268
0
    bfd_put_32 (output_bfd, ADDI_11_11 + PPC_LO (bcl - res0), p);
10269
0
    p += 4;
10270
0
    bfd_put_32 (output_bfd, MFLR_12, p);
10271
0
    p += 4;
10272
0
    bfd_put_32 (output_bfd, MTLR_0, p);
10273
0
    p += 4;
10274
0
    bfd_put_32 (output_bfd, SUB_11_11_12, p);
10275
0
    p += 4;
10276
0
    bfd_put_32 (output_bfd, ADDIS_12_12 + PPC_HA (got + 4 - bcl), p);
10277
0
    p += 4;
10278
0
    if (PPC_HA (got + 4 - bcl) == PPC_HA (got + 8 - bcl))
10279
0
      {
10280
0
        bfd_put_32 (output_bfd, LWZ_0_12 + PPC_LO (got + 4 - bcl), p);
10281
0
        p += 4;
10282
0
        bfd_put_32 (output_bfd, LWZ_12_12 + PPC_LO (got + 8 - bcl), p);
10283
0
        p += 4;
10284
0
      }
10285
0
    else
10286
0
      {
10287
0
        bfd_put_32 (output_bfd, LWZU_0_12 + PPC_LO (got + 4 - bcl), p);
10288
0
        p += 4;
10289
0
        bfd_put_32 (output_bfd, LWZ_12_12 + 4, p);
10290
0
        p += 4;
10291
0
      }
10292
0
    bfd_put_32 (output_bfd, MTCTR_0, p);
10293
0
    p += 4;
10294
0
    bfd_put_32 (output_bfd, ADD_0_11_11, p);
10295
0
  }
10296
0
      else
10297
0
  {
10298
0
    bfd_put_32 (output_bfd, LIS_12 + PPC_HA (got + 4), p);
10299
0
    p += 4;
10300
0
    bfd_put_32 (output_bfd, ADDIS_11_11 + PPC_HA (-res0), p);
10301
0
    p += 4;
10302
0
    if (PPC_HA (got + 4) == PPC_HA (got + 8))
10303
0
      bfd_put_32 (output_bfd, LWZ_0_12 + PPC_LO (got + 4), p);
10304
0
    else
10305
0
      bfd_put_32 (output_bfd, LWZU_0_12 + PPC_LO (got + 4), p);
10306
0
    p += 4;
10307
0
    bfd_put_32 (output_bfd, ADDI_11_11 + PPC_LO (-res0), p);
10308
0
    p += 4;
10309
0
    bfd_put_32 (output_bfd, MTCTR_0, p);
10310
0
    p += 4;
10311
0
    bfd_put_32 (output_bfd, ADD_0_11_11, p);
10312
0
    p += 4;
10313
0
    if (PPC_HA (got + 4) == PPC_HA (got + 8))
10314
0
      bfd_put_32 (output_bfd, LWZ_12_12 + PPC_LO (got + 8), p);
10315
0
    else
10316
0
      bfd_put_32 (output_bfd, LWZ_12_12 + 4, p);
10317
0
  }
10318
0
      p += 4;
10319
0
      bfd_put_32 (output_bfd, ADD_11_0_11, p);
10320
0
      p += 4;
10321
0
      bfd_put_32 (output_bfd, BCTR, p);
10322
0
      p += 4;
10323
0
      while (p < endp)
10324
0
  {
10325
0
    bfd_put_32 (output_bfd,
10326
0
          htab->params->ppc476_workaround ? BA : NOP, p);
10327
0
    p += 4;
10328
0
  }
10329
0
      BFD_ASSERT (p == endp);
10330
0
    }
10331
10332
0
  if (htab->glink_eh_frame != NULL
10333
0
      && htab->glink_eh_frame->contents != NULL)
10334
0
    {
10335
0
      unsigned char *p = htab->glink_eh_frame->contents;
10336
0
      bfd_vma val;
10337
10338
0
      p += sizeof (glink_eh_frame_cie);
10339
      /* FDE length.  */
10340
0
      p += 4;
10341
      /* CIE pointer.  */
10342
0
      p += 4;
10343
      /* Offset to .glink.  */
10344
0
      val = (htab->glink->output_section->vma
10345
0
       + htab->glink->output_offset);
10346
0
      val -= (htab->glink_eh_frame->output_section->vma
10347
0
        + htab->glink_eh_frame->output_offset);
10348
0
      val -= p - htab->glink_eh_frame->contents;
10349
0
      bfd_put_32 (htab->elf.dynobj, val, p);
10350
10351
0
      if (htab->glink_eh_frame->sec_info_type == SEC_INFO_TYPE_EH_FRAME
10352
0
    && !_bfd_elf_write_linker_section_eh_frame (output_bfd, info,
10353
0
                  htab->glink_eh_frame,
10354
0
                  buf))
10355
0
  return false;
10356
0
    }
10357
10358
0
  return ret;
10359
0
}
10360

10361
#define TARGET_LITTLE_SYM powerpc_elf32_le_vec
10362
#define TARGET_LITTLE_NAME  "elf32-powerpcle"
10363
#define TARGET_BIG_SYM    powerpc_elf32_vec
10364
#define TARGET_BIG_NAME   "elf32-powerpc"
10365
#define ELF_ARCH    bfd_arch_powerpc
10366
#define ELF_TARGET_ID   PPC32_ELF_DATA
10367
#define ELF_MACHINE_CODE  EM_PPC
10368
#define ELF_MAXPAGESIZE   0x10000
10369
#define ELF_COMMONPAGESIZE  0x1000
10370
#define elf_info_to_howto ppc_elf_info_to_howto
10371
10372
#ifdef  EM_CYGNUS_POWERPC
10373
#define ELF_MACHINE_ALT1  EM_CYGNUS_POWERPC
10374
#endif
10375
10376
#ifdef EM_PPC_OLD
10377
#define ELF_MACHINE_ALT2  EM_PPC_OLD
10378
#endif
10379
10380
#define elf_backend_plt_not_loaded  1
10381
#define elf_backend_want_dynrelro 1
10382
#define elf_backend_can_gc_sections 1
10383
#define elf_backend_can_refcount  1
10384
#define elf_backend_rela_normal   1
10385
#define elf_backend_caches_rawsize  1
10386
10387
#define bfd_elf32_mkobject      ppc_elf_mkobject
10388
#define bfd_elf32_bfd_merge_private_bfd_data  ppc_elf_merge_private_bfd_data
10389
#define bfd_elf32_bfd_relax_section   ppc_elf_relax_section
10390
#define bfd_elf32_bfd_reloc_type_lookup   ppc_elf_reloc_type_lookup
10391
#define bfd_elf32_bfd_reloc_name_lookup   ppc_elf_reloc_name_lookup
10392
#define bfd_elf32_bfd_set_private_flags   ppc_elf_set_private_flags
10393
#define bfd_elf32_bfd_link_hash_table_create  ppc_elf_link_hash_table_create
10394
#define bfd_elf32_get_synthetic_symtab    ppc_elf_get_synthetic_symtab
10395
10396
#define elf_backend_object_p      ppc_elf_object_p
10397
#define elf_backend_gc_mark_hook    ppc_elf_gc_mark_hook
10398
#define elf_backend_section_from_shdr   ppc_elf_section_from_shdr
10399
#define elf_backend_relocate_section    ppc_elf_relocate_section
10400
#define elf_backend_create_dynamic_sections ppc_elf_create_dynamic_sections
10401
#define elf_backend_check_relocs    ppc_elf_check_relocs
10402
#define elf_backend_relocs_compatible   _bfd_elf_relocs_compatible
10403
#define elf_backend_copy_indirect_symbol  ppc_elf_copy_indirect_symbol
10404
#define elf_backend_adjust_dynamic_symbol ppc_elf_adjust_dynamic_symbol
10405
#define elf_backend_add_symbol_hook   ppc_elf_add_symbol_hook
10406
#define elf_backend_late_size_sections    ppc_elf_late_size_sections
10407
#define elf_backend_hash_symbol     ppc_elf_hash_symbol
10408
#define elf_backend_finish_dynamic_symbol ppc_elf_finish_dynamic_symbol
10409
#define elf_backend_finish_dynamic_sections ppc_elf_finish_dynamic_sections
10410
#define elf_backend_fake_sections   ppc_elf_fake_sections
10411
#define elf_backend_additional_program_headers  ppc_elf_additional_program_headers
10412
#define elf_backend_modify_segment_map    ppc_elf_modify_segment_map
10413
#define elf_backend_grok_prstatus   ppc_elf_grok_prstatus
10414
#define elf_backend_grok_psinfo     ppc_elf_grok_psinfo
10415
#define elf_backend_write_core_note   ppc_elf_write_core_note
10416
#define elf_backend_reloc_type_class    ppc_elf_reloc_type_class
10417
#define elf_backend_begin_write_processing  ppc_elf_begin_write_processing
10418
#define elf_backend_final_write_processing  ppc_elf_final_write_processing
10419
#define elf_backend_write_section   ppc_elf_write_section
10420
#define elf_backend_get_sec_type_attr   ppc_elf_get_sec_type_attr
10421
#define elf_backend_plt_sym_val     ppc_elf_plt_sym_val
10422
#define elf_backend_action_discarded    ppc_elf_action_discarded
10423
#define elf_backend_init_index_section    _bfd_elf_init_1_index_section
10424
#define elf_backend_lookup_section_flags_hook ppc_elf_lookup_section_flags
10425
10426
#include "elf32-target.h"
10427
10428
/* FreeBSD Target */
10429
10430
#undef  TARGET_LITTLE_SYM
10431
#undef  TARGET_LITTLE_NAME
10432
10433
#undef  TARGET_BIG_SYM
10434
#define TARGET_BIG_SYM  powerpc_elf32_fbsd_vec
10435
#undef  TARGET_BIG_NAME
10436
#define TARGET_BIG_NAME "elf32-powerpc-freebsd"
10437
10438
#undef  ELF_OSABI
10439
#define ELF_OSABI ELFOSABI_FREEBSD
10440
#undef  ELF_OSABI_EXACT
10441
#define ELF_OSABI_EXACT 1
10442
10443
#undef  elf32_bed
10444
#define elf32_bed elf32_powerpc_fbsd_bed
10445
10446
#include "elf32-target.h"
10447
10448
#ifdef OBJ_MAYBE_ELF_VXWORKS
10449
10450
/* VxWorks Target */
10451
10452
#undef TARGET_LITTLE_SYM
10453
#undef TARGET_LITTLE_NAME
10454
10455
#undef TARGET_BIG_SYM
10456
#define TARGET_BIG_SYM    powerpc_elf32_vxworks_vec
10457
#undef TARGET_BIG_NAME
10458
#define TARGET_BIG_NAME   "elf32-powerpc-vxworks"
10459
10460
#undef  ELF_OSABI
10461
#undef  ELF_OSABI_EXACT
10462
10463
#undef ELF_TARGET_OS
10464
#define ELF_TARGET_OS   is_vxworks
10465
10466
/* VxWorks uses the elf default section flags for .plt.  */
10467
static const struct bfd_elf_special_section *
10468
ppc_elf_vxworks_get_sec_type_attr (bfd *abfd, asection *sec)
10469
4.41k
{
10470
4.41k
  if (sec->name == NULL)
10471
0
    return NULL;
10472
10473
4.41k
  if (strcmp (sec->name, ".plt") == 0)
10474
0
    return _bfd_elf_get_sec_type_attr (abfd, sec);
10475
10476
4.41k
  return ppc_elf_get_sec_type_attr (abfd, sec);
10477
4.41k
}
10478
10479
/* Like ppc_elf_link_hash_table_create, but overrides
10480
   appropriately for VxWorks.  */
10481
static struct bfd_link_hash_table *
10482
ppc_elf_vxworks_link_hash_table_create (bfd *abfd)
10483
0
{
10484
0
  struct bfd_link_hash_table *ret;
10485
10486
0
  ret = ppc_elf_link_hash_table_create (abfd);
10487
0
  if (ret)
10488
0
    {
10489
0
      struct ppc_elf_link_hash_table *htab
10490
0
  = (struct ppc_elf_link_hash_table *)ret;
10491
0
      htab->plt_type = PLT_VXWORKS;
10492
0
      htab->plt_entry_size = VXWORKS_PLT_ENTRY_SIZE;
10493
0
      htab->plt_slot_size = VXWORKS_PLT_ENTRY_SIZE;
10494
0
      htab->plt_initial_entry_size = VXWORKS_PLT_INITIAL_ENTRY_SIZE;
10495
0
    }
10496
0
  return ret;
10497
0
}
10498
10499
/* Tweak magic VxWorks symbols as they are loaded.  */
10500
static bool
10501
ppc_elf_vxworks_add_symbol_hook (bfd *abfd,
10502
         struct bfd_link_info *info,
10503
         Elf_Internal_Sym *sym,
10504
         const char **namep,
10505
         flagword *flagsp,
10506
         asection **secp,
10507
         bfd_vma *valp)
10508
0
{
10509
0
  if (!elf_vxworks_add_symbol_hook (abfd, info, sym, namep, flagsp, secp,
10510
0
            valp))
10511
0
    return false;
10512
10513
0
  return ppc_elf_add_symbol_hook (abfd, info, sym, namep, flagsp, secp, valp);
10514
0
}
10515
10516
static bool
10517
ppc_elf_vxworks_final_write_processing (bfd *abfd)
10518
0
{
10519
0
  ppc_final_write_processing (abfd);
10520
0
  return elf_vxworks_final_write_processing (abfd);
10521
0
}
10522
10523
/* On VxWorks, we emit relocations against _PROCEDURE_LINKAGE_TABLE_, so
10524
   define it.  */
10525
#undef elf_backend_want_plt_sym
10526
#define elf_backend_want_plt_sym    1
10527
#undef elf_backend_want_got_plt
10528
#define elf_backend_want_got_plt    1
10529
#undef elf_backend_got_symbol_offset
10530
#define elf_backend_got_symbol_offset   0
10531
#undef elf_backend_plt_not_loaded
10532
#define elf_backend_plt_not_loaded    0
10533
#undef elf_backend_plt_readonly
10534
#define elf_backend_plt_readonly    1
10535
#undef elf_backend_got_header_size
10536
#define elf_backend_got_header_size   12
10537
#undef elf_backend_dtrel_excludes_plt
10538
#define elf_backend_dtrel_excludes_plt    1
10539
10540
#undef bfd_elf32_get_synthetic_symtab
10541
10542
#undef bfd_elf32_bfd_link_hash_table_create
10543
#define bfd_elf32_bfd_link_hash_table_create \
10544
  ppc_elf_vxworks_link_hash_table_create
10545
#undef elf_backend_add_symbol_hook
10546
#define elf_backend_add_symbol_hook \
10547
  ppc_elf_vxworks_add_symbol_hook
10548
#undef elf_backend_link_output_symbol_hook
10549
#define elf_backend_link_output_symbol_hook \
10550
  elf_vxworks_link_output_symbol_hook
10551
#undef elf_backend_final_write_processing
10552
#define elf_backend_final_write_processing \
10553
  ppc_elf_vxworks_final_write_processing
10554
#undef elf_backend_get_sec_type_attr
10555
#define elf_backend_get_sec_type_attr \
10556
  ppc_elf_vxworks_get_sec_type_attr
10557
#undef elf_backend_emit_relocs
10558
#define elf_backend_emit_relocs \
10559
  elf_vxworks_emit_relocs
10560
10561
#undef elf32_bed
10562
#define elf32_bed       ppc_elf_vxworks_bed
10563
10564
#include "elf32-target.h"
10565
10566
#endif /* OBJ_MAYBE_ELF_VXWORKS */