module.c 13.4 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0+
L
Linus Torvalds 已提交
2
/*
3
 *  Kernel module help for s390.
L
Linus Torvalds 已提交
4 5
 *
 *  S390 version
6
 *    Copyright IBM Corp. 2002, 2003
L
Linus Torvalds 已提交
7 8 9 10 11 12 13 14 15 16 17 18
 *    Author(s): Arnd Bergmann (arndb@de.ibm.com)
 *		 Martin Schwidefsky (schwidefsky@de.ibm.com)
 *
 *  based on i386 version
 *    Copyright (C) 2001 Rusty Russell.
 */
#include <linux/module.h>
#include <linux/elf.h>
#include <linux/vmalloc.h>
#include <linux/fs.h>
#include <linux/string.h>
#include <linux/kernel.h>
19
#include <linux/moduleloader.h>
H
Heiko Carstens 已提交
20
#include <linux/bug.h>
V
Vasily Gorbik 已提交
21
#include <asm/alternative.h>
L
Linus Torvalds 已提交
22 23 24 25 26 27 28 29 30

#if 0
#define DEBUGP printk
#else
#define DEBUGP(fmt , ...)
#endif

#define PLT_ENTRY_SIZE 20

31 32 33 34 35
void *module_alloc(unsigned long size)
{
	if (PAGE_ALIGN(size) > MODULES_LEN)
		return NULL;
	return __vmalloc_node_range(size, 1, MODULES_VADDR, MODULES_END,
36 37
				    GFP_KERNEL, PAGE_KERNEL_EXEC,
				    0, NUMA_NO_NODE,
38 39 40
				    __builtin_return_address(0));
}

41
void module_arch_freeing_init(struct module *mod)
L
Linus Torvalds 已提交
42
{
43 44 45 46
	if (is_livepatch_module(mod) &&
	    mod->state == MODULE_STATE_LIVE)
		return;

47 48
	vfree(mod->arch.syminfo);
	mod->arch.syminfo = NULL;
L
Linus Torvalds 已提交
49 50
}

51
static void check_rela(Elf_Rela *rela, struct module *me)
L
Linus Torvalds 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
{
	struct mod_arch_syminfo *info;

	info = me->arch.syminfo + ELF_R_SYM (rela->r_info);
	switch (ELF_R_TYPE (rela->r_info)) {
	case R_390_GOT12:	/* 12 bit GOT offset.  */
	case R_390_GOT16:	/* 16 bit GOT offset.  */
	case R_390_GOT20:	/* 20 bit GOT offset.  */
	case R_390_GOT32:	/* 32 bit GOT offset.  */
	case R_390_GOT64:	/* 64 bit GOT offset.  */
	case R_390_GOTENT:	/* 32 bit PC rel. to GOT entry shifted by 1. */
	case R_390_GOTPLT12:	/* 12 bit offset to jump slot.	*/
	case R_390_GOTPLT16:	/* 16 bit offset to jump slot.  */
	case R_390_GOTPLT20:	/* 20 bit offset to jump slot.  */
	case R_390_GOTPLT32:	/* 32 bit offset to jump slot.  */
	case R_390_GOTPLT64:	/* 64 bit offset to jump slot.	*/
	case R_390_GOTPLTENT:	/* 32 bit rel. offset to jump slot >> 1. */
		if (info->got_offset == -1UL) {
			info->got_offset = me->arch.got_size;
			me->arch.got_size += sizeof(void*);
		}
		break;
	case R_390_PLT16DBL:	/* 16 bit PC rel. PLT shifted by 1.  */
	case R_390_PLT32DBL:	/* 32 bit PC rel. PLT shifted by 1.  */
	case R_390_PLT32:	/* 32 bit PC relative PLT address.  */
	case R_390_PLT64:	/* 64 bit PC relative PLT address.  */
	case R_390_PLTOFF16:	/* 16 bit offset from GOT to PLT. */
	case R_390_PLTOFF32:	/* 32 bit offset from GOT to PLT. */
	case R_390_PLTOFF64:	/* 16 bit offset from GOT to PLT. */
		if (info->plt_offset == -1UL) {
			info->plt_offset = me->arch.plt_size;
			me->arch.plt_size += PLT_ENTRY_SIZE;
		}
		break;
	case R_390_COPY:
	case R_390_GLOB_DAT:
	case R_390_JMP_SLOT:
	case R_390_RELATIVE:
		/* Only needed if we want to support loading of 
		   modules linked with -shared. */
		break;
	}
}

/*
 * Account for GOT and PLT relocations. We can't add sections for
 * got and plt but we can increase the core module size.
 */
100 101
int module_frob_arch_sections(Elf_Ehdr *hdr, Elf_Shdr *sechdrs,
			      char *secstrings, struct module *me)
L
Linus Torvalds 已提交
102 103 104 105 106 107 108 109
{
	Elf_Shdr *symtab;
	Elf_Sym *symbols;
	Elf_Rela *rela;
	char *strings;
	int nrela, i, j;

	/* Find symbol table and string table. */
H
Heiko Carstens 已提交
110
	symtab = NULL;
L
Linus Torvalds 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
	for (i = 0; i < hdr->e_shnum; i++)
		switch (sechdrs[i].sh_type) {
		case SHT_SYMTAB:
			symtab = sechdrs + i;
			break;
		}
	if (!symtab) {
		printk(KERN_ERR "module %s: no symbol table\n", me->name);
		return -ENOEXEC;
	}

	/* Allocate one syminfo structure per symbol. */
	me->arch.nsyms = symtab->sh_size / sizeof(Elf_Sym);
	me->arch.syminfo = vmalloc(me->arch.nsyms *
				   sizeof(struct mod_arch_syminfo));
	if (!me->arch.syminfo)
		return -ENOMEM;
	symbols = (void *) hdr + symtab->sh_offset;
	strings = (void *) hdr + sechdrs[symtab->sh_link].sh_offset;
	for (i = 0; i < me->arch.nsyms; i++) {
		if (symbols[i].st_shndx == SHN_UNDEF &&
		    strcmp(strings + symbols[i].st_name,
			   "_GLOBAL_OFFSET_TABLE_") == 0)
			/* "Define" it as absolute. */
			symbols[i].st_shndx = SHN_ABS;
		me->arch.syminfo[i].got_offset = -1UL;
		me->arch.syminfo[i].plt_offset = -1UL;
		me->arch.syminfo[i].got_initialized = 0;
		me->arch.syminfo[i].plt_initialized = 0;
	}

	/* Search for got/plt relocations. */
	me->arch.got_size = me->arch.plt_size = 0;
	for (i = 0; i < hdr->e_shnum; i++) {
		if (sechdrs[i].sh_type != SHT_RELA)
			continue;
		nrela = sechdrs[i].sh_size / sizeof(Elf_Rela);
		rela = (void *) hdr + sechdrs[i].sh_offset;
		for (j = 0; j < nrela; j++)
			check_rela(rela + j, me);
	}

	/* Increase core size by size of got & plt and set start
	   offsets for got and plt. */
155 156 157 158 159
	me->core_layout.size = ALIGN(me->core_layout.size, 4);
	me->arch.got_offset = me->core_layout.size;
	me->core_layout.size += me->arch.got_size;
	me->arch.plt_offset = me->core_layout.size;
	me->core_layout.size += me->arch.plt_size;
L
Linus Torvalds 已提交
160 161 162
	return 0;
}

163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
static int apply_rela_bits(Elf_Addr loc, Elf_Addr val,
			   int sign, int bits, int shift)
{
	unsigned long umax;
	long min, max;

	if (val & ((1UL << shift) - 1))
		return -ENOEXEC;
	if (sign) {
		val = (Elf_Addr)(((long) val) >> shift);
		min = -(1L << (bits - 1));
		max = (1L << (bits - 1)) - 1;
		if ((long) val < min || (long) val > max)
			return -ENOEXEC;
	} else {
		val >>= shift;
		umax = ((1UL << (bits - 1)) << 1) - 1;
		if ((unsigned long) val > umax)
			return -ENOEXEC;
	}

	if (bits == 8)
		*(unsigned char *) loc = val;
	else if (bits == 12)
		*(unsigned short *) loc = (val & 0xfff) |
			(*(unsigned short *) loc & 0xf000);
	else if (bits == 16)
		*(unsigned short *) loc = val;
	else if (bits == 20)
		*(unsigned int *) loc = (val & 0xfff) << 16 |
			(val & 0xff000) >> 4 |
			(*(unsigned int *) loc & 0xf00000ff);
	else if (bits == 32)
		*(unsigned int *) loc = val;
	else if (bits == 64)
		*(unsigned long *) loc = val;
	return 0;
}

static int apply_rela(Elf_Rela *rela, Elf_Addr base, Elf_Sym *symtab,
		      const char *strtab, struct module *me)
L
Linus Torvalds 已提交
204 205 206 207
{
	struct mod_arch_syminfo *info;
	Elf_Addr loc, val;
	int r_type, r_sym;
208
	int rc = -ENOEXEC;
L
Linus Torvalds 已提交
209 210 211 212 213 214 215 216 217 218 219

	/* This is where to make the change */
	loc = base + rela->r_offset;
	/* This is the symbol it is referring to.  Note that all
	   undefined symbols have been resolved.  */
	r_sym = ELF_R_SYM(rela->r_info);
	r_type = ELF_R_TYPE(rela->r_info);
	info = me->arch.syminfo + r_sym;
	val = symtab[r_sym].st_value;

	switch (r_type) {
220 221 222
	case R_390_NONE:	/* No relocation.  */
		rc = 0;
		break;
L
Linus Torvalds 已提交
223 224 225 226 227 228 229 230
	case R_390_8:		/* Direct 8 bit.   */
	case R_390_12:		/* Direct 12 bit.  */
	case R_390_16:		/* Direct 16 bit.  */
	case R_390_20:		/* Direct 20 bit.  */
	case R_390_32:		/* Direct 32 bit.  */
	case R_390_64:		/* Direct 64 bit.  */
		val += rela->r_addend;
		if (r_type == R_390_8)
231
			rc = apply_rela_bits(loc, val, 0, 8, 0);
L
Linus Torvalds 已提交
232
		else if (r_type == R_390_12)
233
			rc = apply_rela_bits(loc, val, 0, 12, 0);
L
Linus Torvalds 已提交
234
		else if (r_type == R_390_16)
235
			rc = apply_rela_bits(loc, val, 0, 16, 0);
L
Linus Torvalds 已提交
236
		else if (r_type == R_390_20)
237
			rc = apply_rela_bits(loc, val, 1, 20, 0);
L
Linus Torvalds 已提交
238
		else if (r_type == R_390_32)
239
			rc = apply_rela_bits(loc, val, 0, 32, 0);
L
Linus Torvalds 已提交
240
		else if (r_type == R_390_64)
241
			rc = apply_rela_bits(loc, val, 0, 64, 0);
L
Linus Torvalds 已提交
242 243 244 245 246 247 248 249
		break;
	case R_390_PC16:	/* PC relative 16 bit.  */
	case R_390_PC16DBL:	/* PC relative 16 bit shifted by 1.  */
	case R_390_PC32DBL:	/* PC relative 32 bit shifted by 1.  */
	case R_390_PC32:	/* PC relative 32 bit.  */
	case R_390_PC64:	/* PC relative 64 bit.	*/
		val += rela->r_addend - loc;
		if (r_type == R_390_PC16)
250
			rc = apply_rela_bits(loc, val, 1, 16, 0);
L
Linus Torvalds 已提交
251
		else if (r_type == R_390_PC16DBL)
252
			rc = apply_rela_bits(loc, val, 1, 16, 1);
L
Linus Torvalds 已提交
253
		else if (r_type == R_390_PC32DBL)
254
			rc = apply_rela_bits(loc, val, 1, 32, 1);
L
Linus Torvalds 已提交
255
		else if (r_type == R_390_PC32)
256
			rc = apply_rela_bits(loc, val, 1, 32, 0);
L
Linus Torvalds 已提交
257
		else if (r_type == R_390_PC64)
258
			rc = apply_rela_bits(loc, val, 1, 64, 0);
L
Linus Torvalds 已提交
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
		break;
	case R_390_GOT12:	/* 12 bit GOT offset.  */
	case R_390_GOT16:	/* 16 bit GOT offset.  */
	case R_390_GOT20:	/* 20 bit GOT offset.  */
	case R_390_GOT32:	/* 32 bit GOT offset.  */
	case R_390_GOT64:	/* 64 bit GOT offset.  */
	case R_390_GOTENT:	/* 32 bit PC rel. to GOT entry shifted by 1. */
	case R_390_GOTPLT12:	/* 12 bit offset to jump slot.	*/
	case R_390_GOTPLT20:	/* 20 bit offset to jump slot.  */
	case R_390_GOTPLT16:	/* 16 bit offset to jump slot.  */
	case R_390_GOTPLT32:	/* 32 bit offset to jump slot.  */
	case R_390_GOTPLT64:	/* 64 bit offset to jump slot.	*/
	case R_390_GOTPLTENT:	/* 32 bit rel. offset to jump slot >> 1. */
		if (info->got_initialized == 0) {
			Elf_Addr *gotent;

275
			gotent = me->core_layout.base + me->arch.got_offset +
L
Linus Torvalds 已提交
276 277 278 279 280 281 282
				info->got_offset;
			*gotent = val;
			info->got_initialized = 1;
		}
		val = info->got_offset + rela->r_addend;
		if (r_type == R_390_GOT12 ||
		    r_type == R_390_GOTPLT12)
283
			rc = apply_rela_bits(loc, val, 0, 12, 0);
L
Linus Torvalds 已提交
284 285
		else if (r_type == R_390_GOT16 ||
			 r_type == R_390_GOTPLT16)
286
			rc = apply_rela_bits(loc, val, 0, 16, 0);
L
Linus Torvalds 已提交
287 288
		else if (r_type == R_390_GOT20 ||
			 r_type == R_390_GOTPLT20)
289
			rc = apply_rela_bits(loc, val, 1, 20, 0);
L
Linus Torvalds 已提交
290 291
		else if (r_type == R_390_GOT32 ||
			 r_type == R_390_GOTPLT32)
292
			rc = apply_rela_bits(loc, val, 0, 32, 0);
L
Linus Torvalds 已提交
293 294
		else if (r_type == R_390_GOT64 ||
			 r_type == R_390_GOTPLT64)
295 296 297
			rc = apply_rela_bits(loc, val, 0, 64, 0);
		else if (r_type == R_390_GOTENT ||
			 r_type == R_390_GOTPLTENT) {
298
			val += (Elf_Addr) me->core_layout.base - loc;
299 300
			rc = apply_rela_bits(loc, val, 1, 32, 1);
		}
L
Linus Torvalds 已提交
301 302 303 304 305 306 307 308 309 310
		break;
	case R_390_PLT16DBL:	/* 16 bit PC rel. PLT shifted by 1.  */
	case R_390_PLT32DBL:	/* 32 bit PC rel. PLT shifted by 1.  */
	case R_390_PLT32:	/* 32 bit PC relative PLT address.  */
	case R_390_PLT64:	/* 64 bit PC relative PLT address.  */
	case R_390_PLTOFF16:	/* 16 bit offset from GOT to PLT. */
	case R_390_PLTOFF32:	/* 32 bit offset from GOT to PLT. */
	case R_390_PLTOFF64:	/* 16 bit offset from GOT to PLT. */
		if (info->plt_initialized == 0) {
			unsigned int *ip;
311
			ip = me->core_layout.base + me->arch.plt_offset +
L
Linus Torvalds 已提交
312 313 314 315 316 317 318 319 320
				info->plt_offset;
			ip[0] = 0x0d10e310; /* basr 1,0; lg 1,10(1); br 1 */
			ip[1] = 0x100a0004;
			ip[2] = 0x07f10000;
			ip[3] = (unsigned int) (val >> 32);
			ip[4] = (unsigned int) val;
			info->plt_initialized = 1;
		}
		if (r_type == R_390_PLTOFF16 ||
321 322
		    r_type == R_390_PLTOFF32 ||
		    r_type == R_390_PLTOFF64)
L
Linus Torvalds 已提交
323 324
			val = me->arch.plt_offset - me->arch.got_offset +
				info->plt_offset + rela->r_addend;
325 326 327 328 329
		else {
			if (!((r_type == R_390_PLT16DBL &&
			       val - loc + 0xffffUL < 0x1ffffeUL) ||
			      (r_type == R_390_PLT32DBL &&
			       val - loc + 0xffffffffULL < 0x1fffffffeULL)))
330
				val = (Elf_Addr) me->core_layout.base +
331 332 333 334
					me->arch.plt_offset +
					info->plt_offset;
			val += rela->r_addend - loc;
		}
L
Linus Torvalds 已提交
335
		if (r_type == R_390_PLT16DBL)
336
			rc = apply_rela_bits(loc, val, 1, 16, 1);
L
Linus Torvalds 已提交
337
		else if (r_type == R_390_PLTOFF16)
338
			rc = apply_rela_bits(loc, val, 0, 16, 0);
L
Linus Torvalds 已提交
339
		else if (r_type == R_390_PLT32DBL)
340
			rc = apply_rela_bits(loc, val, 1, 32, 1);
L
Linus Torvalds 已提交
341 342
		else if (r_type == R_390_PLT32 ||
			 r_type == R_390_PLTOFF32)
343
			rc = apply_rela_bits(loc, val, 0, 32, 0);
L
Linus Torvalds 已提交
344 345
		else if (r_type == R_390_PLT64 ||
			 r_type == R_390_PLTOFF64)
346
			rc = apply_rela_bits(loc, val, 0, 64, 0);
L
Linus Torvalds 已提交
347 348 349 350 351
		break;
	case R_390_GOTOFF16:	/* 16 bit offset to GOT.  */
	case R_390_GOTOFF32:	/* 32 bit offset to GOT.  */
	case R_390_GOTOFF64:	/* 64 bit offset to GOT. */
		val = val + rela->r_addend -
352
			((Elf_Addr) me->core_layout.base + me->arch.got_offset);
L
Linus Torvalds 已提交
353
		if (r_type == R_390_GOTOFF16)
354
			rc = apply_rela_bits(loc, val, 0, 16, 0);
L
Linus Torvalds 已提交
355
		else if (r_type == R_390_GOTOFF32)
356
			rc = apply_rela_bits(loc, val, 0, 32, 0);
L
Linus Torvalds 已提交
357
		else if (r_type == R_390_GOTOFF64)
358
			rc = apply_rela_bits(loc, val, 0, 64, 0);
L
Linus Torvalds 已提交
359 360 361
		break;
	case R_390_GOTPC:	/* 32 bit PC relative offset to GOT. */
	case R_390_GOTPCDBL:	/* 32 bit PC rel. off. to GOT shifted by 1. */
362
		val = (Elf_Addr) me->core_layout.base + me->arch.got_offset +
L
Linus Torvalds 已提交
363 364
			rela->r_addend - loc;
		if (r_type == R_390_GOTPC)
365
			rc = apply_rela_bits(loc, val, 1, 32, 0);
L
Linus Torvalds 已提交
366
		else if (r_type == R_390_GOTPCDBL)
367
			rc = apply_rela_bits(loc, val, 1, 32, 1);
L
Linus Torvalds 已提交
368 369 370 371 372 373 374
		break;
	case R_390_COPY:
	case R_390_GLOB_DAT:	/* Create GOT entry.  */
	case R_390_JMP_SLOT:	/* Create PLT entry.  */
	case R_390_RELATIVE:	/* Adjust by program base.  */
		/* Only needed if we want to support loading of 
		   modules linked with -shared. */
375
		return -ENOEXEC;
L
Linus Torvalds 已提交
376
	default:
377
		printk(KERN_ERR "module %s: unknown relocation: %u\n",
L
Linus Torvalds 已提交
378 379 380
		       me->name, r_type);
		return -ENOEXEC;
	}
381 382 383 384 385 386 387
	if (rc) {
		printk(KERN_ERR "module %s: relocation error for symbol %s "
		       "(r_type %i, value 0x%lx)\n",
		       me->name, strtab + symtab[r_sym].st_name,
		       r_type, (unsigned long) val);
		return rc;
	}
L
Linus Torvalds 已提交
388 389 390
	return 0;
}

391 392 393
int apply_relocate_add(Elf_Shdr *sechdrs, const char *strtab,
		       unsigned int symindex, unsigned int relsec,
		       struct module *me)
L
Linus Torvalds 已提交
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
{
	Elf_Addr base;
	Elf_Sym *symtab;
	Elf_Rela *rela;
	unsigned long i, n;
	int rc;

	DEBUGP("Applying relocate section %u to %u\n",
	       relsec, sechdrs[relsec].sh_info);
	base = sechdrs[sechdrs[relsec].sh_info].sh_addr;
	symtab = (Elf_Sym *) sechdrs[symindex].sh_addr;
	rela = (Elf_Rela *) sechdrs[relsec].sh_addr;
	n = sechdrs[relsec].sh_size / sizeof(Elf_Rela);

	for (i = 0; i < n; i++, rela++) {
409
		rc = apply_rela(rela, base, symtab, strtab, me);
L
Linus Torvalds 已提交
410 411 412 413 414 415 416 417 418 419
		if (rc)
			return rc;
	}
	return 0;
}

int module_finalize(const Elf_Ehdr *hdr,
		    const Elf_Shdr *sechdrs,
		    struct module *me)
{
V
Vasily Gorbik 已提交
420 421 422
	const Elf_Shdr *s;
	char *secstrings;

423 424 425 426 427
	secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
	for (s = sechdrs; s < sechdrs + hdr->e_shnum; s++) {
		if (!strcmp(".altinstructions", secstrings + s->sh_name)) {
			/* patch .altinstructions */
			void *aseg = (void *)s->sh_addr;
V
Vasily Gorbik 已提交
428

429
			apply_alternatives(aseg, aseg + s->sh_size);
V
Vasily Gorbik 已提交
430 431 432
		}
	}

433
	jump_label_apply_nops(me);
434
	return 0;
L
Linus Torvalds 已提交
435
}