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
26 #include <sys/param.h>
27 #include <sys/types.h>
28 #include "dynamic-link.h"
30 /* Statistics function. */
32 # define bump_num_cache_relocations() ++GL(dl_num_cache_relocations)
34 # define bump_num_cache_relocations() ((void) 0)
39 _dl_relocate_object (struct link_map
*l
, struct r_scope_elem
*scope
[],
40 int lazy
, int consider_profiling
)
47 struct textrels
*next
;
49 /* Initialize it to make the compiler happy. */
50 const char *errstring
= NULL
;
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))
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. */
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");
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;
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
;
105 newp
->next
= textrels
;
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) \
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 \
133 : INTUSE(_dl_lookup_symbol) (strtab + (*ref)->st_name, l, \
135 DL_LOOKUP_ADD_DEPENDENCY)); \
136 l->l_lookup_cache.ret = (*ref); \
137 l->l_lookup_cache.value = _lr; })) \
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) \
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 \
155 : INTUSE(_dl_lookup_symbol) (strtab + (*ref)->st_name, l, \
157 DL_LOOKUP_ADD_DEPENDENCY)); \
158 l->l_lookup_cache.ret = (*ref); \
159 l->l_lookup_cache.value = _lr; })) \
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]
172 if (l
->l_info
[DT_PLTRELSZ
] == NULL
)
174 errstring
= N_("%s: profiler found no PLTREL in object %s\n");
176 _dl_fatal_printf (errstring
,
177 rtld_progname
?: "<program name unknown>",
182 (ElfW(Addr
) *) calloc (sizeof (ElfW(Addr
)),
183 l
->l_info
[DT_PLTRELSZ
]->d_un
.d_val
);
184 if (l
->l_reloc_result
== NULL
)
187 %s: profiler out of memory shadowing PLTREL of %s\n");
193 /* Mark the object so we know this work has been done. */
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");
205 textrels
= textrels
->next
;
208 INTDEF (_dl_relocate_object
)
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])];
224 cp
= __stpcpy (msgbuf
, msg
[plt
]);
225 *cp
++ = DIGIT (type
>> 4);
226 *cp
++ = DIGIT (type
);
229 INTUSE(_dl_signal_error
) (0, map
->l_name
, NULL
, msgbuf
);