1 /* $NetBSD: mdreloc.c,v 1.27 2010/08/06 16:33:19 joerg Exp $ */
5 __RCSID("$NetBSD: mdreloc.c,v 1.27 2010/08/06 16:33:19 joerg Exp $");
10 __RCSID("$NetBSD: mdreloc.c,v 1.27 2010/08/06 16:33:19 joerg Exp $");
13 #include <sys/types.h>
18 void _rtld_bind_start(void);
19 void _rtld_relocate_nonplt_self(Elf_Dyn
*, Elf_Addr
);
20 caddr_t
_rtld_bind(const Obj_Entry
*, Elf_Word
);
21 static inline int _rtld_relocate_plt_object(const Obj_Entry
*,
22 const Elf_Rela
*, Elf_Addr
*);
25 _rtld_setup_pltgot(const Obj_Entry
*obj
)
27 obj
->pltgot
[1] = (Elf_Addr
) obj
;
28 obj
->pltgot
[2] = (Elf_Addr
) &_rtld_bind_start
;
32 _rtld_relocate_nonplt_self(Elf_Dyn
*dynp
, Elf_Addr relocbase
)
34 const Elf_Rela
*rela
= 0, *relalim
;
38 for (; dynp
->d_tag
!= DT_NULL
; dynp
++) {
39 switch (dynp
->d_tag
) {
41 rela
= (const Elf_Rela
*)(relocbase
+ dynp
->d_un
.d_ptr
);
44 relasz
= dynp
->d_un
.d_val
;
48 relalim
= (const Elf_Rela
*)((const uint8_t *)rela
+ relasz
);
49 for (; rela
< relalim
; rela
++) {
50 where
= (Elf_Addr
*)(relocbase
+ rela
->r_offset
);
51 *where
= (Elf_Addr
)(relocbase
+ rela
->r_addend
);
56 _rtld_relocate_nonplt_objects(Obj_Entry
*obj
)
60 for (rela
= obj
->rela
; rela
< obj
->relalim
; rela
++) {
63 const Obj_Entry
*defobj
;
67 where
= (Elf_Addr
*)(obj
->relocbase
+ rela
->r_offset
);
68 symnum
= ELF_R_SYM(rela
->r_info
);
70 switch (ELF_R_TYPE(rela
->r_info
)) {
74 case R_TYPE(32): /* word32 S + A */
75 case R_TYPE(GLOB_DAT
): /* word32 S + A */
76 def
= _rtld_find_symdef(symnum
, obj
, &defobj
, false);
80 tmp
= (Elf_Addr
)(defobj
->relocbase
+ def
->st_value
+
85 rdbg(("32/GLOB_DAT %s in %s --> %p in %s",
86 obj
->strtab
+ obj
->symtab
[symnum
].st_name
,
87 obj
->path
, (void *)*where
, defobj
->path
));
90 case R_TYPE(RELATIVE
): /* word32 B + A */
91 tmp
= (Elf_Addr
)(obj
->relocbase
+ rela
->r_addend
);
94 rdbg(("RELATIVE in %s --> %p", obj
->path
,
100 * These are deferred until all other relocations have
101 * been done. All we do here is make sure that the
102 * COPY relocation is not in a shared library. They
103 * are allowed only in executable files.
105 if (obj
->isdynamic
) {
107 "%s: Unexpected R_COPY relocation in shared library",
111 rdbg(("COPY (avoid in main)"));
115 rdbg(("sym = %lu, type = %lu, offset = %p, "
116 "addend = %p, contents = %p, symbol = %s",
117 symnum
, (u_long
)ELF_R_TYPE(rela
->r_info
),
118 (void *)rela
->r_offset
, (void *)rela
->r_addend
,
120 obj
->strtab
+ obj
->symtab
[symnum
].st_name
));
121 _rtld_error("%s: Unsupported relocation type %ld "
122 "in non-PLT relocations",
123 obj
->path
, (u_long
) ELF_R_TYPE(rela
->r_info
));
131 _rtld_relocate_plt_lazy(const Obj_Entry
*obj
)
133 const Elf_Rela
*rela
;
138 for (rela
= obj
->pltrela
; rela
< obj
->pltrelalim
; rela
++) {
139 Elf_Addr
*where
= (Elf_Addr
*)(obj
->relocbase
+ rela
->r_offset
);
141 assert(ELF_R_TYPE(rela
->r_info
) == R_TYPE(JMP_SLOT
));
143 /* Just relocate the GOT slots pointing into the PLT */
144 *where
+= (Elf_Addr
)obj
->relocbase
;
145 rdbg(("fixup !main in %s --> %p", obj
->path
, (void *)*where
));
152 _rtld_relocate_plt_object(const Obj_Entry
*obj
, const Elf_Rela
*rela
, Elf_Addr
*tp
)
154 Elf_Addr
*where
= (Elf_Addr
*)(obj
->relocbase
+ rela
->r_offset
);
157 const Obj_Entry
*defobj
;
158 unsigned long info
= rela
->r_info
;
160 assert(ELF_R_TYPE(info
) == R_TYPE(JMP_SLOT
));
162 def
= _rtld_find_plt_symdef(ELF_R_SYM(info
), obj
, &defobj
, tp
!= NULL
);
163 if (__predict_false(def
== NULL
))
165 if (__predict_false(def
== &_rtld_sym_zero
))
168 new_value
= (Elf_Addr
)(defobj
->relocbase
+ def
->st_value
+
170 rdbg(("bind now/fixup in %s --> old=%p new=%p",
171 defobj
->strtab
+ def
->st_name
, (void *)*where
, (void *)new_value
));
172 if (*where
!= new_value
)
176 *tp
= new_value
- rela
->r_addend
;
182 _rtld_bind(const Obj_Entry
*obj
, Elf_Word reloff
)
184 const Elf_Rela
*rela
= (const Elf_Rela
*)((const uint8_t *)obj
->pltrela
+ reloff
);
188 result
= 0; /* XXX gcc */
190 err
= _rtld_relocate_plt_object(obj
, rela
, &result
);
194 return (caddr_t
)result
;
198 _rtld_relocate_plt_objects(const Obj_Entry
*obj
)
200 const Elf_Rela
*rela
;
202 for (rela
= obj
->pltrela
; rela
< obj
->pltrelalim
; rela
++)
203 if (_rtld_relocate_plt_object(obj
, rela
, NULL
) < 0)