Add dl-brk.c, dl-sbrk.c, and sys/personality.h.
[glibc.git] / elf / dl-reloc.c
blob37d1ee019f75cc39a3d9cc46e7d7a963d65a919c
1 /* Relocate a shared object and resolve its references to other loaded objects.
2 Copyright (C) 1995,96,97,98,99,2000,2001,2002 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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.
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.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <libintl.h>
22 #include <stdlib.h>
23 #include <unistd.h>
24 #include <ldsodefs.h>
25 #include <sys/mman.h>
26 #include <sys/param.h>
27 #include <sys/types.h>
28 #include "dynamic-link.h"
30 /* Statistics function. */
31 #ifdef SHARED
32 # define bump_num_cache_relocations() ++GL(dl_num_cache_relocations)
33 #else
34 # define bump_num_cache_relocations() ((void) 0)
35 #endif
38 void
39 _dl_relocate_object (struct link_map *l, struct r_scope_elem *scope[],
40 int lazy, int consider_profiling)
42 struct textrels
44 caddr_t start;
45 size_t len;
46 int prot;
47 struct textrels *next;
48 } *textrels = NULL;
49 /* Initialize it to make the compiler happy. */
50 const char *errstring = NULL;
52 if (l->l_relocated)
53 return;
55 /* If DT_BIND_NOW is set relocate all references in this object. We
56 do not do this if we are profiling, of course. */
57 if (!consider_profiling
58 && __builtin_expect (l->l_info[DT_BIND_NOW] != NULL, 0))
59 lazy = 0;
61 if (__builtin_expect (GL(dl_debug_mask) & DL_DEBUG_RELOC, 0))
62 INTUSE(_dl_debug_printf) ("\nrelocation processing: %s%s\n",
63 l->l_name[0] ? l->l_name : rtld_progname,
64 lazy ? " (lazy)" : "");
66 /* DT_TEXTREL is now in level 2 and might phase out at some time.
67 But we rewrite the DT_FLAGS entry to a DT_TEXTREL entry to make
68 testing easier and therefore it will be available at all time. */
69 if (__builtin_expect (l->l_info[DT_TEXTREL] != NULL, 0))
71 /* Bletch. We must make read-only segments writable
72 long enough to relocate them. */
73 const ElfW(Phdr) *ph;
74 for (ph = l->l_phdr; ph < &l->l_phdr[l->l_phnum]; ++ph)
75 if (ph->p_type == PT_LOAD && (ph->p_flags & PF_W) == 0)
77 struct textrels *newp;
79 newp = (struct textrels *) alloca (sizeof (*newp));
80 newp->len = (((ph->p_vaddr + ph->p_memsz + GL(dl_pagesize) - 1)
81 & ~(GL(dl_pagesize) - 1))
82 - (ph->p_vaddr & ~(GL(dl_pagesize) - 1)));
83 newp->start = ((ph->p_vaddr & ~(GL(dl_pagesize) - 1))
84 + (caddr_t) l->l_addr);
86 if (__mprotect (newp->start, newp->len, PROT_READ|PROT_WRITE) < 0)
88 errstring = N_("cannot make segment writable for relocation");
89 call_error:
90 INTUSE(_dl_signal_error) (errno, l->l_name, NULL, errstring);
93 #if (PF_R | PF_W | PF_X) == 7 && (PROT_READ | PROT_WRITE | PROT_EXEC) == 7
94 newp->prot = (PF_TO_PROT
95 >> ((ph->p_flags & (PF_R | PF_W | PF_X)) * 4)) & 0xf;
96 #else
97 newp->prot = 0;
98 if (ph->p_flags & PF_R)
99 newp->prot |= PROT_READ;
100 if (ph->p_flags & PF_W)
101 newp->prot |= PROT_WRITE;
102 if (ph->p_flags & PF_X)
103 newp->prot |= PROT_EXEC;
104 #endif
105 newp->next = textrels;
106 textrels = newp;
111 /* Do the actual relocation of the object's GOT and other data. */
113 /* String table object symbols. */
114 const char *strtab = (const void *) D_PTR (l, l_info[DT_STRTAB]);
116 /* This macro is used as a callback from the ELF_DYNAMIC_RELOCATE code. */
117 #define RESOLVE_MAP(ref, version, r_type) \
118 (ELFW(ST_BIND) ((*ref)->st_info) != STB_LOCAL \
119 ? ((__builtin_expect ((*ref) == l->l_lookup_cache.sym, 0) \
120 && elf_machine_type_class (r_type) == l->l_lookup_cache.type_class) \
121 ? (bump_num_cache_relocations (), \
122 (*ref) = l->l_lookup_cache.ret, \
123 l->l_lookup_cache.value) \
124 : ({ lookup_t _lr; \
125 int _tc = elf_machine_type_class (r_type); \
126 l->l_lookup_cache.type_class = _tc; \
127 l->l_lookup_cache.sym = (*ref); \
128 _lr = ((version) != NULL && (version)->hash != 0 \
129 ? INTUSE(_dl_lookup_versioned_symbol) (strtab \
130 + (*ref)->st_name, \
131 l, (ref), scope, \
132 (version), _tc, 0) \
133 : INTUSE(_dl_lookup_symbol) (strtab + (*ref)->st_name, l, \
134 (ref), scope, _tc, \
135 DL_LOOKUP_ADD_DEPENDENCY)); \
136 l->l_lookup_cache.ret = (*ref); \
137 l->l_lookup_cache.value = _lr; })) \
138 : l)
139 #define RESOLVE(ref, version, r_type) \
140 (ELFW(ST_BIND) ((*ref)->st_info) != STB_LOCAL \
141 ? ((__builtin_expect ((*ref) == l->l_lookup_cache.sym, 0) \
142 && elf_machine_type_class (r_type) == l->l_lookup_cache.type_class) \
143 ? (bump_num_cache_relocations (), \
144 (*ref) = l->l_lookup_cache.ret, \
145 l->l_lookup_cache.value) \
146 : ({ lookup_t _lr; \
147 int _tc = elf_machine_type_class (r_type); \
148 l->l_lookup_cache.type_class = _tc; \
149 l->l_lookup_cache.sym = (*ref); \
150 _lr = ((version) != NULL && (version)->hash != 0 \
151 ? INTUSE(_dl_lookup_versioned_symbol) (strtab \
152 + (*ref)->st_name, \
153 l, (ref), scope, \
154 (version), _tc, 0) \
155 : INTUSE(_dl_lookup_symbol) (strtab + (*ref)->st_name, l, \
156 (ref), scope, _tc, \
157 DL_LOOKUP_ADD_DEPENDENCY)); \
158 l->l_lookup_cache.ret = (*ref); \
159 l->l_lookup_cache.value = _lr; })) \
160 : l->l_addr)
162 #include "dynamic-link.h"
164 ELF_DYNAMIC_RELOCATE (l, lazy, consider_profiling);
166 if (__builtin_expect (consider_profiling, 0))
168 /* Allocate the array which will contain the already found
169 relocations. If the shared object lacks a PLT (for example
170 if it only contains lead function) the l_info[DT_PLTRELSZ]
171 will be NULL. */
172 if (l->l_info[DT_PLTRELSZ] == NULL)
174 errstring = N_("%s: profiler found no PLTREL in object %s\n");
175 fatal:
176 _dl_fatal_printf (errstring,
177 rtld_progname ?: "<program name unknown>",
178 l->l_name);
181 l->l_reloc_result =
182 (ElfW(Addr) *) calloc (sizeof (ElfW(Addr)),
183 l->l_info[DT_PLTRELSZ]->d_un.d_val);
184 if (l->l_reloc_result == NULL)
186 errstring = N_("\
187 %s: profiler out of memory shadowing PLTREL of %s\n");
188 goto fatal;
193 /* Mark the object so we know this work has been done. */
194 l->l_relocated = 1;
196 /* Undo the segment protection changes. */
197 while (__builtin_expect (textrels != NULL, 0))
199 if (__mprotect (textrels->start, textrels->len, textrels->prot) < 0)
201 errstring = N_("cannot restore segment prot after reloc");
202 goto call_error;
205 textrels = textrels->next;
208 INTDEF (_dl_relocate_object)
211 void
212 internal_function
213 _dl_reloc_bad_type (struct link_map *map, unsigned int type, int plt)
215 extern const char INTUSE(_itoa_lower_digits)[] attribute_hidden;
216 #define DIGIT(b) INTUSE(_itoa_lower_digits)[(b) & 0xf];
218 /* XXX We cannot translate these messages. */
219 static const char msg[2][32] = { "unexpected reloc type 0x",
220 "unexpected PLT reloc type 0x" };
221 char msgbuf[sizeof (msg[0])];
222 char *cp;
224 cp = __stpcpy (msgbuf, msg[plt]);
225 *cp++ = DIGIT (type >> 4);
226 *cp++ = DIGIT (type);
227 *cp = '\0';
229 INTUSE(_dl_signal_error) (0, map->l_name, NULL, msgbuf);