x86/mm/srat: Print non-volatile flag in SRAT
[linux-2.6-block.git] / arch / x86 / kernel / alternative.c
CommitLineData
c767a54b
JP
1#define pr_fmt(fmt) "SMP alternatives: " fmt
2
9a0b5817 3#include <linux/module.h>
f6a57033 4#include <linux/sched.h>
2f1dafe5 5#include <linux/mutex.h>
9a0b5817 6#include <linux/list.h>
8b5a10fc 7#include <linux/stringify.h>
19d36ccd
AK
8#include <linux/mm.h>
9#include <linux/vmalloc.h>
3945dab4 10#include <linux/memory.h>
3d55cc8a 11#include <linux/stop_machine.h>
5a0e3ad6 12#include <linux/slab.h>
fd4363ff 13#include <linux/kdebug.h>
9a0b5817
GH
14#include <asm/alternative.h>
15#include <asm/sections.h>
19d36ccd 16#include <asm/pgtable.h>
8f4e956b
AK
17#include <asm/mce.h>
18#include <asm/nmi.h>
e587cadd 19#include <asm/cacheflush.h>
78ff7fae 20#include <asm/tlbflush.h>
e587cadd 21#include <asm/io.h>
78ff7fae 22#include <asm/fixmap.h>
9a0b5817 23
5e907bb0
IM
24int __read_mostly alternatives_patched;
25
26EXPORT_SYMBOL_GPL(alternatives_patched);
27
ab144f5e
AK
28#define MAX_PATCH_LEN (255-1)
29
8b5a10fc 30static int __initdata_or_module debug_alternative;
b7fb4af0 31
d167a518
GH
32static int __init debug_alt(char *str)
33{
34 debug_alternative = 1;
35 return 1;
36}
d167a518
GH
37__setup("debug-alternative", debug_alt);
38
09488165
JB
39static int noreplace_smp;
40
b7fb4af0
JF
41static int __init setup_noreplace_smp(char *str)
42{
43 noreplace_smp = 1;
44 return 1;
45}
46__setup("noreplace-smp", setup_noreplace_smp);
47
959b4fdf 48#ifdef CONFIG_PARAVIRT
8b5a10fc 49static int __initdata_or_module noreplace_paravirt = 0;
959b4fdf
JF
50
51static int __init setup_noreplace_paravirt(char *str)
52{
53 noreplace_paravirt = 1;
54 return 1;
55}
56__setup("noreplace-paravirt", setup_noreplace_paravirt);
57#endif
b7fb4af0 58
db477a33
BP
59#define DPRINTK(fmt, args...) \
60do { \
61 if (debug_alternative) \
62 printk(KERN_DEBUG "%s: " fmt "\n", __func__, ##args); \
c767a54b 63} while (0)
d167a518 64
48c7a250
BP
65#define DUMP_BYTES(buf, len, fmt, args...) \
66do { \
67 if (unlikely(debug_alternative)) { \
68 int j; \
69 \
70 if (!(len)) \
71 break; \
72 \
73 printk(KERN_DEBUG fmt, ##args); \
74 for (j = 0; j < (len) - 1; j++) \
75 printk(KERN_CONT "%02hhx ", buf[j]); \
76 printk(KERN_CONT "%02hhx\n", buf[j]); \
77 } \
78} while (0)
79
dc326fca
PA
80/*
81 * Each GENERIC_NOPX is of X bytes, and defined as an array of bytes
82 * that correspond to that nop. Getting from one nop to the next, we
83 * add to the array the offset that is equal to the sum of all sizes of
84 * nops preceding the one we are after.
85 *
86 * Note: The GENERIC_NOP5_ATOMIC is at the end, as it breaks the
87 * nice symmetry of sizes of the previous nops.
88 */
8b5a10fc 89#if defined(GENERIC_NOP1) && !defined(CONFIG_X86_64)
dc326fca
PA
90static const unsigned char intelnops[] =
91{
92 GENERIC_NOP1,
93 GENERIC_NOP2,
94 GENERIC_NOP3,
95 GENERIC_NOP4,
96 GENERIC_NOP5,
97 GENERIC_NOP6,
98 GENERIC_NOP7,
99 GENERIC_NOP8,
100 GENERIC_NOP5_ATOMIC
101};
102static const unsigned char * const intel_nops[ASM_NOP_MAX+2] =
103{
9a0b5817
GH
104 NULL,
105 intelnops,
106 intelnops + 1,
107 intelnops + 1 + 2,
108 intelnops + 1 + 2 + 3,
109 intelnops + 1 + 2 + 3 + 4,
110 intelnops + 1 + 2 + 3 + 4 + 5,
111 intelnops + 1 + 2 + 3 + 4 + 5 + 6,
112 intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
dc326fca 113 intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
9a0b5817 114};
d167a518
GH
115#endif
116
117#ifdef K8_NOP1
dc326fca
PA
118static const unsigned char k8nops[] =
119{
120 K8_NOP1,
121 K8_NOP2,
122 K8_NOP3,
123 K8_NOP4,
124 K8_NOP5,
125 K8_NOP6,
126 K8_NOP7,
127 K8_NOP8,
128 K8_NOP5_ATOMIC
129};
130static const unsigned char * const k8_nops[ASM_NOP_MAX+2] =
131{
9a0b5817
GH
132 NULL,
133 k8nops,
134 k8nops + 1,
135 k8nops + 1 + 2,
136 k8nops + 1 + 2 + 3,
137 k8nops + 1 + 2 + 3 + 4,
138 k8nops + 1 + 2 + 3 + 4 + 5,
139 k8nops + 1 + 2 + 3 + 4 + 5 + 6,
140 k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
dc326fca 141 k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
9a0b5817 142};
d167a518
GH
143#endif
144
8b5a10fc 145#if defined(K7_NOP1) && !defined(CONFIG_X86_64)
dc326fca
PA
146static const unsigned char k7nops[] =
147{
148 K7_NOP1,
149 K7_NOP2,
150 K7_NOP3,
151 K7_NOP4,
152 K7_NOP5,
153 K7_NOP6,
154 K7_NOP7,
155 K7_NOP8,
156 K7_NOP5_ATOMIC
157};
158static const unsigned char * const k7_nops[ASM_NOP_MAX+2] =
159{
9a0b5817
GH
160 NULL,
161 k7nops,
162 k7nops + 1,
163 k7nops + 1 + 2,
164 k7nops + 1 + 2 + 3,
165 k7nops + 1 + 2 + 3 + 4,
166 k7nops + 1 + 2 + 3 + 4 + 5,
167 k7nops + 1 + 2 + 3 + 4 + 5 + 6,
168 k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
dc326fca 169 k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
9a0b5817 170};
d167a518
GH
171#endif
172
32c464f5 173#ifdef P6_NOP1
cb09cad4 174static const unsigned char p6nops[] =
dc326fca
PA
175{
176 P6_NOP1,
177 P6_NOP2,
178 P6_NOP3,
179 P6_NOP4,
180 P6_NOP5,
181 P6_NOP6,
182 P6_NOP7,
183 P6_NOP8,
184 P6_NOP5_ATOMIC
185};
186static const unsigned char * const p6_nops[ASM_NOP_MAX+2] =
187{
32c464f5
JB
188 NULL,
189 p6nops,
190 p6nops + 1,
191 p6nops + 1 + 2,
192 p6nops + 1 + 2 + 3,
193 p6nops + 1 + 2 + 3 + 4,
194 p6nops + 1 + 2 + 3 + 4 + 5,
195 p6nops + 1 + 2 + 3 + 4 + 5 + 6,
196 p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
dc326fca 197 p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
32c464f5
JB
198};
199#endif
200
dc326fca 201/* Initialize these to a safe default */
d167a518 202#ifdef CONFIG_X86_64
dc326fca
PA
203const unsigned char * const *ideal_nops = p6_nops;
204#else
205const unsigned char * const *ideal_nops = intel_nops;
206#endif
d167a518 207
dc326fca 208void __init arch_init_ideal_nops(void)
d167a518 209{
dc326fca
PA
210 switch (boot_cpu_data.x86_vendor) {
211 case X86_VENDOR_INTEL:
d8d9766c
PA
212 /*
213 * Due to a decoder implementation quirk, some
214 * specific Intel CPUs actually perform better with
215 * the "k8_nops" than with the SDM-recommended NOPs.
216 */
217 if (boot_cpu_data.x86 == 6 &&
218 boot_cpu_data.x86_model >= 0x0f &&
219 boot_cpu_data.x86_model != 0x1c &&
220 boot_cpu_data.x86_model != 0x26 &&
221 boot_cpu_data.x86_model != 0x27 &&
222 boot_cpu_data.x86_model < 0x30) {
223 ideal_nops = k8_nops;
224 } else if (boot_cpu_has(X86_FEATURE_NOPL)) {
dc326fca
PA
225 ideal_nops = p6_nops;
226 } else {
227#ifdef CONFIG_X86_64
228 ideal_nops = k8_nops;
229#else
230 ideal_nops = intel_nops;
231#endif
232 }
d6250a3f 233 break;
f21262b8
BP
234
235 case X86_VENDOR_AMD:
236 if (boot_cpu_data.x86 > 0xf) {
237 ideal_nops = p6_nops;
238 return;
239 }
240
241 /* fall through */
242
dc326fca
PA
243 default:
244#ifdef CONFIG_X86_64
245 ideal_nops = k8_nops;
246#else
247 if (boot_cpu_has(X86_FEATURE_K8))
248 ideal_nops = k8_nops;
249 else if (boot_cpu_has(X86_FEATURE_K7))
250 ideal_nops = k7_nops;
251 else
252 ideal_nops = intel_nops;
253#endif
254 }
9a0b5817
GH
255}
256
ab144f5e 257/* Use this to add nops to a buffer, then text_poke the whole buffer. */
8b5a10fc 258static void __init_or_module add_nops(void *insns, unsigned int len)
139ec7c4 259{
139ec7c4
RR
260 while (len > 0) {
261 unsigned int noplen = len;
262 if (noplen > ASM_NOP_MAX)
263 noplen = ASM_NOP_MAX;
dc326fca 264 memcpy(insns, ideal_nops[noplen], noplen);
139ec7c4
RR
265 insns += noplen;
266 len -= noplen;
267 }
268}
269
d167a518 270extern struct alt_instr __alt_instructions[], __alt_instructions_end[];
5967ed87 271extern s32 __smp_locks[], __smp_locks_end[];
fa6f2cc7 272void *text_poke_early(void *addr, const void *opcode, size_t len);
d167a518 273
48c7a250
BP
274/*
275 * Are we looking at a near JMP with a 1 or 4-byte displacement.
276 */
277static inline bool is_jmp(const u8 opcode)
278{
279 return opcode == 0xeb || opcode == 0xe9;
280}
281
282static void __init_or_module
283recompute_jump(struct alt_instr *a, u8 *orig_insn, u8 *repl_insn, u8 *insnbuf)
284{
285 u8 *next_rip, *tgt_rip;
286 s32 n_dspl, o_dspl;
287 int repl_len;
288
289 if (a->replacementlen != 5)
290 return;
291
292 o_dspl = *(s32 *)(insnbuf + 1);
293
294 /* next_rip of the replacement JMP */
295 next_rip = repl_insn + a->replacementlen;
296 /* target rip of the replacement JMP */
297 tgt_rip = next_rip + o_dspl;
298 n_dspl = tgt_rip - orig_insn;
299
300 DPRINTK("target RIP: %p, new_displ: 0x%x", tgt_rip, n_dspl);
301
302 if (tgt_rip - orig_insn >= 0) {
303 if (n_dspl - 2 <= 127)
304 goto two_byte_jmp;
305 else
306 goto five_byte_jmp;
307 /* negative offset */
308 } else {
309 if (((n_dspl - 2) & 0xff) == (n_dspl - 2))
310 goto two_byte_jmp;
311 else
312 goto five_byte_jmp;
313 }
314
315two_byte_jmp:
316 n_dspl -= 2;
317
318 insnbuf[0] = 0xeb;
319 insnbuf[1] = (s8)n_dspl;
320 add_nops(insnbuf + 2, 3);
321
322 repl_len = 2;
323 goto done;
324
325five_byte_jmp:
326 n_dspl -= 5;
327
328 insnbuf[0] = 0xe9;
329 *(s32 *)&insnbuf[1] = n_dspl;
330
331 repl_len = 5;
332
333done:
334
335 DPRINTK("final displ: 0x%08x, JMP 0x%lx",
336 n_dspl, (unsigned long)orig_insn + n_dspl + repl_len);
337}
338
4fd4b6e5
BP
339static void __init_or_module optimize_nops(struct alt_instr *a, u8 *instr)
340{
69df353f
BP
341 if (instr[0] != 0x90)
342 return;
343
4fd4b6e5
BP
344 add_nops(instr + (a->instrlen - a->padlen), a->padlen);
345
346 DUMP_BYTES(instr, a->instrlen, "%p: [%d:%d) optimized NOPs: ",
347 instr, a->instrlen - a->padlen, a->padlen);
348}
349
db477a33
BP
350/*
351 * Replace instructions with better alternatives for this CPU type. This runs
352 * before SMP is initialized to avoid SMP problems with self modifying code.
353 * This implies that asymmetric systems where APs have less capabilities than
354 * the boot processor are not handled. Tough. Make sure you disable such
355 * features by hand.
356 */
8b5a10fc
JB
357void __init_or_module apply_alternatives(struct alt_instr *start,
358 struct alt_instr *end)
9a0b5817 359{
9a0b5817 360 struct alt_instr *a;
59e97e4d 361 u8 *instr, *replacement;
1b1d9258 362 u8 insnbuf[MAX_PATCH_LEN];
9a0b5817 363
db477a33 364 DPRINTK("alt table %p -> %p", start, end);
50973133
FY
365 /*
366 * The scan order should be from start to end. A later scanned
db477a33 367 * alternative code can overwrite previously scanned alternative code.
50973133
FY
368 * Some kernel functions (e.g. memcpy, memset, etc) use this order to
369 * patch code.
370 *
371 * So be careful if you want to change the scan order to any other
372 * order.
373 */
9a0b5817 374 for (a = start; a < end; a++) {
48c7a250
BP
375 int insnbuf_sz = 0;
376
59e97e4d
AL
377 instr = (u8 *)&a->instr_offset + a->instr_offset;
378 replacement = (u8 *)&a->repl_offset + a->repl_offset;
ab144f5e 379 BUG_ON(a->instrlen > sizeof(insnbuf));
65fc985b 380 BUG_ON(a->cpuid >= (NCAPINTS + NBUGINTS) * 32);
4fd4b6e5
BP
381 if (!boot_cpu_has(a->cpuid)) {
382 if (a->padlen > 1)
383 optimize_nops(a, instr);
384
9a0b5817 385 continue;
4fd4b6e5 386 }
59e97e4d 387
dbe4058a 388 DPRINTK("feat: %d*32+%d, old: (%p, len: %d), repl: (%p, len: %d), pad: %d",
db477a33
BP
389 a->cpuid >> 5,
390 a->cpuid & 0x1f,
391 instr, a->instrlen,
dbe4058a 392 replacement, a->replacementlen, a->padlen);
db477a33 393
48c7a250
BP
394 DUMP_BYTES(instr, a->instrlen, "%p: old_insn: ", instr);
395 DUMP_BYTES(replacement, a->replacementlen, "%p: rpl_insn: ", replacement);
396
59e97e4d 397 memcpy(insnbuf, replacement, a->replacementlen);
48c7a250 398 insnbuf_sz = a->replacementlen;
59e97e4d
AL
399
400 /* 0xe8 is a relative jump; fix the offset. */
db477a33
BP
401 if (*insnbuf == 0xe8 && a->replacementlen == 5) {
402 *(s32 *)(insnbuf + 1) += replacement - instr;
48c7a250
BP
403 DPRINTK("Fix CALL offset: 0x%x, CALL 0x%lx",
404 *(s32 *)(insnbuf + 1),
405 (unsigned long)instr + *(s32 *)(insnbuf + 1) + 5);
db477a33 406 }
59e97e4d 407
48c7a250
BP
408 if (a->replacementlen && is_jmp(replacement[0]))
409 recompute_jump(a, instr, replacement, insnbuf);
410
411 if (a->instrlen > a->replacementlen) {
4332195c
BP
412 add_nops(insnbuf + a->replacementlen,
413 a->instrlen - a->replacementlen);
48c7a250
BP
414 insnbuf_sz += a->instrlen - a->replacementlen;
415 }
416 DUMP_BYTES(insnbuf, insnbuf_sz, "%p: final_insn: ", instr);
59e97e4d 417
48c7a250 418 text_poke_early(instr, insnbuf, insnbuf_sz);
9a0b5817
GH
419 }
420}
421
8ec4d41f 422#ifdef CONFIG_SMP
5967ed87
JB
423static void alternatives_smp_lock(const s32 *start, const s32 *end,
424 u8 *text, u8 *text_end)
9a0b5817 425{
5967ed87 426 const s32 *poff;
9a0b5817 427
3945dab4 428 mutex_lock(&text_mutex);
5967ed87
JB
429 for (poff = start; poff < end; poff++) {
430 u8 *ptr = (u8 *)poff + *poff;
431
432 if (!*poff || ptr < text || ptr >= text_end)
9a0b5817 433 continue;
f88f07e0 434 /* turn DS segment override prefix into lock prefix */
d9c5841e
PA
435 if (*ptr == 0x3e)
436 text_poke(ptr, ((unsigned char []){0xf0}), 1);
4b8073e4 437 }
3945dab4 438 mutex_unlock(&text_mutex);
9a0b5817
GH
439}
440
5967ed87
JB
441static void alternatives_smp_unlock(const s32 *start, const s32 *end,
442 u8 *text, u8 *text_end)
9a0b5817 443{
5967ed87 444 const s32 *poff;
9a0b5817 445
3945dab4 446 mutex_lock(&text_mutex);
5967ed87
JB
447 for (poff = start; poff < end; poff++) {
448 u8 *ptr = (u8 *)poff + *poff;
449
450 if (!*poff || ptr < text || ptr >= text_end)
9a0b5817 451 continue;
f88f07e0 452 /* turn lock prefix into DS segment override prefix */
d9c5841e
PA
453 if (*ptr == 0xf0)
454 text_poke(ptr, ((unsigned char []){0x3E}), 1);
4b8073e4 455 }
3945dab4 456 mutex_unlock(&text_mutex);
9a0b5817
GH
457}
458
459struct smp_alt_module {
460 /* what is this ??? */
461 struct module *mod;
462 char *name;
463
464 /* ptrs to lock prefixes */
5967ed87
JB
465 const s32 *locks;
466 const s32 *locks_end;
9a0b5817
GH
467
468 /* .text segment, needed to avoid patching init code ;) */
469 u8 *text;
470 u8 *text_end;
471
472 struct list_head next;
473};
474static LIST_HEAD(smp_alt_modules);
2f1dafe5 475static DEFINE_MUTEX(smp_alt);
816afe4f 476static bool uniproc_patched = false; /* protected by smp_alt */
9a0b5817 477
8b5a10fc
JB
478void __init_or_module alternatives_smp_module_add(struct module *mod,
479 char *name,
480 void *locks, void *locks_end,
481 void *text, void *text_end)
9a0b5817
GH
482{
483 struct smp_alt_module *smp;
9a0b5817 484
816afe4f
RR
485 mutex_lock(&smp_alt);
486 if (!uniproc_patched)
487 goto unlock;
b7fb4af0 488
816afe4f
RR
489 if (num_possible_cpus() == 1)
490 /* Don't bother remembering, we'll never have to undo it. */
491 goto smp_unlock;
9a0b5817
GH
492
493 smp = kzalloc(sizeof(*smp), GFP_KERNEL);
494 if (NULL == smp)
816afe4f
RR
495 /* we'll run the (safe but slow) SMP code then ... */
496 goto unlock;
9a0b5817
GH
497
498 smp->mod = mod;
499 smp->name = name;
500 smp->locks = locks;
501 smp->locks_end = locks_end;
502 smp->text = text;
503 smp->text_end = text_end;
db477a33
BP
504 DPRINTK("locks %p -> %p, text %p -> %p, name %s\n",
505 smp->locks, smp->locks_end,
9a0b5817
GH
506 smp->text, smp->text_end, smp->name);
507
9a0b5817 508 list_add_tail(&smp->next, &smp_alt_modules);
816afe4f
RR
509smp_unlock:
510 alternatives_smp_unlock(locks, locks_end, text, text_end);
511unlock:
2f1dafe5 512 mutex_unlock(&smp_alt);
9a0b5817
GH
513}
514
8b5a10fc 515void __init_or_module alternatives_smp_module_del(struct module *mod)
9a0b5817
GH
516{
517 struct smp_alt_module *item;
9a0b5817 518
2f1dafe5 519 mutex_lock(&smp_alt);
9a0b5817
GH
520 list_for_each_entry(item, &smp_alt_modules, next) {
521 if (mod != item->mod)
522 continue;
523 list_del(&item->next);
9a0b5817 524 kfree(item);
816afe4f 525 break;
9a0b5817 526 }
2f1dafe5 527 mutex_unlock(&smp_alt);
9a0b5817
GH
528}
529
816afe4f 530void alternatives_enable_smp(void)
9a0b5817
GH
531{
532 struct smp_alt_module *mod;
9a0b5817 533
816afe4f
RR
534 /* Why bother if there are no other CPUs? */
535 BUG_ON(num_possible_cpus() == 1);
9a0b5817 536
2f1dafe5 537 mutex_lock(&smp_alt);
ca74a6f8 538
816afe4f 539 if (uniproc_patched) {
c767a54b 540 pr_info("switching to SMP code\n");
816afe4f 541 BUG_ON(num_online_cpus() != 1);
53756d37
JF
542 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
543 clear_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
9a0b5817
GH
544 list_for_each_entry(mod, &smp_alt_modules, next)
545 alternatives_smp_lock(mod->locks, mod->locks_end,
546 mod->text, mod->text_end);
816afe4f 547 uniproc_patched = false;
9a0b5817 548 }
2f1dafe5 549 mutex_unlock(&smp_alt);
9a0b5817
GH
550}
551
2cfa1978
MH
552/* Return 1 if the address range is reserved for smp-alternatives */
553int alternatives_text_reserved(void *start, void *end)
554{
555 struct smp_alt_module *mod;
5967ed87 556 const s32 *poff;
076dc4a6
MH
557 u8 *text_start = start;
558 u8 *text_end = end;
2cfa1978
MH
559
560 list_for_each_entry(mod, &smp_alt_modules, next) {
076dc4a6 561 if (mod->text > text_end || mod->text_end < text_start)
2cfa1978 562 continue;
5967ed87
JB
563 for (poff = mod->locks; poff < mod->locks_end; poff++) {
564 const u8 *ptr = (const u8 *)poff + *poff;
565
566 if (text_start <= ptr && text_end > ptr)
2cfa1978 567 return 1;
5967ed87 568 }
2cfa1978
MH
569 }
570
571 return 0;
572}
48c7a250 573#endif /* CONFIG_SMP */
8ec4d41f 574
139ec7c4 575#ifdef CONFIG_PARAVIRT
8b5a10fc
JB
576void __init_or_module apply_paravirt(struct paravirt_patch_site *start,
577 struct paravirt_patch_site *end)
139ec7c4 578{
98de032b 579 struct paravirt_patch_site *p;
ab144f5e 580 char insnbuf[MAX_PATCH_LEN];
139ec7c4 581
959b4fdf
JF
582 if (noreplace_paravirt)
583 return;
584
139ec7c4
RR
585 for (p = start; p < end; p++) {
586 unsigned int used;
587
ab144f5e 588 BUG_ON(p->len > MAX_PATCH_LEN);
d34fda4a
CW
589 /* prep the buffer with the original instructions */
590 memcpy(insnbuf, p->instr, p->len);
93b1eab3
JF
591 used = pv_init_ops.patch(p->instrtype, p->clobbers, insnbuf,
592 (unsigned long)p->instr, p->len);
7f63c41c 593
63f70270
JF
594 BUG_ON(used > p->len);
595
139ec7c4 596 /* Pad the rest with nops */
ab144f5e 597 add_nops(insnbuf + used, p->len - used);
e587cadd 598 text_poke_early(p->instr, insnbuf, p->len);
139ec7c4 599 }
139ec7c4 600}
98de032b 601extern struct paravirt_patch_site __start_parainstructions[],
139ec7c4
RR
602 __stop_parainstructions[];
603#endif /* CONFIG_PARAVIRT */
604
9a0b5817
GH
605void __init alternative_instructions(void)
606{
8f4e956b
AK
607 /* The patching is not fully atomic, so try to avoid local interruptions
608 that might execute the to be patched code.
609 Other CPUs are not running. */
610 stop_nmi();
123aa76e
AK
611
612 /*
613 * Don't stop machine check exceptions while patching.
614 * MCEs only happen when something got corrupted and in this
615 * case we must do something about the corruption.
616 * Ignoring it is worse than a unlikely patching race.
617 * Also machine checks tend to be broadcast and if one CPU
618 * goes into machine check the others follow quickly, so we don't
619 * expect a machine check to cause undue problems during to code
620 * patching.
621 */
8f4e956b 622
9a0b5817
GH
623 apply_alternatives(__alt_instructions, __alt_instructions_end);
624
8ec4d41f 625#ifdef CONFIG_SMP
816afe4f
RR
626 /* Patch to UP if other cpus not imminent. */
627 if (!noreplace_smp && (num_present_cpus() == 1 || setup_max_cpus <= 1)) {
628 uniproc_patched = true;
9a0b5817
GH
629 alternatives_smp_module_add(NULL, "core kernel",
630 __smp_locks, __smp_locks_end,
631 _text, _etext);
9a0b5817 632 }
8f4e956b 633
816afe4f 634 if (!uniproc_patched || num_possible_cpus() == 1)
f68fd5f4
FW
635 free_init_pages("SMP alternatives",
636 (unsigned long)__smp_locks,
637 (unsigned long)__smp_locks_end);
816afe4f
RR
638#endif
639
640 apply_paravirt(__parainstructions, __parainstructions_end);
f68fd5f4 641
8f4e956b 642 restart_nmi();
5e907bb0 643 alternatives_patched = 1;
9a0b5817 644}
19d36ccd 645
e587cadd
MD
646/**
647 * text_poke_early - Update instructions on a live kernel at boot time
648 * @addr: address to modify
649 * @opcode: source of the copy
650 * @len: length to copy
651 *
19d36ccd
AK
652 * When you use this code to patch more than one byte of an instruction
653 * you need to make sure that other CPUs cannot execute this code in parallel.
e587cadd
MD
654 * Also no thread must be currently preempted in the middle of these
655 * instructions. And on the local CPU you need to be protected again NMI or MCE
656 * handlers seeing an inconsistent instruction while you patch.
19d36ccd 657 */
fa6f2cc7 658void *__init_or_module text_poke_early(void *addr, const void *opcode,
8b5a10fc 659 size_t len)
19d36ccd 660{
e587cadd
MD
661 unsigned long flags;
662 local_irq_save(flags);
19d36ccd 663 memcpy(addr, opcode, len);
e587cadd 664 sync_core();
5367b688 665 local_irq_restore(flags);
e587cadd
MD
666 /* Could also do a CLFLUSH here to speed up CPU recovery; but
667 that causes hangs on some VIA CPUs. */
668 return addr;
669}
670
671/**
672 * text_poke - Update instructions on a live kernel
673 * @addr: address to modify
674 * @opcode: source of the copy
675 * @len: length to copy
676 *
677 * Only atomic text poke/set should be allowed when not doing early patching.
678 * It means the size must be writable atomically and the address must be aligned
679 * in a way that permits an atomic write. It also makes sure we fit on a single
680 * page.
78ff7fae
MH
681 *
682 * Note: Must be called under text_mutex.
e587cadd 683 */
9c54b616 684void *text_poke(void *addr, const void *opcode, size_t len)
e587cadd 685{
78ff7fae 686 unsigned long flags;
e587cadd 687 char *vaddr;
b7b66baa
MD
688 struct page *pages[2];
689 int i;
e587cadd 690
b7b66baa
MD
691 if (!core_kernel_text((unsigned long)addr)) {
692 pages[0] = vmalloc_to_page(addr);
693 pages[1] = vmalloc_to_page(addr + PAGE_SIZE);
15a601eb 694 } else {
b7b66baa 695 pages[0] = virt_to_page(addr);
00c6b2d5 696 WARN_ON(!PageReserved(pages[0]));
b7b66baa 697 pages[1] = virt_to_page(addr + PAGE_SIZE);
e587cadd 698 }
b7b66baa 699 BUG_ON(!pages[0]);
7cf49427 700 local_irq_save(flags);
78ff7fae
MH
701 set_fixmap(FIX_TEXT_POKE0, page_to_phys(pages[0]));
702 if (pages[1])
703 set_fixmap(FIX_TEXT_POKE1, page_to_phys(pages[1]));
704 vaddr = (char *)fix_to_virt(FIX_TEXT_POKE0);
b7b66baa 705 memcpy(&vaddr[(unsigned long)addr & ~PAGE_MASK], opcode, len);
78ff7fae
MH
706 clear_fixmap(FIX_TEXT_POKE0);
707 if (pages[1])
708 clear_fixmap(FIX_TEXT_POKE1);
709 local_flush_tlb();
19d36ccd 710 sync_core();
a534b679
AK
711 /* Could also do a CLFLUSH here to speed up CPU recovery; but
712 that causes hangs on some VIA CPUs. */
b7b66baa
MD
713 for (i = 0; i < len; i++)
714 BUG_ON(((char *)addr)[i] != ((char *)opcode)[i]);
7cf49427 715 local_irq_restore(flags);
e587cadd 716 return addr;
19d36ccd 717}
3d55cc8a 718
fd4363ff
JK
719static void do_sync_core(void *info)
720{
721 sync_core();
722}
723
724static bool bp_patching_in_progress;
725static void *bp_int3_handler, *bp_int3_addr;
726
17f41571 727int poke_int3_handler(struct pt_regs *regs)
fd4363ff 728{
fd4363ff
JK
729 /* bp_patching_in_progress */
730 smp_rmb();
731
732 if (likely(!bp_patching_in_progress))
17f41571 733 return 0;
fd4363ff 734
f39b6f0e 735 if (user_mode(regs) || regs->ip != (unsigned long)bp_int3_addr)
17f41571 736 return 0;
fd4363ff
JK
737
738 /* set up the specified breakpoint handler */
17f41571
JK
739 regs->ip = (unsigned long) bp_int3_handler;
740
741 return 1;
fd4363ff 742
fd4363ff 743}
17f41571 744
fd4363ff
JK
745/**
746 * text_poke_bp() -- update instructions on live kernel on SMP
747 * @addr: address to patch
748 * @opcode: opcode of new instruction
749 * @len: length to copy
750 * @handler: address to jump to when the temporary breakpoint is hit
751 *
752 * Modify multi-byte instruction by using int3 breakpoint on SMP.
ea8596bb
MH
753 * We completely avoid stop_machine() here, and achieve the
754 * synchronization using int3 breakpoint.
fd4363ff
JK
755 *
756 * The way it is done:
757 * - add a int3 trap to the address that will be patched
758 * - sync cores
759 * - update all but the first byte of the patched range
760 * - sync cores
761 * - replace the first byte (int3) by the first byte of
762 * replacing opcode
763 * - sync cores
764 *
765 * Note: must be called under text_mutex.
766 */
767void *text_poke_bp(void *addr, const void *opcode, size_t len, void *handler)
768{
769 unsigned char int3 = 0xcc;
770
771 bp_int3_handler = handler;
772 bp_int3_addr = (u8 *)addr + sizeof(int3);
773 bp_patching_in_progress = true;
774 /*
775 * Corresponding read barrier in int3 notifier for
776 * making sure the in_progress flags is correctly ordered wrt.
777 * patching
778 */
779 smp_wmb();
780
781 text_poke(addr, &int3, sizeof(int3));
782
783 on_each_cpu(do_sync_core, NULL, 1);
784
785 if (len - sizeof(int3) > 0) {
786 /* patch all but the first byte */
787 text_poke((char *)addr + sizeof(int3),
788 (const char *) opcode + sizeof(int3),
789 len - sizeof(int3));
790 /*
791 * According to Intel, this core syncing is very likely
792 * not necessary and we'd be safe even without it. But
793 * better safe than sorry (plus there's not only Intel).
794 */
795 on_each_cpu(do_sync_core, NULL, 1);
796 }
797
798 /* patch the first byte */
799 text_poke(addr, opcode, sizeof(int3));
800
801 on_each_cpu(do_sync_core, NULL, 1);
802
803 bp_patching_in_progress = false;
804 smp_wmb();
805
806 return addr;
807}
808