Commit | Line | Data |
---|---|---|
a85d7ed0 | 1 | /* IBM S/390-specific support for 64-bit ELF |
6f2750fe | 2 | Copyright (C) 2000-2016 Free Software Foundation, Inc. |
a85d7ed0 NC |
3 | Contributed Martin Schwidefsky (schwidefsky@de.ibm.com). |
4 | ||
5 | This file is part of BFD, the Binary File Descriptor library. | |
6 | ||
7 | This program is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
cd123cb7 | 9 | the Free Software Foundation; either version 3 of the License, or |
a85d7ed0 NC |
10 | (at your option) any later version. |
11 | ||
12 | This program is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with this program; if not, write to the Free Software | |
3e110533 | 19 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA |
53e09e0a | 20 | 02110-1301, USA. */ |
a85d7ed0 | 21 | |
a85d7ed0 | 22 | #include "sysdep.h" |
3db64b00 | 23 | #include "bfd.h" |
a85d7ed0 NC |
24 | #include "bfdlink.h" |
25 | #include "libbfd.h" | |
26 | #include "elf-bfd.h" | |
a85d7ed0 | 27 | #include "elf/s390.h" |
e3e9290d | 28 | #include <stdarg.h> |
a85d7ed0 NC |
29 | |
30 | /* In case we're on a 32-bit machine, construct a 64-bit "-1" value | |
31 | from smaller values. Start with zero, widen, *then* decrement. */ | |
32 | #define MINUS_ONE (((bfd_vma)0) - 1) | |
33 | ||
2c3fc389 NC |
34 | static bfd_reloc_status_type |
35 | s390_tls_reloc (bfd *, arelent *, asymbol *, void *, | |
36 | asection *, bfd *, char **); | |
37 | static bfd_reloc_status_type | |
38 | s390_elf_ldisp_reloc (bfd *, arelent *, asymbol *, void *, | |
39 | asection *, bfd *, char **); | |
40 | ||
a85d7ed0 NC |
41 | /* The relocation "howto" table. */ |
42 | static reloc_howto_type elf_howto_table[] = | |
43 | { | |
44 | HOWTO (R_390_NONE, /* type */ | |
45 | 0, /* rightshift */ | |
6346d5ca | 46 | 3, /* size (0 = byte, 1 = 2 byte, 2 = 4 byte) */ |
a85d7ed0 | 47 | 0, /* bitsize */ |
b34976b6 | 48 | FALSE, /* pc_relative */ |
a85d7ed0 NC |
49 | 0, /* bitpos */ |
50 | complain_overflow_dont, /* complain_on_overflow */ | |
51 | bfd_elf_generic_reloc, /* special_function */ | |
52 | "R_390_NONE", /* name */ | |
b34976b6 | 53 | FALSE, /* partial_inplace */ |
a85d7ed0 NC |
54 | 0, /* src_mask */ |
55 | 0, /* dst_mask */ | |
b34976b6 AM |
56 | FALSE), /* pcrel_offset */ |
57 | ||
5236c819 MS |
58 | HOWTO(R_390_8, 0, 0, 8, FALSE, 0, complain_overflow_bitfield, |
59 | bfd_elf_generic_reloc, "R_390_8", FALSE, 0,0x000000ff, FALSE), | |
60 | HOWTO(R_390_12, 0, 1, 12, FALSE, 0, complain_overflow_dont, | |
61 | bfd_elf_generic_reloc, "R_390_12", FALSE, 0,0x00000fff, FALSE), | |
62 | HOWTO(R_390_16, 0, 1, 16, FALSE, 0, complain_overflow_bitfield, | |
63 | bfd_elf_generic_reloc, "R_390_16", FALSE, 0,0x0000ffff, FALSE), | |
64 | HOWTO(R_390_32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield, | |
65 | bfd_elf_generic_reloc, "R_390_32", FALSE, 0,0xffffffff, FALSE), | |
66 | HOWTO(R_390_PC32, 0, 2, 32, TRUE, 0, complain_overflow_bitfield, | |
67 | bfd_elf_generic_reloc, "R_390_PC32", FALSE, 0,0xffffffff, TRUE), | |
15f8604d | 68 | HOWTO(R_390_GOT12, 0, 1, 12, FALSE, 0, complain_overflow_bitfield, |
5236c819 MS |
69 | bfd_elf_generic_reloc, "R_390_GOT12", FALSE, 0,0x00000fff, FALSE), |
70 | HOWTO(R_390_GOT32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield, | |
71 | bfd_elf_generic_reloc, "R_390_GOT32", FALSE, 0,0xffffffff, FALSE), | |
72 | HOWTO(R_390_PLT32, 0, 2, 32, TRUE, 0, complain_overflow_bitfield, | |
73 | bfd_elf_generic_reloc, "R_390_PLT32", FALSE, 0,0xffffffff, TRUE), | |
74 | HOWTO(R_390_COPY, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
75 | bfd_elf_generic_reloc, "R_390_COPY", FALSE, 0,MINUS_ONE, FALSE), | |
76 | HOWTO(R_390_GLOB_DAT, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
77 | bfd_elf_generic_reloc, "R_390_GLOB_DAT", FALSE, 0,MINUS_ONE, FALSE), | |
78 | HOWTO(R_390_JMP_SLOT, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
79 | bfd_elf_generic_reloc, "R_390_JMP_SLOT", FALSE, 0,MINUS_ONE, FALSE), | |
80 | HOWTO(R_390_RELATIVE, 0, 4, 64, TRUE, 0, complain_overflow_bitfield, | |
81 | bfd_elf_generic_reloc, "R_390_RELATIVE", FALSE, 0,MINUS_ONE, FALSE), | |
82 | HOWTO(R_390_GOTOFF32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield, | |
83 | bfd_elf_generic_reloc, "R_390_GOTOFF32", FALSE, 0,MINUS_ONE, FALSE), | |
84 | HOWTO(R_390_GOTPC, 0, 4, 64, TRUE, 0, complain_overflow_bitfield, | |
85 | bfd_elf_generic_reloc, "R_390_GOTPC", FALSE, 0,MINUS_ONE, TRUE), | |
86 | HOWTO(R_390_GOT16, 0, 1, 16, FALSE, 0, complain_overflow_bitfield, | |
87 | bfd_elf_generic_reloc, "R_390_GOT16", FALSE, 0,0x0000ffff, FALSE), | |
88 | HOWTO(R_390_PC16, 0, 1, 16, TRUE, 0, complain_overflow_bitfield, | |
89 | bfd_elf_generic_reloc, "R_390_PC16", FALSE, 0,0x0000ffff, TRUE), | |
90 | HOWTO(R_390_PC16DBL, 1, 1, 16, TRUE, 0, complain_overflow_bitfield, | |
91 | bfd_elf_generic_reloc, "R_390_PC16DBL", FALSE, 0,0x0000ffff, TRUE), | |
92 | HOWTO(R_390_PLT16DBL, 1, 1, 16, TRUE, 0, complain_overflow_bitfield, | |
93 | bfd_elf_generic_reloc, "R_390_PLT16DBL", FALSE, 0,0x0000ffff, TRUE), | |
94 | HOWTO(R_390_PC32DBL, 1, 2, 32, TRUE, 0, complain_overflow_bitfield, | |
95 | bfd_elf_generic_reloc, "R_390_PC32DBL", FALSE, 0,0xffffffff, TRUE), | |
96 | HOWTO(R_390_PLT32DBL, 1, 2, 32, TRUE, 0, complain_overflow_bitfield, | |
97 | bfd_elf_generic_reloc, "R_390_PLT32DBL", FALSE, 0,0xffffffff, TRUE), | |
98 | HOWTO(R_390_GOTPCDBL, 1, 2, 32, TRUE, 0, complain_overflow_bitfield, | |
99 | bfd_elf_generic_reloc, "R_390_GOTPCDBL", FALSE, 0,MINUS_ONE, TRUE), | |
100 | HOWTO(R_390_64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
101 | bfd_elf_generic_reloc, "R_390_64", FALSE, 0,MINUS_ONE, FALSE), | |
102 | HOWTO(R_390_PC64, 0, 4, 64, TRUE, 0, complain_overflow_bitfield, | |
103 | bfd_elf_generic_reloc, "R_390_PC64", FALSE, 0,MINUS_ONE, TRUE), | |
104 | HOWTO(R_390_GOT64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
105 | bfd_elf_generic_reloc, "R_390_GOT64", FALSE, 0,MINUS_ONE, FALSE), | |
106 | HOWTO(R_390_PLT64, 0, 4, 64, TRUE, 0, complain_overflow_bitfield, | |
107 | bfd_elf_generic_reloc, "R_390_PLT64", FALSE, 0,MINUS_ONE, TRUE), | |
108 | HOWTO(R_390_GOTENT, 1, 2, 32, TRUE, 0, complain_overflow_bitfield, | |
109 | bfd_elf_generic_reloc, "R_390_GOTENT", FALSE, 0,MINUS_ONE, TRUE), | |
110 | HOWTO(R_390_GOTOFF16, 0, 1, 16, FALSE, 0, complain_overflow_bitfield, | |
111 | bfd_elf_generic_reloc, "R_390_GOTOFF16", FALSE, 0,0x0000ffff, FALSE), | |
112 | HOWTO(R_390_GOTOFF64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
113 | bfd_elf_generic_reloc, "R_390_GOTOFF64", FALSE, 0,MINUS_ONE, FALSE), | |
114 | HOWTO(R_390_GOTPLT12, 0, 1, 12, FALSE, 0, complain_overflow_dont, | |
115 | bfd_elf_generic_reloc, "R_390_GOTPLT12", FALSE, 0,0x00000fff, FALSE), | |
116 | HOWTO(R_390_GOTPLT16, 0, 1, 16, FALSE, 0, complain_overflow_bitfield, | |
117 | bfd_elf_generic_reloc, "R_390_GOTPLT16", FALSE, 0,0x0000ffff, FALSE), | |
118 | HOWTO(R_390_GOTPLT32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield, | |
119 | bfd_elf_generic_reloc, "R_390_GOTPLT32", FALSE, 0,0xffffffff, FALSE), | |
120 | HOWTO(R_390_GOTPLT64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
121 | bfd_elf_generic_reloc, "R_390_GOTPLT64", FALSE, 0,MINUS_ONE, FALSE), | |
122 | HOWTO(R_390_GOTPLTENT, 1, 2, 32, TRUE, 0, complain_overflow_bitfield, | |
123 | bfd_elf_generic_reloc, "R_390_GOTPLTENT",FALSE, 0,MINUS_ONE, TRUE), | |
124 | HOWTO(R_390_PLTOFF16, 0, 1, 16, FALSE, 0, complain_overflow_bitfield, | |
125 | bfd_elf_generic_reloc, "R_390_PLTOFF16", FALSE, 0,0x0000ffff, FALSE), | |
126 | HOWTO(R_390_PLTOFF32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield, | |
127 | bfd_elf_generic_reloc, "R_390_PLTOFF32", FALSE, 0,0xffffffff, FALSE), | |
128 | HOWTO(R_390_PLTOFF64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
129 | bfd_elf_generic_reloc, "R_390_PLTOFF64", FALSE, 0,MINUS_ONE, FALSE), | |
69fc87f1 MS |
130 | HOWTO(R_390_TLS_LOAD, 0, 0, 0, FALSE, 0, complain_overflow_dont, |
131 | s390_tls_reloc, "R_390_TLS_LOAD", FALSE, 0, 0, FALSE), | |
132 | HOWTO(R_390_TLS_GDCALL, 0, 0, 0, FALSE, 0, complain_overflow_dont, | |
133 | s390_tls_reloc, "R_390_TLS_GDCALL", FALSE, 0, 0, FALSE), | |
134 | HOWTO(R_390_TLS_LDCALL, 0, 0, 0, FALSE, 0, complain_overflow_dont, | |
135 | s390_tls_reloc, "R_390_TLS_LDCALL", FALSE, 0, 0, FALSE), | |
136 | EMPTY_HOWTO (R_390_TLS_GD32), /* Empty entry for R_390_TLS_GD32. */ | |
137 | HOWTO(R_390_TLS_GD64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
138 | bfd_elf_generic_reloc, "R_390_TLS_GD64", FALSE, 0, MINUS_ONE, FALSE), | |
139 | HOWTO(R_390_TLS_GOTIE12, 0, 1, 12, FALSE, 0, complain_overflow_dont, | |
140 | bfd_elf_generic_reloc, "R_390_TLS_GOTIE12", FALSE, 0, 0x00000fff, FALSE), | |
141 | EMPTY_HOWTO (R_390_TLS_GOTIE32), /* Empty entry for R_390_TLS_GOTIE32. */ | |
142 | HOWTO(R_390_TLS_GOTIE64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
143 | bfd_elf_generic_reloc, "R_390_TLS_GOTIE64", FALSE, 0, MINUS_ONE, FALSE), | |
144 | EMPTY_HOWTO (R_390_TLS_LDM32), /* Empty entry for R_390_TLS_LDM32. */ | |
145 | HOWTO(R_390_TLS_LDM64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
146 | bfd_elf_generic_reloc, "R_390_TLS_LDM64", FALSE, 0, MINUS_ONE, FALSE), | |
147 | EMPTY_HOWTO (R_390_TLS_IE32), /* Empty entry for R_390_TLS_IE32. */ | |
148 | HOWTO(R_390_TLS_IE64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
149 | bfd_elf_generic_reloc, "R_390_TLS_IE64", FALSE, 0, MINUS_ONE, FALSE), | |
150 | HOWTO(R_390_TLS_IEENT, 1, 2, 32, TRUE, 0, complain_overflow_bitfield, | |
151 | bfd_elf_generic_reloc, "R_390_TLS_IEENT", FALSE, 0, MINUS_ONE, TRUE), | |
152 | EMPTY_HOWTO (R_390_TLS_LE32), /* Empty entry for R_390_TLS_LE32. */ | |
153 | HOWTO(R_390_TLS_LE64, 0, 2, 32, FALSE, 0, complain_overflow_bitfield, | |
154 | bfd_elf_generic_reloc, "R_390_TLS_LE64", FALSE, 0, MINUS_ONE, FALSE), | |
155 | EMPTY_HOWTO (R_390_TLS_LDO32), /* Empty entry for R_390_TLS_LDO32. */ | |
156 | HOWTO(R_390_TLS_LDO64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
157 | bfd_elf_generic_reloc, "R_390_TLS_LDO64", FALSE, 0, MINUS_ONE, FALSE), | |
158 | HOWTO(R_390_TLS_DTPMOD, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
159 | bfd_elf_generic_reloc, "R_390_TLS_DTPMOD", FALSE, 0, MINUS_ONE, FALSE), | |
160 | HOWTO(R_390_TLS_DTPOFF, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
161 | bfd_elf_generic_reloc, "R_390_TLS_DTPOFF", FALSE, 0, MINUS_ONE, FALSE), | |
162 | HOWTO(R_390_TLS_TPOFF, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, | |
163 | bfd_elf_generic_reloc, "R_390_TLS_TPOFF", FALSE, 0, MINUS_ONE, FALSE), | |
bd1ea41b MS |
164 | HOWTO(R_390_20, 0, 2, 20, FALSE, 8, complain_overflow_dont, |
165 | s390_elf_ldisp_reloc, "R_390_20", FALSE, 0,0x0fffff00, FALSE), | |
166 | HOWTO(R_390_GOT20, 0, 2, 20, FALSE, 8, complain_overflow_dont, | |
167 | s390_elf_ldisp_reloc, "R_390_GOT20", FALSE, 0,0x0fffff00, FALSE), | |
168 | HOWTO(R_390_GOTPLT20, 0, 2, 20, FALSE, 8, complain_overflow_dont, | |
169 | s390_elf_ldisp_reloc, "R_390_GOTPLT20", FALSE, 0,0x0fffff00, FALSE), | |
170 | HOWTO(R_390_TLS_GOTIE20, 0, 2, 20, FALSE, 8, complain_overflow_dont, | |
171 | s390_elf_ldisp_reloc, "R_390_TLS_GOTIE20", FALSE, 0,0x0fffff00, FALSE), | |
470b557a AK |
172 | HOWTO(R_390_IRELATIVE, 0, 4, 64, FALSE, 0, complain_overflow_bitfield, |
173 | bfd_elf_generic_reloc, "R_390_IRELATIVE", FALSE, 0, MINUS_ONE, FALSE), | |
fb798c50 AK |
174 | HOWTO(R_390_PC12DBL, 1, 1, 12, TRUE, 0, complain_overflow_bitfield, |
175 | bfd_elf_generic_reloc, "R_390_PC12DBL", FALSE, 0,0x00000fff, TRUE), | |
176 | HOWTO(R_390_PLT12DBL, 1, 1, 12, TRUE, 0, complain_overflow_bitfield, | |
177 | bfd_elf_generic_reloc, "R_390_PLT12DBL", FALSE, 0,0x00000fff, TRUE), | |
178 | HOWTO(R_390_PC24DBL, 1, 2, 24, TRUE, 0, complain_overflow_bitfield, | |
179 | bfd_elf_generic_reloc, "R_390_PC24DBL", FALSE, 0,0x00ffffff, TRUE), | |
180 | HOWTO(R_390_PLT24DBL, 1, 2, 24, TRUE, 0, complain_overflow_bitfield, | |
181 | bfd_elf_generic_reloc, "R_390_PLT24DBL", FALSE, 0,0x00ffffff, TRUE), | |
a85d7ed0 NC |
182 | }; |
183 | ||
184 | /* GNU extension to record C++ vtable hierarchy. */ | |
185 | static reloc_howto_type elf64_s390_vtinherit_howto = | |
b34976b6 | 186 | HOWTO (R_390_GNU_VTINHERIT, 0,4,0,FALSE,0,complain_overflow_dont, NULL, "R_390_GNU_VTINHERIT", FALSE,0, 0, FALSE); |
a85d7ed0 | 187 | static reloc_howto_type elf64_s390_vtentry_howto = |
b34976b6 | 188 | HOWTO (R_390_GNU_VTENTRY, 0,4,0,FALSE,0,complain_overflow_dont, _bfd_elf_rel_vtable_reloc_fn,"R_390_GNU_VTENTRY", FALSE,0,0, FALSE); |
a85d7ed0 NC |
189 | |
190 | static reloc_howto_type * | |
2c3fc389 NC |
191 | elf_s390_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED, |
192 | bfd_reloc_code_real_type code) | |
a85d7ed0 | 193 | { |
0451c93c MS |
194 | switch (code) |
195 | { | |
196 | case BFD_RELOC_NONE: | |
197 | return &elf_howto_table[(int) R_390_NONE]; | |
198 | case BFD_RELOC_8: | |
199 | return &elf_howto_table[(int) R_390_8]; | |
200 | case BFD_RELOC_390_12: | |
201 | return &elf_howto_table[(int) R_390_12]; | |
202 | case BFD_RELOC_16: | |
203 | return &elf_howto_table[(int) R_390_16]; | |
204 | case BFD_RELOC_32: | |
205 | return &elf_howto_table[(int) R_390_32]; | |
206 | case BFD_RELOC_CTOR: | |
207 | return &elf_howto_table[(int) R_390_32]; | |
208 | case BFD_RELOC_32_PCREL: | |
209 | return &elf_howto_table[(int) R_390_PC32]; | |
210 | case BFD_RELOC_390_GOT12: | |
211 | return &elf_howto_table[(int) R_390_GOT12]; | |
212 | case BFD_RELOC_32_GOT_PCREL: | |
213 | return &elf_howto_table[(int) R_390_GOT32]; | |
214 | case BFD_RELOC_390_PLT32: | |
215 | return &elf_howto_table[(int) R_390_PLT32]; | |
216 | case BFD_RELOC_390_COPY: | |
217 | return &elf_howto_table[(int) R_390_COPY]; | |
218 | case BFD_RELOC_390_GLOB_DAT: | |
219 | return &elf_howto_table[(int) R_390_GLOB_DAT]; | |
220 | case BFD_RELOC_390_JMP_SLOT: | |
221 | return &elf_howto_table[(int) R_390_JMP_SLOT]; | |
222 | case BFD_RELOC_390_RELATIVE: | |
223 | return &elf_howto_table[(int) R_390_RELATIVE]; | |
224 | case BFD_RELOC_32_GOTOFF: | |
5236c819 | 225 | return &elf_howto_table[(int) R_390_GOTOFF32]; |
0451c93c MS |
226 | case BFD_RELOC_390_GOTPC: |
227 | return &elf_howto_table[(int) R_390_GOTPC]; | |
228 | case BFD_RELOC_390_GOT16: | |
229 | return &elf_howto_table[(int) R_390_GOT16]; | |
230 | case BFD_RELOC_16_PCREL: | |
231 | return &elf_howto_table[(int) R_390_PC16]; | |
fb798c50 AK |
232 | case BFD_RELOC_390_PC12DBL: |
233 | return &elf_howto_table[(int) R_390_PC12DBL]; | |
234 | case BFD_RELOC_390_PLT12DBL: | |
235 | return &elf_howto_table[(int) R_390_PLT12DBL]; | |
0451c93c MS |
236 | case BFD_RELOC_390_PC16DBL: |
237 | return &elf_howto_table[(int) R_390_PC16DBL]; | |
238 | case BFD_RELOC_390_PLT16DBL: | |
239 | return &elf_howto_table[(int) R_390_PLT16DBL]; | |
fb798c50 AK |
240 | case BFD_RELOC_390_PC24DBL: |
241 | return &elf_howto_table[(int) R_390_PC24DBL]; | |
242 | case BFD_RELOC_390_PLT24DBL: | |
243 | return &elf_howto_table[(int) R_390_PLT24DBL]; | |
0451c93c MS |
244 | case BFD_RELOC_390_PC32DBL: |
245 | return &elf_howto_table[(int) R_390_PC32DBL]; | |
246 | case BFD_RELOC_390_PLT32DBL: | |
247 | return &elf_howto_table[(int) R_390_PLT32DBL]; | |
248 | case BFD_RELOC_390_GOTPCDBL: | |
249 | return &elf_howto_table[(int) R_390_GOTPCDBL]; | |
250 | case BFD_RELOC_64: | |
251 | return &elf_howto_table[(int) R_390_64]; | |
252 | case BFD_RELOC_64_PCREL: | |
253 | return &elf_howto_table[(int) R_390_PC64]; | |
254 | case BFD_RELOC_390_GOT64: | |
255 | return &elf_howto_table[(int) R_390_GOT64]; | |
256 | case BFD_RELOC_390_PLT64: | |
257 | return &elf_howto_table[(int) R_390_PLT64]; | |
258 | case BFD_RELOC_390_GOTENT: | |
259 | return &elf_howto_table[(int) R_390_GOTENT]; | |
5236c819 MS |
260 | case BFD_RELOC_16_GOTOFF: |
261 | return &elf_howto_table[(int) R_390_GOTOFF16]; | |
262 | case BFD_RELOC_390_GOTOFF64: | |
263 | return &elf_howto_table[(int) R_390_GOTOFF64]; | |
264 | case BFD_RELOC_390_GOTPLT12: | |
265 | return &elf_howto_table[(int) R_390_GOTPLT12]; | |
266 | case BFD_RELOC_390_GOTPLT16: | |
267 | return &elf_howto_table[(int) R_390_GOTPLT16]; | |
268 | case BFD_RELOC_390_GOTPLT32: | |
269 | return &elf_howto_table[(int) R_390_GOTPLT32]; | |
270 | case BFD_RELOC_390_GOTPLT64: | |
271 | return &elf_howto_table[(int) R_390_GOTPLT64]; | |
272 | case BFD_RELOC_390_GOTPLTENT: | |
273 | return &elf_howto_table[(int) R_390_GOTPLTENT]; | |
274 | case BFD_RELOC_390_PLTOFF16: | |
275 | return &elf_howto_table[(int) R_390_PLTOFF16]; | |
276 | case BFD_RELOC_390_PLTOFF32: | |
277 | return &elf_howto_table[(int) R_390_PLTOFF32]; | |
278 | case BFD_RELOC_390_PLTOFF64: | |
279 | return &elf_howto_table[(int) R_390_PLTOFF64]; | |
69fc87f1 MS |
280 | case BFD_RELOC_390_TLS_LOAD: |
281 | return &elf_howto_table[(int) R_390_TLS_LOAD]; | |
282 | case BFD_RELOC_390_TLS_GDCALL: | |
283 | return &elf_howto_table[(int) R_390_TLS_GDCALL]; | |
284 | case BFD_RELOC_390_TLS_LDCALL: | |
285 | return &elf_howto_table[(int) R_390_TLS_LDCALL]; | |
286 | case BFD_RELOC_390_TLS_GD64: | |
287 | return &elf_howto_table[(int) R_390_TLS_GD64]; | |
288 | case BFD_RELOC_390_TLS_GOTIE12: | |
289 | return &elf_howto_table[(int) R_390_TLS_GOTIE12]; | |
290 | case BFD_RELOC_390_TLS_GOTIE64: | |
291 | return &elf_howto_table[(int) R_390_TLS_GOTIE64]; | |
292 | case BFD_RELOC_390_TLS_LDM64: | |
293 | return &elf_howto_table[(int) R_390_TLS_LDM64]; | |
294 | case BFD_RELOC_390_TLS_IE64: | |
295 | return &elf_howto_table[(int) R_390_TLS_IE64]; | |
296 | case BFD_RELOC_390_TLS_IEENT: | |
297 | return &elf_howto_table[(int) R_390_TLS_IEENT]; | |
298 | case BFD_RELOC_390_TLS_LE64: | |
299 | return &elf_howto_table[(int) R_390_TLS_LE64]; | |
300 | case BFD_RELOC_390_TLS_LDO64: | |
301 | return &elf_howto_table[(int) R_390_TLS_LDO64]; | |
302 | case BFD_RELOC_390_TLS_DTPMOD: | |
303 | return &elf_howto_table[(int) R_390_TLS_DTPMOD]; | |
304 | case BFD_RELOC_390_TLS_DTPOFF: | |
305 | return &elf_howto_table[(int) R_390_TLS_DTPOFF]; | |
306 | case BFD_RELOC_390_TLS_TPOFF: | |
307 | return &elf_howto_table[(int) R_390_TLS_TPOFF]; | |
bd1ea41b MS |
308 | case BFD_RELOC_390_20: |
309 | return &elf_howto_table[(int) R_390_20]; | |
310 | case BFD_RELOC_390_GOT20: | |
311 | return &elf_howto_table[(int) R_390_GOT20]; | |
312 | case BFD_RELOC_390_GOTPLT20: | |
313 | return &elf_howto_table[(int) R_390_GOTPLT20]; | |
314 | case BFD_RELOC_390_TLS_GOTIE20: | |
315 | return &elf_howto_table[(int) R_390_TLS_GOTIE20]; | |
470b557a AK |
316 | case BFD_RELOC_390_IRELATIVE: |
317 | return &elf_howto_table[(int) R_390_IRELATIVE]; | |
5236c819 MS |
318 | case BFD_RELOC_VTABLE_INHERIT: |
319 | return &elf64_s390_vtinherit_howto; | |
320 | case BFD_RELOC_VTABLE_ENTRY: | |
321 | return &elf64_s390_vtentry_howto; | |
0451c93c MS |
322 | default: |
323 | break; | |
324 | } | |
a85d7ed0 NC |
325 | return 0; |
326 | } | |
327 | ||
157090f7 AM |
328 | static reloc_howto_type * |
329 | elf_s390_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED, | |
330 | const char *r_name) | |
331 | { | |
332 | unsigned int i; | |
333 | ||
334 | for (i = 0; | |
335 | i < sizeof (elf_howto_table) / sizeof (elf_howto_table[0]); | |
336 | i++) | |
337 | if (elf_howto_table[i].name != NULL | |
338 | && strcasecmp (elf_howto_table[i].name, r_name) == 0) | |
339 | return &elf_howto_table[i]; | |
340 | ||
0bc7245a JK |
341 | if (strcasecmp (elf64_s390_vtinherit_howto.name, r_name) == 0) |
342 | return &elf64_s390_vtinherit_howto; | |
343 | if (strcasecmp (elf64_s390_vtentry_howto.name, r_name) == 0) | |
344 | return &elf64_s390_vtentry_howto; | |
157090f7 AM |
345 | |
346 | return NULL; | |
347 | } | |
348 | ||
a85d7ed0 NC |
349 | /* We need to use ELF64_R_TYPE so we have our own copy of this function, |
350 | and elf64-s390.c has its own copy. */ | |
351 | ||
352 | static void | |
2c3fc389 NC |
353 | elf_s390_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, |
354 | arelent *cache_ptr, | |
355 | Elf_Internal_Rela *dst) | |
a85d7ed0 | 356 | { |
d0fb9a8d JJ |
357 | unsigned int r_type = ELF64_R_TYPE(dst->r_info); |
358 | switch (r_type) | |
a85d7ed0 NC |
359 | { |
360 | case R_390_GNU_VTINHERIT: | |
361 | cache_ptr->howto = &elf64_s390_vtinherit_howto; | |
362 | break; | |
363 | ||
364 | case R_390_GNU_VTENTRY: | |
365 | cache_ptr->howto = &elf64_s390_vtentry_howto; | |
366 | break; | |
367 | ||
368 | default: | |
d0fb9a8d JJ |
369 | if (r_type >= sizeof (elf_howto_table) / sizeof (elf_howto_table[0])) |
370 | { | |
695344c0 | 371 | /* xgettext:c-format */ |
4eca0228 AM |
372 | _bfd_error_handler (_("%B: invalid relocation type %d"), |
373 | abfd, (int) r_type); | |
d0fb9a8d JJ |
374 | r_type = R_390_NONE; |
375 | } | |
376 | cache_ptr->howto = &elf_howto_table[r_type]; | |
99c79b2e | 377 | } |
a85d7ed0 NC |
378 | } |
379 | ||
69fc87f1 MS |
380 | /* A relocation function which doesn't do anything. */ |
381 | static bfd_reloc_status_type | |
2c3fc389 NC |
382 | s390_tls_reloc (bfd *abfd ATTRIBUTE_UNUSED, |
383 | arelent *reloc_entry, | |
384 | asymbol *symbol ATTRIBUTE_UNUSED, | |
385 | void * data ATTRIBUTE_UNUSED, | |
386 | asection *input_section, | |
387 | bfd *output_bfd, | |
388 | char **error_message ATTRIBUTE_UNUSED) | |
69fc87f1 MS |
389 | { |
390 | if (output_bfd) | |
391 | reloc_entry->address += input_section->output_offset; | |
392 | return bfd_reloc_ok; | |
393 | } | |
394 | ||
bd1ea41b MS |
395 | /* Handle the large displacement relocs. */ |
396 | static bfd_reloc_status_type | |
2c3fc389 NC |
397 | s390_elf_ldisp_reloc (bfd *abfd, |
398 | arelent *reloc_entry, | |
399 | asymbol *symbol, | |
400 | void * data, | |
401 | asection *input_section, | |
402 | bfd *output_bfd, | |
403 | char **error_message ATTRIBUTE_UNUSED) | |
bd1ea41b MS |
404 | { |
405 | reloc_howto_type *howto = reloc_entry->howto; | |
406 | bfd_vma relocation; | |
407 | bfd_vma insn; | |
408 | ||
409 | if (output_bfd != (bfd *) NULL | |
410 | && (symbol->flags & BSF_SECTION_SYM) == 0 | |
411 | && (! howto->partial_inplace | |
412 | || reloc_entry->addend == 0)) | |
413 | { | |
414 | reloc_entry->address += input_section->output_offset; | |
415 | return bfd_reloc_ok; | |
416 | } | |
417 | if (output_bfd != NULL) | |
418 | return bfd_reloc_continue; | |
419 | ||
07515404 | 420 | if (reloc_entry->address > bfd_get_section_limit (abfd, input_section)) |
bd1ea41b MS |
421 | return bfd_reloc_outofrange; |
422 | ||
423 | relocation = (symbol->value | |
424 | + symbol->section->output_section->vma | |
425 | + symbol->section->output_offset); | |
426 | relocation += reloc_entry->addend; | |
427 | if (howto->pc_relative) | |
428 | { | |
429 | relocation -= (input_section->output_section->vma | |
430 | + input_section->output_offset); | |
431 | relocation -= reloc_entry->address; | |
432 | } | |
433 | ||
68ffbac6 | 434 | insn = bfd_get_32 (abfd, (bfd_byte *) data + reloc_entry->address); |
bd1ea41b MS |
435 | insn |= (relocation & 0xfff) << 16 | (relocation & 0xff000) >> 4; |
436 | bfd_put_32 (abfd, insn, (bfd_byte *) data + reloc_entry->address); | |
437 | ||
438 | if ((bfd_signed_vma) relocation < - 0x80000 | |
439 | || (bfd_signed_vma) relocation > 0x7ffff) | |
440 | return bfd_reloc_overflow; | |
441 | else | |
442 | return bfd_reloc_ok; | |
443 | } | |
444 | ||
b34976b6 | 445 | static bfd_boolean |
2c3fc389 | 446 | elf_s390_is_local_label_name (bfd *abfd, const char *name) |
a85d7ed0 NC |
447 | { |
448 | if (name[0] == '.' && (name[1] == 'X' || name[1] == 'L')) | |
b34976b6 | 449 | return TRUE; |
a85d7ed0 NC |
450 | |
451 | return _bfd_elf_is_local_label_name (abfd, name); | |
452 | } | |
453 | ||
454 | /* Functions for the 390 ELF linker. */ | |
455 | ||
456 | /* The name of the dynamic interpreter. This is put in the .interp | |
457 | section. */ | |
458 | ||
87049b0d | 459 | #define ELF_DYNAMIC_INTERPRETER "/lib/ld64.so.1" |
a85d7ed0 | 460 | |
64285810 MS |
461 | /* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid |
462 | copying dynamic variables from a shared lib into an app's dynbss | |
463 | section, and instead use a dynamic relocation to point into the | |
464 | shared lib. */ | |
465 | #define ELIMINATE_COPY_RELOCS 1 | |
466 | ||
a85d7ed0 NC |
467 | /* The size in bytes of the first entry in the procedure linkage table. */ |
468 | #define PLT_FIRST_ENTRY_SIZE 32 | |
469 | /* The size in bytes of an entry in the procedure linkage table. */ | |
99c79b2e | 470 | #define PLT_ENTRY_SIZE 32 |
a85d7ed0 NC |
471 | |
472 | #define GOT_ENTRY_SIZE 8 | |
473 | ||
470b557a AK |
474 | #define RELA_ENTRY_SIZE sizeof (Elf64_External_Rela) |
475 | ||
a85d7ed0 NC |
476 | /* The first three entries in a procedure linkage table are reserved, |
477 | and the initial contents are unimportant (we zero them out). | |
478 | Subsequent entries look like this. See the SVR4 ABI 386 | |
479 | supplement to see how this works. */ | |
480 | ||
481 | /* For the s390, simple addr offset can only be 0 - 4096. | |
482 | To use the full 16777216 TB address space, several instructions | |
483 | are needed to load an address in a register and execute | |
484 | a branch( or just saving the address) | |
485 | ||
99c79b2e | 486 | Furthermore, only r 0 and 1 are free to use!!! */ |
a85d7ed0 NC |
487 | |
488 | /* The first 3 words in the GOT are then reserved. | |
489 | Word 0 is the address of the dynamic table. | |
490 | Word 1 is a pointer to a structure describing the object | |
491 | Word 2 is used to point to the loader entry address. | |
492 | ||
493 | The code for PLT entries looks like this: | |
494 | ||
495 | The GOT holds the address in the PLT to be executed. | |
496 | The loader then gets: | |
3b67f094 MK |
497 | 48(15) = Pointer to the structure describing the object. |
498 | 56(15) = Offset in symbol table | |
a85d7ed0 NC |
499 | The loader must then find the module where the function is |
500 | and insert the address in the GOT. | |
501 | ||
502 | PLT1: LARL 1,<fn>@GOTENT # 6 bytes Load address of GOT entry in r1 | |
503 | LG 1,0(1) # 6 bytes Load address from GOT in r1 | |
504 | BCR 15,1 # 2 bytes Jump to address | |
505 | RET1: BASR 1,0 # 2 bytes Return from GOT 1st time | |
506 | LGF 1,12(1) # 6 bytes Load offset in symbl table in r1 | |
507 | BRCL 15,-x # 6 bytes Jump to start of PLT | |
a7e28bbe | 508 | .long ? # 4 bytes offset into .rela.plt |
a85d7ed0 NC |
509 | |
510 | Total = 32 bytes per PLT entry | |
511 | Fixup at offset 2: relative address to GOT entry | |
512 | Fixup at offset 22: relative branch to PLT0 | |
a7e28bbe | 513 | Fixup at offset 28: 32 bit offset into .rela.plt |
a85d7ed0 | 514 | |
a7e28bbe AK |
515 | A 32 bit offset into the symbol table is enough. It allows for |
516 | .rela.plt sections up to a size of 2 gigabyte. A single dynamic | |
517 | object (the main program, any shared library) is limited to 4GB in | |
518 | size. Having a .rela.plt of 2GB would already make the .plt | |
519 | section bigger than 8GB. */ | |
a85d7ed0 | 520 | |
9aa17453 AK |
521 | static const bfd_byte elf_s390x_plt_entry[PLT_ENTRY_SIZE] = |
522 | { | |
523 | 0xc0, 0x10, 0x00, 0x00, 0x00, 0x00, /* larl %r1,. */ | |
524 | 0xe3, 0x10, 0x10, 0x00, 0x00, 0x04, /* lg %r1,0(%r1) */ | |
525 | 0x07, 0xf1, /* br %r1 */ | |
526 | 0x0d, 0x10, /* basr %r1,%r0 */ | |
527 | 0xe3, 0x10, 0x10, 0x0c, 0x00, 0x14, /* lgf %r1,12(%r1) */ | |
528 | 0xc0, 0xf4, 0x00, 0x00, 0x00, 0x00, /* jg first plt */ | |
529 | 0x00, 0x00, 0x00, 0x00 /* .long 0x00000000 */ | |
530 | }; | |
a85d7ed0 NC |
531 | |
532 | /* The first PLT entry pushes the offset into the symbol table | |
a7e28bbe AK |
533 | from R1 onto the stack at 56(15) and the loader object info |
534 | at 48(15), loads the loader address in R1 and jumps to it. */ | |
a85d7ed0 NC |
535 | |
536 | /* The first entry in the PLT: | |
537 | ||
538 | PLT0: | |
539 | STG 1,56(15) # r1 contains the offset into the symbol table | |
540 | LARL 1,_GLOBAL_OFFSET_TABLE # load address of global offset table | |
541 | MVC 48(8,15),8(1) # move loader ino (object struct address) to stack | |
542 | LG 1,16(1) # get entry address of loader | |
543 | BCR 15,1 # jump to loader | |
544 | ||
545 | Fixup at offset 8: relative address to start of GOT. */ | |
546 | ||
9aa17453 AK |
547 | static const bfd_byte elf_s390x_first_plt_entry[PLT_FIRST_ENTRY_SIZE] = |
548 | { | |
549 | 0xe3, 0x10, 0xf0, 0x38, 0x00, 0x24, /* stg %r1,56(%r15) */ | |
550 | 0xc0, 0x10, 0x00, 0x00, 0x00, 0x00, /* larl %r1,. */ | |
551 | 0xd2, 0x07, 0xf0, 0x30, 0x10, 0x08, /* mvc 48(8,%r15),8(%r1) */ | |
552 | 0xe3, 0x10, 0x10, 0x10, 0x00, 0x04, /* lg %r1,16(%r1) */ | |
553 | 0x07, 0xf1, /* br %r1 */ | |
554 | 0x07, 0x00, /* nopr %r0 */ | |
555 | 0x07, 0x00, /* nopr %r0 */ | |
556 | 0x07, 0x00 /* nopr %r0 */ | |
557 | }; | |
a85d7ed0 | 558 | |
a85d7ed0 NC |
559 | |
560 | /* s390 ELF linker hash entry. */ | |
561 | ||
562 | struct elf_s390_link_hash_entry | |
563 | { | |
0451c93c | 564 | struct elf_link_hash_entry elf; |
a85d7ed0 | 565 | |
0451c93c | 566 | /* Track dynamic relocs copied for this symbol. */ |
00d8c7a9 | 567 | struct elf_dyn_relocs *dyn_relocs; |
5236c819 MS |
568 | |
569 | /* Number of GOTPLT references for a function. */ | |
570 | bfd_signed_vma gotplt_refcount; | |
69fc87f1 MS |
571 | |
572 | #define GOT_UNKNOWN 0 | |
573 | #define GOT_NORMAL 1 | |
574 | #define GOT_TLS_GD 2 | |
575 | #define GOT_TLS_IE 3 | |
576 | #define GOT_TLS_IE_NLT 3 | |
577 | unsigned char tls_type; | |
470b557a AK |
578 | |
579 | /* For pointer equality reasons we might need to change the symbol | |
580 | type from STT_GNU_IFUNC to STT_FUNC together with its value and | |
581 | section entry. So after alloc_dynrelocs only these values should | |
582 | be used. In order to check whether a symbol is IFUNC use | |
583 | s390_is_ifunc_symbol_p. */ | |
584 | bfd_vma ifunc_resolver_address; | |
585 | asection *ifunc_resolver_section; | |
a85d7ed0 NC |
586 | }; |
587 | ||
69fc87f1 MS |
588 | #define elf_s390_hash_entry(ent) \ |
589 | ((struct elf_s390_link_hash_entry *)(ent)) | |
590 | ||
470b557a AK |
591 | /* This structure represents an entry in the local PLT list needed for |
592 | local IFUNC symbols. */ | |
593 | struct plt_entry | |
594 | { | |
595 | /* The section of the local symbol. | |
596 | Set in relocate_section and used in finish_dynamic_sections. */ | |
597 | asection *sec; | |
598 | ||
599 | union | |
600 | { | |
601 | bfd_signed_vma refcount; | |
602 | bfd_vma offset; | |
603 | } plt; | |
604 | }; | |
605 | ||
0ffa91dd NC |
606 | /* NOTE: Keep this structure in sync with |
607 | the one declared in elf32-s390.c. */ | |
69fc87f1 MS |
608 | struct elf_s390_obj_tdata |
609 | { | |
610 | struct elf_obj_tdata root; | |
611 | ||
470b557a AK |
612 | /* A local PLT is needed for ifunc symbols. */ |
613 | struct plt_entry *local_plt; | |
614 | ||
0ffa91dd | 615 | /* TLS type for each local got entry. */ |
69fc87f1 MS |
616 | char *local_got_tls_type; |
617 | }; | |
618 | ||
619 | #define elf_s390_tdata(abfd) \ | |
620 | ((struct elf_s390_obj_tdata *) (abfd)->tdata.any) | |
621 | ||
470b557a AK |
622 | #define elf_s390_local_plt(abfd) \ |
623 | (elf_s390_tdata (abfd)->local_plt) | |
624 | ||
69fc87f1 MS |
625 | #define elf_s390_local_got_tls_type(abfd) \ |
626 | (elf_s390_tdata (abfd)->local_got_tls_type) | |
627 | ||
0ffa91dd NC |
628 | #define is_s390_elf(bfd) \ |
629 | (bfd_get_flavour (bfd) == bfd_target_elf_flavour \ | |
630 | && elf_tdata (bfd) != NULL \ | |
4dfe6ac6 | 631 | && elf_object_id (bfd) == S390_ELF_DATA) |
0ffa91dd | 632 | |
69fc87f1 | 633 | static bfd_boolean |
62d7a5f6 | 634 | elf_s390_mkobject (bfd *abfd) |
69fc87f1 | 635 | { |
0ffa91dd | 636 | return bfd_elf_allocate_object (abfd, sizeof (struct elf_s390_obj_tdata), |
4dfe6ac6 | 637 | S390_ELF_DATA); |
69fc87f1 MS |
638 | } |
639 | ||
640 | static bfd_boolean | |
2c3fc389 | 641 | elf_s390_object_p (bfd *abfd) |
69fc87f1 | 642 | { |
69fc87f1 MS |
643 | /* Set the right machine number for an s390 elf32 file. */ |
644 | return bfd_default_set_arch_mach (abfd, bfd_arch_s390, bfd_mach_s390_64); | |
645 | } | |
646 | ||
a85d7ed0 NC |
647 | /* s390 ELF linker hash table. */ |
648 | ||
649 | struct elf_s390_link_hash_table | |
650 | { | |
0451c93c | 651 | struct elf_link_hash_table elf; |
a85d7ed0 | 652 | |
0451c93c | 653 | /* Short-cuts to get to dynamic linker sections. */ |
470b557a | 654 | asection *irelifunc; |
ec338859 | 655 | |
69fc87f1 MS |
656 | union { |
657 | bfd_signed_vma refcount; | |
658 | bfd_vma offset; | |
659 | } tls_ldm_got; | |
660 | ||
87d72d41 AM |
661 | /* Small local sym cache. */ |
662 | struct sym_cache sym_cache; | |
0451c93c | 663 | }; |
a85d7ed0 NC |
664 | |
665 | /* Get the s390 ELF linker hash table from a link_info structure. */ | |
666 | ||
ceada896 AA |
667 | #define elf_s390_hash_table(p) \ |
668 | (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \ | |
669 | == S390_ELF_DATA ? ((struct elf_s390_link_hash_table *) ((p)->hash)) : NULL) | |
a85d7ed0 | 670 | |
470b557a AK |
671 | #define ELF64 1 |
672 | #include "elf-s390-common.c" | |
673 | ||
a85d7ed0 NC |
674 | /* Create an entry in an s390 ELF linker hash table. */ |
675 | ||
676 | static struct bfd_hash_entry * | |
2c3fc389 NC |
677 | link_hash_newfunc (struct bfd_hash_entry *entry, |
678 | struct bfd_hash_table *table, | |
679 | const char *string) | |
a85d7ed0 | 680 | { |
a85d7ed0 NC |
681 | /* Allocate the structure if it has not already been allocated by a |
682 | subclass. */ | |
0451c93c MS |
683 | if (entry == NULL) |
684 | { | |
685 | entry = bfd_hash_allocate (table, | |
686 | sizeof (struct elf_s390_link_hash_entry)); | |
687 | if (entry == NULL) | |
688 | return entry; | |
689 | } | |
a85d7ed0 NC |
690 | |
691 | /* Call the allocation method of the superclass. */ | |
0451c93c MS |
692 | entry = _bfd_elf_link_hash_newfunc (entry, table, string); |
693 | if (entry != NULL) | |
a85d7ed0 | 694 | { |
0451c93c MS |
695 | struct elf_s390_link_hash_entry *eh; |
696 | ||
697 | eh = (struct elf_s390_link_hash_entry *) entry; | |
698 | eh->dyn_relocs = NULL; | |
5236c819 | 699 | eh->gotplt_refcount = 0; |
69fc87f1 | 700 | eh->tls_type = GOT_UNKNOWN; |
470b557a AK |
701 | eh->ifunc_resolver_address = 0; |
702 | eh->ifunc_resolver_section = NULL; | |
a85d7ed0 NC |
703 | } |
704 | ||
0451c93c | 705 | return entry; |
a85d7ed0 NC |
706 | } |
707 | ||
708 | /* Create an s390 ELF linker hash table. */ | |
709 | ||
710 | static struct bfd_link_hash_table * | |
2c3fc389 | 711 | elf_s390_link_hash_table_create (bfd *abfd) |
a85d7ed0 NC |
712 | { |
713 | struct elf_s390_link_hash_table *ret; | |
dc810e39 | 714 | bfd_size_type amt = sizeof (struct elf_s390_link_hash_table); |
a85d7ed0 | 715 | |
7bf52ea2 | 716 | ret = (struct elf_s390_link_hash_table *) bfd_zmalloc (amt); |
0451c93c | 717 | if (ret == NULL) |
a85d7ed0 NC |
718 | return NULL; |
719 | ||
66eb6687 | 720 | if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd, link_hash_newfunc, |
4dfe6ac6 NC |
721 | sizeof (struct elf_s390_link_hash_entry), |
722 | S390_ELF_DATA)) | |
a85d7ed0 | 723 | { |
e2d34d7d | 724 | free (ret); |
a85d7ed0 NC |
725 | return NULL; |
726 | } | |
727 | ||
0451c93c MS |
728 | return &ret->elf.root; |
729 | } | |
730 | ||
0451c93c MS |
731 | /* Copy the extra info we tack onto an elf_link_hash_entry. */ |
732 | ||
733 | static void | |
2c3fc389 NC |
734 | elf_s390_copy_indirect_symbol (struct bfd_link_info *info, |
735 | struct elf_link_hash_entry *dir, | |
736 | struct elf_link_hash_entry *ind) | |
0451c93c MS |
737 | { |
738 | struct elf_s390_link_hash_entry *edir, *eind; | |
739 | ||
740 | edir = (struct elf_s390_link_hash_entry *) dir; | |
741 | eind = (struct elf_s390_link_hash_entry *) ind; | |
742 | ||
743 | if (eind->dyn_relocs != NULL) | |
744 | { | |
745 | if (edir->dyn_relocs != NULL) | |
746 | { | |
00d8c7a9 AK |
747 | struct elf_dyn_relocs **pp; |
748 | struct elf_dyn_relocs *p; | |
0451c93c | 749 | |
fcfa13d2 | 750 | /* Add reloc counts against the indirect sym to the direct sym |
0451c93c MS |
751 | list. Merge any entries against the same section. */ |
752 | for (pp = &eind->dyn_relocs; (p = *pp) != NULL; ) | |
753 | { | |
00d8c7a9 | 754 | struct elf_dyn_relocs *q; |
0451c93c MS |
755 | |
756 | for (q = edir->dyn_relocs; q != NULL; q = q->next) | |
757 | if (q->sec == p->sec) | |
758 | { | |
759 | q->pc_count += p->pc_count; | |
760 | q->count += p->count; | |
761 | *pp = p->next; | |
762 | break; | |
763 | } | |
764 | if (q == NULL) | |
765 | pp = &p->next; | |
766 | } | |
767 | *pp = edir->dyn_relocs; | |
768 | } | |
769 | ||
770 | edir->dyn_relocs = eind->dyn_relocs; | |
771 | eind->dyn_relocs = NULL; | |
772 | } | |
773 | ||
69fc87f1 MS |
774 | if (ind->root.type == bfd_link_hash_indirect |
775 | && dir->got.refcount <= 0) | |
776 | { | |
777 | edir->tls_type = eind->tls_type; | |
778 | eind->tls_type = GOT_UNKNOWN; | |
779 | } | |
780 | ||
64285810 MS |
781 | if (ELIMINATE_COPY_RELOCS |
782 | && ind->root.type != bfd_link_hash_indirect | |
f5385ebf AM |
783 | && dir->dynamic_adjusted) |
784 | { | |
785 | /* If called to transfer flags for a weakdef during processing | |
786 | of elf_adjust_dynamic_symbol, don't copy non_got_ref. | |
787 | We clear it ourselves for ELIMINATE_COPY_RELOCS. */ | |
788 | dir->ref_dynamic |= ind->ref_dynamic; | |
789 | dir->ref_regular |= ind->ref_regular; | |
790 | dir->ref_regular_nonweak |= ind->ref_regular_nonweak; | |
791 | dir->needs_plt |= ind->needs_plt; | |
792 | } | |
64285810 | 793 | else |
fcfa13d2 | 794 | _bfd_elf_link_hash_copy_indirect (info, dir, ind); |
0451c93c | 795 | } |
a85d7ed0 | 796 | |
69fc87f1 | 797 | static int |
2c3fc389 NC |
798 | elf_s390_tls_transition (struct bfd_link_info *info, |
799 | int r_type, | |
800 | int is_local) | |
69fc87f1 | 801 | { |
0e1862bb | 802 | if (bfd_link_pic (info)) |
69fc87f1 MS |
803 | return r_type; |
804 | ||
805 | switch (r_type) | |
806 | { | |
807 | case R_390_TLS_GD64: | |
808 | case R_390_TLS_IE64: | |
809 | if (is_local) | |
810 | return R_390_TLS_LE64; | |
811 | return R_390_TLS_IE64; | |
812 | case R_390_TLS_GOTIE64: | |
813 | if (is_local) | |
814 | return R_390_TLS_LE64; | |
815 | return R_390_TLS_GOTIE64; | |
816 | case R_390_TLS_LDM64: | |
817 | return R_390_TLS_LE64; | |
818 | } | |
819 | ||
820 | return r_type; | |
821 | } | |
822 | ||
a85d7ed0 NC |
823 | /* Look through the relocs for a section during the first phase, and |
824 | allocate space in the global offset table or procedure linkage | |
825 | table. */ | |
826 | ||
b34976b6 | 827 | static bfd_boolean |
4dfe6ac6 NC |
828 | elf_s390_check_relocs (bfd *abfd, |
829 | struct bfd_link_info *info, | |
830 | asection *sec, | |
831 | const Elf_Internal_Rela *relocs) | |
a85d7ed0 | 832 | { |
0451c93c | 833 | struct elf_s390_link_hash_table *htab; |
a85d7ed0 NC |
834 | Elf_Internal_Shdr *symtab_hdr; |
835 | struct elf_link_hash_entry **sym_hashes; | |
a85d7ed0 NC |
836 | const Elf_Internal_Rela *rel; |
837 | const Elf_Internal_Rela *rel_end; | |
a85d7ed0 | 838 | asection *sreloc; |
5236c819 | 839 | bfd_signed_vma *local_got_refcounts; |
69fc87f1 | 840 | int tls_type, old_tls_type; |
a85d7ed0 | 841 | |
0e1862bb | 842 | if (bfd_link_relocatable (info)) |
b34976b6 | 843 | return TRUE; |
a85d7ed0 | 844 | |
0ffa91dd NC |
845 | BFD_ASSERT (is_s390_elf (abfd)); |
846 | ||
0451c93c | 847 | htab = elf_s390_hash_table (info); |
4dfe6ac6 NC |
848 | if (htab == NULL) |
849 | return FALSE; | |
850 | ||
0ffa91dd | 851 | symtab_hdr = &elf_symtab_hdr (abfd); |
a85d7ed0 | 852 | sym_hashes = elf_sym_hashes (abfd); |
5236c819 | 853 | local_got_refcounts = elf_local_got_refcounts (abfd); |
a85d7ed0 | 854 | |
a85d7ed0 NC |
855 | sreloc = NULL; |
856 | ||
857 | rel_end = relocs + sec->reloc_count; | |
858 | for (rel = relocs; rel < rel_end; rel++) | |
859 | { | |
69fc87f1 | 860 | unsigned int r_type; |
a85d7ed0 NC |
861 | unsigned long r_symndx; |
862 | struct elf_link_hash_entry *h; | |
470b557a | 863 | Elf_Internal_Sym *isym; |
a85d7ed0 NC |
864 | |
865 | r_symndx = ELF64_R_SYM (rel->r_info); | |
866 | ||
0451c93c MS |
867 | if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr)) |
868 | { | |
695344c0 | 869 | /* xgettext:c-format */ |
4eca0228 AM |
870 | _bfd_error_handler (_("%B: bad symbol index: %d"), |
871 | abfd, r_symndx); | |
b34976b6 | 872 | return FALSE; |
0451c93c MS |
873 | } |
874 | ||
a85d7ed0 | 875 | if (r_symndx < symtab_hdr->sh_info) |
470b557a AK |
876 | { |
877 | /* A local symbol. */ | |
878 | isym = bfd_sym_from_r_symndx (&htab->sym_cache, | |
879 | abfd, r_symndx); | |
880 | if (isym == NULL) | |
881 | return FALSE; | |
882 | ||
883 | if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC) | |
884 | { | |
885 | struct plt_entry *plt; | |
886 | ||
0cb79d69 AK |
887 | if (htab->elf.dynobj == NULL) |
888 | htab->elf.dynobj = abfd; | |
889 | ||
470b557a AK |
890 | if (!s390_elf_create_ifunc_sections (htab->elf.dynobj, info)) |
891 | return FALSE; | |
892 | ||
893 | if (local_got_refcounts == NULL) | |
894 | { | |
895 | if (!elf_s390_allocate_local_syminfo (abfd, symtab_hdr)) | |
896 | return FALSE; | |
897 | local_got_refcounts = elf_local_got_refcounts (abfd); | |
898 | } | |
899 | plt = elf_s390_local_plt (abfd); | |
900 | plt[r_symndx].plt.refcount++; | |
901 | } | |
902 | h = NULL; | |
903 | } | |
a85d7ed0 | 904 | else |
973a3492 L |
905 | { |
906 | h = sym_hashes[r_symndx - symtab_hdr->sh_info]; | |
907 | while (h->root.type == bfd_link_hash_indirect | |
908 | || h->root.type == bfd_link_hash_warning) | |
909 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
81fbe831 AM |
910 | |
911 | /* PR15323, ref flags aren't set for references in the same | |
912 | object. */ | |
913 | h->root.non_ir_ref = 1; | |
973a3492 | 914 | } |
a85d7ed0 | 915 | |
5236c819 MS |
916 | /* Create got section and local_got_refcounts array if they |
917 | are needed. */ | |
69fc87f1 MS |
918 | r_type = elf_s390_tls_transition (info, |
919 | ELF64_R_TYPE (rel->r_info), | |
920 | h == NULL); | |
921 | switch (r_type) | |
a85d7ed0 NC |
922 | { |
923 | case R_390_GOT12: | |
947216bf | 924 | case R_390_GOT16: |
bd1ea41b | 925 | case R_390_GOT20: |
a85d7ed0 NC |
926 | case R_390_GOT32: |
927 | case R_390_GOT64: | |
928 | case R_390_GOTENT: | |
5236c819 MS |
929 | case R_390_GOTPLT12: |
930 | case R_390_GOTPLT16: | |
bd1ea41b | 931 | case R_390_GOTPLT20: |
5236c819 MS |
932 | case R_390_GOTPLT32: |
933 | case R_390_GOTPLT64: | |
934 | case R_390_GOTPLTENT: | |
69fc87f1 MS |
935 | case R_390_TLS_GD64: |
936 | case R_390_TLS_GOTIE12: | |
bd1ea41b | 937 | case R_390_TLS_GOTIE20: |
69fc87f1 MS |
938 | case R_390_TLS_GOTIE64: |
939 | case R_390_TLS_IEENT: | |
940 | case R_390_TLS_IE64: | |
941 | case R_390_TLS_LDM64: | |
5236c819 MS |
942 | if (h == NULL |
943 | && local_got_refcounts == NULL) | |
a85d7ed0 | 944 | { |
470b557a | 945 | if (!elf_s390_allocate_local_syminfo (abfd, symtab_hdr)) |
5236c819 | 946 | return FALSE; |
470b557a | 947 | local_got_refcounts = elf_local_got_refcounts (abfd); |
a85d7ed0 | 948 | } |
470b557a | 949 | |
5236c819 MS |
950 | /* Fall through. */ |
951 | case R_390_GOTOFF16: | |
952 | case R_390_GOTOFF32: | |
953 | case R_390_GOTOFF64: | |
0451c93c MS |
954 | case R_390_GOTPC: |
955 | case R_390_GOTPCDBL: | |
f41345a7 | 956 | if (htab->elf.sgot == NULL) |
0451c93c MS |
957 | { |
958 | if (htab->elf.dynobj == NULL) | |
959 | htab->elf.dynobj = abfd; | |
ce558b89 | 960 | if (!_bfd_elf_create_got_section (htab->elf.dynobj, info)) |
b34976b6 | 961 | return FALSE; |
0451c93c | 962 | } |
5236c819 MS |
963 | } |
964 | ||
470b557a AK |
965 | if (h != NULL) |
966 | { | |
967 | if (htab->elf.dynobj == NULL) | |
968 | htab->elf.dynobj = abfd; | |
969 | if (!s390_elf_create_ifunc_sections (htab->elf.dynobj, info)) | |
970 | return FALSE; | |
971 | ||
972 | /* Make sure an IFUNC symbol defined in a non-shared object | |
973 | always gets a PLT slot. */ | |
974 | if (s390_is_ifunc_symbol_p (h) && h->def_regular) | |
975 | { | |
976 | /* The symbol is called by the dynamic loader in order | |
977 | to resolve the relocation. So it is in fact also | |
978 | referenced. */ | |
979 | h->ref_regular = 1; | |
980 | h->needs_plt = 1; | |
981 | } | |
982 | } | |
983 | ||
69fc87f1 | 984 | switch (r_type) |
5236c819 | 985 | { |
5236c819 MS |
986 | case R_390_GOTPC: |
987 | case R_390_GOTPCDBL: | |
470b557a AK |
988 | /* These relocs do not need a GOT slot. They just load the |
989 | GOT pointer itself or address something else relative to | |
990 | the GOT. Since the GOT pointer has been set up above we | |
991 | are done. */ | |
0451c93c | 992 | break; |
d47b13e0 AK |
993 | case R_390_GOTOFF16: |
994 | case R_390_GOTOFF32: | |
995 | case R_390_GOTOFF64: | |
996 | if (h == NULL || !s390_is_ifunc_symbol_p (h) || !h->def_regular) | |
997 | break; | |
1a0670f3 | 998 | /* Fall through. */ |
ec338859 | 999 | |
fb798c50 | 1000 | case R_390_PLT12DBL: |
947216bf | 1001 | case R_390_PLT16DBL: |
fb798c50 | 1002 | case R_390_PLT24DBL: |
a85d7ed0 NC |
1003 | case R_390_PLT32: |
1004 | case R_390_PLT32DBL: | |
1005 | case R_390_PLT64: | |
5236c819 MS |
1006 | case R_390_PLTOFF16: |
1007 | case R_390_PLTOFF32: | |
1008 | case R_390_PLTOFF64: | |
a85d7ed0 | 1009 | /* This symbol requires a procedure linkage table entry. We |
947216bf AM |
1010 | actually build the entry in adjust_dynamic_symbol, |
1011 | because this might be a case of linking PIC code which is | |
1012 | never referenced by a dynamic object, in which case we | |
1013 | don't need to generate a procedure linkage table entry | |
1014 | after all. */ | |
ec338859 | 1015 | |
a85d7ed0 | 1016 | /* If this is a local symbol, we resolve it directly without |
947216bf | 1017 | creating a procedure linkage table entry. */ |
5236c819 MS |
1018 | if (h != NULL) |
1019 | { | |
f5385ebf | 1020 | h->needs_plt = 1; |
5236c819 MS |
1021 | h->plt.refcount += 1; |
1022 | } | |
1023 | break; | |
ec338859 | 1024 | |
5236c819 MS |
1025 | case R_390_GOTPLT12: |
1026 | case R_390_GOTPLT16: | |
bd1ea41b | 1027 | case R_390_GOTPLT20: |
5236c819 MS |
1028 | case R_390_GOTPLT32: |
1029 | case R_390_GOTPLT64: | |
1030 | case R_390_GOTPLTENT: | |
1031 | /* This symbol requires either a procedure linkage table entry | |
1032 | or an entry in the local got. We actually build the entry | |
1033 | in adjust_dynamic_symbol because whether this is really a | |
1034 | global reference can change and with it the fact if we have | |
1035 | to create a plt entry or a local got entry. To be able to | |
1036 | make a once global symbol a local one we have to keep track | |
1037 | of the number of gotplt references that exist for this | |
1038 | symbol. */ | |
1039 | if (h != NULL) | |
1040 | { | |
1041 | ((struct elf_s390_link_hash_entry *) h)->gotplt_refcount++; | |
f5385ebf | 1042 | h->needs_plt = 1; |
5236c819 MS |
1043 | h->plt.refcount += 1; |
1044 | } | |
69fc87f1 MS |
1045 | else |
1046 | local_got_refcounts[r_symndx] += 1; | |
1047 | break; | |
1048 | ||
1049 | case R_390_TLS_LDM64: | |
1050 | htab->tls_ldm_got.refcount += 1; | |
1051 | break; | |
1052 | ||
1053 | case R_390_TLS_IE64: | |
1054 | case R_390_TLS_GOTIE12: | |
bd1ea41b | 1055 | case R_390_TLS_GOTIE20: |
69fc87f1 MS |
1056 | case R_390_TLS_GOTIE64: |
1057 | case R_390_TLS_IEENT: | |
0e1862bb | 1058 | if (bfd_link_pic (info)) |
69fc87f1 MS |
1059 | info->flags |= DF_STATIC_TLS; |
1060 | /* Fall through */ | |
1061 | ||
1062 | case R_390_GOT12: | |
26e41594 | 1063 | case R_390_GOT16: |
bd1ea41b | 1064 | case R_390_GOT20: |
69fc87f1 MS |
1065 | case R_390_GOT32: |
1066 | case R_390_GOT64: | |
1067 | case R_390_GOTENT: | |
1068 | case R_390_TLS_GD64: | |
1069 | /* This symbol requires a global offset table entry. */ | |
1070 | switch (r_type) | |
1071 | { | |
1072 | default: | |
1073 | case R_390_GOT12: | |
1074 | case R_390_GOT16: | |
bd1ea41b | 1075 | case R_390_GOT20: |
69fc87f1 MS |
1076 | case R_390_GOT32: |
1077 | case R_390_GOTENT: | |
1078 | tls_type = GOT_NORMAL; | |
1079 | break; | |
1080 | case R_390_TLS_GD64: | |
1081 | tls_type = GOT_TLS_GD; | |
1082 | break; | |
1083 | case R_390_TLS_IE64: | |
1084 | case R_390_TLS_GOTIE64: | |
1085 | tls_type = GOT_TLS_IE; | |
1086 | break; | |
1087 | case R_390_TLS_GOTIE12: | |
bd1ea41b | 1088 | case R_390_TLS_GOTIE20: |
69fc87f1 MS |
1089 | case R_390_TLS_IEENT: |
1090 | tls_type = GOT_TLS_IE_NLT; | |
1091 | break; | |
1092 | } | |
1093 | ||
1094 | if (h != NULL) | |
1095 | { | |
1096 | h->got.refcount += 1; | |
1097 | old_tls_type = elf_s390_hash_entry(h)->tls_type; | |
1098 | } | |
5236c819 MS |
1099 | else |
1100 | { | |
1101 | local_got_refcounts[r_symndx] += 1; | |
69fc87f1 | 1102 | old_tls_type = elf_s390_local_got_tls_type (abfd) [r_symndx]; |
5236c819 | 1103 | } |
69fc87f1 MS |
1104 | /* If a TLS symbol is accessed using IE at least once, |
1105 | there is no point to use dynamic model for it. */ | |
1106 | if (old_tls_type != tls_type && old_tls_type != GOT_UNKNOWN) | |
1107 | { | |
1108 | if (old_tls_type == GOT_NORMAL || tls_type == GOT_NORMAL) | |
1109 | { | |
4eca0228 | 1110 | _bfd_error_handler |
695344c0 | 1111 | /* xgettext:c-format */ |
d003868e AM |
1112 | (_("%B: `%s' accessed both as normal and thread local symbol"), |
1113 | abfd, h->root.root.string); | |
69fc87f1 MS |
1114 | return FALSE; |
1115 | } | |
1116 | if (old_tls_type > tls_type) | |
1117 | tls_type = old_tls_type; | |
1118 | } | |
1119 | ||
1120 | if (old_tls_type != tls_type) | |
1121 | { | |
1122 | if (h != NULL) | |
1123 | elf_s390_hash_entry (h)->tls_type = tls_type; | |
1124 | else | |
1125 | elf_s390_local_got_tls_type (abfd) [r_symndx] = tls_type; | |
1126 | } | |
1127 | ||
1128 | if (r_type != R_390_TLS_IE64) | |
1129 | break; | |
1130 | /* Fall through */ | |
1131 | ||
1132 | case R_390_TLS_LE64: | |
e00d879a AK |
1133 | /* For static linking and executables this reloc will be |
1134 | calculated at linktime otherwise a TLS_TPOFF runtime | |
1135 | reloc will be generated. */ | |
0e1862bb | 1136 | if (r_type == R_390_TLS_LE64 && bfd_link_pie (info)) |
e00d879a AK |
1137 | break; |
1138 | ||
0e1862bb | 1139 | if (!bfd_link_pic (info)) |
69fc87f1 MS |
1140 | break; |
1141 | info->flags |= DF_STATIC_TLS; | |
1142 | /* Fall through */ | |
ec338859 | 1143 | |
947216bf AM |
1144 | case R_390_8: |
1145 | case R_390_16: | |
a85d7ed0 NC |
1146 | case R_390_32: |
1147 | case R_390_64: | |
fb798c50 | 1148 | case R_390_PC12DBL: |
947216bf AM |
1149 | case R_390_PC16: |
1150 | case R_390_PC16DBL: | |
fb798c50 | 1151 | case R_390_PC24DBL: |
a85d7ed0 NC |
1152 | case R_390_PC32: |
1153 | case R_390_PC32DBL: | |
1154 | case R_390_PC64: | |
99ba5125 | 1155 | if (h != NULL && bfd_link_executable (info)) |
0451c93c MS |
1156 | { |
1157 | /* If this reloc is in a read-only section, we might | |
1158 | need a copy reloc. We can't check reliably at this | |
1159 | stage whether the section is read-only, as input | |
1160 | sections have not yet been mapped to output sections. | |
1161 | Tentatively set the flag for now, and correct in | |
1162 | adjust_dynamic_symbol. */ | |
f5385ebf | 1163 | h->non_got_ref = 1; |
ec338859 | 1164 | |
0e1862bb | 1165 | if (!bfd_link_pic (info)) |
470b557a AK |
1166 | { |
1167 | /* We may need a .plt entry if the function this reloc | |
1168 | refers to is in a shared lib. */ | |
1169 | h->plt.refcount += 1; | |
1170 | } | |
0451c93c | 1171 | } |
ec338859 | 1172 | |
a85d7ed0 | 1173 | /* If we are creating a shared library, and this is a reloc |
0451c93c MS |
1174 | against a global symbol, or a non PC relative reloc |
1175 | against a local symbol, then we need to copy the reloc | |
1176 | into the shared library. However, if we are linking with | |
1177 | -Bsymbolic, we do not need to copy a reloc against a | |
1178 | global symbol which is defined in an object we are | |
1179 | including in the link (i.e., DEF_REGULAR is set). At | |
1180 | this point we have not seen all the input files, so it is | |
1181 | possible that DEF_REGULAR is not set now but will be set | |
1182 | later (it is never cleared). In case of a weak definition, | |
1183 | DEF_REGULAR may be cleared later by a strong definition in | |
1184 | a shared library. We account for that possibility below by | |
1185 | storing information in the relocs_copied field of the hash | |
1186 | table entry. A similar situation occurs when creating | |
1187 | shared libraries and symbol visibility changes render the | |
1188 | symbol local. | |
1189 | ||
1190 | If on the other hand, we are creating an executable, we | |
1191 | may need to keep relocations for symbols satisfied by a | |
1192 | dynamic library if we manage to avoid copy relocs for the | |
1193 | symbol. */ | |
0e1862bb | 1194 | if ((bfd_link_pic (info) |
0451c93c MS |
1195 | && (sec->flags & SEC_ALLOC) != 0 |
1196 | && ((ELF64_R_TYPE (rel->r_info) != R_390_PC16 | |
fb798c50 | 1197 | && ELF64_R_TYPE (rel->r_info) != R_390_PC12DBL |
0451c93c | 1198 | && ELF64_R_TYPE (rel->r_info) != R_390_PC16DBL |
fb798c50 | 1199 | && ELF64_R_TYPE (rel->r_info) != R_390_PC24DBL |
0451c93c MS |
1200 | && ELF64_R_TYPE (rel->r_info) != R_390_PC32 |
1201 | && ELF64_R_TYPE (rel->r_info) != R_390_PC32DBL | |
1202 | && ELF64_R_TYPE (rel->r_info) != R_390_PC64) | |
1203 | || (h != NULL | |
8c21ca21 | 1204 | && (! SYMBOLIC_BIND (info, h) |
0451c93c | 1205 | || h->root.type == bfd_link_hash_defweak |
f5385ebf | 1206 | || !h->def_regular)))) |
64285810 | 1207 | || (ELIMINATE_COPY_RELOCS |
0e1862bb | 1208 | && !bfd_link_pic (info) |
0451c93c MS |
1209 | && (sec->flags & SEC_ALLOC) != 0 |
1210 | && h != NULL | |
1211 | && (h->root.type == bfd_link_hash_defweak | |
f5385ebf | 1212 | || !h->def_regular))) |
a85d7ed0 | 1213 | { |
00d8c7a9 AK |
1214 | struct elf_dyn_relocs *p; |
1215 | struct elf_dyn_relocs **head; | |
ec338859 | 1216 | |
0451c93c MS |
1217 | /* We must copy these reloc types into the output file. |
1218 | Create a reloc section in dynobj and make room for | |
1219 | this reloc. */ | |
a85d7ed0 NC |
1220 | if (sreloc == NULL) |
1221 | { | |
440e9cd2 AK |
1222 | if (htab->elf.dynobj == NULL) |
1223 | htab->elf.dynobj = abfd; | |
1224 | ||
83bac4b0 NC |
1225 | sreloc = _bfd_elf_make_dynamic_reloc_section |
1226 | (sec, htab->elf.dynobj, 3, abfd, /*rela?*/ TRUE); | |
ec338859 | 1227 | |
a85d7ed0 | 1228 | if (sreloc == NULL) |
83bac4b0 | 1229 | return FALSE; |
a85d7ed0 | 1230 | } |
ec338859 | 1231 | |
0451c93c MS |
1232 | /* If this is a global symbol, we count the number of |
1233 | relocations we need for this symbol. */ | |
1234 | if (h != NULL) | |
a85d7ed0 | 1235 | { |
ec338859 | 1236 | head = &((struct elf_s390_link_hash_entry *) h)->dyn_relocs; |
0451c93c MS |
1237 | } |
1238 | else | |
1239 | { | |
ec338859 AM |
1240 | /* Track dynamic relocs needed for local syms too. |
1241 | We really need local syms available to do this | |
1242 | easily. Oh well. */ | |
ec338859 | 1243 | asection *s; |
6edfbbad DJ |
1244 | void *vpp; |
1245 | ||
87d72d41 AM |
1246 | isym = bfd_sym_from_r_symndx (&htab->sym_cache, |
1247 | abfd, r_symndx); | |
1248 | if (isym == NULL) | |
b34976b6 | 1249 | return FALSE; |
ec338859 | 1250 | |
87d72d41 AM |
1251 | s = bfd_section_from_elf_index (abfd, isym->st_shndx); |
1252 | if (s == NULL) | |
1253 | s = sec; | |
1254 | ||
6edfbbad | 1255 | vpp = &elf_section_data (s)->local_dynrel; |
00d8c7a9 | 1256 | head = (struct elf_dyn_relocs **) vpp; |
ec338859 AM |
1257 | } |
1258 | ||
1259 | p = *head; | |
1260 | if (p == NULL || p->sec != sec) | |
1261 | { | |
1262 | bfd_size_type amt = sizeof *p; | |
00d8c7a9 | 1263 | p = ((struct elf_dyn_relocs *) |
ec338859 AM |
1264 | bfd_alloc (htab->elf.dynobj, amt)); |
1265 | if (p == NULL) | |
b34976b6 | 1266 | return FALSE; |
ec338859 AM |
1267 | p->next = *head; |
1268 | *head = p; | |
1269 | p->sec = sec; | |
1270 | p->count = 0; | |
1271 | p->pc_count = 0; | |
a85d7ed0 | 1272 | } |
ec338859 AM |
1273 | |
1274 | p->count += 1; | |
1275 | if (ELF64_R_TYPE (rel->r_info) == R_390_PC16 | |
fb798c50 AK |
1276 | || ELF64_R_TYPE (rel->r_info) == R_390_PC12DBL |
1277 | || ELF64_R_TYPE (rel->r_info) == R_390_PC16DBL | |
ec338859 AM |
1278 | || ELF64_R_TYPE (rel->r_info) == R_390_PC16DBL |
1279 | || ELF64_R_TYPE (rel->r_info) == R_390_PC32 | |
1280 | || ELF64_R_TYPE (rel->r_info) == R_390_PC32DBL | |
1281 | || ELF64_R_TYPE (rel->r_info) == R_390_PC64) | |
1282 | p->pc_count += 1; | |
a85d7ed0 | 1283 | } |
a85d7ed0 | 1284 | break; |
ec338859 | 1285 | |
a85d7ed0 NC |
1286 | /* This relocation describes the C++ object vtable hierarchy. |
1287 | Reconstruct it for later use during GC. */ | |
947216bf | 1288 | case R_390_GNU_VTINHERIT: |
c152c796 | 1289 | if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset)) |
b34976b6 | 1290 | return FALSE; |
947216bf | 1291 | break; |
ec338859 | 1292 | |
a85d7ed0 NC |
1293 | /* This relocation describes which C++ vtable entries are actually |
1294 | used. Record for later use during GC. */ | |
947216bf | 1295 | case R_390_GNU_VTENTRY: |
d17e0c6e JB |
1296 | BFD_ASSERT (h != NULL); |
1297 | if (h != NULL | |
1298 | && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend)) | |
b34976b6 | 1299 | return FALSE; |
947216bf | 1300 | break; |
ec338859 | 1301 | |
a85d7ed0 NC |
1302 | default: |
1303 | break; | |
1304 | } | |
1305 | } | |
1306 | ||
b34976b6 | 1307 | return TRUE; |
a85d7ed0 NC |
1308 | } |
1309 | ||
1310 | /* Return the section that should be marked against GC for a given | |
1311 | relocation. */ | |
1312 | ||
1313 | static asection * | |
07adf181 AM |
1314 | elf_s390_gc_mark_hook (asection *sec, |
1315 | struct bfd_link_info *info, | |
1316 | Elf_Internal_Rela *rel, | |
1317 | struct elf_link_hash_entry *h, | |
1318 | Elf_Internal_Sym *sym) | |
a85d7ed0 NC |
1319 | { |
1320 | if (h != NULL) | |
07adf181 AM |
1321 | switch (ELF64_R_TYPE (rel->r_info)) |
1322 | { | |
1323 | case R_390_GNU_VTINHERIT: | |
1324 | case R_390_GNU_VTENTRY: | |
1325 | return NULL; | |
1326 | } | |
1327 | ||
1328 | return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym); | |
a85d7ed0 NC |
1329 | } |
1330 | ||
1331 | /* Update the got entry reference counts for the section being removed. */ | |
1332 | ||
b34976b6 | 1333 | static bfd_boolean |
07adf181 AM |
1334 | elf_s390_gc_sweep_hook (bfd *abfd, |
1335 | struct bfd_link_info *info, | |
1336 | asection *sec, | |
1337 | const Elf_Internal_Rela *relocs) | |
a85d7ed0 | 1338 | { |
4dfe6ac6 | 1339 | struct elf_s390_link_hash_table *htab; |
a85d7ed0 NC |
1340 | Elf_Internal_Shdr *symtab_hdr; |
1341 | struct elf_link_hash_entry **sym_hashes; | |
1342 | bfd_signed_vma *local_got_refcounts; | |
1343 | const Elf_Internal_Rela *rel, *relend; | |
a85d7ed0 | 1344 | |
0e1862bb | 1345 | if (bfd_link_relocatable (info)) |
7dda2462 TG |
1346 | return TRUE; |
1347 | ||
4dfe6ac6 NC |
1348 | htab = elf_s390_hash_table (info); |
1349 | if (htab == NULL) | |
1350 | return FALSE; | |
1351 | ||
ec338859 | 1352 | elf_section_data (sec)->local_dynrel = NULL; |
a85d7ed0 | 1353 | |
0ffa91dd | 1354 | symtab_hdr = &elf_symtab_hdr (abfd); |
0451c93c MS |
1355 | sym_hashes = elf_sym_hashes (abfd); |
1356 | local_got_refcounts = elf_local_got_refcounts (abfd); | |
a85d7ed0 NC |
1357 | |
1358 | relend = relocs + sec->reloc_count; | |
1359 | for (rel = relocs; rel < relend; rel++) | |
5236c819 | 1360 | { |
26e41594 AM |
1361 | unsigned long r_symndx; |
1362 | unsigned int r_type; | |
1363 | struct elf_link_hash_entry *h = NULL; | |
1364 | ||
5236c819 | 1365 | r_symndx = ELF64_R_SYM (rel->r_info); |
26e41594 AM |
1366 | if (r_symndx >= symtab_hdr->sh_info) |
1367 | { | |
1368 | struct elf_s390_link_hash_entry *eh; | |
00d8c7a9 AK |
1369 | struct elf_dyn_relocs **pp; |
1370 | struct elf_dyn_relocs *p; | |
5236c819 | 1371 | |
26e41594 | 1372 | h = sym_hashes[r_symndx - symtab_hdr->sh_info]; |
3eb128b2 AM |
1373 | while (h->root.type == bfd_link_hash_indirect |
1374 | || h->root.type == bfd_link_hash_warning) | |
1375 | h = (struct elf_link_hash_entry *) h->root.u.i.link; | |
26e41594 | 1376 | eh = (struct elf_s390_link_hash_entry *) h; |
5236c819 | 1377 | |
26e41594 AM |
1378 | for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next) |
1379 | if (p->sec == sec) | |
1380 | { | |
1381 | /* Everything must go for SEC. */ | |
1382 | *pp = p->next; | |
1383 | break; | |
1384 | } | |
1385 | } | |
470b557a AK |
1386 | else |
1387 | { | |
1388 | Elf_Internal_Sym *isym; | |
1389 | ||
1390 | /* A local symbol. */ | |
1391 | isym = bfd_sym_from_r_symndx (&htab->sym_cache, | |
1392 | abfd, r_symndx); | |
1393 | if (isym == NULL) | |
1394 | return FALSE; | |
1395 | ||
1396 | if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC) | |
1397 | { | |
1398 | struct plt_entry *plt = elf_s390_local_plt (abfd); | |
1399 | if (plt[r_symndx].plt.refcount > 0) | |
1400 | plt[r_symndx].plt.refcount--; | |
1401 | } | |
1402 | } | |
26e41594 AM |
1403 | |
1404 | r_type = ELF64_R_TYPE (rel->r_info); | |
1405 | r_type = elf_s390_tls_transition (info, r_type, h != NULL); | |
69fc87f1 | 1406 | switch (r_type) |
5236c819 | 1407 | { |
69fc87f1 | 1408 | case R_390_TLS_LDM64: |
4dfe6ac6 NC |
1409 | if (htab->tls_ldm_got.refcount > 0) |
1410 | htab->tls_ldm_got.refcount -= 1; | |
69fc87f1 | 1411 | break; |
ef05be83 AK |
1412 | case R_390_GOTOFF16: |
1413 | case R_390_GOTOFF32: | |
1414 | case R_390_GOTOFF64: | |
d47b13e0 AK |
1415 | if (h != NULL && s390_is_ifunc_symbol_p (h) && h->def_regular) |
1416 | { | |
1417 | h->plt.refcount--; | |
1418 | break; | |
1419 | } | |
1420 | ||
ef05be83 AK |
1421 | case R_390_GOTPC: |
1422 | case R_390_GOTPCDBL: | |
1423 | break; | |
69fc87f1 MS |
1424 | |
1425 | case R_390_TLS_GD64: | |
1426 | case R_390_TLS_IE64: | |
1427 | case R_390_TLS_GOTIE12: | |
bd1ea41b | 1428 | case R_390_TLS_GOTIE20: |
69fc87f1 MS |
1429 | case R_390_TLS_GOTIE64: |
1430 | case R_390_TLS_IEENT: | |
5236c819 MS |
1431 | case R_390_GOT12: |
1432 | case R_390_GOT16: | |
bd1ea41b | 1433 | case R_390_GOT20: |
5236c819 MS |
1434 | case R_390_GOT32: |
1435 | case R_390_GOT64: | |
5236c819 MS |
1436 | case R_390_GOTENT: |
1437 | if (h != NULL) | |
1438 | { | |
1439 | if (h->got.refcount > 0) | |
1440 | h->got.refcount -= 1; | |
1441 | } | |
1442 | else if (local_got_refcounts != NULL) | |
1443 | { | |
1444 | if (local_got_refcounts[r_symndx] > 0) | |
1445 | local_got_refcounts[r_symndx] -= 1; | |
1446 | } | |
26e41594 | 1447 | break; |
a85d7ed0 | 1448 | |
5236c819 MS |
1449 | case R_390_8: |
1450 | case R_390_12: | |
1451 | case R_390_16: | |
bd1ea41b | 1452 | case R_390_20: |
5236c819 MS |
1453 | case R_390_32: |
1454 | case R_390_64: | |
1455 | case R_390_PC16: | |
fb798c50 | 1456 | case R_390_PC12DBL: |
5236c819 | 1457 | case R_390_PC16DBL: |
fb798c50 | 1458 | case R_390_PC24DBL: |
5236c819 MS |
1459 | case R_390_PC32: |
1460 | case R_390_PC32DBL: | |
1461 | case R_390_PC64: | |
0e1862bb | 1462 | if (bfd_link_pic (info)) |
26e41594 AM |
1463 | break; |
1464 | /* Fall through */ | |
a85d7ed0 | 1465 | |
fb798c50 | 1466 | case R_390_PLT12DBL: |
69fc87f1 | 1467 | case R_390_PLT16DBL: |
fb798c50 | 1468 | case R_390_PLT24DBL: |
69fc87f1 MS |
1469 | case R_390_PLT32: |
1470 | case R_390_PLT32DBL: | |
1471 | case R_390_PLT64: | |
1472 | case R_390_PLTOFF16: | |
1473 | case R_390_PLTOFF32: | |
1474 | case R_390_PLTOFF64: | |
1475 | if (h != NULL) | |
1476 | { | |
1477 | if (h->plt.refcount > 0) | |
1478 | h->plt.refcount -= 1; | |
1479 | } | |
1480 | break; | |
1481 | ||
1482 | case R_390_GOTPLT12: | |
1483 | case R_390_GOTPLT16: | |
bd1ea41b | 1484 | case R_390_GOTPLT20: |
69fc87f1 MS |
1485 | case R_390_GOTPLT32: |
1486 | case R_390_GOTPLT64: | |
1487 | case R_390_GOTPLTENT: | |
1488 | if (h != NULL) | |
1489 | { | |
1490 | if (h->plt.refcount > 0) | |
1491 | { | |
1492 | ((struct elf_s390_link_hash_entry *) h)->gotplt_refcount--; | |
1493 | h->plt.refcount -= 1; | |
1494 | } | |
1495 | } | |
1496 | else if (local_got_refcounts != NULL) | |
1497 | { | |
1498 | if (local_got_refcounts[r_symndx] > 0) | |
1499 | local_got_refcounts[r_symndx] -= 1; | |
1500 | } | |
1501 | break; | |
1502 | ||
5236c819 MS |
1503 | default: |
1504 | break; | |
1505 | } | |
1506 | } | |
a85d7ed0 | 1507 | |
b34976b6 | 1508 | return TRUE; |
a85d7ed0 NC |
1509 | } |
1510 | ||
5236c819 MS |
1511 | /* Make sure we emit a GOT entry if the symbol was supposed to have a PLT |
1512 | entry but we found we will not create any. Called when we find we will | |
1513 | not have any PLT for this symbol, by for example | |
1514 | elf_s390_adjust_dynamic_symbol when we're doing a proper dynamic link, | |
1515 | or elf_s390_size_dynamic_sections if no dynamic sections will be | |
1516 | created (we're only linking static objects). */ | |
1517 | ||
1518 | static void | |
2c3fc389 | 1519 | elf_s390_adjust_gotplt (struct elf_s390_link_hash_entry *h) |
5236c819 MS |
1520 | { |
1521 | if (h->elf.root.type == bfd_link_hash_warning) | |
1522 | h = (struct elf_s390_link_hash_entry *) h->elf.root.u.i.link; | |
1523 | ||
1524 | if (h->gotplt_refcount <= 0) | |
1525 | return; | |
1526 | ||
1527 | /* We simply add the number of gotplt references to the number | |
1528 | * of got references for this symbol. */ | |
1529 | h->elf.got.refcount += h->gotplt_refcount; | |
1530 | h->gotplt_refcount = -1; | |
1531 | } | |
1532 | ||
a85d7ed0 NC |
1533 | /* Adjust a symbol defined by a dynamic object and referenced by a |
1534 | regular object. The current definition is in some section of the | |
1535 | dynamic object, but we're not including those sections. We have to | |
1536 | change the definition to something the rest of the link can | |
1537 | understand. */ | |
1538 | ||
b34976b6 | 1539 | static bfd_boolean |
4dfe6ac6 NC |
1540 | elf_s390_adjust_dynamic_symbol (struct bfd_link_info *info, |
1541 | struct elf_link_hash_entry *h) | |
a85d7ed0 | 1542 | { |
0451c93c | 1543 | struct elf_s390_link_hash_table *htab; |
5474d94f | 1544 | asection *s, *srel; |
a85d7ed0 | 1545 | |
470b557a AK |
1546 | /* STT_GNU_IFUNC symbol must go through PLT. */ |
1547 | if (s390_is_ifunc_symbol_p (h)) | |
d8ee9e44 AK |
1548 | { |
1549 | /* All local STT_GNU_IFUNC references must be treated as local | |
1550 | calls via local PLT. */ | |
1551 | if (h->ref_regular && SYMBOL_CALLS_LOCAL (info, h)) | |
1552 | { | |
1553 | bfd_size_type pc_count = 0, count = 0; | |
1554 | struct elf_dyn_relocs **pp; | |
1555 | struct elf_s390_link_hash_entry *eh; | |
1556 | struct elf_dyn_relocs *p; | |
1557 | ||
1558 | eh = (struct elf_s390_link_hash_entry *) h; | |
1559 | for (pp = &eh->dyn_relocs; (p = *pp) != NULL; ) | |
1560 | { | |
1561 | pc_count += p->pc_count; | |
1562 | p->count -= p->pc_count; | |
1563 | p->pc_count = 0; | |
1564 | count += p->count; | |
1565 | if (p->count == 0) | |
1566 | *pp = p->next; | |
1567 | else | |
1568 | pp = &p->next; | |
1569 | } | |
1570 | ||
1571 | if (pc_count || count) | |
1572 | { | |
1573 | h->needs_plt = 1; | |
1574 | h->non_got_ref = 1; | |
1575 | if (h->plt.refcount <= 0) | |
1576 | h->plt.refcount = 1; | |
1577 | else | |
1578 | h->plt.refcount += 1; | |
1579 | } | |
1580 | } | |
1581 | ||
1582 | if (h->plt.refcount <= 0) | |
1583 | { | |
1584 | h->plt.offset = (bfd_vma) -1; | |
1585 | h->needs_plt = 0; | |
1586 | } | |
1587 | return TRUE; | |
1588 | } | |
470b557a | 1589 | |
a85d7ed0 NC |
1590 | /* If this is a function, put it in the procedure linkage table. We |
1591 | will fill in the contents of the procedure linkage table later | |
cedb70c5 | 1592 | (although we could actually do it here). */ |
a85d7ed0 | 1593 | if (h->type == STT_FUNC |
f5385ebf | 1594 | || h->needs_plt) |
a85d7ed0 | 1595 | { |
0451c93c | 1596 | if (h->plt.refcount <= 0 |
8c21ca21 AK |
1597 | || SYMBOL_CALLS_LOCAL (info, h) |
1598 | || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT | |
1599 | && h->root.type == bfd_link_hash_undefweak)) | |
a85d7ed0 NC |
1600 | { |
1601 | /* This case can occur if we saw a PLT32 reloc in an input | |
947216bf AM |
1602 | file, but the symbol was never referred to by a dynamic |
1603 | object, or if all references were garbage collected. In | |
0451c93c MS |
1604 | such a case, we don't actually need to build a procedure |
1605 | linkage table, and we can just do a PC32 reloc instead. */ | |
a85d7ed0 | 1606 | h->plt.offset = (bfd_vma) -1; |
f5385ebf | 1607 | h->needs_plt = 0; |
5236c819 | 1608 | elf_s390_adjust_gotplt((struct elf_s390_link_hash_entry *) h); |
a85d7ed0 NC |
1609 | } |
1610 | ||
b34976b6 | 1611 | return TRUE; |
a85d7ed0 | 1612 | } |
bbd7ec4a | 1613 | else |
0451c93c MS |
1614 | /* It's possible that we incorrectly decided a .plt reloc was |
1615 | needed for an R_390_PC32 reloc to a non-function sym in | |
1616 | check_relocs. We can't decide accurately between function and | |
1617 | non-function syms in check-relocs; Objects loaded later in | |
1618 | the link may change h->type. So fix it now. */ | |
bbd7ec4a | 1619 | h->plt.offset = (bfd_vma) -1; |
a85d7ed0 NC |
1620 | |
1621 | /* If this is a weak symbol, and there is a real definition, the | |
1622 | processor independent code will have arranged for us to see the | |
1623 | real definition first, and we can just use the same value. */ | |
f6e332e6 | 1624 | if (h->u.weakdef != NULL) |
a85d7ed0 | 1625 | { |
f6e332e6 AM |
1626 | BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined |
1627 | || h->u.weakdef->root.type == bfd_link_hash_defweak); | |
1628 | h->root.u.def.section = h->u.weakdef->root.u.def.section; | |
1629 | h->root.u.def.value = h->u.weakdef->root.u.def.value; | |
64285810 | 1630 | if (ELIMINATE_COPY_RELOCS || info->nocopyreloc) |
f6e332e6 | 1631 | h->non_got_ref = h->u.weakdef->non_got_ref; |
b34976b6 | 1632 | return TRUE; |
a85d7ed0 NC |
1633 | } |
1634 | ||
1635 | /* This is a reference to a symbol defined by a dynamic object which | |
1636 | is not a function. */ | |
1637 | ||
1638 | /* If we are creating a shared library, we must presume that the | |
1639 | only references to the symbol are via the global offset table. | |
1640 | For such cases we need not do anything here; the relocations will | |
1641 | be handled correctly by relocate_section. */ | |
0e1862bb | 1642 | if (bfd_link_pic (info)) |
b34976b6 | 1643 | return TRUE; |
a85d7ed0 NC |
1644 | |
1645 | /* If there are no references to this symbol that do not use the | |
1646 | GOT, we don't need to generate a copy reloc. */ | |
f5385ebf | 1647 | if (!h->non_got_ref) |
b34976b6 | 1648 | return TRUE; |
a85d7ed0 | 1649 | |
0451c93c MS |
1650 | /* If -z nocopyreloc was given, we won't generate them either. */ |
1651 | if (info->nocopyreloc) | |
1652 | { | |
f5385ebf | 1653 | h->non_got_ref = 0; |
b34976b6 | 1654 | return TRUE; |
0451c93c MS |
1655 | } |
1656 | ||
64285810 | 1657 | if (ELIMINATE_COPY_RELOCS) |
0451c93c | 1658 | { |
64285810 | 1659 | struct elf_s390_link_hash_entry * eh; |
00d8c7a9 | 1660 | struct elf_dyn_relocs *p; |
0451c93c | 1661 | |
64285810 MS |
1662 | eh = (struct elf_s390_link_hash_entry *) h; |
1663 | for (p = eh->dyn_relocs; p != NULL; p = p->next) | |
1664 | { | |
1665 | s = p->sec->output_section; | |
1666 | if (s != NULL && (s->flags & SEC_READONLY) != 0) | |
1667 | break; | |
1668 | } | |
1669 | ||
1670 | /* If we didn't find any dynamic relocs in read-only sections, then | |
1671 | we'll be keeping the dynamic relocs and avoiding the copy reloc. */ | |
1672 | if (p == NULL) | |
1673 | { | |
f5385ebf | 1674 | h->non_got_ref = 0; |
64285810 MS |
1675 | return TRUE; |
1676 | } | |
0451c93c MS |
1677 | } |
1678 | ||
a85d7ed0 NC |
1679 | /* We must allocate the symbol in our .dynbss section, which will |
1680 | become part of the .bss section of the executable. There will be | |
1681 | an entry for this symbol in the .dynsym section. The dynamic | |
1682 | object will contain position independent code, so all references | |
1683 | from the dynamic object to this symbol will go through the global | |
1684 | offset table. The dynamic linker will use the .dynsym entry to | |
1685 | determine the address it must put in the global offset table, so | |
1686 | both the dynamic object and the regular object will refer to the | |
1687 | same memory location for the variable. */ | |
1688 | ||
0451c93c | 1689 | htab = elf_s390_hash_table (info); |
4dfe6ac6 NC |
1690 | if (htab == NULL) |
1691 | return FALSE; | |
a85d7ed0 | 1692 | |
0451c93c MS |
1693 | /* We must generate a R_390_COPY reloc to tell the dynamic linker to |
1694 | copy the initial value out of the dynamic object and into the | |
1695 | runtime process image. */ | |
5474d94f AM |
1696 | if ((h->root.u.def.section->flags & SEC_READONLY) != 0) |
1697 | { | |
1698 | s = htab->elf.sdynrelro; | |
1699 | srel = htab->elf.sreldynrelro; | |
1700 | } | |
1701 | else | |
1702 | { | |
1703 | s = htab->elf.sdynbss; | |
1704 | srel = htab->elf.srelbss; | |
1705 | } | |
1d7e9d18 | 1706 | if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0) |
a85d7ed0 | 1707 | { |
5474d94f | 1708 | srel->size += sizeof (Elf64_External_Rela); |
f5385ebf | 1709 | h->needs_copy = 1; |
a85d7ed0 NC |
1710 | } |
1711 | ||
6cabe1ea | 1712 | return _bfd_elf_adjust_dynamic_copy (info, h, s); |
a85d7ed0 NC |
1713 | } |
1714 | ||
0451c93c MS |
1715 | /* Allocate space in .plt, .got and associated reloc sections for |
1716 | dynamic relocs. */ | |
1717 | ||
b34976b6 | 1718 | static bfd_boolean |
4dfe6ac6 NC |
1719 | allocate_dynrelocs (struct elf_link_hash_entry *h, |
1720 | void * inf) | |
0451c93c MS |
1721 | { |
1722 | struct bfd_link_info *info; | |
1723 | struct elf_s390_link_hash_table *htab; | |
470b557a | 1724 | struct elf_s390_link_hash_entry *eh = (struct elf_s390_link_hash_entry *)h; |
00d8c7a9 | 1725 | struct elf_dyn_relocs *p; |
0451c93c | 1726 | |
e92d460e | 1727 | if (h->root.type == bfd_link_hash_indirect) |
b34976b6 | 1728 | return TRUE; |
0451c93c MS |
1729 | |
1730 | info = (struct bfd_link_info *) inf; | |
1731 | htab = elf_s390_hash_table (info); | |
4dfe6ac6 NC |
1732 | if (htab == NULL) |
1733 | return FALSE; | |
0451c93c | 1734 | |
470b557a AK |
1735 | /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it |
1736 | here if it is defined and referenced in a non-shared object. */ | |
1737 | if (s390_is_ifunc_symbol_p (h) && h->def_regular) | |
61643fba | 1738 | return s390_elf_allocate_ifunc_dyn_relocs (info, h); |
470b557a AK |
1739 | else if (htab->elf.dynamic_sections_created |
1740 | && h->plt.refcount > 0) | |
0451c93c MS |
1741 | { |
1742 | /* Make sure this symbol is output as a dynamic symbol. | |
1743 | Undefined weak syms won't yet be marked as dynamic. */ | |
1744 | if (h->dynindx == -1 | |
f5385ebf | 1745 | && !h->forced_local) |
0451c93c | 1746 | { |
c152c796 | 1747 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) |
b34976b6 | 1748 | return FALSE; |
0451c93c MS |
1749 | } |
1750 | ||
0e1862bb | 1751 | if (bfd_link_pic (info) |
4ec72bde | 1752 | || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h)) |
0451c93c | 1753 | { |
f41345a7 | 1754 | asection *s = htab->elf.splt; |
0451c93c MS |
1755 | |
1756 | /* If this is the first .plt entry, make room for the special | |
1757 | first entry. */ | |
eea6121a AM |
1758 | if (s->size == 0) |
1759 | s->size += PLT_FIRST_ENTRY_SIZE; | |
0451c93c | 1760 | |
eea6121a | 1761 | h->plt.offset = s->size; |
0451c93c MS |
1762 | |
1763 | /* If this symbol is not defined in a regular file, and we are | |
1764 | not generating a shared library, then set the symbol to this | |
1765 | location in the .plt. This is required to make function | |
1766 | pointers compare as equal between the normal executable and | |
1767 | the shared library. */ | |
0e1862bb | 1768 | if (! bfd_link_pic (info) |
f5385ebf | 1769 | && !h->def_regular) |
0451c93c MS |
1770 | { |
1771 | h->root.u.def.section = s; | |
1772 | h->root.u.def.value = h->plt.offset; | |
1773 | } | |
ec338859 | 1774 | |
0451c93c | 1775 | /* Make room for this entry. */ |
eea6121a | 1776 | s->size += PLT_ENTRY_SIZE; |
ec338859 | 1777 | |
0451c93c MS |
1778 | /* We also need to make an entry in the .got.plt section, which |
1779 | will be placed in the .got section by the linker script. */ | |
f41345a7 | 1780 | htab->elf.sgotplt->size += GOT_ENTRY_SIZE; |
0451c93c MS |
1781 | |
1782 | /* We also need to make an entry in the .rela.plt section. */ | |
f41345a7 | 1783 | htab->elf.srelplt->size += sizeof (Elf64_External_Rela); |
0451c93c MS |
1784 | } |
1785 | else | |
1786 | { | |
1787 | h->plt.offset = (bfd_vma) -1; | |
f5385ebf | 1788 | h->needs_plt = 0; |
5236c819 | 1789 | elf_s390_adjust_gotplt((struct elf_s390_link_hash_entry *) h); |
0451c93c MS |
1790 | } |
1791 | } | |
1792 | else | |
1793 | { | |
1794 | h->plt.offset = (bfd_vma) -1; | |
f5385ebf | 1795 | h->needs_plt = 0; |
5236c819 | 1796 | elf_s390_adjust_gotplt((struct elf_s390_link_hash_entry *) h); |
0451c93c MS |
1797 | } |
1798 | ||
69fc87f1 MS |
1799 | /* If R_390_TLS_{IE64,GOTIE64,GOTIE12,IEENT} symbol is now local to |
1800 | the binary, we can optimize a bit. IE64 and GOTIE64 get converted | |
1801 | to R_390_TLS_LE64 requiring no TLS entry. For GOTIE12 and IEENT | |
1802 | we can save the dynamic TLS relocation. */ | |
1803 | if (h->got.refcount > 0 | |
0e1862bb | 1804 | && !bfd_link_pic (info) |
69fc87f1 MS |
1805 | && h->dynindx == -1 |
1806 | && elf_s390_hash_entry(h)->tls_type >= GOT_TLS_IE) | |
1807 | { | |
1808 | if (elf_s390_hash_entry(h)->tls_type == GOT_TLS_IE_NLT) | |
1809 | /* For the GOTIE access without a literal pool entry the offset has | |
1810 | to be stored somewhere. The immediate value in the instruction | |
1811 | is not bit enough so the value is stored in the got. */ | |
1812 | { | |
f41345a7 AK |
1813 | h->got.offset = htab->elf.sgot->size; |
1814 | htab->elf.sgot->size += GOT_ENTRY_SIZE; | |
69fc87f1 MS |
1815 | } |
1816 | else | |
1817 | h->got.offset = (bfd_vma) -1; | |
1818 | } | |
1819 | else if (h->got.refcount > 0) | |
0451c93c MS |
1820 | { |
1821 | asection *s; | |
b34976b6 | 1822 | bfd_boolean dyn; |
69fc87f1 | 1823 | int tls_type = elf_s390_hash_entry(h)->tls_type; |
0451c93c MS |
1824 | |
1825 | /* Make sure this symbol is output as a dynamic symbol. | |
1826 | Undefined weak syms won't yet be marked as dynamic. */ | |
1827 | if (h->dynindx == -1 | |
f5385ebf | 1828 | && !h->forced_local) |
0451c93c | 1829 | { |
c152c796 | 1830 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) |
b34976b6 | 1831 | return FALSE; |
0451c93c MS |
1832 | } |
1833 | ||
f41345a7 | 1834 | s = htab->elf.sgot; |
eea6121a AM |
1835 | h->got.offset = s->size; |
1836 | s->size += GOT_ENTRY_SIZE; | |
69fc87f1 MS |
1837 | /* R_390_TLS_GD64 needs 2 consecutive GOT slots. */ |
1838 | if (tls_type == GOT_TLS_GD) | |
eea6121a | 1839 | s->size += GOT_ENTRY_SIZE; |
0451c93c | 1840 | dyn = htab->elf.dynamic_sections_created; |
69fc87f1 MS |
1841 | /* R_390_TLS_IE64 needs one dynamic relocation, |
1842 | R_390_TLS_GD64 needs one if local symbol and two if global. */ | |
1843 | if ((tls_type == GOT_TLS_GD && h->dynindx == -1) | |
1844 | || tls_type >= GOT_TLS_IE) | |
f41345a7 | 1845 | htab->elf.srelgot->size += sizeof (Elf64_External_Rela); |
69fc87f1 | 1846 | else if (tls_type == GOT_TLS_GD) |
f41345a7 | 1847 | htab->elf.srelgot->size += 2 * sizeof (Elf64_External_Rela); |
82058a73 MS |
1848 | else if ((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT |
1849 | || h->root.type != bfd_link_hash_undefweak) | |
0e1862bb | 1850 | && (bfd_link_pic (info) |
82058a73 | 1851 | || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h))) |
f41345a7 | 1852 | htab->elf.srelgot->size += sizeof (Elf64_External_Rela); |
0451c93c MS |
1853 | } |
1854 | else | |
1855 | h->got.offset = (bfd_vma) -1; | |
1856 | ||
0451c93c | 1857 | if (eh->dyn_relocs == NULL) |
b34976b6 | 1858 | return TRUE; |
0451c93c MS |
1859 | |
1860 | /* In the shared -Bsymbolic case, discard space allocated for | |
1861 | dynamic pc-relative relocs against symbols which turn out to be | |
1862 | defined in regular objects. For the normal shared case, discard | |
1863 | space for pc-relative relocs that have become local due to symbol | |
1864 | visibility changes. */ | |
1865 | ||
0e1862bb | 1866 | if (bfd_link_pic (info)) |
0451c93c | 1867 | { |
8c21ca21 | 1868 | if (SYMBOL_CALLS_LOCAL (info, h)) |
0451c93c | 1869 | { |
00d8c7a9 | 1870 | struct elf_dyn_relocs **pp; |
0451c93c MS |
1871 | |
1872 | for (pp = &eh->dyn_relocs; (p = *pp) != NULL; ) | |
1873 | { | |
1874 | p->count -= p->pc_count; | |
1875 | p->pc_count = 0; | |
1876 | if (p->count == 0) | |
1877 | *pp = p->next; | |
1878 | else | |
1879 | pp = &p->next; | |
1880 | } | |
1881 | } | |
82058a73 MS |
1882 | |
1883 | /* Also discard relocs on undefined weak syms with non-default | |
1884 | visibility. */ | |
22d606e9 | 1885 | if (eh->dyn_relocs != NULL |
82058a73 | 1886 | && h->root.type == bfd_link_hash_undefweak) |
22d606e9 AM |
1887 | { |
1888 | if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT) | |
1889 | eh->dyn_relocs = NULL; | |
1890 | ||
1891 | /* Make sure undefined weak symbols are output as a dynamic | |
1892 | symbol in PIEs. */ | |
1893 | else if (h->dynindx == -1 | |
1894 | && !h->forced_local) | |
1895 | { | |
1896 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) | |
1897 | return FALSE; | |
1898 | } | |
1899 | } | |
0451c93c | 1900 | } |
64285810 | 1901 | else if (ELIMINATE_COPY_RELOCS) |
0451c93c MS |
1902 | { |
1903 | /* For the non-shared case, discard space for relocs against | |
1904 | symbols which turn out to need copy relocs or are not | |
1905 | dynamic. */ | |
1906 | ||
f5385ebf AM |
1907 | if (!h->non_got_ref |
1908 | && ((h->def_dynamic | |
1909 | && !h->def_regular) | |
0451c93c MS |
1910 | || (htab->elf.dynamic_sections_created |
1911 | && (h->root.type == bfd_link_hash_undefweak | |
1912 | || h->root.type == bfd_link_hash_undefined)))) | |
1913 | { | |
1914 | /* Make sure this symbol is output as a dynamic symbol. | |
1915 | Undefined weak syms won't yet be marked as dynamic. */ | |
1916 | if (h->dynindx == -1 | |
f5385ebf | 1917 | && !h->forced_local) |
0451c93c | 1918 | { |
c152c796 | 1919 | if (! bfd_elf_link_record_dynamic_symbol (info, h)) |
b34976b6 | 1920 | return FALSE; |
0451c93c MS |
1921 | } |
1922 | ||
1923 | /* If that succeeded, we know we'll be keeping all the | |
1924 | relocs. */ | |
1925 | if (h->dynindx != -1) | |
1926 | goto keep; | |
1927 | } | |
1928 | ||
1929 | eh->dyn_relocs = NULL; | |
1930 | ||
ec338859 | 1931 | keep: ; |
0451c93c MS |
1932 | } |
1933 | ||
1934 | /* Finally, allocate space. */ | |
1935 | for (p = eh->dyn_relocs; p != NULL; p = p->next) | |
1936 | { | |
1937 | asection *sreloc = elf_section_data (p->sec)->sreloc; | |
eea6121a | 1938 | sreloc->size += p->count * sizeof (Elf64_External_Rela); |
0451c93c MS |
1939 | } |
1940 | ||
b34976b6 | 1941 | return TRUE; |
0451c93c MS |
1942 | } |
1943 | ||
1944 | /* Find any dynamic relocs that apply to read-only sections. */ | |
1945 | ||
b34976b6 | 1946 | static bfd_boolean |
2c3fc389 | 1947 | readonly_dynrelocs (struct elf_link_hash_entry *h, void * inf) |
0451c93c MS |
1948 | { |
1949 | struct elf_s390_link_hash_entry *eh; | |
00d8c7a9 | 1950 | struct elf_dyn_relocs *p; |
0451c93c MS |
1951 | |
1952 | eh = (struct elf_s390_link_hash_entry *) h; | |
1953 | for (p = eh->dyn_relocs; p != NULL; p = p->next) | |
1954 | { | |
1955 | asection *s = p->sec->output_section; | |
1956 | ||
1957 | if (s != NULL && (s->flags & SEC_READONLY) != 0) | |
1958 | { | |
1959 | struct bfd_link_info *info = (struct bfd_link_info *) inf; | |
1960 | ||
1961 | info->flags |= DF_TEXTREL; | |
1962 | ||
1963 | /* Not an error, just cut short the traversal. */ | |
b34976b6 | 1964 | return FALSE; |
0451c93c MS |
1965 | } |
1966 | } | |
b34976b6 | 1967 | return TRUE; |
0451c93c MS |
1968 | } |
1969 | ||
a85d7ed0 NC |
1970 | /* Set the sizes of the dynamic sections. */ |
1971 | ||
b34976b6 | 1972 | static bfd_boolean |
4dfe6ac6 NC |
1973 | elf_s390_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED, |
1974 | struct bfd_link_info *info) | |
a85d7ed0 | 1975 | { |
0451c93c | 1976 | struct elf_s390_link_hash_table *htab; |
a85d7ed0 NC |
1977 | bfd *dynobj; |
1978 | asection *s; | |
b34976b6 | 1979 | bfd_boolean relocs; |
0451c93c | 1980 | bfd *ibfd; |
a85d7ed0 | 1981 | |
0451c93c | 1982 | htab = elf_s390_hash_table (info); |
4dfe6ac6 NC |
1983 | if (htab == NULL) |
1984 | return FALSE; | |
1985 | ||
0451c93c MS |
1986 | dynobj = htab->elf.dynobj; |
1987 | if (dynobj == NULL) | |
1988 | abort (); | |
a85d7ed0 | 1989 | |
0451c93c | 1990 | if (htab->elf.dynamic_sections_created) |
a85d7ed0 NC |
1991 | { |
1992 | /* Set the contents of the .interp section to the interpreter. */ | |
9b8b325a | 1993 | if (bfd_link_executable (info) && !info->nointerp) |
a85d7ed0 | 1994 | { |
3d4d4302 | 1995 | s = bfd_get_linker_section (dynobj, ".interp"); |
0451c93c MS |
1996 | if (s == NULL) |
1997 | abort (); | |
eea6121a | 1998 | s->size = sizeof ELF_DYNAMIC_INTERPRETER; |
a85d7ed0 NC |
1999 | s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER; |
2000 | } | |
2001 | } | |
a85d7ed0 | 2002 | |
0451c93c MS |
2003 | /* Set up .got offsets for local syms, and space for local dynamic |
2004 | relocs. */ | |
c72f2fb2 | 2005 | for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next) |
a85d7ed0 | 2006 | { |
0451c93c MS |
2007 | bfd_signed_vma *local_got; |
2008 | bfd_signed_vma *end_local_got; | |
69fc87f1 | 2009 | char *local_tls_type; |
0451c93c MS |
2010 | bfd_size_type locsymcount; |
2011 | Elf_Internal_Shdr *symtab_hdr; | |
2012 | asection *srela; | |
470b557a AK |
2013 | struct plt_entry *local_plt; |
2014 | unsigned int i; | |
a85d7ed0 | 2015 | |
0ffa91dd | 2016 | if (! is_s390_elf (ibfd)) |
a85d7ed0 NC |
2017 | continue; |
2018 | ||
0451c93c | 2019 | for (s = ibfd->sections; s != NULL; s = s->next) |
a85d7ed0 | 2020 | { |
00d8c7a9 | 2021 | struct elf_dyn_relocs *p; |
0451c93c | 2022 | |
6edfbbad | 2023 | for (p = elf_section_data (s)->local_dynrel; p != NULL; p = p->next) |
a85d7ed0 | 2024 | { |
ec338859 AM |
2025 | if (!bfd_is_abs_section (p->sec) |
2026 | && bfd_is_abs_section (p->sec->output_section)) | |
2027 | { | |
2028 | /* Input section has been discarded, either because | |
2029 | it is a copy of a linkonce section or due to | |
2030 | linker script /DISCARD/, so we'll be discarding | |
2031 | the relocs too. */ | |
2032 | } | |
248866a8 | 2033 | else if (p->count != 0) |
ec338859 AM |
2034 | { |
2035 | srela = elf_section_data (p->sec)->sreloc; | |
eea6121a | 2036 | srela->size += p->count * sizeof (Elf64_External_Rela); |
248866a8 AM |
2037 | if ((p->sec->output_section->flags & SEC_READONLY) != 0) |
2038 | info->flags |= DF_TEXTREL; | |
ec338859 | 2039 | } |
a85d7ed0 NC |
2040 | } |
2041 | } | |
0451c93c MS |
2042 | |
2043 | local_got = elf_local_got_refcounts (ibfd); | |
2044 | if (!local_got) | |
2045 | continue; | |
2046 | ||
0ffa91dd | 2047 | symtab_hdr = &elf_symtab_hdr (ibfd); |
0451c93c MS |
2048 | locsymcount = symtab_hdr->sh_info; |
2049 | end_local_got = local_got + locsymcount; | |
69fc87f1 | 2050 | local_tls_type = elf_s390_local_got_tls_type (ibfd); |
f41345a7 AK |
2051 | s = htab->elf.sgot; |
2052 | srela = htab->elf.srelgot; | |
69fc87f1 | 2053 | for (; local_got < end_local_got; ++local_got, ++local_tls_type) |
a85d7ed0 | 2054 | { |
0451c93c | 2055 | if (*local_got > 0) |
a85d7ed0 | 2056 | { |
eea6121a AM |
2057 | *local_got = s->size; |
2058 | s->size += GOT_ENTRY_SIZE; | |
69fc87f1 | 2059 | if (*local_tls_type == GOT_TLS_GD) |
eea6121a | 2060 | s->size += GOT_ENTRY_SIZE; |
0e1862bb | 2061 | if (bfd_link_pic (info)) |
eea6121a | 2062 | srela->size += sizeof (Elf64_External_Rela); |
a85d7ed0 NC |
2063 | } |
2064 | else | |
0451c93c | 2065 | *local_got = (bfd_vma) -1; |
a85d7ed0 | 2066 | } |
470b557a AK |
2067 | |
2068 | local_plt = elf_s390_local_plt (ibfd); | |
2069 | for (i = 0; i < symtab_hdr->sh_info; i++) | |
2070 | { | |
2071 | if (local_plt[i].plt.refcount > 0) | |
2072 | { | |
2073 | local_plt[i].plt.offset = htab->elf.iplt->size; | |
2074 | htab->elf.iplt->size += PLT_ENTRY_SIZE; | |
2075 | htab->elf.igotplt->size += GOT_ENTRY_SIZE; | |
2076 | htab->elf.irelplt->size += sizeof (Elf64_External_Rela); | |
2077 | } | |
2078 | else | |
2079 | local_plt[i].plt.offset = (bfd_vma) -1; | |
2080 | } | |
0451c93c MS |
2081 | } |
2082 | ||
69fc87f1 MS |
2083 | if (htab->tls_ldm_got.refcount > 0) |
2084 | { | |
2085 | /* Allocate 2 got entries and 1 dynamic reloc for R_390_TLS_LDM64 | |
2086 | relocs. */ | |
f41345a7 AK |
2087 | htab->tls_ldm_got.offset = htab->elf.sgot->size; |
2088 | htab->elf.sgot->size += 2 * GOT_ENTRY_SIZE; | |
2089 | htab->elf.srelgot->size += sizeof (Elf64_External_Rela); | |
69fc87f1 MS |
2090 | } |
2091 | else | |
2092 | htab->tls_ldm_got.offset = -1; | |
2093 | ||
0451c93c MS |
2094 | /* Allocate global sym .plt and .got entries, and space for global |
2095 | sym dynamic relocs. */ | |
2c3fc389 | 2096 | elf_link_hash_traverse (&htab->elf, allocate_dynrelocs, info); |
0451c93c MS |
2097 | |
2098 | /* We now have determined the sizes of the various dynamic sections. | |
2099 | Allocate memory for them. */ | |
b34976b6 | 2100 | relocs = FALSE; |
0451c93c MS |
2101 | for (s = dynobj->sections; s != NULL; s = s->next) |
2102 | { | |
2103 | if ((s->flags & SEC_LINKER_CREATED) == 0) | |
2104 | continue; | |
2105 | ||
f41345a7 AK |
2106 | if (s == htab->elf.splt |
2107 | || s == htab->elf.sgot | |
2108 | || s == htab->elf.sgotplt | |
9d19e4fd | 2109 | || s == htab->elf.sdynbss |
5474d94f | 2110 | || s == htab->elf.sdynrelro |
470b557a AK |
2111 | || s == htab->elf.iplt |
2112 | || s == htab->elf.igotplt | |
2113 | || s == htab->irelifunc) | |
0451c93c MS |
2114 | { |
2115 | /* Strip this section if we don't need it; see the | |
2116 | comment below. */ | |
2117 | } | |
0112cd26 | 2118 | else if (CONST_STRNEQ (bfd_get_section_name (dynobj, s), ".rela")) |
0451c93c | 2119 | { |
f41345a7 | 2120 | if (s->size != 0 && s != htab->elf.srelplt) |
b34976b6 | 2121 | relocs = TRUE; |
ec338859 | 2122 | |
0451c93c MS |
2123 | /* We use the reloc_count field as a counter if we need |
2124 | to copy relocs into the output file. */ | |
2125 | s->reloc_count = 0; | |
2126 | } | |
2127 | else | |
a85d7ed0 NC |
2128 | { |
2129 | /* It's not one of our sections, so don't allocate space. */ | |
2130 | continue; | |
2131 | } | |
2132 | ||
eea6121a | 2133 | if (s->size == 0) |
a85d7ed0 | 2134 | { |
0451c93c MS |
2135 | /* If we don't need this section, strip it from the |
2136 | output file. This is to handle .rela.bss and | |
2137 | .rela.plt. We must create it in | |
2138 | create_dynamic_sections, because it must be created | |
2139 | before the linker maps input sections to output | |
2140 | sections. The linker does that before | |
2141 | adjust_dynamic_symbol is called, and it is that | |
2142 | function which decides whether anything needs to go | |
2143 | into these sections. */ | |
2144 | ||
8423293d | 2145 | s->flags |= SEC_EXCLUDE; |
a85d7ed0 NC |
2146 | continue; |
2147 | } | |
2148 | ||
c456f082 AM |
2149 | if ((s->flags & SEC_HAS_CONTENTS) == 0) |
2150 | continue; | |
2151 | ||
0451c93c MS |
2152 | /* Allocate memory for the section contents. We use bfd_zalloc |
2153 | here in case unused entries are not reclaimed before the | |
2154 | section's contents are written out. This should not happen, | |
2155 | but this way if it does, we get a R_390_NONE reloc instead | |
2156 | of garbage. */ | |
eea6121a | 2157 | s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size); |
0451c93c | 2158 | if (s->contents == NULL) |
b34976b6 | 2159 | return FALSE; |
a85d7ed0 NC |
2160 | } |
2161 | ||
0451c93c | 2162 | if (htab->elf.dynamic_sections_created) |
a85d7ed0 NC |
2163 | { |
2164 | /* Add some entries to the .dynamic section. We fill in the | |
2165 | values later, in elf_s390_finish_dynamic_sections, but we | |
2166 | must add the entries now so that we get the correct size for | |
2167 | the .dynamic section. The DT_DEBUG entry is filled in by the | |
2168 | dynamic linker and used by the debugger. */ | |
dc810e39 | 2169 | #define add_dynamic_entry(TAG, VAL) \ |
5a580b3a | 2170 | _bfd_elf_add_dynamic_entry (info, TAG, VAL) |
dc810e39 | 2171 | |
0e1862bb | 2172 | if (bfd_link_executable (info)) |
a85d7ed0 | 2173 | { |
dc810e39 | 2174 | if (!add_dynamic_entry (DT_DEBUG, 0)) |
b34976b6 | 2175 | return FALSE; |
a85d7ed0 NC |
2176 | } |
2177 | ||
f41345a7 | 2178 | if (htab->elf.splt->size != 0) |
a85d7ed0 | 2179 | { |
dc810e39 AM |
2180 | if (!add_dynamic_entry (DT_PLTGOT, 0) |
2181 | || !add_dynamic_entry (DT_PLTRELSZ, 0) | |
2182 | || !add_dynamic_entry (DT_PLTREL, DT_RELA) | |
2183 | || !add_dynamic_entry (DT_JMPREL, 0)) | |
b34976b6 | 2184 | return FALSE; |
a85d7ed0 NC |
2185 | } |
2186 | ||
2187 | if (relocs) | |
947216bf AM |
2188 | { |
2189 | if (!add_dynamic_entry (DT_RELA, 0) | |
2190 | || !add_dynamic_entry (DT_RELASZ, 0) | |
2191 | || !add_dynamic_entry (DT_RELAENT, sizeof (Elf64_External_Rela))) | |
b34976b6 | 2192 | return FALSE; |
ec338859 | 2193 | |
0451c93c MS |
2194 | /* If any dynamic relocs apply to a read-only section, |
2195 | then we need a DT_TEXTREL entry. */ | |
248866a8 AM |
2196 | if ((info->flags & DF_TEXTREL) == 0) |
2197 | elf_link_hash_traverse (&htab->elf, readonly_dynrelocs, | |
2c3fc389 | 2198 | info); |
ec338859 | 2199 | |
0451c93c MS |
2200 | if ((info->flags & DF_TEXTREL) != 0) |
2201 | { | |
2202 | if (!add_dynamic_entry (DT_TEXTREL, 0)) | |
b34976b6 | 2203 | return FALSE; |
0451c93c | 2204 | } |
a85d7ed0 NC |
2205 | } |
2206 | } | |
dc810e39 | 2207 | #undef add_dynamic_entry |
a85d7ed0 | 2208 | |
b34976b6 | 2209 | return TRUE; |
a85d7ed0 NC |
2210 | } |
2211 | ||
69fc87f1 MS |
2212 | /* Return the base VMA address which should be subtracted from real addresses |
2213 | when resolving @dtpoff relocation. | |
2214 | This is PT_TLS segment p_vaddr. */ | |
2215 | ||
2216 | static bfd_vma | |
2c3fc389 | 2217 | dtpoff_base (struct bfd_link_info *info) |
69fc87f1 | 2218 | { |
e1918d23 AM |
2219 | /* If tls_sec is NULL, we should have signalled an error already. */ |
2220 | if (elf_hash_table (info)->tls_sec == NULL) | |
69fc87f1 | 2221 | return 0; |
e1918d23 | 2222 | return elf_hash_table (info)->tls_sec->vma; |
69fc87f1 MS |
2223 | } |
2224 | ||
2225 | /* Return the relocation value for @tpoff relocation | |
2226 | if STT_TLS virtual address is ADDRESS. */ | |
2227 | ||
2228 | static bfd_vma | |
2c3fc389 | 2229 | tpoff (struct bfd_link_info *info, bfd_vma address) |
69fc87f1 | 2230 | { |
e1918d23 | 2231 | struct elf_link_hash_table *htab = elf_hash_table (info); |
69fc87f1 | 2232 | |
e1918d23 AM |
2233 | /* If tls_sec is NULL, we should have signalled an error already. */ |
2234 | if (htab->tls_sec == NULL) | |
69fc87f1 | 2235 | return 0; |
e1918d23 | 2236 | return htab->tls_size + htab->tls_sec->vma - address; |
69fc87f1 MS |
2237 | } |
2238 | ||
2239 | /* Complain if TLS instruction relocation is against an invalid | |
2240 | instruction. */ | |
2241 | ||
2242 | static void | |
2c3fc389 NC |
2243 | invalid_tls_insn (bfd *input_bfd, |
2244 | asection *input_section, | |
2245 | Elf_Internal_Rela *rel) | |
69fc87f1 MS |
2246 | { |
2247 | reloc_howto_type *howto; | |
2248 | ||
2249 | howto = elf_howto_table + ELF64_R_TYPE (rel->r_info); | |
4eca0228 | 2250 | _bfd_error_handler |
695344c0 | 2251 | /* xgettext:c-format */ |
d003868e AM |
2252 | (_("%B(%A+0x%lx): invalid instruction for TLS relocation %s"), |
2253 | input_bfd, | |
2254 | input_section, | |
69fc87f1 MS |
2255 | (long) rel->r_offset, |
2256 | howto->name); | |
77df2968 | 2257 | bfd_set_error (bfd_error_bad_value); |
69fc87f1 MS |
2258 | } |
2259 | ||
a85d7ed0 NC |
2260 | /* Relocate a 390 ELF section. */ |
2261 | ||
b34976b6 | 2262 | static bfd_boolean |
4dfe6ac6 NC |
2263 | elf_s390_relocate_section (bfd *output_bfd, |
2264 | struct bfd_link_info *info, | |
2265 | bfd *input_bfd, | |
2266 | asection *input_section, | |
2267 | bfd_byte *contents, | |
2268 | Elf_Internal_Rela *relocs, | |
2269 | Elf_Internal_Sym *local_syms, | |
2270 | asection **local_sections) | |
a85d7ed0 | 2271 | { |
0451c93c | 2272 | struct elf_s390_link_hash_table *htab; |
a85d7ed0 NC |
2273 | Elf_Internal_Shdr *symtab_hdr; |
2274 | struct elf_link_hash_entry **sym_hashes; | |
2275 | bfd_vma *local_got_offsets; | |
a85d7ed0 NC |
2276 | Elf_Internal_Rela *rel; |
2277 | Elf_Internal_Rela *relend; | |
2278 | ||
0ffa91dd NC |
2279 | BFD_ASSERT (is_s390_elf (input_bfd)); |
2280 | ||
0451c93c | 2281 | htab = elf_s390_hash_table (info); |
4dfe6ac6 NC |
2282 | if (htab == NULL) |
2283 | return FALSE; | |
2284 | ||
0ffa91dd | 2285 | symtab_hdr = &elf_symtab_hdr (input_bfd); |
a85d7ed0 NC |
2286 | sym_hashes = elf_sym_hashes (input_bfd); |
2287 | local_got_offsets = elf_local_got_offsets (input_bfd); | |
2288 | ||
a85d7ed0 NC |
2289 | rel = relocs; |
2290 | relend = relocs + input_section->reloc_count; | |
2291 | for (; rel < relend; rel++) | |
2292 | { | |
5236c819 | 2293 | unsigned int r_type; |
a85d7ed0 NC |
2294 | reloc_howto_type *howto; |
2295 | unsigned long r_symndx; | |
2296 | struct elf_link_hash_entry *h; | |
2297 | Elf_Internal_Sym *sym; | |
2298 | asection *sec; | |
0451c93c | 2299 | bfd_vma off; |
a85d7ed0 | 2300 | bfd_vma relocation; |
b34976b6 | 2301 | bfd_boolean unresolved_reloc; |
a85d7ed0 | 2302 | bfd_reloc_status_type r; |
69fc87f1 | 2303 | int tls_type; |
470b557a | 2304 | asection *base_got = htab->elf.sgot; |
a85d7ed0 NC |
2305 | |
2306 | r_type = ELF64_R_TYPE (rel->r_info); | |
0451c93c | 2307 | if (r_type == (int) R_390_GNU_VTINHERIT |
947216bf AM |
2308 | || r_type == (int) R_390_GNU_VTENTRY) |
2309 | continue; | |
5236c819 | 2310 | if (r_type >= (int) R_390_max) |
a85d7ed0 NC |
2311 | { |
2312 | bfd_set_error (bfd_error_bad_value); | |
b34976b6 | 2313 | return FALSE; |
a85d7ed0 | 2314 | } |
a85d7ed0 | 2315 | |
b491616a | 2316 | howto = elf_howto_table + r_type; |
a85d7ed0 | 2317 | r_symndx = ELF64_R_SYM (rel->r_info); |
5236c819 | 2318 | |
a85d7ed0 NC |
2319 | h = NULL; |
2320 | sym = NULL; | |
2321 | sec = NULL; | |
b34976b6 | 2322 | unresolved_reloc = FALSE; |
a85d7ed0 NC |
2323 | if (r_symndx < symtab_hdr->sh_info) |
2324 | { | |
2325 | sym = local_syms + r_symndx; | |
2326 | sec = local_sections[r_symndx]; | |
470b557a AK |
2327 | |
2328 | if (ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC) | |
2329 | { | |
2330 | struct plt_entry *local_plt = elf_s390_local_plt (input_bfd); | |
2331 | if (local_plt == NULL) | |
2332 | return FALSE; | |
2333 | ||
2334 | /* Address of the PLT slot. */ | |
2335 | relocation = (htab->elf.iplt->output_section->vma | |
2336 | + htab->elf.iplt->output_offset | |
2337 | + local_plt[r_symndx].plt.offset); | |
2338 | ||
2339 | switch (r_type) | |
2340 | { | |
31db78f6 AK |
2341 | case R_390_PLTOFF16: |
2342 | case R_390_PLTOFF32: | |
2343 | case R_390_PLTOFF64: | |
2344 | relocation -= htab->elf.sgot->output_section->vma; | |
2345 | break; | |
470b557a AK |
2346 | case R_390_GOTPLT12: |
2347 | case R_390_GOTPLT16: | |
2348 | case R_390_GOTPLT20: | |
2349 | case R_390_GOTPLT32: | |
2350 | case R_390_GOTPLT64: | |
2351 | case R_390_GOTPLTENT: | |
2352 | case R_390_GOT12: | |
2353 | case R_390_GOT16: | |
2354 | case R_390_GOT20: | |
2355 | case R_390_GOT32: | |
2356 | case R_390_GOT64: | |
2357 | case R_390_GOTENT: | |
2358 | { | |
2359 | /* Write the PLT slot address into the GOT slot. */ | |
2360 | bfd_put_64 (output_bfd, relocation, | |
2361 | htab->elf.sgot->contents + | |
2362 | local_got_offsets[r_symndx]); | |
2363 | relocation = (local_got_offsets[r_symndx] + | |
2364 | htab->elf.sgot->output_offset); | |
2365 | ||
2366 | if (r_type == R_390_GOTENT || r_type == R_390_GOTPLTENT) | |
2367 | relocation += htab->elf.sgot->output_section->vma; | |
2368 | break; | |
2369 | } | |
2370 | default: | |
2371 | break; | |
2372 | } | |
2373 | /* The output section is needed later in | |
2374 | finish_dynamic_section when creating the dynamic | |
2375 | relocation. */ | |
2376 | local_plt[r_symndx].sec = sec; | |
2377 | goto do_relocation; | |
2378 | } | |
2379 | else | |
2380 | relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel); | |
a85d7ed0 NC |
2381 | } |
2382 | else | |
2383 | { | |
560e09e9 | 2384 | bfd_boolean warned ATTRIBUTE_UNUSED; |
62d887d4 | 2385 | bfd_boolean ignored ATTRIBUTE_UNUSED; |
0451c93c | 2386 | |
b2a8e766 AM |
2387 | RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel, |
2388 | r_symndx, symtab_hdr, sym_hashes, | |
2389 | h, sec, relocation, | |
62d887d4 | 2390 | unresolved_reloc, warned, ignored); |
a85d7ed0 NC |
2391 | } |
2392 | ||
dbaa2011 | 2393 | if (sec != NULL && discarded_section (sec)) |
e4067dbb | 2394 | RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section, |
545fd46b | 2395 | rel, 1, relend, howto, 0, contents); |
ab96bf03 | 2396 | |
0e1862bb | 2397 | if (bfd_link_relocatable (info)) |
ab96bf03 AM |
2398 | continue; |
2399 | ||
a85d7ed0 NC |
2400 | switch (r_type) |
2401 | { | |
5236c819 MS |
2402 | case R_390_GOTPLT12: |
2403 | case R_390_GOTPLT16: | |
bd1ea41b | 2404 | case R_390_GOTPLT20: |
5236c819 MS |
2405 | case R_390_GOTPLT32: |
2406 | case R_390_GOTPLT64: | |
2407 | case R_390_GOTPLTENT: | |
2408 | /* There are three cases for a GOTPLT relocation. 1) The | |
2409 | relocation is against the jump slot entry of a plt that | |
2410 | will get emitted to the output file. 2) The relocation | |
2411 | is against the jump slot of a plt entry that has been | |
2412 | removed. elf_s390_adjust_gotplt has created a GOT entry | |
2413 | as replacement. 3) The relocation is against a local symbol. | |
2414 | Cases 2) and 3) are the same as the GOT relocation code | |
2415 | so we just have to test for case 1 and fall through for | |
2416 | the other two. */ | |
2417 | if (h != NULL && h->plt.offset != (bfd_vma) -1) | |
2418 | { | |
2419 | bfd_vma plt_index; | |
2420 | ||
470b557a AK |
2421 | if (s390_is_ifunc_symbol_p (h)) |
2422 | { | |
2423 | plt_index = h->plt.offset / PLT_ENTRY_SIZE; | |
2424 | relocation = (plt_index * GOT_ENTRY_SIZE + | |
2425 | htab->elf.igotplt->output_offset); | |
2426 | if (r_type == R_390_GOTPLTENT) | |
2427 | relocation += htab->elf.igotplt->output_section->vma; | |
2428 | } | |
2429 | else | |
2430 | { | |
2431 | /* Calc. index no. | |
2432 | Current offset - size first entry / entry size. */ | |
2433 | plt_index = (h->plt.offset - PLT_FIRST_ENTRY_SIZE) / | |
2434 | PLT_ENTRY_SIZE; | |
2435 | ||
2436 | /* Offset in GOT is PLT index plus GOT headers(3) | |
3b67f094 | 2437 | times 8, addr & GOT addr. */ |
470b557a AK |
2438 | relocation = (plt_index + 3) * GOT_ENTRY_SIZE; |
2439 | if (r_type == R_390_GOTPLTENT) | |
2440 | relocation += htab->elf.sgot->output_section->vma; | |
2441 | } | |
5236c819 | 2442 | unresolved_reloc = FALSE; |
5236c819 MS |
2443 | break; |
2444 | } | |
2445 | /* Fall through. */ | |
2446 | ||
947216bf AM |
2447 | case R_390_GOT12: |
2448 | case R_390_GOT16: | |
bd1ea41b | 2449 | case R_390_GOT20: |
947216bf AM |
2450 | case R_390_GOT32: |
2451 | case R_390_GOT64: | |
2452 | case R_390_GOTENT: | |
2453 | /* Relocation is to the entry for this symbol in the global | |
2454 | offset table. */ | |
470b557a | 2455 | if (base_got == NULL) |
0451c93c | 2456 | abort (); |
a85d7ed0 | 2457 | |
947216bf AM |
2458 | if (h != NULL) |
2459 | { | |
b34976b6 | 2460 | bfd_boolean dyn; |
a85d7ed0 | 2461 | |
947216bf | 2462 | off = h->got.offset; |
0451c93c | 2463 | dyn = htab->elf.dynamic_sections_created; |
470b557a AK |
2464 | |
2465 | if (s390_is_ifunc_symbol_p (h)) | |
2466 | { | |
2467 | BFD_ASSERT (h->plt.offset != (bfd_vma) -1); | |
2468 | if (off == (bfd_vma)-1) | |
2469 | { | |
2470 | /* No explicit GOT usage so redirect to the | |
2471 | got.iplt slot. */ | |
2472 | base_got = htab->elf.igotplt; | |
2473 | off = h->plt.offset / PLT_ENTRY_SIZE * GOT_ENTRY_SIZE; | |
2474 | } | |
2475 | else | |
2476 | { | |
2477 | /* Explicit GOT slots must contain the address | |
2478 | of the PLT slot. This will be handled in | |
2479 | finish_dynamic_symbol. */ | |
2480 | } | |
2481 | } | |
0e1862bb L |
2482 | else if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, |
2483 | bfd_link_pic (info), | |
2484 | h) | |
2485 | || (bfd_link_pic (info) | |
470b557a AK |
2486 | && SYMBOL_REFERENCES_LOCAL (info, h)) |
2487 | || (ELF_ST_VISIBILITY (h->other) | |
2488 | && h->root.type == bfd_link_hash_undefweak)) | |
947216bf AM |
2489 | { |
2490 | /* This is actually a static link, or it is a | |
2491 | -Bsymbolic link and the symbol is defined | |
2492 | locally, or the symbol was forced to be local | |
2493 | because of a version file. We must initialize | |
2494 | this entry in the global offset table. Since the | |
2495 | offset must always be a multiple of 2, we use the | |
2496 | least significant bit to record whether we have | |
2497 | initialized it already. | |
2498 | ||
2499 | When doing a dynamic link, we create a .rel.got | |
2500 | relocation entry to initialize the value. This | |
2501 | is done in the finish_dynamic_symbol routine. */ | |
2502 | if ((off & 1) != 0) | |
2503 | off &= ~1; | |
2504 | else | |
2505 | { | |
a85d7ed0 | 2506 | bfd_put_64 (output_bfd, relocation, |
470b557a | 2507 | base_got->contents + off); |
947216bf AM |
2508 | h->got.offset |= 1; |
2509 | } | |
a63cc5f7 AK |
2510 | |
2511 | if ((h->def_regular | |
0e1862bb | 2512 | && bfd_link_pic (info) |
a63cc5f7 AK |
2513 | && SYMBOL_REFERENCES_LOCAL (info, h)) |
2514 | /* lgrl rx,sym@GOTENT -> larl rx, sym */ | |
2515 | && ((r_type == R_390_GOTENT | |
2516 | && (bfd_get_16 (input_bfd, | |
2517 | contents + rel->r_offset - 2) | |
2518 | & 0xff0f) == 0xc408) | |
2519 | /* lg rx, sym@GOT(r12) -> larl rx, sym */ | |
2520 | || (r_type == R_390_GOT20 | |
2521 | && (bfd_get_32 (input_bfd, | |
2522 | contents + rel->r_offset - 2) | |
2523 | & 0xff00f000) == 0xe300c000 | |
2524 | && bfd_get_8 (input_bfd, | |
2525 | contents + rel->r_offset + 3) == 0x04))) | |
2526 | ||
2527 | { | |
2528 | unsigned short new_insn = | |
2529 | (0xc000 | (bfd_get_8 (input_bfd, | |
2530 | contents + rel->r_offset - 1) & 0xf0)); | |
2531 | bfd_put_16 (output_bfd, new_insn, | |
2532 | contents + rel->r_offset - 2); | |
2533 | r_type = R_390_PC32DBL; | |
2534 | rel->r_addend = 2; | |
2535 | howto = elf_howto_table + r_type; | |
2536 | relocation = h->root.u.def.value | |
2537 | + h->root.u.def.section->output_section->vma | |
2538 | + h->root.u.def.section->output_offset; | |
2539 | goto do_relocation; | |
2540 | } | |
947216bf | 2541 | } |
0451c93c | 2542 | else |
b34976b6 | 2543 | unresolved_reloc = FALSE; |
947216bf AM |
2544 | } |
2545 | else | |
2546 | { | |
0451c93c MS |
2547 | if (local_got_offsets == NULL) |
2548 | abort (); | |
a85d7ed0 | 2549 | |
947216bf | 2550 | off = local_got_offsets[r_symndx]; |
a85d7ed0 | 2551 | |
947216bf AM |
2552 | /* The offset must always be a multiple of 8. We use |
2553 | the least significant bit to record whether we have | |
2554 | already generated the necessary reloc. */ | |
2555 | if ((off & 1) != 0) | |
2556 | off &= ~1; | |
2557 | else | |
2558 | { | |
2559 | bfd_put_64 (output_bfd, relocation, | |
f41345a7 | 2560 | htab->elf.sgot->contents + off); |
a85d7ed0 | 2561 | |
0e1862bb | 2562 | if (bfd_link_pic (info)) |
947216bf AM |
2563 | { |
2564 | asection *s; | |
2565 | Elf_Internal_Rela outrel; | |
2566 | bfd_byte *loc; | |
a85d7ed0 | 2567 | |
f41345a7 | 2568 | s = htab->elf.srelgot; |
947216bf | 2569 | if (s == NULL) |
0451c93c | 2570 | abort (); |
a85d7ed0 | 2571 | |
f41345a7 AK |
2572 | outrel.r_offset = (htab->elf.sgot->output_section->vma |
2573 | + htab->elf.sgot->output_offset | |
947216bf AM |
2574 | + off); |
2575 | outrel.r_info = ELF64_R_INFO (0, R_390_RELATIVE); | |
a85d7ed0 | 2576 | outrel.r_addend = relocation; |
947216bf AM |
2577 | loc = s->contents; |
2578 | loc += s->reloc_count++ * sizeof (Elf64_External_Rela); | |
2579 | bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc); | |
2580 | } | |
a85d7ed0 | 2581 | |
947216bf AM |
2582 | local_got_offsets[r_symndx] |= 1; |
2583 | } | |
2584 | } | |
a85d7ed0 | 2585 | |
0451c93c MS |
2586 | if (off >= (bfd_vma) -2) |
2587 | abort (); | |
2588 | ||
470b557a | 2589 | relocation = base_got->output_offset + off; |
0451c93c | 2590 | |
ae9a127f NC |
2591 | /* For @GOTENT the relocation is against the offset between |
2592 | the instruction and the symbols entry in the GOT and not | |
2593 | between the start of the GOT and the symbols entry. We | |
2594 | add the vma of the GOT to get the correct value. */ | |
5236c819 MS |
2595 | if ( r_type == R_390_GOTENT |
2596 | || r_type == R_390_GOTPLTENT) | |
470b557a | 2597 | relocation += base_got->output_section->vma; |
a85d7ed0 | 2598 | |
947216bf | 2599 | break; |
99c79b2e | 2600 | |
5236c819 MS |
2601 | case R_390_GOTOFF16: |
2602 | case R_390_GOTOFF32: | |
2603 | case R_390_GOTOFF64: | |
947216bf AM |
2604 | /* Relocation is relative to the start of the global offset |
2605 | table. */ | |
a85d7ed0 | 2606 | |
d47b13e0 AK |
2607 | if (h != NULL |
2608 | && s390_is_ifunc_symbol_p (h) | |
2609 | && h->def_regular | |
2610 | && !bfd_link_executable (info)) | |
2611 | { | |
2612 | relocation = (htab->elf.iplt->output_section->vma | |
2613 | + htab->elf.iplt->output_offset | |
2614 | + h->plt.offset | |
2615 | - htab->elf.sgot->output_section->vma); | |
2616 | goto do_relocation; | |
2617 | } | |
2618 | ||
947216bf AM |
2619 | /* Note that sgot->output_offset is not involved in this |
2620 | calculation. We always want the start of .got. If we | |
2621 | defined _GLOBAL_OFFSET_TABLE in a different way, as is | |
2622 | permitted by the ABI, we might have to change this | |
2623 | calculation. */ | |
f41345a7 | 2624 | relocation -= htab->elf.sgot->output_section->vma; |
947216bf | 2625 | break; |
a85d7ed0 | 2626 | |
947216bf | 2627 | case R_390_GOTPC: |
a85d7ed0 | 2628 | case R_390_GOTPCDBL: |
947216bf | 2629 | /* Use global offset table as symbol value. */ |
f41345a7 | 2630 | relocation = htab->elf.sgot->output_section->vma; |
b34976b6 | 2631 | unresolved_reloc = FALSE; |
947216bf | 2632 | break; |
a85d7ed0 | 2633 | |
fb798c50 | 2634 | case R_390_PLT12DBL: |
947216bf | 2635 | case R_390_PLT16DBL: |
fb798c50 | 2636 | case R_390_PLT24DBL: |
947216bf AM |
2637 | case R_390_PLT32: |
2638 | case R_390_PLT32DBL: | |
2639 | case R_390_PLT64: | |
2640 | /* Relocation is to the entry for this symbol in the | |
2641 | procedure linkage table. */ | |
a85d7ed0 | 2642 | |
947216bf AM |
2643 | /* Resolve a PLT32 reloc against a local symbol directly, |
2644 | without using the procedure linkage table. */ | |
2645 | if (h == NULL) | |
2646 | break; | |
a85d7ed0 | 2647 | |
947216bf | 2648 | if (h->plt.offset == (bfd_vma) -1 |
31db78f6 | 2649 | || (htab->elf.splt == NULL && !s390_is_ifunc_symbol_p (h))) |
947216bf AM |
2650 | { |
2651 | /* We didn't make a PLT entry for this symbol. This | |
2652 | happens when statically linking PIC code, or when | |
2653 | using -Bsymbolic. */ | |
2654 | break; | |
2655 | } | |
470b557a AK |
2656 | if (s390_is_ifunc_symbol_p (h)) |
2657 | relocation = (htab->elf.iplt->output_section->vma | |
2658 | + htab->elf.iplt->output_offset | |
2659 | + h->plt.offset); | |
2660 | else | |
2661 | relocation = (htab->elf.splt->output_section->vma | |
2662 | + htab->elf.splt->output_offset | |
2663 | + h->plt.offset); | |
b34976b6 | 2664 | unresolved_reloc = FALSE; |
26e41594 | 2665 | break; |
5236c819 MS |
2666 | |
2667 | case R_390_PLTOFF16: | |
2668 | case R_390_PLTOFF32: | |
2669 | case R_390_PLTOFF64: | |
26e41594 AM |
2670 | /* Relocation is to the entry for this symbol in the |
2671 | procedure linkage table relative to the start of the GOT. */ | |
5236c819 MS |
2672 | |
2673 | /* For local symbols or if we didn't make a PLT entry for | |
2674 | this symbol resolve the symbol directly. */ | |
31db78f6 | 2675 | if (h == NULL |
5236c819 | 2676 | || h->plt.offset == (bfd_vma) -1 |
31db78f6 | 2677 | || (htab->elf.splt == NULL && !s390_is_ifunc_symbol_p (h))) |
5236c819 | 2678 | { |
f41345a7 | 2679 | relocation -= htab->elf.sgot->output_section->vma; |
5236c819 MS |
2680 | break; |
2681 | } | |
2682 | ||
470b557a AK |
2683 | if (s390_is_ifunc_symbol_p (h)) |
2684 | relocation = (htab->elf.iplt->output_section->vma | |
2685 | + htab->elf.iplt->output_offset | |
2686 | + h->plt.offset | |
2687 | - htab->elf.sgot->output_section->vma); | |
2688 | else | |
2689 | relocation = (htab->elf.splt->output_section->vma | |
2690 | + htab->elf.splt->output_offset | |
2691 | + h->plt.offset | |
2692 | - htab->elf.sgot->output_section->vma); | |
5236c819 | 2693 | unresolved_reloc = FALSE; |
947216bf AM |
2694 | break; |
2695 | ||
947216bf | 2696 | case R_390_PC16: |
fb798c50 | 2697 | case R_390_PC12DBL: |
947216bf | 2698 | case R_390_PC16DBL: |
fb798c50 | 2699 | case R_390_PC24DBL: |
947216bf | 2700 | case R_390_PC32: |
a85d7ed0 | 2701 | case R_390_PC32DBL: |
947216bf | 2702 | case R_390_PC64: |
99ba5125 AK |
2703 | /* The target of these relocs are instruction operands |
2704 | residing in read-only sections. We cannot emit a runtime | |
2705 | reloc for it. */ | |
2706 | if (h != NULL | |
2707 | && s390_is_ifunc_symbol_p (h) | |
2708 | && h->def_regular | |
2709 | && bfd_link_pic (info)) | |
2710 | { | |
2711 | relocation = (htab->elf.iplt->output_section->vma | |
2712 | + htab->elf.iplt->output_offset | |
2713 | + h->plt.offset); | |
2714 | goto do_relocation; | |
2715 | } | |
1a0670f3 | 2716 | /* Fall through. */ |
99ba5125 AK |
2717 | |
2718 | case R_390_8: | |
2719 | case R_390_16: | |
2720 | case R_390_32: | |
2721 | case R_390_64: | |
470b557a AK |
2722 | |
2723 | if (h != NULL | |
2724 | && s390_is_ifunc_symbol_p (h) | |
2725 | && h->def_regular) | |
2726 | { | |
0e1862bb | 2727 | if (!bfd_link_pic (info) || !h->non_got_ref) |
470b557a AK |
2728 | { |
2729 | /* For a non-shared object STT_GNU_IFUNC symbol must | |
2730 | go through PLT. */ | |
2731 | relocation = (htab->elf.iplt->output_section->vma | |
2732 | + htab->elf.iplt->output_offset | |
2733 | + h ->plt.offset); | |
2734 | goto do_relocation; | |
2735 | } | |
2736 | else | |
2737 | { | |
2738 | /* For shared objects a runtime relocation is needed. */ | |
2739 | ||
2740 | Elf_Internal_Rela outrel; | |
2741 | asection *sreloc; | |
2742 | ||
2743 | /* Need a dynamic relocation to get the real function | |
2744 | address. */ | |
2745 | outrel.r_offset = _bfd_elf_section_offset (output_bfd, | |
2746 | info, | |
2747 | input_section, | |
2748 | rel->r_offset); | |
2749 | if (outrel.r_offset == (bfd_vma) -1 | |
2750 | || outrel.r_offset == (bfd_vma) -2) | |
2751 | abort (); | |
2752 | ||
2753 | outrel.r_offset += (input_section->output_section->vma | |
2754 | + input_section->output_offset); | |
2755 | ||
2756 | if (h->dynindx == -1 | |
2757 | || h->forced_local | |
0e1862bb | 2758 | || bfd_link_executable (info)) |
470b557a AK |
2759 | { |
2760 | /* This symbol is resolved locally. */ | |
2761 | outrel.r_info = ELF64_R_INFO (0, R_390_IRELATIVE); | |
2762 | outrel.r_addend = (h->root.u.def.value | |
2763 | + h->root.u.def.section->output_section->vma | |
2764 | + h->root.u.def.section->output_offset); | |
2765 | } | |
2766 | else | |
2767 | { | |
2768 | outrel.r_info = ELF64_R_INFO (h->dynindx, r_type); | |
2769 | outrel.r_addend = 0; | |
2770 | } | |
2771 | ||
2772 | sreloc = htab->elf.irelifunc; | |
2773 | elf_append_rela (output_bfd, sreloc, &outrel); | |
2774 | ||
2775 | /* If this reloc is against an external symbol, we | |
2776 | do not want to fiddle with the addend. Otherwise, | |
2777 | we need to include the symbol value so that it | |
2778 | becomes an addend for the dynamic reloc. For an | |
2779 | internal symbol, we have updated addend. */ | |
2780 | continue; | |
2781 | } | |
2782 | } | |
2783 | ||
b1e24c02 | 2784 | if ((input_section->flags & SEC_ALLOC) == 0) |
ec338859 AM |
2785 | break; |
2786 | ||
0e1862bb | 2787 | if ((bfd_link_pic (info) |
82058a73 MS |
2788 | && (h == NULL |
2789 | || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT | |
2790 | || h->root.type != bfd_link_hash_undefweak) | |
0451c93c | 2791 | && ((r_type != R_390_PC16 |
fb798c50 | 2792 | && r_type != R_390_PC12DBL |
0451c93c | 2793 | && r_type != R_390_PC16DBL |
fb798c50 | 2794 | && r_type != R_390_PC24DBL |
0451c93c MS |
2795 | && r_type != R_390_PC32 |
2796 | && r_type != R_390_PC32DBL | |
2797 | && r_type != R_390_PC64) | |
8c21ca21 | 2798 | || !SYMBOL_CALLS_LOCAL (info, h))) |
64285810 | 2799 | || (ELIMINATE_COPY_RELOCS |
0e1862bb | 2800 | && !bfd_link_pic (info) |
0451c93c MS |
2801 | && h != NULL |
2802 | && h->dynindx != -1 | |
f5385ebf AM |
2803 | && !h->non_got_ref |
2804 | && ((h->def_dynamic | |
2805 | && !h->def_regular) | |
0451c93c MS |
2806 | || h->root.type == bfd_link_hash_undefweak |
2807 | || h->root.type == bfd_link_hash_undefined))) | |
947216bf AM |
2808 | { |
2809 | Elf_Internal_Rela outrel; | |
b34976b6 | 2810 | bfd_boolean skip, relocate; |
0451c93c | 2811 | asection *sreloc; |
947216bf | 2812 | bfd_byte *loc; |
a85d7ed0 | 2813 | |
947216bf AM |
2814 | /* When generating a shared object, these relocations |
2815 | are copied into the output file to be resolved at run | |
2816 | time. */ | |
b34976b6 AM |
2817 | skip = FALSE; |
2818 | relocate = FALSE; | |
a85d7ed0 | 2819 | |
c629eae0 JJ |
2820 | outrel.r_offset = |
2821 | _bfd_elf_section_offset (output_bfd, info, input_section, | |
2822 | rel->r_offset); | |
2823 | if (outrel.r_offset == (bfd_vma) -1) | |
b34976b6 | 2824 | skip = TRUE; |
0bb2d96a | 2825 | else if (outrel.r_offset == (bfd_vma) -2) |
b34976b6 | 2826 | skip = TRUE, relocate = TRUE; |
a85d7ed0 | 2827 | |
947216bf AM |
2828 | outrel.r_offset += (input_section->output_section->vma |
2829 | + input_section->output_offset); | |
a85d7ed0 | 2830 | |
947216bf | 2831 | if (skip) |
0bb2d96a | 2832 | memset (&outrel, 0, sizeof outrel); |
947216bf | 2833 | else if (h != NULL |
0451c93c MS |
2834 | && h->dynindx != -1 |
2835 | && (r_type == R_390_PC16 | |
fb798c50 | 2836 | || r_type == R_390_PC12DBL |
0451c93c | 2837 | || r_type == R_390_PC16DBL |
fb798c50 | 2838 | || r_type == R_390_PC24DBL |
0451c93c MS |
2839 | || r_type == R_390_PC32 |
2840 | || r_type == R_390_PC32DBL | |
2841 | || r_type == R_390_PC64 | |
0e1862bb | 2842 | || !bfd_link_pic (info) |
8c21ca21 | 2843 | || !SYMBOLIC_BIND (info, h) |
f5385ebf | 2844 | || !h->def_regular)) |
947216bf AM |
2845 | { |
2846 | outrel.r_info = ELF64_R_INFO (h->dynindx, r_type); | |
27018c3f | 2847 | outrel.r_addend = rel->r_addend; |
947216bf AM |
2848 | } |
2849 | else | |
2850 | { | |
0451c93c | 2851 | /* This symbol is local, or marked to become local. */ |
90ced0dd | 2852 | outrel.r_addend = relocation + rel->r_addend; |
b5727d75 MS |
2853 | if (r_type == R_390_64) |
2854 | { | |
2855 | relocate = TRUE; | |
2856 | outrel.r_info = ELF64_R_INFO (0, R_390_RELATIVE); | |
b5727d75 MS |
2857 | } |
2858 | else | |
2859 | { | |
2860 | long sindx; | |
2861 | ||
90ced0dd | 2862 | if (bfd_is_abs_section (sec)) |
b5727d75 MS |
2863 | sindx = 0; |
2864 | else if (sec == NULL || sec->owner == NULL) | |
2865 | { | |
2866 | bfd_set_error(bfd_error_bad_value); | |
2867 | return FALSE; | |
2868 | } | |
2869 | else | |
2870 | { | |
2871 | asection *osec; | |
2872 | ||
2873 | osec = sec->output_section; | |
2874 | sindx = elf_section_data (osec)->dynindx; | |
74541ad4 AM |
2875 | |
2876 | if (sindx == 0) | |
2877 | { | |
2878 | osec = htab->elf.text_index_section; | |
2879 | sindx = elf_section_data (osec)->dynindx; | |
2880 | } | |
2881 | BFD_ASSERT (sindx != 0); | |
90ced0dd MS |
2882 | |
2883 | /* We are turning this relocation into one | |
2884 | against a section symbol, so subtract out | |
2885 | the output section's address but not the | |
2886 | offset of the input section in the output | |
2887 | section. */ | |
90ced0dd | 2888 | outrel.r_addend -= osec->vma; |
b5727d75 MS |
2889 | } |
2890 | outrel.r_info = ELF64_R_INFO (sindx, r_type); | |
b5727d75 | 2891 | } |
0451c93c | 2892 | } |
a85d7ed0 | 2893 | |
0451c93c MS |
2894 | sreloc = elf_section_data (input_section)->sreloc; |
2895 | if (sreloc == NULL) | |
2896 | abort (); | |
2897 | ||
947216bf AM |
2898 | loc = sreloc->contents; |
2899 | loc += sreloc->reloc_count++ * sizeof (Elf64_External_Rela); | |
2900 | bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc); | |
a85d7ed0 | 2901 | |
947216bf AM |
2902 | /* If this reloc is against an external symbol, we do |
2903 | not want to fiddle with the addend. Otherwise, we | |
2904 | need to include the symbol value so that it becomes | |
2905 | an addend for the dynamic reloc. */ | |
2906 | if (! relocate) | |
2907 | continue; | |
2908 | } | |
a85d7ed0 | 2909 | |
947216bf | 2910 | break; |
a85d7ed0 | 2911 | |
69fc87f1 MS |
2912 | /* Relocations for tls literal pool entries. */ |
2913 | case R_390_TLS_IE64: | |
0e1862bb | 2914 | if (bfd_link_pic (info)) |
69fc87f1 MS |
2915 | { |
2916 | Elf_Internal_Rela outrel; | |
2917 | asection *sreloc; | |
2918 | bfd_byte *loc; | |
2919 | ||
2920 | outrel.r_offset = rel->r_offset | |
2921 | + input_section->output_section->vma | |
2922 | + input_section->output_offset; | |
2923 | outrel.r_info = ELF64_R_INFO (0, R_390_RELATIVE); | |
2924 | sreloc = elf_section_data (input_section)->sreloc; | |
2925 | if (sreloc == NULL) | |
2926 | abort (); | |
2927 | loc = sreloc->contents; | |
2928 | loc += sreloc->reloc_count++ * sizeof (Elf64_External_Rela); | |
2929 | bfd_elf64_swap_reloc_out (output_bfd, &outrel, loc); | |
2930 | } | |
ae9a127f | 2931 | /* Fall through. */ |
69fc87f1 MS |
2932 | |
2933 | case R_390_TLS_GD64: | |
2934 | case R_390_TLS_GOTIE64: | |
2935 | r_type = elf_s390_tls_transition (info, r_type, h == NULL); | |
2936 | tls_type = GOT_UNKNOWN; | |
2937 | if (h == NULL && local_got_offsets) | |
2938 | tls_type = elf_s390_local_got_tls_type (input_bfd) [r_symndx]; | |
2939 | else if (h != NULL) | |
2940 | { | |
2941 | tls_type = elf_s390_hash_entry(h)->tls_type; | |
0e1862bb | 2942 | if (!bfd_link_pic (info) && h->dynindx == -1 && tls_type >= GOT_TLS_IE) |
69fc87f1 MS |
2943 | r_type = R_390_TLS_LE64; |
2944 | } | |
2945 | if (r_type == R_390_TLS_GD64 && tls_type >= GOT_TLS_IE) | |
2946 | r_type = R_390_TLS_IE64; | |
2947 | ||
2948 | if (r_type == R_390_TLS_LE64) | |
2949 | { | |
2950 | /* This relocation gets optimized away by the local exec | |
2951 | access optimization. */ | |
2952 | BFD_ASSERT (! unresolved_reloc); | |
2953 | bfd_put_64 (output_bfd, -tpoff (info, relocation), | |
2954 | contents + rel->r_offset); | |
2955 | continue; | |
2956 | } | |
2957 | ||
f41345a7 | 2958 | if (htab->elf.sgot == NULL) |
69fc87f1 MS |
2959 | abort (); |
2960 | ||
2961 | if (h != NULL) | |
2962 | off = h->got.offset; | |
2963 | else | |
2964 | { | |
2965 | if (local_got_offsets == NULL) | |
2966 | abort (); | |
2967 | ||
2968 | off = local_got_offsets[r_symndx]; | |
2969 | } | |
2970 | ||
2971 | emit_tls_relocs: | |
2972 | ||
2973 | if ((off & 1) != 0) | |
2974 | off &= ~1; | |
26e41594 | 2975 | else |
69fc87f1 MS |
2976 | { |
2977 | Elf_Internal_Rela outrel; | |
2978 | bfd_byte *loc; | |
2979 | int dr_type, indx; | |
2980 | ||
f41345a7 | 2981 | if (htab->elf.srelgot == NULL) |
69fc87f1 MS |
2982 | abort (); |
2983 | ||
f41345a7 AK |
2984 | outrel.r_offset = (htab->elf.sgot->output_section->vma |
2985 | + htab->elf.sgot->output_offset + off); | |
69fc87f1 MS |
2986 | |
2987 | indx = h && h->dynindx != -1 ? h->dynindx : 0; | |
2988 | if (r_type == R_390_TLS_GD64) | |
2989 | dr_type = R_390_TLS_DTPMOD; | |
2990 | else | |
2991 | dr_type = R_390_TLS_TPOFF; | |
2992 | if (dr_type == R_390_TLS_TPOFF && indx == 0) | |
2993 | outrel.r_addend = relocation - dtpoff_base (info); | |
2994 | else | |
2995 | outrel.r_addend = 0; | |
2996 | outrel.r_info = ELF64_R_INFO (indx, dr_type); | |
f41345a7 AK |
2997 | loc = htab->elf.srelgot->contents; |
2998 | loc += htab->elf.srelgot->reloc_count++ | |
69fc87f1 MS |
2999 | * sizeof (Elf64_External_Rela); |
3000 | bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc); | |
3001 | ||
3002 | if (r_type == R_390_TLS_GD64) | |
3003 | { | |
3004 | if (indx == 0) | |
3005 | { | |
3006 | BFD_ASSERT (! unresolved_reloc); | |
3007 | bfd_put_64 (output_bfd, | |
3008 | relocation - dtpoff_base (info), | |
f41345a7 | 3009 | htab->elf.sgot->contents + off + GOT_ENTRY_SIZE); |
69fc87f1 MS |
3010 | } |
3011 | else | |
3012 | { | |
3013 | outrel.r_info = ELF64_R_INFO (indx, R_390_TLS_DTPOFF); | |
3014 | outrel.r_offset += GOT_ENTRY_SIZE; | |
3015 | outrel.r_addend = 0; | |
f41345a7 | 3016 | htab->elf.srelgot->reloc_count++; |
69fc87f1 MS |
3017 | loc += sizeof (Elf64_External_Rela); |
3018 | bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc); | |
3019 | } | |
3020 | } | |
3021 | ||
3022 | if (h != NULL) | |
3023 | h->got.offset |= 1; | |
3024 | else | |
3025 | local_got_offsets[r_symndx] |= 1; | |
3026 | } | |
3027 | ||
3028 | if (off >= (bfd_vma) -2) | |
3029 | abort (); | |
3030 | if (r_type == ELF64_R_TYPE (rel->r_info)) | |
3031 | { | |
f41345a7 | 3032 | relocation = htab->elf.sgot->output_offset + off; |
69fc87f1 | 3033 | if (r_type == R_390_TLS_IE64 || r_type == R_390_TLS_IEENT) |
f41345a7 | 3034 | relocation += htab->elf.sgot->output_section->vma; |
69fc87f1 MS |
3035 | unresolved_reloc = FALSE; |
3036 | } | |
3037 | else | |
3038 | { | |
f41345a7 | 3039 | bfd_put_64 (output_bfd, htab->elf.sgot->output_offset + off, |
69fc87f1 MS |
3040 | contents + rel->r_offset); |
3041 | continue; | |
3042 | } | |
3043 | break; | |
3044 | ||
3045 | case R_390_TLS_GOTIE12: | |
bd1ea41b | 3046 | case R_390_TLS_GOTIE20: |
69fc87f1 MS |
3047 | case R_390_TLS_IEENT: |
3048 | if (h == NULL) | |
3049 | { | |
3050 | if (local_got_offsets == NULL) | |
3051 | abort(); | |
3052 | off = local_got_offsets[r_symndx]; | |
0e1862bb | 3053 | if (bfd_link_pic (info)) |
69fc87f1 MS |
3054 | goto emit_tls_relocs; |
3055 | } | |
3056 | else | |
3057 | { | |
3058 | off = h->got.offset; | |
3059 | tls_type = elf_s390_hash_entry(h)->tls_type; | |
0e1862bb | 3060 | if (bfd_link_pic (info) || h->dynindx != -1 || tls_type < GOT_TLS_IE) |
69fc87f1 MS |
3061 | goto emit_tls_relocs; |
3062 | } | |
3063 | ||
f41345a7 | 3064 | if (htab->elf.sgot == NULL) |
69fc87f1 MS |
3065 | abort (); |
3066 | ||
3067 | BFD_ASSERT (! unresolved_reloc); | |
3068 | bfd_put_64 (output_bfd, -tpoff (info, relocation), | |
f41345a7 AK |
3069 | htab->elf.sgot->contents + off); |
3070 | relocation = htab->elf.sgot->output_offset + off; | |
69fc87f1 | 3071 | if (r_type == R_390_TLS_IEENT) |
f41345a7 | 3072 | relocation += htab->elf.sgot->output_section->vma; |
69fc87f1 MS |
3073 | unresolved_reloc = FALSE; |
3074 | break; | |
3075 | ||
3076 | case R_390_TLS_LDM64: | |
0e1862bb | 3077 | if (! bfd_link_pic (info)) |
69fc87f1 MS |
3078 | /* The literal pool entry this relocation refers to gets ignored |
3079 | by the optimized code of the local exec model. Do nothing | |
3080 | and the value will turn out zero. */ | |
3081 | continue; | |
3082 | ||
f41345a7 | 3083 | if (htab->elf.sgot == NULL) |
69fc87f1 MS |
3084 | abort (); |
3085 | ||
3086 | off = htab->tls_ldm_got.offset; | |
3087 | if (off & 1) | |
3088 | off &= ~1; | |
3089 | else | |
3090 | { | |
3091 | Elf_Internal_Rela outrel; | |
3092 | bfd_byte *loc; | |
3093 | ||
f41345a7 | 3094 | if (htab->elf.srelgot == NULL) |
69fc87f1 MS |
3095 | abort (); |
3096 | ||
f41345a7 AK |
3097 | outrel.r_offset = (htab->elf.sgot->output_section->vma |
3098 | + htab->elf.sgot->output_offset + off); | |
69fc87f1 MS |
3099 | |
3100 | bfd_put_64 (output_bfd, 0, | |
f41345a7 | 3101 | htab->elf.sgot->contents + off + GOT_ENTRY_SIZE); |
69fc87f1 MS |
3102 | outrel.r_info = ELF64_R_INFO (0, R_390_TLS_DTPMOD); |
3103 | outrel.r_addend = 0; | |
f41345a7 AK |
3104 | loc = htab->elf.srelgot->contents; |
3105 | loc += htab->elf.srelgot->reloc_count++ | |
69fc87f1 MS |
3106 | * sizeof (Elf64_External_Rela); |
3107 | bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc); | |
3108 | htab->tls_ldm_got.offset |= 1; | |
3109 | } | |
f41345a7 | 3110 | relocation = htab->elf.sgot->output_offset + off; |
26e41594 | 3111 | unresolved_reloc = FALSE; |
69fc87f1 MS |
3112 | break; |
3113 | ||
3114 | case R_390_TLS_LE64: | |
3cbc1e5e | 3115 | if (bfd_link_dll (info)) |
69fc87f1 MS |
3116 | { |
3117 | /* Linking a shared library with non-fpic code requires | |
3118 | a R_390_TLS_TPOFF relocation. */ | |
3119 | Elf_Internal_Rela outrel; | |
3120 | asection *sreloc; | |
3121 | bfd_byte *loc; | |
3122 | int indx; | |
3123 | ||
3124 | outrel.r_offset = rel->r_offset | |
3125 | + input_section->output_section->vma | |
3126 | + input_section->output_offset; | |
3127 | if (h != NULL && h->dynindx != -1) | |
3128 | indx = h->dynindx; | |
3129 | else | |
3130 | indx = 0; | |
3131 | outrel.r_info = ELF64_R_INFO (indx, R_390_TLS_TPOFF); | |
3132 | if (indx == 0) | |
3133 | outrel.r_addend = relocation - dtpoff_base (info); | |
3134 | else | |
3135 | outrel.r_addend = 0; | |
3136 | sreloc = elf_section_data (input_section)->sreloc; | |
3137 | if (sreloc == NULL) | |
3138 | abort (); | |
3139 | loc = sreloc->contents; | |
3140 | loc += sreloc->reloc_count++ * sizeof (Elf64_External_Rela); | |
3141 | bfd_elf64_swap_reloca_out (output_bfd, &outrel, loc); | |
3142 | } | |
3143 | else | |
3144 | { | |
3145 | BFD_ASSERT (! unresolved_reloc); | |
3146 | bfd_put_64 (output_bfd, -tpoff (info, relocation), | |
3147 | contents + rel->r_offset); | |
3148 | } | |
3149 | continue; | |
3150 | ||
3151 | case R_390_TLS_LDO64: | |
0e1862bb | 3152 | if (bfd_link_pic (info) || (input_section->flags & SEC_DEBUGGING)) |
69fc87f1 MS |
3153 | relocation -= dtpoff_base (info); |
3154 | else | |
3155 | /* When converting LDO to LE, we must negate. */ | |
3156 | relocation = -tpoff (info, relocation); | |
3157 | break; | |
3158 | ||
3159 | /* Relocations for tls instructions. */ | |
3160 | case R_390_TLS_LOAD: | |
3161 | case R_390_TLS_GDCALL: | |
3162 | case R_390_TLS_LDCALL: | |
3163 | tls_type = GOT_UNKNOWN; | |
3164 | if (h == NULL && local_got_offsets) | |
3165 | tls_type = elf_s390_local_got_tls_type (input_bfd) [r_symndx]; | |
3166 | else if (h != NULL) | |
3167 | tls_type = elf_s390_hash_entry(h)->tls_type; | |
3168 | ||
3169 | if (tls_type == GOT_TLS_GD) | |
3170 | continue; | |
3171 | ||
3172 | if (r_type == R_390_TLS_LOAD) | |
3173 | { | |
0e1862bb | 3174 | if (!bfd_link_pic (info) && (h == NULL || h->dynindx == -1)) |
69fc87f1 MS |
3175 | { |
3176 | /* IE->LE transition. Four valid cases: | |
3177 | lg %rx,(0,%ry) -> sllg %rx,%ry,0 | |
3178 | lg %rx,(%ry,0) -> sllg %rx,%ry,0 | |
3179 | lg %rx,(%ry,%r12) -> sllg %rx,%ry,0 | |
3180 | lg %rx,(%r12,%ry) -> sllg %rx,%ry,0 */ | |
3181 | unsigned int insn0, insn1, ry; | |
3182 | ||
3183 | insn0 = bfd_get_32 (input_bfd, contents + rel->r_offset); | |
3184 | insn1 = bfd_get_16 (input_bfd, contents + rel->r_offset + 4); | |
3185 | if (insn1 != 0x0004) | |
3186 | invalid_tls_insn (input_bfd, input_section, rel); | |
3187 | ry = 0; | |
3188 | if ((insn0 & 0xff00f000) == 0xe3000000) | |
3189 | /* lg %rx,0(%ry,0) -> sllg %rx,%ry,0 */ | |
3190 | ry = (insn0 & 0x000f0000); | |
3191 | else if ((insn0 & 0xff0f0000) == 0xe3000000) | |
3192 | /* lg %rx,0(0,%ry) -> sllg %rx,%ry,0 */ | |
3193 | ry = (insn0 & 0x0000f000) << 4; | |
3194 | else if ((insn0 & 0xff00f000) == 0xe300c000) | |
3195 | /* lg %rx,0(%ry,%r12) -> sllg %rx,%ry,0 */ | |
3196 | ry = (insn0 & 0x000f0000); | |
3197 | else if ((insn0 & 0xff0f0000) == 0xe30c0000) | |
3198 | /* lg %rx,0(%r12,%ry) -> sllg %rx,%ry,0 */ | |
3199 | ry = (insn0 & 0x0000f000) << 4; | |
3200 | else | |
3201 | invalid_tls_insn (input_bfd, input_section, rel); | |
3202 | insn0 = 0xeb000000 | (insn0 & 0x00f00000) | ry; | |
3203 | insn1 = 0x000d; | |
3204 | bfd_put_32 (output_bfd, insn0, contents + rel->r_offset); | |
3205 | bfd_put_16 (output_bfd, insn1, contents + rel->r_offset + 4); | |
3206 | } | |
3207 | } | |
3208 | else if (r_type == R_390_TLS_GDCALL) | |
3209 | { | |
3210 | unsigned int insn0, insn1; | |
3211 | ||
3212 | insn0 = bfd_get_32 (input_bfd, contents + rel->r_offset); | |
3213 | insn1 = bfd_get_16 (input_bfd, contents + rel->r_offset + 4); | |
3214 | if ((insn0 & 0xffff0000) != 0xc0e50000) | |
3215 | invalid_tls_insn (input_bfd, input_section, rel); | |
0e1862bb | 3216 | if (!bfd_link_pic (info) && (h == NULL || h->dynindx == -1)) |
69fc87f1 MS |
3217 | { |
3218 | /* GD->LE transition. | |
3219 | brasl %r14,__tls_get_addr@plt -> brcl 0,. */ | |
3220 | insn0 = 0xc0040000; | |
3221 | insn1 = 0x0000; | |
3222 | } | |
3223 | else | |
3224 | { | |
3225 | /* GD->IE transition. | |
3226 | brasl %r14,__tls_get_addr@plt -> lg %r2,0(%r2,%r12) */ | |
3227 | insn0 = 0xe322c000; | |
3228 | insn1 = 0x0004; | |
3229 | } | |
3230 | bfd_put_32 (output_bfd, insn0, contents + rel->r_offset); | |
3231 | bfd_put_16 (output_bfd, insn1, contents + rel->r_offset + 4); | |
3232 | } | |
3233 | else if (r_type == R_390_TLS_LDCALL) | |
3234 | { | |
0e1862bb | 3235 | if (!bfd_link_pic (info)) |
69fc87f1 MS |
3236 | { |
3237 | unsigned int insn0, insn1; | |
3238 | ||
3239 | insn0 = bfd_get_32 (input_bfd, contents + rel->r_offset); | |
3240 | insn1 = bfd_get_16 (input_bfd, contents + rel->r_offset + 4); | |
3241 | if ((insn0 & 0xffff0000) != 0xc0e50000) | |
3242 | invalid_tls_insn (input_bfd, input_section, rel); | |
3243 | /* LD->LE transition. | |
3244 | brasl %r14,__tls_get_addr@plt -> brcl 0,. */ | |
3245 | insn0 = 0xc0040000; | |
3246 | insn1 = 0x0000; | |
3247 | bfd_put_32 (output_bfd, insn0, contents + rel->r_offset); | |
3248 | bfd_put_16 (output_bfd, insn1, contents + rel->r_offset + 4); | |
3249 | } | |
3250 | } | |
3251 | continue; | |
3252 | ||
947216bf AM |
3253 | default: |
3254 | break; | |
3255 | } | |
a85d7ed0 | 3256 | |
239e1f3a AM |
3257 | /* Dynamic relocs are not propagated for SEC_DEBUGGING sections |
3258 | because such sections are not SEC_ALLOC and thus ld.so will | |
3259 | not process them. */ | |
0451c93c | 3260 | if (unresolved_reloc |
239e1f3a | 3261 | && !((input_section->flags & SEC_DEBUGGING) != 0 |
1d5316ab AM |
3262 | && h->def_dynamic) |
3263 | && _bfd_elf_section_offset (output_bfd, info, input_section, | |
3264 | rel->r_offset) != (bfd_vma) -1) | |
4eca0228 | 3265 | _bfd_error_handler |
695344c0 | 3266 | /* xgettext:c-format */ |
843fe662 | 3267 | (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"), |
d003868e AM |
3268 | input_bfd, |
3269 | input_section, | |
0451c93c | 3270 | (long) rel->r_offset, |
843fe662 | 3271 | howto->name, |
0451c93c MS |
3272 | h->root.root.string); |
3273 | ||
470b557a AK |
3274 | do_relocation: |
3275 | ||
fb798c50 AK |
3276 | /* When applying a 24 bit reloc we need to start one byte |
3277 | earlier. Otherwise the 32 bit get/put bfd operations might | |
3278 | access a byte after the actual section. */ | |
3279 | if (r_type == R_390_PC24DBL | |
3280 | || r_type == R_390_PLT24DBL) | |
3281 | rel->r_offset--; | |
3282 | ||
bd1ea41b MS |
3283 | if (r_type == R_390_20 |
3284 | || r_type == R_390_GOT20 | |
3285 | || r_type == R_390_GOTPLT20 | |
3286 | || r_type == R_390_TLS_GOTIE20) | |
3287 | { | |
3288 | relocation += rel->r_addend; | |
3289 | relocation = (relocation&0xfff) << 8 | (relocation&0xff000) >> 12; | |
3290 | r = _bfd_final_link_relocate (howto, input_bfd, input_section, | |
3291 | contents, rel->r_offset, | |
3292 | relocation, 0); | |
3293 | } | |
3294 | else | |
3295 | r = _bfd_final_link_relocate (howto, input_bfd, input_section, | |
a85d7ed0 NC |
3296 | contents, rel->r_offset, |
3297 | relocation, rel->r_addend); | |
3298 | ||
3299 | if (r != bfd_reloc_ok) | |
3300 | { | |
0451c93c | 3301 | const char *name; |
ec338859 | 3302 | |
0451c93c MS |
3303 | if (h != NULL) |
3304 | name = h->root.root.string; | |
3305 | else | |
a85d7ed0 | 3306 | { |
0451c93c MS |
3307 | name = bfd_elf_string_from_elf_section (input_bfd, |
3308 | symtab_hdr->sh_link, | |
3309 | sym->st_name); | |
3310 | if (name == NULL) | |
b34976b6 | 3311 | return FALSE; |
0451c93c MS |
3312 | if (*name == '\0') |
3313 | name = bfd_section_name (input_bfd, sec); | |
3314 | } | |
ec338859 | 3315 | |
0451c93c | 3316 | if (r == bfd_reloc_overflow) |
1a72702b AM |
3317 | (*info->callbacks->reloc_overflow) |
3318 | (info, (h ? &h->root : NULL), name, howto->name, | |
3319 | (bfd_vma) 0, input_bfd, input_section, rel->r_offset); | |
0451c93c MS |
3320 | else |
3321 | { | |
4eca0228 | 3322 | _bfd_error_handler |
695344c0 | 3323 | /* xgettext:c-format */ |
d003868e AM |
3324 | (_("%B(%A+0x%lx): reloc against `%s': error %d"), |
3325 | input_bfd, input_section, | |
0451c93c | 3326 | (long) rel->r_offset, name, (int) r); |
b34976b6 | 3327 | return FALSE; |
a85d7ed0 NC |
3328 | } |
3329 | } | |
3330 | } | |
3331 | ||
b34976b6 | 3332 | return TRUE; |
a85d7ed0 NC |
3333 | } |
3334 | ||
470b557a AK |
3335 | /* Generate the PLT slots together with the dynamic relocations needed |
3336 | for IFUNC symbols. */ | |
3337 | ||
3338 | static void | |
3339 | elf_s390_finish_ifunc_symbol (bfd *output_bfd, | |
3340 | struct bfd_link_info *info, | |
3341 | struct elf_link_hash_entry *h, | |
3342 | struct elf_s390_link_hash_table *htab, | |
3343 | bfd_vma plt_offset, | |
3344 | bfd_vma resolver_address) | |
3345 | { | |
3346 | bfd_vma plt_index; | |
3347 | bfd_vma got_offset; | |
3348 | Elf_Internal_Rela rela; | |
3349 | bfd_byte *loc; | |
3350 | asection *plt, *gotplt, *relplt; | |
3351 | ||
3352 | if (htab->elf.iplt == NULL | |
3353 | || htab->elf.igotplt == NULL | |
3354 | || htab->elf.irelplt == NULL) | |
3355 | abort (); | |
3356 | ||
3357 | /* Index of the PLT slot within iplt section. */ | |
3358 | plt_index = plt_offset / PLT_ENTRY_SIZE; | |
3359 | plt = htab->elf.iplt; | |
3360 | /* Offset into the igot.plt section. */ | |
3361 | got_offset = plt_index * GOT_ENTRY_SIZE; | |
3362 | gotplt = htab->elf.igotplt; | |
3363 | relplt = htab->elf.irelplt; | |
3364 | ||
3365 | /* Fill in the blueprint of a PLT. */ | |
3366 | memcpy (plt->contents + plt_offset, elf_s390x_plt_entry, | |
3367 | PLT_ENTRY_SIZE); | |
3368 | ||
3369 | /* Fixup the relative address to the GOT entry */ | |
3370 | bfd_put_32 (output_bfd, | |
3371 | (gotplt->output_section->vma + | |
3372 | gotplt->output_offset + got_offset | |
3373 | - (plt->output_section->vma + | |
3374 | plt->output_offset + | |
3375 | plt_offset))/2, | |
3376 | plt->contents + plt_offset + 2); | |
3377 | /* Fixup the relative branch to PLT 0 */ | |
3378 | bfd_put_32 (output_bfd, - (plt->output_offset + | |
3379 | (PLT_ENTRY_SIZE * plt_index) + 22)/2, | |
3380 | plt->contents + plt_offset + 24); | |
3381 | /* Fixup offset into .rela.plt section. */ | |
3382 | bfd_put_32 (output_bfd, relplt->output_offset + | |
3383 | plt_index * sizeof (Elf64_External_Rela), | |
3384 | plt->contents + plt_offset + 28); | |
3385 | ||
3386 | /* Fill in the entry in the global offset table. | |
3387 | Points to instruction after GOT offset. */ | |
3388 | bfd_put_64 (output_bfd, | |
3389 | (plt->output_section->vma | |
3390 | + plt->output_offset | |
3391 | + plt_offset | |
3392 | + 14), | |
3393 | gotplt->contents + got_offset); | |
3394 | ||
3395 | /* Fill in the entry in the .rela.plt section. */ | |
3396 | rela.r_offset = (gotplt->output_section->vma | |
3397 | + gotplt->output_offset | |
3398 | + got_offset); | |
3399 | ||
3400 | if (!h | |
3401 | || h->dynindx == -1 | |
0e1862bb | 3402 | || ((bfd_link_executable (info) |
470b557a AK |
3403 | || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT) |
3404 | && h->def_regular)) | |
3405 | { | |
3406 | /* The symbol can be locally resolved. */ | |
3407 | rela.r_info = ELF64_R_INFO (0, R_390_IRELATIVE); | |
3408 | rela.r_addend = resolver_address; | |
3409 | } | |
3410 | else | |
3411 | { | |
3412 | rela.r_info = ELF64_R_INFO (h->dynindx, R_390_JMP_SLOT); | |
3413 | rela.r_addend = 0; | |
3414 | } | |
3415 | ||
3416 | loc = relplt->contents + plt_index * sizeof (Elf64_External_Rela); | |
3417 | bfd_elf64_swap_reloca_out (output_bfd, &rela, loc); | |
3418 | } | |
3419 | ||
3420 | ||
a85d7ed0 NC |
3421 | /* Finish up dynamic symbol handling. We set the contents of various |
3422 | dynamic sections here. */ | |
3423 | ||
b34976b6 | 3424 | static bfd_boolean |
4dfe6ac6 NC |
3425 | elf_s390_finish_dynamic_symbol (bfd *output_bfd, |
3426 | struct bfd_link_info *info, | |
3427 | struct elf_link_hash_entry *h, | |
3428 | Elf_Internal_Sym *sym) | |
a85d7ed0 | 3429 | { |
0451c93c | 3430 | struct elf_s390_link_hash_table *htab; |
470b557a | 3431 | struct elf_s390_link_hash_entry *eh = (struct elf_s390_link_hash_entry*)h; |
a85d7ed0 | 3432 | |
0451c93c | 3433 | htab = elf_s390_hash_table (info); |
4dfe6ac6 NC |
3434 | if (htab == NULL) |
3435 | return FALSE; | |
a85d7ed0 NC |
3436 | |
3437 | if (h->plt.offset != (bfd_vma) -1) | |
3438 | { | |
a85d7ed0 | 3439 | bfd_vma plt_index; |
0451c93c MS |
3440 | bfd_vma got_offset; |
3441 | Elf_Internal_Rela rela; | |
947216bf | 3442 | bfd_byte *loc; |
a85d7ed0 NC |
3443 | |
3444 | /* This symbol has an entry in the procedure linkage table. Set | |
947216bf | 3445 | it up. */ |
0a511368 | 3446 | if (s390_is_ifunc_symbol_p (h) && h->def_regular) |
470b557a | 3447 | { |
0a511368 AK |
3448 | elf_s390_finish_ifunc_symbol (output_bfd, info, h, |
3449 | htab, h->plt.offset, | |
3450 | eh->ifunc_resolver_address + | |
3451 | eh->ifunc_resolver_section->output_offset + | |
3452 | eh->ifunc_resolver_section->output_section->vma); | |
3453 | ||
3454 | /* Do not return yet. Handling of explicit GOT slots of | |
3455 | IFUNC symbols is below. */ | |
470b557a AK |
3456 | } |
3457 | else | |
3458 | { | |
3459 | if (h->dynindx == -1 | |
3460 | || htab->elf.splt == NULL | |
3461 | || htab->elf.sgotplt == NULL | |
3462 | || htab->elf.srelplt == NULL) | |
3463 | abort (); | |
a85d7ed0 | 3464 | |
470b557a AK |
3465 | /* Calc. index no. |
3466 | Current offset - size first entry / entry size. */ | |
3467 | plt_index = (h->plt.offset - PLT_FIRST_ENTRY_SIZE) / PLT_ENTRY_SIZE; | |
a85d7ed0 | 3468 | |
470b557a AK |
3469 | /* Offset in GOT is PLT index plus GOT headers(3) times 8, |
3470 | addr & GOT addr. */ | |
3471 | got_offset = (plt_index + 3) * GOT_ENTRY_SIZE; | |
a85d7ed0 | 3472 | |
470b557a AK |
3473 | /* Fill in the blueprint of a PLT. */ |
3474 | memcpy (htab->elf.splt->contents + h->plt.offset, elf_s390x_plt_entry, | |
3475 | PLT_ENTRY_SIZE); | |
3476 | ||
3477 | /* Fixup the relative address to the GOT entry */ | |
3478 | bfd_put_32 (output_bfd, | |
3479 | (htab->elf.sgotplt->output_section->vma + | |
3480 | htab->elf.sgotplt->output_offset + got_offset | |
3481 | - (htab->elf.splt->output_section->vma + | |
3482 | htab->elf.splt->output_offset + | |
3483 | h->plt.offset))/2, | |
3484 | htab->elf.splt->contents + h->plt.offset + 2); | |
3485 | /* Fixup the relative branch to PLT 0 */ | |
3486 | bfd_put_32 (output_bfd, - (PLT_FIRST_ENTRY_SIZE + | |
3487 | (PLT_ENTRY_SIZE * plt_index) + 22)/2, | |
3488 | htab->elf.splt->contents + h->plt.offset + 24); | |
3489 | /* Fixup offset into .rela.plt section. */ | |
3490 | bfd_put_32 (output_bfd, plt_index * sizeof (Elf64_External_Rela), | |
3491 | htab->elf.splt->contents + h->plt.offset + 28); | |
3492 | ||
3493 | /* Fill in the entry in the global offset table. | |
3494 | Points to instruction after GOT offset. */ | |
3495 | bfd_put_64 (output_bfd, | |
3496 | (htab->elf.splt->output_section->vma | |
3497 | + htab->elf.splt->output_offset | |
3498 | + h->plt.offset | |
3499 | + 14), | |
3500 | htab->elf.sgotplt->contents + got_offset); | |
3501 | ||
3502 | /* Fill in the entry in the .rela.plt section. */ | |
3503 | rela.r_offset = (htab->elf.sgotplt->output_section->vma | |
3504 | + htab->elf.sgotplt->output_offset | |
3505 | + got_offset); | |
3506 | rela.r_info = ELF64_R_INFO (h->dynindx, R_390_JMP_SLOT); | |
3507 | rela.r_addend = 0; | |
3508 | loc = htab->elf.srelplt->contents + plt_index * | |
3509 | sizeof (Elf64_External_Rela); | |
3510 | bfd_elf64_swap_reloca_out (output_bfd, &rela, loc); | |
3511 | ||
3512 | if (!h->def_regular) | |
3513 | { | |
3514 | /* Mark the symbol as undefined, rather than as defined in | |
3515 | the .plt section. Leave the value alone. This is a clue | |
3516 | for the dynamic linker, to make function pointer | |
3517 | comparisons work between an application and shared | |
3518 | library. */ | |
3519 | sym->st_shndx = SHN_UNDEF; | |
3520 | } | |
a85d7ed0 NC |
3521 | } |
3522 | } | |
3523 | ||
69fc87f1 MS |
3524 | if (h->got.offset != (bfd_vma) -1 |
3525 | && elf_s390_hash_entry(h)->tls_type != GOT_TLS_GD | |
3526 | && elf_s390_hash_entry(h)->tls_type != GOT_TLS_IE | |
3527 | && elf_s390_hash_entry(h)->tls_type != GOT_TLS_IE_NLT) | |
a85d7ed0 | 3528 | { |
a85d7ed0 | 3529 | Elf_Internal_Rela rela; |
947216bf | 3530 | bfd_byte *loc; |
a85d7ed0 NC |
3531 | |
3532 | /* This symbol has an entry in the global offset table. Set it | |
947216bf | 3533 | up. */ |
f41345a7 | 3534 | if (htab->elf.sgot == NULL || htab->elf.srelgot == NULL) |
0451c93c | 3535 | abort (); |
a85d7ed0 | 3536 | |
f41345a7 AK |
3537 | rela.r_offset = (htab->elf.sgot->output_section->vma |
3538 | + htab->elf.sgot->output_offset | |
dc810e39 | 3539 | + (h->got.offset &~ (bfd_vma) 1)); |
a85d7ed0 | 3540 | |
470b557a AK |
3541 | if (h->def_regular && s390_is_ifunc_symbol_p (h)) |
3542 | { | |
0e1862bb | 3543 | if (bfd_link_pic (info)) |
470b557a AK |
3544 | { |
3545 | /* An explicit GOT slot usage needs GLOB_DAT. If the | |
3546 | symbol references local the implicit got.iplt slot | |
3547 | will be used and the IRELATIVE reloc has been created | |
3548 | above. */ | |
3549 | goto do_glob_dat; | |
3550 | } | |
3551 | else | |
3552 | { | |
3553 | /* For non-shared objects explicit GOT slots must be | |
3554 | filled with the PLT slot address for pointer | |
3555 | equality reasons. */ | |
3556 | bfd_put_64 (output_bfd, (htab->elf.iplt->output_section->vma | |
3557 | + htab->elf.iplt->output_offset | |
3558 | + h->plt.offset), | |
3559 | htab->elf.sgot->contents + h->got.offset); | |
3560 | return TRUE; | |
3561 | } | |
3562 | } | |
0e1862bb | 3563 | else if (bfd_link_pic (info) |
ceada896 | 3564 | && SYMBOL_REFERENCES_LOCAL (info, h)) |
947216bf | 3565 | { |
470b557a AK |
3566 | /* If this is a static link, or it is a -Bsymbolic link and |
3567 | the symbol is defined locally or was forced to be local | |
3568 | because of a version file, we just want to emit a | |
3569 | RELATIVE reloc. The entry in the global offset table | |
3570 | will already have been initialized in the | |
3571 | relocate_section function. */ | |
8c21ca21 AK |
3572 | if (!h->def_regular) |
3573 | return FALSE; | |
0451c93c | 3574 | BFD_ASSERT((h->got.offset & 1) != 0); |
947216bf AM |
3575 | rela.r_info = ELF64_R_INFO (0, R_390_RELATIVE); |
3576 | rela.r_addend = (h->root.u.def.value | |
3577 | + h->root.u.def.section->output_section->vma | |
3578 | + h->root.u.def.section->output_offset); | |
3579 | } | |
a85d7ed0 NC |
3580 | else |
3581 | { | |
3582 | BFD_ASSERT((h->got.offset & 1) == 0); | |
ceada896 | 3583 | do_glob_dat: |
f41345a7 | 3584 | bfd_put_64 (output_bfd, (bfd_vma) 0, htab->elf.sgot->contents + h->got.offset); |
a85d7ed0 | 3585 | rela.r_info = ELF64_R_INFO (h->dynindx, R_390_GLOB_DAT); |
947216bf AM |
3586 | rela.r_addend = 0; |
3587 | } | |
a85d7ed0 | 3588 | |
f41345a7 AK |
3589 | loc = htab->elf.srelgot->contents; |
3590 | loc += htab->elf.srelgot->reloc_count++ * sizeof (Elf64_External_Rela); | |
0451c93c | 3591 | bfd_elf64_swap_reloca_out (output_bfd, &rela, loc); |
a85d7ed0 NC |
3592 | } |
3593 | ||
f5385ebf | 3594 | if (h->needs_copy) |
a85d7ed0 | 3595 | { |
a85d7ed0 | 3596 | Elf_Internal_Rela rela; |
5474d94f | 3597 | asection *s; |
947216bf | 3598 | bfd_byte *loc; |
a85d7ed0 NC |
3599 | |
3600 | /* This symbols needs a copy reloc. Set it up. */ | |
3601 | ||
0451c93c MS |
3602 | if (h->dynindx == -1 |
3603 | || (h->root.type != bfd_link_hash_defined | |
3604 | && h->root.type != bfd_link_hash_defweak) | |
9d19e4fd | 3605 | || htab->elf.srelbss == NULL) |
0451c93c | 3606 | abort (); |
a85d7ed0 NC |
3607 | |
3608 | rela.r_offset = (h->root.u.def.value | |
3609 | + h->root.u.def.section->output_section->vma | |
3610 | + h->root.u.def.section->output_offset); | |
3611 | rela.r_info = ELF64_R_INFO (h->dynindx, R_390_COPY); | |
3612 | rela.r_addend = 0; | |
5474d94f AM |
3613 | if ((h->root.u.def.section->flags & SEC_READONLY) != 0) |
3614 | s = htab->elf.sreldynrelro; | |
3615 | else | |
3616 | s = htab->elf.srelbss; | |
3617 | loc = s->contents + s->reloc_count++ * sizeof (Elf64_External_Rela); | |
0451c93c | 3618 | bfd_elf64_swap_reloca_out (output_bfd, &rela, loc); |
a85d7ed0 NC |
3619 | } |
3620 | ||
3621 | /* Mark some specially defined symbols as absolute. */ | |
9637f6ef | 3622 | if (h == htab->elf.hdynamic |
22edb2f1 RS |
3623 | || h == htab->elf.hgot |
3624 | || h == htab->elf.hplt) | |
a85d7ed0 NC |
3625 | sym->st_shndx = SHN_ABS; |
3626 | ||
b34976b6 | 3627 | return TRUE; |
a85d7ed0 NC |
3628 | } |
3629 | ||
0451c93c MS |
3630 | /* Used to decide how to sort relocs in an optimal manner for the |
3631 | dynamic linker, before writing them out. */ | |
3632 | ||
3633 | static enum elf_reloc_type_class | |
7e612e98 AM |
3634 | elf_s390_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED, |
3635 | const asection *rel_sec ATTRIBUTE_UNUSED, | |
3636 | const Elf_Internal_Rela *rela) | |
0451c93c | 3637 | { |
0f042c67 AK |
3638 | bfd *abfd = info->output_bfd; |
3639 | const struct elf_backend_data *bed = get_elf_backend_data (abfd); | |
3640 | struct elf_s390_link_hash_table *htab = elf_s390_hash_table (info); | |
3641 | unsigned long r_symndx = ELF64_R_SYM (rela->r_info); | |
3642 | Elf_Internal_Sym sym; | |
3643 | ||
3644 | if (htab->elf.dynsym == NULL | |
3645 | || !bed->s->swap_symbol_in (abfd, | |
3646 | (htab->elf.dynsym->contents | |
3647 | + r_symndx * bed->s->sizeof_sym), | |
3648 | 0, &sym)) | |
3649 | abort (); | |
3650 | ||
3651 | /* Check relocation against STT_GNU_IFUNC symbol. */ | |
3652 | if (ELF_ST_TYPE (sym.st_info) == STT_GNU_IFUNC) | |
3653 | return reloc_class_ifunc; | |
3654 | ||
0451c93c MS |
3655 | switch ((int) ELF64_R_TYPE (rela->r_info)) |
3656 | { | |
3657 | case R_390_RELATIVE: | |
3658 | return reloc_class_relative; | |
3659 | case R_390_JMP_SLOT: | |
3660 | return reloc_class_plt; | |
3661 | case R_390_COPY: | |
3662 | return reloc_class_copy; | |
3663 | default: | |
3664 | return reloc_class_normal; | |
3665 | } | |
3666 | } | |
3667 | ||
a85d7ed0 NC |
3668 | /* Finish up the dynamic sections. */ |
3669 | ||
b34976b6 | 3670 | static bfd_boolean |
4dfe6ac6 NC |
3671 | elf_s390_finish_dynamic_sections (bfd *output_bfd, |
3672 | struct bfd_link_info *info) | |
a85d7ed0 | 3673 | { |
0451c93c | 3674 | struct elf_s390_link_hash_table *htab; |
a85d7ed0 NC |
3675 | bfd *dynobj; |
3676 | asection *sdyn; | |
470b557a AK |
3677 | bfd *ibfd; |
3678 | unsigned int i; | |
a85d7ed0 | 3679 | |
0451c93c | 3680 | htab = elf_s390_hash_table (info); |
4dfe6ac6 NC |
3681 | if (htab == NULL) |
3682 | return FALSE; | |
3683 | ||
0451c93c | 3684 | dynobj = htab->elf.dynobj; |
3d4d4302 | 3685 | sdyn = bfd_get_linker_section (dynobj, ".dynamic"); |
a85d7ed0 | 3686 | |
0451c93c | 3687 | if (htab->elf.dynamic_sections_created) |
a85d7ed0 | 3688 | { |
a85d7ed0 NC |
3689 | Elf64_External_Dyn *dyncon, *dynconend; |
3690 | ||
f41345a7 | 3691 | if (sdyn == NULL || htab->elf.sgot == NULL) |
0451c93c | 3692 | abort (); |
a85d7ed0 NC |
3693 | |
3694 | dyncon = (Elf64_External_Dyn *) sdyn->contents; | |
eea6121a | 3695 | dynconend = (Elf64_External_Dyn *) (sdyn->contents + sdyn->size); |
a85d7ed0 NC |
3696 | for (; dyncon < dynconend; dyncon++) |
3697 | { | |
3698 | Elf_Internal_Dyn dyn; | |
a85d7ed0 | 3699 | asection *s; |
ec338859 | 3700 | |
a85d7ed0 | 3701 | bfd_elf64_swap_dyn_in (dynobj, dyncon, &dyn); |
ec338859 | 3702 | |
a85d7ed0 NC |
3703 | switch (dyn.d_tag) |
3704 | { | |
3705 | default: | |
0451c93c | 3706 | continue; |
ec338859 | 3707 | |
a85d7ed0 | 3708 | case DT_PLTGOT: |
4ade44b7 AM |
3709 | s = htab->elf.sgotplt; |
3710 | dyn.d_un.d_ptr = s->output_section->vma + s->output_offset; | |
0451c93c | 3711 | break; |
ec338859 | 3712 | |
a85d7ed0 | 3713 | case DT_JMPREL: |
4ade44b7 AM |
3714 | s = htab->elf.srelplt; |
3715 | dyn.d_un.d_ptr = s->output_section->vma + s->output_offset; | |
a85d7ed0 | 3716 | break; |
ec338859 | 3717 | |
a85d7ed0 | 3718 | case DT_PLTRELSZ: |
f92339b8 | 3719 | dyn.d_un.d_val = htab->elf.srelplt->size + htab->elf.irelplt->size; |
a85d7ed0 | 3720 | break; |
ec338859 | 3721 | |
a85d7ed0 NC |
3722 | case DT_RELASZ: |
3723 | /* The procedure linkage table relocs (DT_JMPREL) should | |
3724 | not be included in the overall relocs (DT_RELA). | |
3725 | Therefore, we override the DT_RELASZ entry here to | |
3726 | make it not include the JMPREL relocs. Since the | |
3727 | linker script arranges for .rela.plt to follow all | |
3728 | other relocation sections, we don't have to worry | |
3729 | about changing the DT_RELA entry. */ | |
f92339b8 | 3730 | dyn.d_un.d_val -= htab->elf.srelplt->size + htab->elf.irelplt->size; |
a85d7ed0 NC |
3731 | break; |
3732 | } | |
0451c93c MS |
3733 | |
3734 | bfd_elf64_swap_dyn_out (output_bfd, &dyn, dyncon); | |
a85d7ed0 NC |
3735 | } |
3736 | ||
3737 | /* Fill in the special first entry in the procedure linkage table. */ | |
f41345a7 | 3738 | if (htab->elf.splt && htab->elf.splt->size > 0) |
a85d7ed0 NC |
3739 | { |
3740 | /* fill in blueprint for plt 0 entry */ | |
f41345a7 | 3741 | memcpy (htab->elf.splt->contents, elf_s390x_first_plt_entry, |
9aa17453 | 3742 | PLT_FIRST_ENTRY_SIZE); |
a85d7ed0 NC |
3743 | /* Fixup relative address to start of GOT */ |
3744 | bfd_put_32 (output_bfd, | |
161db279 AK |
3745 | (htab->elf.sgotplt->output_section->vma |
3746 | + htab->elf.sgotplt->output_offset | |
3747 | - htab->elf.splt->output_section->vma | |
3748 | - htab->elf.splt->output_offset - 6)/2, | |
f41345a7 | 3749 | htab->elf.splt->contents + 8); |
a85d7ed0 | 3750 | } |
387f8054 MR |
3751 | if (elf_section_data (htab->elf.splt->output_section) != NULL) |
3752 | elf_section_data (htab->elf.splt->output_section)->this_hdr.sh_entsize | |
3753 | = PLT_ENTRY_SIZE; | |
a85d7ed0 NC |
3754 | } |
3755 | ||
f41345a7 | 3756 | if (htab->elf.sgotplt) |
a85d7ed0 | 3757 | { |
0451c93c | 3758 | /* Fill in the first three entries in the global offset table. */ |
f41345a7 | 3759 | if (htab->elf.sgotplt->size > 0) |
0451c93c MS |
3760 | { |
3761 | bfd_put_64 (output_bfd, | |
3762 | (sdyn == NULL ? (bfd_vma) 0 | |
3763 | : sdyn->output_section->vma + sdyn->output_offset), | |
f41345a7 | 3764 | htab->elf.sgotplt->contents); |
0451c93c | 3765 | /* One entry for shared object struct ptr. */ |
f41345a7 | 3766 | bfd_put_64 (output_bfd, (bfd_vma) 0, htab->elf.sgotplt->contents + 8); |
0451c93c | 3767 | /* One entry for _dl_runtime_resolve. */ |
3b67f094 | 3768 | bfd_put_64 (output_bfd, (bfd_vma) 0, htab->elf.sgotplt->contents + 16); |
0451c93c | 3769 | } |
a85d7ed0 | 3770 | |
f41345a7 | 3771 | elf_section_data (htab->elf.sgot->output_section) |
0451c93c MS |
3772 | ->this_hdr.sh_entsize = 8; |
3773 | } | |
470b557a AK |
3774 | |
3775 | /* Finish dynamic symbol for local IFUNC symbols. */ | |
c72f2fb2 | 3776 | for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next) |
470b557a AK |
3777 | { |
3778 | struct plt_entry *local_plt; | |
3779 | Elf_Internal_Sym *isym; | |
3780 | Elf_Internal_Shdr *symtab_hdr; | |
3781 | ||
3782 | symtab_hdr = &elf_symtab_hdr (ibfd); | |
3783 | ||
3784 | local_plt = elf_s390_local_plt (ibfd); | |
3785 | if (local_plt != NULL) | |
3786 | for (i = 0; i < symtab_hdr->sh_info; i++) | |
3787 | { | |
3788 | if (local_plt[i].plt.offset != (bfd_vma) -1) | |
3789 | { | |
3790 | asection *sec = local_plt[i].sec; | |
3791 | isym = bfd_sym_from_r_symndx (&htab->sym_cache, ibfd, i); | |
3792 | if (isym == NULL) | |
3793 | return FALSE; | |
3794 | ||
3795 | if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC) | |
3796 | elf_s390_finish_ifunc_symbol (output_bfd, info, NULL, htab, | |
3797 | local_plt[i].plt.offset, | |
3798 | isym->st_value | |
3799 | + sec->output_section->vma | |
3800 | + sec->output_offset); | |
3801 | ||
3802 | } | |
3803 | } | |
3804 | } | |
3805 | ||
b34976b6 | 3806 | return TRUE; |
a85d7ed0 | 3807 | } |
e3e9290d AA |
3808 | \f |
3809 | /* Support for core dump NOTE sections. */ | |
a85d7ed0 | 3810 | |
e3e9290d AA |
3811 | static bfd_boolean |
3812 | elf_s390_grok_prstatus (bfd *abfd, Elf_Internal_Note *note) | |
3813 | { | |
3814 | int offset; | |
3815 | size_t size; | |
3816 | ||
3817 | switch (note->descsz) | |
3818 | { | |
3819 | default: | |
3820 | return FALSE; | |
3821 | ||
3822 | case 336: /* sizeof(struct elf_prstatus) on s390x */ | |
3823 | /* pr_cursig */ | |
3824 | elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12); | |
3825 | ||
3826 | /* pr_pid */ | |
3827 | elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 32); | |
3828 | ||
3829 | /* pr_reg */ | |
3830 | offset = 112; | |
3831 | size = 216; | |
3832 | break; | |
3833 | } | |
3834 | ||
3835 | /* Make a ".reg/999" section. */ | |
3836 | return _bfd_elfcore_make_pseudosection (abfd, ".reg", | |
3837 | size, note->descpos + offset); | |
3838 | } | |
3839 | ||
3840 | static bfd_boolean | |
3841 | elf_s390_grok_psinfo (bfd *abfd, Elf_Internal_Note *note) | |
3842 | { | |
3843 | switch (note->descsz) | |
3844 | { | |
3845 | default: | |
3846 | return FALSE; | |
3847 | ||
3848 | case 136: /* sizeof(struct elf_prpsinfo) on s390x */ | |
3849 | elf_tdata (abfd)->core->pid | |
3850 | = bfd_get_32 (abfd, note->descdata + 24); | |
3851 | elf_tdata (abfd)->core->program | |
3852 | = _bfd_elfcore_strndup (abfd, note->descdata + 40, 16); | |
3853 | elf_tdata (abfd)->core->command | |
3854 | = _bfd_elfcore_strndup (abfd, note->descdata + 56, 80); | |
3855 | } | |
3856 | ||
3857 | /* Note that for some reason, a spurious space is tacked | |
3858 | onto the end of the args in some (at least one anyway) | |
3859 | implementations, so strip it off if it exists. */ | |
3860 | ||
3861 | { | |
3862 | char *command = elf_tdata (abfd)->core->command; | |
3863 | int n = strlen (command); | |
3864 | ||
3865 | if (0 < n && command[n - 1] == ' ') | |
3866 | command[n - 1] = '\0'; | |
3867 | } | |
3868 | ||
3869 | return TRUE; | |
3870 | } | |
3871 | ||
3872 | static char * | |
3873 | elf_s390_write_core_note (bfd *abfd, char *buf, int *bufsiz, | |
3874 | int note_type, ...) | |
3875 | { | |
3876 | va_list ap; | |
3877 | ||
3878 | switch (note_type) | |
3879 | { | |
3880 | default: | |
3881 | return NULL; | |
3882 | ||
3883 | case NT_PRPSINFO: | |
3884 | { | |
3885 | char data[136] = { 0 }; | |
3886 | const char *fname, *psargs; | |
3887 | ||
3888 | va_start (ap, note_type); | |
3889 | fname = va_arg (ap, const char *); | |
3890 | psargs = va_arg (ap, const char *); | |
3891 | va_end (ap); | |
3892 | ||
3893 | strncpy (data + 40, fname, 16); | |
3894 | strncpy (data + 56, psargs, 80); | |
3895 | return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type, | |
3896 | &data, sizeof (data)); | |
3897 | } | |
3898 | ||
3899 | case NT_PRSTATUS: | |
3900 | { | |
3901 | char data[336] = { 0 }; | |
3902 | long pid; | |
3903 | int cursig; | |
3904 | const void *gregs; | |
3905 | ||
3906 | va_start (ap, note_type); | |
3907 | pid = va_arg (ap, long); | |
3908 | cursig = va_arg (ap, int); | |
3909 | gregs = va_arg (ap, const void *); | |
3910 | va_end (ap); | |
3911 | ||
3912 | bfd_put_16 (abfd, cursig, data + 12); | |
3913 | bfd_put_32 (abfd, pid, data + 32); | |
3914 | memcpy (data + 112, gregs, 216); | |
3915 | return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type, | |
3916 | &data, sizeof (data)); | |
3917 | } | |
3918 | } | |
3919 | /* NOTREACHED */ | |
3920 | } | |
3921 | \f | |
4c45e5c9 JJ |
3922 | /* Return address for Ith PLT stub in section PLT, for relocation REL |
3923 | or (bfd_vma) -1 if it should not be included. */ | |
3924 | ||
3925 | static bfd_vma | |
3926 | elf_s390_plt_sym_val (bfd_vma i, const asection *plt, | |
3927 | const arelent *rel ATTRIBUTE_UNUSED) | |
3928 | { | |
3929 | return plt->vma + PLT_FIRST_ENTRY_SIZE + i * PLT_ENTRY_SIZE; | |
3930 | } | |
3931 | ||
643f7afb AK |
3932 | /* Merge backend specific data from an object file to the output |
3933 | object file when linking. */ | |
3934 | ||
3935 | static bfd_boolean | |
50e03d47 | 3936 | elf64_s390_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info) |
643f7afb | 3937 | { |
50e03d47 | 3938 | if (!is_s390_elf (ibfd) || !is_s390_elf (info->output_bfd)) |
643f7afb AK |
3939 | return TRUE; |
3940 | ||
50e03d47 | 3941 | return elf_s390_merge_obj_attributes (ibfd, info); |
643f7afb AK |
3942 | } |
3943 | ||
ae9a127f NC |
3944 | /* Why was the hash table entry size definition changed from |
3945 | ARCH_SIZE/8 to 4? This breaks the 64 bit dynamic linker and | |
3946 | this is the only reason for the s390_elf64_size_info structure. */ | |
a85d7ed0 NC |
3947 | |
3948 | const struct elf_size_info s390_elf64_size_info = | |
3949 | { | |
3950 | sizeof (Elf64_External_Ehdr), | |
3951 | sizeof (Elf64_External_Phdr), | |
3952 | sizeof (Elf64_External_Shdr), | |
3953 | sizeof (Elf64_External_Rel), | |
3954 | sizeof (Elf64_External_Rela), | |
3955 | sizeof (Elf64_External_Sym), | |
3956 | sizeof (Elf64_External_Dyn), | |
3957 | sizeof (Elf_External_Note), | |
ae9a127f NC |
3958 | 8, /* hash-table entry size. */ |
3959 | 1, /* internal relocations per external relocations. */ | |
3960 | 64, /* arch_size. */ | |
45d6a902 | 3961 | 3, /* log_file_align. */ |
a85d7ed0 NC |
3962 | ELFCLASS64, EV_CURRENT, |
3963 | bfd_elf64_write_out_phdrs, | |
3964 | bfd_elf64_write_shdrs_and_ehdr, | |
1489a3a0 | 3965 | bfd_elf64_checksum_contents, |
a85d7ed0 | 3966 | bfd_elf64_write_relocs, |
73ff0d56 | 3967 | bfd_elf64_swap_symbol_in, |
a85d7ed0 NC |
3968 | bfd_elf64_swap_symbol_out, |
3969 | bfd_elf64_slurp_reloc_table, | |
3970 | bfd_elf64_slurp_symbol_table, | |
3971 | bfd_elf64_swap_dyn_in, | |
3972 | bfd_elf64_swap_dyn_out, | |
947216bf AM |
3973 | bfd_elf64_swap_reloc_in, |
3974 | bfd_elf64_swap_reloc_out, | |
3975 | bfd_elf64_swap_reloca_in, | |
3976 | bfd_elf64_swap_reloca_out | |
a85d7ed0 NC |
3977 | }; |
3978 | ||
6d00b590 | 3979 | #define TARGET_BIG_SYM s390_elf64_vec |
a85d7ed0 NC |
3980 | #define TARGET_BIG_NAME "elf64-s390" |
3981 | #define ELF_ARCH bfd_arch_s390 | |
ae95ffa6 | 3982 | #define ELF_TARGET_ID S390_ELF_DATA |
a85d7ed0 NC |
3983 | #define ELF_MACHINE_CODE EM_S390 |
3984 | #define ELF_MACHINE_ALT1 EM_S390_OLD | |
3985 | #define ELF_MAXPAGESIZE 0x1000 | |
3986 | ||
3987 | #define elf_backend_size_info s390_elf64_size_info | |
3988 | ||
3989 | #define elf_backend_can_gc_sections 1 | |
51b64d56 | 3990 | #define elf_backend_can_refcount 1 |
a85d7ed0 NC |
3991 | #define elf_backend_want_got_plt 1 |
3992 | #define elf_backend_plt_readonly 1 | |
3993 | #define elf_backend_want_plt_sym 0 | |
3994 | #define elf_backend_got_header_size 24 | |
5474d94f | 3995 | #define elf_backend_want_dynrelro 1 |
b491616a | 3996 | #define elf_backend_rela_normal 1 |
a85d7ed0 NC |
3997 | |
3998 | #define elf_info_to_howto elf_s390_info_to_howto | |
3999 | ||
a85d7ed0 NC |
4000 | #define bfd_elf64_bfd_is_local_label_name elf_s390_is_local_label_name |
4001 | #define bfd_elf64_bfd_link_hash_table_create elf_s390_link_hash_table_create | |
4002 | #define bfd_elf64_bfd_reloc_type_lookup elf_s390_reloc_type_lookup | |
643f7afb AK |
4003 | #define bfd_elf64_bfd_reloc_name_lookup elf_s390_reloc_name_lookup |
4004 | #define bfd_elf64_bfd_merge_private_bfd_data elf64_s390_merge_private_bfd_data | |
a85d7ed0 NC |
4005 | |
4006 | #define elf_backend_adjust_dynamic_symbol elf_s390_adjust_dynamic_symbol | |
4007 | #define elf_backend_check_relocs elf_s390_check_relocs | |
0451c93c | 4008 | #define elf_backend_copy_indirect_symbol elf_s390_copy_indirect_symbol |
9d19e4fd | 4009 | #define elf_backend_create_dynamic_sections _bfd_elf_create_dynamic_sections |
a85d7ed0 NC |
4010 | #define elf_backend_finish_dynamic_sections elf_s390_finish_dynamic_sections |
4011 | #define elf_backend_finish_dynamic_symbol elf_s390_finish_dynamic_symbol | |
4012 | #define elf_backend_gc_mark_hook elf_s390_gc_mark_hook | |
4013 | #define elf_backend_gc_sweep_hook elf_s390_gc_sweep_hook | |
0451c93c | 4014 | #define elf_backend_reloc_type_class elf_s390_reloc_type_class |
a85d7ed0 NC |
4015 | #define elf_backend_relocate_section elf_s390_relocate_section |
4016 | #define elf_backend_size_dynamic_sections elf_s390_size_dynamic_sections | |
74541ad4 | 4017 | #define elf_backend_init_index_section _bfd_elf_init_1_index_section |
e3e9290d AA |
4018 | #define elf_backend_grok_prstatus elf_s390_grok_prstatus |
4019 | #define elf_backend_grok_psinfo elf_s390_grok_psinfo | |
4020 | #define elf_backend_write_core_note elf_s390_write_core_note | |
4c45e5c9 | 4021 | #define elf_backend_plt_sym_val elf_s390_plt_sym_val |
470b557a | 4022 | #define elf_backend_add_symbol_hook elf_s390_add_symbol_hook |
b9005ba7 | 4023 | #define elf_backend_sort_relocs_p elf_s390_elf_sort_relocs_p |
a85d7ed0 | 4024 | |
69fc87f1 MS |
4025 | #define bfd_elf64_mkobject elf_s390_mkobject |
4026 | #define elf_backend_object_p elf_s390_object_p | |
a85d7ed0 NC |
4027 | |
4028 | #include "elf64-target.h" |