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. */
23 #include <elf/ldsodefs.h>
25 #include <sys/types.h>
26 #include "dynamic-link.h"
30 _dl_relocate_object (struct link_map
*l
, struct r_scope_elem
*scope
[],
31 int lazy
, int consider_profiling
)
36 /* If DT_BIND_NOW is set relocate all references in this object. We
37 do not do this if we are profiling, of course. */
38 if (!consider_profiling
&& l
->l_info
[DT_BIND_NOW
])
42 _dl_debug_message (1, "\nrelocation processing: ",
43 l
->l_name
[0] ? l
->l_name
: _dl_argv
[0],
44 lazy
? " (lazy)\n" : "\n", NULL
);
46 if (l
->l_info
[DT_TEXTREL
])
48 /* Bletch. We must make read-only segments writable
49 long enough to relocate them. */
51 for (ph
= l
->l_phdr
; ph
< &l
->l_phdr
[l
->l_phnum
]; ++ph
)
52 if (ph
->p_type
== PT_LOAD
&& (ph
->p_flags
& PF_W
) == 0)
54 caddr_t mapstart
= ((caddr_t
) l
->l_addr
+
55 (ph
->p_vaddr
& ~(_dl_pagesize
- 1)));
56 caddr_t mapend
= ((caddr_t
) l
->l_addr
+
57 ((ph
->p_vaddr
+ ph
->p_memsz
+ _dl_pagesize
- 1)
58 & ~(_dl_pagesize
- 1)));
59 if (__mprotect (mapstart
, mapend
- mapstart
,
60 PROT_READ
|PROT_WRITE
) < 0)
61 _dl_signal_error (errno
, l
->l_name
,
62 "cannot make segment writable for relocation");
67 /* Do the actual relocation of the object's GOT and other data. */
69 const char *strtab
/* String table object symbols. */
70 = ((void *) l
->l_addr
+ l
->l_info
[DT_STRTAB
]->d_un
.d_ptr
);
72 /* This macro is used as a callback from the ELF_DYNAMIC_RELOCATE code. */
73 #define RESOLVE(ref, version, flags) \
74 ((version) != NULL && (version)->hash != 0 \
75 ? _dl_lookup_versioned_symbol (strtab + (*ref)->st_name, (ref), scope, \
76 l->l_name, (version), (flags)) \
77 : _dl_lookup_symbol (strtab + (*ref)->st_name, (ref), scope, \
80 #include "dynamic-link.h"
81 ELF_DYNAMIC_RELOCATE (l
, lazy
, consider_profiling
);
83 if (_dl_profile
!= NULL
)
85 /* Allocate the array which will contain the already found
88 (ElfW(Addr
) *) calloc (sizeof (ElfW(Addr
)),
89 l
->l_info
[DT_PLTRELSZ
]->d_un
.d_val
);
90 if (l
->l_reloc_result
== NULL
)
91 _dl_sysdep_fatal (_dl_argv
[0] ?: "<program name unknown>",
92 "cannot allocate memory for profiling", NULL
);
96 /* Mark the object so we know this work has been done. */
99 if (l
->l_info
[DT_TEXTREL
])
101 /* Undo the protection change we made before relocating. */
102 const ElfW(Phdr
) *ph
;
103 for (ph
= l
->l_phdr
; ph
< &l
->l_phdr
[l
->l_phnum
]; ++ph
)
104 if (ph
->p_type
== PT_LOAD
&& (ph
->p_flags
& PF_W
) == 0)
106 caddr_t mapstart
= ((caddr_t
) l
->l_addr
+
107 (ph
->p_vaddr
& ~(_dl_pagesize
- 1)));
108 caddr_t mapend
= ((caddr_t
) l
->l_addr
+
109 ((ph
->p_vaddr
+ ph
->p_memsz
+ _dl_pagesize
- 1)
110 & ~(_dl_pagesize
- 1)));
112 if (ph
->p_flags
& PF_R
)
114 if (ph
->p_flags
& PF_X
)
116 if (__mprotect (mapstart
, mapend
- mapstart
, prot
) < 0)
117 _dl_signal_error (errno
, l
->l_name
,
118 "can't restore segment prot after reloc");