Update.
[platform/upstream/glibc.git] / elf / dl-reloc.c
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.
4
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.
9
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.
14
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.  */
19
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"
28
29
30 void
31 _dl_relocate_object (struct link_map *l, struct r_scope_elem *scope[],
32                      int lazy, int consider_profiling)
33 {
34   if (l->l_relocated)
35     return;
36
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;
41
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);
46
47   if (__builtin_expect (l->l_info[DT_TEXTREL] != NULL, 0))
48     {
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)
54           {
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"));
64           }
65     }
66
67   {
68     /* Do the actual relocation of the object's GOT and other data.  */
69
70     /* String table object symbols.  */
71     const char *strtab = (const void *) D_PTR (l, l_info[DT_STRTAB]);
72
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,       \
80                              (flags), 0))                                     \
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), 0)          \
87         : _dl_lookup_symbol (strtab + (*ref)->st_name, l, (ref), scope,       \
88                              (flags), 0))                                     \
89      : l->l_addr)
90
91 #include "dynamic-link.h"
92     ELF_DYNAMIC_RELOCATE (l, lazy, consider_profiling);
93
94     if (__builtin_expect (_dl_profile != NULL, 0))
95       {
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]
99            will be NULL.  */
100         if (l->l_info[DT_PLTRELSZ] == NULL)
101           _dl_sysdep_fatal (_dl_argv[0] ?: "<program name unknown>",
102                             ": profiler found no PLTREL in object ",
103                             l->l_name, "\n", NULL);
104
105         l->l_reloc_result =
106           (ElfW(Addr) *) calloc (sizeof (ElfW(Addr)),
107                                  l->l_info[DT_PLTRELSZ]->d_un.d_val);
108         if (l->l_reloc_result == NULL)
109           _dl_sysdep_fatal (_dl_argv[0] ?: "<program name unknown>",
110                             ": profiler out of memory shadowing PLTREL of ",
111                             l->l_name, "\n", NULL);
112       }
113   }
114
115   /* Mark the object so we know this work has been done.  */
116   l->l_relocated = 1;
117
118   /* DT_TEXTREL is now in level 2 and might phase out at some time.
119      But we rewrite the DT_FLAGS entry to make testing easier and
120      therefore it will be available at all time.  */
121   if (__builtin_expect (l->l_info[DT_TEXTREL] != NULL, 0))
122     {
123       /* Undo the protection change we made before relocating.  */
124       const ElfW(Phdr) *ph;
125       for (ph = l->l_phdr; ph < &l->l_phdr[l->l_phnum]; ++ph)
126         if (ph->p_type == PT_LOAD && (ph->p_flags & PF_W) == 0)
127           {
128             caddr_t mapstart = ((caddr_t) l->l_addr +
129                                 (ph->p_vaddr & ~(_dl_pagesize - 1)));
130             caddr_t mapend = ((caddr_t) l->l_addr +
131                               ((ph->p_vaddr + ph->p_memsz + _dl_pagesize - 1)
132                                & ~(_dl_pagesize - 1)));
133             extern unsigned char _dl_pf_to_prot[8];
134             int prot;
135
136             if ((PF_R | PF_W | PF_X) == 7
137                 && (PROT_READ | PROT_WRITE | PROT_EXEC) == 7)
138               prot = _dl_pf_to_prot[ph->p_flags & (PF_R | PF_X)];
139             else
140               {
141                 prot = 0;
142                 if (ph->p_flags & PF_R)
143                   prot |= PROT_READ;
144                 if (ph->p_flags & PF_X)
145                   prot |= PROT_EXEC;
146               }
147
148             if (__mprotect (mapstart, mapend - mapstart, prot) < 0)
149               _dl_signal_error (errno, l->l_name,
150                                 N_("can't restore segment prot after reloc"));
151
152 #ifdef CLEAR_CACHE
153             CLEAR_CACHE (mapstart, mapend);
154 #endif
155           }
156     }
157 }
158
159 #include "../stdio-common/_itoa.h"
160 #define DIGIT(b)        _itoa_lower_digits[(b) & 0xf];
161
162 void
163 internal_function
164 _dl_reloc_bad_type (struct link_map *map, uint_fast8_t type, int plt)
165 {
166   extern const char _itoa_lower_digits[];
167   if (plt)
168     {
169       /* XXX We cannot translate the message.  */
170       static char msg[] = "unexpected PLT 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);
174     }
175   else
176     {
177       /* XXX We cannot translate the message.  */
178       static char msg[] = "unexpected reloc type 0x??";
179       msg[sizeof msg - 3] = DIGIT(type >> 4);
180       msg[sizeof msg - 2] = DIGIT(type);
181       _dl_signal_error (0, map->l_name, msg);
182     }
183 }