Home | History | Annotate | Line # | Download | only in i386
mdreloc.c revision 1.31
      1 /*	$NetBSD: mdreloc.c,v 1.31 2010/01/14 11:58:32 skrll Exp $	*/
      2 
      3 #include <sys/cdefs.h>
      4 #ifndef lint
      5 __RCSID("$NetBSD: mdreloc.c,v 1.31 2010/01/14 11:58:32 skrll Exp $");
      6 #endif /* not lint */
      7 
      8 #include <sys/types.h>
      9 #include <sys/stat.h>
     10 
     11 #include "debug.h"
     12 #include "rtld.h"
     13 
     14 void _rtld_bind_start(void);
     15 void _rtld_relocate_nonplt_self(Elf_Dyn *, Elf_Addr);
     16 caddr_t _rtld_bind(const Obj_Entry *, Elf_Word);
     17 
     18 void
     19 _rtld_setup_pltgot(const Obj_Entry *obj)
     20 {
     21 	obj->pltgot[1] = (Elf_Addr) obj;
     22 	obj->pltgot[2] = (Elf_Addr) &_rtld_bind_start;
     23 }
     24 
     25 void
     26 _rtld_relocate_nonplt_self(Elf_Dyn *dynp, Elf_Addr relocbase)
     27 {
     28 	const Elf_Rel *rel = 0, *rellim;
     29 	Elf_Addr relsz = 0;
     30 	Elf_Addr *where;
     31 
     32 	for (; dynp->d_tag != DT_NULL; dynp++) {
     33 		switch (dynp->d_tag) {
     34 		case DT_REL:
     35 			rel = (const Elf_Rel *)(relocbase + dynp->d_un.d_ptr);
     36 			break;
     37 		case DT_RELSZ:
     38 			relsz = dynp->d_un.d_val;
     39 			break;
     40 		}
     41 	}
     42 	if (rel == 0 || relsz == 0)
     43 		return;
     44 	rellim = (const Elf_Rel *)((const uint8_t *)rel + relsz);
     45 	for (; rel < rellim; rel++) {
     46 		where = (Elf_Addr *)(relocbase + rel->r_offset);
     47 		*where += (Elf_Addr)relocbase;
     48 	}
     49 }
     50 
     51 int
     52 _rtld_relocate_nonplt_objects(const Obj_Entry *obj)
     53 {
     54 	const Elf_Rel *rel;
     55 	Elf_Addr target = 0;
     56 
     57 	for (rel = obj->rel; rel < obj->rellim; rel++) {
     58 		Elf_Addr        *where;
     59 		const Elf_Sym   *def;
     60 		const Obj_Entry *defobj;
     61 		Elf_Addr         tmp;
     62 		unsigned long	 symnum;
     63 
     64 		where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
     65 		symnum = ELF_R_SYM(rel->r_info);
     66 
     67 		switch (ELF_R_TYPE(rel->r_info)) {
     68 		case R_TYPE(NONE):
     69 			break;
     70 
     71 #if 1 /* XXX should not occur */
     72 		case R_TYPE(PC32):
     73 			def = _rtld_find_symdef(symnum, obj, &defobj, false);
     74 			if (def == NULL)
     75 				return -1;
     76 			target = (Elf_Addr)(defobj->relocbase + def->st_value);
     77 
     78 			*where += target - (Elf_Addr)where;
     79 			rdbg(("PC32 %s in %s --> %p in %s",
     80 			    obj->strtab + obj->symtab[symnum].st_name,
     81 			    obj->path, (void *)*where, defobj->path));
     82 			break;
     83 
     84 		case R_TYPE(GOT32):
     85 #endif
     86 		case R_TYPE(32):
     87 		case R_TYPE(GLOB_DAT):
     88 			def = _rtld_find_symdef(symnum, obj, &defobj, false);
     89 			if (def == NULL)
     90 				return -1;
     91 			target = (Elf_Addr)(defobj->relocbase + def->st_value);
     92 
     93 			tmp = target + *where;
     94 			if (*where != tmp)
     95 				*where = tmp;
     96 			rdbg(("32/GLOB_DAT %s in %s --> %p in %s",
     97 			    obj->strtab + obj->symtab[symnum].st_name,
     98 			    obj->path, (void *)*where, defobj->path));
     99 			break;
    100 
    101 		case R_TYPE(RELATIVE):
    102 			*where += (Elf_Addr)obj->relocbase;
    103 			rdbg(("RELATIVE in %s --> %p", obj->path,
    104 			    (void *)*where));
    105 			break;
    106 
    107 		case R_TYPE(COPY):
    108 			/*
    109 			 * These are deferred until all other relocations have
    110 			 * been done.  All we do here is make sure that the
    111 			 * COPY relocation is not in a shared library.  They
    112 			 * are allowed only in executable files.
    113 			 */
    114 			if (obj->isdynamic) {
    115 				_rtld_error(
    116 			"%s: Unexpected R_COPY relocation in shared library",
    117 				    obj->path);
    118 				return -1;
    119 			}
    120 			rdbg(("COPY (avoid in main)"));
    121 			break;
    122 
    123 		default:
    124 			rdbg(("sym = %lu, type = %lu, offset = %p, "
    125 			    "contents = %p, symbol = %s",
    126 			    symnum, (u_long)ELF_R_TYPE(rel->r_info),
    127 			    (void *)rel->r_offset, (void *)*where,
    128 			    obj->strtab + obj->symtab[symnum].st_name));
    129 			_rtld_error("%s: Unsupported relocation type %ld "
    130 			    "in non-PLT relocations",
    131 			    obj->path, (u_long) ELF_R_TYPE(rel->r_info));
    132 			return -1;
    133 		}
    134 	}
    135 	return 0;
    136 }
    137 
    138 int
    139 _rtld_relocate_plt_lazy(const Obj_Entry *obj)
    140 {
    141 	const Elf_Rel *rel;
    142 
    143 	if (!obj->relocbase)
    144 		return 0;
    145 
    146 	for (rel = obj->pltrel; rel < obj->pltrellim; rel++) {
    147 		Elf_Addr *where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
    148 
    149 		assert(ELF_R_TYPE(rel->r_info) == R_TYPE(JMP_SLOT));
    150 
    151 		/* Just relocate the GOT slots pointing into the PLT */
    152 		*where += (Elf_Addr)obj->relocbase;
    153 		rdbg(("fixup !main in %s --> %p", obj->path, (void *)*where));
    154 	}
    155 
    156 	return 0;
    157 }
    158 
    159 static inline int
    160 _rtld_relocate_plt_object(const Obj_Entry *obj, const Elf_Rel *rel,
    161 	Elf_Addr *tp)
    162 {
    163 	Elf_Addr *where = (Elf_Addr *)(obj->relocbase + rel->r_offset);
    164 	Elf_Addr target;
    165 	const Elf_Sym *def;
    166 	const Obj_Entry *defobj;
    167 	unsigned long info = rel->r_info;
    168 
    169 	assert(ELF_R_TYPE(info) == R_TYPE(JMP_SLOT));
    170 
    171 	def = _rtld_find_plt_symdef(ELF_R_SYM(info), obj, &defobj, tp != NULL);
    172 	if (__predict_false(def == NULL))
    173 		return -1;
    174 	if (__predict_false(def == &_rtld_sym_zero))
    175 		return 0;
    176 
    177 	target = (Elf_Addr)(defobj->relocbase + def->st_value);
    178 	rdbg(("bind now/fixup in %s --> old=%p new=%p",
    179 	    defobj->strtab + def->st_name, (void *)*where,
    180 	    (void *)target));
    181 	if (*where != target)
    182 		*where = target;
    183 	if (tp)
    184 		*tp = target;
    185 	return 0;
    186 }
    187 
    188 caddr_t
    189 _rtld_bind(const Obj_Entry *obj, Elf_Word reloff)
    190 {
    191 	const Elf_Rel *rel = (const Elf_Rel *)((const uint8_t *)obj->pltrel
    192 	    + reloff);
    193 	Elf_Addr new_value;
    194 	int err;
    195 
    196 	new_value = 0;	/* XXX gcc */
    197 
    198 	err = _rtld_relocate_plt_object(obj, rel, &new_value);
    199 	if (err)
    200 		_rtld_die();
    201 
    202 	return (caddr_t)new_value;
    203 }
    204 
    205 int
    206 _rtld_relocate_plt_objects(const Obj_Entry *obj)
    207 {
    208 	const Elf_Rel *rel;
    209 	int err = 0;
    210 
    211 	for (rel = obj->pltrel; rel < obj->pltrellim; rel++) {
    212 		err = _rtld_relocate_plt_object(obj, rel, NULL);
    213 		if (err)
    214 			break;
    215 	}
    216 	return err;
    217 }
    218