module.c 8.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *  Copyright (C) 2001 Rusty Russell.
 *  Copyright (C) 2003, 2004 Ralf Baechle (ralf@linux-mips.org)
 *  Copyright (C) 2005 Thiemo Seufer
 */

#undef DEBUG

23
#include <linux/extable.h>
24 25
#include <linux/moduleloader.h>
#include <linux/elf.h>
26
#include <linux/mm.h>
27
#include <linux/numa.h>
28 29 30 31 32
#include <linux/vmalloc.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include <linux/string.h>
#include <linux/kernel.h>
L
Linus Torvalds 已提交
33
#include <linux/spinlock.h>
34 35
#include <linux/jump_label.h>

36
#include <asm/pgtable.h>	/* MODULE_START */
L
Linus Torvalds 已提交
37

38 39 40 41 42 43
struct mips_hi16 {
	struct mips_hi16 *next;
	Elf_Addr *addr;
	Elf_Addr value;
};

L
Linus Torvalds 已提交
44 45 46
static LIST_HEAD(dbe_list);
static DEFINE_SPINLOCK(dbe_lock);

47
#ifdef MODULE_START
48 49
void *module_alloc(unsigned long size)
{
50
	return __vmalloc_node_range(size, 1, MODULE_START, MODULE_END,
51
				GFP_KERNEL, PAGE_KERNEL, 0, NUMA_NO_NODE,
52
				__builtin_return_address(0));
53
}
54
#endif
55

56
int apply_r_mips_none(struct module *me, u32 *location, Elf_Addr v)
57 58 59 60 61 62 63 64 65 66 67 68 69 70
{
	return 0;
}

static int apply_r_mips_32_rel(struct module *me, u32 *location, Elf_Addr v)
{
	*location += v;

	return 0;
}

static int apply_r_mips_26_rel(struct module *me, u32 *location, Elf_Addr v)
{
	if (v % 4) {
71 72
		pr_err("module %s: dangerous R_MIPS_26 REL relocation\n",
		       me->name);
73 74 75 76
		return -ENOEXEC;
	}

	if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
77
		pr_err("module %s: relocation overflow\n",
78 79 80 81 82
		       me->name);
		return -ENOEXEC;
	}

	*location = (*location & ~0x03ffffff) |
R
Ralf Baechle 已提交
83
		    ((*location + (v >> 2)) & 0x03ffffff);
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102

	return 0;
}

static int apply_r_mips_hi16_rel(struct module *me, u32 *location, Elf_Addr v)
{
	struct mips_hi16 *n;

	/*
	 * We cannot relocate this one now because we don't know the value of
	 * the carry we need to add.  Save the information, and let LO16 do the
	 * actual relocation.
	 */
	n = kmalloc(sizeof *n, GFP_KERNEL);
	if (!n)
		return -ENOMEM;

	n->addr = (Elf_Addr *)location;
	n->value = v;
103 104
	n->next = me->arch.r_mips_hi16_list;
	me->arch.r_mips_hi16_list = n;
105 106 107 108

	return 0;
}

109 110 111 112 113 114 115 116 117 118 119
static void free_relocation_chain(struct mips_hi16 *l)
{
	struct mips_hi16 *next;

	while (l) {
		next = l->next;
		kfree(l);
		l = next;
	}
}

120 121 122
static int apply_r_mips_lo16_rel(struct module *me, u32 *location, Elf_Addr v)
{
	unsigned long insnlo = *location;
123
	struct mips_hi16 *l;
124 125
	Elf_Addr val, vallo;

R
Ralf Baechle 已提交
126
	/* Sign extend the addend we extract from the lo insn.	*/
127 128
	vallo = ((insnlo & 0xffff) ^ 0x8000) - 0x8000;

129 130
	if (me->arch.r_mips_hi16_list != NULL) {
		l = me->arch.r_mips_hi16_list;
131
		while (l != NULL) {
132
			struct mips_hi16 *next;
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
			unsigned long insn;

			/*
			 * The value for the HI16 had best be the same.
			 */
			if (v != l->value)
				goto out_danger;

			/*
			 * Do the HI16 relocation.  Note that we actually don't
			 * need to know anything about the LO16 itself, except
			 * where to find the low 16 bits of the addend needed
			 * by the LO16.
			 */
			insn = *l->addr;
			val = ((insn & 0xffff) << 16) + vallo;
			val += v;

			/*
			 * Account for the sign extension that will happen in
			 * the low bits.
			 */
			val = ((val >> 16) + ((val & 0x8000) != 0)) & 0xffff;

			insn = (insn & ~0xffff) | val;
			*l->addr = insn;

			next = l->next;
			kfree(l);
			l = next;
		}

165
		me->arch.r_mips_hi16_list = NULL;
166 167 168
	}

	/*
R
Ralf Baechle 已提交
169
	 * Ok, we're done with the HI16 relocs.	 Now deal with the LO16.
170 171 172 173 174 175 176 177
	 */
	val = v + vallo;
	insnlo = (insnlo & ~0xffff) | (val & 0xffff);
	*location = insnlo;

	return 0;

out_danger:
178 179
	free_relocation_chain(l);
	me->arch.r_mips_hi16_list = NULL;
180

181
	pr_err("module %s: dangerous R_MIPS_LO16 REL relocation\n", me->name);
182 183 184 185

	return -ENOEXEC;
}

186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
static int apply_r_mips_pc_rel(struct module *me, u32 *location, Elf_Addr v,
			       unsigned bits)
{
	unsigned long mask = GENMASK(bits - 1, 0);
	unsigned long se_bits;
	long offset;

	if (v % 4) {
		pr_err("module %s: dangerous R_MIPS_PC%u REL relocation\n",
		       me->name, bits);
		return -ENOEXEC;
	}

	/* retrieve & sign extend implicit addend */
	offset = *location & mask;
	offset |= (offset & BIT(bits - 1)) ? ~mask : 0;

	offset += ((long)v - (long)location) >> 2;

	/* check the sign bit onwards are identical - ie. we didn't overflow */
	se_bits = (offset & BIT(bits - 1)) ? ~0ul : 0;
	if ((offset & ~mask) != (se_bits & ~mask)) {
		pr_err("module %s: relocation overflow\n", me->name);
		return -ENOEXEC;
	}

	*location = (*location & ~mask) | (offset & mask);

	return 0;
}

static int apply_r_mips_pc16_rel(struct module *me, u32 *location, Elf_Addr v)
{
	return apply_r_mips_pc_rel(me, location, v, 16);
}

static int apply_r_mips_pc21_rel(struct module *me, u32 *location, Elf_Addr v)
{
	return apply_r_mips_pc_rel(me, location, v, 21);
}

static int apply_r_mips_pc26_rel(struct module *me, u32 *location, Elf_Addr v)
{
	return apply_r_mips_pc_rel(me, location, v, 26);
}

232 233 234 235 236 237
static int (*reloc_handlers_rel[]) (struct module *me, u32 *location,
				Elf_Addr v) = {
	[R_MIPS_NONE]		= apply_r_mips_none,
	[R_MIPS_32]		= apply_r_mips_32_rel,
	[R_MIPS_26]		= apply_r_mips_26_rel,
	[R_MIPS_HI16]		= apply_r_mips_hi16_rel,
238 239 240 241
	[R_MIPS_LO16]		= apply_r_mips_lo16_rel,
	[R_MIPS_PC16]		= apply_r_mips_pc16_rel,
	[R_MIPS_PC21_S2]	= apply_r_mips_pc21_rel,
	[R_MIPS_PC26_S2]	= apply_r_mips_pc26_rel,
242 243 244 245 246 247 248
};

int apply_relocate(Elf_Shdr *sechdrs, const char *strtab,
		   unsigned int symindex, unsigned int relsec,
		   struct module *me)
{
	Elf_Mips_Rel *rel = (void *) sechdrs[relsec].sh_addr;
249
	int (*handler)(struct module *me, u32 *location, Elf_Addr v);
250 251
	Elf_Sym *sym;
	u32 *location;
252
	unsigned int i, type;
253 254 255 256 257 258
	Elf_Addr v;
	int res;

	pr_debug("Applying relocate section %u to %u\n", relsec,
	       sechdrs[relsec].sh_info);

259
	me->arch.r_mips_hi16_list = NULL;
260 261 262 263 264 265 266
	for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) {
		/* This is where to make the change */
		location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
			+ rel[i].r_offset;
		/* This is the symbol it is referring to */
		sym = (Elf_Sym *)sechdrs[symindex].sh_addr
			+ ELF_MIPS_R_SYM(rel[i]);
267
		if (sym->st_value >= -MAX_ERRNO) {
268 269 270
			/* Ignore unresolved weak symbol */
			if (ELF_ST_BIND(sym->st_info) == STB_WEAK)
				continue;
271 272
			pr_warn("%s: Unknown symbol %s\n",
				me->name, strtab + sym->st_name);
273 274 275
			return -ENOENT;
		}

276 277 278 279 280 281
		type = ELF_MIPS_R_TYPE(rel[i]);

		if (type < ARRAY_SIZE(reloc_handlers_rel))
			handler = reloc_handlers_rel[type];
		else
			handler = NULL;
282

283 284 285 286 287 288 289 290
		if (!handler) {
			pr_err("%s: Unknown relocation type %u\n",
			       me->name, type);
			return -EINVAL;
		}

		v = sym->st_value;
		res = handler(me, location, v);
291 292 293 294
		if (res)
			return res;
	}

295
	/*
R
Ralf Baechle 已提交
296
	 * Normally the hi16 list should be deallocated at this point.	A
297 298 299 300 301 302 303 304 305 306 307
	 * malformed binary however could contain a series of R_MIPS_HI16
	 * relocations not followed by a R_MIPS_LO16 relocation.  In that
	 * case, free up the list and return an error.
	 */
	if (me->arch.r_mips_hi16_list) {
		free_relocation_chain(me->arch.r_mips_hi16_list);
		me->arch.r_mips_hi16_list = NULL;

		return -ENOEXEC;
	}

308 309 310
	return 0;
}

L
Linus Torvalds 已提交
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
/* Given an address, look for it in the module exception tables. */
const struct exception_table_entry *search_module_dbetables(unsigned long addr)
{
	unsigned long flags;
	const struct exception_table_entry *e = NULL;
	struct mod_arch_specific *dbe;

	spin_lock_irqsave(&dbe_lock, flags);
	list_for_each_entry(dbe, &dbe_list, dbe_list) {
		e = search_extable(dbe->dbe_start, dbe->dbe_end - 1, addr);
		if (e)
			break;
	}
	spin_unlock_irqrestore(&dbe_lock, flags);

	/* Now, if we found one, we are running inside it now, hence
R
Ralf Baechle 已提交
327
	   we cannot unload the module, hence no refcnt needed. */
L
Linus Torvalds 已提交
328 329 330
	return e;
}

331
/* Put in dbe list if necessary. */
L
Linus Torvalds 已提交
332 333 334 335 336 337 338
int module_finalize(const Elf_Ehdr *hdr,
		    const Elf_Shdr *sechdrs,
		    struct module *me)
{
	const Elf_Shdr *s;
	char *secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;

339 340 341
	/* Make jump label nops. */
	jump_label_apply_nops(me);

L
Linus Torvalds 已提交
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
	INIT_LIST_HEAD(&me->arch.dbe_list);
	for (s = sechdrs; s < sechdrs + hdr->e_shnum; s++) {
		if (strcmp("__dbe_table", secstrings + s->sh_name) != 0)
			continue;
		me->arch.dbe_start = (void *)s->sh_addr;
		me->arch.dbe_end = (void *)s->sh_addr + s->sh_size;
		spin_lock_irq(&dbe_lock);
		list_add(&me->arch.dbe_list, &dbe_list);
		spin_unlock_irq(&dbe_lock);
	}
	return 0;
}

void module_arch_cleanup(struct module *mod)
{
	spin_lock_irq(&dbe_lock);
	list_del(&mod->arch.dbe_list);
	spin_unlock_irq(&dbe_lock);
}