x86, suspend: Avoid unnecessary smp alternatives switch during suspend/resume
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / x86 / kernel / alternative.c
CommitLineData
9a0b5817 1#include <linux/module.h>
f6a57033 2#include <linux/sched.h>
2f1dafe5 3#include <linux/mutex.h>
9a0b5817 4#include <linux/list.h>
8b5a10fc 5#include <linux/stringify.h>
19d36ccd
AK
6#include <linux/kprobes.h>
7#include <linux/mm.h>
8#include <linux/vmalloc.h>
3945dab4 9#include <linux/memory.h>
3d55cc8a 10#include <linux/stop_machine.h>
5a0e3ad6 11#include <linux/slab.h>
9a0b5817
GH
12#include <asm/alternative.h>
13#include <asm/sections.h>
19d36ccd 14#include <asm/pgtable.h>
8f4e956b
AK
15#include <asm/mce.h>
16#include <asm/nmi.h>
b097976e 17#include <asm/vsyscall.h>
e587cadd 18#include <asm/cacheflush.h>
78ff7fae 19#include <asm/tlbflush.h>
e587cadd 20#include <asm/io.h>
78ff7fae 21#include <asm/fixmap.h>
9a0b5817 22
ab144f5e
AK
23#define MAX_PATCH_LEN (255-1)
24
09488165
JB
25#ifdef CONFIG_HOTPLUG_CPU
26static int smp_alt_once;
9a0b5817 27
d167a518
GH
28static int __init bootonly(char *str)
29{
30 smp_alt_once = 1;
31 return 1;
32}
b7fb4af0 33__setup("smp-alt-boot", bootonly);
09488165
JB
34#else
35#define smp_alt_once 1
36#endif
37
8b5a10fc 38static int __initdata_or_module debug_alternative;
b7fb4af0 39
d167a518
GH
40static int __init debug_alt(char *str)
41{
42 debug_alternative = 1;
43 return 1;
44}
d167a518
GH
45__setup("debug-alternative", debug_alt);
46
09488165
JB
47static int noreplace_smp;
48
b7fb4af0
JF
49static int __init setup_noreplace_smp(char *str)
50{
51 noreplace_smp = 1;
52 return 1;
53}
54__setup("noreplace-smp", setup_noreplace_smp);
55
959b4fdf 56#ifdef CONFIG_PARAVIRT
8b5a10fc 57static int __initdata_or_module noreplace_paravirt = 0;
959b4fdf
JF
58
59static int __init setup_noreplace_paravirt(char *str)
60{
61 noreplace_paravirt = 1;
62 return 1;
63}
64__setup("noreplace-paravirt", setup_noreplace_paravirt);
65#endif
b7fb4af0 66
d167a518
GH
67#define DPRINTK(fmt, args...) if (debug_alternative) \
68 printk(KERN_DEBUG fmt, args)
69
8b5a10fc 70#if defined(GENERIC_NOP1) && !defined(CONFIG_X86_64)
9a0b5817
GH
71/* Use inline assembly to define this because the nops are defined
72 as inline assembly strings in the include files and we cannot
73 get them easily into strings. */
8b5a10fc 74asm("\t" __stringify(__INITRODATA_OR_MODULE) "\nintelnops: "
9a0b5817 75 GENERIC_NOP1 GENERIC_NOP2 GENERIC_NOP3 GENERIC_NOP4 GENERIC_NOP5 GENERIC_NOP6
f4be31ec
SR
76 GENERIC_NOP7 GENERIC_NOP8
77 "\t.previous");
121d7bf5 78extern const unsigned char intelnops[];
8b5a10fc
JB
79static const unsigned char *const __initconst_or_module
80intel_nops[ASM_NOP_MAX+1] = {
9a0b5817
GH
81 NULL,
82 intelnops,
83 intelnops + 1,
84 intelnops + 1 + 2,
85 intelnops + 1 + 2 + 3,
86 intelnops + 1 + 2 + 3 + 4,
87 intelnops + 1 + 2 + 3 + 4 + 5,
88 intelnops + 1 + 2 + 3 + 4 + 5 + 6,
89 intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
90};
d167a518
GH
91#endif
92
93#ifdef K8_NOP1
8b5a10fc 94asm("\t" __stringify(__INITRODATA_OR_MODULE) "\nk8nops: "
d167a518 95 K8_NOP1 K8_NOP2 K8_NOP3 K8_NOP4 K8_NOP5 K8_NOP6
f4be31ec
SR
96 K8_NOP7 K8_NOP8
97 "\t.previous");
121d7bf5 98extern const unsigned char k8nops[];
8b5a10fc
JB
99static const unsigned char *const __initconst_or_module
100k8_nops[ASM_NOP_MAX+1] = {
9a0b5817
GH
101 NULL,
102 k8nops,
103 k8nops + 1,
104 k8nops + 1 + 2,
105 k8nops + 1 + 2 + 3,
106 k8nops + 1 + 2 + 3 + 4,
107 k8nops + 1 + 2 + 3 + 4 + 5,
108 k8nops + 1 + 2 + 3 + 4 + 5 + 6,
109 k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
110};
d167a518
GH
111#endif
112
8b5a10fc
JB
113#if defined(K7_NOP1) && !defined(CONFIG_X86_64)
114asm("\t" __stringify(__INITRODATA_OR_MODULE) "\nk7nops: "
d167a518 115 K7_NOP1 K7_NOP2 K7_NOP3 K7_NOP4 K7_NOP5 K7_NOP6
f4be31ec
SR
116 K7_NOP7 K7_NOP8
117 "\t.previous");
121d7bf5 118extern const unsigned char k7nops[];
8b5a10fc
JB
119static const unsigned char *const __initconst_or_module
120k7_nops[ASM_NOP_MAX+1] = {
9a0b5817
GH
121 NULL,
122 k7nops,
123 k7nops + 1,
124 k7nops + 1 + 2,
125 k7nops + 1 + 2 + 3,
126 k7nops + 1 + 2 + 3 + 4,
127 k7nops + 1 + 2 + 3 + 4 + 5,
128 k7nops + 1 + 2 + 3 + 4 + 5 + 6,
129 k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
130};
d167a518
GH
131#endif
132
32c464f5 133#ifdef P6_NOP1
8b5a10fc 134asm("\t" __stringify(__INITRODATA_OR_MODULE) "\np6nops: "
32c464f5 135 P6_NOP1 P6_NOP2 P6_NOP3 P6_NOP4 P6_NOP5 P6_NOP6
f4be31ec
SR
136 P6_NOP7 P6_NOP8
137 "\t.previous");
32c464f5 138extern const unsigned char p6nops[];
8b5a10fc
JB
139static const unsigned char *const __initconst_or_module
140p6_nops[ASM_NOP_MAX+1] = {
32c464f5
JB
141 NULL,
142 p6nops,
143 p6nops + 1,
144 p6nops + 1 + 2,
145 p6nops + 1 + 2 + 3,
146 p6nops + 1 + 2 + 3 + 4,
147 p6nops + 1 + 2 + 3 + 4 + 5,
148 p6nops + 1 + 2 + 3 + 4 + 5 + 6,
149 p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
150};
151#endif
152
d167a518
GH
153#ifdef CONFIG_X86_64
154
155extern char __vsyscall_0;
8b5a10fc 156static const unsigned char *const *__init_or_module find_nop_table(void)
d167a518 157{
f31d731e
PA
158 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
159 boot_cpu_has(X86_FEATURE_NOPL))
160 return p6_nops;
161 else
162 return k8_nops;
d167a518
GH
163}
164
165#else /* CONFIG_X86_64 */
166
8b5a10fc 167static const unsigned char *const *__init_or_module find_nop_table(void)
9a0b5817 168{
f31d731e
PA
169 if (boot_cpu_has(X86_FEATURE_K8))
170 return k8_nops;
171 else if (boot_cpu_has(X86_FEATURE_K7))
172 return k7_nops;
173 else if (boot_cpu_has(X86_FEATURE_NOPL))
174 return p6_nops;
175 else
176 return intel_nops;
9a0b5817
GH
177}
178
d167a518
GH
179#endif /* CONFIG_X86_64 */
180
ab144f5e 181/* Use this to add nops to a buffer, then text_poke the whole buffer. */
8b5a10fc 182static void __init_or_module add_nops(void *insns, unsigned int len)
139ec7c4 183{
121d7bf5 184 const unsigned char *const *noptable = find_nop_table();
139ec7c4
RR
185
186 while (len > 0) {
187 unsigned int noplen = len;
188 if (noplen > ASM_NOP_MAX)
189 noplen = ASM_NOP_MAX;
ab144f5e 190 memcpy(insns, noptable[noplen], noplen);
139ec7c4
RR
191 insns += noplen;
192 len -= noplen;
193 }
194}
195
d167a518 196extern struct alt_instr __alt_instructions[], __alt_instructions_end[];
5967ed87 197extern s32 __smp_locks[], __smp_locks_end[];
fa6f2cc7 198void *text_poke_early(void *addr, const void *opcode, size_t len);
d167a518 199
9a0b5817
GH
200/* Replace instructions with better alternatives for this CPU type.
201 This runs before SMP is initialized to avoid SMP problems with
202 self modifying code. This implies that assymetric systems where
203 APs have less capabilities than the boot processor are not handled.
204 Tough. Make sure you disable such features by hand. */
205
8b5a10fc
JB
206void __init_or_module apply_alternatives(struct alt_instr *start,
207 struct alt_instr *end)
9a0b5817 208{
9a0b5817 209 struct alt_instr *a;
1b1d9258 210 u8 insnbuf[MAX_PATCH_LEN];
9a0b5817 211
77bf90ed 212 DPRINTK("%s: alt table %p -> %p\n", __func__, start, end);
9a0b5817 213 for (a = start; a < end; a++) {
ab144f5e 214 u8 *instr = a->instr;
9a0b5817 215 BUG_ON(a->replacementlen > a->instrlen);
ab144f5e 216 BUG_ON(a->instrlen > sizeof(insnbuf));
3b770a21 217 BUG_ON(a->cpuid >= NCAPINTS*32);
9a0b5817
GH
218 if (!boot_cpu_has(a->cpuid))
219 continue;
d167a518
GH
220#ifdef CONFIG_X86_64
221 /* vsyscall code is not mapped yet. resolve it manually. */
222 if (instr >= (u8 *)VSYSCALL_START && instr < (u8*)VSYSCALL_END) {
223 instr = __va(instr - (u8*)VSYSCALL_START + (u8*)__pa_symbol(&__vsyscall_0));
224 DPRINTK("%s: vsyscall fixup: %p => %p\n",
77bf90ed 225 __func__, a->instr, instr);
d167a518
GH
226 }
227#endif
ab144f5e 228 memcpy(insnbuf, a->replacement, a->replacementlen);
1b1d9258
JB
229 if (*insnbuf == 0xe8 && a->replacementlen == 5)
230 *(s32 *)(insnbuf + 1) += a->replacement - a->instr;
ab144f5e
AK
231 add_nops(insnbuf + a->replacementlen,
232 a->instrlen - a->replacementlen);
e587cadd 233 text_poke_early(instr, insnbuf, a->instrlen);
9a0b5817
GH
234 }
235}
236
8ec4d41f
GH
237#ifdef CONFIG_SMP
238
5967ed87
JB
239static void alternatives_smp_lock(const s32 *start, const s32 *end,
240 u8 *text, u8 *text_end)
9a0b5817 241{
5967ed87 242 const s32 *poff;
9a0b5817 243
3945dab4 244 mutex_lock(&text_mutex);
5967ed87
JB
245 for (poff = start; poff < end; poff++) {
246 u8 *ptr = (u8 *)poff + *poff;
247
248 if (!*poff || ptr < text || ptr >= text_end)
9a0b5817 249 continue;
f88f07e0 250 /* turn DS segment override prefix into lock prefix */
d9c5841e
PA
251 if (*ptr == 0x3e)
252 text_poke(ptr, ((unsigned char []){0xf0}), 1);
9a0b5817 253 };
3945dab4 254 mutex_unlock(&text_mutex);
9a0b5817
GH
255}
256
5967ed87
JB
257static void alternatives_smp_unlock(const s32 *start, const s32 *end,
258 u8 *text, u8 *text_end)
9a0b5817 259{
5967ed87 260 const s32 *poff;
9a0b5817 261
b7fb4af0
JF
262 if (noreplace_smp)
263 return;
264
3945dab4 265 mutex_lock(&text_mutex);
5967ed87
JB
266 for (poff = start; poff < end; poff++) {
267 u8 *ptr = (u8 *)poff + *poff;
268
269 if (!*poff || ptr < text || ptr >= text_end)
9a0b5817 270 continue;
f88f07e0 271 /* turn lock prefix into DS segment override prefix */
d9c5841e
PA
272 if (*ptr == 0xf0)
273 text_poke(ptr, ((unsigned char []){0x3E}), 1);
9a0b5817 274 };
3945dab4 275 mutex_unlock(&text_mutex);
9a0b5817
GH
276}
277
278struct smp_alt_module {
279 /* what is this ??? */
280 struct module *mod;
281 char *name;
282
283 /* ptrs to lock prefixes */
5967ed87
JB
284 const s32 *locks;
285 const s32 *locks_end;
9a0b5817
GH
286
287 /* .text segment, needed to avoid patching init code ;) */
288 u8 *text;
289 u8 *text_end;
290
291 struct list_head next;
292};
293static LIST_HEAD(smp_alt_modules);
2f1dafe5 294static DEFINE_MUTEX(smp_alt);
ca74a6f8 295static int smp_mode = 1; /* protected by smp_alt */
9a0b5817 296
8b5a10fc
JB
297void __init_or_module alternatives_smp_module_add(struct module *mod,
298 char *name,
299 void *locks, void *locks_end,
300 void *text, void *text_end)
9a0b5817
GH
301{
302 struct smp_alt_module *smp;
9a0b5817 303
b7fb4af0
JF
304 if (noreplace_smp)
305 return;
306
9a0b5817
GH
307 if (smp_alt_once) {
308 if (boot_cpu_has(X86_FEATURE_UP))
309 alternatives_smp_unlock(locks, locks_end,
310 text, text_end);
311 return;
312 }
313
314 smp = kzalloc(sizeof(*smp), GFP_KERNEL);
315 if (NULL == smp)
316 return; /* we'll run the (safe but slow) SMP code then ... */
317
318 smp->mod = mod;
319 smp->name = name;
320 smp->locks = locks;
321 smp->locks_end = locks_end;
322 smp->text = text;
323 smp->text_end = text_end;
324 DPRINTK("%s: locks %p -> %p, text %p -> %p, name %s\n",
77bf90ed 325 __func__, smp->locks, smp->locks_end,
9a0b5817
GH
326 smp->text, smp->text_end, smp->name);
327
2f1dafe5 328 mutex_lock(&smp_alt);
9a0b5817
GH
329 list_add_tail(&smp->next, &smp_alt_modules);
330 if (boot_cpu_has(X86_FEATURE_UP))
331 alternatives_smp_unlock(smp->locks, smp->locks_end,
332 smp->text, smp->text_end);
2f1dafe5 333 mutex_unlock(&smp_alt);
9a0b5817
GH
334}
335
8b5a10fc 336void __init_or_module alternatives_smp_module_del(struct module *mod)
9a0b5817
GH
337{
338 struct smp_alt_module *item;
9a0b5817 339
b7fb4af0 340 if (smp_alt_once || noreplace_smp)
9a0b5817
GH
341 return;
342
2f1dafe5 343 mutex_lock(&smp_alt);
9a0b5817
GH
344 list_for_each_entry(item, &smp_alt_modules, next) {
345 if (mod != item->mod)
346 continue;
347 list_del(&item->next);
2f1dafe5 348 mutex_unlock(&smp_alt);
77bf90ed 349 DPRINTK("%s: %s\n", __func__, item->name);
9a0b5817
GH
350 kfree(item);
351 return;
352 }
2f1dafe5 353 mutex_unlock(&smp_alt);
9a0b5817
GH
354}
355
3fb82d56 356bool skip_smp_alternatives;
9a0b5817
GH
357void alternatives_smp_switch(int smp)
358{
359 struct smp_alt_module *mod;
9a0b5817 360
3047e99e
IM
361#ifdef CONFIG_LOCKDEP
362 /*
17abecfe
IM
363 * Older binutils section handling bug prevented
364 * alternatives-replacement from working reliably.
365 *
366 * If this still occurs then you should see a hang
367 * or crash shortly after this line:
3047e99e 368 */
17abecfe 369 printk("lockdep: fixing up alternatives.\n");
3047e99e
IM
370#endif
371
3fb82d56 372 if (noreplace_smp || smp_alt_once || skip_smp_alternatives)
9a0b5817
GH
373 return;
374 BUG_ON(!smp && (num_online_cpus() > 1));
375
2f1dafe5 376 mutex_lock(&smp_alt);
ca74a6f8
AK
377
378 /*
379 * Avoid unnecessary switches because it forces JIT based VMs to
380 * throw away all cached translations, which can be quite costly.
381 */
382 if (smp == smp_mode) {
383 /* nothing */
384 } else if (smp) {
9a0b5817 385 printk(KERN_INFO "SMP alternatives: switching to SMP code\n");
53756d37
JF
386 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
387 clear_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
9a0b5817
GH
388 list_for_each_entry(mod, &smp_alt_modules, next)
389 alternatives_smp_lock(mod->locks, mod->locks_end,
390 mod->text, mod->text_end);
391 } else {
392 printk(KERN_INFO "SMP alternatives: switching to UP code\n");
53756d37
JF
393 set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
394 set_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
9a0b5817
GH
395 list_for_each_entry(mod, &smp_alt_modules, next)
396 alternatives_smp_unlock(mod->locks, mod->locks_end,
397 mod->text, mod->text_end);
398 }
ca74a6f8 399 smp_mode = smp;
2f1dafe5 400 mutex_unlock(&smp_alt);
9a0b5817
GH
401}
402
2cfa1978
MH
403/* Return 1 if the address range is reserved for smp-alternatives */
404int alternatives_text_reserved(void *start, void *end)
405{
406 struct smp_alt_module *mod;
5967ed87 407 const s32 *poff;
076dc4a6
MH
408 u8 *text_start = start;
409 u8 *text_end = end;
2cfa1978
MH
410
411 list_for_each_entry(mod, &smp_alt_modules, next) {
076dc4a6 412 if (mod->text > text_end || mod->text_end < text_start)
2cfa1978 413 continue;
5967ed87
JB
414 for (poff = mod->locks; poff < mod->locks_end; poff++) {
415 const u8 *ptr = (const u8 *)poff + *poff;
416
417 if (text_start <= ptr && text_end > ptr)
2cfa1978 418 return 1;
5967ed87 419 }
2cfa1978
MH
420 }
421
422 return 0;
423}
8ec4d41f
GH
424#endif
425
139ec7c4 426#ifdef CONFIG_PARAVIRT
8b5a10fc
JB
427void __init_or_module apply_paravirt(struct paravirt_patch_site *start,
428 struct paravirt_patch_site *end)
139ec7c4 429{
98de032b 430 struct paravirt_patch_site *p;
ab144f5e 431 char insnbuf[MAX_PATCH_LEN];
139ec7c4 432
959b4fdf
JF
433 if (noreplace_paravirt)
434 return;
435
139ec7c4
RR
436 for (p = start; p < end; p++) {
437 unsigned int used;
438
ab144f5e 439 BUG_ON(p->len > MAX_PATCH_LEN);
d34fda4a
CW
440 /* prep the buffer with the original instructions */
441 memcpy(insnbuf, p->instr, p->len);
93b1eab3
JF
442 used = pv_init_ops.patch(p->instrtype, p->clobbers, insnbuf,
443 (unsigned long)p->instr, p->len);
7f63c41c 444
63f70270
JF
445 BUG_ON(used > p->len);
446
139ec7c4 447 /* Pad the rest with nops */
ab144f5e 448 add_nops(insnbuf + used, p->len - used);
e587cadd 449 text_poke_early(p->instr, insnbuf, p->len);
139ec7c4 450 }
139ec7c4 451}
98de032b 452extern struct paravirt_patch_site __start_parainstructions[],
139ec7c4
RR
453 __stop_parainstructions[];
454#endif /* CONFIG_PARAVIRT */
455
9a0b5817
GH
456void __init alternative_instructions(void)
457{
8f4e956b
AK
458 /* The patching is not fully atomic, so try to avoid local interruptions
459 that might execute the to be patched code.
460 Other CPUs are not running. */
461 stop_nmi();
123aa76e
AK
462
463 /*
464 * Don't stop machine check exceptions while patching.
465 * MCEs only happen when something got corrupted and in this
466 * case we must do something about the corruption.
467 * Ignoring it is worse than a unlikely patching race.
468 * Also machine checks tend to be broadcast and if one CPU
469 * goes into machine check the others follow quickly, so we don't
470 * expect a machine check to cause undue problems during to code
471 * patching.
472 */
8f4e956b 473
9a0b5817
GH
474 apply_alternatives(__alt_instructions, __alt_instructions_end);
475
476 /* switch to patch-once-at-boottime-only mode and free the
477 * tables in case we know the number of CPUs will never ever
478 * change */
479#ifdef CONFIG_HOTPLUG_CPU
480 if (num_possible_cpus() < 2)
481 smp_alt_once = 1;
9a0b5817
GH
482#endif
483
8ec4d41f 484#ifdef CONFIG_SMP
9a0b5817
GH
485 if (smp_alt_once) {
486 if (1 == num_possible_cpus()) {
487 printk(KERN_INFO "SMP alternatives: switching to UP code\n");
53756d37
JF
488 set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
489 set_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
490
9a0b5817
GH
491 alternatives_smp_unlock(__smp_locks, __smp_locks_end,
492 _text, _etext);
493 }
9a0b5817 494 } else {
9a0b5817
GH
495 alternatives_smp_module_add(NULL, "core kernel",
496 __smp_locks, __smp_locks_end,
497 _text, _etext);
ca74a6f8
AK
498
499 /* Only switch to UP mode if we don't immediately boot others */
649c6653 500 if (num_present_cpus() == 1 || setup_max_cpus <= 1)
ca74a6f8 501 alternatives_smp_switch(0);
9a0b5817 502 }
8ec4d41f 503#endif
441d40dc 504 apply_paravirt(__parainstructions, __parainstructions_end);
8f4e956b 505
f68fd5f4
FW
506 if (smp_alt_once)
507 free_init_pages("SMP alternatives",
508 (unsigned long)__smp_locks,
509 (unsigned long)__smp_locks_end);
510
8f4e956b 511 restart_nmi();
9a0b5817 512}
19d36ccd 513
e587cadd
MD
514/**
515 * text_poke_early - Update instructions on a live kernel at boot time
516 * @addr: address to modify
517 * @opcode: source of the copy
518 * @len: length to copy
519 *
19d36ccd
AK
520 * When you use this code to patch more than one byte of an instruction
521 * you need to make sure that other CPUs cannot execute this code in parallel.
e587cadd
MD
522 * Also no thread must be currently preempted in the middle of these
523 * instructions. And on the local CPU you need to be protected again NMI or MCE
524 * handlers seeing an inconsistent instruction while you patch.
19d36ccd 525 */
fa6f2cc7 526void *__init_or_module text_poke_early(void *addr, const void *opcode,
8b5a10fc 527 size_t len)
19d36ccd 528{
e587cadd
MD
529 unsigned long flags;
530 local_irq_save(flags);
19d36ccd 531 memcpy(addr, opcode, len);
e587cadd 532 sync_core();
5367b688 533 local_irq_restore(flags);
e587cadd
MD
534 /* Could also do a CLFLUSH here to speed up CPU recovery; but
535 that causes hangs on some VIA CPUs. */
536 return addr;
537}
538
539/**
540 * text_poke - Update instructions on a live kernel
541 * @addr: address to modify
542 * @opcode: source of the copy
543 * @len: length to copy
544 *
545 * Only atomic text poke/set should be allowed when not doing early patching.
546 * It means the size must be writable atomically and the address must be aligned
547 * in a way that permits an atomic write. It also makes sure we fit on a single
548 * page.
78ff7fae
MH
549 *
550 * Note: Must be called under text_mutex.
e587cadd
MD
551 */
552void *__kprobes text_poke(void *addr, const void *opcode, size_t len)
553{
78ff7fae 554 unsigned long flags;
e587cadd 555 char *vaddr;
b7b66baa
MD
556 struct page *pages[2];
557 int i;
e587cadd 558
b7b66baa
MD
559 if (!core_kernel_text((unsigned long)addr)) {
560 pages[0] = vmalloc_to_page(addr);
561 pages[1] = vmalloc_to_page(addr + PAGE_SIZE);
15a601eb 562 } else {
b7b66baa 563 pages[0] = virt_to_page(addr);
00c6b2d5 564 WARN_ON(!PageReserved(pages[0]));
b7b66baa 565 pages[1] = virt_to_page(addr + PAGE_SIZE);
e587cadd 566 }
b7b66baa 567 BUG_ON(!pages[0]);
7cf49427 568 local_irq_save(flags);
78ff7fae
MH
569 set_fixmap(FIX_TEXT_POKE0, page_to_phys(pages[0]));
570 if (pages[1])
571 set_fixmap(FIX_TEXT_POKE1, page_to_phys(pages[1]));
572 vaddr = (char *)fix_to_virt(FIX_TEXT_POKE0);
b7b66baa 573 memcpy(&vaddr[(unsigned long)addr & ~PAGE_MASK], opcode, len);
78ff7fae
MH
574 clear_fixmap(FIX_TEXT_POKE0);
575 if (pages[1])
576 clear_fixmap(FIX_TEXT_POKE1);
577 local_flush_tlb();
19d36ccd 578 sync_core();
a534b679
AK
579 /* Could also do a CLFLUSH here to speed up CPU recovery; but
580 that causes hangs on some VIA CPUs. */
b7b66baa
MD
581 for (i = 0; i < len; i++)
582 BUG_ON(((char *)addr)[i] != ((char *)opcode)[i]);
7cf49427 583 local_irq_restore(flags);
e587cadd 584 return addr;
19d36ccd 585}
3d55cc8a
MH
586
587/*
588 * Cross-modifying kernel text with stop_machine().
589 * This code originally comes from immediate value.
590 */
591static atomic_t stop_machine_first;
592static int wrote_text;
593
594struct text_poke_params {
595 void *addr;
596 const void *opcode;
597 size_t len;
598};
599
600static int __kprobes stop_machine_text_poke(void *data)
601{
602 struct text_poke_params *tpp = data;
603
604 if (atomic_dec_and_test(&stop_machine_first)) {
605 text_poke(tpp->addr, tpp->opcode, tpp->len);
606 smp_wmb(); /* Make sure other cpus see that this has run */
607 wrote_text = 1;
608 } else {
609 while (!wrote_text)
e5a11016
MH
610 cpu_relax();
611 smp_mb(); /* Load wrote_text before following execution */
3d55cc8a
MH
612 }
613
614 flush_icache_range((unsigned long)tpp->addr,
615 (unsigned long)tpp->addr + tpp->len);
616 return 0;
617}
618
619/**
620 * text_poke_smp - Update instructions on a live kernel on SMP
621 * @addr: address to modify
622 * @opcode: source of the copy
623 * @len: length to copy
624 *
625 * Modify multi-byte instruction by using stop_machine() on SMP. This allows
626 * user to poke/set multi-byte text on SMP. Only non-NMI/MCE code modifying
627 * should be allowed, since stop_machine() does _not_ protect code against
628 * NMI and MCE.
629 *
630 * Note: Must be called under get_online_cpus() and text_mutex.
631 */
632void *__kprobes text_poke_smp(void *addr, const void *opcode, size_t len)
633{
634 struct text_poke_params tpp;
635
636 tpp.addr = addr;
637 tpp.opcode = opcode;
638 tpp.len = len;
639 atomic_set(&stop_machine_first, 1);
640 wrote_text = 0;
3caa3751 641 /* Use __stop_machine() because the caller already got online_cpus. */
404ba5d7 642 __stop_machine(stop_machine_text_poke, (void *)&tpp, cpu_online_mask);
3d55cc8a
MH
643 return addr;
644}
645
bf5438fc 646#if defined(CONFIG_DYNAMIC_FTRACE) || defined(HAVE_JUMP_LABEL)
f49aa448 647
2d1d7126
PA
648#ifdef CONFIG_X86_64
649unsigned char ideal_nop5[5] = { 0x66, 0x66, 0x66, 0x66, 0x90 };
650#else
651unsigned char ideal_nop5[5] = { 0x3e, 0x8d, 0x74, 0x26, 0x00 };
652#endif
f49aa448
JB
653
654void __init arch_init_ideal_nop5(void)
655{
f49aa448 656 /*
2d1d7126
PA
657 * There is no good nop for all x86 archs. This selection
658 * algorithm should be unified with the one in find_nop_table(),
659 * but this should be good enough for now.
f49aa448 660 *
2d1d7126
PA
661 * For cases other than the ones below, use the safe (as in
662 * always functional) defaults above.
f49aa448 663 */
2d1d7126
PA
664#ifdef CONFIG_X86_64
665 /* Don't use these on 32 bits due to broken virtualizers */
666 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
667 memcpy(ideal_nop5, p6_nops[5], 5);
668#endif
f49aa448
JB
669}
670#endif