blob: e830e61aae059309a3a16ef0b30a08b5c56e1ca4 [file] [log] [blame]
Amerigo Wang2d5bf282009-06-03 21:46:09 -04001/* Kernel module help for x86.
2 Copyright (C) 2001 Rusty Russell.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17*/
Joe Perchesc767a542012-05-21 19:50:07 -070018
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
Amerigo Wang2d5bf282009-06-03 21:46:09 -040021#include <linux/moduleloader.h>
22#include <linux/elf.h>
23#include <linux/vmalloc.h>
24#include <linux/fs.h>
25#include <linux/string.h>
26#include <linux/kernel.h>
27#include <linux/bug.h>
28#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/gfp.h>
Jason Barond430d3d2011-03-16 17:29:47 -040030#include <linux/jump_label.h>
Kees Cooke2b32e62014-02-25 16:59:17 -080031#include <linux/random.h>
Amerigo Wang2d5bf282009-06-03 21:46:09 -040032
Amerigo Wang2d5bf282009-06-03 21:46:09 -040033#include <asm/page.h>
34#include <asm/pgtable.h>
35
36#if 0
Joe Perchesc767a542012-05-21 19:50:07 -070037#define DEBUGP(fmt, ...) \
38 printk(KERN_DEBUG fmt, ##__VA_ARGS__)
Amerigo Wang2d5bf282009-06-03 21:46:09 -040039#else
Joe Perchesc767a542012-05-21 19:50:07 -070040#define DEBUGP(fmt, ...) \
41do { \
42 if (0) \
43 printk(KERN_DEBUG fmt, ##__VA_ARGS__); \
44} while (0)
Amerigo Wang2d5bf282009-06-03 21:46:09 -040045#endif
46
Kees Cooke2b32e62014-02-25 16:59:17 -080047#ifdef CONFIG_RANDOMIZE_BASE
48static unsigned long module_load_offset;
49static int randomize_modules = 1;
50
Kees Cook9dd721c2014-03-10 13:42:48 -070051/* Mutex protects the module_load_offset. */
52static DEFINE_MUTEX(module_kaslr_mutex);
53
Kees Cooke2b32e62014-02-25 16:59:17 -080054static int __init parse_nokaslr(char *p)
55{
56 randomize_modules = 0;
57 return 0;
58}
59early_param("nokaslr", parse_nokaslr);
60
61static unsigned long int get_module_load_offset(void)
62{
63 if (randomize_modules) {
Kees Cook9dd721c2014-03-10 13:42:48 -070064 mutex_lock(&module_kaslr_mutex);
Kees Cooke2b32e62014-02-25 16:59:17 -080065 /*
66 * Calculate the module_load_offset the first time this
67 * code is called. Once calculated it stays the same until
68 * reboot.
69 */
70 if (module_load_offset == 0)
71 module_load_offset =
72 (get_random_int() % 1024 + 1) * PAGE_SIZE;
Kees Cook9dd721c2014-03-10 13:42:48 -070073 mutex_unlock(&module_kaslr_mutex);
Kees Cooke2b32e62014-02-25 16:59:17 -080074 }
75 return module_load_offset;
76}
77#else
78static unsigned long int get_module_load_offset(void)
79{
80 return 0;
81}
82#endif
83
Amerigo Wang0fdc83b2009-06-03 21:46:19 -040084void *module_alloc(unsigned long size)
85{
David Rientjesd0a21262011-01-13 15:46:02 -080086 if (PAGE_ALIGN(size) > MODULES_LEN)
Amerigo Wang0fdc83b2009-06-03 21:46:19 -040087 return NULL;
Kees Cooke2b32e62014-02-25 16:59:17 -080088 return __vmalloc_node_range(size, 1,
89 MODULES_VADDR + get_module_load_offset(),
90 MODULES_END, GFP_KERNEL | __GFP_HIGHMEM,
Andrey Ryabinincb9e3c22015-02-13 14:40:07 -080091 PAGE_KERNEL_EXEC, 0, NUMA_NO_NODE,
Kees Cooke2b32e62014-02-25 16:59:17 -080092 __builtin_return_address(0));
Amerigo Wang0fdc83b2009-06-03 21:46:19 -040093}
Amerigo Wang0fdc83b2009-06-03 21:46:19 -040094
Amerigo Wang0fdc83b2009-06-03 21:46:19 -040095#ifdef CONFIG_X86_32
96int apply_relocate(Elf32_Shdr *sechdrs,
97 const char *strtab,
98 unsigned int symindex,
99 unsigned int relsec,
100 struct module *me)
101{
102 unsigned int i;
103 Elf32_Rel *rel = (void *)sechdrs[relsec].sh_addr;
104 Elf32_Sym *sym;
105 uint32_t *location;
106
Joe Perchesc767a542012-05-21 19:50:07 -0700107 DEBUGP("Applying relocate section %u to %u\n",
108 relsec, sechdrs[relsec].sh_info);
Amerigo Wang0fdc83b2009-06-03 21:46:19 -0400109 for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) {
110 /* This is where to make the change */
111 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
112 + rel[i].r_offset;
113 /* This is the symbol it is referring to. Note that all
114 undefined symbols have been resolved. */
115 sym = (Elf32_Sym *)sechdrs[symindex].sh_addr
116 + ELF32_R_SYM(rel[i].r_info);
117
118 switch (ELF32_R_TYPE(rel[i].r_info)) {
119 case R_386_32:
120 /* We add the value into the location given */
121 *location += sym->st_value;
122 break;
123 case R_386_PC32:
Geert Uytterhoeven2e76c282012-07-19 22:29:11 +0200124 /* Add the value, subtract its position */
Amerigo Wang0fdc83b2009-06-03 21:46:19 -0400125 *location += sym->st_value - (uint32_t)location;
126 break;
127 default:
Joe Perchesc767a542012-05-21 19:50:07 -0700128 pr_err("%s: Unknown relocation: %u\n",
Amerigo Wang0fdc83b2009-06-03 21:46:19 -0400129 me->name, ELF32_R_TYPE(rel[i].r_info));
130 return -ENOEXEC;
131 }
132 }
133 return 0;
134}
Amerigo Wang0fdc83b2009-06-03 21:46:19 -0400135#else /*X86_64*/
136int apply_relocate_add(Elf64_Shdr *sechdrs,
137 const char *strtab,
138 unsigned int symindex,
139 unsigned int relsec,
140 struct module *me)
141{
142 unsigned int i;
143 Elf64_Rela *rel = (void *)sechdrs[relsec].sh_addr;
144 Elf64_Sym *sym;
145 void *loc;
146 u64 val;
147
Joe Perchesc767a542012-05-21 19:50:07 -0700148 DEBUGP("Applying relocate section %u to %u\n",
149 relsec, sechdrs[relsec].sh_info);
Amerigo Wang0fdc83b2009-06-03 21:46:19 -0400150 for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) {
151 /* This is where to make the change */
152 loc = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
153 + rel[i].r_offset;
154
155 /* This is the symbol it is referring to. Note that all
156 undefined symbols have been resolved. */
157 sym = (Elf64_Sym *)sechdrs[symindex].sh_addr
158 + ELF64_R_SYM(rel[i].r_info);
159
160 DEBUGP("type %d st_value %Lx r_addend %Lx loc %Lx\n",
Joe Perchesc767a542012-05-21 19:50:07 -0700161 (int)ELF64_R_TYPE(rel[i].r_info),
162 sym->st_value, rel[i].r_addend, (u64)loc);
Amerigo Wang0fdc83b2009-06-03 21:46:19 -0400163
164 val = sym->st_value + rel[i].r_addend;
165
166 switch (ELF64_R_TYPE(rel[i].r_info)) {
167 case R_X86_64_NONE:
168 break;
169 case R_X86_64_64:
170 *(u64 *)loc = val;
171 break;
172 case R_X86_64_32:
173 *(u32 *)loc = val;
174 if (val != *(u32 *)loc)
175 goto overflow;
176 break;
177 case R_X86_64_32S:
178 *(s32 *)loc = val;
179 if ((s64)val != *(s32 *)loc)
180 goto overflow;
181 break;
182 case R_X86_64_PC32:
183 val -= (u64)loc;
184 *(u32 *)loc = val;
185#if 0
186 if ((s64)val != *(s32 *)loc)
187 goto overflow;
188#endif
189 break;
190 default:
Joe Perchesc767a542012-05-21 19:50:07 -0700191 pr_err("%s: Unknown rela relocation: %llu\n",
Amerigo Wang0fdc83b2009-06-03 21:46:19 -0400192 me->name, ELF64_R_TYPE(rel[i].r_info));
193 return -ENOEXEC;
194 }
195 }
196 return 0;
197
198overflow:
Joe Perchesc767a542012-05-21 19:50:07 -0700199 pr_err("overflow in relocation type %d val %Lx\n",
Amerigo Wang0fdc83b2009-06-03 21:46:19 -0400200 (int)ELF64_R_TYPE(rel[i].r_info), val);
Joe Perchesc767a542012-05-21 19:50:07 -0700201 pr_err("`%s' likely not compiled with -mcmodel=kernel\n",
Amerigo Wang0fdc83b2009-06-03 21:46:19 -0400202 me->name);
203 return -ENOEXEC;
204}
Amerigo Wang0fdc83b2009-06-03 21:46:19 -0400205#endif
206
Amerigo Wang2d5bf282009-06-03 21:46:09 -0400207int module_finalize(const Elf_Ehdr *hdr,
208 const Elf_Shdr *sechdrs,
209 struct module *me)
210{
211 const Elf_Shdr *s, *text = NULL, *alt = NULL, *locks = NULL,
212 *para = NULL;
213 char *secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
214
215 for (s = sechdrs; s < sechdrs + hdr->e_shnum; s++) {
216 if (!strcmp(".text", secstrings + s->sh_name))
217 text = s;
218 if (!strcmp(".altinstructions", secstrings + s->sh_name))
219 alt = s;
220 if (!strcmp(".smp_locks", secstrings + s->sh_name))
221 locks = s;
222 if (!strcmp(".parainstructions", secstrings + s->sh_name))
223 para = s;
224 }
225
226 if (alt) {
227 /* patch .altinstructions */
228 void *aseg = (void *)alt->sh_addr;
229 apply_alternatives(aseg, aseg + alt->sh_size);
230 }
231 if (locks && text) {
232 void *lseg = (void *)locks->sh_addr;
233 void *tseg = (void *)text->sh_addr;
234 alternatives_smp_module_add(me, me->name,
235 lseg, lseg + locks->sh_size,
236 tseg, tseg + text->sh_size);
237 }
238
239 if (para) {
240 void *pseg = (void *)para->sh_addr;
241 apply_paravirt(pseg, pseg + para->sh_size);
242 }
243
Jason Barond9f5ab72010-09-17 11:09:22 -0400244 /* make jump label nops */
245 jump_label_apply_nops(me);
246
Linus Torvalds53363772010-10-05 11:29:27 -0700247 return 0;
Amerigo Wang2d5bf282009-06-03 21:46:09 -0400248}
249
250void module_arch_cleanup(struct module *mod)
251{
252 alternatives_smp_module_del(mod);
Amerigo Wang2d5bf282009-06-03 21:46:09 -0400253}