1 /* Relocate a shared object and resolve its references to other loaded objects.
2 Copyright (C) 1995,96,97,98,99,2000,2001 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 Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 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 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
26 #include <sys/types.h>
27 #include "dynamic-link.h"
31 _dl_relocate_object (struct link_map
*l
, struct r_scope_elem
*scope
[],
32 int lazy
, int consider_profiling
)
37 /* If DT_BIND_NOW is set relocate all references in this object. We
38 do not do this if we are profiling, of course. */
39 if (!consider_profiling
40 && __builtin_expect (l
->l_info
[DT_BIND_NOW
] != NULL
, 0))
43 if (__builtin_expect (_dl_debug_mask
& DL_DEBUG_RELOC
, 0))
44 _dl_printf ("\nrelocation processing: %s%s\n",
45 l
->l_name
[0] ? l
->l_name
: _dl_argv
[0], lazy
? " (lazy)" : "");
47 if (__builtin_expect (l
->l_info
[DT_TEXTREL
] != NULL
, 0))
49 /* Bletch. We must make read-only segments writable
50 long enough to relocate them. */
52 for (ph
= l
->l_phdr
; ph
< &l
->l_phdr
[l
->l_phnum
]; ++ph
)
53 if (ph
->p_type
== PT_LOAD
&& (ph
->p_flags
& PF_W
) == 0)
55 caddr_t mapstart
= ((caddr_t
) l
->l_addr
+
56 (ph
->p_vaddr
& ~(_dl_pagesize
- 1)));
57 caddr_t mapend
= ((caddr_t
) l
->l_addr
+
58 ((ph
->p_vaddr
+ ph
->p_memsz
+ _dl_pagesize
- 1)
59 & ~(_dl_pagesize
- 1)));
60 if (__builtin_expect (__mprotect (mapstart
, mapend
- mapstart
,
61 PROT_READ
|PROT_WRITE
), 0) < 0)
62 _dl_signal_error (errno
, l
->l_name
, N_("\
63 cannot make segment writable for relocation"));
68 /* Do the actual relocation of the object's GOT and other data. */
70 /* String table object symbols. */
71 const char *strtab
= (const void *) D_PTR (l
, l_info
[DT_STRTAB
]);
73 /* This macro is used as a callback from the ELF_DYNAMIC_RELOCATE code. */
74 #define RESOLVE_MAP(ref, version, flags) \
75 (ELFW(ST_BIND) ((*ref)->st_info) != STB_LOCAL \
76 ? ((version) != NULL && (version)->hash != 0 \
77 ? _dl_lookup_versioned_symbol (strtab + (*ref)->st_name, l, (ref), \
78 scope, (version), (flags), 0) \
79 : _dl_lookup_symbol (strtab + (*ref)->st_name, l, (ref), scope, \
82 #define RESOLVE(ref, version, flags) \
83 (ELFW(ST_BIND) ((*ref)->st_info) != STB_LOCAL \
84 ? ((version) != NULL && (version)->hash != 0 \
85 ? _dl_lookup_versioned_symbol (strtab + (*ref)->st_name, l, (ref), \
86 scope, (version), (flags), 0) \
87 : _dl_lookup_symbol (strtab + (*ref)->st_name, l, (ref), scope, \
91 #include "dynamic-link.h"
92 ELF_DYNAMIC_RELOCATE (l
, lazy
, consider_profiling
);
94 if (__builtin_expect (_dl_profile
!= NULL
, 0))
96 /* Allocate the array which will contain the already found
97 relocations. If the shared object lacks a PLT (for example
98 if it only contains lead function) the l_info[DT_PLTRELSZ]
100 if (l
->l_info
[DT_PLTRELSZ
] == NULL
)
101 _dl_fatal_printf ("%s: profiler found no PLTREL in object %s\n",
102 _dl_argv
[0] ?: "<program name unknown>",
106 (ElfW(Addr
) *) calloc (sizeof (ElfW(Addr
)),
107 l
->l_info
[DT_PLTRELSZ
]->d_un
.d_val
);
108 if (l
->l_reloc_result
== NULL
)
110 %s: profiler out of memory shadowing PLTREL of %s\n",
111 _dl_argv
[0] ?: "<program name unknown>",
116 /* Mark the object so we know this work has been done. */
119 /* DT_TEXTREL is now in level 2 and might phase out at some time.
120 But we rewrite the DT_FLAGS entry to make testing easier and
121 therefore it will be available at all time. */
122 if (__builtin_expect (l
->l_info
[DT_TEXTREL
] != NULL
, 0))
124 /* Undo the protection change we made before relocating. */
125 const ElfW(Phdr
) *ph
;
126 for (ph
= l
->l_phdr
; ph
< &l
->l_phdr
[l
->l_phnum
]; ++ph
)
127 if (ph
->p_type
== PT_LOAD
&& (ph
->p_flags
& PF_W
) == 0)
129 caddr_t mapstart
= ((caddr_t
) l
->l_addr
+
130 (ph
->p_vaddr
& ~(_dl_pagesize
- 1)));
131 caddr_t mapend
= ((caddr_t
) l
->l_addr
+
132 ((ph
->p_vaddr
+ ph
->p_memsz
+ _dl_pagesize
- 1)
133 & ~(_dl_pagesize
- 1)));
134 extern unsigned char _dl_pf_to_prot
[8];
137 if ((PF_R
| PF_W
| PF_X
) == 7
138 && (PROT_READ
| PROT_WRITE
| PROT_EXEC
) == 7)
139 prot
= _dl_pf_to_prot
[ph
->p_flags
& (PF_R
| PF_X
)];
143 if (ph
->p_flags
& PF_R
)
145 if (ph
->p_flags
& PF_X
)
149 if (__builtin_expect (__mprotect (mapstart
, mapend
- mapstart
,
151 _dl_signal_error (errno
, l
->l_name
,
152 N_("can't restore segment prot after reloc"));
155 CLEAR_CACHE (mapstart
, mapend
);
161 #include "../stdio-common/_itoa.h"
162 #define DIGIT(b) _itoa_lower_digits[(b) & 0xf];
166 _dl_reloc_bad_type (struct link_map
*map
, uint_fast8_t type
, int plt
)
168 extern const char _itoa_lower_digits
[];
171 /* XXX We cannot translate the message. */
172 static char msg
[] = "unexpected PLT reloc type 0x??";
173 msg
[sizeof msg
- 3] = DIGIT(type
>> 4);
174 msg
[sizeof msg
- 2] = DIGIT(type
);
175 _dl_signal_error (0, map
->l_name
, msg
);
179 /* XXX We cannot translate the message. */
180 static char msg
[] = "unexpected reloc type 0x??";
181 msg
[sizeof msg
- 3] = DIGIT(type
>> 4);
182 msg
[sizeof msg
- 2] = DIGIT(type
);
183 _dl_signal_error (0, map
->l_name
, msg
);