]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/sparc/sparc32/dl-machine.h
elf: Avoid nested functions in the loader [BZ #27220]
[thirdparty/glibc.git] / sysdeps / sparc / sparc32 / dl-machine.h
1 /* Machine-dependent ELF dynamic relocation inline functions. SPARC version.
2 Copyright (C) 1996-2021 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
18
19 #ifndef dl_machine_h
20 #define dl_machine_h
21
22 #define ELF_MACHINE_NAME "sparc"
23
24 #include <string.h>
25 #include <sys/param.h>
26 #include <ldsodefs.h>
27 #include <sysdep.h>
28 #include <tls.h>
29 #include <dl-plt.h>
30 #include <elf/dl-hwcaps.h>
31
32 /* Return nonzero iff ELF header is compatible with the running host. */
33 static inline int
34 elf_machine_matches_host (const Elf32_Ehdr *ehdr)
35 {
36 if (ehdr->e_machine == EM_SPARC)
37 return 1;
38 else if (ehdr->e_machine == EM_SPARC32PLUS)
39 {
40 #if HAVE_TUNABLES || defined SHARED
41 uint64_t hwcap_mask = GET_HWCAP_MASK();
42 return GLRO(dl_hwcap) & hwcap_mask & HWCAP_SPARC_V9;
43 #else
44 return GLRO(dl_hwcap) & HWCAP_SPARC_V9;
45 #endif
46 }
47 else
48 return 0;
49 }
50
51 /* We have to do this because elf_machine_{dynamic,load_address} can be
52 invoked from functions that have no GOT references, and thus the compiler
53 has no obligation to load the PIC register. */
54 #define LOAD_PIC_REG(PIC_REG) \
55 do { register Elf32_Addr pc __asm("o7"); \
56 __asm("sethi %%hi(_GLOBAL_OFFSET_TABLE_-4), %1\n\t" \
57 "call 1f\n\t" \
58 "add %1, %%lo(_GLOBAL_OFFSET_TABLE_+4), %1\n" \
59 "1:\tadd %1, %0, %1" \
60 : "=r" (pc), "=r" (PIC_REG)); \
61 } while (0)
62
63 /* Return the link-time address of _DYNAMIC. Conveniently, this is the
64 first element of the GOT. This must be inlined in a function which
65 uses global data. */
66 static inline Elf32_Addr
67 elf_machine_dynamic (void)
68 {
69 register Elf32_Addr *got asm ("%l7");
70
71 LOAD_PIC_REG (got);
72
73 return *got;
74 }
75
76 /* Return the run-time load address of the shared object. */
77 static inline Elf32_Addr
78 elf_machine_load_address (void)
79 {
80 register Elf32_Addr *pc __asm ("%o7"), *got __asm ("%l7");
81
82 __asm ("sethi %%hi(_GLOBAL_OFFSET_TABLE_-4), %1\n\t"
83 "call 1f\n\t"
84 " add %1, %%lo(_GLOBAL_OFFSET_TABLE_+4), %1\n\t"
85 "call _DYNAMIC\n\t"
86 "call _GLOBAL_OFFSET_TABLE_\n"
87 "1:\tadd %1, %0, %1\n\t" : "=r" (pc), "=r" (got));
88
89 /* got is now l_addr + _GLOBAL_OFFSET_TABLE_
90 *got is _DYNAMIC
91 pc[2]*4 is l_addr + _DYNAMIC - (long)pc - 8
92 pc[3]*4 is l_addr + _GLOBAL_OFFSET_TABLE_ - (long)pc - 12 */
93 return (Elf32_Addr) got - *got + (pc[2] - pc[3]) * 4 - 4;
94 }
95
96 /* Set up the loaded object described by L so its unrelocated PLT
97 entries will jump to the on-demand fixup code in dl-runtime.c. */
98
99 static inline int
100 elf_machine_runtime_setup (struct link_map *l, struct r_scope_elem *scope[],
101 int lazy, int profile)
102 {
103 Elf32_Addr *plt;
104 extern void _dl_runtime_resolve (Elf32_Word);
105 extern void _dl_runtime_profile (Elf32_Word);
106
107 if (l->l_info[DT_JMPREL] && lazy)
108 {
109 Elf32_Addr rfunc;
110
111 /* The entries for functions in the PLT have not yet been filled in.
112 Their initial contents will arrange when called to set the high 22
113 bits of %g1 with an offset into the .rela.plt section and jump to
114 the beginning of the PLT. */
115 plt = (Elf32_Addr *) D_PTR (l, l_info[DT_PLTGOT]);
116 if (__builtin_expect(profile, 0))
117 {
118 rfunc = (Elf32_Addr) &_dl_runtime_profile;
119
120 if (GLRO(dl_profile) != NULL
121 && _dl_name_match_p (GLRO(dl_profile), l))
122 GL(dl_profile_map) = l;
123 }
124 else
125 {
126 rfunc = (Elf32_Addr) &_dl_runtime_resolve;
127 }
128
129 /* The beginning of the PLT does:
130
131 sethi %hi(_dl_runtime_{resolve,profile}), %g2
132 pltpc: jmpl %g2 + %lo(_dl_runtime_{resolve,profile}), %g2
133 nop
134 .word MAP
135
136 The PC value (pltpc) saved in %g2 by the jmpl points near the
137 location where we store the link_map pointer for this object. */
138
139 plt[0] = 0x05000000 | ((rfunc >> 10) & 0x003fffff);
140 plt[1] = 0x85c0a000 | (rfunc & 0x3ff);
141 plt[2] = OPCODE_NOP; /* Fill call delay slot. */
142 plt[3] = (Elf32_Addr) l;
143 if (__builtin_expect (l->l_info[VALIDX(DT_GNU_PRELINKED)] != NULL, 0)
144 || __builtin_expect (l->l_info [VALIDX (DT_GNU_LIBLISTSZ)] != NULL, 0))
145 {
146 /* Need to reinitialize .plt to undo prelinking. */
147 Elf32_Rela *rela = (Elf32_Rela *) D_PTR (l, l_info[DT_JMPREL]);
148 Elf32_Rela *relaend
149 = (Elf32_Rela *) ((char *) rela
150 + l->l_info[DT_PLTRELSZ]->d_un.d_val);
151 #if !defined RTLD_BOOTSTRAP && !defined __sparc_v9__
152 /* Note that we don't mask the hwcap here, as the flush is
153 essential to functionality on those cpu's that implement it.
154 For sparcv9 we can assume flush is present. */
155 const int do_flush = GLRO(dl_hwcap) & HWCAP_SPARC_FLUSH;
156 #else
157 const int do_flush = 1;
158 #endif
159
160 /* prelink must ensure there are no R_SPARC_NONE relocs left
161 in .rela.plt. */
162 while (rela < relaend)
163 {
164 *(unsigned int *) (rela->r_offset + l->l_addr)
165 = OPCODE_SETHI_G1 | (rela->r_offset + l->l_addr
166 - (Elf32_Addr) plt);
167 *(unsigned int *) (rela->r_offset + l->l_addr + 4)
168 = OPCODE_BA | ((((Elf32_Addr) plt
169 - rela->r_offset - l->l_addr - 4) >> 2)
170 & 0x3fffff);
171 if (do_flush)
172 {
173 __asm __volatile ("flush %0" : : "r" (rela->r_offset
174 + l->l_addr));
175 __asm __volatile ("flush %0+4" : : "r" (rela->r_offset
176 + l->l_addr));
177 }
178 ++rela;
179 }
180 }
181 }
182
183 return lazy;
184 }
185
186 /* ELF_RTYPE_CLASS_PLT iff TYPE describes relocation of a PLT entry, so
187 PLT entries should not be allowed to define the value.
188 ELF_RTYPE_CLASS_COPY iff TYPE should not be allowed to resolve to one
189 of the main executable's symbols, as for a COPY reloc. */
190 #define elf_machine_type_class(type) \
191 ((((type) == R_SPARC_JMP_SLOT \
192 || ((type) >= R_SPARC_TLS_GD_HI22 && (type) <= R_SPARC_TLS_TPOFF64)) \
193 * ELF_RTYPE_CLASS_PLT) \
194 | (((type) == R_SPARC_COPY) * ELF_RTYPE_CLASS_COPY))
195
196 /* A reloc type used for ld.so cmdline arg lookups to reject PLT entries. */
197 #define ELF_MACHINE_JMP_SLOT R_SPARC_JMP_SLOT
198
199 /* The SPARC never uses Elf32_Rel relocations. */
200 #define ELF_MACHINE_NO_REL 1
201 #define ELF_MACHINE_NO_RELA 0
202
203 /* Undo the sub %sp, 6*4, %sp; add %sp, 22*4, %o0 below to get at the
204 value we want in __libc_stack_end. */
205 #define DL_STACK_END(cookie) \
206 ((void *) (((long) (cookie)) - (22 - 6) * 4))
207
208 /* Initial entry point code for the dynamic linker.
209 The C function `_dl_start' is the real entry point;
210 its return value is the user program's entry point. */
211
212 #define RTLD_GOT_ADDRESS(pic_reg, reg, symbol) \
213 "sethi %gdop_hix22(" #symbol "), " #reg "\n\t" \
214 "xor " #reg ", %gdop_lox10(" #symbol "), " #reg "\n\t" \
215 "ld [" #pic_reg " + " #reg "], " #reg ", %gdop(" #symbol ")"
216
217 #define RTLD_START __asm__ ("\
218 .text\n\
219 .globl _start\n\
220 .type _start, @function\n\
221 .align 32\n\
222 _start:\n\
223 /* Allocate space for functions to drop their arguments. */\n\
224 sub %sp, 6*4, %sp\n\
225 /* Pass pointer to argument block to _dl_start. */\n\
226 call _dl_start\n\
227 add %sp, 22*4, %o0\n\
228 /* FALTHRU */\n\
229 .globl _dl_start_user\n\
230 .type _dl_start_user, @function\n\
231 _dl_start_user:\n\
232 /* Load the PIC register. */\n\
233 1: call 2f\n\
234 sethi %hi(_GLOBAL_OFFSET_TABLE_-(1b-.)), %l7\n\
235 2: or %l7, %lo(_GLOBAL_OFFSET_TABLE_-(1b-.)), %l7\n\
236 add %l7, %o7, %l7\n\
237 /* Save the user entry point address in %l0 */\n\
238 mov %o0, %l0\n\
239 /* See if we were run as a command with the executable file name as an\n\
240 extra leading argument. If so, adjust the contents of the stack. */\n\
241 " RTLD_GOT_ADDRESS(%l7, %g2, _dl_skip_args) "\n\
242 ld [%g2], %i0\n\
243 tst %i0\n\
244 beq 3f\n\
245 ld [%sp+22*4], %i5 /* load argc */\n\
246 /* Find out how far to shift. */\n\
247 " RTLD_GOT_ADDRESS(%l7, %l3, _dl_argv) "\n\
248 sub %i5, %i0, %i5\n\
249 ld [%l3], %l4\n\
250 sll %i0, 2, %i2\n\
251 st %i5, [%sp+22*4]\n\
252 sub %l4, %i2, %l4\n\
253 add %sp, 23*4, %i1\n\
254 add %i1, %i2, %i2\n\
255 st %l4, [%l3]\n\
256 /* Copy down argv */\n\
257 21: ld [%i2], %i3\n\
258 add %i2, 4, %i2\n\
259 tst %i3\n\
260 st %i3, [%i1]\n\
261 bne 21b\n\
262 add %i1, 4, %i1\n\
263 /* Copy down env */\n\
264 22: ld [%i2], %i3\n\
265 add %i2, 4, %i2\n\
266 tst %i3\n\
267 st %i3, [%i1]\n\
268 bne 22b\n\
269 add %i1, 4, %i1\n\
270 /* Copy down auxiliary table. */\n\
271 23: ld [%i2], %i3\n\
272 ld [%i2+4], %i4\n\
273 add %i2, 8, %i2\n\
274 tst %i3\n\
275 st %i3, [%i1]\n\
276 st %i4, [%i1+4]\n\
277 bne 23b\n\
278 add %i1, 8, %i1\n\
279 /* %o0 = _dl_loaded, %o1 = argc, %o2 = argv, %o3 = envp. */\n\
280 3: " RTLD_GOT_ADDRESS(%l7, %o0, _rtld_local) "\n\
281 add %sp, 23*4, %o2\n\
282 sll %i5, 2, %o3\n\
283 add %o3, 4, %o3\n\
284 mov %i5, %o1\n\
285 add %o2, %o3, %o3\n\
286 call _dl_init\n\
287 ld [%o0], %o0\n\
288 /* Pass our finalizer function to the user in %g1. */\n\
289 " RTLD_GOT_ADDRESS(%l7, %g1, _dl_fini) "\n\
290 /* Jump to the user's entry point and deallocate the extra stack we got. */\n\
291 jmp %l0\n\
292 add %sp, 6*4, %sp\n\
293 .size _dl_start_user, . - _dl_start_user\n\
294 .previous");
295
296 static inline Elf32_Addr
297 elf_machine_fixup_plt (struct link_map *map, lookup_t t,
298 const ElfW(Sym) *refsym, const ElfW(Sym) *sym,
299 const Elf32_Rela *reloc,
300 Elf32_Addr *reloc_addr, Elf32_Addr value)
301 {
302 #ifdef __sparc_v9__
303 /* Sparc v9 can assume flush is always present. */
304 const int do_flush = 1;
305 #else
306 /* Note that we don't mask the hwcap here, as the flush is essential to
307 functionality on those cpu's that implement it. */
308 const int do_flush = GLRO(dl_hwcap) & HWCAP_SPARC_FLUSH;
309 #endif
310 return sparc_fixup_plt (reloc, reloc_addr, value, 1, do_flush);
311 }
312
313 /* Return the final value of a plt relocation. */
314 static inline Elf32_Addr
315 elf_machine_plt_value (struct link_map *map, const Elf32_Rela *reloc,
316 Elf32_Addr value)
317 {
318 return value + reloc->r_addend;
319 }
320
321 #endif /* dl_machine_h */
322
323 #define ARCH_LA_PLTENTER sparc32_gnu_pltenter
324 #define ARCH_LA_PLTEXIT sparc32_gnu_pltexit
325
326 #ifdef RESOLVE_MAP
327
328 /* Perform the relocation specified by RELOC and SYM (which is fully resolved).
329 MAP is the object containing the reloc. */
330
331 static inline void
332 __attribute__ ((always_inline))
333 elf_machine_rela (struct link_map *map, struct r_scope_elem *scope[],
334 const Elf32_Rela *reloc, const Elf32_Sym *sym,
335 const struct r_found_version *version,
336 void *const reloc_addr_arg, int skip_ifunc)
337 {
338 Elf32_Addr *const reloc_addr = reloc_addr_arg;
339 #if !defined RTLD_BOOTSTRAP && !defined RESOLVE_CONFLICT_FIND_MAP
340 const Elf32_Sym *const refsym = sym;
341 #endif
342 Elf32_Addr value;
343 const unsigned int r_type = ELF32_R_TYPE (reloc->r_info);
344 #if !defined RESOLVE_CONFLICT_FIND_MAP
345 struct link_map *sym_map = NULL;
346 #endif
347
348 #if !defined RTLD_BOOTSTRAP && !defined HAVE_Z_COMBRELOC
349 /* This is defined in rtld.c, but nowhere in the static libc.a; make the
350 reference weak so static programs can still link. This declaration
351 cannot be done when compiling rtld.c (i.e. #ifdef RTLD_BOOTSTRAP)
352 because rtld.c contains the common defn for _dl_rtld_map, which is
353 incompatible with a weak decl in the same file. */
354 weak_extern (_dl_rtld_map);
355 #endif
356
357 if (__glibc_unlikely (r_type == R_SPARC_NONE))
358 return;
359
360 if (__glibc_unlikely (r_type == R_SPARC_SIZE32))
361 {
362 *reloc_addr = sym->st_size + reloc->r_addend;
363 return;
364 }
365
366 #if !defined RTLD_BOOTSTRAP || !defined HAVE_Z_COMBRELOC
367 if (__glibc_unlikely (r_type == R_SPARC_RELATIVE))
368 {
369 # if !defined RTLD_BOOTSTRAP && !defined HAVE_Z_COMBRELOC
370 if (map != &_dl_rtld_map) /* Already done in rtld itself. */
371 # endif
372 *reloc_addr += map->l_addr + reloc->r_addend;
373 return;
374 }
375 #endif
376
377 #ifndef RESOLVE_CONFLICT_FIND_MAP
378 if (__builtin_expect (ELF32_ST_BIND (sym->st_info) == STB_LOCAL, 0)
379 && sym->st_shndx != SHN_UNDEF)
380 {
381 sym_map = map;
382 value = map->l_addr;
383 }
384 else
385 {
386 sym_map = RESOLVE_MAP (map, scope, &sym, version, r_type);
387 value = SYMBOL_ADDRESS (sym_map, sym, true);
388 }
389 #else
390 value = 0;
391 #endif
392
393 value += reloc->r_addend; /* Assume copy relocs have zero addend. */
394
395 if (sym != NULL
396 && __builtin_expect (ELFW(ST_TYPE) (sym->st_info) == STT_GNU_IFUNC, 0)
397 && __builtin_expect (sym->st_shndx != SHN_UNDEF, 1)
398 && __builtin_expect (!skip_ifunc, 1))
399 {
400 value = ((Elf32_Addr (*) (int)) value) (GLRO(dl_hwcap));
401 }
402
403 switch (r_type)
404 {
405 #if !defined RTLD_BOOTSTRAP && !defined RESOLVE_CONFLICT_FIND_MAP
406 case R_SPARC_COPY:
407 if (sym == NULL)
408 /* This can happen in trace mode if an object could not be
409 found. */
410 break;
411 if (sym->st_size > refsym->st_size
412 || (GLRO(dl_verbose) && sym->st_size < refsym->st_size))
413 {
414 const char *strtab;
415
416 strtab = (const void *) D_PTR (map, l_info[DT_STRTAB]);
417 _dl_error_printf ("\
418 %s: Symbol `%s' has different size in shared object, consider re-linking\n",
419 RTLD_PROGNAME, strtab + refsym->st_name);
420 }
421 memcpy (reloc_addr_arg, (void *) value,
422 MIN (sym->st_size, refsym->st_size));
423 break;
424 #endif
425 case R_SPARC_GLOB_DAT:
426 case R_SPARC_32:
427 *reloc_addr = value;
428 break;
429 case R_SPARC_IRELATIVE:
430 if (__glibc_likely (!skip_ifunc))
431 value = ((Elf32_Addr (*) (int)) value) (GLRO(dl_hwcap));
432 *reloc_addr = value;
433 break;
434 case R_SPARC_JMP_IREL:
435 if (__glibc_likely (!skip_ifunc))
436 value = ((Elf32_Addr (*) (int)) value) (GLRO(dl_hwcap));
437 /* Fall thru */
438 case R_SPARC_JMP_SLOT:
439 {
440 #if !defined RTLD_BOOTSTRAP && !defined __sparc_v9__
441 /* Note that we don't mask the hwcap here, as the flush is
442 essential to functionality on those cpu's that implement
443 it. For sparcv9 we can assume flush is present. */
444 const int do_flush = GLRO(dl_hwcap) & HWCAP_SPARC_FLUSH;
445 #else
446 /* Unfortunately, this is necessary, so that we can ensure
447 ld.so will not execute corrupt PLT entry instructions. */
448 const int do_flush = 1;
449 #endif
450 /* At this point we don't need to bother with thread safety,
451 so we can optimize the first instruction of .plt out. */
452 sparc_fixup_plt (reloc, reloc_addr, value, 0, do_flush);
453 }
454 break;
455 #ifndef RESOLVE_CONFLICT_FIND_MAP
456 case R_SPARC_TLS_DTPMOD32:
457 /* Get the information from the link map returned by the
458 resolv function. */
459 if (sym_map != NULL)
460 *reloc_addr = sym_map->l_tls_modid;
461 break;
462 case R_SPARC_TLS_DTPOFF32:
463 /* During relocation all TLS symbols are defined and used.
464 Therefore the offset is already correct. */
465 *reloc_addr = (sym == NULL ? 0 : sym->st_value) + reloc->r_addend;
466 break;
467 case R_SPARC_TLS_TPOFF32:
468 /* The offset is negative, forward from the thread pointer. */
469 /* We know the offset of object the symbol is contained in.
470 It is a negative value which will be added to the
471 thread pointer. */
472 if (sym != NULL)
473 {
474 CHECK_STATIC_TLS (map, sym_map);
475 *reloc_addr = sym->st_value - sym_map->l_tls_offset
476 + reloc->r_addend;
477 }
478 break;
479 # ifndef RTLD_BOOTSTRAP
480 case R_SPARC_TLS_LE_HIX22:
481 case R_SPARC_TLS_LE_LOX10:
482 if (sym != NULL)
483 {
484 CHECK_STATIC_TLS (map, sym_map);
485 value = sym->st_value - sym_map->l_tls_offset
486 + reloc->r_addend;
487 if (r_type == R_SPARC_TLS_LE_HIX22)
488 *reloc_addr = (*reloc_addr & 0xffc00000) | ((~value) >> 10);
489 else
490 *reloc_addr = (*reloc_addr & 0xffffe000) | (value & 0x3ff)
491 | 0x1c00;
492 }
493 break;
494 # endif
495 #endif
496 #ifndef RTLD_BOOTSTRAP
497 case R_SPARC_8:
498 *(char *) reloc_addr = value;
499 break;
500 case R_SPARC_16:
501 *(short *) reloc_addr = value;
502 break;
503 case R_SPARC_DISP8:
504 *(char *) reloc_addr = (value - (Elf32_Addr) reloc_addr);
505 break;
506 case R_SPARC_DISP16:
507 *(short *) reloc_addr = (value - (Elf32_Addr) reloc_addr);
508 break;
509 case R_SPARC_DISP32:
510 *reloc_addr = (value - (Elf32_Addr) reloc_addr);
511 break;
512 case R_SPARC_LO10:
513 *reloc_addr = (*reloc_addr & ~0x3ff) | (value & 0x3ff);
514 break;
515 case R_SPARC_WDISP30:
516 *reloc_addr = ((*reloc_addr & 0xc0000000)
517 | ((value - (unsigned int) reloc_addr) >> 2));
518 break;
519 case R_SPARC_HI22:
520 *reloc_addr = (*reloc_addr & 0xffc00000) | (value >> 10);
521 break;
522 case R_SPARC_UA16:
523 ((unsigned char *) reloc_addr_arg) [0] = value >> 8;
524 ((unsigned char *) reloc_addr_arg) [1] = value;
525 break;
526 case R_SPARC_UA32:
527 ((unsigned char *) reloc_addr_arg) [0] = value >> 24;
528 ((unsigned char *) reloc_addr_arg) [1] = value >> 16;
529 ((unsigned char *) reloc_addr_arg) [2] = value >> 8;
530 ((unsigned char *) reloc_addr_arg) [3] = value;
531 break;
532 #endif
533 #if !defined RTLD_BOOTSTRAP || defined _NDEBUG
534 default:
535 _dl_reloc_bad_type (map, r_type, 0);
536 break;
537 #endif
538 }
539 }
540
541 static inline void
542 __attribute__ ((always_inline))
543 elf_machine_rela_relative (Elf32_Addr l_addr, const Elf32_Rela *reloc,
544 void *const reloc_addr_arg)
545 {
546 Elf32_Addr *const reloc_addr = reloc_addr_arg;
547 *reloc_addr += l_addr + reloc->r_addend;
548 }
549
550 static inline void
551 __attribute__ ((always_inline))
552 elf_machine_lazy_rel (struct link_map *map, struct r_scope_elem *scope[],
553 Elf32_Addr l_addr, const Elf32_Rela *reloc,
554 int skip_ifunc)
555 {
556 Elf32_Addr *const reloc_addr = (void *) (l_addr + reloc->r_offset);
557 const unsigned int r_type = ELF32_R_TYPE (reloc->r_info);
558
559 if (__glibc_likely (r_type == R_SPARC_JMP_SLOT))
560 ;
561 else if (r_type == R_SPARC_JMP_IREL)
562 {
563 Elf32_Addr value = map->l_addr + reloc->r_addend;
564 if (__glibc_likely (!skip_ifunc))
565 value = ((Elf32_Addr (*) (int)) value) (GLRO(dl_hwcap));
566 sparc_fixup_plt (reloc, reloc_addr, value, 1, 1);
567 }
568 else if (r_type == R_SPARC_NONE)
569 ;
570 else
571 _dl_reloc_bad_type (map, r_type, 1);
572 }
573
574 #endif /* RESOLVE_MAP */