dynrelro section for read-only dynamic symbols copied into executable
[deliverable/binutils-gdb.git] / bfd / elf32-i386.c
1 /* Intel 80386/80486-specific support for 32-bit ELF
2 Copyright (C) 1993-2016 Free Software Foundation, Inc.
3
4 This file is part of BFD, the Binary File Descriptor library.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
21 #include "sysdep.h"
22 #include "bfd.h"
23 #include "bfdlink.h"
24 #include "libbfd.h"
25 #include "elf-bfd.h"
26 #include "elf-nacl.h"
27 #include "elf-vxworks.h"
28 #include "bfd_stdint.h"
29 #include "objalloc.h"
30 #include "hashtab.h"
31 #include "dwarf2.h"
32 #include "opcode/i386.h"
33
34 /* 386 uses REL relocations instead of RELA. */
35 #define USE_REL 1
36
37 #include "elf/i386.h"
38
39 static reloc_howto_type elf_howto_table[]=
40 {
41 HOWTO(R_386_NONE, 0, 3, 0, FALSE, 0, complain_overflow_dont,
42 bfd_elf_generic_reloc, "R_386_NONE",
43 TRUE, 0x00000000, 0x00000000, FALSE),
44 HOWTO(R_386_32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
45 bfd_elf_generic_reloc, "R_386_32",
46 TRUE, 0xffffffff, 0xffffffff, FALSE),
47 HOWTO(R_386_PC32, 0, 2, 32, TRUE, 0, complain_overflow_bitfield,
48 bfd_elf_generic_reloc, "R_386_PC32",
49 TRUE, 0xffffffff, 0xffffffff, TRUE),
50 HOWTO(R_386_GOT32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
51 bfd_elf_generic_reloc, "R_386_GOT32",
52 TRUE, 0xffffffff, 0xffffffff, FALSE),
53 HOWTO(R_386_PLT32, 0, 2, 32, TRUE, 0, complain_overflow_bitfield,
54 bfd_elf_generic_reloc, "R_386_PLT32",
55 TRUE, 0xffffffff, 0xffffffff, TRUE),
56 HOWTO(R_386_COPY, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
57 bfd_elf_generic_reloc, "R_386_COPY",
58 TRUE, 0xffffffff, 0xffffffff, FALSE),
59 HOWTO(R_386_GLOB_DAT, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
60 bfd_elf_generic_reloc, "R_386_GLOB_DAT",
61 TRUE, 0xffffffff, 0xffffffff, FALSE),
62 HOWTO(R_386_JUMP_SLOT, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
63 bfd_elf_generic_reloc, "R_386_JUMP_SLOT",
64 TRUE, 0xffffffff, 0xffffffff, FALSE),
65 HOWTO(R_386_RELATIVE, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
66 bfd_elf_generic_reloc, "R_386_RELATIVE",
67 TRUE, 0xffffffff, 0xffffffff, FALSE),
68 HOWTO(R_386_GOTOFF, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
69 bfd_elf_generic_reloc, "R_386_GOTOFF",
70 TRUE, 0xffffffff, 0xffffffff, FALSE),
71 HOWTO(R_386_GOTPC, 0, 2, 32, TRUE, 0, complain_overflow_bitfield,
72 bfd_elf_generic_reloc, "R_386_GOTPC",
73 TRUE, 0xffffffff, 0xffffffff, TRUE),
74
75 /* We have a gap in the reloc numbers here.
76 R_386_standard counts the number up to this point, and
77 R_386_ext_offset is the value to subtract from a reloc type of
78 R_386_16 thru R_386_PC8 to form an index into this table. */
79 #define R_386_standard (R_386_GOTPC + 1)
80 #define R_386_ext_offset (R_386_TLS_TPOFF - R_386_standard)
81
82 /* These relocs are a GNU extension. */
83 HOWTO(R_386_TLS_TPOFF, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
84 bfd_elf_generic_reloc, "R_386_TLS_TPOFF",
85 TRUE, 0xffffffff, 0xffffffff, FALSE),
86 HOWTO(R_386_TLS_IE, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
87 bfd_elf_generic_reloc, "R_386_TLS_IE",
88 TRUE, 0xffffffff, 0xffffffff, FALSE),
89 HOWTO(R_386_TLS_GOTIE, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
90 bfd_elf_generic_reloc, "R_386_TLS_GOTIE",
91 TRUE, 0xffffffff, 0xffffffff, FALSE),
92 HOWTO(R_386_TLS_LE, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
93 bfd_elf_generic_reloc, "R_386_TLS_LE",
94 TRUE, 0xffffffff, 0xffffffff, FALSE),
95 HOWTO(R_386_TLS_GD, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
96 bfd_elf_generic_reloc, "R_386_TLS_GD",
97 TRUE, 0xffffffff, 0xffffffff, FALSE),
98 HOWTO(R_386_TLS_LDM, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
99 bfd_elf_generic_reloc, "R_386_TLS_LDM",
100 TRUE, 0xffffffff, 0xffffffff, FALSE),
101 HOWTO(R_386_16, 0, 1, 16, FALSE, 0, complain_overflow_bitfield,
102 bfd_elf_generic_reloc, "R_386_16",
103 TRUE, 0xffff, 0xffff, FALSE),
104 HOWTO(R_386_PC16, 0, 1, 16, TRUE, 0, complain_overflow_bitfield,
105 bfd_elf_generic_reloc, "R_386_PC16",
106 TRUE, 0xffff, 0xffff, TRUE),
107 HOWTO(R_386_8, 0, 0, 8, FALSE, 0, complain_overflow_bitfield,
108 bfd_elf_generic_reloc, "R_386_8",
109 TRUE, 0xff, 0xff, FALSE),
110 HOWTO(R_386_PC8, 0, 0, 8, TRUE, 0, complain_overflow_signed,
111 bfd_elf_generic_reloc, "R_386_PC8",
112 TRUE, 0xff, 0xff, TRUE),
113
114 #define R_386_ext (R_386_PC8 + 1 - R_386_ext_offset)
115 #define R_386_tls_offset (R_386_TLS_LDO_32 - R_386_ext)
116 /* These are common with Solaris TLS implementation. */
117 HOWTO(R_386_TLS_LDO_32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
118 bfd_elf_generic_reloc, "R_386_TLS_LDO_32",
119 TRUE, 0xffffffff, 0xffffffff, FALSE),
120 HOWTO(R_386_TLS_IE_32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
121 bfd_elf_generic_reloc, "R_386_TLS_IE_32",
122 TRUE, 0xffffffff, 0xffffffff, FALSE),
123 HOWTO(R_386_TLS_LE_32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
124 bfd_elf_generic_reloc, "R_386_TLS_LE_32",
125 TRUE, 0xffffffff, 0xffffffff, FALSE),
126 HOWTO(R_386_TLS_DTPMOD32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
127 bfd_elf_generic_reloc, "R_386_TLS_DTPMOD32",
128 TRUE, 0xffffffff, 0xffffffff, FALSE),
129 HOWTO(R_386_TLS_DTPOFF32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
130 bfd_elf_generic_reloc, "R_386_TLS_DTPOFF32",
131 TRUE, 0xffffffff, 0xffffffff, FALSE),
132 HOWTO(R_386_TLS_TPOFF32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
133 bfd_elf_generic_reloc, "R_386_TLS_TPOFF32",
134 TRUE, 0xffffffff, 0xffffffff, FALSE),
135 HOWTO(R_386_SIZE32, 0, 2, 32, FALSE, 0, complain_overflow_unsigned,
136 bfd_elf_generic_reloc, "R_386_SIZE32",
137 TRUE, 0xffffffff, 0xffffffff, FALSE),
138 HOWTO(R_386_TLS_GOTDESC, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
139 bfd_elf_generic_reloc, "R_386_TLS_GOTDESC",
140 TRUE, 0xffffffff, 0xffffffff, FALSE),
141 HOWTO(R_386_TLS_DESC_CALL, 0, 0, 0, FALSE, 0, complain_overflow_dont,
142 bfd_elf_generic_reloc, "R_386_TLS_DESC_CALL",
143 FALSE, 0, 0, FALSE),
144 HOWTO(R_386_TLS_DESC, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
145 bfd_elf_generic_reloc, "R_386_TLS_DESC",
146 TRUE, 0xffffffff, 0xffffffff, FALSE),
147 HOWTO(R_386_IRELATIVE, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
148 bfd_elf_generic_reloc, "R_386_IRELATIVE",
149 TRUE, 0xffffffff, 0xffffffff, FALSE),
150 HOWTO(R_386_GOT32X, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
151 bfd_elf_generic_reloc, "R_386_GOT32X",
152 TRUE, 0xffffffff, 0xffffffff, FALSE),
153
154 /* Another gap. */
155 #define R_386_ext2 (R_386_GOT32X + 1 - R_386_tls_offset)
156 #define R_386_vt_offset (R_386_GNU_VTINHERIT - R_386_ext2)
157
158 /* GNU extension to record C++ vtable hierarchy. */
159 HOWTO (R_386_GNU_VTINHERIT, /* type */
160 0, /* rightshift */
161 2, /* size (0 = byte, 1 = short, 2 = long) */
162 0, /* bitsize */
163 FALSE, /* pc_relative */
164 0, /* bitpos */
165 complain_overflow_dont, /* complain_on_overflow */
166 NULL, /* special_function */
167 "R_386_GNU_VTINHERIT", /* name */
168 FALSE, /* partial_inplace */
169 0, /* src_mask */
170 0, /* dst_mask */
171 FALSE), /* pcrel_offset */
172
173 /* GNU extension to record C++ vtable member usage. */
174 HOWTO (R_386_GNU_VTENTRY, /* type */
175 0, /* rightshift */
176 2, /* size (0 = byte, 1 = short, 2 = long) */
177 0, /* bitsize */
178 FALSE, /* pc_relative */
179 0, /* bitpos */
180 complain_overflow_dont, /* complain_on_overflow */
181 _bfd_elf_rel_vtable_reloc_fn, /* special_function */
182 "R_386_GNU_VTENTRY", /* name */
183 FALSE, /* partial_inplace */
184 0, /* src_mask */
185 0, /* dst_mask */
186 FALSE) /* pcrel_offset */
187
188 #define R_386_vt (R_386_GNU_VTENTRY + 1 - R_386_vt_offset)
189
190 };
191
192 #ifdef DEBUG_GEN_RELOC
193 #define TRACE(str) \
194 fprintf (stderr, "i386 bfd reloc lookup %d (%s)\n", code, str)
195 #else
196 #define TRACE(str)
197 #endif
198
199 static reloc_howto_type *
200 elf_i386_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
201 bfd_reloc_code_real_type code)
202 {
203 switch (code)
204 {
205 case BFD_RELOC_NONE:
206 TRACE ("BFD_RELOC_NONE");
207 return &elf_howto_table[R_386_NONE];
208
209 case BFD_RELOC_32:
210 TRACE ("BFD_RELOC_32");
211 return &elf_howto_table[R_386_32];
212
213 case BFD_RELOC_CTOR:
214 TRACE ("BFD_RELOC_CTOR");
215 return &elf_howto_table[R_386_32];
216
217 case BFD_RELOC_32_PCREL:
218 TRACE ("BFD_RELOC_PC32");
219 return &elf_howto_table[R_386_PC32];
220
221 case BFD_RELOC_386_GOT32:
222 TRACE ("BFD_RELOC_386_GOT32");
223 return &elf_howto_table[R_386_GOT32];
224
225 case BFD_RELOC_386_PLT32:
226 TRACE ("BFD_RELOC_386_PLT32");
227 return &elf_howto_table[R_386_PLT32];
228
229 case BFD_RELOC_386_COPY:
230 TRACE ("BFD_RELOC_386_COPY");
231 return &elf_howto_table[R_386_COPY];
232
233 case BFD_RELOC_386_GLOB_DAT:
234 TRACE ("BFD_RELOC_386_GLOB_DAT");
235 return &elf_howto_table[R_386_GLOB_DAT];
236
237 case BFD_RELOC_386_JUMP_SLOT:
238 TRACE ("BFD_RELOC_386_JUMP_SLOT");
239 return &elf_howto_table[R_386_JUMP_SLOT];
240
241 case BFD_RELOC_386_RELATIVE:
242 TRACE ("BFD_RELOC_386_RELATIVE");
243 return &elf_howto_table[R_386_RELATIVE];
244
245 case BFD_RELOC_386_GOTOFF:
246 TRACE ("BFD_RELOC_386_GOTOFF");
247 return &elf_howto_table[R_386_GOTOFF];
248
249 case BFD_RELOC_386_GOTPC:
250 TRACE ("BFD_RELOC_386_GOTPC");
251 return &elf_howto_table[R_386_GOTPC];
252
253 /* These relocs are a GNU extension. */
254 case BFD_RELOC_386_TLS_TPOFF:
255 TRACE ("BFD_RELOC_386_TLS_TPOFF");
256 return &elf_howto_table[R_386_TLS_TPOFF - R_386_ext_offset];
257
258 case BFD_RELOC_386_TLS_IE:
259 TRACE ("BFD_RELOC_386_TLS_IE");
260 return &elf_howto_table[R_386_TLS_IE - R_386_ext_offset];
261
262 case BFD_RELOC_386_TLS_GOTIE:
263 TRACE ("BFD_RELOC_386_TLS_GOTIE");
264 return &elf_howto_table[R_386_TLS_GOTIE - R_386_ext_offset];
265
266 case BFD_RELOC_386_TLS_LE:
267 TRACE ("BFD_RELOC_386_TLS_LE");
268 return &elf_howto_table[R_386_TLS_LE - R_386_ext_offset];
269
270 case BFD_RELOC_386_TLS_GD:
271 TRACE ("BFD_RELOC_386_TLS_GD");
272 return &elf_howto_table[R_386_TLS_GD - R_386_ext_offset];
273
274 case BFD_RELOC_386_TLS_LDM:
275 TRACE ("BFD_RELOC_386_TLS_LDM");
276 return &elf_howto_table[R_386_TLS_LDM - R_386_ext_offset];
277
278 case BFD_RELOC_16:
279 TRACE ("BFD_RELOC_16");
280 return &elf_howto_table[R_386_16 - R_386_ext_offset];
281
282 case BFD_RELOC_16_PCREL:
283 TRACE ("BFD_RELOC_16_PCREL");
284 return &elf_howto_table[R_386_PC16 - R_386_ext_offset];
285
286 case BFD_RELOC_8:
287 TRACE ("BFD_RELOC_8");
288 return &elf_howto_table[R_386_8 - R_386_ext_offset];
289
290 case BFD_RELOC_8_PCREL:
291 TRACE ("BFD_RELOC_8_PCREL");
292 return &elf_howto_table[R_386_PC8 - R_386_ext_offset];
293
294 /* Common with Sun TLS implementation. */
295 case BFD_RELOC_386_TLS_LDO_32:
296 TRACE ("BFD_RELOC_386_TLS_LDO_32");
297 return &elf_howto_table[R_386_TLS_LDO_32 - R_386_tls_offset];
298
299 case BFD_RELOC_386_TLS_IE_32:
300 TRACE ("BFD_RELOC_386_TLS_IE_32");
301 return &elf_howto_table[R_386_TLS_IE_32 - R_386_tls_offset];
302
303 case BFD_RELOC_386_TLS_LE_32:
304 TRACE ("BFD_RELOC_386_TLS_LE_32");
305 return &elf_howto_table[R_386_TLS_LE_32 - R_386_tls_offset];
306
307 case BFD_RELOC_386_TLS_DTPMOD32:
308 TRACE ("BFD_RELOC_386_TLS_DTPMOD32");
309 return &elf_howto_table[R_386_TLS_DTPMOD32 - R_386_tls_offset];
310
311 case BFD_RELOC_386_TLS_DTPOFF32:
312 TRACE ("BFD_RELOC_386_TLS_DTPOFF32");
313 return &elf_howto_table[R_386_TLS_DTPOFF32 - R_386_tls_offset];
314
315 case BFD_RELOC_386_TLS_TPOFF32:
316 TRACE ("BFD_RELOC_386_TLS_TPOFF32");
317 return &elf_howto_table[R_386_TLS_TPOFF32 - R_386_tls_offset];
318
319 case BFD_RELOC_SIZE32:
320 TRACE ("BFD_RELOC_SIZE32");
321 return &elf_howto_table[R_386_SIZE32 - R_386_tls_offset];
322
323 case BFD_RELOC_386_TLS_GOTDESC:
324 TRACE ("BFD_RELOC_386_TLS_GOTDESC");
325 return &elf_howto_table[R_386_TLS_GOTDESC - R_386_tls_offset];
326
327 case BFD_RELOC_386_TLS_DESC_CALL:
328 TRACE ("BFD_RELOC_386_TLS_DESC_CALL");
329 return &elf_howto_table[R_386_TLS_DESC_CALL - R_386_tls_offset];
330
331 case BFD_RELOC_386_TLS_DESC:
332 TRACE ("BFD_RELOC_386_TLS_DESC");
333 return &elf_howto_table[R_386_TLS_DESC - R_386_tls_offset];
334
335 case BFD_RELOC_386_IRELATIVE:
336 TRACE ("BFD_RELOC_386_IRELATIVE");
337 return &elf_howto_table[R_386_IRELATIVE - R_386_tls_offset];
338
339 case BFD_RELOC_386_GOT32X:
340 TRACE ("BFD_RELOC_386_GOT32X");
341 return &elf_howto_table[R_386_GOT32X - R_386_tls_offset];
342
343 case BFD_RELOC_VTABLE_INHERIT:
344 TRACE ("BFD_RELOC_VTABLE_INHERIT");
345 return &elf_howto_table[R_386_GNU_VTINHERIT - R_386_vt_offset];
346
347 case BFD_RELOC_VTABLE_ENTRY:
348 TRACE ("BFD_RELOC_VTABLE_ENTRY");
349 return &elf_howto_table[R_386_GNU_VTENTRY - R_386_vt_offset];
350
351 default:
352 break;
353 }
354
355 TRACE ("Unknown");
356 return 0;
357 }
358
359 static reloc_howto_type *
360 elf_i386_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
361 const char *r_name)
362 {
363 unsigned int i;
364
365 for (i = 0; i < sizeof (elf_howto_table) / sizeof (elf_howto_table[0]); i++)
366 if (elf_howto_table[i].name != NULL
367 && strcasecmp (elf_howto_table[i].name, r_name) == 0)
368 return &elf_howto_table[i];
369
370 return NULL;
371 }
372
373 static reloc_howto_type *
374 elf_i386_rtype_to_howto (bfd *abfd, unsigned r_type)
375 {
376 unsigned int indx;
377
378 if ((indx = r_type) >= R_386_standard
379 && ((indx = r_type - R_386_ext_offset) - R_386_standard
380 >= R_386_ext - R_386_standard)
381 && ((indx = r_type - R_386_tls_offset) - R_386_ext
382 >= R_386_ext2 - R_386_ext)
383 && ((indx = r_type - R_386_vt_offset) - R_386_ext2
384 >= R_386_vt - R_386_ext2))
385 {
386 /* xgettext:c-format */
387 _bfd_error_handler (_("%B: invalid relocation type %d"),
388 abfd, (int) r_type);
389 indx = R_386_NONE;
390 }
391 /* PR 17512: file: 0f67f69d. */
392 if (elf_howto_table [indx].type != r_type)
393 return NULL;
394 return &elf_howto_table[indx];
395 }
396
397 static void
398 elf_i386_info_to_howto_rel (bfd *abfd ATTRIBUTE_UNUSED,
399 arelent *cache_ptr,
400 Elf_Internal_Rela *dst)
401 {
402 unsigned int r_type = ELF32_R_TYPE (dst->r_info);
403 cache_ptr->howto = elf_i386_rtype_to_howto (abfd, r_type);
404 }
405
406 /* Return whether a symbol name implies a local label. The UnixWare
407 2.1 cc generates temporary symbols that start with .X, so we
408 recognize them here. FIXME: do other SVR4 compilers also use .X?.
409 If so, we should move the .X recognition into
410 _bfd_elf_is_local_label_name. */
411
412 static bfd_boolean
413 elf_i386_is_local_label_name (bfd *abfd, const char *name)
414 {
415 if (name[0] == '.' && name[1] == 'X')
416 return TRUE;
417
418 return _bfd_elf_is_local_label_name (abfd, name);
419 }
420 \f
421 /* Support for core dump NOTE sections. */
422
423 static bfd_boolean
424 elf_i386_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
425 {
426 int offset;
427 size_t size;
428
429 if (note->namesz == 8 && strcmp (note->namedata, "FreeBSD") == 0)
430 {
431 int pr_version = bfd_get_32 (abfd, note->descdata);
432
433 if (pr_version != 1)
434 return FALSE;
435
436 /* pr_cursig */
437 elf_tdata (abfd)->core->signal = bfd_get_32 (abfd, note->descdata + 20);
438
439 /* pr_pid */
440 elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 24);
441
442 /* pr_reg */
443 offset = 28;
444 size = bfd_get_32 (abfd, note->descdata + 8);
445 }
446 else
447 {
448 switch (note->descsz)
449 {
450 default:
451 return FALSE;
452
453 case 144: /* Linux/i386 */
454 /* pr_cursig */
455 elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12);
456
457 /* pr_pid */
458 elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 24);
459
460 /* pr_reg */
461 offset = 72;
462 size = 68;
463
464 break;
465 }
466 }
467
468 /* Make a ".reg/999" section. */
469 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
470 size, note->descpos + offset);
471 }
472
473 static bfd_boolean
474 elf_i386_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
475 {
476 if (note->namesz == 8 && strcmp (note->namedata, "FreeBSD") == 0)
477 {
478 int pr_version = bfd_get_32 (abfd, note->descdata);
479
480 if (pr_version != 1)
481 return FALSE;
482
483 elf_tdata (abfd)->core->program
484 = _bfd_elfcore_strndup (abfd, note->descdata + 8, 17);
485 elf_tdata (abfd)->core->command
486 = _bfd_elfcore_strndup (abfd, note->descdata + 25, 81);
487 }
488 else
489 {
490 switch (note->descsz)
491 {
492 default:
493 return FALSE;
494
495 case 124: /* Linux/i386 elf_prpsinfo. */
496 elf_tdata (abfd)->core->pid
497 = bfd_get_32 (abfd, note->descdata + 12);
498 elf_tdata (abfd)->core->program
499 = _bfd_elfcore_strndup (abfd, note->descdata + 28, 16);
500 elf_tdata (abfd)->core->command
501 = _bfd_elfcore_strndup (abfd, note->descdata + 44, 80);
502 }
503 }
504
505 /* Note that for some reason, a spurious space is tacked
506 onto the end of the args in some (at least one anyway)
507 implementations, so strip it off if it exists. */
508 {
509 char *command = elf_tdata (abfd)->core->command;
510 int n = strlen (command);
511
512 if (0 < n && command[n - 1] == ' ')
513 command[n - 1] = '\0';
514 }
515
516 return TRUE;
517 }
518 \f
519 /* Functions for the i386 ELF linker.
520
521 In order to gain some understanding of code in this file without
522 knowing all the intricate details of the linker, note the
523 following:
524
525 Functions named elf_i386_* are called by external routines, other
526 functions are only called locally. elf_i386_* functions appear
527 in this file more or less in the order in which they are called
528 from external routines. eg. elf_i386_check_relocs is called
529 early in the link process, elf_i386_finish_dynamic_sections is
530 one of the last functions. */
531
532
533 /* The name of the dynamic interpreter. This is put in the .interp
534 section. */
535
536 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/libc.so.1"
537
538 /* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid
539 copying dynamic variables from a shared lib into an app's dynbss
540 section, and instead use a dynamic relocation to point into the
541 shared lib. */
542 #define ELIMINATE_COPY_RELOCS 1
543
544 /* The size in bytes of an entry in the procedure linkage table. */
545
546 #define PLT_ENTRY_SIZE 16
547
548 /* The first entry in an absolute procedure linkage table looks like
549 this. See the SVR4 ABI i386 supplement to see how this works.
550 Will be padded to PLT_ENTRY_SIZE with htab->plt0_pad_byte. */
551
552 static const bfd_byte elf_i386_plt0_entry[12] =
553 {
554 0xff, 0x35, /* pushl contents of address */
555 0, 0, 0, 0, /* replaced with address of .got + 4. */
556 0xff, 0x25, /* jmp indirect */
557 0, 0, 0, 0 /* replaced with address of .got + 8. */
558 };
559
560 /* Subsequent entries in an absolute procedure linkage table look like
561 this. */
562
563 static const bfd_byte elf_i386_plt_entry[PLT_ENTRY_SIZE] =
564 {
565 0xff, 0x25, /* jmp indirect */
566 0, 0, 0, 0, /* replaced with address of this symbol in .got. */
567 0x68, /* pushl immediate */
568 0, 0, 0, 0, /* replaced with offset into relocation table. */
569 0xe9, /* jmp relative */
570 0, 0, 0, 0 /* replaced with offset to start of .plt. */
571 };
572
573 /* The first entry in a PIC procedure linkage table look like this.
574 Will be padded to PLT_ENTRY_SIZE with htab->plt0_pad_byte. */
575
576 static const bfd_byte elf_i386_pic_plt0_entry[12] =
577 {
578 0xff, 0xb3, 4, 0, 0, 0, /* pushl 4(%ebx) */
579 0xff, 0xa3, 8, 0, 0, 0 /* jmp *8(%ebx) */
580 };
581
582 /* Subsequent entries in a PIC procedure linkage table look like this. */
583
584 static const bfd_byte elf_i386_pic_plt_entry[PLT_ENTRY_SIZE] =
585 {
586 0xff, 0xa3, /* jmp *offset(%ebx) */
587 0, 0, 0, 0, /* replaced with offset of this symbol in .got. */
588 0x68, /* pushl immediate */
589 0, 0, 0, 0, /* replaced with offset into relocation table. */
590 0xe9, /* jmp relative */
591 0, 0, 0, 0 /* replaced with offset to start of .plt. */
592 };
593
594 /* Entries in the GOT procedure linkage table look like this. */
595
596 static const bfd_byte elf_i386_got_plt_entry[8] =
597 {
598 0xff, 0x25, /* jmp indirect */
599 0, 0, 0, 0, /* replaced with offset of this symbol in .got. */
600 0x66, 0x90 /* xchg %ax,%ax */
601 };
602
603 /* Entries in the PIC GOT procedure linkage table look like this. */
604
605 static const bfd_byte elf_i386_pic_got_plt_entry[8] =
606 {
607 0xff, 0xa3, /* jmp *offset(%ebx) */
608 0, 0, 0, 0, /* replaced with offset of this symbol in .got. */
609 0x66, 0x90 /* xchg %ax,%ax */
610 };
611
612 /* .eh_frame covering the .plt section. */
613
614 static const bfd_byte elf_i386_eh_frame_plt[] =
615 {
616 #define PLT_CIE_LENGTH 20
617 #define PLT_FDE_LENGTH 36
618 #define PLT_FDE_START_OFFSET 4 + PLT_CIE_LENGTH + 8
619 #define PLT_FDE_LEN_OFFSET 4 + PLT_CIE_LENGTH + 12
620 PLT_CIE_LENGTH, 0, 0, 0, /* CIE length */
621 0, 0, 0, 0, /* CIE ID */
622 1, /* CIE version */
623 'z', 'R', 0, /* Augmentation string */
624 1, /* Code alignment factor */
625 0x7c, /* Data alignment factor */
626 8, /* Return address column */
627 1, /* Augmentation size */
628 DW_EH_PE_pcrel | DW_EH_PE_sdata4, /* FDE encoding */
629 DW_CFA_def_cfa, 4, 4, /* DW_CFA_def_cfa: r4 (esp) ofs 4 */
630 DW_CFA_offset + 8, 1, /* DW_CFA_offset: r8 (eip) at cfa-4 */
631 DW_CFA_nop, DW_CFA_nop,
632
633 PLT_FDE_LENGTH, 0, 0, 0, /* FDE length */
634 PLT_CIE_LENGTH + 8, 0, 0, 0, /* CIE pointer */
635 0, 0, 0, 0, /* R_386_PC32 .plt goes here */
636 0, 0, 0, 0, /* .plt size goes here */
637 0, /* Augmentation size */
638 DW_CFA_def_cfa_offset, 8, /* DW_CFA_def_cfa_offset: 8 */
639 DW_CFA_advance_loc + 6, /* DW_CFA_advance_loc: 6 to __PLT__+6 */
640 DW_CFA_def_cfa_offset, 12, /* DW_CFA_def_cfa_offset: 12 */
641 DW_CFA_advance_loc + 10, /* DW_CFA_advance_loc: 10 to __PLT__+16 */
642 DW_CFA_def_cfa_expression, /* DW_CFA_def_cfa_expression */
643 11, /* Block length */
644 DW_OP_breg4, 4, /* DW_OP_breg4 (esp): 4 */
645 DW_OP_breg8, 0, /* DW_OP_breg8 (eip): 0 */
646 DW_OP_lit15, DW_OP_and, DW_OP_lit11, DW_OP_ge,
647 DW_OP_lit2, DW_OP_shl, DW_OP_plus,
648 DW_CFA_nop, DW_CFA_nop, DW_CFA_nop, DW_CFA_nop
649 };
650
651 struct elf_i386_plt_layout
652 {
653 /* The first entry in an absolute procedure linkage table looks like this. */
654 const bfd_byte *plt0_entry;
655 unsigned int plt0_entry_size;
656
657 /* Offsets into plt0_entry that are to be replaced with GOT[1] and GOT[2]. */
658 unsigned int plt0_got1_offset;
659 unsigned int plt0_got2_offset;
660
661 /* Later entries in an absolute procedure linkage table look like this. */
662 const bfd_byte *plt_entry;
663 unsigned int plt_entry_size;
664
665 /* Offsets into plt_entry that are to be replaced with... */
666 unsigned int plt_got_offset; /* ... address of this symbol in .got. */
667 unsigned int plt_reloc_offset; /* ... offset into relocation table. */
668 unsigned int plt_plt_offset; /* ... offset to start of .plt. */
669
670 /* Offset into plt_entry where the initial value of the GOT entry points. */
671 unsigned int plt_lazy_offset;
672
673 /* The first entry in a PIC procedure linkage table looks like this. */
674 const bfd_byte *pic_plt0_entry;
675
676 /* Subsequent entries in a PIC procedure linkage table look like this. */
677 const bfd_byte *pic_plt_entry;
678
679 /* .eh_frame covering the .plt section. */
680 const bfd_byte *eh_frame_plt;
681 unsigned int eh_frame_plt_size;
682 };
683
684 #define GET_PLT_ENTRY_SIZE(abfd) \
685 get_elf_i386_backend_data (abfd)->plt->plt_entry_size
686
687 /* These are the standard parameters. */
688 static const struct elf_i386_plt_layout elf_i386_plt =
689 {
690 elf_i386_plt0_entry, /* plt0_entry */
691 sizeof (elf_i386_plt0_entry), /* plt0_entry_size */
692 2, /* plt0_got1_offset */
693 8, /* plt0_got2_offset */
694 elf_i386_plt_entry, /* plt_entry */
695 PLT_ENTRY_SIZE, /* plt_entry_size */
696 2, /* plt_got_offset */
697 7, /* plt_reloc_offset */
698 12, /* plt_plt_offset */
699 6, /* plt_lazy_offset */
700 elf_i386_pic_plt0_entry, /* pic_plt0_entry */
701 elf_i386_pic_plt_entry, /* pic_plt_entry */
702 elf_i386_eh_frame_plt, /* eh_frame_plt */
703 sizeof (elf_i386_eh_frame_plt), /* eh_frame_plt_size */
704 };
705 \f
706
707 /* On VxWorks, the .rel.plt.unloaded section has absolute relocations
708 for the PLTResolve stub and then for each PLT entry. */
709 #define PLTRESOLVE_RELOCS_SHLIB 0
710 #define PLTRESOLVE_RELOCS 2
711 #define PLT_NON_JUMP_SLOT_RELOCS 2
712
713 /* Architecture-specific backend data for i386. */
714
715 struct elf_i386_backend_data
716 {
717 /* Parameters describing PLT generation. */
718 const struct elf_i386_plt_layout *plt;
719
720 /* Value used to fill the unused bytes of the first PLT entry. */
721 bfd_byte plt0_pad_byte;
722
723 /* True if the target system is VxWorks. */
724 int is_vxworks;
725 };
726
727 #define get_elf_i386_backend_data(abfd) \
728 ((const struct elf_i386_backend_data *) \
729 get_elf_backend_data (abfd)->arch_data)
730
731 /* These are the standard parameters. */
732 static const struct elf_i386_backend_data elf_i386_arch_bed =
733 {
734 &elf_i386_plt, /* plt */
735 0, /* plt0_pad_byte */
736 0, /* is_vxworks */
737 };
738
739 #define elf_backend_arch_data &elf_i386_arch_bed
740
741 /* Is a undefined weak symbol which is resolved to 0. Reference to an
742 undefined weak symbol is resolved to 0 when building executable if
743 it isn't dynamic and
744 1. Has non-GOT/non-PLT relocations in text section. Or
745 2. Has no GOT/PLT relocation.
746 */
747 #define UNDEFINED_WEAK_RESOLVED_TO_ZERO(INFO, GOT_RELOC, EH) \
748 ((EH)->elf.root.type == bfd_link_hash_undefweak \
749 && bfd_link_executable (INFO) \
750 && (elf_i386_hash_table (INFO)->interp == NULL \
751 || !(GOT_RELOC) \
752 || (EH)->has_non_got_reloc \
753 || !(INFO)->dynamic_undefined_weak))
754
755 /* i386 ELF linker hash entry. */
756
757 struct elf_i386_link_hash_entry
758 {
759 struct elf_link_hash_entry elf;
760
761 /* Track dynamic relocs copied for this symbol. */
762 struct elf_dyn_relocs *dyn_relocs;
763
764 #define GOT_UNKNOWN 0
765 #define GOT_NORMAL 1
766 #define GOT_TLS_GD 2
767 #define GOT_TLS_IE 4
768 #define GOT_TLS_IE_POS 5
769 #define GOT_TLS_IE_NEG 6
770 #define GOT_TLS_IE_BOTH 7
771 #define GOT_TLS_GDESC 8
772 #define GOT_TLS_GD_BOTH_P(type) \
773 ((type) == (GOT_TLS_GD | GOT_TLS_GDESC))
774 #define GOT_TLS_GD_P(type) \
775 ((type) == GOT_TLS_GD || GOT_TLS_GD_BOTH_P (type))
776 #define GOT_TLS_GDESC_P(type) \
777 ((type) == GOT_TLS_GDESC || GOT_TLS_GD_BOTH_P (type))
778 #define GOT_TLS_GD_ANY_P(type) \
779 (GOT_TLS_GD_P (type) || GOT_TLS_GDESC_P (type))
780 unsigned char tls_type;
781
782 /* Symbol is referenced by R_386_GOTOFF relocation. */
783 unsigned int gotoff_ref : 1;
784
785 /* Symbol has GOT or PLT relocations. */
786 unsigned int has_got_reloc : 1;
787
788 /* Symbol has non-GOT/non-PLT relocations in text sections. */
789 unsigned int has_non_got_reloc : 1;
790
791 /* 0: symbol isn't ___tls_get_addr.
792 1: symbol is ___tls_get_addr.
793 2: symbol is unknown. */
794 unsigned int tls_get_addr : 2;
795
796 /* Reference count of C/C++ function pointer relocations in read-write
797 section which can be resolved at run-time. */
798 bfd_signed_vma func_pointer_refcount;
799
800 /* Information about the GOT PLT entry. Filled when there are both
801 GOT and PLT relocations against the same function. */
802 union gotplt_union plt_got;
803
804 /* Offset of the GOTPLT entry reserved for the TLS descriptor,
805 starting at the end of the jump table. */
806 bfd_vma tlsdesc_got;
807 };
808
809 #define elf_i386_hash_entry(ent) ((struct elf_i386_link_hash_entry *)(ent))
810
811 struct elf_i386_obj_tdata
812 {
813 struct elf_obj_tdata root;
814
815 /* tls_type for each local got entry. */
816 char *local_got_tls_type;
817
818 /* GOTPLT entries for TLS descriptors. */
819 bfd_vma *local_tlsdesc_gotent;
820 };
821
822 #define elf_i386_tdata(abfd) \
823 ((struct elf_i386_obj_tdata *) (abfd)->tdata.any)
824
825 #define elf_i386_local_got_tls_type(abfd) \
826 (elf_i386_tdata (abfd)->local_got_tls_type)
827
828 #define elf_i386_local_tlsdesc_gotent(abfd) \
829 (elf_i386_tdata (abfd)->local_tlsdesc_gotent)
830
831 #define is_i386_elf(bfd) \
832 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
833 && elf_tdata (bfd) != NULL \
834 && elf_object_id (bfd) == I386_ELF_DATA)
835
836 static bfd_boolean
837 elf_i386_mkobject (bfd *abfd)
838 {
839 return bfd_elf_allocate_object (abfd, sizeof (struct elf_i386_obj_tdata),
840 I386_ELF_DATA);
841 }
842
843 /* i386 ELF linker hash table. */
844
845 struct elf_i386_link_hash_table
846 {
847 struct elf_link_hash_table elf;
848
849 /* Short-cuts to get to dynamic linker sections. */
850 asection *interp;
851 asection *plt_eh_frame;
852 asection *plt_got;
853
854 union
855 {
856 bfd_signed_vma refcount;
857 bfd_vma offset;
858 } tls_ldm_got;
859
860 /* The amount of space used by the reserved portion of the sgotplt
861 section, plus whatever space is used by the jump slots. */
862 bfd_vma sgotplt_jump_table_size;
863
864 /* Small local sym cache. */
865 struct sym_cache sym_cache;
866
867 /* _TLS_MODULE_BASE_ symbol. */
868 struct bfd_link_hash_entry *tls_module_base;
869
870 /* Used by local STT_GNU_IFUNC symbols. */
871 htab_t loc_hash_table;
872 void * loc_hash_memory;
873
874 /* The (unloaded but important) .rel.plt.unloaded section on VxWorks. */
875 asection *srelplt2;
876
877 /* The index of the next unused R_386_TLS_DESC slot in .rel.plt. */
878 bfd_vma next_tls_desc_index;
879
880 /* The index of the next unused R_386_JUMP_SLOT slot in .rel.plt. */
881 bfd_vma next_jump_slot_index;
882
883 /* The index of the next unused R_386_IRELATIVE slot in .rel.plt. */
884 bfd_vma next_irelative_index;
885
886 /* TRUE if there are dynamic relocs against IFUNC symbols that apply
887 to read-only sections. */
888 bfd_boolean readonly_dynrelocs_against_ifunc;
889 };
890
891 /* Get the i386 ELF linker hash table from a link_info structure. */
892
893 #define elf_i386_hash_table(p) \
894 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
895 == I386_ELF_DATA ? ((struct elf_i386_link_hash_table *) ((p)->hash)) : NULL)
896
897 #define elf_i386_compute_jump_table_size(htab) \
898 ((htab)->elf.srelplt->reloc_count * 4)
899
900 /* Create an entry in an i386 ELF linker hash table. */
901
902 static struct bfd_hash_entry *
903 elf_i386_link_hash_newfunc (struct bfd_hash_entry *entry,
904 struct bfd_hash_table *table,
905 const char *string)
906 {
907 /* Allocate the structure if it has not already been allocated by a
908 subclass. */
909 if (entry == NULL)
910 {
911 entry = (struct bfd_hash_entry *)
912 bfd_hash_allocate (table, sizeof (struct elf_i386_link_hash_entry));
913 if (entry == NULL)
914 return entry;
915 }
916
917 /* Call the allocation method of the superclass. */
918 entry = _bfd_elf_link_hash_newfunc (entry, table, string);
919 if (entry != NULL)
920 {
921 struct elf_i386_link_hash_entry *eh;
922
923 eh = (struct elf_i386_link_hash_entry *) entry;
924 eh->dyn_relocs = NULL;
925 eh->tls_type = GOT_UNKNOWN;
926 eh->gotoff_ref = 0;
927 eh->has_got_reloc = 0;
928 eh->has_non_got_reloc = 0;
929 eh->tls_get_addr = 2;
930 eh->func_pointer_refcount = 0;
931 eh->plt_got.offset = (bfd_vma) -1;
932 eh->tlsdesc_got = (bfd_vma) -1;
933 }
934
935 return entry;
936 }
937
938 /* Compute a hash of a local hash entry. We use elf_link_hash_entry
939 for local symbol so that we can handle local STT_GNU_IFUNC symbols
940 as global symbol. We reuse indx and dynstr_index for local symbol
941 hash since they aren't used by global symbols in this backend. */
942
943 static hashval_t
944 elf_i386_local_htab_hash (const void *ptr)
945 {
946 struct elf_link_hash_entry *h
947 = (struct elf_link_hash_entry *) ptr;
948 return ELF_LOCAL_SYMBOL_HASH (h->indx, h->dynstr_index);
949 }
950
951 /* Compare local hash entries. */
952
953 static int
954 elf_i386_local_htab_eq (const void *ptr1, const void *ptr2)
955 {
956 struct elf_link_hash_entry *h1
957 = (struct elf_link_hash_entry *) ptr1;
958 struct elf_link_hash_entry *h2
959 = (struct elf_link_hash_entry *) ptr2;
960
961 return h1->indx == h2->indx && h1->dynstr_index == h2->dynstr_index;
962 }
963
964 /* Find and/or create a hash entry for local symbol. */
965
966 static struct elf_link_hash_entry *
967 elf_i386_get_local_sym_hash (struct elf_i386_link_hash_table *htab,
968 bfd *abfd, const Elf_Internal_Rela *rel,
969 bfd_boolean create)
970 {
971 struct elf_i386_link_hash_entry e, *ret;
972 asection *sec = abfd->sections;
973 hashval_t h = ELF_LOCAL_SYMBOL_HASH (sec->id,
974 ELF32_R_SYM (rel->r_info));
975 void **slot;
976
977 e.elf.indx = sec->id;
978 e.elf.dynstr_index = ELF32_R_SYM (rel->r_info);
979 slot = htab_find_slot_with_hash (htab->loc_hash_table, &e, h,
980 create ? INSERT : NO_INSERT);
981
982 if (!slot)
983 return NULL;
984
985 if (*slot)
986 {
987 ret = (struct elf_i386_link_hash_entry *) *slot;
988 return &ret->elf;
989 }
990
991 ret = (struct elf_i386_link_hash_entry *)
992 objalloc_alloc ((struct objalloc *) htab->loc_hash_memory,
993 sizeof (struct elf_i386_link_hash_entry));
994 if (ret)
995 {
996 memset (ret, 0, sizeof (*ret));
997 ret->elf.indx = sec->id;
998 ret->elf.dynstr_index = ELF32_R_SYM (rel->r_info);
999 ret->elf.dynindx = -1;
1000 ret->func_pointer_refcount = 0;
1001 ret->plt_got.offset = (bfd_vma) -1;
1002 *slot = ret;
1003 }
1004 return &ret->elf;
1005 }
1006
1007 /* Destroy an i386 ELF linker hash table. */
1008
1009 static void
1010 elf_i386_link_hash_table_free (bfd *obfd)
1011 {
1012 struct elf_i386_link_hash_table *htab
1013 = (struct elf_i386_link_hash_table *) obfd->link.hash;
1014
1015 if (htab->loc_hash_table)
1016 htab_delete (htab->loc_hash_table);
1017 if (htab->loc_hash_memory)
1018 objalloc_free ((struct objalloc *) htab->loc_hash_memory);
1019 _bfd_elf_link_hash_table_free (obfd);
1020 }
1021
1022 /* Create an i386 ELF linker hash table. */
1023
1024 static struct bfd_link_hash_table *
1025 elf_i386_link_hash_table_create (bfd *abfd)
1026 {
1027 struct elf_i386_link_hash_table *ret;
1028 bfd_size_type amt = sizeof (struct elf_i386_link_hash_table);
1029
1030 ret = (struct elf_i386_link_hash_table *) bfd_zmalloc (amt);
1031 if (ret == NULL)
1032 return NULL;
1033
1034 if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd,
1035 elf_i386_link_hash_newfunc,
1036 sizeof (struct elf_i386_link_hash_entry),
1037 I386_ELF_DATA))
1038 {
1039 free (ret);
1040 return NULL;
1041 }
1042
1043 ret->loc_hash_table = htab_try_create (1024,
1044 elf_i386_local_htab_hash,
1045 elf_i386_local_htab_eq,
1046 NULL);
1047 ret->loc_hash_memory = objalloc_create ();
1048 if (!ret->loc_hash_table || !ret->loc_hash_memory)
1049 {
1050 elf_i386_link_hash_table_free (abfd);
1051 return NULL;
1052 }
1053 ret->elf.root.hash_table_free = elf_i386_link_hash_table_free;
1054
1055 return &ret->elf.root;
1056 }
1057
1058 /* Create .plt, .rel.plt, .got, .got.plt, .rel.got, .dynbss, and
1059 .rel.bss sections in DYNOBJ, and set up shortcuts to them in our
1060 hash table. */
1061
1062 static bfd_boolean
1063 elf_i386_create_dynamic_sections (bfd *dynobj, struct bfd_link_info *info)
1064 {
1065 struct elf_i386_link_hash_table *htab;
1066
1067 if (!_bfd_elf_create_dynamic_sections (dynobj, info))
1068 return FALSE;
1069
1070 htab = elf_i386_hash_table (info);
1071 if (htab == NULL)
1072 return FALSE;
1073
1074 /* Set the contents of the .interp section to the interpreter. */
1075 if (bfd_link_executable (info) && !info->nointerp)
1076 {
1077 asection *s = bfd_get_linker_section (dynobj, ".interp");
1078 if (s == NULL)
1079 abort ();
1080 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
1081 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
1082 htab->interp = s;
1083 }
1084
1085 if (get_elf_i386_backend_data (dynobj)->is_vxworks
1086 && !elf_vxworks_create_dynamic_sections (dynobj, info,
1087 &htab->srelplt2))
1088 return FALSE;
1089
1090 if (!info->no_ld_generated_unwind_info
1091 && htab->plt_eh_frame == NULL
1092 && htab->elf.splt != NULL)
1093 {
1094 flagword flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY
1095 | SEC_HAS_CONTENTS | SEC_IN_MEMORY
1096 | SEC_LINKER_CREATED);
1097 htab->plt_eh_frame
1098 = bfd_make_section_anyway_with_flags (dynobj, ".eh_frame", flags);
1099 if (htab->plt_eh_frame == NULL
1100 || !bfd_set_section_alignment (dynobj, htab->plt_eh_frame, 2))
1101 return FALSE;
1102 }
1103
1104 return TRUE;
1105 }
1106
1107 /* Copy the extra info we tack onto an elf_link_hash_entry. */
1108
1109 static void
1110 elf_i386_copy_indirect_symbol (struct bfd_link_info *info,
1111 struct elf_link_hash_entry *dir,
1112 struct elf_link_hash_entry *ind)
1113 {
1114 struct elf_i386_link_hash_entry *edir, *eind;
1115
1116 edir = (struct elf_i386_link_hash_entry *) dir;
1117 eind = (struct elf_i386_link_hash_entry *) ind;
1118
1119 if (eind->dyn_relocs != NULL)
1120 {
1121 if (edir->dyn_relocs != NULL)
1122 {
1123 struct elf_dyn_relocs **pp;
1124 struct elf_dyn_relocs *p;
1125
1126 /* Add reloc counts against the indirect sym to the direct sym
1127 list. Merge any entries against the same section. */
1128 for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
1129 {
1130 struct elf_dyn_relocs *q;
1131
1132 for (q = edir->dyn_relocs; q != NULL; q = q->next)
1133 if (q->sec == p->sec)
1134 {
1135 q->pc_count += p->pc_count;
1136 q->count += p->count;
1137 *pp = p->next;
1138 break;
1139 }
1140 if (q == NULL)
1141 pp = &p->next;
1142 }
1143 *pp = edir->dyn_relocs;
1144 }
1145
1146 edir->dyn_relocs = eind->dyn_relocs;
1147 eind->dyn_relocs = NULL;
1148 }
1149
1150 if (ind->root.type == bfd_link_hash_indirect
1151 && dir->got.refcount <= 0)
1152 {
1153 edir->tls_type = eind->tls_type;
1154 eind->tls_type = GOT_UNKNOWN;
1155 }
1156
1157 /* Copy gotoff_ref so that elf_i386_adjust_dynamic_symbol will
1158 generate a R_386_COPY reloc. */
1159 edir->gotoff_ref |= eind->gotoff_ref;
1160
1161 edir->has_got_reloc |= eind->has_got_reloc;
1162 edir->has_non_got_reloc |= eind->has_non_got_reloc;
1163
1164 if (ELIMINATE_COPY_RELOCS
1165 && ind->root.type != bfd_link_hash_indirect
1166 && dir->dynamic_adjusted)
1167 {
1168 /* If called to transfer flags for a weakdef during processing
1169 of elf_adjust_dynamic_symbol, don't copy non_got_ref.
1170 We clear it ourselves for ELIMINATE_COPY_RELOCS. */
1171 dir->ref_dynamic |= ind->ref_dynamic;
1172 dir->ref_regular |= ind->ref_regular;
1173 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
1174 dir->needs_plt |= ind->needs_plt;
1175 dir->pointer_equality_needed |= ind->pointer_equality_needed;
1176 }
1177 else
1178 {
1179 if (eind->func_pointer_refcount > 0)
1180 {
1181 edir->func_pointer_refcount += eind->func_pointer_refcount;
1182 eind->func_pointer_refcount = 0;
1183 }
1184
1185 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
1186 }
1187 }
1188
1189 /* Return TRUE if the TLS access code sequence support transition
1190 from R_TYPE. */
1191
1192 static bfd_boolean
1193 elf_i386_check_tls_transition (asection *sec,
1194 bfd_byte *contents,
1195 Elf_Internal_Shdr *symtab_hdr,
1196 struct elf_link_hash_entry **sym_hashes,
1197 unsigned int r_type,
1198 const Elf_Internal_Rela *rel,
1199 const Elf_Internal_Rela *relend)
1200 {
1201 unsigned int val, type, reg;
1202 unsigned long r_symndx;
1203 struct elf_link_hash_entry *h;
1204 bfd_vma offset;
1205 bfd_byte *call;
1206 bfd_boolean indirect_call, tls_get_addr;
1207
1208 offset = rel->r_offset;
1209 switch (r_type)
1210 {
1211 case R_386_TLS_GD:
1212 case R_386_TLS_LDM:
1213 if (offset < 2 || (rel + 1) >= relend)
1214 return FALSE;
1215
1216 indirect_call = FALSE;
1217 call = contents + offset + 4;
1218 val = *(call - 5);
1219 type = *(call - 6);
1220 if (r_type == R_386_TLS_GD)
1221 {
1222 /* Check transition from GD access model. Only
1223 leal foo@tlsgd(,%ebx,1), %eax
1224 call ___tls_get_addr@PLT
1225 or
1226 leal foo@tlsgd(%ebx) %eax
1227 call ___tls_get_addr@PLT
1228 nop
1229 or
1230 leal foo@tlsgd(%reg), %eax
1231 call *___tls_get_addr@GOT(%reg)
1232 which may be converted to
1233 addr32 call ___tls_get_addr
1234 can transit to different access model. */
1235 if ((offset + 10) > sec->size
1236 || (type != 0x8d && type != 0x04))
1237 return FALSE;
1238
1239 if (type == 0x04)
1240 {
1241 /* leal foo@tlsgd(,%ebx,1), %eax
1242 call ___tls_get_addr@PLT */
1243 if (offset < 3)
1244 return FALSE;
1245
1246 if (*(call - 7) != 0x8d
1247 || val != 0x1d
1248 || call[0] != 0xe8)
1249 return FALSE;
1250 }
1251 else
1252 {
1253 /* This must be
1254 leal foo@tlsgd(%ebx), %eax
1255 call ___tls_get_addr@PLT
1256 nop
1257 or
1258 leal foo@tlsgd(%reg), %eax
1259 call *___tls_get_addr@GOT(%reg)
1260 which may be converted to
1261 addr32 call ___tls_get_addr
1262
1263 %eax can't be used as the GOT base register since it
1264 is used to pass parameter to ___tls_get_addr. */
1265 reg = val & 7;
1266 if ((val & 0xf8) != 0x80 || reg == 4 || reg == 0)
1267 return FALSE;
1268
1269 indirect_call = call[0] == 0xff;
1270 if (!(reg == 3 && call[0] == 0xe8 && call[5] == 0x90)
1271 && !(call[0] == 0x67 && call[1] == 0xe8)
1272 && !(indirect_call
1273 && (call[1] & 0xf8) == 0x90
1274 && (call[1] & 0x7) == reg))
1275 return FALSE;
1276 }
1277 }
1278 else
1279 {
1280 /* Check transition from LD access model. Only
1281 leal foo@tlsldm(%ebx), %eax
1282 call ___tls_get_addr@PLT
1283 or
1284 leal foo@tlsldm(%reg), %eax
1285 call *___tls_get_addr@GOT(%reg)
1286 which may be converted to
1287 addr32 call ___tls_get_addr
1288 can transit to different access model. */
1289 if (type != 0x8d || (offset + 9) > sec->size)
1290 return FALSE;
1291
1292 /* %eax can't be used as the GOT base register since it is
1293 used to pass parameter to ___tls_get_addr. */
1294 reg = val & 7;
1295 if ((val & 0xf8) != 0x80 || reg == 4 || reg == 0)
1296 return FALSE;
1297
1298 indirect_call = call[0] == 0xff;
1299 if (!(reg == 3 && call[0] == 0xe8)
1300 && !(call[0] == 0x67 && call[1] == 0xe8)
1301 && !(indirect_call
1302 && (call[1] & 0xf8) == 0x90
1303 && (call[1] & 0x7) == reg))
1304 return FALSE;
1305 }
1306
1307 r_symndx = ELF32_R_SYM (rel[1].r_info);
1308 if (r_symndx < symtab_hdr->sh_info)
1309 return FALSE;
1310
1311 tls_get_addr = FALSE;
1312 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1313 if (h != NULL && h->root.root.string != NULL)
1314 {
1315 struct elf_i386_link_hash_entry *eh
1316 = (struct elf_i386_link_hash_entry *) h;
1317 tls_get_addr = eh->tls_get_addr == 1;
1318 if (eh->tls_get_addr > 1)
1319 {
1320 /* Use strncmp to check ___tls_get_addr since
1321 ___tls_get_addr may be versioned. */
1322 if (strncmp (h->root.root.string, "___tls_get_addr", 15)
1323 == 0)
1324 {
1325 eh->tls_get_addr = 1;
1326 tls_get_addr = TRUE;
1327 }
1328 else
1329 eh->tls_get_addr = 0;
1330 }
1331 }
1332
1333 if (!tls_get_addr)
1334 return FALSE;
1335 else if (indirect_call)
1336 return (ELF32_R_TYPE (rel[1].r_info) == R_386_GOT32X);
1337 else
1338 return (ELF32_R_TYPE (rel[1].r_info) == R_386_PC32
1339 || ELF32_R_TYPE (rel[1].r_info) == R_386_PLT32);
1340
1341 case R_386_TLS_IE:
1342 /* Check transition from IE access model:
1343 movl foo@indntpoff(%rip), %eax
1344 movl foo@indntpoff(%rip), %reg
1345 addl foo@indntpoff(%rip), %reg
1346 */
1347
1348 if (offset < 1 || (offset + 4) > sec->size)
1349 return FALSE;
1350
1351 /* Check "movl foo@tpoff(%rip), %eax" first. */
1352 val = bfd_get_8 (abfd, contents + offset - 1);
1353 if (val == 0xa1)
1354 return TRUE;
1355
1356 if (offset < 2)
1357 return FALSE;
1358
1359 /* Check movl|addl foo@tpoff(%rip), %reg. */
1360 type = bfd_get_8 (abfd, contents + offset - 2);
1361 return ((type == 0x8b || type == 0x03)
1362 && (val & 0xc7) == 0x05);
1363
1364 case R_386_TLS_GOTIE:
1365 case R_386_TLS_IE_32:
1366 /* Check transition from {IE_32,GOTIE} access model:
1367 subl foo@{tpoff,gontoff}(%reg1), %reg2
1368 movl foo@{tpoff,gontoff}(%reg1), %reg2
1369 addl foo@{tpoff,gontoff}(%reg1), %reg2
1370 */
1371
1372 if (offset < 2 || (offset + 4) > sec->size)
1373 return FALSE;
1374
1375 val = bfd_get_8 (abfd, contents + offset - 1);
1376 if ((val & 0xc0) != 0x80 || (val & 7) == 4)
1377 return FALSE;
1378
1379 type = bfd_get_8 (abfd, contents + offset - 2);
1380 return type == 0x8b || type == 0x2b || type == 0x03;
1381
1382 case R_386_TLS_GOTDESC:
1383 /* Check transition from GDesc access model:
1384 leal x@tlsdesc(%ebx), %eax
1385
1386 Make sure it's a leal adding ebx to a 32-bit offset
1387 into any register, although it's probably almost always
1388 going to be eax. */
1389
1390 if (offset < 2 || (offset + 4) > sec->size)
1391 return FALSE;
1392
1393 if (bfd_get_8 (abfd, contents + offset - 2) != 0x8d)
1394 return FALSE;
1395
1396 val = bfd_get_8 (abfd, contents + offset - 1);
1397 return (val & 0xc7) == 0x83;
1398
1399 case R_386_TLS_DESC_CALL:
1400 /* Check transition from GDesc access model:
1401 call *x@tlsdesc(%eax)
1402 */
1403 if (offset + 2 <= sec->size)
1404 {
1405 /* Make sure that it's a call *x@tlsdesc(%eax). */
1406 call = contents + offset;
1407 return call[0] == 0xff && call[1] == 0x10;
1408 }
1409
1410 return FALSE;
1411
1412 default:
1413 abort ();
1414 }
1415 }
1416
1417 /* Return TRUE if the TLS access transition is OK or no transition
1418 will be performed. Update R_TYPE if there is a transition. */
1419
1420 static bfd_boolean
1421 elf_i386_tls_transition (struct bfd_link_info *info, bfd *abfd,
1422 asection *sec, bfd_byte *contents,
1423 Elf_Internal_Shdr *symtab_hdr,
1424 struct elf_link_hash_entry **sym_hashes,
1425 unsigned int *r_type, int tls_type,
1426 const Elf_Internal_Rela *rel,
1427 const Elf_Internal_Rela *relend,
1428 struct elf_link_hash_entry *h,
1429 unsigned long r_symndx,
1430 bfd_boolean from_relocate_section)
1431 {
1432 unsigned int from_type = *r_type;
1433 unsigned int to_type = from_type;
1434 bfd_boolean check = TRUE;
1435
1436 /* Skip TLS transition for functions. */
1437 if (h != NULL
1438 && (h->type == STT_FUNC
1439 || h->type == STT_GNU_IFUNC))
1440 return TRUE;
1441
1442 switch (from_type)
1443 {
1444 case R_386_TLS_GD:
1445 case R_386_TLS_GOTDESC:
1446 case R_386_TLS_DESC_CALL:
1447 case R_386_TLS_IE_32:
1448 case R_386_TLS_IE:
1449 case R_386_TLS_GOTIE:
1450 if (bfd_link_executable (info))
1451 {
1452 if (h == NULL)
1453 to_type = R_386_TLS_LE_32;
1454 else if (from_type != R_386_TLS_IE
1455 && from_type != R_386_TLS_GOTIE)
1456 to_type = R_386_TLS_IE_32;
1457 }
1458
1459 /* When we are called from elf_i386_relocate_section, there may
1460 be additional transitions based on TLS_TYPE. */
1461 if (from_relocate_section)
1462 {
1463 unsigned int new_to_type = to_type;
1464
1465 if (bfd_link_executable (info)
1466 && h != NULL
1467 && h->dynindx == -1
1468 && (tls_type & GOT_TLS_IE))
1469 new_to_type = R_386_TLS_LE_32;
1470
1471 if (to_type == R_386_TLS_GD
1472 || to_type == R_386_TLS_GOTDESC
1473 || to_type == R_386_TLS_DESC_CALL)
1474 {
1475 if (tls_type == GOT_TLS_IE_POS)
1476 new_to_type = R_386_TLS_GOTIE;
1477 else if (tls_type & GOT_TLS_IE)
1478 new_to_type = R_386_TLS_IE_32;
1479 }
1480
1481 /* We checked the transition before when we were called from
1482 elf_i386_check_relocs. We only want to check the new
1483 transition which hasn't been checked before. */
1484 check = new_to_type != to_type && from_type == to_type;
1485 to_type = new_to_type;
1486 }
1487
1488 break;
1489
1490 case R_386_TLS_LDM:
1491 if (bfd_link_executable (info))
1492 to_type = R_386_TLS_LE_32;
1493 break;
1494
1495 default:
1496 return TRUE;
1497 }
1498
1499 /* Return TRUE if there is no transition. */
1500 if (from_type == to_type)
1501 return TRUE;
1502
1503 /* Check if the transition can be performed. */
1504 if (check
1505 && ! elf_i386_check_tls_transition (sec, contents,
1506 symtab_hdr, sym_hashes,
1507 from_type, rel, relend))
1508 {
1509 reloc_howto_type *from, *to;
1510 const char *name;
1511
1512 from = elf_i386_rtype_to_howto (abfd, from_type);
1513 to = elf_i386_rtype_to_howto (abfd, to_type);
1514
1515 if (h)
1516 name = h->root.root.string;
1517 else
1518 {
1519 struct elf_i386_link_hash_table *htab;
1520
1521 htab = elf_i386_hash_table (info);
1522 if (htab == NULL)
1523 name = "*unknown*";
1524 else
1525 {
1526 Elf_Internal_Sym *isym;
1527
1528 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
1529 abfd, r_symndx);
1530 name = bfd_elf_sym_name (abfd, symtab_hdr, isym, NULL);
1531 }
1532 }
1533
1534 _bfd_error_handler
1535 /* xgettext:c-format */
1536 (_("%B: TLS transition from %s to %s against `%s' at 0x%lx "
1537 "in section `%A' failed"),
1538 abfd, sec, from->name, to->name, name,
1539 (unsigned long) rel->r_offset);
1540 bfd_set_error (bfd_error_bad_value);
1541 return FALSE;
1542 }
1543
1544 *r_type = to_type;
1545 return TRUE;
1546 }
1547
1548 /* With the local symbol, foo, we convert
1549 mov foo@GOT[(%reg1)], %reg2
1550 to
1551 lea foo[@GOTOFF(%reg1)], %reg2
1552 and convert
1553 call/jmp *foo@GOT[(%reg)]
1554 to
1555 nop call foo/jmp foo nop
1556 When PIC is false, convert
1557 test %reg1, foo@GOT[(%reg2)]
1558 to
1559 test $foo, %reg1
1560 and convert
1561 binop foo@GOT[(%reg1)], %reg2
1562 to
1563 binop $foo, %reg2
1564 where binop is one of adc, add, and, cmp, or, sbb, sub, xor
1565 instructions. */
1566
1567 static
1568 bfd_boolean
1569 elf_i386_convert_load_reloc (bfd *abfd, Elf_Internal_Shdr *symtab_hdr,
1570 bfd_byte *contents,
1571 Elf_Internal_Rela *irel,
1572 struct elf_link_hash_entry *h,
1573 bfd_boolean *converted,
1574 struct bfd_link_info *link_info)
1575 {
1576 struct elf_i386_link_hash_table *htab;
1577 unsigned int opcode;
1578 unsigned int modrm;
1579 bfd_boolean baseless;
1580 Elf_Internal_Sym *isym;
1581 unsigned int addend;
1582 unsigned int nop;
1583 bfd_vma nop_offset;
1584 bfd_boolean is_pic;
1585 bfd_boolean to_reloc_32;
1586 unsigned int r_type;
1587 unsigned int r_symndx;
1588 bfd_vma roff = irel->r_offset;
1589
1590 if (roff < 2)
1591 return TRUE;
1592
1593 /* Addend for R_386_GOT32X relocations must be 0. */
1594 addend = bfd_get_32 (abfd, contents + roff);
1595 if (addend != 0)
1596 return TRUE;
1597
1598 htab = elf_i386_hash_table (link_info);
1599 is_pic = bfd_link_pic (link_info);
1600
1601 r_type = ELF32_R_TYPE (irel->r_info);
1602 r_symndx = ELF32_R_SYM (irel->r_info);
1603
1604 modrm = bfd_get_8 (abfd, contents + roff - 1);
1605 baseless = (modrm & 0xc7) == 0x5;
1606
1607 if (baseless && is_pic)
1608 {
1609 /* For PIC, disallow R_386_GOT32X without a base register
1610 since we don't know what the GOT base is. */
1611 const char *name;
1612
1613 if (h == NULL)
1614 {
1615 isym = bfd_sym_from_r_symndx (&htab->sym_cache, abfd,
1616 r_symndx);
1617 name = bfd_elf_sym_name (abfd, symtab_hdr, isym, NULL);
1618 }
1619 else
1620 name = h->root.root.string;
1621
1622 _bfd_error_handler
1623 /* xgettext:c-format */
1624 (_("%B: direct GOT relocation R_386_GOT32X against `%s' without base register can not be used when making a shared object"),
1625 abfd, name);
1626 return FALSE;
1627 }
1628
1629 opcode = bfd_get_8 (abfd, contents + roff - 2);
1630
1631 /* Convert to R_386_32 if PIC is false or there is no base
1632 register. */
1633 to_reloc_32 = !is_pic || baseless;
1634
1635 /* Try to convert R_386_GOT32X. Get the symbol referred to by the
1636 reloc. */
1637 if (h == NULL)
1638 {
1639 if (opcode == 0x0ff)
1640 /* Convert "call/jmp *foo@GOT[(%reg)]". */
1641 goto convert_branch;
1642 else
1643 /* Convert "mov foo@GOT[(%reg1)], %reg2",
1644 "test %reg1, foo@GOT(%reg2)" and
1645 "binop foo@GOT[(%reg1)], %reg2". */
1646 goto convert_load;
1647 }
1648
1649 /* Undefined weak symbol is only bound locally in executable
1650 and its reference is resolved as 0. */
1651 if (UNDEFINED_WEAK_RESOLVED_TO_ZERO (link_info, TRUE,
1652 elf_i386_hash_entry (h)))
1653 {
1654 if (opcode == 0xff)
1655 {
1656 /* No direct branch to 0 for PIC. */
1657 if (is_pic)
1658 return TRUE;
1659 else
1660 goto convert_branch;
1661 }
1662 else
1663 {
1664 /* We can convert load of address 0 to R_386_32. */
1665 to_reloc_32 = TRUE;
1666 goto convert_load;
1667 }
1668 }
1669
1670 if (opcode == 0xff)
1671 {
1672 /* We have "call/jmp *foo@GOT[(%reg)]". */
1673 if ((h->root.type == bfd_link_hash_defined
1674 || h->root.type == bfd_link_hash_defweak)
1675 && SYMBOL_REFERENCES_LOCAL (link_info, h))
1676 {
1677 /* The function is locally defined. */
1678 convert_branch:
1679 /* Convert R_386_GOT32X to R_386_PC32. */
1680 if (modrm == 0x15 || (modrm & 0xf8) == 0x90)
1681 {
1682 struct elf_i386_link_hash_entry *eh
1683 = (struct elf_i386_link_hash_entry *) h;
1684
1685 /* Convert to "nop call foo". ADDR_PREFIX_OPCODE
1686 is a nop prefix. */
1687 modrm = 0xe8;
1688 /* To support TLS optimization, always use addr32 prefix
1689 for "call *___tls_get_addr@GOT(%reg)". */
1690 if (eh && eh->tls_get_addr == 1)
1691 {
1692 nop = 0x67;
1693 nop_offset = irel->r_offset - 2;
1694 }
1695 else
1696 {
1697 nop = link_info->call_nop_byte;
1698 if (link_info->call_nop_as_suffix)
1699 {
1700 nop_offset = roff + 3;
1701 irel->r_offset -= 1;
1702 }
1703 else
1704 nop_offset = roff - 2;
1705 }
1706 }
1707 else
1708 {
1709 /* Convert to "jmp foo nop". */
1710 modrm = 0xe9;
1711 nop = NOP_OPCODE;
1712 nop_offset = roff + 3;
1713 irel->r_offset -= 1;
1714 }
1715
1716 bfd_put_8 (abfd, nop, contents + nop_offset);
1717 bfd_put_8 (abfd, modrm, contents + irel->r_offset - 1);
1718 /* When converting to PC-relative relocation, we
1719 need to adjust addend by -4. */
1720 bfd_put_32 (abfd, -4, contents + irel->r_offset);
1721 irel->r_info = ELF32_R_INFO (r_symndx, R_386_PC32);
1722
1723 *converted = TRUE;
1724 }
1725 }
1726 else
1727 {
1728 /* We have "mov foo@GOT[(%re1g)], %reg2",
1729 "test %reg1, foo@GOT(%reg2)" and
1730 "binop foo@GOT[(%reg1)], %reg2".
1731
1732 Avoid optimizing _DYNAMIC since ld.so may use its
1733 link-time address. */
1734 if (h == htab->elf.hdynamic)
1735 return TRUE;
1736
1737 /* def_regular is set by an assignment in a linker script in
1738 bfd_elf_record_link_assignment. */
1739 if ((h->def_regular
1740 || h->root.type == bfd_link_hash_defined
1741 || h->root.type == bfd_link_hash_defweak)
1742 && SYMBOL_REFERENCES_LOCAL (link_info, h))
1743 {
1744 convert_load:
1745 if (opcode == 0x8b)
1746 {
1747 if (to_reloc_32)
1748 {
1749 /* Convert "mov foo@GOT[(%reg1)], %reg2" to
1750 "mov $foo, %reg2" with R_386_32. */
1751 r_type = R_386_32;
1752 modrm = 0xc0 | (modrm & 0x38) >> 3;
1753 bfd_put_8 (abfd, modrm, contents + roff - 1);
1754 opcode = 0xc7;
1755 }
1756 else
1757 {
1758 /* Convert "mov foo@GOT(%reg1), %reg2" to
1759 "lea foo@GOTOFF(%reg1), %reg2". */
1760 r_type = R_386_GOTOFF;
1761 opcode = 0x8d;
1762 }
1763 }
1764 else
1765 {
1766 /* Only R_386_32 is supported. */
1767 if (!to_reloc_32)
1768 return TRUE;
1769
1770 if (opcode == 0x85)
1771 {
1772 /* Convert "test %reg1, foo@GOT(%reg2)" to
1773 "test $foo, %reg1". */
1774 modrm = 0xc0 | (modrm & 0x38) >> 3;
1775 opcode = 0xf7;
1776 }
1777 else
1778 {
1779 /* Convert "binop foo@GOT(%reg1), %reg2" to
1780 "binop $foo, %reg2". */
1781 modrm = (0xc0
1782 | (modrm & 0x38) >> 3
1783 | (opcode & 0x3c));
1784 opcode = 0x81;
1785 }
1786 bfd_put_8 (abfd, modrm, contents + roff - 1);
1787 r_type = R_386_32;
1788 }
1789
1790 bfd_put_8 (abfd, opcode, contents + roff - 2);
1791 irel->r_info = ELF32_R_INFO (r_symndx, r_type);
1792
1793 *converted = TRUE;
1794 }
1795 }
1796
1797 return TRUE;
1798 }
1799
1800 /* Rename some of the generic section flags to better document how they
1801 are used here. */
1802 #define need_convert_load sec_flg0
1803 #define check_relocs_failed sec_flg1
1804
1805 /* Look through the relocs for a section during the first phase, and
1806 calculate needed space in the global offset table, procedure linkage
1807 table, and dynamic reloc sections. */
1808
1809 static bfd_boolean
1810 elf_i386_check_relocs (bfd *abfd,
1811 struct bfd_link_info *info,
1812 asection *sec,
1813 const Elf_Internal_Rela *relocs)
1814 {
1815 struct elf_i386_link_hash_table *htab;
1816 Elf_Internal_Shdr *symtab_hdr;
1817 struct elf_link_hash_entry **sym_hashes;
1818 const Elf_Internal_Rela *rel;
1819 const Elf_Internal_Rela *rel_end;
1820 asection *sreloc;
1821 bfd_byte *contents;
1822 bfd_boolean use_plt_got;
1823
1824 if (bfd_link_relocatable (info))
1825 return TRUE;
1826
1827 /* Don't do anything special with non-loaded, non-alloced sections.
1828 In particular, any relocs in such sections should not affect GOT
1829 and PLT reference counting (ie. we don't allow them to create GOT
1830 or PLT entries), there's no possibility or desire to optimize TLS
1831 relocs, and there's not much point in propagating relocs to shared
1832 libs that the dynamic linker won't relocate. */
1833 if ((sec->flags & SEC_ALLOC) == 0)
1834 return TRUE;
1835
1836 BFD_ASSERT (is_i386_elf (abfd));
1837
1838 htab = elf_i386_hash_table (info);
1839 if (htab == NULL)
1840 {
1841 sec->check_relocs_failed = 1;
1842 return FALSE;
1843 }
1844
1845 /* Get the section contents. */
1846 if (elf_section_data (sec)->this_hdr.contents != NULL)
1847 contents = elf_section_data (sec)->this_hdr.contents;
1848 else if (!bfd_malloc_and_get_section (abfd, sec, &contents))
1849 {
1850 sec->check_relocs_failed = 1;
1851 return FALSE;
1852 }
1853
1854 use_plt_got = (!get_elf_i386_backend_data (abfd)->is_vxworks
1855 && (get_elf_i386_backend_data (abfd)
1856 == &elf_i386_arch_bed));
1857
1858 symtab_hdr = &elf_symtab_hdr (abfd);
1859 sym_hashes = elf_sym_hashes (abfd);
1860
1861 sreloc = NULL;
1862
1863 rel_end = relocs + sec->reloc_count;
1864 for (rel = relocs; rel < rel_end; rel++)
1865 {
1866 unsigned int r_type;
1867 unsigned long r_symndx;
1868 struct elf_link_hash_entry *h;
1869 struct elf_i386_link_hash_entry *eh;
1870 Elf_Internal_Sym *isym;
1871 const char *name;
1872 bfd_boolean size_reloc;
1873
1874 r_symndx = ELF32_R_SYM (rel->r_info);
1875 r_type = ELF32_R_TYPE (rel->r_info);
1876
1877 if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr))
1878 {
1879 /* xgettext:c-format */
1880 _bfd_error_handler (_("%B: bad symbol index: %d"),
1881 abfd, r_symndx);
1882 goto error_return;
1883 }
1884
1885 if (r_symndx < symtab_hdr->sh_info)
1886 {
1887 /* A local symbol. */
1888 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
1889 abfd, r_symndx);
1890 if (isym == NULL)
1891 goto error_return;
1892
1893 /* Check relocation against local STT_GNU_IFUNC symbol. */
1894 if (ELF32_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
1895 {
1896 h = elf_i386_get_local_sym_hash (htab, abfd, rel, TRUE);
1897 if (h == NULL)
1898 goto error_return;
1899
1900 /* Fake a STT_GNU_IFUNC symbol. */
1901 h->type = STT_GNU_IFUNC;
1902 h->def_regular = 1;
1903 h->ref_regular = 1;
1904 h->forced_local = 1;
1905 h->root.type = bfd_link_hash_defined;
1906 }
1907 else
1908 h = NULL;
1909 }
1910 else
1911 {
1912 isym = NULL;
1913 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1914 while (h->root.type == bfd_link_hash_indirect
1915 || h->root.type == bfd_link_hash_warning)
1916 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1917 }
1918
1919 eh = (struct elf_i386_link_hash_entry *) h;
1920 if (h != NULL)
1921 {
1922 switch (r_type)
1923 {
1924 default:
1925 break;
1926
1927 case R_386_GOTOFF:
1928 eh->gotoff_ref = 1;
1929 /* Fall through. */
1930 case R_386_32:
1931 case R_386_PC32:
1932 case R_386_PLT32:
1933 case R_386_GOT32:
1934 case R_386_GOT32X:
1935 if (htab->elf.dynobj == NULL)
1936 htab->elf.dynobj = abfd;
1937 /* Create the ifunc sections for static executables. */
1938 if (h->type == STT_GNU_IFUNC
1939 && !_bfd_elf_create_ifunc_sections (htab->elf.dynobj,
1940 info))
1941 goto error_return;
1942 break;
1943 }
1944
1945 /* It is referenced by a non-shared object. */
1946 h->ref_regular = 1;
1947 h->root.non_ir_ref = 1;
1948
1949 if (h->type == STT_GNU_IFUNC)
1950 elf_tdata (info->output_bfd)->has_gnu_symbols
1951 |= elf_gnu_symbol_ifunc;
1952 }
1953
1954 if (! elf_i386_tls_transition (info, abfd, sec, contents,
1955 symtab_hdr, sym_hashes,
1956 &r_type, GOT_UNKNOWN,
1957 rel, rel_end, h, r_symndx, FALSE))
1958 goto error_return;
1959
1960 switch (r_type)
1961 {
1962 case R_386_TLS_LDM:
1963 htab->tls_ldm_got.refcount += 1;
1964 goto create_got;
1965
1966 case R_386_PLT32:
1967 /* This symbol requires a procedure linkage table entry. We
1968 actually build the entry in adjust_dynamic_symbol,
1969 because this might be a case of linking PIC code which is
1970 never referenced by a dynamic object, in which case we
1971 don't need to generate a procedure linkage table entry
1972 after all. */
1973
1974 /* If this is a local symbol, we resolve it directly without
1975 creating a procedure linkage table entry. */
1976 if (h == NULL)
1977 continue;
1978
1979 eh->has_got_reloc = 1;
1980 h->needs_plt = 1;
1981 h->plt.refcount += 1;
1982 break;
1983
1984 case R_386_SIZE32:
1985 size_reloc = TRUE;
1986 goto do_size;
1987
1988 case R_386_TLS_IE_32:
1989 case R_386_TLS_IE:
1990 case R_386_TLS_GOTIE:
1991 if (!bfd_link_executable (info))
1992 info->flags |= DF_STATIC_TLS;
1993 /* Fall through */
1994
1995 case R_386_GOT32:
1996 case R_386_GOT32X:
1997 case R_386_TLS_GD:
1998 case R_386_TLS_GOTDESC:
1999 case R_386_TLS_DESC_CALL:
2000 /* This symbol requires a global offset table entry. */
2001 {
2002 int tls_type, old_tls_type;
2003
2004 switch (r_type)
2005 {
2006 default:
2007 case R_386_GOT32:
2008 case R_386_GOT32X:
2009 tls_type = GOT_NORMAL;
2010 break;
2011 case R_386_TLS_GD: tls_type = GOT_TLS_GD; break;
2012 case R_386_TLS_GOTDESC:
2013 case R_386_TLS_DESC_CALL:
2014 tls_type = GOT_TLS_GDESC; break;
2015 case R_386_TLS_IE_32:
2016 if (ELF32_R_TYPE (rel->r_info) == r_type)
2017 tls_type = GOT_TLS_IE_NEG;
2018 else
2019 /* If this is a GD->IE transition, we may use either of
2020 R_386_TLS_TPOFF and R_386_TLS_TPOFF32. */
2021 tls_type = GOT_TLS_IE;
2022 break;
2023 case R_386_TLS_IE:
2024 case R_386_TLS_GOTIE:
2025 tls_type = GOT_TLS_IE_POS; break;
2026 }
2027
2028 if (h != NULL)
2029 {
2030 h->got.refcount += 1;
2031 old_tls_type = elf_i386_hash_entry(h)->tls_type;
2032 }
2033 else
2034 {
2035 bfd_signed_vma *local_got_refcounts;
2036
2037 /* This is a global offset table entry for a local symbol. */
2038 local_got_refcounts = elf_local_got_refcounts (abfd);
2039 if (local_got_refcounts == NULL)
2040 {
2041 bfd_size_type size;
2042
2043 size = symtab_hdr->sh_info;
2044 size *= (sizeof (bfd_signed_vma)
2045 + sizeof (bfd_vma) + sizeof(char));
2046 local_got_refcounts = (bfd_signed_vma *)
2047 bfd_zalloc (abfd, size);
2048 if (local_got_refcounts == NULL)
2049 goto error_return;
2050 elf_local_got_refcounts (abfd) = local_got_refcounts;
2051 elf_i386_local_tlsdesc_gotent (abfd)
2052 = (bfd_vma *) (local_got_refcounts + symtab_hdr->sh_info);
2053 elf_i386_local_got_tls_type (abfd)
2054 = (char *) (local_got_refcounts + 2 * symtab_hdr->sh_info);
2055 }
2056 local_got_refcounts[r_symndx] += 1;
2057 old_tls_type = elf_i386_local_got_tls_type (abfd) [r_symndx];
2058 }
2059
2060 if ((old_tls_type & GOT_TLS_IE) && (tls_type & GOT_TLS_IE))
2061 tls_type |= old_tls_type;
2062 /* If a TLS symbol is accessed using IE at least once,
2063 there is no point to use dynamic model for it. */
2064 else if (old_tls_type != tls_type && old_tls_type != GOT_UNKNOWN
2065 && (! GOT_TLS_GD_ANY_P (old_tls_type)
2066 || (tls_type & GOT_TLS_IE) == 0))
2067 {
2068 if ((old_tls_type & GOT_TLS_IE) && GOT_TLS_GD_ANY_P (tls_type))
2069 tls_type = old_tls_type;
2070 else if (GOT_TLS_GD_ANY_P (old_tls_type)
2071 && GOT_TLS_GD_ANY_P (tls_type))
2072 tls_type |= old_tls_type;
2073 else
2074 {
2075 if (h)
2076 name = h->root.root.string;
2077 else
2078 name = bfd_elf_sym_name (abfd, symtab_hdr, isym,
2079 NULL);
2080 _bfd_error_handler
2081 /* xgettext:c-format */
2082 (_("%B: `%s' accessed both as normal and "
2083 "thread local symbol"),
2084 abfd, name);
2085 bfd_set_error (bfd_error_bad_value);
2086 goto error_return;
2087 }
2088 }
2089
2090 if (old_tls_type != tls_type)
2091 {
2092 if (h != NULL)
2093 elf_i386_hash_entry (h)->tls_type = tls_type;
2094 else
2095 elf_i386_local_got_tls_type (abfd) [r_symndx] = tls_type;
2096 }
2097 }
2098 /* Fall through */
2099
2100 case R_386_GOTOFF:
2101 case R_386_GOTPC:
2102 create_got:
2103 if (htab->elf.sgot == NULL)
2104 {
2105 if (htab->elf.dynobj == NULL)
2106 htab->elf.dynobj = abfd;
2107 if (!_bfd_elf_create_got_section (htab->elf.dynobj, info))
2108 goto error_return;
2109 }
2110 if (r_type != R_386_TLS_IE)
2111 {
2112 if (eh != NULL)
2113 eh->has_got_reloc = 1;
2114 break;
2115 }
2116 /* Fall through */
2117
2118 case R_386_TLS_LE_32:
2119 case R_386_TLS_LE:
2120 if (eh != NULL)
2121 eh->has_got_reloc = 1;
2122 if (bfd_link_executable (info))
2123 break;
2124 info->flags |= DF_STATIC_TLS;
2125 goto do_relocation;
2126
2127 case R_386_32:
2128 case R_386_PC32:
2129 if (eh != NULL && (sec->flags & SEC_CODE) != 0)
2130 eh->has_non_got_reloc = 1;
2131 do_relocation:
2132 /* We are called after all symbols have been resolved. Only
2133 relocation against STT_GNU_IFUNC symbol must go through
2134 PLT. */
2135 if (h != NULL
2136 && (bfd_link_executable (info)
2137 || h->type == STT_GNU_IFUNC))
2138 {
2139 /* If this reloc is in a read-only section, we might
2140 need a copy reloc. We can't check reliably at this
2141 stage whether the section is read-only, as input
2142 sections have not yet been mapped to output sections.
2143 Tentatively set the flag for now, and correct in
2144 adjust_dynamic_symbol. */
2145 h->non_got_ref = 1;
2146
2147 /* We may need a .plt entry if the symbol is a function
2148 defined in a shared lib or is a STT_GNU_IFUNC function
2149 referenced from the code or read-only section. */
2150 if (!h->def_regular
2151 || (sec->flags & (SEC_CODE | SEC_READONLY)) != 0)
2152 h->plt.refcount += 1;
2153
2154 if (r_type == R_386_PC32)
2155 {
2156 /* Since something like ".long foo - ." may be used
2157 as pointer, make sure that PLT is used if foo is
2158 a function defined in a shared library. */
2159 if ((sec->flags & SEC_CODE) == 0)
2160 h->pointer_equality_needed = 1;
2161 else if (h->type == STT_GNU_IFUNC
2162 && bfd_link_pic (info))
2163 {
2164 if (isym == NULL)
2165 name = h->root.root.string;
2166 else
2167 name = bfd_elf_sym_name (abfd, symtab_hdr, isym,
2168 NULL);
2169 _bfd_error_handler
2170 /* xgettext:c-format */
2171 (_("%B: unsupported non-PIC call to IFUNC `%s'"),
2172 abfd, name);
2173 bfd_set_error (bfd_error_bad_value);
2174 goto error_return;
2175 }
2176 }
2177 else
2178 {
2179 h->pointer_equality_needed = 1;
2180 /* R_386_32 can be resolved at run-time. */
2181 if (r_type == R_386_32
2182 && (sec->flags & SEC_READONLY) == 0)
2183 eh->func_pointer_refcount += 1;
2184 }
2185 }
2186
2187 size_reloc = FALSE;
2188 do_size:
2189 /* If we are creating a shared library, and this is a reloc
2190 against a global symbol, or a non PC relative reloc
2191 against a local symbol, then we need to copy the reloc
2192 into the shared library. However, if we are linking with
2193 -Bsymbolic, we do not need to copy a reloc against a
2194 global symbol which is defined in an object we are
2195 including in the link (i.e., DEF_REGULAR is set). At
2196 this point we have not seen all the input files, so it is
2197 possible that DEF_REGULAR is not set now but will be set
2198 later (it is never cleared). In case of a weak definition,
2199 DEF_REGULAR may be cleared later by a strong definition in
2200 a shared library. We account for that possibility below by
2201 storing information in the relocs_copied field of the hash
2202 table entry. A similar situation occurs when creating
2203 shared libraries and symbol visibility changes render the
2204 symbol local.
2205
2206 If on the other hand, we are creating an executable, we
2207 may need to keep relocations for symbols satisfied by a
2208 dynamic library if we manage to avoid copy relocs for the
2209 symbol.
2210
2211 Generate dynamic pointer relocation against STT_GNU_IFUNC
2212 symbol in the non-code section. */
2213 if ((bfd_link_pic (info)
2214 && (r_type != R_386_PC32
2215 || (h != NULL
2216 && (! (bfd_link_pie (info)
2217 || SYMBOLIC_BIND (info, h))
2218 || h->root.type == bfd_link_hash_defweak
2219 || !h->def_regular))))
2220 || (h != NULL
2221 && h->type == STT_GNU_IFUNC
2222 && r_type == R_386_32
2223 && (sec->flags & SEC_CODE) == 0)
2224 || (ELIMINATE_COPY_RELOCS
2225 && !bfd_link_pic (info)
2226 && h != NULL
2227 && (h->root.type == bfd_link_hash_defweak
2228 || !h->def_regular)))
2229 {
2230 struct elf_dyn_relocs *p;
2231 struct elf_dyn_relocs **head;
2232
2233 /* We must copy these reloc types into the output file.
2234 Create a reloc section in dynobj and make room for
2235 this reloc. */
2236 if (sreloc == NULL)
2237 {
2238 if (htab->elf.dynobj == NULL)
2239 htab->elf.dynobj = abfd;
2240
2241 sreloc = _bfd_elf_make_dynamic_reloc_section
2242 (sec, htab->elf.dynobj, 2, abfd, /*rela?*/ FALSE);
2243
2244 if (sreloc == NULL)
2245 goto error_return;
2246 }
2247
2248 /* If this is a global symbol, we count the number of
2249 relocations we need for this symbol. */
2250 if (h != NULL)
2251 {
2252 head = &eh->dyn_relocs;
2253 }
2254 else
2255 {
2256 /* Track dynamic relocs needed for local syms too.
2257 We really need local syms available to do this
2258 easily. Oh well. */
2259 void **vpp;
2260 asection *s;
2261
2262 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
2263 abfd, r_symndx);
2264 if (isym == NULL)
2265 goto error_return;
2266
2267 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
2268 if (s == NULL)
2269 s = sec;
2270
2271 vpp = &elf_section_data (s)->local_dynrel;
2272 head = (struct elf_dyn_relocs **)vpp;
2273 }
2274
2275 p = *head;
2276 if (p == NULL || p->sec != sec)
2277 {
2278 bfd_size_type amt = sizeof *p;
2279 p = (struct elf_dyn_relocs *) bfd_alloc (htab->elf.dynobj,
2280 amt);
2281 if (p == NULL)
2282 goto error_return;
2283 p->next = *head;
2284 *head = p;
2285 p->sec = sec;
2286 p->count = 0;
2287 p->pc_count = 0;
2288 }
2289
2290 p->count += 1;
2291 /* Count size relocation as PC-relative relocation. */
2292 if (r_type == R_386_PC32 || size_reloc)
2293 p->pc_count += 1;
2294 }
2295 break;
2296
2297 /* This relocation describes the C++ object vtable hierarchy.
2298 Reconstruct it for later use during GC. */
2299 case R_386_GNU_VTINHERIT:
2300 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
2301 goto error_return;
2302 break;
2303
2304 /* This relocation describes which C++ vtable entries are actually
2305 used. Record for later use during GC. */
2306 case R_386_GNU_VTENTRY:
2307 BFD_ASSERT (h != NULL);
2308 if (h != NULL
2309 && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset))
2310 goto error_return;
2311 break;
2312
2313 default:
2314 break;
2315 }
2316
2317 if (use_plt_got
2318 && h != NULL
2319 && h->plt.refcount > 0
2320 && (((info->flags & DF_BIND_NOW) && !h->pointer_equality_needed)
2321 || h->got.refcount > 0)
2322 && htab->plt_got == NULL)
2323 {
2324 /* Create the GOT procedure linkage table. */
2325 unsigned int plt_got_align;
2326 const struct elf_backend_data *bed;
2327
2328 bed = get_elf_backend_data (info->output_bfd);
2329 BFD_ASSERT (sizeof (elf_i386_got_plt_entry) == 8
2330 && (sizeof (elf_i386_got_plt_entry)
2331 == sizeof (elf_i386_pic_got_plt_entry)));
2332 plt_got_align = 3;
2333
2334 if (htab->elf.dynobj == NULL)
2335 htab->elf.dynobj = abfd;
2336 htab->plt_got
2337 = bfd_make_section_anyway_with_flags (htab->elf.dynobj,
2338 ".plt.got",
2339 (bed->dynamic_sec_flags
2340 | SEC_ALLOC
2341 | SEC_CODE
2342 | SEC_LOAD
2343 | SEC_READONLY));
2344 if (htab->plt_got == NULL
2345 || !bfd_set_section_alignment (htab->elf.dynobj,
2346 htab->plt_got,
2347 plt_got_align))
2348 goto error_return;
2349 }
2350
2351 if (r_type == R_386_GOT32X
2352 && (h == NULL || h->type != STT_GNU_IFUNC))
2353 sec->need_convert_load = 1;
2354 }
2355
2356 if (elf_section_data (sec)->this_hdr.contents != contents)
2357 {
2358 if (!info->keep_memory)
2359 free (contents);
2360 else
2361 {
2362 /* Cache the section contents for elf_link_input_bfd. */
2363 elf_section_data (sec)->this_hdr.contents = contents;
2364 }
2365 }
2366
2367 return TRUE;
2368
2369 error_return:
2370 if (elf_section_data (sec)->this_hdr.contents != contents)
2371 free (contents);
2372 sec->check_relocs_failed = 1;
2373 return FALSE;
2374 }
2375
2376 /* Return the section that should be marked against GC for a given
2377 relocation. */
2378
2379 static asection *
2380 elf_i386_gc_mark_hook (asection *sec,
2381 struct bfd_link_info *info,
2382 Elf_Internal_Rela *rel,
2383 struct elf_link_hash_entry *h,
2384 Elf_Internal_Sym *sym)
2385 {
2386 if (h != NULL)
2387 switch (ELF32_R_TYPE (rel->r_info))
2388 {
2389 case R_386_GNU_VTINHERIT:
2390 case R_386_GNU_VTENTRY:
2391 return NULL;
2392 }
2393
2394 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
2395 }
2396
2397 /* Remove undefined weak symbol from the dynamic symbol table if it
2398 is resolved to 0. */
2399
2400 static bfd_boolean
2401 elf_i386_fixup_symbol (struct bfd_link_info *info,
2402 struct elf_link_hash_entry *h)
2403 {
2404 if (h->dynindx != -1
2405 && UNDEFINED_WEAK_RESOLVED_TO_ZERO (info,
2406 elf_i386_hash_entry (h)->has_got_reloc,
2407 elf_i386_hash_entry (h)))
2408 {
2409 h->dynindx = -1;
2410 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
2411 h->dynstr_index);
2412 }
2413 return TRUE;
2414 }
2415
2416 /* Adjust a symbol defined by a dynamic object and referenced by a
2417 regular object. The current definition is in some section of the
2418 dynamic object, but we're not including those sections. We have to
2419 change the definition to something the rest of the link can
2420 understand. */
2421
2422 static bfd_boolean
2423 elf_i386_adjust_dynamic_symbol (struct bfd_link_info *info,
2424 struct elf_link_hash_entry *h)
2425 {
2426 struct elf_i386_link_hash_table *htab;
2427 asection *s, *srel;
2428 struct elf_i386_link_hash_entry *eh;
2429 struct elf_dyn_relocs *p;
2430
2431 /* STT_GNU_IFUNC symbol must go through PLT. */
2432 if (h->type == STT_GNU_IFUNC)
2433 {
2434 /* All local STT_GNU_IFUNC references must be treate as local
2435 calls via local PLT. */
2436 if (h->ref_regular
2437 && SYMBOL_CALLS_LOCAL (info, h))
2438 {
2439 bfd_size_type pc_count = 0, count = 0;
2440 struct elf_dyn_relocs **pp;
2441
2442 eh = (struct elf_i386_link_hash_entry *) h;
2443 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
2444 {
2445 pc_count += p->pc_count;
2446 p->count -= p->pc_count;
2447 p->pc_count = 0;
2448 count += p->count;
2449 if (p->count == 0)
2450 *pp = p->next;
2451 else
2452 pp = &p->next;
2453 }
2454
2455 if (pc_count || count)
2456 {
2457 h->non_got_ref = 1;
2458 if (pc_count)
2459 {
2460 /* Increment PLT reference count only for PC-relative
2461 references. */
2462 h->needs_plt = 1;
2463 if (h->plt.refcount <= 0)
2464 h->plt.refcount = 1;
2465 else
2466 h->plt.refcount += 1;
2467 }
2468 }
2469 }
2470
2471 if (h->plt.refcount <= 0)
2472 {
2473 h->plt.offset = (bfd_vma) -1;
2474 h->needs_plt = 0;
2475 }
2476 return TRUE;
2477 }
2478
2479 /* If this is a function, put it in the procedure linkage table. We
2480 will fill in the contents of the procedure linkage table later,
2481 when we know the address of the .got section. */
2482 if (h->type == STT_FUNC
2483 || h->needs_plt)
2484 {
2485 if (h->plt.refcount <= 0
2486 || SYMBOL_CALLS_LOCAL (info, h)
2487 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2488 && h->root.type == bfd_link_hash_undefweak))
2489 {
2490 /* This case can occur if we saw a PLT32 reloc in an input
2491 file, but the symbol was never referred to by a dynamic
2492 object, or if all references were garbage collected. In
2493 such a case, we don't actually need to build a procedure
2494 linkage table, and we can just do a PC32 reloc instead. */
2495 h->plt.offset = (bfd_vma) -1;
2496 h->needs_plt = 0;
2497 }
2498
2499 return TRUE;
2500 }
2501 else
2502 /* It's possible that we incorrectly decided a .plt reloc was
2503 needed for an R_386_PC32 reloc to a non-function sym in
2504 check_relocs. We can't decide accurately between function and
2505 non-function syms in check-relocs; Objects loaded later in
2506 the link may change h->type. So fix it now. */
2507 h->plt.offset = (bfd_vma) -1;
2508
2509 /* If this is a weak symbol, and there is a real definition, the
2510 processor independent code will have arranged for us to see the
2511 real definition first, and we can just use the same value. */
2512 if (h->u.weakdef != NULL)
2513 {
2514 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
2515 || h->u.weakdef->root.type == bfd_link_hash_defweak);
2516 h->root.u.def.section = h->u.weakdef->root.u.def.section;
2517 h->root.u.def.value = h->u.weakdef->root.u.def.value;
2518 if (ELIMINATE_COPY_RELOCS || info->nocopyreloc)
2519 h->non_got_ref = h->u.weakdef->non_got_ref;
2520 return TRUE;
2521 }
2522
2523 /* This is a reference to a symbol defined by a dynamic object which
2524 is not a function. */
2525
2526 /* If we are creating a shared library, we must presume that the
2527 only references to the symbol are via the global offset table.
2528 For such cases we need not do anything here; the relocations will
2529 be handled correctly by relocate_section. */
2530 if (!bfd_link_executable (info))
2531 return TRUE;
2532
2533 /* If there are no references to this symbol that do not use the
2534 GOT nor R_386_GOTOFF relocation, we don't need to generate a copy
2535 reloc. */
2536 eh = (struct elf_i386_link_hash_entry *) h;
2537 if (!h->non_got_ref && !eh->gotoff_ref)
2538 return TRUE;
2539
2540 /* If -z nocopyreloc was given, we won't generate them either. */
2541 if (info->nocopyreloc)
2542 {
2543 h->non_got_ref = 0;
2544 return TRUE;
2545 }
2546
2547 htab = elf_i386_hash_table (info);
2548 if (htab == NULL)
2549 return FALSE;
2550
2551 /* If there aren't any dynamic relocs in read-only sections nor
2552 R_386_GOTOFF relocation, then we can keep the dynamic relocs and
2553 avoid the copy reloc. This doesn't work on VxWorks, where we can
2554 not have dynamic relocations (other than copy and jump slot
2555 relocations) in an executable. */
2556 if (ELIMINATE_COPY_RELOCS
2557 && !eh->gotoff_ref
2558 && !get_elf_i386_backend_data (info->output_bfd)->is_vxworks)
2559 {
2560 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2561 {
2562 s = p->sec->output_section;
2563 if (s != NULL && (s->flags & SEC_READONLY) != 0)
2564 break;
2565 }
2566
2567 if (p == NULL)
2568 {
2569 h->non_got_ref = 0;
2570 return TRUE;
2571 }
2572 }
2573
2574 /* We must allocate the symbol in our .dynbss section, which will
2575 become part of the .bss section of the executable. There will be
2576 an entry for this symbol in the .dynsym section. The dynamic
2577 object will contain position independent code, so all references
2578 from the dynamic object to this symbol will go through the global
2579 offset table. The dynamic linker will use the .dynsym entry to
2580 determine the address it must put in the global offset table, so
2581 both the dynamic object and the regular object will refer to the
2582 same memory location for the variable. */
2583
2584 /* We must generate a R_386_COPY reloc to tell the dynamic linker to
2585 copy the initial value out of the dynamic object and into the
2586 runtime process image. */
2587 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
2588 {
2589 s = htab->elf.sdynrelro;
2590 srel = htab->elf.sreldynrelro;
2591 }
2592 else
2593 {
2594 s = htab->elf.sdynbss;
2595 srel = htab->elf.srelbss;
2596 }
2597 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
2598 {
2599 srel->size += sizeof (Elf32_External_Rel);
2600 h->needs_copy = 1;
2601 }
2602
2603 return _bfd_elf_adjust_dynamic_copy (info, h, s);
2604 }
2605
2606 /* Allocate space in .plt, .got and associated reloc sections for
2607 dynamic relocs. */
2608
2609 static bfd_boolean
2610 elf_i386_allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
2611 {
2612 struct bfd_link_info *info;
2613 struct elf_i386_link_hash_table *htab;
2614 struct elf_i386_link_hash_entry *eh;
2615 struct elf_dyn_relocs *p;
2616 unsigned plt_entry_size;
2617 bfd_boolean resolved_to_zero;
2618
2619 if (h->root.type == bfd_link_hash_indirect)
2620 return TRUE;
2621
2622 eh = (struct elf_i386_link_hash_entry *) h;
2623
2624 info = (struct bfd_link_info *) inf;
2625 htab = elf_i386_hash_table (info);
2626 if (htab == NULL)
2627 return FALSE;
2628
2629 plt_entry_size = GET_PLT_ENTRY_SIZE (info->output_bfd);
2630
2631 resolved_to_zero = UNDEFINED_WEAK_RESOLVED_TO_ZERO (info,
2632 eh->has_got_reloc,
2633 eh);
2634
2635 /* Clear the reference count of function pointer relocations if
2636 symbol isn't a normal function. */
2637 if (h->type != STT_FUNC)
2638 eh->func_pointer_refcount = 0;
2639
2640 /* We can't use the GOT PLT if pointer equality is needed since
2641 finish_dynamic_symbol won't clear symbol value and the dynamic
2642 linker won't update the GOT slot. We will get into an infinite
2643 loop at run-time. */
2644 if (htab->plt_got != NULL
2645 && h->type != STT_GNU_IFUNC
2646 && !h->pointer_equality_needed
2647 && h->plt.refcount > 0
2648 && h->got.refcount > 0)
2649 {
2650 /* Don't use the regular PLT if there are both GOT and GOTPLT
2651 reloctions. */
2652 h->plt.offset = (bfd_vma) -1;
2653
2654 /* Use the GOT PLT. */
2655 eh->plt_got.refcount = 1;
2656 }
2657
2658 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
2659 here if it is defined and referenced in a non-shared object. */
2660 if (h->type == STT_GNU_IFUNC
2661 && h->def_regular)
2662 return _bfd_elf_allocate_ifunc_dyn_relocs (info, h, &eh->dyn_relocs,
2663 &htab->readonly_dynrelocs_against_ifunc,
2664 plt_entry_size,
2665 plt_entry_size, 4, TRUE);
2666 /* Don't create the PLT entry if there are only function pointer
2667 relocations which can be resolved at run-time. */
2668 else if (htab->elf.dynamic_sections_created
2669 && (h->plt.refcount > eh->func_pointer_refcount
2670 || eh->plt_got.refcount > 0))
2671 {
2672 bfd_boolean use_plt_got;
2673
2674 /* Clear the reference count of function pointer relocations
2675 if PLT is used. */
2676 eh->func_pointer_refcount = 0;
2677
2678 if ((info->flags & DF_BIND_NOW) && !h->pointer_equality_needed)
2679 {
2680 /* Don't use the regular PLT for DF_BIND_NOW. */
2681 h->plt.offset = (bfd_vma) -1;
2682
2683 /* Use the GOT PLT. */
2684 h->got.refcount = 1;
2685 eh->plt_got.refcount = 1;
2686 }
2687
2688 use_plt_got = eh->plt_got.refcount > 0;
2689
2690 /* Make sure this symbol is output as a dynamic symbol.
2691 Undefined weak syms won't yet be marked as dynamic. */
2692 if (h->dynindx == -1
2693 && !h->forced_local
2694 && !resolved_to_zero)
2695 {
2696 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2697 return FALSE;
2698 }
2699
2700 if (bfd_link_pic (info)
2701 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h))
2702 {
2703 asection *s = htab->elf.splt;
2704 asection *got_s = htab->plt_got;
2705
2706 /* If this is the first .plt entry, make room for the special
2707 first entry. The .plt section is used by prelink to undo
2708 prelinking for dynamic relocations. */
2709 if (s->size == 0)
2710 s->size = plt_entry_size;
2711
2712 if (use_plt_got)
2713 eh->plt_got.offset = got_s->size;
2714 else
2715 h->plt.offset = s->size;
2716
2717 /* If this symbol is not defined in a regular file, and we are
2718 not generating a shared library, then set the symbol to this
2719 location in the .plt. This is required to make function
2720 pointers compare as equal between the normal executable and
2721 the shared library. */
2722 if (! bfd_link_pic (info)
2723 && !h->def_regular)
2724 {
2725 if (use_plt_got)
2726 {
2727 /* We need to make a call to the entry of the GOT PLT
2728 instead of regular PLT entry. */
2729 h->root.u.def.section = got_s;
2730 h->root.u.def.value = eh->plt_got.offset;
2731 }
2732 else
2733 {
2734 h->root.u.def.section = s;
2735 h->root.u.def.value = h->plt.offset;
2736 }
2737 }
2738
2739 /* Make room for this entry. */
2740 if (use_plt_got)
2741 got_s->size += sizeof (elf_i386_got_plt_entry);
2742 else
2743 {
2744 s->size += plt_entry_size;
2745
2746 /* We also need to make an entry in the .got.plt section,
2747 which will be placed in the .got section by the linker
2748 script. */
2749 htab->elf.sgotplt->size += 4;
2750
2751 /* There should be no PLT relocation against resolved
2752 undefined weak symbol in executable. */
2753 if (!resolved_to_zero)
2754 {
2755 /* We also need to make an entry in the .rel.plt
2756 section. */
2757 htab->elf.srelplt->size += sizeof (Elf32_External_Rel);
2758 htab->elf.srelplt->reloc_count++;
2759 }
2760 }
2761
2762 if (get_elf_i386_backend_data (info->output_bfd)->is_vxworks
2763 && !bfd_link_pic (info))
2764 {
2765 /* VxWorks has a second set of relocations for each PLT entry
2766 in executables. They go in a separate relocation section,
2767 which is processed by the kernel loader. */
2768
2769 /* There are two relocations for the initial PLT entry: an
2770 R_386_32 relocation for _GLOBAL_OFFSET_TABLE_ + 4 and an
2771 R_386_32 relocation for _GLOBAL_OFFSET_TABLE_ + 8. */
2772
2773 if (h->plt.offset == plt_entry_size)
2774 htab->srelplt2->size += (sizeof (Elf32_External_Rel) * 2);
2775
2776 /* There are two extra relocations for each subsequent PLT entry:
2777 an R_386_32 relocation for the GOT entry, and an R_386_32
2778 relocation for the PLT entry. */
2779
2780 htab->srelplt2->size += (sizeof (Elf32_External_Rel) * 2);
2781 }
2782 }
2783 else
2784 {
2785 eh->plt_got.offset = (bfd_vma) -1;
2786 h->plt.offset = (bfd_vma) -1;
2787 h->needs_plt = 0;
2788 }
2789 }
2790 else
2791 {
2792 eh->plt_got.offset = (bfd_vma) -1;
2793 h->plt.offset = (bfd_vma) -1;
2794 h->needs_plt = 0;
2795 }
2796
2797 eh->tlsdesc_got = (bfd_vma) -1;
2798
2799 /* If R_386_TLS_{IE_32,IE,GOTIE} symbol is now local to the binary,
2800 make it a R_386_TLS_LE_32 requiring no TLS entry. */
2801 if (h->got.refcount > 0
2802 && bfd_link_executable (info)
2803 && h->dynindx == -1
2804 && (elf_i386_hash_entry(h)->tls_type & GOT_TLS_IE))
2805 h->got.offset = (bfd_vma) -1;
2806 else if (h->got.refcount > 0)
2807 {
2808 asection *s;
2809 bfd_boolean dyn;
2810 int tls_type = elf_i386_hash_entry(h)->tls_type;
2811
2812 /* Make sure this symbol is output as a dynamic symbol.
2813 Undefined weak syms won't yet be marked as dynamic. */
2814 if (h->dynindx == -1
2815 && !h->forced_local
2816 && !resolved_to_zero)
2817 {
2818 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2819 return FALSE;
2820 }
2821
2822 s = htab->elf.sgot;
2823 if (GOT_TLS_GDESC_P (tls_type))
2824 {
2825 eh->tlsdesc_got = htab->elf.sgotplt->size
2826 - elf_i386_compute_jump_table_size (htab);
2827 htab->elf.sgotplt->size += 8;
2828 h->got.offset = (bfd_vma) -2;
2829 }
2830 if (! GOT_TLS_GDESC_P (tls_type)
2831 || GOT_TLS_GD_P (tls_type))
2832 {
2833 h->got.offset = s->size;
2834 s->size += 4;
2835 /* R_386_TLS_GD needs 2 consecutive GOT slots. */
2836 if (GOT_TLS_GD_P (tls_type) || tls_type == GOT_TLS_IE_BOTH)
2837 s->size += 4;
2838 }
2839 dyn = htab->elf.dynamic_sections_created;
2840 /* R_386_TLS_IE_32 needs one dynamic relocation,
2841 R_386_TLS_IE resp. R_386_TLS_GOTIE needs one dynamic relocation,
2842 (but if both R_386_TLS_IE_32 and R_386_TLS_IE is present, we
2843 need two), R_386_TLS_GD needs one if local symbol and two if
2844 global. No dynamic relocation against resolved undefined weak
2845 symbol in executable. */
2846 if (tls_type == GOT_TLS_IE_BOTH)
2847 htab->elf.srelgot->size += 2 * sizeof (Elf32_External_Rel);
2848 else if ((GOT_TLS_GD_P (tls_type) && h->dynindx == -1)
2849 || (tls_type & GOT_TLS_IE))
2850 htab->elf.srelgot->size += sizeof (Elf32_External_Rel);
2851 else if (GOT_TLS_GD_P (tls_type))
2852 htab->elf.srelgot->size += 2 * sizeof (Elf32_External_Rel);
2853 else if (! GOT_TLS_GDESC_P (tls_type)
2854 && ((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2855 && !resolved_to_zero)
2856 || h->root.type != bfd_link_hash_undefweak)
2857 && (bfd_link_pic (info)
2858 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h)))
2859 htab->elf.srelgot->size += sizeof (Elf32_External_Rel);
2860 if (GOT_TLS_GDESC_P (tls_type))
2861 htab->elf.srelplt->size += sizeof (Elf32_External_Rel);
2862 }
2863 else
2864 h->got.offset = (bfd_vma) -1;
2865
2866 if (eh->dyn_relocs == NULL)
2867 return TRUE;
2868
2869 /* In the shared -Bsymbolic case, discard space allocated for
2870 dynamic pc-relative relocs against symbols which turn out to be
2871 defined in regular objects. For the normal shared case, discard
2872 space for pc-relative relocs that have become local due to symbol
2873 visibility changes. */
2874
2875 if (bfd_link_pic (info))
2876 {
2877 /* The only reloc that uses pc_count is R_386_PC32, which will
2878 appear on a call or on something like ".long foo - .". We
2879 want calls to protected symbols to resolve directly to the
2880 function rather than going via the plt. If people want
2881 function pointer comparisons to work as expected then they
2882 should avoid writing assembly like ".long foo - .". */
2883 if (SYMBOL_CALLS_LOCAL (info, h))
2884 {
2885 struct elf_dyn_relocs **pp;
2886
2887 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
2888 {
2889 p->count -= p->pc_count;
2890 p->pc_count = 0;
2891 if (p->count == 0)
2892 *pp = p->next;
2893 else
2894 pp = &p->next;
2895 }
2896 }
2897
2898 if (get_elf_i386_backend_data (info->output_bfd)->is_vxworks)
2899 {
2900 struct elf_dyn_relocs **pp;
2901 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
2902 {
2903 if (strcmp (p->sec->output_section->name, ".tls_vars") == 0)
2904 *pp = p->next;
2905 else
2906 pp = &p->next;
2907 }
2908 }
2909
2910 /* Also discard relocs on undefined weak syms with non-default
2911 visibility or in PIE. */
2912 if (eh->dyn_relocs != NULL
2913 && h->root.type == bfd_link_hash_undefweak)
2914 {
2915 /* Undefined weak symbol is never bound locally in shared
2916 library. */
2917 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2918 || resolved_to_zero)
2919 {
2920 if (h->non_got_ref)
2921 {
2922 /* Keep dynamic non-GOT/non-PLT relocation so that we
2923 can branch to 0 without PLT. */
2924 struct elf_dyn_relocs **pp;
2925
2926 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
2927 if (p->pc_count == 0)
2928 *pp = p->next;
2929 else
2930 {
2931 /* Remove non-R_386_PC32 relocation. */
2932 p->count = p->pc_count;
2933 pp = &p->next;
2934 }
2935
2936 if (eh->dyn_relocs != NULL)
2937 {
2938 /* Make sure undefined weak symbols are output
2939 as dynamic symbols in PIEs for dynamic non-GOT
2940 non-PLT reloations. */
2941 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2942 return FALSE;
2943 }
2944 }
2945 else
2946 eh->dyn_relocs = NULL;
2947 }
2948 else if (h->dynindx == -1
2949 && !h->forced_local)
2950 {
2951 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2952 return FALSE;
2953 }
2954 }
2955 }
2956 else if (ELIMINATE_COPY_RELOCS)
2957 {
2958 /* For the non-shared case, discard space for relocs against
2959 symbols which turn out to need copy relocs or are not
2960 dynamic. Keep dynamic relocations for run-time function
2961 pointer initialization. */
2962
2963 if ((!h->non_got_ref
2964 || eh->func_pointer_refcount > 0
2965 || (h->root.type == bfd_link_hash_undefweak
2966 && !resolved_to_zero))
2967 && ((h->def_dynamic
2968 && !h->def_regular)
2969 || (htab->elf.dynamic_sections_created
2970 && (h->root.type == bfd_link_hash_undefweak
2971 || h->root.type == bfd_link_hash_undefined))))
2972 {
2973 /* Make sure this symbol is output as a dynamic symbol.
2974 Undefined weak syms won't yet be marked as dynamic. */
2975 if (h->dynindx == -1
2976 && !h->forced_local
2977 && !resolved_to_zero)
2978 {
2979 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2980 return FALSE;
2981 }
2982
2983 /* If that succeeded, we know we'll be keeping all the
2984 relocs. */
2985 if (h->dynindx != -1)
2986 goto keep;
2987 }
2988
2989 eh->dyn_relocs = NULL;
2990 eh->func_pointer_refcount = 0;
2991
2992 keep: ;
2993 }
2994
2995 /* Finally, allocate space. */
2996 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2997 {
2998 asection *sreloc;
2999
3000 sreloc = elf_section_data (p->sec)->sreloc;
3001
3002 BFD_ASSERT (sreloc != NULL);
3003 sreloc->size += p->count * sizeof (Elf32_External_Rel);
3004 }
3005
3006 return TRUE;
3007 }
3008
3009 /* Allocate space in .plt, .got and associated reloc sections for
3010 local dynamic relocs. */
3011
3012 static bfd_boolean
3013 elf_i386_allocate_local_dynrelocs (void **slot, void *inf)
3014 {
3015 struct elf_link_hash_entry *h
3016 = (struct elf_link_hash_entry *) *slot;
3017
3018 if (h->type != STT_GNU_IFUNC
3019 || !h->def_regular
3020 || !h->ref_regular
3021 || !h->forced_local
3022 || h->root.type != bfd_link_hash_defined)
3023 abort ();
3024
3025 return elf_i386_allocate_dynrelocs (h, inf);
3026 }
3027
3028 /* Find any dynamic relocs that apply to read-only sections. */
3029
3030 static bfd_boolean
3031 elf_i386_readonly_dynrelocs (struct elf_link_hash_entry *h, void *inf)
3032 {
3033 struct elf_i386_link_hash_entry *eh;
3034 struct elf_dyn_relocs *p;
3035
3036 /* Skip local IFUNC symbols. */
3037 if (h->forced_local && h->type == STT_GNU_IFUNC)
3038 return TRUE;
3039
3040 eh = (struct elf_i386_link_hash_entry *) h;
3041 for (p = eh->dyn_relocs; p != NULL; p = p->next)
3042 {
3043 asection *s = p->sec->output_section;
3044
3045 if (s != NULL && (s->flags & SEC_READONLY) != 0)
3046 {
3047 struct bfd_link_info *info = (struct bfd_link_info *) inf;
3048
3049 info->flags |= DF_TEXTREL;
3050
3051 if ((info->warn_shared_textrel && bfd_link_pic (info))
3052 || info->error_textrel)
3053 /* xgettext:c-format */
3054 info->callbacks->einfo (_("%P: %B: warning: relocation against `%s' in readonly section `%A'\n"),
3055 p->sec->owner, h->root.root.string,
3056 p->sec);
3057
3058 /* Not an error, just cut short the traversal. */
3059 return FALSE;
3060 }
3061 }
3062 return TRUE;
3063 }
3064
3065 /* Convert load via the GOT slot to load immediate. */
3066
3067 static bfd_boolean
3068 elf_i386_convert_load (bfd *abfd, asection *sec,
3069 struct bfd_link_info *link_info)
3070 {
3071 struct elf_i386_link_hash_table *htab;
3072 Elf_Internal_Shdr *symtab_hdr;
3073 Elf_Internal_Rela *internal_relocs;
3074 Elf_Internal_Rela *irel, *irelend;
3075 bfd_byte *contents;
3076 bfd_boolean changed;
3077 bfd_signed_vma *local_got_refcounts;
3078
3079 /* Don't even try to convert non-ELF outputs. */
3080 if (!is_elf_hash_table (link_info->hash))
3081 return FALSE;
3082
3083 /* Nothing to do if there is no need or no output. */
3084 if ((sec->flags & (SEC_CODE | SEC_RELOC)) != (SEC_CODE | SEC_RELOC)
3085 || sec->need_convert_load == 0
3086 || bfd_is_abs_section (sec->output_section))
3087 return TRUE;
3088
3089 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
3090
3091 /* Load the relocations for this section. */
3092 internal_relocs = (_bfd_elf_link_read_relocs
3093 (abfd, sec, NULL, (Elf_Internal_Rela *) NULL,
3094 link_info->keep_memory));
3095 if (internal_relocs == NULL)
3096 return FALSE;
3097
3098 changed = FALSE;
3099 htab = elf_i386_hash_table (link_info);
3100 local_got_refcounts = elf_local_got_refcounts (abfd);
3101
3102 /* Get the section contents. */
3103 if (elf_section_data (sec)->this_hdr.contents != NULL)
3104 contents = elf_section_data (sec)->this_hdr.contents;
3105 else
3106 {
3107 if (!bfd_malloc_and_get_section (abfd, sec, &contents))
3108 goto error_return;
3109 }
3110
3111 irelend = internal_relocs + sec->reloc_count;
3112 for (irel = internal_relocs; irel < irelend; irel++)
3113 {
3114 unsigned int r_type = ELF32_R_TYPE (irel->r_info);
3115 unsigned int r_symndx;
3116 struct elf_link_hash_entry *h;
3117 bfd_boolean converted;
3118
3119 /* Don't convert R_386_GOT32 since we can't tell if it is applied
3120 to "mov $foo@GOT, %reg" which isn't a load via GOT. */
3121 if (r_type != R_386_GOT32X)
3122 continue;
3123
3124 r_symndx = ELF32_R_SYM (irel->r_info);
3125 if (r_symndx < symtab_hdr->sh_info)
3126 h = elf_i386_get_local_sym_hash (htab, sec->owner,
3127 (const Elf_Internal_Rela *) irel,
3128 FALSE);
3129 else
3130 {
3131 h = elf_sym_hashes (abfd)[r_symndx - symtab_hdr->sh_info];
3132 while (h->root.type == bfd_link_hash_indirect
3133 || h->root.type == bfd_link_hash_warning)
3134 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3135 }
3136
3137 /* STT_GNU_IFUNC must keep GOT32 relocations. */
3138 if (h != NULL && h->type == STT_GNU_IFUNC)
3139 continue;
3140
3141 converted = FALSE;
3142 if (!elf_i386_convert_load_reloc (abfd, symtab_hdr, contents,
3143 irel, h, &converted, link_info))
3144 goto error_return;
3145
3146 if (converted)
3147 {
3148 changed = converted;
3149 if (h)
3150 {
3151 if (h->got.refcount > 0)
3152 h->got.refcount -= 1;
3153 }
3154 else
3155 {
3156 if (local_got_refcounts != NULL
3157 && local_got_refcounts[r_symndx] > 0)
3158 local_got_refcounts[r_symndx] -= 1;
3159 }
3160 }
3161 }
3162
3163 if (contents != NULL
3164 && elf_section_data (sec)->this_hdr.contents != contents)
3165 {
3166 if (!changed && !link_info->keep_memory)
3167 free (contents);
3168 else
3169 {
3170 /* Cache the section contents for elf_link_input_bfd. */
3171 elf_section_data (sec)->this_hdr.contents = contents;
3172 }
3173 }
3174
3175 if (elf_section_data (sec)->relocs != internal_relocs)
3176 {
3177 if (!changed)
3178 free (internal_relocs);
3179 else
3180 elf_section_data (sec)->relocs = internal_relocs;
3181 }
3182
3183 return TRUE;
3184
3185 error_return:
3186 if (contents != NULL
3187 && elf_section_data (sec)->this_hdr.contents != contents)
3188 free (contents);
3189 if (internal_relocs != NULL
3190 && elf_section_data (sec)->relocs != internal_relocs)
3191 free (internal_relocs);
3192 return FALSE;
3193 }
3194
3195 /* Set the sizes of the dynamic sections. */
3196
3197 static bfd_boolean
3198 elf_i386_size_dynamic_sections (bfd *output_bfd, struct bfd_link_info *info)
3199 {
3200 struct elf_i386_link_hash_table *htab;
3201 bfd *dynobj;
3202 asection *s;
3203 bfd_boolean relocs;
3204 bfd *ibfd;
3205
3206 htab = elf_i386_hash_table (info);
3207 if (htab == NULL)
3208 return FALSE;
3209 dynobj = htab->elf.dynobj;
3210 if (dynobj == NULL)
3211 abort ();
3212
3213 /* Set up .got offsets for local syms, and space for local dynamic
3214 relocs. */
3215 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
3216 {
3217 bfd_signed_vma *local_got;
3218 bfd_signed_vma *end_local_got;
3219 char *local_tls_type;
3220 bfd_vma *local_tlsdesc_gotent;
3221 bfd_size_type locsymcount;
3222 Elf_Internal_Shdr *symtab_hdr;
3223 asection *srel;
3224
3225 if (! is_i386_elf (ibfd))
3226 continue;
3227
3228 for (s = ibfd->sections; s != NULL; s = s->next)
3229 {
3230 struct elf_dyn_relocs *p;
3231
3232 if (!elf_i386_convert_load (ibfd, s, info))
3233 return FALSE;
3234
3235 for (p = ((struct elf_dyn_relocs *)
3236 elf_section_data (s)->local_dynrel);
3237 p != NULL;
3238 p = p->next)
3239 {
3240 if (!bfd_is_abs_section (p->sec)
3241 && bfd_is_abs_section (p->sec->output_section))
3242 {
3243 /* Input section has been discarded, either because
3244 it is a copy of a linkonce section or due to
3245 linker script /DISCARD/, so we'll be discarding
3246 the relocs too. */
3247 }
3248 else if (get_elf_i386_backend_data (output_bfd)->is_vxworks
3249 && strcmp (p->sec->output_section->name,
3250 ".tls_vars") == 0)
3251 {
3252 /* Relocations in vxworks .tls_vars sections are
3253 handled specially by the loader. */
3254 }
3255 else if (p->count != 0)
3256 {
3257 srel = elf_section_data (p->sec)->sreloc;
3258 srel->size += p->count * sizeof (Elf32_External_Rel);
3259 if ((p->sec->output_section->flags & SEC_READONLY) != 0
3260 && (info->flags & DF_TEXTREL) == 0)
3261 {
3262 info->flags |= DF_TEXTREL;
3263 if ((info->warn_shared_textrel && bfd_link_pic (info))
3264 || info->error_textrel)
3265 /* xgettext:c-format */
3266 info->callbacks->einfo (_("%P: %B: warning: relocation in readonly section `%A'\n"),
3267 p->sec->owner, p->sec);
3268 }
3269 }
3270 }
3271 }
3272
3273 local_got = elf_local_got_refcounts (ibfd);
3274 if (!local_got)
3275 continue;
3276
3277 symtab_hdr = &elf_symtab_hdr (ibfd);
3278 locsymcount = symtab_hdr->sh_info;
3279 end_local_got = local_got + locsymcount;
3280 local_tls_type = elf_i386_local_got_tls_type (ibfd);
3281 local_tlsdesc_gotent = elf_i386_local_tlsdesc_gotent (ibfd);
3282 s = htab->elf.sgot;
3283 srel = htab->elf.srelgot;
3284 for (; local_got < end_local_got;
3285 ++local_got, ++local_tls_type, ++local_tlsdesc_gotent)
3286 {
3287 *local_tlsdesc_gotent = (bfd_vma) -1;
3288 if (*local_got > 0)
3289 {
3290 if (GOT_TLS_GDESC_P (*local_tls_type))
3291 {
3292 *local_tlsdesc_gotent = htab->elf.sgotplt->size
3293 - elf_i386_compute_jump_table_size (htab);
3294 htab->elf.sgotplt->size += 8;
3295 *local_got = (bfd_vma) -2;
3296 }
3297 if (! GOT_TLS_GDESC_P (*local_tls_type)
3298 || GOT_TLS_GD_P (*local_tls_type))
3299 {
3300 *local_got = s->size;
3301 s->size += 4;
3302 if (GOT_TLS_GD_P (*local_tls_type)
3303 || *local_tls_type == GOT_TLS_IE_BOTH)
3304 s->size += 4;
3305 }
3306 if (bfd_link_pic (info)
3307 || GOT_TLS_GD_ANY_P (*local_tls_type)
3308 || (*local_tls_type & GOT_TLS_IE))
3309 {
3310 if (*local_tls_type == GOT_TLS_IE_BOTH)
3311 srel->size += 2 * sizeof (Elf32_External_Rel);
3312 else if (GOT_TLS_GD_P (*local_tls_type)
3313 || ! GOT_TLS_GDESC_P (*local_tls_type))
3314 srel->size += sizeof (Elf32_External_Rel);
3315 if (GOT_TLS_GDESC_P (*local_tls_type))
3316 htab->elf.srelplt->size += sizeof (Elf32_External_Rel);
3317 }
3318 }
3319 else
3320 *local_got = (bfd_vma) -1;
3321 }
3322 }
3323
3324 if (htab->tls_ldm_got.refcount > 0)
3325 {
3326 /* Allocate 2 got entries and 1 dynamic reloc for R_386_TLS_LDM
3327 relocs. */
3328 htab->tls_ldm_got.offset = htab->elf.sgot->size;
3329 htab->elf.sgot->size += 8;
3330 htab->elf.srelgot->size += sizeof (Elf32_External_Rel);
3331 }
3332 else
3333 htab->tls_ldm_got.offset = -1;
3334
3335 /* Allocate global sym .plt and .got entries, and space for global
3336 sym dynamic relocs. */
3337 elf_link_hash_traverse (&htab->elf, elf_i386_allocate_dynrelocs, info);
3338
3339 /* Allocate .plt and .got entries, and space for local symbols. */
3340 htab_traverse (htab->loc_hash_table,
3341 elf_i386_allocate_local_dynrelocs,
3342 info);
3343
3344 /* For every jump slot reserved in the sgotplt, reloc_count is
3345 incremented. However, when we reserve space for TLS descriptors,
3346 it's not incremented, so in order to compute the space reserved
3347 for them, it suffices to multiply the reloc count by the jump
3348 slot size.
3349
3350 PR ld/13302: We start next_irelative_index at the end of .rela.plt
3351 so that R_386_IRELATIVE entries come last. */
3352 if (htab->elf.srelplt)
3353 {
3354 htab->next_tls_desc_index = htab->elf.srelplt->reloc_count;
3355 htab->sgotplt_jump_table_size = htab->next_tls_desc_index * 4;
3356 htab->next_irelative_index = htab->elf.srelplt->reloc_count - 1;
3357 }
3358 else if (htab->elf.irelplt)
3359 htab->next_irelative_index = htab->elf.irelplt->reloc_count - 1;
3360
3361
3362 if (htab->elf.sgotplt)
3363 {
3364 /* Don't allocate .got.plt section if there are no GOT nor PLT
3365 entries and there is no reference to _GLOBAL_OFFSET_TABLE_. */
3366 if ((htab->elf.hgot == NULL
3367 || !htab->elf.hgot->ref_regular_nonweak)
3368 && (htab->elf.sgotplt->size
3369 == get_elf_backend_data (output_bfd)->got_header_size)
3370 && (htab->elf.splt == NULL
3371 || htab->elf.splt->size == 0)
3372 && (htab->elf.sgot == NULL
3373 || htab->elf.sgot->size == 0)
3374 && (htab->elf.iplt == NULL
3375 || htab->elf.iplt->size == 0)
3376 && (htab->elf.igotplt == NULL
3377 || htab->elf.igotplt->size == 0))
3378 htab->elf.sgotplt->size = 0;
3379 }
3380
3381
3382 if (htab->plt_eh_frame != NULL
3383 && htab->elf.splt != NULL
3384 && htab->elf.splt->size != 0
3385 && !bfd_is_abs_section (htab->elf.splt->output_section)
3386 && _bfd_elf_eh_frame_present (info))
3387 htab->plt_eh_frame->size = sizeof (elf_i386_eh_frame_plt);
3388
3389 /* We now have determined the sizes of the various dynamic sections.
3390 Allocate memory for them. */
3391 relocs = FALSE;
3392 for (s = dynobj->sections; s != NULL; s = s->next)
3393 {
3394 bfd_boolean strip_section = TRUE;
3395
3396 if ((s->flags & SEC_LINKER_CREATED) == 0)
3397 continue;
3398
3399 if (s == htab->elf.splt
3400 || s == htab->elf.sgot)
3401 {
3402 /* Strip this section if we don't need it; see the
3403 comment below. */
3404 /* We'd like to strip these sections if they aren't needed, but if
3405 we've exported dynamic symbols from them we must leave them.
3406 It's too late to tell BFD to get rid of the symbols. */
3407
3408 if (htab->elf.hplt != NULL)
3409 strip_section = FALSE;
3410 }
3411 else if (s == htab->elf.sgotplt
3412 || s == htab->elf.iplt
3413 || s == htab->elf.igotplt
3414 || s == htab->plt_got
3415 || s == htab->plt_eh_frame
3416 || s == htab->elf.sdynbss
3417 || s == htab->elf.sdynrelro)
3418 {
3419 /* Strip these too. */
3420 }
3421 else if (CONST_STRNEQ (bfd_get_section_name (dynobj, s), ".rel"))
3422 {
3423 if (s->size != 0
3424 && s != htab->elf.srelplt
3425 && s != htab->srelplt2)
3426 relocs = TRUE;
3427
3428 /* We use the reloc_count field as a counter if we need
3429 to copy relocs into the output file. */
3430 s->reloc_count = 0;
3431 }
3432 else
3433 {
3434 /* It's not one of our sections, so don't allocate space. */
3435 continue;
3436 }
3437
3438 if (s->size == 0)
3439 {
3440 /* If we don't need this section, strip it from the
3441 output file. This is mostly to handle .rel.bss and
3442 .rel.plt. We must create both sections in
3443 create_dynamic_sections, because they must be created
3444 before the linker maps input sections to output
3445 sections. The linker does that before
3446 adjust_dynamic_symbol is called, and it is that
3447 function which decides whether anything needs to go
3448 into these sections. */
3449 if (strip_section)
3450 s->flags |= SEC_EXCLUDE;
3451 continue;
3452 }
3453
3454 if ((s->flags & SEC_HAS_CONTENTS) == 0)
3455 continue;
3456
3457 /* Allocate memory for the section contents. We use bfd_zalloc
3458 here in case unused entries are not reclaimed before the
3459 section's contents are written out. This should not happen,
3460 but this way if it does, we get a R_386_NONE reloc instead
3461 of garbage. */
3462 s->contents = (unsigned char *) bfd_zalloc (dynobj, s->size);
3463 if (s->contents == NULL)
3464 return FALSE;
3465 }
3466
3467 if (htab->plt_eh_frame != NULL
3468 && htab->plt_eh_frame->contents != NULL)
3469 {
3470 memcpy (htab->plt_eh_frame->contents, elf_i386_eh_frame_plt,
3471 sizeof (elf_i386_eh_frame_plt));
3472 bfd_put_32 (dynobj, htab->elf.splt->size,
3473 htab->plt_eh_frame->contents + PLT_FDE_LEN_OFFSET);
3474 }
3475
3476 if (htab->elf.dynamic_sections_created)
3477 {
3478 /* Add some entries to the .dynamic section. We fill in the
3479 values later, in elf_i386_finish_dynamic_sections, but we
3480 must add the entries now so that we get the correct size for
3481 the .dynamic section. The DT_DEBUG entry is filled in by the
3482 dynamic linker and used by the debugger. */
3483 #define add_dynamic_entry(TAG, VAL) \
3484 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
3485
3486 if (bfd_link_executable (info))
3487 {
3488 if (!add_dynamic_entry (DT_DEBUG, 0))
3489 return FALSE;
3490 }
3491
3492 if (htab->elf.splt->size != 0)
3493 {
3494 /* DT_PLTGOT is used by prelink even if there is no PLT
3495 relocation. */
3496 if (!add_dynamic_entry (DT_PLTGOT, 0))
3497 return FALSE;
3498
3499 if (htab->elf.srelplt->size != 0)
3500 {
3501 if (!add_dynamic_entry (DT_PLTRELSZ, 0)
3502 || !add_dynamic_entry (DT_PLTREL, DT_REL)
3503 || !add_dynamic_entry (DT_JMPREL, 0))
3504 return FALSE;
3505 }
3506 }
3507
3508 if (relocs)
3509 {
3510 if (!add_dynamic_entry (DT_REL, 0)
3511 || !add_dynamic_entry (DT_RELSZ, 0)
3512 || !add_dynamic_entry (DT_RELENT, sizeof (Elf32_External_Rel)))
3513 return FALSE;
3514
3515 /* If any dynamic relocs apply to a read-only section,
3516 then we need a DT_TEXTREL entry. */
3517 if ((info->flags & DF_TEXTREL) == 0)
3518 elf_link_hash_traverse (&htab->elf,
3519 elf_i386_readonly_dynrelocs, info);
3520
3521 if ((info->flags & DF_TEXTREL) != 0)
3522 {
3523 if (htab->readonly_dynrelocs_against_ifunc)
3524 {
3525 info->callbacks->einfo
3526 (_("%P%X: read-only segment has dynamic IFUNC relocations; recompile with -fPIC\n"));
3527 bfd_set_error (bfd_error_bad_value);
3528 return FALSE;
3529 }
3530
3531 if (!add_dynamic_entry (DT_TEXTREL, 0))
3532 return FALSE;
3533 }
3534 }
3535 if (get_elf_i386_backend_data (output_bfd)->is_vxworks
3536 && !elf_vxworks_add_dynamic_entries (output_bfd, info))
3537 return FALSE;
3538 }
3539 #undef add_dynamic_entry
3540
3541 return TRUE;
3542 }
3543
3544 static bfd_boolean
3545 elf_i386_always_size_sections (bfd *output_bfd,
3546 struct bfd_link_info *info)
3547 {
3548 asection *tls_sec = elf_hash_table (info)->tls_sec;
3549
3550 if (tls_sec)
3551 {
3552 struct elf_link_hash_entry *tlsbase;
3553
3554 tlsbase = elf_link_hash_lookup (elf_hash_table (info),
3555 "_TLS_MODULE_BASE_",
3556 FALSE, FALSE, FALSE);
3557
3558 if (tlsbase && tlsbase->type == STT_TLS)
3559 {
3560 struct elf_i386_link_hash_table *htab;
3561 struct bfd_link_hash_entry *bh = NULL;
3562 const struct elf_backend_data *bed
3563 = get_elf_backend_data (output_bfd);
3564
3565 htab = elf_i386_hash_table (info);
3566 if (htab == NULL)
3567 return FALSE;
3568
3569 if (!(_bfd_generic_link_add_one_symbol
3570 (info, output_bfd, "_TLS_MODULE_BASE_", BSF_LOCAL,
3571 tls_sec, 0, NULL, FALSE,
3572 bed->collect, &bh)))
3573 return FALSE;
3574
3575 htab->tls_module_base = bh;
3576
3577 tlsbase = (struct elf_link_hash_entry *)bh;
3578 tlsbase->def_regular = 1;
3579 tlsbase->other = STV_HIDDEN;
3580 tlsbase->root.linker_def = 1;
3581 (*bed->elf_backend_hide_symbol) (info, tlsbase, TRUE);
3582 }
3583 }
3584
3585 return TRUE;
3586 }
3587
3588 /* Set the correct type for an x86 ELF section. We do this by the
3589 section name, which is a hack, but ought to work. */
3590
3591 static bfd_boolean
3592 elf_i386_fake_sections (bfd *abfd ATTRIBUTE_UNUSED,
3593 Elf_Internal_Shdr *hdr,
3594 asection *sec)
3595 {
3596 const char *name;
3597
3598 name = bfd_get_section_name (abfd, sec);
3599
3600 /* This is an ugly, but unfortunately necessary hack that is
3601 needed when producing EFI binaries on x86. It tells
3602 elf.c:elf_fake_sections() not to consider ".reloc" as a section
3603 containing ELF relocation info. We need this hack in order to
3604 be able to generate ELF binaries that can be translated into
3605 EFI applications (which are essentially COFF objects). Those
3606 files contain a COFF ".reloc" section inside an ELFNN object,
3607 which would normally cause BFD to segfault because it would
3608 attempt to interpret this section as containing relocation
3609 entries for section "oc". With this hack enabled, ".reloc"
3610 will be treated as a normal data section, which will avoid the
3611 segfault. However, you won't be able to create an ELFNN binary
3612 with a section named "oc" that needs relocations, but that's
3613 the kind of ugly side-effects you get when detecting section
3614 types based on their names... In practice, this limitation is
3615 unlikely to bite. */
3616 if (strcmp (name, ".reloc") == 0)
3617 hdr->sh_type = SHT_PROGBITS;
3618
3619 return TRUE;
3620 }
3621
3622 /* _TLS_MODULE_BASE_ needs to be treated especially when linking
3623 executables. Rather than setting it to the beginning of the TLS
3624 section, we have to set it to the end. This function may be called
3625 multiple times, it is idempotent. */
3626
3627 static void
3628 elf_i386_set_tls_module_base (struct bfd_link_info *info)
3629 {
3630 struct elf_i386_link_hash_table *htab;
3631 struct bfd_link_hash_entry *base;
3632
3633 if (!bfd_link_executable (info))
3634 return;
3635
3636 htab = elf_i386_hash_table (info);
3637 if (htab == NULL)
3638 return;
3639
3640 base = htab->tls_module_base;
3641 if (base == NULL)
3642 return;
3643
3644 base->u.def.value = htab->elf.tls_size;
3645 }
3646
3647 /* Return the base VMA address which should be subtracted from real addresses
3648 when resolving @dtpoff relocation.
3649 This is PT_TLS segment p_vaddr. */
3650
3651 static bfd_vma
3652 elf_i386_dtpoff_base (struct bfd_link_info *info)
3653 {
3654 /* If tls_sec is NULL, we should have signalled an error already. */
3655 if (elf_hash_table (info)->tls_sec == NULL)
3656 return 0;
3657 return elf_hash_table (info)->tls_sec->vma;
3658 }
3659
3660 /* Return the relocation value for @tpoff relocation
3661 if STT_TLS virtual address is ADDRESS. */
3662
3663 static bfd_vma
3664 elf_i386_tpoff (struct bfd_link_info *info, bfd_vma address)
3665 {
3666 struct elf_link_hash_table *htab = elf_hash_table (info);
3667 const struct elf_backend_data *bed = get_elf_backend_data (info->output_bfd);
3668 bfd_vma static_tls_size;
3669
3670 /* If tls_sec is NULL, we should have signalled an error already. */
3671 if (htab->tls_sec == NULL)
3672 return 0;
3673
3674 /* Consider special static TLS alignment requirements. */
3675 static_tls_size = BFD_ALIGN (htab->tls_size, bed->static_tls_alignment);
3676 return static_tls_size + htab->tls_sec->vma - address;
3677 }
3678
3679 /* Relocate an i386 ELF section. */
3680
3681 static bfd_boolean
3682 elf_i386_relocate_section (bfd *output_bfd,
3683 struct bfd_link_info *info,
3684 bfd *input_bfd,
3685 asection *input_section,
3686 bfd_byte *contents,
3687 Elf_Internal_Rela *relocs,
3688 Elf_Internal_Sym *local_syms,
3689 asection **local_sections)
3690 {
3691 struct elf_i386_link_hash_table *htab;
3692 Elf_Internal_Shdr *symtab_hdr;
3693 struct elf_link_hash_entry **sym_hashes;
3694 bfd_vma *local_got_offsets;
3695 bfd_vma *local_tlsdesc_gotents;
3696 Elf_Internal_Rela *rel;
3697 Elf_Internal_Rela *wrel;
3698 Elf_Internal_Rela *relend;
3699 bfd_boolean is_vxworks_tls;
3700 unsigned plt_entry_size;
3701
3702 BFD_ASSERT (is_i386_elf (input_bfd));
3703
3704 /* Skip if check_relocs failed. */
3705 if (input_section->check_relocs_failed)
3706 return FALSE;
3707
3708 htab = elf_i386_hash_table (info);
3709 if (htab == NULL)
3710 return FALSE;
3711 symtab_hdr = &elf_symtab_hdr (input_bfd);
3712 sym_hashes = elf_sym_hashes (input_bfd);
3713 local_got_offsets = elf_local_got_offsets (input_bfd);
3714 local_tlsdesc_gotents = elf_i386_local_tlsdesc_gotent (input_bfd);
3715 /* We have to handle relocations in vxworks .tls_vars sections
3716 specially, because the dynamic loader is 'weird'. */
3717 is_vxworks_tls = (get_elf_i386_backend_data (output_bfd)->is_vxworks
3718 && bfd_link_pic (info)
3719 && !strcmp (input_section->output_section->name,
3720 ".tls_vars"));
3721
3722 elf_i386_set_tls_module_base (info);
3723
3724 plt_entry_size = GET_PLT_ENTRY_SIZE (output_bfd);
3725
3726 rel = wrel = relocs;
3727 relend = relocs + input_section->reloc_count;
3728 for (; rel < relend; wrel++, rel++)
3729 {
3730 unsigned int r_type;
3731 reloc_howto_type *howto;
3732 unsigned long r_symndx;
3733 struct elf_link_hash_entry *h;
3734 struct elf_i386_link_hash_entry *eh;
3735 Elf_Internal_Sym *sym;
3736 asection *sec;
3737 bfd_vma off, offplt, plt_offset;
3738 bfd_vma relocation;
3739 bfd_boolean unresolved_reloc;
3740 bfd_reloc_status_type r;
3741 unsigned int indx;
3742 int tls_type;
3743 bfd_vma st_size;
3744 asection *resolved_plt;
3745 bfd_boolean resolved_to_zero;
3746
3747 r_type = ELF32_R_TYPE (rel->r_info);
3748 if (r_type == R_386_GNU_VTINHERIT
3749 || r_type == R_386_GNU_VTENTRY)
3750 {
3751 if (wrel != rel)
3752 *wrel = *rel;
3753 continue;
3754 }
3755
3756 if ((indx = r_type) >= R_386_standard
3757 && ((indx = r_type - R_386_ext_offset) - R_386_standard
3758 >= R_386_ext - R_386_standard)
3759 && ((indx = r_type - R_386_tls_offset) - R_386_ext
3760 >= R_386_ext2 - R_386_ext))
3761 {
3762 _bfd_error_handler
3763 /* xgettext:c-format */
3764 (_("%B: unrecognized relocation (0x%x) in section `%A'"),
3765 input_bfd, input_section, r_type);
3766 bfd_set_error (bfd_error_bad_value);
3767 return FALSE;
3768 }
3769 howto = elf_howto_table + indx;
3770
3771 r_symndx = ELF32_R_SYM (rel->r_info);
3772 h = NULL;
3773 sym = NULL;
3774 sec = NULL;
3775 unresolved_reloc = FALSE;
3776 if (r_symndx < symtab_hdr->sh_info)
3777 {
3778 sym = local_syms + r_symndx;
3779 sec = local_sections[r_symndx];
3780 relocation = (sec->output_section->vma
3781 + sec->output_offset
3782 + sym->st_value);
3783 st_size = sym->st_size;
3784
3785 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION
3786 && ((sec->flags & SEC_MERGE) != 0
3787 || (bfd_link_relocatable (info)
3788 && sec->output_offset != 0)))
3789 {
3790 bfd_vma addend;
3791 bfd_byte *where = contents + rel->r_offset;
3792
3793 switch (howto->size)
3794 {
3795 case 0:
3796 addend = bfd_get_8 (input_bfd, where);
3797 if (howto->pc_relative)
3798 {
3799 addend = (addend ^ 0x80) - 0x80;
3800 addend += 1;
3801 }
3802 break;
3803 case 1:
3804 addend = bfd_get_16 (input_bfd, where);
3805 if (howto->pc_relative)
3806 {
3807 addend = (addend ^ 0x8000) - 0x8000;
3808 addend += 2;
3809 }
3810 break;
3811 case 2:
3812 addend = bfd_get_32 (input_bfd, where);
3813 if (howto->pc_relative)
3814 {
3815 addend = (addend ^ 0x80000000) - 0x80000000;
3816 addend += 4;
3817 }
3818 break;
3819 default:
3820 abort ();
3821 }
3822
3823 if (bfd_link_relocatable (info))
3824 addend += sec->output_offset;
3825 else
3826 {
3827 asection *msec = sec;
3828 addend = _bfd_elf_rel_local_sym (output_bfd, sym, &msec,
3829 addend);
3830 addend -= relocation;
3831 addend += msec->output_section->vma + msec->output_offset;
3832 }
3833
3834 switch (howto->size)
3835 {
3836 case 0:
3837 /* FIXME: overflow checks. */
3838 if (howto->pc_relative)
3839 addend -= 1;
3840 bfd_put_8 (input_bfd, addend, where);
3841 break;
3842 case 1:
3843 if (howto->pc_relative)
3844 addend -= 2;
3845 bfd_put_16 (input_bfd, addend, where);
3846 break;
3847 case 2:
3848 if (howto->pc_relative)
3849 addend -= 4;
3850 bfd_put_32 (input_bfd, addend, where);
3851 break;
3852 }
3853 }
3854 else if (!bfd_link_relocatable (info)
3855 && ELF32_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
3856 {
3857 /* Relocate against local STT_GNU_IFUNC symbol. */
3858 h = elf_i386_get_local_sym_hash (htab, input_bfd, rel,
3859 FALSE);
3860 if (h == NULL)
3861 abort ();
3862
3863 /* Set STT_GNU_IFUNC symbol value. */
3864 h->root.u.def.value = sym->st_value;
3865 h->root.u.def.section = sec;
3866 }
3867 }
3868 else
3869 {
3870 bfd_boolean warned ATTRIBUTE_UNUSED;
3871 bfd_boolean ignored ATTRIBUTE_UNUSED;
3872
3873 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
3874 r_symndx, symtab_hdr, sym_hashes,
3875 h, sec, relocation,
3876 unresolved_reloc, warned, ignored);
3877 st_size = h->size;
3878 }
3879
3880 if (sec != NULL && discarded_section (sec))
3881 {
3882 _bfd_clear_contents (howto, input_bfd, input_section,
3883 contents + rel->r_offset);
3884 wrel->r_offset = rel->r_offset;
3885 wrel->r_info = 0;
3886 wrel->r_addend = 0;
3887
3888 /* For ld -r, remove relocations in debug sections against
3889 sections defined in discarded sections. Not done for
3890 eh_frame editing code expects to be present. */
3891 if (bfd_link_relocatable (info)
3892 && (input_section->flags & SEC_DEBUGGING))
3893 wrel--;
3894
3895 continue;
3896 }
3897
3898 if (bfd_link_relocatable (info))
3899 {
3900 if (wrel != rel)
3901 *wrel = *rel;
3902 continue;
3903 }
3904
3905 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle
3906 it here if it is defined in a non-shared object. */
3907 if (h != NULL
3908 && h->type == STT_GNU_IFUNC
3909 && h->def_regular)
3910 {
3911 asection *plt, *gotplt, *base_got;
3912 bfd_vma plt_index;
3913 const char *name;
3914
3915 if ((input_section->flags & SEC_ALLOC) == 0)
3916 {
3917 /* Dynamic relocs are not propagated for SEC_DEBUGGING
3918 sections because such sections are not SEC_ALLOC and
3919 thus ld.so will not process them. */
3920 if ((input_section->flags & SEC_DEBUGGING) != 0)
3921 continue;
3922 abort ();
3923 }
3924
3925 /* STT_GNU_IFUNC symbol must go through PLT. */
3926 if (htab->elf.splt != NULL)
3927 {
3928 plt = htab->elf.splt;
3929 gotplt = htab->elf.sgotplt;
3930 }
3931 else
3932 {
3933 plt = htab->elf.iplt;
3934 gotplt = htab->elf.igotplt;
3935 }
3936
3937 switch (r_type)
3938 {
3939 default:
3940 break;
3941
3942 case R_386_GOT32:
3943 case R_386_GOT32X:
3944 base_got = htab->elf.sgot;
3945 off = h->got.offset;
3946
3947 if (base_got == NULL)
3948 abort ();
3949
3950 if (off == (bfd_vma) -1)
3951 {
3952 /* We can't use h->got.offset here to save state, or
3953 even just remember the offset, as finish_dynamic_symbol
3954 would use that as offset into .got. */
3955
3956 if (h->plt.offset == (bfd_vma) -1)
3957 abort ();
3958
3959 if (htab->elf.splt != NULL)
3960 {
3961 plt_index = h->plt.offset / plt_entry_size - 1;
3962 off = (plt_index + 3) * 4;
3963 base_got = htab->elf.sgotplt;
3964 }
3965 else
3966 {
3967 plt_index = h->plt.offset / plt_entry_size;
3968 off = plt_index * 4;
3969 base_got = htab->elf.igotplt;
3970 }
3971
3972 if (h->dynindx == -1
3973 || h->forced_local
3974 || info->symbolic)
3975 {
3976 /* This references the local defitionion. We must
3977 initialize this entry in the global offset table.
3978 Since the offset must always be a multiple of 8,
3979 we use the least significant bit to record
3980 whether we have initialized it already.
3981
3982 When doing a dynamic link, we create a .rela.got
3983 relocation entry to initialize the value. This
3984 is done in the finish_dynamic_symbol routine. */
3985 if ((off & 1) != 0)
3986 off &= ~1;
3987 else
3988 {
3989 bfd_put_32 (output_bfd, relocation,
3990 base_got->contents + off);
3991 h->got.offset |= 1;
3992 }
3993 }
3994
3995 relocation = off;
3996 }
3997 else
3998 relocation = (base_got->output_section->vma
3999 + base_got->output_offset + off
4000 - gotplt->output_section->vma
4001 - gotplt->output_offset);
4002
4003 if ((*(contents + rel->r_offset - 1) & 0xc7) == 0x5)
4004 {
4005 if (bfd_link_pic (info))
4006 goto disallow_got32;
4007
4008 /* Add the GOT base if there is no base register. */
4009 relocation += (gotplt->output_section->vma
4010 + gotplt->output_offset);
4011 }
4012 else if (htab->elf.splt == NULL)
4013 {
4014 /* Adjust for static executables. */
4015 relocation += gotplt->output_offset;
4016 }
4017
4018 goto do_relocation;
4019 }
4020
4021 if (h->plt.offset == (bfd_vma) -1)
4022 {
4023 /* Handle static pointers of STT_GNU_IFUNC symbols. */
4024 if (r_type == R_386_32
4025 && (input_section->flags & SEC_CODE) == 0)
4026 goto do_ifunc_pointer;
4027 goto bad_ifunc_reloc;
4028 }
4029
4030 relocation = (plt->output_section->vma
4031 + plt->output_offset + h->plt.offset);
4032
4033 switch (r_type)
4034 {
4035 default:
4036 bad_ifunc_reloc:
4037 if (h->root.root.string)
4038 name = h->root.root.string;
4039 else
4040 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
4041 NULL);
4042 _bfd_error_handler
4043 /* xgettext:c-format */
4044 (_("%B: relocation %s against STT_GNU_IFUNC "
4045 "symbol `%s' isn't supported"), input_bfd,
4046 howto->name, name);
4047 bfd_set_error (bfd_error_bad_value);
4048 return FALSE;
4049
4050 case R_386_32:
4051 /* Generate dynamic relcoation only when there is a
4052 non-GOT reference in a shared object. */
4053 if ((bfd_link_pic (info) && h->non_got_ref)
4054 || h->plt.offset == (bfd_vma) -1)
4055 {
4056 Elf_Internal_Rela outrel;
4057 asection *sreloc;
4058 bfd_vma offset;
4059
4060 do_ifunc_pointer:
4061 /* Need a dynamic relocation to get the real function
4062 adddress. */
4063 offset = _bfd_elf_section_offset (output_bfd,
4064 info,
4065 input_section,
4066 rel->r_offset);
4067 if (offset == (bfd_vma) -1
4068 || offset == (bfd_vma) -2)
4069 abort ();
4070
4071 outrel.r_offset = (input_section->output_section->vma
4072 + input_section->output_offset
4073 + offset);
4074
4075 if (h->dynindx == -1
4076 || h->forced_local
4077 || bfd_link_executable (info))
4078 {
4079 /* This symbol is resolved locally. */
4080 outrel.r_info = ELF32_R_INFO (0, R_386_IRELATIVE);
4081 bfd_put_32 (output_bfd,
4082 (h->root.u.def.value
4083 + h->root.u.def.section->output_section->vma
4084 + h->root.u.def.section->output_offset),
4085 contents + offset);
4086 }
4087 else
4088 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
4089
4090 /* Dynamic relocations are stored in
4091 1. .rel.ifunc section in PIC object.
4092 2. .rel.got section in dynamic executable.
4093 3. .rel.iplt section in static executable. */
4094 if (bfd_link_pic (info))
4095 sreloc = htab->elf.irelifunc;
4096 else if (htab->elf.splt != NULL)
4097 sreloc = htab->elf.srelgot;
4098 else
4099 sreloc = htab->elf.irelplt;
4100 elf_append_rel (output_bfd, sreloc, &outrel);
4101
4102 /* If this reloc is against an external symbol, we
4103 do not want to fiddle with the addend. Otherwise,
4104 we need to include the symbol value so that it
4105 becomes an addend for the dynamic reloc. For an
4106 internal symbol, we have updated addend. */
4107 continue;
4108 }
4109 /* FALLTHROUGH */
4110 case R_386_PC32:
4111 case R_386_PLT32:
4112 goto do_relocation;
4113
4114 case R_386_GOTOFF:
4115 relocation -= (gotplt->output_section->vma
4116 + gotplt->output_offset);
4117 goto do_relocation;
4118 }
4119 }
4120
4121 eh = (struct elf_i386_link_hash_entry *) h;
4122 resolved_to_zero = (eh != NULL
4123 && UNDEFINED_WEAK_RESOLVED_TO_ZERO (info,
4124 eh->has_got_reloc,
4125 eh));
4126
4127 switch (r_type)
4128 {
4129 case R_386_GOT32X:
4130 /* Avoid optimizing _DYNAMIC since ld.so may use its
4131 link-time address. */
4132 if (h == htab->elf.hdynamic)
4133 goto r_386_got32;
4134
4135 if (bfd_link_pic (info))
4136 {
4137 /* It is OK to convert mov to lea and convert indirect
4138 branch to direct branch. It is OK to convert adc,
4139 add, and, cmp, or, sbb, sub, test, xor only when PIC
4140 is false. */
4141 unsigned int opcode, addend;
4142 addend = bfd_get_32 (input_bfd, contents + rel->r_offset);
4143 if (addend != 0)
4144 goto r_386_got32;
4145 opcode = bfd_get_8 (input_bfd, contents + rel->r_offset - 2);
4146 if (opcode != 0x8b && opcode != 0xff)
4147 goto r_386_got32;
4148 }
4149
4150 /* Resolve "mov GOT[(%reg)], %reg",
4151 "call/jmp *GOT[(%reg)]", "test %reg, foo@GOT[(%reg)]"
4152 and "binop foo@GOT[(%reg)], %reg". */
4153 if (h == NULL
4154 || (h->plt.offset == (bfd_vma) -1
4155 && h->got.offset == (bfd_vma) -1)
4156 || htab->elf.sgotplt == NULL)
4157 abort ();
4158
4159 offplt = (htab->elf.sgotplt->output_section->vma
4160 + htab->elf.sgotplt->output_offset);
4161
4162 /* It is relative to .got.plt section. */
4163 if (h->got.offset != (bfd_vma) -1)
4164 /* Use GOT entry. Mask off the least significant bit in
4165 GOT offset which may be set by R_386_GOT32 processing
4166 below. */
4167 relocation = (htab->elf.sgot->output_section->vma
4168 + htab->elf.sgot->output_offset
4169 + (h->got.offset & ~1) - offplt);
4170 else
4171 /* Use GOTPLT entry. */
4172 relocation = (h->plt.offset / plt_entry_size - 1 + 3) * 4;
4173
4174 if (!bfd_link_pic (info))
4175 {
4176 /* If not PIC, add the .got.plt section address for
4177 baseless addressing. */
4178 unsigned int modrm;
4179 modrm = bfd_get_8 (input_bfd, contents + rel->r_offset - 1);
4180 if ((modrm & 0xc7) == 0x5)
4181 relocation += offplt;
4182 }
4183
4184 unresolved_reloc = FALSE;
4185 break;
4186
4187 case R_386_GOT32:
4188 r_386_got32:
4189 /* Relocation is to the entry for this symbol in the global
4190 offset table. */
4191 if (htab->elf.sgot == NULL)
4192 abort ();
4193
4194 if (h != NULL)
4195 {
4196 bfd_boolean dyn;
4197
4198 off = h->got.offset;
4199 dyn = htab->elf.dynamic_sections_created;
4200 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
4201 bfd_link_pic (info),
4202 h)
4203 || (bfd_link_pic (info)
4204 && SYMBOL_REFERENCES_LOCAL (info, h))
4205 || (ELF_ST_VISIBILITY (h->other)
4206 && h->root.type == bfd_link_hash_undefweak))
4207 {
4208 /* This is actually a static link, or it is a
4209 -Bsymbolic link and the symbol is defined
4210 locally, or the symbol was forced to be local
4211 because of a version file. We must initialize
4212 this entry in the global offset table. Since the
4213 offset must always be a multiple of 4, we use the
4214 least significant bit to record whether we have
4215 initialized it already.
4216
4217 When doing a dynamic link, we create a .rel.got
4218 relocation entry to initialize the value. This
4219 is done in the finish_dynamic_symbol routine. */
4220 if ((off & 1) != 0)
4221 off &= ~1;
4222 else
4223 {
4224 bfd_put_32 (output_bfd, relocation,
4225 htab->elf.sgot->contents + off);
4226 h->got.offset |= 1;
4227 }
4228 }
4229 else
4230 unresolved_reloc = FALSE;
4231 }
4232 else
4233 {
4234 if (local_got_offsets == NULL)
4235 abort ();
4236
4237 off = local_got_offsets[r_symndx];
4238
4239 /* The offset must always be a multiple of 4. We use
4240 the least significant bit to record whether we have
4241 already generated the necessary reloc. */
4242 if ((off & 1) != 0)
4243 off &= ~1;
4244 else
4245 {
4246 bfd_put_32 (output_bfd, relocation,
4247 htab->elf.sgot->contents + off);
4248
4249 if (bfd_link_pic (info))
4250 {
4251 asection *s;
4252 Elf_Internal_Rela outrel;
4253
4254 s = htab->elf.srelgot;
4255 if (s == NULL)
4256 abort ();
4257
4258 outrel.r_offset = (htab->elf.sgot->output_section->vma
4259 + htab->elf.sgot->output_offset
4260 + off);
4261 outrel.r_info = ELF32_R_INFO (0, R_386_RELATIVE);
4262 elf_append_rel (output_bfd, s, &outrel);
4263 }
4264
4265 local_got_offsets[r_symndx] |= 1;
4266 }
4267 }
4268
4269 if (off >= (bfd_vma) -2)
4270 abort ();
4271
4272 relocation = (htab->elf.sgot->output_section->vma
4273 + htab->elf.sgot->output_offset + off);
4274 if ((*(contents + rel->r_offset - 1) & 0xc7) == 0x5)
4275 {
4276 if (bfd_link_pic (info))
4277 {
4278 /* For PIC, disallow R_386_GOT32 without a base
4279 register since we don't know what the GOT base
4280 is. */
4281 const char *name;
4282
4283 disallow_got32:
4284 if (h == NULL)
4285 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
4286 NULL);
4287 else
4288 name = h->root.root.string;
4289
4290 _bfd_error_handler
4291 /* xgettext:c-format */
4292 (_("%B: direct GOT relocation %s against `%s' without base register can not be used when making a shared object"),
4293 input_bfd, howto->name, name);
4294 bfd_set_error (bfd_error_bad_value);
4295 return FALSE;
4296 }
4297 }
4298 else
4299 {
4300 /* Subtract the .got.plt section address only with a base
4301 register. */
4302 relocation -= (htab->elf.sgotplt->output_section->vma
4303 + htab->elf.sgotplt->output_offset);
4304 }
4305
4306 break;
4307
4308 case R_386_GOTOFF:
4309 /* Relocation is relative to the start of the global offset
4310 table. */
4311
4312 /* Check to make sure it isn't a protected function or data
4313 symbol for shared library since it may not be local when
4314 used as function address or with copy relocation. We also
4315 need to make sure that a symbol is referenced locally. */
4316 if (!bfd_link_executable (info) && h)
4317 {
4318 if (!h->def_regular)
4319 {
4320 const char *v;
4321
4322 switch (ELF_ST_VISIBILITY (h->other))
4323 {
4324 case STV_HIDDEN:
4325 v = _("hidden symbol");
4326 break;
4327 case STV_INTERNAL:
4328 v = _("internal symbol");
4329 break;
4330 case STV_PROTECTED:
4331 v = _("protected symbol");
4332 break;
4333 default:
4334 v = _("symbol");
4335 break;
4336 }
4337
4338 _bfd_error_handler
4339 /* xgettext:c-format */
4340 (_("%B: relocation R_386_GOTOFF against undefined %s `%s' can not be used when making a shared object"),
4341 input_bfd, v, h->root.root.string);
4342 bfd_set_error (bfd_error_bad_value);
4343 return FALSE;
4344 }
4345 else if (!SYMBOL_REFERENCES_LOCAL (info, h)
4346 && (h->type == STT_FUNC
4347 || h->type == STT_OBJECT)
4348 && ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
4349 {
4350 _bfd_error_handler
4351 /* xgettext:c-format */
4352 (_("%B: relocation R_386_GOTOFF against protected %s `%s' can not be used when making a shared object"),
4353 input_bfd,
4354 h->type == STT_FUNC ? "function" : "data",
4355 h->root.root.string);
4356 bfd_set_error (bfd_error_bad_value);
4357 return FALSE;
4358 }
4359 }
4360
4361 /* Note that sgot is not involved in this
4362 calculation. We always want the start of .got.plt. If we
4363 defined _GLOBAL_OFFSET_TABLE_ in a different way, as is
4364 permitted by the ABI, we might have to change this
4365 calculation. */
4366 relocation -= htab->elf.sgotplt->output_section->vma
4367 + htab->elf.sgotplt->output_offset;
4368 break;
4369
4370 case R_386_GOTPC:
4371 /* Use global offset table as symbol value. */
4372 relocation = htab->elf.sgotplt->output_section->vma
4373 + htab->elf.sgotplt->output_offset;
4374 unresolved_reloc = FALSE;
4375 break;
4376
4377 case R_386_PLT32:
4378 /* Relocation is to the entry for this symbol in the
4379 procedure linkage table. */
4380
4381 /* Resolve a PLT32 reloc against a local symbol directly,
4382 without using the procedure linkage table. */
4383 if (h == NULL)
4384 break;
4385
4386 if ((h->plt.offset == (bfd_vma) -1
4387 && eh->plt_got.offset == (bfd_vma) -1)
4388 || htab->elf.splt == NULL)
4389 {
4390 /* We didn't make a PLT entry for this symbol. This
4391 happens when statically linking PIC code, or when
4392 using -Bsymbolic. */
4393 break;
4394 }
4395
4396 if (h->plt.offset != (bfd_vma) -1)
4397 {
4398 resolved_plt = htab->elf.splt;
4399 plt_offset = h->plt.offset;
4400 }
4401 else
4402 {
4403 resolved_plt = htab->plt_got;
4404 plt_offset = eh->plt_got.offset;
4405 }
4406
4407 relocation = (resolved_plt->output_section->vma
4408 + resolved_plt->output_offset
4409 + plt_offset);
4410 unresolved_reloc = FALSE;
4411 break;
4412
4413 case R_386_SIZE32:
4414 /* Set to symbol size. */
4415 relocation = st_size;
4416 /* Fall through. */
4417
4418 case R_386_32:
4419 case R_386_PC32:
4420 if ((input_section->flags & SEC_ALLOC) == 0
4421 || is_vxworks_tls)
4422 break;
4423
4424 /* Copy dynamic function pointer relocations. Don't generate
4425 dynamic relocations against resolved undefined weak symbols
4426 in PIE, except for R_386_PC32. */
4427 if ((bfd_link_pic (info)
4428 && (h == NULL
4429 || ((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
4430 && (!resolved_to_zero
4431 || r_type == R_386_PC32))
4432 || h->root.type != bfd_link_hash_undefweak))
4433 && ((r_type != R_386_PC32 && r_type != R_386_SIZE32)
4434 || !SYMBOL_CALLS_LOCAL (info, h)))
4435 || (ELIMINATE_COPY_RELOCS
4436 && !bfd_link_pic (info)
4437 && h != NULL
4438 && h->dynindx != -1
4439 && (!h->non_got_ref
4440 || eh->func_pointer_refcount > 0
4441 || (h->root.type == bfd_link_hash_undefweak
4442 && !resolved_to_zero))
4443 && ((h->def_dynamic && !h->def_regular)
4444 /* Undefined weak symbol is bound locally when
4445 PIC is false. */
4446 || h->root.type == bfd_link_hash_undefweak)))
4447 {
4448 Elf_Internal_Rela outrel;
4449 bfd_boolean skip, relocate;
4450 asection *sreloc;
4451
4452 /* When generating a shared object, these relocations
4453 are copied into the output file to be resolved at run
4454 time. */
4455
4456 skip = FALSE;
4457 relocate = FALSE;
4458
4459 outrel.r_offset =
4460 _bfd_elf_section_offset (output_bfd, info, input_section,
4461 rel->r_offset);
4462 if (outrel.r_offset == (bfd_vma) -1)
4463 skip = TRUE;
4464 else if (outrel.r_offset == (bfd_vma) -2)
4465 skip = TRUE, relocate = TRUE;
4466 outrel.r_offset += (input_section->output_section->vma
4467 + input_section->output_offset);
4468
4469 if (skip)
4470 memset (&outrel, 0, sizeof outrel);
4471 else if (h != NULL
4472 && h->dynindx != -1
4473 && (r_type == R_386_PC32
4474 || !(bfd_link_executable (info)
4475 || SYMBOLIC_BIND (info, h))
4476 || !h->def_regular))
4477 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
4478 else
4479 {
4480 /* This symbol is local, or marked to become local. */
4481 relocate = TRUE;
4482 outrel.r_info = ELF32_R_INFO (0, R_386_RELATIVE);
4483 }
4484
4485 sreloc = elf_section_data (input_section)->sreloc;
4486
4487 if (sreloc == NULL || sreloc->contents == NULL)
4488 {
4489 r = bfd_reloc_notsupported;
4490 goto check_relocation_error;
4491 }
4492
4493 elf_append_rel (output_bfd, sreloc, &outrel);
4494
4495 /* If this reloc is against an external symbol, we do
4496 not want to fiddle with the addend. Otherwise, we
4497 need to include the symbol value so that it becomes
4498 an addend for the dynamic reloc. */
4499 if (! relocate)
4500 continue;
4501 }
4502 break;
4503
4504 case R_386_TLS_IE:
4505 if (!bfd_link_executable (info))
4506 {
4507 Elf_Internal_Rela outrel;
4508 asection *sreloc;
4509
4510 outrel.r_offset = rel->r_offset
4511 + input_section->output_section->vma
4512 + input_section->output_offset;
4513 outrel.r_info = ELF32_R_INFO (0, R_386_RELATIVE);
4514 sreloc = elf_section_data (input_section)->sreloc;
4515 if (sreloc == NULL)
4516 abort ();
4517 elf_append_rel (output_bfd, sreloc, &outrel);
4518 }
4519 /* Fall through */
4520
4521 case R_386_TLS_GD:
4522 case R_386_TLS_GOTDESC:
4523 case R_386_TLS_DESC_CALL:
4524 case R_386_TLS_IE_32:
4525 case R_386_TLS_GOTIE:
4526 tls_type = GOT_UNKNOWN;
4527 if (h == NULL && local_got_offsets)
4528 tls_type = elf_i386_local_got_tls_type (input_bfd) [r_symndx];
4529 else if (h != NULL)
4530 tls_type = elf_i386_hash_entry(h)->tls_type;
4531 if (tls_type == GOT_TLS_IE)
4532 tls_type = GOT_TLS_IE_NEG;
4533
4534 if (! elf_i386_tls_transition (info, input_bfd,
4535 input_section, contents,
4536 symtab_hdr, sym_hashes,
4537 &r_type, tls_type, rel,
4538 relend, h, r_symndx, TRUE))
4539 return FALSE;
4540
4541 if (r_type == R_386_TLS_LE_32)
4542 {
4543 BFD_ASSERT (! unresolved_reloc);
4544 if (ELF32_R_TYPE (rel->r_info) == R_386_TLS_GD)
4545 {
4546 unsigned int type;
4547 bfd_vma roff;
4548
4549 /* GD->LE transition. */
4550 type = *(contents + rel->r_offset - 2);
4551 if (type == 0x04)
4552 {
4553 /* Change
4554 leal foo@tlsgd(,%ebx,1), %eax
4555 call ___tls_get_addr@PLT
4556 into:
4557 movl %gs:0, %eax
4558 subl $foo@tpoff, %eax
4559 (6 byte form of subl). */
4560 roff = rel->r_offset + 5;
4561 }
4562 else
4563 {
4564 /* Change
4565 leal foo@tlsgd(%ebx), %eax
4566 call ___tls_get_addr@PLT
4567 nop
4568 or
4569 leal foo@tlsgd(%reg), %eax
4570 call *___tls_get_addr@GOT(%reg)
4571 which may be converted to
4572 addr32 call ___tls_get_addr
4573 into:
4574 movl %gs:0, %eax; subl $foo@tpoff, %eax
4575 (6 byte form of subl). */
4576 roff = rel->r_offset + 6;
4577 }
4578 memcpy (contents + roff - 8,
4579 "\x65\xa1\0\0\0\0\x81\xe8\0\0\0", 12);
4580 bfd_put_32 (output_bfd, elf_i386_tpoff (info, relocation),
4581 contents + roff);
4582 /* Skip R_386_PC32, R_386_PLT32 and R_386_GOT32X. */
4583 rel++;
4584 wrel++;
4585 continue;
4586 }
4587 else if (ELF32_R_TYPE (rel->r_info) == R_386_TLS_GOTDESC)
4588 {
4589 /* GDesc -> LE transition.
4590 It's originally something like:
4591 leal x@tlsdesc(%ebx), %eax
4592
4593 leal x@ntpoff, %eax
4594
4595 Registers other than %eax may be set up here. */
4596
4597 unsigned int val;
4598 bfd_vma roff;
4599
4600 roff = rel->r_offset;
4601 val = bfd_get_8 (input_bfd, contents + roff - 1);
4602
4603 /* Now modify the instruction as appropriate. */
4604 /* aoliva FIXME: remove the above and xor the byte
4605 below with 0x86. */
4606 bfd_put_8 (output_bfd, val ^ 0x86,
4607 contents + roff - 1);
4608 bfd_put_32 (output_bfd, -elf_i386_tpoff (info, relocation),
4609 contents + roff);
4610 continue;
4611 }
4612 else if (ELF32_R_TYPE (rel->r_info) == R_386_TLS_DESC_CALL)
4613 {
4614 /* GDesc -> LE transition.
4615 It's originally:
4616 call *(%eax)
4617 Turn it into:
4618 xchg %ax,%ax */
4619
4620 bfd_vma roff;
4621
4622 roff = rel->r_offset;
4623 bfd_put_8 (output_bfd, 0x66, contents + roff);
4624 bfd_put_8 (output_bfd, 0x90, contents + roff + 1);
4625 continue;
4626 }
4627 else if (ELF32_R_TYPE (rel->r_info) == R_386_TLS_IE)
4628 {
4629 unsigned int val;
4630
4631 /* IE->LE transition:
4632 Originally it can be one of:
4633 movl foo, %eax
4634 movl foo, %reg
4635 addl foo, %reg
4636 We change it into:
4637 movl $foo, %eax
4638 movl $foo, %reg
4639 addl $foo, %reg. */
4640 val = bfd_get_8 (input_bfd, contents + rel->r_offset - 1);
4641 if (val == 0xa1)
4642 {
4643 /* movl foo, %eax. */
4644 bfd_put_8 (output_bfd, 0xb8,
4645 contents + rel->r_offset - 1);
4646 }
4647 else
4648 {
4649 unsigned int type;
4650
4651 type = bfd_get_8 (input_bfd,
4652 contents + rel->r_offset - 2);
4653 switch (type)
4654 {
4655 case 0x8b:
4656 /* movl */
4657 bfd_put_8 (output_bfd, 0xc7,
4658 contents + rel->r_offset - 2);
4659 bfd_put_8 (output_bfd,
4660 0xc0 | ((val >> 3) & 7),
4661 contents + rel->r_offset - 1);
4662 break;
4663 case 0x03:
4664 /* addl */
4665 bfd_put_8 (output_bfd, 0x81,
4666 contents + rel->r_offset - 2);
4667 bfd_put_8 (output_bfd,
4668 0xc0 | ((val >> 3) & 7),
4669 contents + rel->r_offset - 1);
4670 break;
4671 default:
4672 BFD_FAIL ();
4673 break;
4674 }
4675 }
4676 bfd_put_32 (output_bfd, -elf_i386_tpoff (info, relocation),
4677 contents + rel->r_offset);
4678 continue;
4679 }
4680 else
4681 {
4682 unsigned int val, type;
4683
4684 /* {IE_32,GOTIE}->LE transition:
4685 Originally it can be one of:
4686 subl foo(%reg1), %reg2
4687 movl foo(%reg1), %reg2
4688 addl foo(%reg1), %reg2
4689 We change it into:
4690 subl $foo, %reg2
4691 movl $foo, %reg2 (6 byte form)
4692 addl $foo, %reg2. */
4693 type = bfd_get_8 (input_bfd, contents + rel->r_offset - 2);
4694 val = bfd_get_8 (input_bfd, contents + rel->r_offset - 1);
4695 if (type == 0x8b)
4696 {
4697 /* movl */
4698 bfd_put_8 (output_bfd, 0xc7,
4699 contents + rel->r_offset - 2);
4700 bfd_put_8 (output_bfd, 0xc0 | ((val >> 3) & 7),
4701 contents + rel->r_offset - 1);
4702 }
4703 else if (type == 0x2b)
4704 {
4705 /* subl */
4706 bfd_put_8 (output_bfd, 0x81,
4707 contents + rel->r_offset - 2);
4708 bfd_put_8 (output_bfd, 0xe8 | ((val >> 3) & 7),
4709 contents + rel->r_offset - 1);
4710 }
4711 else if (type == 0x03)
4712 {
4713 /* addl */
4714 bfd_put_8 (output_bfd, 0x81,
4715 contents + rel->r_offset - 2);
4716 bfd_put_8 (output_bfd, 0xc0 | ((val >> 3) & 7),
4717 contents + rel->r_offset - 1);
4718 }
4719 else
4720 BFD_FAIL ();
4721 if (ELF32_R_TYPE (rel->r_info) == R_386_TLS_GOTIE)
4722 bfd_put_32 (output_bfd, -elf_i386_tpoff (info, relocation),
4723 contents + rel->r_offset);
4724 else
4725 bfd_put_32 (output_bfd, elf_i386_tpoff (info, relocation),
4726 contents + rel->r_offset);
4727 continue;
4728 }
4729 }
4730
4731 if (htab->elf.sgot == NULL)
4732 abort ();
4733
4734 if (h != NULL)
4735 {
4736 off = h->got.offset;
4737 offplt = elf_i386_hash_entry (h)->tlsdesc_got;
4738 }
4739 else
4740 {
4741 if (local_got_offsets == NULL)
4742 abort ();
4743
4744 off = local_got_offsets[r_symndx];
4745 offplt = local_tlsdesc_gotents[r_symndx];
4746 }
4747
4748 if ((off & 1) != 0)
4749 off &= ~1;
4750 else
4751 {
4752 Elf_Internal_Rela outrel;
4753 int dr_type;
4754 asection *sreloc;
4755
4756 if (htab->elf.srelgot == NULL)
4757 abort ();
4758
4759 indx = h && h->dynindx != -1 ? h->dynindx : 0;
4760
4761 if (GOT_TLS_GDESC_P (tls_type))
4762 {
4763 bfd_byte *loc;
4764 outrel.r_info = ELF32_R_INFO (indx, R_386_TLS_DESC);
4765 BFD_ASSERT (htab->sgotplt_jump_table_size + offplt + 8
4766 <= htab->elf.sgotplt->size);
4767 outrel.r_offset = (htab->elf.sgotplt->output_section->vma
4768 + htab->elf.sgotplt->output_offset
4769 + offplt
4770 + htab->sgotplt_jump_table_size);
4771 sreloc = htab->elf.srelplt;
4772 loc = sreloc->contents;
4773 loc += (htab->next_tls_desc_index++
4774 * sizeof (Elf32_External_Rel));
4775 BFD_ASSERT (loc + sizeof (Elf32_External_Rel)
4776 <= sreloc->contents + sreloc->size);
4777 bfd_elf32_swap_reloc_out (output_bfd, &outrel, loc);
4778 if (indx == 0)
4779 {
4780 BFD_ASSERT (! unresolved_reloc);
4781 bfd_put_32 (output_bfd,
4782 relocation - elf_i386_dtpoff_base (info),
4783 htab->elf.sgotplt->contents + offplt
4784 + htab->sgotplt_jump_table_size + 4);
4785 }
4786 else
4787 {
4788 bfd_put_32 (output_bfd, 0,
4789 htab->elf.sgotplt->contents + offplt
4790 + htab->sgotplt_jump_table_size + 4);
4791 }
4792 }
4793
4794 sreloc = htab->elf.srelgot;
4795
4796 outrel.r_offset = (htab->elf.sgot->output_section->vma
4797 + htab->elf.sgot->output_offset + off);
4798
4799 if (GOT_TLS_GD_P (tls_type))
4800 dr_type = R_386_TLS_DTPMOD32;
4801 else if (GOT_TLS_GDESC_P (tls_type))
4802 goto dr_done;
4803 else if (tls_type == GOT_TLS_IE_POS)
4804 dr_type = R_386_TLS_TPOFF;
4805 else
4806 dr_type = R_386_TLS_TPOFF32;
4807
4808 if (dr_type == R_386_TLS_TPOFF && indx == 0)
4809 bfd_put_32 (output_bfd,
4810 relocation - elf_i386_dtpoff_base (info),
4811 htab->elf.sgot->contents + off);
4812 else if (dr_type == R_386_TLS_TPOFF32 && indx == 0)
4813 bfd_put_32 (output_bfd,
4814 elf_i386_dtpoff_base (info) - relocation,
4815 htab->elf.sgot->contents + off);
4816 else if (dr_type != R_386_TLS_DESC)
4817 bfd_put_32 (output_bfd, 0,
4818 htab->elf.sgot->contents + off);
4819 outrel.r_info = ELF32_R_INFO (indx, dr_type);
4820
4821 elf_append_rel (output_bfd, sreloc, &outrel);
4822
4823 if (GOT_TLS_GD_P (tls_type))
4824 {
4825 if (indx == 0)
4826 {
4827 BFD_ASSERT (! unresolved_reloc);
4828 bfd_put_32 (output_bfd,
4829 relocation - elf_i386_dtpoff_base (info),
4830 htab->elf.sgot->contents + off + 4);
4831 }
4832 else
4833 {
4834 bfd_put_32 (output_bfd, 0,
4835 htab->elf.sgot->contents + off + 4);
4836 outrel.r_info = ELF32_R_INFO (indx,
4837 R_386_TLS_DTPOFF32);
4838 outrel.r_offset += 4;
4839 elf_append_rel (output_bfd, sreloc, &outrel);
4840 }
4841 }
4842 else if (tls_type == GOT_TLS_IE_BOTH)
4843 {
4844 bfd_put_32 (output_bfd,
4845 (indx == 0
4846 ? relocation - elf_i386_dtpoff_base (info)
4847 : 0),
4848 htab->elf.sgot->contents + off + 4);
4849 outrel.r_info = ELF32_R_INFO (indx, R_386_TLS_TPOFF);
4850 outrel.r_offset += 4;
4851 elf_append_rel (output_bfd, sreloc, &outrel);
4852 }
4853
4854 dr_done:
4855 if (h != NULL)
4856 h->got.offset |= 1;
4857 else
4858 local_got_offsets[r_symndx] |= 1;
4859 }
4860
4861 if (off >= (bfd_vma) -2
4862 && ! GOT_TLS_GDESC_P (tls_type))
4863 abort ();
4864 if (r_type == R_386_TLS_GOTDESC
4865 || r_type == R_386_TLS_DESC_CALL)
4866 {
4867 relocation = htab->sgotplt_jump_table_size + offplt;
4868 unresolved_reloc = FALSE;
4869 }
4870 else if (r_type == ELF32_R_TYPE (rel->r_info))
4871 {
4872 bfd_vma g_o_t = htab->elf.sgotplt->output_section->vma
4873 + htab->elf.sgotplt->output_offset;
4874 relocation = htab->elf.sgot->output_section->vma
4875 + htab->elf.sgot->output_offset + off - g_o_t;
4876 if ((r_type == R_386_TLS_IE || r_type == R_386_TLS_GOTIE)
4877 && tls_type == GOT_TLS_IE_BOTH)
4878 relocation += 4;
4879 if (r_type == R_386_TLS_IE)
4880 relocation += g_o_t;
4881 unresolved_reloc = FALSE;
4882 }
4883 else if (ELF32_R_TYPE (rel->r_info) == R_386_TLS_GD)
4884 {
4885 unsigned int val, type;
4886 bfd_vma roff;
4887
4888 /* GD->IE transition. */
4889 type = *(contents + rel->r_offset - 2);
4890 val = *(contents + rel->r_offset - 1);
4891 if (type == 0x04)
4892 {
4893 /* Change
4894 leal foo@tlsgd(,%ebx,1), %eax
4895 call ___tls_get_addr@PLT
4896 into:
4897 movl %gs:0, %eax
4898 subl $foo@gottpoff(%ebx), %eax. */
4899 val >>= 3;
4900 roff = rel->r_offset - 3;
4901 }
4902 else
4903 {
4904 /* Change
4905 leal foo@tlsgd(%ebx), %eax
4906 call ___tls_get_addr@PLT
4907 nop
4908 or
4909 leal foo@tlsgd(%reg), %eax
4910 call *___tls_get_addr@GOT(%reg)
4911 which may be converted to
4912 addr32 call ___tls_get_addr
4913 into:
4914 movl %gs:0, %eax;
4915 subl $foo@gottpoff(%reg), %eax. */
4916 roff = rel->r_offset - 2;
4917 }
4918 memcpy (contents + roff,
4919 "\x65\xa1\0\0\0\0\x2b\x80\0\0\0", 12);
4920 contents[roff + 7] = 0x80 | (val & 7);
4921 /* If foo is used only with foo@gotntpoff(%reg) and
4922 foo@indntpoff, but not with foo@gottpoff(%reg), change
4923 subl $foo@gottpoff(%reg), %eax
4924 into:
4925 addl $foo@gotntpoff(%reg), %eax. */
4926 if (tls_type == GOT_TLS_IE_POS)
4927 contents[roff + 6] = 0x03;
4928 bfd_put_32 (output_bfd,
4929 htab->elf.sgot->output_section->vma
4930 + htab->elf.sgot->output_offset + off
4931 - htab->elf.sgotplt->output_section->vma
4932 - htab->elf.sgotplt->output_offset,
4933 contents + roff + 8);
4934 /* Skip R_386_PLT32 and R_386_GOT32X. */
4935 rel++;
4936 wrel++;
4937 continue;
4938 }
4939 else if (ELF32_R_TYPE (rel->r_info) == R_386_TLS_GOTDESC)
4940 {
4941 /* GDesc -> IE transition.
4942 It's originally something like:
4943 leal x@tlsdesc(%ebx), %eax
4944
4945 Change it to:
4946 movl x@gotntpoff(%ebx), %eax # before xchg %ax,%ax
4947 or:
4948 movl x@gottpoff(%ebx), %eax # before negl %eax
4949
4950 Registers other than %eax may be set up here. */
4951
4952 bfd_vma roff;
4953
4954 /* First, make sure it's a leal adding ebx to a 32-bit
4955 offset into any register, although it's probably
4956 almost always going to be eax. */
4957 roff = rel->r_offset;
4958
4959 /* Now modify the instruction as appropriate. */
4960 /* To turn a leal into a movl in the form we use it, it
4961 suffices to change the first byte from 0x8d to 0x8b.
4962 aoliva FIXME: should we decide to keep the leal, all
4963 we have to do is remove the statement below, and
4964 adjust the relaxation of R_386_TLS_DESC_CALL. */
4965 bfd_put_8 (output_bfd, 0x8b, contents + roff - 2);
4966
4967 if (tls_type == GOT_TLS_IE_BOTH)
4968 off += 4;
4969
4970 bfd_put_32 (output_bfd,
4971 htab->elf.sgot->output_section->vma
4972 + htab->elf.sgot->output_offset + off
4973 - htab->elf.sgotplt->output_section->vma
4974 - htab->elf.sgotplt->output_offset,
4975 contents + roff);
4976 continue;
4977 }
4978 else if (ELF32_R_TYPE (rel->r_info) == R_386_TLS_DESC_CALL)
4979 {
4980 /* GDesc -> IE transition.
4981 It's originally:
4982 call *(%eax)
4983
4984 Change it to:
4985 xchg %ax,%ax
4986 or
4987 negl %eax
4988 depending on how we transformed the TLS_GOTDESC above.
4989 */
4990
4991 bfd_vma roff;
4992
4993 roff = rel->r_offset;
4994
4995 /* Now modify the instruction as appropriate. */
4996 if (tls_type != GOT_TLS_IE_NEG)
4997 {
4998 /* xchg %ax,%ax */
4999 bfd_put_8 (output_bfd, 0x66, contents + roff);
5000 bfd_put_8 (output_bfd, 0x90, contents + roff + 1);
5001 }
5002 else
5003 {
5004 /* negl %eax */
5005 bfd_put_8 (output_bfd, 0xf7, contents + roff);
5006 bfd_put_8 (output_bfd, 0xd8, contents + roff + 1);
5007 }
5008
5009 continue;
5010 }
5011 else
5012 BFD_ASSERT (FALSE);
5013 break;
5014
5015 case R_386_TLS_LDM:
5016 if (! elf_i386_tls_transition (info, input_bfd,
5017 input_section, contents,
5018 symtab_hdr, sym_hashes,
5019 &r_type, GOT_UNKNOWN, rel,
5020 relend, h, r_symndx, TRUE))
5021 return FALSE;
5022
5023 if (r_type != R_386_TLS_LDM)
5024 {
5025 /* LD->LE transition. Change
5026 leal foo@tlsldm(%ebx) %eax
5027 call ___tls_get_addr@PLT
5028 into:
5029 movl %gs:0, %eax
5030 nop
5031 leal 0(%esi,1), %esi
5032 or change
5033 leal foo@tlsldm(%reg) %eax
5034 call *___tls_get_addr@GOT(%reg)
5035 which may be converted to
5036 addr32 call ___tls_get_addr
5037 into:
5038 movl %gs:0, %eax
5039 leal 0(%esi), %esi */
5040 BFD_ASSERT (r_type == R_386_TLS_LE_32);
5041 if (*(contents + rel->r_offset + 4) == 0xff
5042 || *(contents + rel->r_offset + 4) == 0x67)
5043 memcpy (contents + rel->r_offset - 2,
5044 "\x65\xa1\0\0\0\0\x8d\xb6\0\0\0", 12);
5045 else
5046 memcpy (contents + rel->r_offset - 2,
5047 "\x65\xa1\0\0\0\0\x90\x8d\x74\x26", 11);
5048 /* Skip R_386_PC32/R_386_PLT32. */
5049 rel++;
5050 wrel++;
5051 continue;
5052 }
5053
5054 if (htab->elf.sgot == NULL)
5055 abort ();
5056
5057 off = htab->tls_ldm_got.offset;
5058 if (off & 1)
5059 off &= ~1;
5060 else
5061 {
5062 Elf_Internal_Rela outrel;
5063
5064 if (htab->elf.srelgot == NULL)
5065 abort ();
5066
5067 outrel.r_offset = (htab->elf.sgot->output_section->vma
5068 + htab->elf.sgot->output_offset + off);
5069
5070 bfd_put_32 (output_bfd, 0,
5071 htab->elf.sgot->contents + off);
5072 bfd_put_32 (output_bfd, 0,
5073 htab->elf.sgot->contents + off + 4);
5074 outrel.r_info = ELF32_R_INFO (0, R_386_TLS_DTPMOD32);
5075 elf_append_rel (output_bfd, htab->elf.srelgot, &outrel);
5076 htab->tls_ldm_got.offset |= 1;
5077 }
5078 relocation = htab->elf.sgot->output_section->vma
5079 + htab->elf.sgot->output_offset + off
5080 - htab->elf.sgotplt->output_section->vma
5081 - htab->elf.sgotplt->output_offset;
5082 unresolved_reloc = FALSE;
5083 break;
5084
5085 case R_386_TLS_LDO_32:
5086 if (!bfd_link_executable (info)
5087 || (input_section->flags & SEC_CODE) == 0)
5088 relocation -= elf_i386_dtpoff_base (info);
5089 else
5090 /* When converting LDO to LE, we must negate. */
5091 relocation = -elf_i386_tpoff (info, relocation);
5092 break;
5093
5094 case R_386_TLS_LE_32:
5095 case R_386_TLS_LE:
5096 if (!bfd_link_executable (info))
5097 {
5098 Elf_Internal_Rela outrel;
5099 asection *sreloc;
5100
5101 outrel.r_offset = rel->r_offset
5102 + input_section->output_section->vma
5103 + input_section->output_offset;
5104 if (h != NULL && h->dynindx != -1)
5105 indx = h->dynindx;
5106 else
5107 indx = 0;
5108 if (r_type == R_386_TLS_LE_32)
5109 outrel.r_info = ELF32_R_INFO (indx, R_386_TLS_TPOFF32);
5110 else
5111 outrel.r_info = ELF32_R_INFO (indx, R_386_TLS_TPOFF);
5112 sreloc = elf_section_data (input_section)->sreloc;
5113 if (sreloc == NULL)
5114 abort ();
5115 elf_append_rel (output_bfd, sreloc, &outrel);
5116 if (indx)
5117 continue;
5118 else if (r_type == R_386_TLS_LE_32)
5119 relocation = elf_i386_dtpoff_base (info) - relocation;
5120 else
5121 relocation -= elf_i386_dtpoff_base (info);
5122 }
5123 else if (r_type == R_386_TLS_LE_32)
5124 relocation = elf_i386_tpoff (info, relocation);
5125 else
5126 relocation = -elf_i386_tpoff (info, relocation);
5127 break;
5128
5129 default:
5130 break;
5131 }
5132
5133 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
5134 because such sections are not SEC_ALLOC and thus ld.so will
5135 not process them. */
5136 if (unresolved_reloc
5137 && !((input_section->flags & SEC_DEBUGGING) != 0
5138 && h->def_dynamic)
5139 && _bfd_elf_section_offset (output_bfd, info, input_section,
5140 rel->r_offset) != (bfd_vma) -1)
5141 {
5142 _bfd_error_handler
5143 /* xgettext:c-format */
5144 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
5145 input_bfd,
5146 input_section,
5147 (long) rel->r_offset,
5148 howto->name,
5149 h->root.root.string);
5150 return FALSE;
5151 }
5152
5153 do_relocation:
5154 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
5155 contents, rel->r_offset,
5156 relocation, 0);
5157
5158 check_relocation_error:
5159 if (r != bfd_reloc_ok)
5160 {
5161 const char *name;
5162
5163 if (h != NULL)
5164 name = h->root.root.string;
5165 else
5166 {
5167 name = bfd_elf_string_from_elf_section (input_bfd,
5168 symtab_hdr->sh_link,
5169 sym->st_name);
5170 if (name == NULL)
5171 return FALSE;
5172 if (*name == '\0')
5173 name = bfd_section_name (input_bfd, sec);
5174 }
5175
5176 if (r == bfd_reloc_overflow)
5177 (*info->callbacks->reloc_overflow)
5178 (info, (h ? &h->root : NULL), name, howto->name,
5179 (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
5180 else
5181 {
5182 _bfd_error_handler
5183 /* xgettext:c-format */
5184 (_("%B(%A+0x%lx): reloc against `%s': error %d"),
5185 input_bfd, input_section,
5186 (long) rel->r_offset, name, (int) r);
5187 return FALSE;
5188 }
5189 }
5190
5191 if (wrel != rel)
5192 *wrel = *rel;
5193 }
5194
5195 if (wrel != rel)
5196 {
5197 Elf_Internal_Shdr *rel_hdr;
5198 size_t deleted = rel - wrel;
5199
5200 rel_hdr = _bfd_elf_single_rel_hdr (input_section->output_section);
5201 rel_hdr->sh_size -= rel_hdr->sh_entsize * deleted;
5202 if (rel_hdr->sh_size == 0)
5203 {
5204 /* It is too late to remove an empty reloc section. Leave
5205 one NONE reloc.
5206 ??? What is wrong with an empty section??? */
5207 rel_hdr->sh_size = rel_hdr->sh_entsize;
5208 deleted -= 1;
5209 }
5210 rel_hdr = _bfd_elf_single_rel_hdr (input_section);
5211 rel_hdr->sh_size -= rel_hdr->sh_entsize * deleted;
5212 input_section->reloc_count -= deleted;
5213 }
5214
5215 return TRUE;
5216 }
5217
5218 /* Finish up dynamic symbol handling. We set the contents of various
5219 dynamic sections here. */
5220
5221 static bfd_boolean
5222 elf_i386_finish_dynamic_symbol (bfd *output_bfd,
5223 struct bfd_link_info *info,
5224 struct elf_link_hash_entry *h,
5225 Elf_Internal_Sym *sym)
5226 {
5227 struct elf_i386_link_hash_table *htab;
5228 unsigned plt_entry_size;
5229 const struct elf_i386_backend_data *abed;
5230 struct elf_i386_link_hash_entry *eh;
5231 bfd_boolean local_undefweak;
5232
5233 htab = elf_i386_hash_table (info);
5234 if (htab == NULL)
5235 return FALSE;
5236
5237 abed = get_elf_i386_backend_data (output_bfd);
5238 plt_entry_size = GET_PLT_ENTRY_SIZE (output_bfd);
5239
5240 eh = (struct elf_i386_link_hash_entry *) h;
5241
5242 /* We keep PLT/GOT entries without dynamic PLT/GOT relocations for
5243 resolved undefined weak symbols in executable so that their
5244 references have value 0 at run-time. */
5245 local_undefweak = UNDEFINED_WEAK_RESOLVED_TO_ZERO (info,
5246 eh->has_got_reloc,
5247 eh);
5248
5249 if (h->plt.offset != (bfd_vma) -1)
5250 {
5251 bfd_vma plt_index;
5252 bfd_vma got_offset;
5253 Elf_Internal_Rela rel;
5254 bfd_byte *loc;
5255 asection *plt, *gotplt, *relplt;
5256
5257 /* When building a static executable, use .iplt, .igot.plt and
5258 .rel.iplt sections for STT_GNU_IFUNC symbols. */
5259 if (htab->elf.splt != NULL)
5260 {
5261 plt = htab->elf.splt;
5262 gotplt = htab->elf.sgotplt;
5263 relplt = htab->elf.srelplt;
5264 }
5265 else
5266 {
5267 plt = htab->elf.iplt;
5268 gotplt = htab->elf.igotplt;
5269 relplt = htab->elf.irelplt;
5270 }
5271
5272 /* This symbol has an entry in the procedure linkage table. Set
5273 it up. */
5274
5275 if ((h->dynindx == -1
5276 && !local_undefweak
5277 && !((h->forced_local || bfd_link_executable (info))
5278 && h->def_regular
5279 && h->type == STT_GNU_IFUNC))
5280 || plt == NULL
5281 || gotplt == NULL
5282 || relplt == NULL)
5283 abort ();
5284
5285 /* Get the index in the procedure linkage table which
5286 corresponds to this symbol. This is the index of this symbol
5287 in all the symbols for which we are making plt entries. The
5288 first entry in the procedure linkage table is reserved.
5289
5290 Get the offset into the .got table of the entry that
5291 corresponds to this function. Each .got entry is 4 bytes.
5292 The first three are reserved.
5293
5294 For static executables, we don't reserve anything. */
5295
5296 if (plt == htab->elf.splt)
5297 {
5298 got_offset = h->plt.offset / plt_entry_size - 1;
5299 got_offset = (got_offset + 3) * 4;
5300 }
5301 else
5302 {
5303 got_offset = h->plt.offset / plt_entry_size;
5304 got_offset = got_offset * 4;
5305 }
5306
5307 /* Fill in the entry in the procedure linkage table. */
5308 if (! bfd_link_pic (info))
5309 {
5310 memcpy (plt->contents + h->plt.offset, abed->plt->plt_entry,
5311 abed->plt->plt_entry_size);
5312 bfd_put_32 (output_bfd,
5313 (gotplt->output_section->vma
5314 + gotplt->output_offset
5315 + got_offset),
5316 plt->contents + h->plt.offset
5317 + abed->plt->plt_got_offset);
5318
5319 if (abed->is_vxworks)
5320 {
5321 int s, k, reloc_index;
5322
5323 /* Create the R_386_32 relocation referencing the GOT
5324 for this PLT entry. */
5325
5326 /* S: Current slot number (zero-based). */
5327 s = ((h->plt.offset - abed->plt->plt_entry_size)
5328 / abed->plt->plt_entry_size);
5329 /* K: Number of relocations for PLTResolve. */
5330 if (bfd_link_pic (info))
5331 k = PLTRESOLVE_RELOCS_SHLIB;
5332 else
5333 k = PLTRESOLVE_RELOCS;
5334 /* Skip the PLTresolve relocations, and the relocations for
5335 the other PLT slots. */
5336 reloc_index = k + s * PLT_NON_JUMP_SLOT_RELOCS;
5337 loc = (htab->srelplt2->contents + reloc_index
5338 * sizeof (Elf32_External_Rel));
5339
5340 rel.r_offset = (htab->elf.splt->output_section->vma
5341 + htab->elf.splt->output_offset
5342 + h->plt.offset + 2),
5343 rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_386_32);
5344 bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
5345
5346 /* Create the R_386_32 relocation referencing the beginning of
5347 the PLT for this GOT entry. */
5348 rel.r_offset = (htab->elf.sgotplt->output_section->vma
5349 + htab->elf.sgotplt->output_offset
5350 + got_offset);
5351 rel.r_info = ELF32_R_INFO (htab->elf.hplt->indx, R_386_32);
5352 bfd_elf32_swap_reloc_out (output_bfd, &rel,
5353 loc + sizeof (Elf32_External_Rel));
5354 }
5355 }
5356 else
5357 {
5358 memcpy (plt->contents + h->plt.offset, abed->plt->pic_plt_entry,
5359 abed->plt->plt_entry_size);
5360 bfd_put_32 (output_bfd, got_offset,
5361 plt->contents + h->plt.offset
5362 + abed->plt->plt_got_offset);
5363 }
5364
5365 /* Fill in the entry in the global offset table. Leave the entry
5366 as zero for undefined weak symbol in PIE. No PLT relocation
5367 against undefined weak symbol in PIE. */
5368 if (!local_undefweak)
5369 {
5370 bfd_put_32 (output_bfd,
5371 (plt->output_section->vma
5372 + plt->output_offset
5373 + h->plt.offset
5374 + abed->plt->plt_lazy_offset),
5375 gotplt->contents + got_offset);
5376
5377 /* Fill in the entry in the .rel.plt section. */
5378 rel.r_offset = (gotplt->output_section->vma
5379 + gotplt->output_offset
5380 + got_offset);
5381 if (h->dynindx == -1
5382 || ((bfd_link_executable (info)
5383 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
5384 && h->def_regular
5385 && h->type == STT_GNU_IFUNC))
5386 {
5387 /* If an STT_GNU_IFUNC symbol is locally defined, generate
5388 R_386_IRELATIVE instead of R_386_JUMP_SLOT. Store addend
5389 in the .got.plt section. */
5390 bfd_put_32 (output_bfd,
5391 (h->root.u.def.value
5392 + h->root.u.def.section->output_section->vma
5393 + h->root.u.def.section->output_offset),
5394 gotplt->contents + got_offset);
5395 rel.r_info = ELF32_R_INFO (0, R_386_IRELATIVE);
5396 /* R_386_IRELATIVE comes last. */
5397 plt_index = htab->next_irelative_index--;
5398 }
5399 else
5400 {
5401 rel.r_info = ELF32_R_INFO (h->dynindx, R_386_JUMP_SLOT);
5402 plt_index = htab->next_jump_slot_index++;
5403 }
5404
5405 loc = relplt->contents + plt_index * sizeof (Elf32_External_Rel);
5406 bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
5407
5408 /* Don't fill PLT entry for static executables. */
5409 if (plt == htab->elf.splt)
5410 {
5411 bfd_put_32 (output_bfd,
5412 plt_index * sizeof (Elf32_External_Rel),
5413 plt->contents + h->plt.offset
5414 + abed->plt->plt_reloc_offset);
5415 bfd_put_32 (output_bfd, - (h->plt.offset
5416 + abed->plt->plt_plt_offset + 4),
5417 plt->contents + h->plt.offset
5418 + abed->plt->plt_plt_offset);
5419 }
5420 }
5421 }
5422 else if (eh->plt_got.offset != (bfd_vma) -1)
5423 {
5424 bfd_vma got_offset, plt_offset;
5425 asection *plt, *got, *gotplt;
5426 const bfd_byte *got_plt_entry;
5427
5428 /* Offset of displacement of the indirect jump. */
5429 bfd_vma plt_got_offset = 2;
5430
5431 /* Set the entry in the GOT procedure linkage table. */
5432 plt = htab->plt_got;
5433 got = htab->elf.sgot;
5434 gotplt = htab->elf.sgotplt;
5435 got_offset = h->got.offset;
5436
5437 if (got_offset == (bfd_vma) -1
5438 || plt == NULL
5439 || got == NULL
5440 || gotplt == NULL)
5441 abort ();
5442
5443 /* Fill in the entry in the GOT procedure linkage table. */
5444 if (! bfd_link_pic (info))
5445 {
5446 got_plt_entry = elf_i386_got_plt_entry;
5447 got_offset += got->output_section->vma + got->output_offset;
5448 }
5449 else
5450 {
5451 got_plt_entry = elf_i386_pic_got_plt_entry;
5452 got_offset += (got->output_section->vma
5453 + got->output_offset
5454 - gotplt->output_section->vma
5455 - gotplt->output_offset);
5456 }
5457
5458 plt_offset = eh->plt_got.offset;
5459 memcpy (plt->contents + plt_offset, got_plt_entry,
5460 sizeof (elf_i386_got_plt_entry));
5461 bfd_put_32 (output_bfd, got_offset,
5462 plt->contents + plt_offset + plt_got_offset);
5463 }
5464
5465 if (!local_undefweak
5466 && !h->def_regular
5467 && (h->plt.offset != (bfd_vma) -1
5468 || eh->plt_got.offset != (bfd_vma) -1))
5469 {
5470 /* Mark the symbol as undefined, rather than as defined in
5471 the .plt section. Leave the value if there were any
5472 relocations where pointer equality matters (this is a clue
5473 for the dynamic linker, to make function pointer
5474 comparisons work between an application and shared
5475 library), otherwise set it to zero. If a function is only
5476 called from a binary, there is no need to slow down
5477 shared libraries because of that. */
5478 sym->st_shndx = SHN_UNDEF;
5479 if (!h->pointer_equality_needed)
5480 sym->st_value = 0;
5481 }
5482
5483 /* Don't generate dynamic GOT relocation against undefined weak
5484 symbol in executable. */
5485 if (h->got.offset != (bfd_vma) -1
5486 && ! GOT_TLS_GD_ANY_P (elf_i386_hash_entry(h)->tls_type)
5487 && (elf_i386_hash_entry(h)->tls_type & GOT_TLS_IE) == 0
5488 && !local_undefweak)
5489 {
5490 Elf_Internal_Rela rel;
5491 asection *relgot = htab->elf.srelgot;
5492
5493 /* This symbol has an entry in the global offset table. Set it
5494 up. */
5495
5496 if (htab->elf.sgot == NULL || htab->elf.srelgot == NULL)
5497 abort ();
5498
5499 rel.r_offset = (htab->elf.sgot->output_section->vma
5500 + htab->elf.sgot->output_offset
5501 + (h->got.offset & ~(bfd_vma) 1));
5502
5503 /* If this is a static link, or it is a -Bsymbolic link and the
5504 symbol is defined locally or was forced to be local because
5505 of a version file, we just want to emit a RELATIVE reloc.
5506 The entry in the global offset table will already have been
5507 initialized in the relocate_section function. */
5508 if (h->def_regular
5509 && h->type == STT_GNU_IFUNC)
5510 {
5511 if (h->plt.offset == (bfd_vma) -1)
5512 {
5513 /* STT_GNU_IFUNC is referenced without PLT. */
5514 if (htab->elf.splt == NULL)
5515 {
5516 /* use .rel[a].iplt section to store .got relocations
5517 in static executable. */
5518 relgot = htab->elf.irelplt;
5519 }
5520 if (SYMBOL_REFERENCES_LOCAL (info, h))
5521 {
5522 bfd_put_32 (output_bfd,
5523 (h->root.u.def.value
5524 + h->root.u.def.section->output_section->vma
5525 + h->root.u.def.section->output_offset),
5526 htab->elf.sgot->contents + h->got.offset);
5527 rel.r_info = ELF32_R_INFO (0, R_386_IRELATIVE);
5528 }
5529 else
5530 goto do_glob_dat;
5531 }
5532 else if (bfd_link_pic (info))
5533 {
5534 /* Generate R_386_GLOB_DAT. */
5535 goto do_glob_dat;
5536 }
5537 else
5538 {
5539 asection *plt;
5540
5541 if (!h->pointer_equality_needed)
5542 abort ();
5543
5544 /* For non-shared object, we can't use .got.plt, which
5545 contains the real function addres if we need pointer
5546 equality. We load the GOT entry with the PLT entry. */
5547 plt = htab->elf.splt ? htab->elf.splt : htab->elf.iplt;
5548 bfd_put_32 (output_bfd,
5549 (plt->output_section->vma
5550 + plt->output_offset + h->plt.offset),
5551 htab->elf.sgot->contents + h->got.offset);
5552 return TRUE;
5553 }
5554 }
5555 else if (bfd_link_pic (info)
5556 && SYMBOL_REFERENCES_LOCAL (info, h))
5557 {
5558 BFD_ASSERT((h->got.offset & 1) != 0);
5559 rel.r_info = ELF32_R_INFO (0, R_386_RELATIVE);
5560 }
5561 else
5562 {
5563 BFD_ASSERT((h->got.offset & 1) == 0);
5564 do_glob_dat:
5565 bfd_put_32 (output_bfd, (bfd_vma) 0,
5566 htab->elf.sgot->contents + h->got.offset);
5567 rel.r_info = ELF32_R_INFO (h->dynindx, R_386_GLOB_DAT);
5568 }
5569
5570 elf_append_rel (output_bfd, relgot, &rel);
5571 }
5572
5573 if (h->needs_copy)
5574 {
5575 Elf_Internal_Rela rel;
5576 asection *s;
5577
5578 /* This symbol needs a copy reloc. Set it up. */
5579
5580 if (h->dynindx == -1
5581 || (h->root.type != bfd_link_hash_defined
5582 && h->root.type != bfd_link_hash_defweak)
5583 || htab->elf.srelbss == NULL
5584 || htab->elf.sreldynrelro == NULL)
5585 abort ();
5586
5587 rel.r_offset = (h->root.u.def.value
5588 + h->root.u.def.section->output_section->vma
5589 + h->root.u.def.section->output_offset);
5590 rel.r_info = ELF32_R_INFO (h->dynindx, R_386_COPY);
5591 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
5592 s = htab->elf.sreldynrelro;
5593 else
5594 s = htab->elf.srelbss;
5595 elf_append_rel (output_bfd, s, &rel);
5596 }
5597
5598 return TRUE;
5599 }
5600
5601 /* Finish up local dynamic symbol handling. We set the contents of
5602 various dynamic sections here. */
5603
5604 static bfd_boolean
5605 elf_i386_finish_local_dynamic_symbol (void **slot, void *inf)
5606 {
5607 struct elf_link_hash_entry *h
5608 = (struct elf_link_hash_entry *) *slot;
5609 struct bfd_link_info *info
5610 = (struct bfd_link_info *) inf;
5611
5612 return elf_i386_finish_dynamic_symbol (info->output_bfd, info,
5613 h, NULL);
5614 }
5615
5616 /* Finish up undefined weak symbol handling in PIE. Fill its PLT entry
5617 here since undefined weak symbol may not be dynamic and may not be
5618 called for elf_i386_finish_dynamic_symbol. */
5619
5620 static bfd_boolean
5621 elf_i386_pie_finish_undefweak_symbol (struct bfd_hash_entry *bh,
5622 void *inf)
5623 {
5624 struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
5625 struct bfd_link_info *info = (struct bfd_link_info *) inf;
5626
5627 if (h->root.type != bfd_link_hash_undefweak
5628 || h->dynindx != -1)
5629 return TRUE;
5630
5631 return elf_i386_finish_dynamic_symbol (info->output_bfd,
5632 info, h, NULL);
5633 }
5634
5635 /* Used to decide how to sort relocs in an optimal manner for the
5636 dynamic linker, before writing them out. */
5637
5638 static enum elf_reloc_type_class
5639 elf_i386_reloc_type_class (const struct bfd_link_info *info,
5640 const asection *rel_sec ATTRIBUTE_UNUSED,
5641 const Elf_Internal_Rela *rela)
5642 {
5643 bfd *abfd = info->output_bfd;
5644 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5645 struct elf_link_hash_table *htab = elf_hash_table (info);
5646
5647 if (htab->dynsym != NULL
5648 && htab->dynsym->contents != NULL)
5649 {
5650 /* Check relocation against STT_GNU_IFUNC symbol if there are
5651 dynamic symbols. */
5652 unsigned long r_symndx = ELF32_R_SYM (rela->r_info);
5653 if (r_symndx != STN_UNDEF)
5654 {
5655 Elf_Internal_Sym sym;
5656 if (!bed->s->swap_symbol_in (abfd,
5657 (htab->dynsym->contents
5658 + r_symndx * sizeof (Elf32_External_Sym)),
5659 0, &sym))
5660 abort ();
5661
5662 if (ELF32_ST_TYPE (sym.st_info) == STT_GNU_IFUNC)
5663 return reloc_class_ifunc;
5664 }
5665 }
5666
5667 switch (ELF32_R_TYPE (rela->r_info))
5668 {
5669 case R_386_IRELATIVE:
5670 return reloc_class_ifunc;
5671 case R_386_RELATIVE:
5672 return reloc_class_relative;
5673 case R_386_JUMP_SLOT:
5674 return reloc_class_plt;
5675 case R_386_COPY:
5676 return reloc_class_copy;
5677 default:
5678 return reloc_class_normal;
5679 }
5680 }
5681
5682 /* Finish up the dynamic sections. */
5683
5684 static bfd_boolean
5685 elf_i386_finish_dynamic_sections (bfd *output_bfd,
5686 struct bfd_link_info *info)
5687 {
5688 struct elf_i386_link_hash_table *htab;
5689 bfd *dynobj;
5690 asection *sdyn;
5691 const struct elf_i386_backend_data *abed;
5692
5693 htab = elf_i386_hash_table (info);
5694 if (htab == NULL)
5695 return FALSE;
5696
5697 dynobj = htab->elf.dynobj;
5698 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
5699 abed = get_elf_i386_backend_data (output_bfd);
5700
5701 if (htab->elf.dynamic_sections_created)
5702 {
5703 Elf32_External_Dyn *dyncon, *dynconend;
5704
5705 if (sdyn == NULL || htab->elf.sgot == NULL)
5706 abort ();
5707
5708 dyncon = (Elf32_External_Dyn *) sdyn->contents;
5709 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
5710 for (; dyncon < dynconend; dyncon++)
5711 {
5712 Elf_Internal_Dyn dyn;
5713 asection *s;
5714
5715 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
5716
5717 switch (dyn.d_tag)
5718 {
5719 default:
5720 if (abed->is_vxworks
5721 && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
5722 break;
5723 continue;
5724
5725 case DT_PLTGOT:
5726 s = htab->elf.sgotplt;
5727 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
5728 break;
5729
5730 case DT_JMPREL:
5731 s = htab->elf.srelplt;
5732 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
5733 break;
5734
5735 case DT_PLTRELSZ:
5736 s = htab->elf.srelplt;
5737 dyn.d_un.d_val = s->size;
5738 break;
5739 }
5740
5741 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
5742 }
5743
5744 /* Fill in the first entry in the procedure linkage table. */
5745 if (htab->elf.splt && htab->elf.splt->size > 0)
5746 {
5747 if (bfd_link_pic (info))
5748 {
5749 memcpy (htab->elf.splt->contents, abed->plt->pic_plt0_entry,
5750 abed->plt->plt0_entry_size);
5751 memset (htab->elf.splt->contents + abed->plt->plt0_entry_size,
5752 abed->plt0_pad_byte,
5753 abed->plt->plt_entry_size - abed->plt->plt0_entry_size);
5754 }
5755 else
5756 {
5757 memcpy (htab->elf.splt->contents, abed->plt->plt0_entry,
5758 abed->plt->plt0_entry_size);
5759 memset (htab->elf.splt->contents + abed->plt->plt0_entry_size,
5760 abed->plt0_pad_byte,
5761 abed->plt->plt_entry_size - abed->plt->plt0_entry_size);
5762 bfd_put_32 (output_bfd,
5763 (htab->elf.sgotplt->output_section->vma
5764 + htab->elf.sgotplt->output_offset
5765 + 4),
5766 htab->elf.splt->contents
5767 + abed->plt->plt0_got1_offset);
5768 bfd_put_32 (output_bfd,
5769 (htab->elf.sgotplt->output_section->vma
5770 + htab->elf.sgotplt->output_offset
5771 + 8),
5772 htab->elf.splt->contents
5773 + abed->plt->plt0_got2_offset);
5774
5775 if (abed->is_vxworks)
5776 {
5777 Elf_Internal_Rela rel;
5778
5779 /* Generate a relocation for _GLOBAL_OFFSET_TABLE_ + 4.
5780 On IA32 we use REL relocations so the addend goes in
5781 the PLT directly. */
5782 rel.r_offset = (htab->elf.splt->output_section->vma
5783 + htab->elf.splt->output_offset
5784 + abed->plt->plt0_got1_offset);
5785 rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_386_32);
5786 bfd_elf32_swap_reloc_out (output_bfd, &rel,
5787 htab->srelplt2->contents);
5788 /* Generate a relocation for _GLOBAL_OFFSET_TABLE_ + 8. */
5789 rel.r_offset = (htab->elf.splt->output_section->vma
5790 + htab->elf.splt->output_offset
5791 + abed->plt->plt0_got2_offset);
5792 rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_386_32);
5793 bfd_elf32_swap_reloc_out (output_bfd, &rel,
5794 htab->srelplt2->contents +
5795 sizeof (Elf32_External_Rel));
5796 }
5797 }
5798
5799 /* UnixWare sets the entsize of .plt to 4, although that doesn't
5800 really seem like the right value. */
5801 elf_section_data (htab->elf.splt->output_section)
5802 ->this_hdr.sh_entsize = 4;
5803
5804 /* Correct the .rel.plt.unloaded relocations. */
5805 if (abed->is_vxworks && !bfd_link_pic (info))
5806 {
5807 int num_plts = (htab->elf.splt->size
5808 / abed->plt->plt_entry_size) - 1;
5809 unsigned char *p;
5810
5811 p = htab->srelplt2->contents;
5812 if (bfd_link_pic (info))
5813 p += PLTRESOLVE_RELOCS_SHLIB * sizeof (Elf32_External_Rel);
5814 else
5815 p += PLTRESOLVE_RELOCS * sizeof (Elf32_External_Rel);
5816
5817 for (; num_plts; num_plts--)
5818 {
5819 Elf_Internal_Rela rel;
5820 bfd_elf32_swap_reloc_in (output_bfd, p, &rel);
5821 rel.r_info = ELF32_R_INFO (htab->elf.hgot->indx, R_386_32);
5822 bfd_elf32_swap_reloc_out (output_bfd, &rel, p);
5823 p += sizeof (Elf32_External_Rel);
5824
5825 bfd_elf32_swap_reloc_in (output_bfd, p, &rel);
5826 rel.r_info = ELF32_R_INFO (htab->elf.hplt->indx, R_386_32);
5827 bfd_elf32_swap_reloc_out (output_bfd, &rel, p);
5828 p += sizeof (Elf32_External_Rel);
5829 }
5830 }
5831 }
5832 }
5833
5834 if (htab->elf.sgotplt)
5835 {
5836 if (bfd_is_abs_section (htab->elf.sgotplt->output_section))
5837 {
5838 _bfd_error_handler
5839 (_("discarded output section: `%A'"), htab->elf.sgotplt);
5840 return FALSE;
5841 }
5842
5843 /* Fill in the first three entries in the global offset table. */
5844 if (htab->elf.sgotplt->size > 0)
5845 {
5846 bfd_put_32 (output_bfd,
5847 (sdyn == NULL ? 0
5848 : sdyn->output_section->vma + sdyn->output_offset),
5849 htab->elf.sgotplt->contents);
5850 bfd_put_32 (output_bfd, 0, htab->elf.sgotplt->contents + 4);
5851 bfd_put_32 (output_bfd, 0, htab->elf.sgotplt->contents + 8);
5852 }
5853
5854 elf_section_data (htab->elf.sgotplt->output_section)->this_hdr.sh_entsize = 4;
5855 }
5856
5857 /* Adjust .eh_frame for .plt section. */
5858 if (htab->plt_eh_frame != NULL
5859 && htab->plt_eh_frame->contents != NULL)
5860 {
5861 if (htab->elf.splt != NULL
5862 && htab->elf.splt->size != 0
5863 && (htab->elf.splt->flags & SEC_EXCLUDE) == 0
5864 && htab->elf.splt->output_section != NULL
5865 && htab->plt_eh_frame->output_section != NULL)
5866 {
5867 bfd_vma plt_start = htab->elf.splt->output_section->vma;
5868 bfd_vma eh_frame_start = htab->plt_eh_frame->output_section->vma
5869 + htab->plt_eh_frame->output_offset
5870 + PLT_FDE_START_OFFSET;
5871 bfd_put_signed_32 (dynobj, plt_start - eh_frame_start,
5872 htab->plt_eh_frame->contents
5873 + PLT_FDE_START_OFFSET);
5874 }
5875 if (htab->plt_eh_frame->sec_info_type
5876 == SEC_INFO_TYPE_EH_FRAME)
5877 {
5878 if (! _bfd_elf_write_section_eh_frame (output_bfd, info,
5879 htab->plt_eh_frame,
5880 htab->plt_eh_frame->contents))
5881 return FALSE;
5882 }
5883 }
5884
5885 if (htab->elf.sgot && htab->elf.sgot->size > 0)
5886 elf_section_data (htab->elf.sgot->output_section)->this_hdr.sh_entsize = 4;
5887
5888 /* Fill PLT entries for undefined weak symbols in PIE. */
5889 if (bfd_link_pie (info))
5890 bfd_hash_traverse (&info->hash->table,
5891 elf_i386_pie_finish_undefweak_symbol,
5892 info);
5893
5894 return TRUE;
5895 }
5896
5897 /* Fill PLT/GOT entries and allocate dynamic relocations for local
5898 STT_GNU_IFUNC symbols, which aren't in the ELF linker hash table.
5899 It has to be done before elf_link_sort_relocs is called so that
5900 dynamic relocations are properly sorted. */
5901
5902 static bfd_boolean
5903 elf_i386_output_arch_local_syms
5904 (bfd *output_bfd ATTRIBUTE_UNUSED,
5905 struct bfd_link_info *info,
5906 void *flaginfo ATTRIBUTE_UNUSED,
5907 int (*func) (void *, const char *,
5908 Elf_Internal_Sym *,
5909 asection *,
5910 struct elf_link_hash_entry *) ATTRIBUTE_UNUSED)
5911 {
5912 struct elf_i386_link_hash_table *htab = elf_i386_hash_table (info);
5913 if (htab == NULL)
5914 return FALSE;
5915
5916 /* Fill PLT and GOT entries for local STT_GNU_IFUNC symbols. */
5917 htab_traverse (htab->loc_hash_table,
5918 elf_i386_finish_local_dynamic_symbol,
5919 info);
5920
5921 return TRUE;
5922 }
5923
5924 /* Return an array of PLT entry symbol values. */
5925
5926 static bfd_vma *
5927 elf_i386_get_plt_sym_val (bfd *abfd, asymbol **dynsyms, asection *plt,
5928 asection *relplt)
5929 {
5930 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
5931 arelent *p;
5932 long count, i;
5933 bfd_vma *plt_sym_val;
5934 bfd_vma plt_offset;
5935 bfd_byte *plt_contents;
5936 const struct elf_i386_backend_data *bed
5937 = get_elf_i386_backend_data (abfd);
5938 Elf_Internal_Shdr *hdr;
5939
5940 /* Get the .plt section contents. */
5941 plt_contents = (bfd_byte *) bfd_malloc (plt->size);
5942 if (plt_contents == NULL)
5943 return NULL;
5944 if (!bfd_get_section_contents (abfd, (asection *) plt,
5945 plt_contents, 0, plt->size))
5946 {
5947 bad_return:
5948 free (plt_contents);
5949 return NULL;
5950 }
5951
5952 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
5953 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
5954 goto bad_return;
5955
5956 hdr = &elf_section_data (relplt)->this_hdr;
5957 count = relplt->size / hdr->sh_entsize;
5958
5959 plt_sym_val = (bfd_vma *) bfd_malloc (sizeof (bfd_vma) * count);
5960 if (plt_sym_val == NULL)
5961 goto bad_return;
5962
5963 for (i = 0; i < count; i++)
5964 plt_sym_val[i] = -1;
5965
5966 plt_offset = bed->plt->plt_entry_size;
5967 p = relplt->relocation;
5968 for (i = 0; i < count; i++, p++)
5969 {
5970 long reloc_index;
5971
5972 /* Skip unknown relocation. PR 17512: file: bc9d6cf5. */
5973 if (p->howto == NULL)
5974 continue;
5975
5976 if (p->howto->type != R_386_JUMP_SLOT
5977 && p->howto->type != R_386_IRELATIVE)
5978 continue;
5979
5980 reloc_index = H_GET_32 (abfd, (plt_contents + plt_offset
5981 + bed->plt->plt_reloc_offset));
5982 reloc_index /= sizeof (Elf32_External_Rel);
5983 if (reloc_index < count)
5984 plt_sym_val[reloc_index] = plt->vma + plt_offset;
5985
5986 plt_offset += bed->plt->plt_entry_size;
5987
5988 /* PR binutils/18437: Skip extra relocations in the .rel.plt
5989 section. */
5990 if (plt_offset >= plt->size)
5991 break;
5992 }
5993
5994 free (plt_contents);
5995
5996 return plt_sym_val;
5997 }
5998
5999 /* Similar to _bfd_elf_get_synthetic_symtab. */
6000
6001 static long
6002 elf_i386_get_synthetic_symtab (bfd *abfd,
6003 long symcount,
6004 asymbol **syms,
6005 long dynsymcount,
6006 asymbol **dynsyms,
6007 asymbol **ret)
6008 {
6009 asection *plt = bfd_get_section_by_name (abfd, ".plt");
6010 return _bfd_elf_ifunc_get_synthetic_symtab (abfd, symcount, syms,
6011 dynsymcount, dynsyms, ret,
6012 plt,
6013 elf_i386_get_plt_sym_val);
6014 }
6015
6016 /* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
6017
6018 static bfd_boolean
6019 elf_i386_hash_symbol (struct elf_link_hash_entry *h)
6020 {
6021 if (h->plt.offset != (bfd_vma) -1
6022 && !h->def_regular
6023 && !h->pointer_equality_needed)
6024 return FALSE;
6025
6026 return _bfd_elf_hash_symbol (h);
6027 }
6028
6029 #define TARGET_LITTLE_SYM i386_elf32_vec
6030 #define TARGET_LITTLE_NAME "elf32-i386"
6031 #define ELF_ARCH bfd_arch_i386
6032 #define ELF_TARGET_ID I386_ELF_DATA
6033 #define ELF_MACHINE_CODE EM_386
6034 #define ELF_MAXPAGESIZE 0x1000
6035
6036 #define elf_backend_can_gc_sections 1
6037 #define elf_backend_can_refcount 1
6038 #define elf_backend_want_got_plt 1
6039 #define elf_backend_plt_readonly 1
6040 #define elf_backend_want_plt_sym 0
6041 #define elf_backend_got_header_size 12
6042 #define elf_backend_plt_alignment 4
6043 #define elf_backend_dtrel_excludes_plt 1
6044 #define elf_backend_extern_protected_data 1
6045 #define elf_backend_caches_rawsize 1
6046 #define elf_backend_want_dynrelro 1
6047
6048 /* Support RELA for objdump of prelink objects. */
6049 #define elf_info_to_howto elf_i386_info_to_howto_rel
6050 #define elf_info_to_howto_rel elf_i386_info_to_howto_rel
6051
6052 #define bfd_elf32_mkobject elf_i386_mkobject
6053
6054 #define bfd_elf32_bfd_is_local_label_name elf_i386_is_local_label_name
6055 #define bfd_elf32_bfd_link_hash_table_create elf_i386_link_hash_table_create
6056 #define bfd_elf32_bfd_reloc_type_lookup elf_i386_reloc_type_lookup
6057 #define bfd_elf32_bfd_reloc_name_lookup elf_i386_reloc_name_lookup
6058 #define bfd_elf32_get_synthetic_symtab elf_i386_get_synthetic_symtab
6059
6060 #define elf_backend_adjust_dynamic_symbol elf_i386_adjust_dynamic_symbol
6061 #define elf_backend_relocs_compatible _bfd_elf_relocs_compatible
6062 #define elf_backend_check_relocs elf_i386_check_relocs
6063 #define elf_backend_copy_indirect_symbol elf_i386_copy_indirect_symbol
6064 #define elf_backend_create_dynamic_sections elf_i386_create_dynamic_sections
6065 #define elf_backend_fake_sections elf_i386_fake_sections
6066 #define elf_backend_finish_dynamic_sections elf_i386_finish_dynamic_sections
6067 #define elf_backend_finish_dynamic_symbol elf_i386_finish_dynamic_symbol
6068 #define elf_backend_output_arch_local_syms elf_i386_output_arch_local_syms
6069 #define elf_backend_gc_mark_hook elf_i386_gc_mark_hook
6070 #define elf_backend_grok_prstatus elf_i386_grok_prstatus
6071 #define elf_backend_grok_psinfo elf_i386_grok_psinfo
6072 #define elf_backend_reloc_type_class elf_i386_reloc_type_class
6073 #define elf_backend_relocate_section elf_i386_relocate_section
6074 #define elf_backend_size_dynamic_sections elf_i386_size_dynamic_sections
6075 #define elf_backend_always_size_sections elf_i386_always_size_sections
6076 #define elf_backend_omit_section_dynsym \
6077 ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
6078 #define elf_backend_hash_symbol elf_i386_hash_symbol
6079 #define elf_backend_fixup_symbol elf_i386_fixup_symbol
6080
6081 #include "elf32-target.h"
6082
6083 /* FreeBSD support. */
6084
6085 #undef TARGET_LITTLE_SYM
6086 #define TARGET_LITTLE_SYM i386_elf32_fbsd_vec
6087 #undef TARGET_LITTLE_NAME
6088 #define TARGET_LITTLE_NAME "elf32-i386-freebsd"
6089 #undef ELF_OSABI
6090 #define ELF_OSABI ELFOSABI_FREEBSD
6091
6092 /* The kernel recognizes executables as valid only if they carry a
6093 "FreeBSD" label in the ELF header. So we put this label on all
6094 executables and (for simplicity) also all other object files. */
6095
6096 static void
6097 elf_i386_fbsd_post_process_headers (bfd *abfd, struct bfd_link_info *info)
6098 {
6099 _bfd_elf_post_process_headers (abfd, info);
6100
6101 #ifdef OLD_FREEBSD_ABI_LABEL
6102 {
6103 /* The ABI label supported by FreeBSD <= 4.0 is quite nonstandard. */
6104 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
6105 memcpy (&i_ehdrp->e_ident[EI_ABIVERSION], "FreeBSD", 8);
6106 }
6107 #endif
6108 }
6109
6110 #undef elf_backend_post_process_headers
6111 #define elf_backend_post_process_headers elf_i386_fbsd_post_process_headers
6112 #undef elf32_bed
6113 #define elf32_bed elf32_i386_fbsd_bed
6114
6115 #undef elf_backend_add_symbol_hook
6116
6117 #include "elf32-target.h"
6118
6119 /* Solaris 2. */
6120
6121 #undef TARGET_LITTLE_SYM
6122 #define TARGET_LITTLE_SYM i386_elf32_sol2_vec
6123 #undef TARGET_LITTLE_NAME
6124 #define TARGET_LITTLE_NAME "elf32-i386-sol2"
6125
6126 #undef elf_backend_post_process_headers
6127
6128 /* Restore default: we cannot use ELFOSABI_SOLARIS, otherwise ELFOSABI_NONE
6129 objects won't be recognized. */
6130 #undef ELF_OSABI
6131
6132 #undef elf32_bed
6133 #define elf32_bed elf32_i386_sol2_bed
6134
6135 /* The 32-bit static TLS arena size is rounded to the nearest 8-byte
6136 boundary. */
6137 #undef elf_backend_static_tls_alignment
6138 #define elf_backend_static_tls_alignment 8
6139
6140 /* The Solaris 2 ABI requires a plt symbol on all platforms.
6141
6142 Cf. Linker and Libraries Guide, Ch. 2, Link-Editor, Generating the Output
6143 File, p.63. */
6144 #undef elf_backend_want_plt_sym
6145 #define elf_backend_want_plt_sym 1
6146
6147 #undef elf_backend_strtab_flags
6148 #define elf_backend_strtab_flags SHF_STRINGS
6149
6150 /* Called to set the sh_flags, sh_link and sh_info fields of OSECTION which
6151 has a type >= SHT_LOOS. Returns TRUE if these fields were initialised
6152 FALSE otherwise. ISECTION is the best guess matching section from the
6153 input bfd IBFD, but it might be NULL. */
6154
6155 static bfd_boolean
6156 elf32_i386_copy_solaris_special_section_fields (const bfd *ibfd ATTRIBUTE_UNUSED,
6157 bfd *obfd ATTRIBUTE_UNUSED,
6158 const Elf_Internal_Shdr *isection ATTRIBUTE_UNUSED,
6159 Elf_Internal_Shdr *osection ATTRIBUTE_UNUSED)
6160 {
6161 /* PR 19938: FIXME: Need to add code for setting the sh_info
6162 and sh_link fields of Solaris specific section types. */
6163 return FALSE;
6164
6165 /* Based upon Oracle Solaris 11.3 Linkers and Libraries Guide, Ch. 13,
6166 Object File Format, Table 13-9 ELF sh_link and sh_info Interpretation:
6167
6168 http://docs.oracle.com/cd/E53394_01/html/E54813/chapter6-94076.html#scrolltoc
6169
6170 The following values should be set:
6171
6172 Type Link Info
6173 -----------------------------------------------------------------------------
6174 SHT_SUNW_ancillary The section header index of 0
6175 [0x6fffffee] the associated string table.
6176
6177 SHT_SUNW_capinfo The section header index of For a dynamic object, the
6178 [0x6ffffff0] the associated symbol table. section header index of
6179 the associated
6180 SHT_SUNW_capchain table,
6181 otherwise 0.
6182
6183 SHT_SUNW_symsort The section header index of 0
6184 [0x6ffffff1] the associated symbol table.
6185
6186 SHT_SUNW_tlssort The section header index of 0
6187 [0x6ffffff2] the associated symbol table.
6188
6189 SHT_SUNW_LDYNSYM The section header index of One greater than the
6190 [0x6ffffff3] the associated string table. symbol table index of the
6191 This index is the same string last local symbol,
6192 table used by the SHT_DYNSYM STB_LOCAL. Since
6193 section. SHT_SUNW_LDYNSYM only
6194 contains local symbols,
6195 sh_info is equivalent to
6196 the number of symbols in
6197 the table.
6198
6199 SHT_SUNW_cap If symbol capabilities exist, If any capabilities refer
6200 [0x6ffffff5] the section header index of to named strings, the
6201 the associated section header index of
6202 SHT_SUNW_capinfo table, the associated string
6203 otherwise 0. table, otherwise 0.
6204
6205 SHT_SUNW_move The section header index of 0
6206 [0x6ffffffa] the associated symbol table.
6207
6208 SHT_SUNW_COMDAT 0 0
6209 [0x6ffffffb]
6210
6211 SHT_SUNW_syminfo The section header index of The section header index
6212 [0x6ffffffc] the associated symbol table. of the associated
6213 .dynamic section.
6214
6215 SHT_SUNW_verdef The section header index of The number of version
6216 [0x6ffffffd] the associated string table. definitions within the
6217 section.
6218
6219 SHT_SUNW_verneed The section header index of The number of version
6220 [0x6ffffffe] the associated string table. dependencies within the
6221 section.
6222
6223 SHT_SUNW_versym The section header index of 0
6224 [0x6fffffff] the associated symbol table. */
6225 }
6226
6227 #undef elf_backend_copy_special_section_fields
6228 #define elf_backend_copy_special_section_fields elf32_i386_copy_solaris_special_section_fields
6229
6230 #include "elf32-target.h"
6231
6232 /* Intel MCU support. */
6233
6234 static bfd_boolean
6235 elf32_iamcu_elf_object_p (bfd *abfd)
6236 {
6237 /* Set the right machine number for an IAMCU elf32 file. */
6238 bfd_default_set_arch_mach (abfd, bfd_arch_iamcu, bfd_mach_i386_iamcu);
6239 return TRUE;
6240 }
6241
6242 #undef TARGET_LITTLE_SYM
6243 #define TARGET_LITTLE_SYM iamcu_elf32_vec
6244 #undef TARGET_LITTLE_NAME
6245 #define TARGET_LITTLE_NAME "elf32-iamcu"
6246 #undef ELF_ARCH
6247 #define ELF_ARCH bfd_arch_iamcu
6248
6249 #undef ELF_MACHINE_CODE
6250 #define ELF_MACHINE_CODE EM_IAMCU
6251
6252 #undef ELF_OSABI
6253
6254 #undef elf32_bed
6255 #define elf32_bed elf32_iamcu_bed
6256
6257 #undef elf_backend_object_p
6258 #define elf_backend_object_p elf32_iamcu_elf_object_p
6259
6260 #undef elf_backend_static_tls_alignment
6261
6262 #undef elf_backend_want_plt_sym
6263 #define elf_backend_want_plt_sym 0
6264
6265 #undef elf_backend_strtab_flags
6266 #undef elf_backend_copy_special_section_fields
6267
6268 #include "elf32-target.h"
6269
6270 /* Restore defaults. */
6271 #undef ELF_ARCH
6272 #define ELF_ARCH bfd_arch_i386
6273 #undef ELF_MACHINE_CODE
6274 #define ELF_MACHINE_CODE EM_386
6275
6276 /* Native Client support. */
6277
6278 #undef TARGET_LITTLE_SYM
6279 #define TARGET_LITTLE_SYM i386_elf32_nacl_vec
6280 #undef TARGET_LITTLE_NAME
6281 #define TARGET_LITTLE_NAME "elf32-i386-nacl"
6282 #undef elf32_bed
6283 #define elf32_bed elf32_i386_nacl_bed
6284
6285 #undef ELF_MAXPAGESIZE
6286 #define ELF_MAXPAGESIZE 0x10000
6287
6288 /* Restore defaults. */
6289 #undef ELF_OSABI
6290 #undef elf_backend_want_plt_sym
6291 #define elf_backend_want_plt_sym 0
6292 #undef elf_backend_post_process_headers
6293 #undef elf_backend_static_tls_alignment
6294
6295 /* NaCl uses substantially different PLT entries for the same effects. */
6296
6297 #undef elf_backend_plt_alignment
6298 #define elf_backend_plt_alignment 5
6299 #define NACL_PLT_ENTRY_SIZE 64
6300 #define NACLMASK 0xe0 /* 32-byte alignment mask. */
6301
6302 static const bfd_byte elf_i386_nacl_plt0_entry[] =
6303 {
6304 0xff, 0x35, /* pushl contents of address */
6305 0, 0, 0, 0, /* replaced with address of .got + 4. */
6306 0x8b, 0x0d, /* movl contents of address, %ecx */
6307 0, 0, 0, 0, /* replaced with address of .got + 8. */
6308 0x83, 0xe1, NACLMASK, /* andl $NACLMASK, %ecx */
6309 0xff, 0xe1 /* jmp *%ecx */
6310 };
6311
6312 static const bfd_byte elf_i386_nacl_plt_entry[NACL_PLT_ENTRY_SIZE] =
6313 {
6314 0x8b, 0x0d, /* movl contents of address, %ecx */
6315 0, 0, 0, 0, /* replaced with GOT slot address. */
6316 0x83, 0xe1, NACLMASK, /* andl $NACLMASK, %ecx */
6317 0xff, 0xe1, /* jmp *%ecx */
6318
6319 /* Pad to the next 32-byte boundary with nop instructions. */
6320 0x90,
6321 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
6322 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
6323
6324 /* Lazy GOT entries point here (32-byte aligned). */
6325 0x68, /* pushl immediate */
6326 0, 0, 0, 0, /* replaced with reloc offset. */
6327 0xe9, /* jmp relative */
6328 0, 0, 0, 0, /* replaced with offset to .plt. */
6329
6330 /* Pad to the next 32-byte boundary with nop instructions. */
6331 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
6332 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
6333 0x90, 0x90
6334 };
6335
6336 static const bfd_byte
6337 elf_i386_nacl_pic_plt0_entry[sizeof (elf_i386_nacl_plt0_entry)] =
6338 {
6339 0xff, 0x73, 0x04, /* pushl 4(%ebx) */
6340 0x8b, 0x4b, 0x08, /* mov 0x8(%ebx), %ecx */
6341 0x83, 0xe1, 0xe0, /* and $NACLMASK, %ecx */
6342 0xff, 0xe1, /* jmp *%ecx */
6343
6344 /* This is expected to be the same size as elf_i386_nacl_plt0_entry,
6345 so pad to that size with nop instructions. */
6346 0x90, 0x90, 0x90, 0x90, 0x90, 0x90
6347 };
6348
6349 static const bfd_byte elf_i386_nacl_pic_plt_entry[NACL_PLT_ENTRY_SIZE] =
6350 {
6351 0x8b, 0x8b, /* movl offset(%ebx), %ecx */
6352 0, 0, 0, 0, /* replaced with offset of this symbol in .got. */
6353 0x83, 0xe1, 0xe0, /* andl $NACLMASK, %ecx */
6354 0xff, 0xe1, /* jmp *%ecx */
6355
6356 /* Pad to the next 32-byte boundary with nop instructions. */
6357 0x90,
6358 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
6359 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
6360
6361 /* Lazy GOT entries point here (32-byte aligned). */
6362 0x68, /* pushl immediate */
6363 0, 0, 0, 0, /* replaced with offset into relocation table. */
6364 0xe9, /* jmp relative */
6365 0, 0, 0, 0, /* replaced with offset to start of .plt. */
6366
6367 /* Pad to the next 32-byte boundary with nop instructions. */
6368 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
6369 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90,
6370 0x90, 0x90
6371 };
6372
6373 static const bfd_byte elf_i386_nacl_eh_frame_plt[] =
6374 {
6375 #if (PLT_CIE_LENGTH != 20 \
6376 || PLT_FDE_LENGTH != 36 \
6377 || PLT_FDE_START_OFFSET != 4 + PLT_CIE_LENGTH + 8 \
6378 || PLT_FDE_LEN_OFFSET != 4 + PLT_CIE_LENGTH + 12)
6379 # error "Need elf_i386_backend_data parameters for eh_frame_plt offsets!"
6380 #endif
6381 PLT_CIE_LENGTH, 0, 0, 0, /* CIE length */
6382 0, 0, 0, 0, /* CIE ID */
6383 1, /* CIE version */
6384 'z', 'R', 0, /* Augmentation string */
6385 1, /* Code alignment factor */
6386 0x7c, /* Data alignment factor: -4 */
6387 8, /* Return address column */
6388 1, /* Augmentation size */
6389 DW_EH_PE_pcrel | DW_EH_PE_sdata4, /* FDE encoding */
6390 DW_CFA_def_cfa, 4, 4, /* DW_CFA_def_cfa: r4 (esp) ofs 4 */
6391 DW_CFA_offset + 8, 1, /* DW_CFA_offset: r8 (eip) at cfa-4 */
6392 DW_CFA_nop, DW_CFA_nop,
6393
6394 PLT_FDE_LENGTH, 0, 0, 0, /* FDE length */
6395 PLT_CIE_LENGTH + 8, 0, 0, 0, /* CIE pointer */
6396 0, 0, 0, 0, /* R_386_PC32 .plt goes here */
6397 0, 0, 0, 0, /* .plt size goes here */
6398 0, /* Augmentation size */
6399 DW_CFA_def_cfa_offset, 8, /* DW_CFA_def_cfa_offset: 8 */
6400 DW_CFA_advance_loc + 6, /* DW_CFA_advance_loc: 6 to __PLT__+6 */
6401 DW_CFA_def_cfa_offset, 12, /* DW_CFA_def_cfa_offset: 12 */
6402 DW_CFA_advance_loc + 58, /* DW_CFA_advance_loc: 58 to __PLT__+64 */
6403 DW_CFA_def_cfa_expression, /* DW_CFA_def_cfa_expression */
6404 13, /* Block length */
6405 DW_OP_breg4, 4, /* DW_OP_breg4 (esp): 4 */
6406 DW_OP_breg8, 0, /* DW_OP_breg8 (eip): 0 */
6407 DW_OP_const1u, 63, DW_OP_and, DW_OP_const1u, 37, DW_OP_ge,
6408 DW_OP_lit2, DW_OP_shl, DW_OP_plus,
6409 DW_CFA_nop, DW_CFA_nop
6410 };
6411
6412 static const struct elf_i386_plt_layout elf_i386_nacl_plt =
6413 {
6414 elf_i386_nacl_plt0_entry, /* plt0_entry */
6415 sizeof (elf_i386_nacl_plt0_entry), /* plt0_entry_size */
6416 2, /* plt0_got1_offset */
6417 8, /* plt0_got2_offset */
6418 elf_i386_nacl_plt_entry, /* plt_entry */
6419 NACL_PLT_ENTRY_SIZE, /* plt_entry_size */
6420 2, /* plt_got_offset */
6421 33, /* plt_reloc_offset */
6422 38, /* plt_plt_offset */
6423 32, /* plt_lazy_offset */
6424 elf_i386_nacl_pic_plt0_entry, /* pic_plt0_entry */
6425 elf_i386_nacl_pic_plt_entry, /* pic_plt_entry */
6426 elf_i386_nacl_eh_frame_plt, /* eh_frame_plt */
6427 sizeof (elf_i386_nacl_eh_frame_plt),/* eh_frame_plt_size */
6428 };
6429
6430 static const struct elf_i386_backend_data elf_i386_nacl_arch_bed =
6431 {
6432 &elf_i386_nacl_plt, /* plt */
6433 0x90, /* plt0_pad_byte: nop insn */
6434 0, /* is_vxworks */
6435 };
6436
6437 static bfd_boolean
6438 elf32_i386_nacl_elf_object_p (bfd *abfd)
6439 {
6440 /* Set the right machine number for a NaCl i386 ELF32 file. */
6441 bfd_default_set_arch_mach (abfd, bfd_arch_i386, bfd_mach_i386_i386_nacl);
6442 return TRUE;
6443 }
6444
6445 #undef elf_backend_arch_data
6446 #define elf_backend_arch_data &elf_i386_nacl_arch_bed
6447
6448 #undef elf_backend_object_p
6449 #define elf_backend_object_p elf32_i386_nacl_elf_object_p
6450 #undef elf_backend_modify_segment_map
6451 #define elf_backend_modify_segment_map nacl_modify_segment_map
6452 #undef elf_backend_modify_program_headers
6453 #define elf_backend_modify_program_headers nacl_modify_program_headers
6454 #undef elf_backend_final_write_processing
6455 #define elf_backend_final_write_processing nacl_final_write_processing
6456
6457 #include "elf32-target.h"
6458
6459 /* Restore defaults. */
6460 #undef elf_backend_object_p
6461 #undef elf_backend_modify_segment_map
6462 #undef elf_backend_modify_program_headers
6463 #undef elf_backend_final_write_processing
6464
6465 /* VxWorks support. */
6466
6467 #undef TARGET_LITTLE_SYM
6468 #define TARGET_LITTLE_SYM i386_elf32_vxworks_vec
6469 #undef TARGET_LITTLE_NAME
6470 #define TARGET_LITTLE_NAME "elf32-i386-vxworks"
6471 #undef ELF_OSABI
6472 #undef elf_backend_plt_alignment
6473 #define elf_backend_plt_alignment 4
6474
6475 static const struct elf_i386_backend_data elf_i386_vxworks_arch_bed =
6476 {
6477 &elf_i386_plt, /* plt */
6478 0x90, /* plt0_pad_byte */
6479 1, /* is_vxworks */
6480 };
6481
6482 #undef elf_backend_arch_data
6483 #define elf_backend_arch_data &elf_i386_vxworks_arch_bed
6484
6485 #undef elf_backend_relocs_compatible
6486 #undef elf_backend_add_symbol_hook
6487 #define elf_backend_add_symbol_hook \
6488 elf_vxworks_add_symbol_hook
6489 #undef elf_backend_link_output_symbol_hook
6490 #define elf_backend_link_output_symbol_hook \
6491 elf_vxworks_link_output_symbol_hook
6492 #undef elf_backend_emit_relocs
6493 #define elf_backend_emit_relocs elf_vxworks_emit_relocs
6494 #undef elf_backend_final_write_processing
6495 #define elf_backend_final_write_processing \
6496 elf_vxworks_final_write_processing
6497 #undef elf_backend_static_tls_alignment
6498
6499 /* On VxWorks, we emit relocations against _PROCEDURE_LINKAGE_TABLE_, so
6500 define it. */
6501 #undef elf_backend_want_plt_sym
6502 #define elf_backend_want_plt_sym 1
6503
6504 #undef elf32_bed
6505 #define elf32_bed elf32_i386_vxworks_bed
6506
6507 #include "elf32-target.h"
This page took 0.240221 seconds and 5 git commands to generate.