2019-05-27 09:55:05 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-06-04 05:46:09 +04:00
|
|
|
/* Kernel module help for x86.
|
|
|
|
Copyright (C) 2001 Rusty Russell.
|
|
|
|
|
|
|
|
*/
|
2012-05-22 06:50:07 +04:00
|
|
|
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2009-06-04 05:46:09 +04:00
|
|
|
#include <linux/moduleloader.h>
|
|
|
|
#include <linux/elf.h>
|
|
|
|
#include <linux/vmalloc.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/kernel.h>
|
2015-02-14 01:40:17 +03:00
|
|
|
#include <linux/kasan.h>
|
2009-06-04 05:46:09 +04:00
|
|
|
#include <linux/bug.h>
|
|
|
|
#include <linux/mm.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 11:04:11 +03:00
|
|
|
#include <linux/gfp.h>
|
2011-03-17 00:29:47 +03:00
|
|
|
#include <linux/jump_label.h>
|
2014-02-26 04:59:17 +04:00
|
|
|
#include <linux/random.h>
|
2020-04-29 18:24:52 +03:00
|
|
|
#include <linux/memory.h>
|
2009-06-04 05:46:09 +04:00
|
|
|
|
2016-04-26 22:23:24 +03:00
|
|
|
#include <asm/text-patching.h>
|
2009-06-04 05:46:09 +04:00
|
|
|
#include <asm/page.h>
|
2015-04-01 13:49:52 +03:00
|
|
|
#include <asm/setup.h>
|
2017-07-25 02:36:57 +03:00
|
|
|
#include <asm/unwind.h>
|
2009-06-04 05:46:09 +04:00
|
|
|
|
|
|
|
#if 0
|
2012-05-22 06:50:07 +04:00
|
|
|
#define DEBUGP(fmt, ...) \
|
|
|
|
printk(KERN_DEBUG fmt, ##__VA_ARGS__)
|
2009-06-04 05:46:09 +04:00
|
|
|
#else
|
2012-05-22 06:50:07 +04:00
|
|
|
#define DEBUGP(fmt, ...) \
|
|
|
|
do { \
|
|
|
|
if (0) \
|
|
|
|
printk(KERN_DEBUG fmt, ##__VA_ARGS__); \
|
|
|
|
} while (0)
|
2009-06-04 05:46:09 +04:00
|
|
|
#endif
|
|
|
|
|
2014-02-26 04:59:17 +04:00
|
|
|
#ifdef CONFIG_RANDOMIZE_BASE
|
|
|
|
static unsigned long module_load_offset;
|
|
|
|
|
2014-03-11 00:42:48 +04:00
|
|
|
/* Mutex protects the module_load_offset. */
|
|
|
|
static DEFINE_MUTEX(module_kaslr_mutex);
|
|
|
|
|
2014-02-26 04:59:17 +04:00
|
|
|
static unsigned long int get_module_load_offset(void)
|
|
|
|
{
|
2015-04-01 13:49:52 +03:00
|
|
|
if (kaslr_enabled()) {
|
2014-03-11 00:42:48 +04:00
|
|
|
mutex_lock(&module_kaslr_mutex);
|
2014-02-26 04:59:17 +04:00
|
|
|
/*
|
|
|
|
* Calculate the module_load_offset the first time this
|
|
|
|
* code is called. Once calculated it stays the same until
|
|
|
|
* reboot.
|
|
|
|
*/
|
|
|
|
if (module_load_offset == 0)
|
|
|
|
module_load_offset =
|
|
|
|
(get_random_int() % 1024 + 1) * PAGE_SIZE;
|
2014-03-11 00:42:48 +04:00
|
|
|
mutex_unlock(&module_kaslr_mutex);
|
2014-02-26 04:59:17 +04:00
|
|
|
}
|
|
|
|
return module_load_offset;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static unsigned long int get_module_load_offset(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-06-04 05:46:19 +04:00
|
|
|
void *module_alloc(unsigned long size)
|
|
|
|
{
|
2015-02-14 01:40:17 +03:00
|
|
|
void *p;
|
|
|
|
|
2011-01-14 02:46:02 +03:00
|
|
|
if (PAGE_ALIGN(size) > MODULES_LEN)
|
2009-06-04 05:46:19 +04:00
|
|
|
return NULL;
|
2015-02-14 01:40:17 +03:00
|
|
|
|
|
|
|
p = __vmalloc_node_range(size, MODULE_ALIGN,
|
2014-02-26 04:59:17 +04:00
|
|
|
MODULES_VADDR + get_module_load_offset(),
|
2017-05-09 01:57:44 +03:00
|
|
|
MODULES_END, GFP_KERNEL,
|
2019-04-26 03:11:31 +03:00
|
|
|
PAGE_KERNEL, 0, NUMA_NO_NODE,
|
2014-02-26 04:59:17 +04:00
|
|
|
__builtin_return_address(0));
|
2015-02-14 01:40:17 +03:00
|
|
|
if (p && (kasan_module_alloc(p, size) < 0)) {
|
|
|
|
vfree(p);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return p;
|
2009-06-04 05:46:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
int apply_relocate(Elf32_Shdr *sechdrs,
|
|
|
|
const char *strtab,
|
|
|
|
unsigned int symindex,
|
|
|
|
unsigned int relsec,
|
|
|
|
struct module *me)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
Elf32_Rel *rel = (void *)sechdrs[relsec].sh_addr;
|
|
|
|
Elf32_Sym *sym;
|
|
|
|
uint32_t *location;
|
|
|
|
|
2012-05-22 06:50:07 +04:00
|
|
|
DEBUGP("Applying relocate section %u to %u\n",
|
|
|
|
relsec, sechdrs[relsec].sh_info);
|
2009-06-04 05:46:19 +04:00
|
|
|
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. Note that all
|
|
|
|
undefined symbols have been resolved. */
|
|
|
|
sym = (Elf32_Sym *)sechdrs[symindex].sh_addr
|
|
|
|
+ ELF32_R_SYM(rel[i].r_info);
|
|
|
|
|
|
|
|
switch (ELF32_R_TYPE(rel[i].r_info)) {
|
|
|
|
case R_386_32:
|
|
|
|
/* We add the value into the location given */
|
|
|
|
*location += sym->st_value;
|
|
|
|
break;
|
|
|
|
case R_386_PC32:
|
2021-01-27 23:56:00 +03:00
|
|
|
case R_386_PLT32:
|
2012-07-20 00:29:11 +04:00
|
|
|
/* Add the value, subtract its position */
|
2009-06-04 05:46:19 +04:00
|
|
|
*location += sym->st_value - (uint32_t)location;
|
|
|
|
break;
|
|
|
|
default:
|
2012-05-22 06:50:07 +04:00
|
|
|
pr_err("%s: Unknown relocation: %u\n",
|
2009-06-04 05:46:19 +04:00
|
|
|
me->name, ELF32_R_TYPE(rel[i].r_info));
|
|
|
|
return -ENOEXEC;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else /*X86_64*/
|
2020-04-29 18:24:49 +03:00
|
|
|
static int __apply_relocate_add(Elf64_Shdr *sechdrs,
|
2009-06-04 05:46:19 +04:00
|
|
|
const char *strtab,
|
|
|
|
unsigned int symindex,
|
|
|
|
unsigned int relsec,
|
2020-04-29 18:24:49 +03:00
|
|
|
struct module *me,
|
|
|
|
void *(*write)(void *dest, const void *src, size_t len))
|
2009-06-04 05:46:19 +04:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
Elf64_Rela *rel = (void *)sechdrs[relsec].sh_addr;
|
|
|
|
Elf64_Sym *sym;
|
|
|
|
void *loc;
|
|
|
|
u64 val;
|
|
|
|
|
2012-05-22 06:50:07 +04:00
|
|
|
DEBUGP("Applying relocate section %u to %u\n",
|
|
|
|
relsec, sechdrs[relsec].sh_info);
|
2009-06-04 05:46:19 +04:00
|
|
|
for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) {
|
|
|
|
/* This is where to make the change */
|
|
|
|
loc = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
|
|
|
|
+ rel[i].r_offset;
|
|
|
|
|
|
|
|
/* This is the symbol it is referring to. Note that all
|
|
|
|
undefined symbols have been resolved. */
|
|
|
|
sym = (Elf64_Sym *)sechdrs[symindex].sh_addr
|
|
|
|
+ ELF64_R_SYM(rel[i].r_info);
|
|
|
|
|
|
|
|
DEBUGP("type %d st_value %Lx r_addend %Lx loc %Lx\n",
|
2012-05-22 06:50:07 +04:00
|
|
|
(int)ELF64_R_TYPE(rel[i].r_info),
|
|
|
|
sym->st_value, rel[i].r_addend, (u64)loc);
|
2009-06-04 05:46:19 +04:00
|
|
|
|
|
|
|
val = sym->st_value + rel[i].r_addend;
|
|
|
|
|
|
|
|
switch (ELF64_R_TYPE(rel[i].r_info)) {
|
|
|
|
case R_X86_64_NONE:
|
|
|
|
break;
|
|
|
|
case R_X86_64_64:
|
2017-11-03 15:58:54 +03:00
|
|
|
if (*(u64 *)loc != 0)
|
|
|
|
goto invalid_relocation;
|
2020-04-29 18:24:49 +03:00
|
|
|
write(loc, &val, 8);
|
2009-06-04 05:46:19 +04:00
|
|
|
break;
|
|
|
|
case R_X86_64_32:
|
2017-11-03 15:58:54 +03:00
|
|
|
if (*(u32 *)loc != 0)
|
|
|
|
goto invalid_relocation;
|
2020-04-29 18:24:49 +03:00
|
|
|
write(loc, &val, 4);
|
2009-06-04 05:46:19 +04:00
|
|
|
if (val != *(u32 *)loc)
|
|
|
|
goto overflow;
|
|
|
|
break;
|
|
|
|
case R_X86_64_32S:
|
2017-11-03 15:58:54 +03:00
|
|
|
if (*(s32 *)loc != 0)
|
|
|
|
goto invalid_relocation;
|
2020-04-29 18:24:49 +03:00
|
|
|
write(loc, &val, 4);
|
2009-06-04 05:46:19 +04:00
|
|
|
if ((s64)val != *(s32 *)loc)
|
|
|
|
goto overflow;
|
|
|
|
break;
|
|
|
|
case R_X86_64_PC32:
|
x86: Treat R_X86_64_PLT32 as R_X86_64_PC32
On i386, there are 2 types of PLTs, PIC and non-PIC. PIE and shared
objects must use PIC PLT. To use PIC PLT, you need to load
_GLOBAL_OFFSET_TABLE_ into EBX first. There is no need for that on
x86-64 since x86-64 uses PC-relative PLT.
On x86-64, for 32-bit PC-relative branches, we can generate PLT32
relocation, instead of PC32 relocation, which can also be used as
a marker for 32-bit PC-relative branches. Linker can always reduce
PLT32 relocation to PC32 if function is defined locally. Local
functions should use PC32 relocation. As far as Linux kernel is
concerned, R_X86_64_PLT32 can be treated the same as R_X86_64_PC32
since Linux kernel doesn't use PLT.
R_X86_64_PLT32 for 32-bit PC-relative branches has been enabled in
binutils master branch which will become binutils 2.31.
[ hjl is working on having better documentation on this all, but a few
more notes from him:
"PLT32 relocation is used as marker for PC-relative branches. Because
of EBX, it looks odd to generate PLT32 relocation on i386 when EBX
doesn't have GOT.
As for symbol resolution, PLT32 and PC32 relocations are almost
interchangeable. But when linker sees PLT32 relocation against a
protected symbol, it can resolved locally at link-time since it is
used on a branch instruction. Linker can't do that for PC32
relocation"
but for the kernel use, the two are basically the same, and this
commit gets things building and working with the current binutils
master - Linus ]
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2018-02-08 01:20:09 +03:00
|
|
|
case R_X86_64_PLT32:
|
2017-11-03 15:58:54 +03:00
|
|
|
if (*(u32 *)loc != 0)
|
|
|
|
goto invalid_relocation;
|
2009-06-04 05:46:19 +04:00
|
|
|
val -= (u64)loc;
|
2020-04-29 18:24:49 +03:00
|
|
|
write(loc, &val, 4);
|
2009-06-04 05:46:19 +04:00
|
|
|
#if 0
|
|
|
|
if ((s64)val != *(s32 *)loc)
|
|
|
|
goto overflow;
|
|
|
|
#endif
|
|
|
|
break;
|
2018-09-19 09:51:39 +03:00
|
|
|
case R_X86_64_PC64:
|
|
|
|
if (*(u64 *)loc != 0)
|
|
|
|
goto invalid_relocation;
|
|
|
|
val -= (u64)loc;
|
2020-04-29 18:24:49 +03:00
|
|
|
write(loc, &val, 8);
|
2018-09-19 09:51:39 +03:00
|
|
|
break;
|
2009-06-04 05:46:19 +04:00
|
|
|
default:
|
2012-05-22 06:50:07 +04:00
|
|
|
pr_err("%s: Unknown rela relocation: %llu\n",
|
2009-06-04 05:46:19 +04:00
|
|
|
me->name, ELF64_R_TYPE(rel[i].r_info));
|
|
|
|
return -ENOEXEC;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
2017-11-03 15:58:54 +03:00
|
|
|
invalid_relocation:
|
|
|
|
pr_err("x86/modules: Skipping invalid relocation target, existing value is nonzero for type %d, loc %p, val %Lx\n",
|
|
|
|
(int)ELF64_R_TYPE(rel[i].r_info), loc, val);
|
|
|
|
return -ENOEXEC;
|
|
|
|
|
2009-06-04 05:46:19 +04:00
|
|
|
overflow:
|
2012-05-22 06:50:07 +04:00
|
|
|
pr_err("overflow in relocation type %d val %Lx\n",
|
2009-06-04 05:46:19 +04:00
|
|
|
(int)ELF64_R_TYPE(rel[i].r_info), val);
|
2012-05-22 06:50:07 +04:00
|
|
|
pr_err("`%s' likely not compiled with -mcmodel=kernel\n",
|
2009-06-04 05:46:19 +04:00
|
|
|
me->name);
|
|
|
|
return -ENOEXEC;
|
|
|
|
}
|
2020-04-29 18:24:49 +03:00
|
|
|
|
|
|
|
int apply_relocate_add(Elf64_Shdr *sechdrs,
|
|
|
|
const char *strtab,
|
|
|
|
unsigned int symindex,
|
|
|
|
unsigned int relsec,
|
|
|
|
struct module *me)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
bool early = me->state == MODULE_STATE_UNFORMED;
|
|
|
|
void *(*write)(void *, const void *, size_t) = memcpy;
|
|
|
|
|
2020-04-29 18:24:52 +03:00
|
|
|
if (!early) {
|
2020-04-29 18:24:49 +03:00
|
|
|
write = text_poke;
|
2020-04-29 18:24:52 +03:00
|
|
|
mutex_lock(&text_mutex);
|
|
|
|
}
|
2020-04-29 18:24:49 +03:00
|
|
|
|
|
|
|
ret = __apply_relocate_add(sechdrs, strtab, symindex, relsec, me,
|
|
|
|
write);
|
|
|
|
|
2020-04-29 18:24:52 +03:00
|
|
|
if (!early) {
|
2020-04-29 18:24:49 +03:00
|
|
|
text_poke_sync();
|
2020-04-29 18:24:52 +03:00
|
|
|
mutex_unlock(&text_mutex);
|
|
|
|
}
|
2020-04-29 18:24:49 +03:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-06-04 05:46:19 +04:00
|
|
|
#endif
|
|
|
|
|
2009-06-04 05:46:09 +04:00
|
|
|
int module_finalize(const Elf_Ehdr *hdr,
|
|
|
|
const Elf_Shdr *sechdrs,
|
|
|
|
struct module *me)
|
|
|
|
{
|
|
|
|
const Elf_Shdr *s, *text = NULL, *alt = NULL, *locks = NULL,
|
2017-07-25 02:36:57 +03:00
|
|
|
*para = NULL, *orc = NULL, *orc_ip = NULL;
|
2009-06-04 05:46:09 +04:00
|
|
|
char *secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
|
|
|
|
|
|
|
|
for (s = sechdrs; s < sechdrs + hdr->e_shnum; s++) {
|
|
|
|
if (!strcmp(".text", secstrings + s->sh_name))
|
|
|
|
text = s;
|
|
|
|
if (!strcmp(".altinstructions", secstrings + s->sh_name))
|
|
|
|
alt = s;
|
|
|
|
if (!strcmp(".smp_locks", secstrings + s->sh_name))
|
|
|
|
locks = s;
|
|
|
|
if (!strcmp(".parainstructions", secstrings + s->sh_name))
|
|
|
|
para = s;
|
2017-07-25 02:36:57 +03:00
|
|
|
if (!strcmp(".orc_unwind", secstrings + s->sh_name))
|
|
|
|
orc = s;
|
|
|
|
if (!strcmp(".orc_unwind_ip", secstrings + s->sh_name))
|
|
|
|
orc_ip = s;
|
2009-06-04 05:46:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (alt) {
|
|
|
|
/* patch .altinstructions */
|
|
|
|
void *aseg = (void *)alt->sh_addr;
|
|
|
|
apply_alternatives(aseg, aseg + alt->sh_size);
|
|
|
|
}
|
|
|
|
if (locks && text) {
|
|
|
|
void *lseg = (void *)locks->sh_addr;
|
|
|
|
void *tseg = (void *)text->sh_addr;
|
|
|
|
alternatives_smp_module_add(me, me->name,
|
|
|
|
lseg, lseg + locks->sh_size,
|
|
|
|
tseg, tseg + text->sh_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (para) {
|
|
|
|
void *pseg = (void *)para->sh_addr;
|
|
|
|
apply_paravirt(pseg, pseg + para->sh_size);
|
|
|
|
}
|
|
|
|
|
2010-09-17 19:09:22 +04:00
|
|
|
/* make jump label nops */
|
|
|
|
jump_label_apply_nops(me);
|
|
|
|
|
2017-07-25 02:36:57 +03:00
|
|
|
if (orc && orc_ip)
|
|
|
|
unwind_module_init(me, (void *)orc_ip->sh_addr, orc_ip->sh_size,
|
|
|
|
(void *)orc->sh_addr, orc->sh_size);
|
|
|
|
|
2010-10-05 22:29:27 +04:00
|
|
|
return 0;
|
2009-06-04 05:46:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void module_arch_cleanup(struct module *mod)
|
|
|
|
{
|
|
|
|
alternatives_smp_module_del(mod);
|
|
|
|
}
|