Update.
[glibc.git] / elf / dl-reloc.c
blob280623153a43d93bffe148b7f6f4e40a2244de99
1 /* Relocate a shared object and resolve its references to other loaded objects.
2 Copyright (C) 1995,96,97,98,99,2000 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. */
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/types.h>
27 #include "dynamic-link.h"
30 void
31 _dl_relocate_object (struct link_map *l, struct r_scope_elem *scope[],
32 int lazy, int consider_profiling)
34 if (l->l_relocated)
35 return;
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 && l->l_info[DT_BIND_NOW])
40 lazy = 0;
42 if (__builtin_expect (_dl_debug_reloc, 0))
43 _dl_debug_message (1, "\nrelocation processing: ",
44 l->l_name[0] ? l->l_name : _dl_argv[0],
45 lazy ? " (lazy)\n" : "\n", NULL);
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. */
51 const ElfW(Phdr) *ph;
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 (__mprotect (mapstart, mapend - mapstart,
61 PROT_READ|PROT_WRITE) < 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)) \
79 : _dl_lookup_symbol (strtab + (*ref)->st_name, l, (ref), scope, \
80 (flags))) \
81 : l)
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)) \
87 : _dl_lookup_symbol (strtab + (*ref)->st_name, l, (ref), scope, \
88 (flags))) \
89 : l->l_addr)
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. */
98 l->l_reloc_result =
99 (ElfW(Addr) *) calloc (sizeof (ElfW(Addr)),
100 l->l_info[DT_PLTRELSZ]->d_un.d_val);
101 if (l->l_reloc_result == NULL)
102 _dl_sysdep_fatal (_dl_argv[0] ?: "<program name unknown>",
103 "cannot allocate memory for profiling", NULL);
107 /* Mark the object so we know this work has been done. */
108 l->l_relocated = 1;
110 /* DT_TEXTREL is now in level 2 and might phase out at some time.
111 But we rewrite the DT_FLAGS entry to make testing easier and
112 therefore it will be available at all time. */
113 if (__builtin_expect (l->l_info[DT_TEXTREL] != NULL, 0))
115 /* Undo the protection change we made before relocating. */
116 const ElfW(Phdr) *ph;
117 for (ph = l->l_phdr; ph < &l->l_phdr[l->l_phnum]; ++ph)
118 if (ph->p_type == PT_LOAD && (ph->p_flags & PF_W) == 0)
120 caddr_t mapstart = ((caddr_t) l->l_addr +
121 (ph->p_vaddr & ~(_dl_pagesize - 1)));
122 caddr_t mapend = ((caddr_t) l->l_addr +
123 ((ph->p_vaddr + ph->p_memsz + _dl_pagesize - 1)
124 & ~(_dl_pagesize - 1)));
125 extern unsigned char _dl_pf_to_prot[8];
126 int prot;
128 if ((PF_R | PF_W | PF_X) == 7
129 && (PROT_READ | PROT_WRITE | PROT_EXEC) == 7)
130 prot = _dl_pf_to_prot[ph->p_flags & (PF_R | PF_X)];
131 else
133 prot = 0;
134 if (ph->p_flags & PF_R)
135 prot |= PROT_READ;
136 if (ph->p_flags & PF_X)
137 prot |= PROT_EXEC;
140 if (__mprotect (mapstart, mapend - mapstart, prot) < 0)
141 _dl_signal_error (errno, l->l_name,
142 N_("can't restore segment prot after reloc"));
144 #ifdef CLEAR_CACHE
145 CLEAR_CACHE (mapstart, mapend);
146 #endif
151 #include "../stdio-common/_itoa.h"
152 #define DIGIT(b) _itoa_lower_digits[(b) & 0xf];
154 void
155 internal_function
156 _dl_reloc_bad_type (struct link_map *map, uint_fast8_t type, int plt)
158 extern const char _itoa_lower_digits[];
159 if (plt)
161 /* XXX We cannot translate the message. */
162 static char msg[] = "unexpected PLT reloc type 0x??";
163 msg[sizeof msg - 3] = DIGIT(type >> 4);
164 msg[sizeof msg - 2] = DIGIT(type);
165 _dl_signal_error (0, map->l_name, msg);
167 else
169 /* XXX We cannot translate the message. */
170 static char msg[] = "unexpected reloc type 0x??";
171 msg[sizeof msg - 3] = DIGIT(type >> 4);
172 msg[sizeof msg - 2] = DIGIT(type);
173 _dl_signal_error (0, map->l_name, msg);