]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - libexec/rtld-elf/sparc64/reloc.c
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / libexec / rtld-elf / sparc64 / reloc.c
1 /*      $NetBSD: mdreloc.c,v 1.42 2008/04/28 20:23:04 martin Exp $      */
2
3 /*-
4  * Copyright (c) 2000 Eduardo Horvath.
5  * Copyright (c) 1999 The NetBSD Foundation, Inc.
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to The NetBSD Foundation
9  * by Paul Kranenburg.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35
36 #include <sys/param.h>
37 #include <sys/mman.h>
38
39 #include <errno.h>
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <unistd.h>
44
45 #include "debug.h"
46 #include "rtld.h"
47
48 /*
49  * The following table holds for each relocation type:
50  *      - the width in bits of the memory location the relocation
51  *        applies to (not currently used)
52  *      - the number of bits the relocation value must be shifted to the
53  *        right (i.e. discard least significant bits) to fit into
54  *        the appropriate field in the instruction word.
55  *      - flags indicating whether
56  *              * the relocation involves a symbol
57  *              * the relocation is relative to the current position
58  *              * the relocation is for a GOT entry
59  *              * the relocation is relative to the load address
60  *
61  */
62 #define _RF_S           0x80000000              /* Resolve symbol */
63 #define _RF_A           0x40000000              /* Use addend */
64 #define _RF_P           0x20000000              /* Location relative */
65 #define _RF_G           0x10000000              /* GOT offset */
66 #define _RF_B           0x08000000              /* Load address relative */
67 #define _RF_U           0x04000000              /* Unaligned */
68 #define _RF_X           0x02000000              /* Bare symbols, needs proc */
69 #define _RF_D           0x01000000              /* Use dynamic TLS offset */
70 #define _RF_O           0x00800000              /* Use static TLS offset */
71 #define _RF_I           0x00400000              /* Use TLS object ID */
72 #define _RF_SZ(s)       (((s) & 0xff) << 8)     /* memory target size */
73 #define _RF_RS(s)       ( (s) & 0xff)           /* right shift */
74 static const int reloc_target_flags[] = {
75         0,                                                      /* NONE */
76         _RF_S|_RF_A|            _RF_SZ(8)  | _RF_RS(0),         /* 8 */
77         _RF_S|_RF_A|            _RF_SZ(16) | _RF_RS(0),         /* 16 */
78         _RF_S|_RF_A|            _RF_SZ(32) | _RF_RS(0),         /* 32 */
79         _RF_S|_RF_A|_RF_P|      _RF_SZ(8)  | _RF_RS(0),         /* DISP_8 */
80         _RF_S|_RF_A|_RF_P|      _RF_SZ(16) | _RF_RS(0),         /* DISP_16 */
81         _RF_S|_RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(0),         /* DISP_32 */
82         _RF_S|_RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(2),         /* WDISP_30 */
83         _RF_S|_RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(2),         /* WDISP_22 */
84         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(10),        /* HI22 */
85         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(0),         /* 22 */
86         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(0),         /* 13 */
87         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(0),         /* LO10 */
88         _RF_G|                  _RF_SZ(32) | _RF_RS(0),         /* GOT10 */
89         _RF_G|                  _RF_SZ(32) | _RF_RS(0),         /* GOT13 */
90         _RF_G|                  _RF_SZ(32) | _RF_RS(10),        /* GOT22 */
91         _RF_S|_RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(0),         /* PC10 */
92         _RF_S|_RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(10),        /* PC22 */
93               _RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(2),         /* WPLT30 */
94                                 _RF_SZ(32) | _RF_RS(0),         /* COPY */
95         _RF_S|_RF_A|            _RF_SZ(64) | _RF_RS(0),         /* GLOB_DAT */
96                                 _RF_SZ(32) | _RF_RS(0),         /* JMP_SLOT */
97               _RF_A|    _RF_B|  _RF_SZ(64) | _RF_RS(0),         /* RELATIVE */
98         _RF_S|_RF_A|    _RF_U|  _RF_SZ(32) | _RF_RS(0),         /* UA_32 */
99
100               _RF_A|            _RF_SZ(32) | _RF_RS(0),         /* PLT32 */
101               _RF_A|            _RF_SZ(32) | _RF_RS(10),        /* HIPLT22 */
102               _RF_A|            _RF_SZ(32) | _RF_RS(0),         /* LOPLT10 */
103               _RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(0),         /* PCPLT32 */
104               _RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(10),        /* PCPLT22 */
105               _RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(0),         /* PCPLT10 */
106         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(0),         /* 10 */
107         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(0),         /* 11 */
108         _RF_S|_RF_A|_RF_X|      _RF_SZ(64) | _RF_RS(0),         /* 64 */
109         _RF_S|_RF_A|/*extra*/   _RF_SZ(32) | _RF_RS(0),         /* OLO10 */
110         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(42),        /* HH22 */
111         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(32),        /* HM10 */
112         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(10),        /* LM22 */
113         _RF_S|_RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(42),        /* PC_HH22 */
114         _RF_S|_RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(32),        /* PC_HM10 */
115         _RF_S|_RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(10),        /* PC_LM22 */
116         _RF_S|_RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(2),         /* WDISP16 */
117         _RF_S|_RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(2),         /* WDISP19 */
118         _RF_S|_RF_A|            _RF_SZ(32) | _RF_RS(0),         /* GLOB_JMP */
119         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(0),         /* 7 */
120         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(0),         /* 5 */
121         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(0),         /* 6 */
122         _RF_S|_RF_A|_RF_P|      _RF_SZ(64) | _RF_RS(0),         /* DISP64 */
123               _RF_A|            _RF_SZ(64) | _RF_RS(0),         /* PLT64 */
124         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(10),        /* HIX22 */
125         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(0),         /* LOX10 */
126         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(22),        /* H44 */
127         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(12),        /* M44 */
128         _RF_S|_RF_A|_RF_X|      _RF_SZ(32) | _RF_RS(0),         /* L44 */
129         _RF_S|_RF_A|            _RF_SZ(64) | _RF_RS(0),         /* REGISTER */
130         _RF_S|_RF_A|    _RF_U|  _RF_SZ(64) | _RF_RS(0),         /* UA64 */
131         _RF_S|_RF_A|    _RF_U|  _RF_SZ(16) | _RF_RS(0),         /* UA16 */
132
133         /* TLS */
134         _RF_S|_RF_A|            _RF_SZ(32) | _RF_RS(10),        /* GD_HI22 */
135         _RF_S|_RF_A|            _RF_SZ(32) | _RF_RS(0),         /* GD_LO10 */
136         0,                                                      /* GD_ADD */
137               _RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(2),         /* GD_CALL */
138         _RF_S|_RF_A|            _RF_SZ(32) | _RF_RS(10),        /* LDM_HI22 */
139         _RF_S|_RF_A|            _RF_SZ(32) | _RF_RS(0),         /* LDM_LO10 */
140         0,                                                      /* LDM_ADD */
141               _RF_A|_RF_P|      _RF_SZ(32) | _RF_RS(2),         /* LDM_CALL */
142         _RF_S|_RF_A|            _RF_SZ(32) | _RF_RS(10),        /* LDO_HIX22 */
143         _RF_S|_RF_A|            _RF_SZ(32) | _RF_RS(0),         /* LDO_LOX10 */
144         0,                                                      /* LDO_ADD */
145         _RF_S|_RF_A|            _RF_SZ(32) | _RF_RS(10),        /* IE_HI22 */
146         _RF_S|_RF_A|            _RF_SZ(32) | _RF_RS(0),         /* IE_LO10 */
147         0,                                                      /* IE_LD */
148         0,                                                      /* IE_LDX */
149         0,                                                      /* IE_ADD */
150         _RF_S|_RF_A|    _RF_O|  _RF_SZ(32) | _RF_RS(10),        /* LE_HIX22 */
151         _RF_S|_RF_A|    _RF_O|  _RF_SZ(32) | _RF_RS(0),         /* LE_LOX10 */
152         _RF_S|          _RF_I|  _RF_SZ(32) | _RF_RS(0),         /* DTPMOD32 */
153         _RF_S|          _RF_I|  _RF_SZ(64) | _RF_RS(0),         /* DTPMOD64 */
154         _RF_S|_RF_A|    _RF_D|  _RF_SZ(32) | _RF_RS(0),         /* DTPOFF32 */
155         _RF_S|_RF_A|    _RF_D|  _RF_SZ(64) | _RF_RS(0),         /* DTPOFF64 */
156         _RF_S|_RF_A|    _RF_O|  _RF_SZ(32) | _RF_RS(0),         /* TPOFF32 */
157         _RF_S|_RF_A|    _RF_O|  _RF_SZ(64) | _RF_RS(0)          /* TPOFF64 */
158 };
159
160 #if 0
161 static const char *const reloc_names[] = {
162         "NONE", "8", "16", "32", "DISP_8", "DISP_16", "DISP_32", "WDISP_30",
163         "WDISP_22", "HI22", "22", "13", "LO10", "GOT10", "GOT13", "GOT22",
164         "PC10", "PC22", "WPLT30", "COPY", "GLOB_DAT", "JMP_SLOT", "RELATIVE",
165         "UA_32", "PLT32", "HIPLT22", "LOPLT10", "LOPLT10", "PCPLT22",
166         "PCPLT32", "10", "11", "64", "OLO10", "HH22", "HM10", "LM22",
167         "PC_HH22", "PC_HM10", "PC_LM22", "WDISP16", "WDISP19", "GLOB_JMP",
168         "7", "5", "6", "DISP64", "PLT64", "HIX22", "LOX10", "H44", "M44",
169         "L44", "REGISTER", "UA64", "UA16", "GD_HI22", "GD_LO10", "GD_ADD",
170         "GD_CALL", "LDM_HI22", "LDMO10", "LDM_ADD", "LDM_CALL", "LDO_HIX22",
171         "LDO_LOX10", "LDO_ADD", "IE_HI22", "IE_LO10", "IE_LD", "IE_LDX",
172         "IE_ADD", "LE_HIX22", "LE_LOX10", "DTPMOD32", "DTPMOD64", "DTPOFF32",
173         "DTPOFF64", "TPOFF32", "TPOFF64"
174 };
175 #endif
176
177 #define RELOC_RESOLVE_SYMBOL(t)         ((reloc_target_flags[t] & _RF_S) != 0)
178 #define RELOC_PC_RELATIVE(t)            ((reloc_target_flags[t] & _RF_P) != 0)
179 #define RELOC_BASE_RELATIVE(t)          ((reloc_target_flags[t] & _RF_B) != 0)
180 #define RELOC_UNALIGNED(t)              ((reloc_target_flags[t] & _RF_U) != 0)
181 #define RELOC_USE_ADDEND(t)             ((reloc_target_flags[t] & _RF_A) != 0)
182 #define RELOC_BARE_SYMBOL(t)            ((reloc_target_flags[t] & _RF_X) != 0)
183 #define RELOC_USE_TLS_DOFF(t)           ((reloc_target_flags[t] & _RF_D) != 0)
184 #define RELOC_USE_TLS_OFF(t)            ((reloc_target_flags[t] & _RF_O) != 0)
185 #define RELOC_USE_TLS_ID(t)             ((reloc_target_flags[t] & _RF_I) != 0)
186 #define RELOC_TARGET_SIZE(t)            ((reloc_target_flags[t] >> 8) & 0xff)
187 #define RELOC_VALUE_RIGHTSHIFT(t)       (reloc_target_flags[t] & 0xff)
188
189 static const long reloc_target_bitmask[] = {
190 #define _BM(x)  (~(-(1ULL << (x))))
191         0,                              /* NONE */
192         _BM(8), _BM(16), _BM(32),       /* 8, 16, 32 */
193         _BM(8), _BM(16), _BM(32),       /* DISP8, DISP16, DISP32 */
194         _BM(30), _BM(22),               /* WDISP30, WDISP22 */
195         _BM(22), _BM(22),               /* HI22, 22 */
196         _BM(13), _BM(10),               /* 13, LO10 */
197         _BM(10), _BM(13), _BM(22),      /* GOT10, GOT13, GOT22 */
198         _BM(10), _BM(22),               /* PC10, PC22 */
199         _BM(30), 0,                     /* WPLT30, COPY */
200         _BM(32), _BM(32), _BM(32),      /* GLOB_DAT, JMP_SLOT, RELATIVE */
201         _BM(32), _BM(32),               /* UA32, PLT32 */
202         _BM(22), _BM(10),               /* HIPLT22, LOPLT10 */
203         _BM(32), _BM(22), _BM(10),      /* PCPLT32, PCPLT22, PCPLT10 */
204         _BM(10), _BM(11), -1,           /* 10, 11, 64 */
205         _BM(13), _BM(22),               /* OLO10, HH22 */
206         _BM(10), _BM(22),               /* HM10, LM22 */
207         _BM(22), _BM(10), _BM(22),      /* PC_HH22, PC_HM10, PC_LM22 */
208         _BM(16), _BM(19),               /* WDISP16, WDISP19 */
209         -1,                             /* GLOB_JMP */
210         _BM(7), _BM(5), _BM(6),         /* 7, 5, 6 */
211         -1, -1,                         /* DISP64, PLT64 */
212         _BM(22), _BM(13),               /* HIX22, LOX10 */
213         _BM(22), _BM(10), _BM(13),      /* H44, M44, L44 */
214         -1, -1, _BM(16),                /* REGISTER, UA64, UA16 */
215         _BM(22), _BM(10), 0, _BM(30),   /* GD_HI22, GD_LO10, GD_ADD, GD_CALL */
216         _BM(22), _BM(10), 0,            /* LDM_HI22, LDMO10, LDM_ADD */
217         _BM(30),                        /* LDM_CALL */
218         _BM(22), _BM(10), 0,            /* LDO_HIX22, LDO_LOX10, LDO_ADD */
219         _BM(22), _BM(10), 0, 0,         /* IE_HI22, IE_LO10, IE_LD, IE_LDX */
220         0,                              /* IE_ADD */
221         _BM(22), _BM(13),               /* LE_HIX22, LE_LOX10 */
222         _BM(32), -1,                    /* DTPMOD32, DTPMOD64 */
223         _BM(32), -1,                    /* DTPOFF32, DTPOFF64 */
224         _BM(32), -1                     /* TPOFF32, TPOFF64 */
225 #undef _BM
226 };
227 #define RELOC_VALUE_BITMASK(t)  (reloc_target_bitmask[t])
228
229 #undef flush
230 #define flush(va, offs)                                                 \
231         __asm __volatile("flush %0 + %1" : : "r" (va), "I" (offs));
232
233 static int reloc_nonplt_object(Obj_Entry *obj, const Elf_Rela *rela,
234     SymCache *cache, RtldLockState *lockstate);
235 static void install_plt(Elf_Word *pltgot, Elf_Addr proc);
236
237 extern char _rtld_bind_start_0[];
238 extern char _rtld_bind_start_1[];
239
240 int
241 do_copy_relocations(Obj_Entry *dstobj)
242 {
243         const Elf_Rela *relalim;
244         const Elf_Rela *rela;
245         const Elf_Sym *dstsym;
246         const Elf_Sym *srcsym;
247         void *dstaddr;
248         const void *srcaddr;
249         const Obj_Entry *srcobj, *defobj;
250         SymLook req;
251         const char *name;
252         size_t size;
253         int res;
254
255         assert(dstobj->mainprog);   /* COPY relocations are invalid elsewhere */
256
257         relalim = (const Elf_Rela *)((caddr_t)dstobj->rela + dstobj->relasize);
258         for (rela = dstobj->rela; rela < relalim; rela++) {
259                 if (ELF_R_TYPE(rela->r_info) == R_SPARC_COPY) {
260                         dstaddr = (void *)(dstobj->relocbase + rela->r_offset);
261                         dstsym = dstobj->symtab + ELF_R_SYM(rela->r_info);
262                         name = dstobj->strtab + dstsym->st_name;
263                         size = dstsym->st_size;
264                         symlook_init(&req, name);
265                         req.ventry = fetch_ventry(dstobj,
266                             ELF_R_SYM(rela->r_info));
267
268                         for (srcobj = dstobj->next; srcobj != NULL;
269                             srcobj = srcobj->next) {
270                                 res = symlook_obj(&req, srcobj);
271                                 if (res == 0) {
272                                         srcsym = req.sym_out;
273                                         defobj = req.defobj_out;
274                                         break;
275                                 }
276                         }
277                         if (srcobj == NULL) {
278                                 _rtld_error("Undefined symbol \"%s\""
279                                             "referenced from COPY relocation"
280                                             "in %s", name, dstobj->path);
281                                 return (-1);
282                         }
283
284                         srcaddr = (const void *)(defobj->relocbase +
285                             srcsym->st_value);
286                         memcpy(dstaddr, srcaddr, size);
287                 }
288         }
289
290         return (0);
291 }
292
293 int
294 reloc_non_plt(Obj_Entry *obj, Obj_Entry *obj_rtld, RtldLockState *lockstate)
295 {
296         const Elf_Rela *relalim;
297         const Elf_Rela *rela;
298         SymCache *cache;
299         int r = -1;
300
301         /*
302          * The dynamic loader may be called from a thread, we have
303          * limited amounts of stack available so we cannot use alloca().
304          */
305         if (obj != obj_rtld) {
306                 cache = calloc(obj->nchains, sizeof(SymCache));
307                 /* No need to check for NULL here */
308         } else
309                 cache = NULL;
310
311         relalim = (const Elf_Rela *)((caddr_t)obj->rela + obj->relasize);
312         for (rela = obj->rela; rela < relalim; rela++) {
313                 if (reloc_nonplt_object(obj, rela, cache, lockstate) < 0)
314                         goto done;
315         }
316         r = 0;
317 done:
318         if (cache != NULL)
319                 free(cache);
320         return (r);
321 }
322
323 static int
324 reloc_nonplt_object(Obj_Entry *obj, const Elf_Rela *rela, SymCache *cache,
325     RtldLockState *lockstate)
326 {
327         const Obj_Entry *defobj;
328         const Elf_Sym *def;
329         Elf_Addr *where;
330         Elf_Word *where32;
331         Elf_Word type;
332         Elf_Addr value;
333         Elf_Addr mask;
334
335         where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
336         where32 = (Elf_Word *)where;
337         defobj = NULL;
338         def = NULL;
339
340         type = ELF64_R_TYPE_ID(rela->r_info);
341         if (type == R_SPARC_NONE)
342                 return (0);
343
344         /* We do JMP_SLOTs below. */
345         if (type == R_SPARC_JMP_SLOT)
346                 return (0);
347
348         /* COPY relocs are also handled elsewhere. */
349         if (type == R_SPARC_COPY)
350                 return (0);
351
352         /* Ignore ADD and CALL relocations for dynamic TLS references. */
353         if (type == R_SPARC_TLS_GD_ADD || type == R_SPARC_TLS_GD_CALL ||
354             type == R_SPARC_TLS_LDM_ADD || type == R_SPARC_TLS_LDM_CALL ||
355             type == R_SPARC_TLS_LDO_ADD)
356                 return (0);
357
358         /*
359          * Note: R_SPARC_TLS_TPOFF64 must be the numerically largest
360          * relocation type.
361          */
362         if (type >= sizeof(reloc_target_bitmask) /
363             sizeof(*reloc_target_bitmask)) {
364                 _rtld_error("%s: Unsupported relocation type %d in non-PLT "
365                     "object\n", obj->path, type);
366                 return (-1);
367         }
368
369         value = rela->r_addend;
370
371         /*
372          * Handle relative relocs here, because we might not be able to access
373          * globals yet.
374          */
375         if (type == R_SPARC_RELATIVE) {
376                 /* XXXX -- apparently we ignore the preexisting value. */
377                 *where = (Elf_Addr)(obj->relocbase + value);
378                 return (0);
379         }
380
381         /*
382          * If we get here while relocating rtld itself, we will crash because
383          * a non-local variable is accessed.
384          */
385         if (RELOC_RESOLVE_SYMBOL(type)) {
386                 /* Find the symbol. */
387                 def = find_symdef(ELF_R_SYM(rela->r_info), obj, &defobj,
388                     false, cache, lockstate);
389                 if (def == NULL)
390                         return (-1);
391
392                 if (RELOC_USE_TLS_ID(type))
393                         value = (Elf_Addr)defobj->tlsindex;
394                 else if (RELOC_USE_TLS_DOFF(type))
395                         value += (Elf_Addr)def->st_value;
396                 else if (RELOC_USE_TLS_OFF(type)) {
397                         /*
398                          * We lazily allocate offsets for static TLS as we
399                          * see the first relocation that references the TLS
400                          * block.  This allows us to support (small amounts
401                          * of) static TLS in dynamically loaded modules.  If
402                          * we run out of space, we generate an error.
403                          */
404                         if (!defobj->tls_done &&
405                             !allocate_tls_offset((Obj_Entry*)defobj)) {
406                                 _rtld_error("%s: No space available for "
407                                     "static Thread Local Storage", obj->path);
408                                 return (-1);
409                         }
410                         value += (Elf_Addr)(def->st_value -
411                             defobj->tlsoffset);
412                 } else {
413                         /* Add in the symbol's absolute address. */
414                         value += (Elf_Addr)(def->st_value +
415                             defobj->relocbase);
416                 }
417         }
418
419         if (type == R_SPARC_OLO10)
420                 value = (value & 0x3ff) + ELF64_R_TYPE_DATA(rela->r_info);
421
422         if (type == R_SPARC_HIX22 || type == R_SPARC_TLS_LE_HIX22)
423                 value ^= 0xffffffffffffffff;
424
425         if (RELOC_PC_RELATIVE(type))
426                 value -= (Elf_Addr)where;
427
428         if (RELOC_BASE_RELATIVE(type)) {
429                 /*
430                  * Note that even though sparcs use `Elf_rela' exclusively
431                  * we still need the implicit memory addend in relocations
432                  * referring to GOT entries.  Undoubtedly, someone f*cked
433                  * this up in the distant past, and now we're stuck with
434                  * it in the name of compatibility for all eternity ...
435                  *
436                  * In any case, the implicit and explicit should be mutually
437                  * exclusive.  We provide a check for that here.
438                  */
439                 /* XXXX -- apparently we ignore the preexisting value */
440                 value += (Elf_Addr)(obj->relocbase);
441         }
442
443         mask = RELOC_VALUE_BITMASK(type);
444         value >>= RELOC_VALUE_RIGHTSHIFT(type);
445         value &= mask;
446
447         if (type == R_SPARC_LOX10 || type == R_SPARC_TLS_LE_LOX10)
448                 value |= 0x1c00;
449
450         if (RELOC_UNALIGNED(type)) {
451                 /* Handle unaligned relocations. */
452                 Elf_Addr tmp;
453                 char *ptr;
454                 int size;
455                 int i;
456
457                 size = RELOC_TARGET_SIZE(type) / 8;
458                 ptr = (char *)where;
459                 tmp = 0;
460
461                 /* Read it in one byte at a time. */
462                 for (i = 0; i < size; i++)
463                         tmp = (tmp << 8) | ptr[i];
464
465                 tmp &= ~mask;
466                 tmp |= value;
467
468                 /* Write it back out. */
469                 for (i = 0; i < size; i++)
470                         ptr[i] = ((tmp >> ((size - i - 1) * 8)) & 0xff);
471         } else if (RELOC_TARGET_SIZE(type) > 32) {
472                 *where &= ~mask;
473                 *where |= value;
474         } else {
475                 *where32 &= ~mask;
476                 *where32 |= value;
477         }
478
479         return (0);
480 }
481
482 int
483 reloc_plt(Obj_Entry *obj)
484 {
485 #if 0
486         const Obj_Entry *defobj;
487         const Elf_Rela *relalim;
488         const Elf_Rela *rela;
489         const Elf_Sym *def;
490         Elf_Addr *where;
491         Elf_Addr value;
492
493         relalim = (const Elf_Rela *)((char *)obj->pltrela + obj->pltrelasize);
494         for (rela = obj->pltrela; rela < relalim; rela++) {
495                 if (rela->r_addend == 0)
496                         continue;
497                 assert(ELF64_R_TYPE_ID(rela->r_info) == R_SPARC_JMP_SLOT);
498                 where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
499                 def = find_symdef(ELF_R_SYM(rela->r_info), obj, &defobj,
500                     true, NULL, lockstate);
501                 value = (Elf_Addr)(defobj->relocbase + def->st_value);
502                 *where = value;
503         }
504 #endif
505         return (0);
506 }
507
508 /*
509  * Instruction templates:
510  */
511 #define BAA     0x10400000      /*      ba,a    %xcc, 0 */
512 #define SETHI   0x03000000      /*      sethi   %hi(0), %g1 */
513 #define JMP     0x81c06000      /*      jmpl    %g1+%lo(0), %g0 */
514 #define NOP     0x01000000      /*      sethi   %hi(0), %g0 */
515 #define OR      0x82806000      /*      or      %g1, 0, %g1 */
516 #define XOR     0x82c06000      /*      xor     %g1, 0, %g1 */
517 #define MOV71   0x8283a000      /*      or      %o7, 0, %g1 */
518 #define MOV17   0x9c806000      /*      or      %g1, 0, %o7 */
519 #define CALL    0x40000000      /*      call    0 */
520 #define SLLX    0x8b407000      /*      sllx    %g1, 0, %g1 */
521 #define SETHIG5 0x0b000000      /*      sethi   %hi(0), %g5 */
522 #define ORG5    0x82804005      /*      or      %g1, %g5, %g1 */
523
524 /* %hi(v) with variable shift */
525 #define HIVAL(v, s)     (((v) >> (s)) &  0x003fffff)
526 #define LOVAL(v)        ((v) & 0x000003ff)
527
528 int
529 reloc_jmpslots(Obj_Entry *obj, RtldLockState *lockstate)
530 {
531         const Obj_Entry *defobj;
532         const Elf_Rela *relalim;
533         const Elf_Rela *rela;
534         const Elf_Sym *def;
535         Elf_Addr *where;
536         Elf_Addr target;
537
538         relalim = (const Elf_Rela *)((char *)obj->pltrela + obj->pltrelasize);
539         for (rela = obj->pltrela; rela < relalim; rela++) {
540                 assert(ELF64_R_TYPE_ID(rela->r_info) == R_SPARC_JMP_SLOT);
541                 where = (Elf_Addr *)(obj->relocbase + rela->r_offset);
542                 def = find_symdef(ELF_R_SYM(rela->r_info), obj, &defobj,
543                     true, NULL, lockstate);
544                 if (def == NULL)
545                         return -1;
546                 target = (Elf_Addr)(defobj->relocbase + def->st_value);
547                 reloc_jmpslot(where, target, defobj, obj, (Elf_Rel *)rela);
548         }
549         obj->jmpslots_done = true;
550         return (0);
551 }
552
553 Elf_Addr
554 reloc_jmpslot(Elf_Addr *wherep, Elf_Addr target, const Obj_Entry *obj,
555     const Obj_Entry *refobj, const Elf_Rel *rel)
556 {
557         const Elf_Rela *rela = (const Elf_Rela *)rel;
558         Elf_Addr offset;
559         Elf_Word *where;
560
561         if (rela - refobj->pltrela < 32764) {
562                 /*
563                  * At the PLT entry pointed at by `where', we now construct
564                  * a direct transfer to the now fully resolved function
565                  * address.
566                  *
567                  * A PLT entry is supposed to start by looking like this:
568                  *
569                  *      sethi   (. - .PLT0), %g1
570                  *      ba,a    %xcc, .PLT1
571                  *      nop
572                  *      nop
573                  *      nop
574                  *      nop
575                  *      nop
576                  *      nop
577                  *
578                  * When we replace these entries we start from the second
579                  * entry and do it in reverse order so the last thing we
580                  * do is replace the branch.  That allows us to change this
581                  * atomically.
582                  *
583                  * We now need to find out how far we need to jump.  We
584                  * have a choice of several different relocation techniques
585                  * which are increasingly expensive.
586                  */
587                 where = (Elf_Word *)wherep;
588                 offset = ((Elf_Addr)where) - target;
589                 if (offset <= (1L<<20) && offset >= -(1L<<20)) {
590                         /*
591                          * We're within 1MB -- we can use a direct branch
592                          * instruction.
593                          *
594                          * We can generate this pattern:
595                          *
596                          *      sethi   %hi(. - .PLT0), %g1
597                          *      ba,a    %xcc, addr
598                          *      nop
599                          *      nop
600                          *      nop
601                          *      nop
602                          *      nop
603                          *      nop
604                          *
605                          */
606                         where[1] = BAA | ((offset >> 2) &0x3fffff);
607                         flush(where, 4);
608                 } else if (target >= 0 && target < (1L<<32)) {
609                         /*
610                          * We're withing 32-bits of address zero.
611                          *
612                          * The resulting code in the jump slot is:
613                          *
614                          *      sethi   %hi(. - .PLT0), %g1
615                          *      sethi   %hi(addr), %g1
616                          *      jmp     %g1+%lo(addr)
617                          *      nop
618                          *      nop
619                          *      nop
620                          *      nop
621                          *      nop
622                          *
623                          */
624                         where[2] = JMP   | LOVAL(target);
625                         flush(where, 8);
626                         where[1] = SETHI | HIVAL(target, 10);
627                         flush(where, 4);
628                 } else if (target <= 0 && target > -(1L<<32)) {
629                         /*
630                          * We're withing 32-bits of address -1.
631                          *
632                          * The resulting code in the jump slot is:
633                          *
634                          *      sethi   %hi(. - .PLT0), %g1
635                          *      sethi   %hix(addr), %g1
636                          *      xor     %g1, %lox(addr), %g1
637                          *      jmp     %g1
638                          *      nop
639                          *      nop
640                          *      nop
641                          *      nop
642                          *
643                          */
644                         where[3] = JMP;
645                         flush(where, 12);
646                         where[2] = XOR | ((~target) & 0x00001fff);
647                         flush(where, 8);
648                         where[1] = SETHI | HIVAL(~target, 10);
649                         flush(where, 4);
650                 } else if (offset <= (1L<<32) && offset >= -((1L<<32) - 4)) {
651                         /*
652                          * We're withing 32-bits -- we can use a direct call
653                          * insn
654                          *
655                          * The resulting code in the jump slot is:
656                          *
657                          *      sethi   %hi(. - .PLT0), %g1
658                          *      mov     %o7, %g1
659                          *      call    (.+offset)
660                          *       mov    %g1, %o7
661                          *      nop
662                          *      nop
663                          *      nop
664                          *      nop
665                          *
666                          */
667                         where[3] = MOV17;
668                         flush(where, 12);
669                         where[2] = CALL   | ((offset >> 4) & 0x3fffffff);
670                         flush(where, 8);
671                         where[1] = MOV71;
672                         flush(where, 4);
673                 } else if (offset >= 0 && offset < (1L<<44)) {
674                         /*
675                          * We're withing 44 bits.  We can generate this
676                          * pattern:
677                          *
678                          * The resulting code in the jump slot is:
679                          *
680                          *      sethi   %hi(. - .PLT0), %g1
681                          *      sethi   %h44(addr), %g1
682                          *      or      %g1, %m44(addr), %g1
683                          *      sllx    %g1, 12, %g1
684                          *      jmp     %g1+%l44(addr)
685                          *      nop
686                          *      nop
687                          *      nop
688                          *
689                          */
690                         where[4] = JMP   | LOVAL(offset);
691                         flush(where, 16);
692                         where[3] = SLLX  | 12;
693                         flush(where, 12);
694                         where[2] = OR    | (((offset) >> 12) & 0x00001fff);
695                         flush(where, 8);
696                         where[1] = SETHI | HIVAL(offset, 22);
697                         flush(where, 4);
698                 } else if (offset < 0 && offset > -(1L<<44)) {
699                         /*
700                          * We're withing 44 bits.  We can generate this
701                          * pattern:
702                          *
703                          * The resulting code in the jump slot is:
704                          *
705                          *      sethi   %hi(. - .PLT0), %g1
706                          *      sethi   %h44(-addr), %g1
707                          *      xor     %g1, %m44(-addr), %g1
708                          *      sllx    %g1, 12, %g1
709                          *      jmp     %g1+%l44(addr)
710                          *      nop
711                          *      nop
712                          *      nop
713                          *
714                          */
715                         where[4] = JMP   | LOVAL(offset);
716                         flush(where, 16);
717                         where[3] = SLLX  | 12;
718                         flush(where, 12);
719                         where[2] = XOR   | (((~offset) >> 12) & 0x00001fff);
720                         flush(where, 8);
721                         where[1] = SETHI | HIVAL(~offset, 22);
722                         flush(where, 4);
723                 } else {
724                         /*
725                          * We need to load all 64-bits
726                          *
727                          * The resulting code in the jump slot is:
728                          *
729                          *      sethi   %hi(. - .PLT0), %g1
730                          *      sethi   %hh(addr), %g1
731                          *      sethi   %lm(addr), %g5
732                          *      or      %g1, %hm(addr), %g1
733                          *      sllx    %g1, 32, %g1
734                          *      or      %g1, %g5, %g1
735                          *      jmp     %g1+%lo(addr)
736                          *      nop
737                          *
738                          */
739                         where[6] = JMP     | LOVAL(target);
740                         flush(where, 24);
741                         where[5] = ORG5;
742                         flush(where, 20);
743                         where[4] = SLLX    | 32;
744                         flush(where, 16);
745                         where[3] = OR      | LOVAL((target) >> 32);
746                         flush(where, 12);
747                         where[2] = SETHIG5 | HIVAL(target, 10);
748                         flush(where, 8);
749                         where[1] = SETHI   | HIVAL(target, 42);
750                         flush(where, 4);
751                 }
752         } else {
753                 /*
754                  * This is a high PLT slot; the relocation offset specifies a
755                  * pointer that needs to be frobbed; no actual code needs to
756                  * be modified.  The pointer to be calculated needs the addend
757                  * added and the reference object relocation base subtraced.
758                  */
759                 *wherep = target + rela->r_addend -
760                     (Elf_Addr)refobj->relocbase;
761         }
762
763         return (target);
764 }
765
766 /*
767  * Install rtld function call into this PLT slot.
768  */
769 #define SAVE            0x9de3bf50
770 #define SETHI_l0        0x21000000
771 #define SETHI_l1        0x23000000
772 #define OR_l0_l0        0xa0142000
773 #define SLLX_l0_32_l0   0xa12c3020
774 #define OR_l0_l1_l0     0xa0140011
775 #define JMPL_l0_o1      0x93c42000
776 #define MOV_g1_o0       0x90100001
777
778 void
779 init_pltgot(Obj_Entry *obj)
780 {
781         Elf_Word *entry;
782
783         if (obj->pltgot != NULL) {
784                 entry = (Elf_Word *)obj->pltgot;
785                 install_plt(&entry[0], (Elf_Addr)_rtld_bind_start_0);
786                 install_plt(&entry[8], (Elf_Addr)_rtld_bind_start_1);
787                 obj->pltgot[8] = (Elf_Addr)obj;
788         }
789 }
790
791 static void
792 install_plt(Elf_Word *pltgot, Elf_Addr proc)
793 {
794         pltgot[0] = SAVE;
795         flush(pltgot, 0);
796         pltgot[1] = SETHI_l0 | HIVAL(proc, 42);
797         flush(pltgot, 4);
798         pltgot[2] = SETHI_l1 | HIVAL(proc, 10);
799         flush(pltgot, 8);
800         pltgot[3] = OR_l0_l0 | LOVAL((proc) >> 32);
801         flush(pltgot, 12);
802         pltgot[4] = SLLX_l0_32_l0;
803         flush(pltgot, 16);
804         pltgot[5] = OR_l0_l1_l0;
805         flush(pltgot, 20);
806         pltgot[6] = JMPL_l0_o1 | LOVAL(proc);
807         flush(pltgot, 24);
808         pltgot[7] = MOV_g1_o0;
809         flush(pltgot, 28);
810 }
811
812 void
813 allocate_initial_tls(Obj_Entry *objs)
814 {
815         Elf_Addr* tpval;
816
817         /*
818          * Fix the size of the static TLS block by using the maximum offset
819          * allocated so far and adding a bit for dynamic modules to use.
820          */
821         tls_static_space = tls_last_offset + RTLD_STATIC_TLS_EXTRA;
822         tpval = allocate_tls(objs, NULL, 3 * sizeof(Elf_Addr),
823              sizeof(Elf_Addr));
824         __asm __volatile("mov %0, %%g7" : : "r" (tpval));
825 }
826
827 void *__tls_get_addr(tls_index *ti)
828 {
829         register Elf_Addr** tp __asm__("%g7");
830
831         return (tls_get_addr_common(tp, ti->ti_module, ti->ti_offset));
832 }