diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-19 12:16:12 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-19 12:16:12 -0800 |
commit | a3d66b5a17f81ee84604f95b0e2c9ccf0434c6f0 (patch) | |
tree | 542e78181dcd7ac022fb581942e284fce2c895cd | |
parent | 319645cac26c2d065a485f5d59228433ad602f71 (diff) | |
parent | e41b104c7dba92443e594e6bc86e4b0bf1cdf573 (diff) | |
download | op-kernel-dev-a3d66b5a17f81ee84604f95b0e2c9ccf0434c6f0.zip op-kernel-dev-a3d66b5a17f81ee84604f95b0e2c9ccf0434c6f0.tar.gz |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching
Pull livepatching fix from Jiri Kosina:
"A fix for module handling in case kASLR has been enabled, from Zhou
Chengming"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching:
livepatch: x86: fix relocation computation with kASLR
-rw-r--r-- | kernel/livepatch/core.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index 6e53441..db545cb 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -294,6 +294,12 @@ static int klp_write_object_relocations(struct module *pmod, for (reloc = obj->relocs; reloc->name; reloc++) { if (!klp_is_module(obj)) { + +#if defined(CONFIG_RANDOMIZE_BASE) + /* If KASLR has been enabled, adjust old value accordingly */ + if (kaslr_enabled()) + reloc->val += kaslr_offset(); +#endif ret = klp_verify_vmlinux_symbol(reloc->name, reloc->val); if (ret) |