Update.
[glibc.git] / elf / dl-reloc.c
blob1c0cbb67c40773d8f4bc55cfb008643cb93a7b3f
1 /* Relocate a shared object and resolve its references to other loaded objects.
2 Copyright (C) 1995, 1996, 1997, 1998 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 <stdlib.h>
22 #include <unistd.h>
23 #include <elf/ldsodefs.h>
24 #include <sys/mman.h>
25 #include <sys/types.h>
26 #include "dynamic-link.h"
29 void
30 _dl_relocate_object (struct link_map *l, struct link_map *scope[], int lazy,
31 int consider_profiling)
33 if (l->l_relocated)
34 return;
36 if (_dl_debug_reloc)
37 _dl_debug_message (1, "\nrelocation processing: ",
38 l->l_name[0] ? l->l_name : _dl_argv[0], "\n", NULL);
40 if (l->l_info[DT_TEXTREL])
42 /* Bletch. We must make read-only segments writable
43 long enough to relocate them. */
44 const ElfW(Phdr) *ph;
45 for (ph = l->l_phdr; ph < &l->l_phdr[l->l_phnum]; ++ph)
46 if (ph->p_type == PT_LOAD && (ph->p_flags & PF_W) == 0)
48 caddr_t mapstart = ((caddr_t) l->l_addr +
49 (ph->p_vaddr & ~(_dl_pagesize - 1)));
50 caddr_t mapend = ((caddr_t) l->l_addr +
51 ((ph->p_vaddr + ph->p_memsz + _dl_pagesize - 1)
52 & ~(_dl_pagesize - 1)));
53 if (__mprotect (mapstart, mapend - mapstart,
54 PROT_READ|PROT_WRITE) < 0)
55 _dl_signal_error (errno, l->l_name,
56 "cannot make segment writable for relocation");
61 /* Do the actual relocation of the object's GOT and other data. */
63 const char *strtab /* String table object symbols. */
64 = ((void *) l->l_addr + l->l_info[DT_STRTAB]->d_un.d_ptr);
66 /* This macro is used as a callback from the ELF_DYNAMIC_RELOCATE code. */
67 #define RESOLVE(ref, version, flags) \
68 ((version) != NULL && (version)->hash != 0 \
69 ? _dl_lookup_versioned_symbol (strtab + (*ref)->st_name, (ref), scope, \
70 l->l_name, (version), (flags)) \
71 : _dl_lookup_symbol (strtab + (*ref)->st_name, (ref), scope, \
72 l->l_name, (flags)))
74 #include "dynamic-link.h"
75 ELF_DYNAMIC_RELOCATE (l, lazy, consider_profiling);
77 if (_dl_profile != NULL)
79 /* Allocate the array which will contain the already found
80 relocations. */
81 l->l_reloc_result =
82 (ElfW(Addr) *) calloc (sizeof (ElfW(Addr)),
83 l->l_info[DT_PLTRELSZ]->d_un.d_val);
84 if (l->l_reloc_result == NULL)
85 _dl_sysdep_fatal (_dl_argv[0] ?: "<program name unknown>",
86 "cannot allocate memory for profiling", NULL);
90 /* Mark the object so we know this work has been done. */
91 l->l_relocated = 1;
93 if (l->l_info[DT_TEXTREL])
95 /* Undo the protection change we made before relocating. */
96 const ElfW(Phdr) *ph;
97 for (ph = l->l_phdr; ph < &l->l_phdr[l->l_phnum]; ++ph)
98 if (ph->p_type == PT_LOAD && (ph->p_flags & PF_W) == 0)
100 caddr_t mapstart = ((caddr_t) l->l_addr +
101 (ph->p_vaddr & ~(_dl_pagesize - 1)));
102 caddr_t mapend = ((caddr_t) l->l_addr +
103 ((ph->p_vaddr + ph->p_memsz + _dl_pagesize - 1)
104 & ~(_dl_pagesize - 1)));
105 int prot = 0;
106 if (ph->p_flags & PF_R)
107 prot |= PROT_READ;
108 if (ph->p_flags & PF_X)
109 prot |= PROT_EXEC;
110 if (__mprotect (mapstart, mapend - mapstart, prot) < 0)
111 _dl_signal_error (errno, l->l_name,
112 "can't restore segment prot after reloc");