blob: e2d30b8e08a2ef3e6a82197850f8cec75663bf9f [file] [log] [blame]
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001#include <linux/module.h>
Al Virof6a57032006-10-18 01:47:25 -04002#include <linux/sched.h>
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08003#include <linux/spinlock.h>
4#include <linux/list.h>
Andi Kleen19d36cc2007-07-22 11:12:31 +02005#include <linux/kprobes.h>
6#include <linux/mm.h>
7#include <linux/vmalloc.h>
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08008#include <asm/alternative.h>
9#include <asm/sections.h>
Andi Kleen19d36cc2007-07-22 11:12:31 +020010#include <asm/pgtable.h>
Andi Kleen8f4e9562007-07-22 11:12:32 +020011#include <asm/mce.h>
12#include <asm/nmi.h>
Dave Jonesb0979762007-10-14 22:57:45 +020013#include <asm/vsyscall.h>
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080014
Andi Kleenab144f52007-08-10 22:31:03 +020015#define MAX_PATCH_LEN (255-1)
16
Jan Beulich09488162007-07-21 17:10:25 +020017#ifdef CONFIG_HOTPLUG_CPU
18static int smp_alt_once;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080019
Gerd Hoffmannd167a512006-06-26 13:56:16 +020020static int __init bootonly(char *str)
21{
22 smp_alt_once = 1;
23 return 1;
24}
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020025__setup("smp-alt-boot", bootonly);
Jan Beulich09488162007-07-21 17:10:25 +020026#else
27#define smp_alt_once 1
28#endif
29
30static int debug_alternative;
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020031
Gerd Hoffmannd167a512006-06-26 13:56:16 +020032static int __init debug_alt(char *str)
33{
34 debug_alternative = 1;
35 return 1;
36}
Gerd Hoffmannd167a512006-06-26 13:56:16 +020037__setup("debug-alternative", debug_alt);
38
Jan Beulich09488162007-07-21 17:10:25 +020039static int noreplace_smp;
40
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020041static int __init setup_noreplace_smp(char *str)
42{
43 noreplace_smp = 1;
44 return 1;
45}
46__setup("noreplace-smp", setup_noreplace_smp);
47
Jeremy Fitzhardinge959b4fd2007-05-02 19:27:16 +020048#ifdef CONFIG_PARAVIRT
49static int noreplace_paravirt = 0;
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
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020058
Gerd Hoffmannd167a512006-06-26 13:56:16 +020059#define DPRINTK(fmt, args...) if (debug_alternative) \
60 printk(KERN_DEBUG fmt, args)
61
62#ifdef GENERIC_NOP1
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080063/* Use inline assembly to define this because the nops are defined
64 as inline assembly strings in the include files and we cannot
65 get them easily into strings. */
Jan Beulich121d7bf2007-10-17 18:04:37 +020066asm("\t.section .rodata, \"a\"\nintelnops: "
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080067 GENERIC_NOP1 GENERIC_NOP2 GENERIC_NOP3 GENERIC_NOP4 GENERIC_NOP5 GENERIC_NOP6
Steven Rostedtf4be31e2008-04-09 19:04:07 -040068 GENERIC_NOP7 GENERIC_NOP8
69 "\t.previous");
Jan Beulich121d7bf2007-10-17 18:04:37 +020070extern const unsigned char intelnops[];
71static const unsigned char *const intel_nops[ASM_NOP_MAX+1] = {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080072 NULL,
73 intelnops,
74 intelnops + 1,
75 intelnops + 1 + 2,
76 intelnops + 1 + 2 + 3,
77 intelnops + 1 + 2 + 3 + 4,
78 intelnops + 1 + 2 + 3 + 4 + 5,
79 intelnops + 1 + 2 + 3 + 4 + 5 + 6,
80 intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
81};
Gerd Hoffmannd167a512006-06-26 13:56:16 +020082#endif
83
84#ifdef K8_NOP1
Jan Beulich121d7bf2007-10-17 18:04:37 +020085asm("\t.section .rodata, \"a\"\nk8nops: "
Gerd Hoffmannd167a512006-06-26 13:56:16 +020086 K8_NOP1 K8_NOP2 K8_NOP3 K8_NOP4 K8_NOP5 K8_NOP6
Steven Rostedtf4be31e2008-04-09 19:04:07 -040087 K8_NOP7 K8_NOP8
88 "\t.previous");
Jan Beulich121d7bf2007-10-17 18:04:37 +020089extern const unsigned char k8nops[];
90static const unsigned char *const k8_nops[ASM_NOP_MAX+1] = {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080091 NULL,
92 k8nops,
93 k8nops + 1,
94 k8nops + 1 + 2,
95 k8nops + 1 + 2 + 3,
96 k8nops + 1 + 2 + 3 + 4,
97 k8nops + 1 + 2 + 3 + 4 + 5,
98 k8nops + 1 + 2 + 3 + 4 + 5 + 6,
99 k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
100};
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200101#endif
102
103#ifdef K7_NOP1
Jan Beulich121d7bf2007-10-17 18:04:37 +0200104asm("\t.section .rodata, \"a\"\nk7nops: "
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200105 K7_NOP1 K7_NOP2 K7_NOP3 K7_NOP4 K7_NOP5 K7_NOP6
Steven Rostedtf4be31e2008-04-09 19:04:07 -0400106 K7_NOP7 K7_NOP8
107 "\t.previous");
Jan Beulich121d7bf2007-10-17 18:04:37 +0200108extern const unsigned char k7nops[];
109static const unsigned char *const k7_nops[ASM_NOP_MAX+1] = {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800110 NULL,
111 k7nops,
112 k7nops + 1,
113 k7nops + 1 + 2,
114 k7nops + 1 + 2 + 3,
115 k7nops + 1 + 2 + 3 + 4,
116 k7nops + 1 + 2 + 3 + 4 + 5,
117 k7nops + 1 + 2 + 3 + 4 + 5 + 6,
118 k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
119};
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200120#endif
121
Jan Beulich32c464f2007-10-17 18:04:41 +0200122#ifdef P6_NOP1
123asm("\t.section .rodata, \"a\"\np6nops: "
124 P6_NOP1 P6_NOP2 P6_NOP3 P6_NOP4 P6_NOP5 P6_NOP6
Steven Rostedtf4be31e2008-04-09 19:04:07 -0400125 P6_NOP7 P6_NOP8
126 "\t.previous");
Jan Beulich32c464f2007-10-17 18:04:41 +0200127extern const unsigned char p6nops[];
128static const unsigned char *const p6_nops[ASM_NOP_MAX+1] = {
129 NULL,
130 p6nops,
131 p6nops + 1,
132 p6nops + 1 + 2,
133 p6nops + 1 + 2 + 3,
134 p6nops + 1 + 2 + 3 + 4,
135 p6nops + 1 + 2 + 3 + 4 + 5,
136 p6nops + 1 + 2 + 3 + 4 + 5 + 6,
137 p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
138};
139#endif
140
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200141#ifdef CONFIG_X86_64
142
143extern char __vsyscall_0;
Jan Beulich121d7bf2007-10-17 18:04:37 +0200144static inline const unsigned char*const * find_nop_table(void)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200145{
Jan Beulich32c464f2007-10-17 18:04:41 +0200146 return boot_cpu_data.x86_vendor != X86_VENDOR_INTEL ||
147 boot_cpu_data.x86 < 6 ? k8_nops : p6_nops;
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200148}
149
150#else /* CONFIG_X86_64 */
151
Jan Beulich121d7bf2007-10-17 18:04:37 +0200152static const struct nop {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800153 int cpuid;
Jan Beulich121d7bf2007-10-17 18:04:37 +0200154 const unsigned char *const *noptable;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800155} noptypes[] = {
156 { X86_FEATURE_K8, k8_nops },
157 { X86_FEATURE_K7, k7_nops },
Jan Beulich32c464f2007-10-17 18:04:41 +0200158 { X86_FEATURE_P4, p6_nops },
159 { X86_FEATURE_P3, p6_nops },
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800160 { -1, NULL }
161};
162
Jan Beulich121d7bf2007-10-17 18:04:37 +0200163static const unsigned char*const * find_nop_table(void)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800164{
Jan Beulich121d7bf2007-10-17 18:04:37 +0200165 const unsigned char *const *noptable = intel_nops;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800166 int i;
167
168 for (i = 0; noptypes[i].cpuid >= 0; i++) {
169 if (boot_cpu_has(noptypes[i].cpuid)) {
170 noptable = noptypes[i].noptable;
171 break;
172 }
173 }
174 return noptable;
175}
176
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200177#endif /* CONFIG_X86_64 */
178
Andi Kleenab144f52007-08-10 22:31:03 +0200179/* Use this to add nops to a buffer, then text_poke the whole buffer. */
180static void add_nops(void *insns, unsigned int len)
Rusty Russell139ec7c2006-12-07 02:14:08 +0100181{
Jan Beulich121d7bf2007-10-17 18:04:37 +0200182 const unsigned char *const *noptable = find_nop_table();
Rusty Russell139ec7c2006-12-07 02:14:08 +0100183
184 while (len > 0) {
185 unsigned int noplen = len;
186 if (noplen > ASM_NOP_MAX)
187 noplen = ASM_NOP_MAX;
Andi Kleenab144f52007-08-10 22:31:03 +0200188 memcpy(insns, noptable[noplen], noplen);
Rusty Russell139ec7c2006-12-07 02:14:08 +0100189 insns += noplen;
190 len -= noplen;
191 }
192}
193
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200194extern struct alt_instr __alt_instructions[], __alt_instructions_end[];
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200195extern u8 *__smp_locks[], *__smp_locks_end[];
196
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800197/* Replace instructions with better alternatives for this CPU type.
198 This runs before SMP is initialized to avoid SMP problems with
199 self modifying code. This implies that assymetric systems where
200 APs have less capabilities than the boot processor are not handled.
201 Tough. Make sure you disable such features by hand. */
202
203void apply_alternatives(struct alt_instr *start, struct alt_instr *end)
204{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800205 struct alt_instr *a;
Andi Kleenab144f52007-08-10 22:31:03 +0200206 char insnbuf[MAX_PATCH_LEN];
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800207
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800208 DPRINTK("%s: alt table %p -> %p\n", __func__, start, end);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800209 for (a = start; a < end; a++) {
Andi Kleenab144f52007-08-10 22:31:03 +0200210 u8 *instr = a->instr;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800211 BUG_ON(a->replacementlen > a->instrlen);
Andi Kleenab144f52007-08-10 22:31:03 +0200212 BUG_ON(a->instrlen > sizeof(insnbuf));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800213 if (!boot_cpu_has(a->cpuid))
214 continue;
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200215#ifdef CONFIG_X86_64
216 /* vsyscall code is not mapped yet. resolve it manually. */
217 if (instr >= (u8 *)VSYSCALL_START && instr < (u8*)VSYSCALL_END) {
218 instr = __va(instr - (u8*)VSYSCALL_START + (u8*)__pa_symbol(&__vsyscall_0));
219 DPRINTK("%s: vsyscall fixup: %p => %p\n",
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800220 __func__, a->instr, instr);
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200221 }
222#endif
Andi Kleenab144f52007-08-10 22:31:03 +0200223 memcpy(insnbuf, a->replacement, a->replacementlen);
224 add_nops(insnbuf + a->replacementlen,
225 a->instrlen - a->replacementlen);
226 text_poke(instr, insnbuf, a->instrlen);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800227 }
228}
229
Gerd Hoffmann8ec4d412006-07-01 04:36:18 -0700230#ifdef CONFIG_SMP
231
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800232static void alternatives_smp_lock(u8 **start, u8 **end, u8 *text, u8 *text_end)
233{
234 u8 **ptr;
235
236 for (ptr = start; ptr < end; ptr++) {
237 if (*ptr < text)
238 continue;
239 if (*ptr > text_end)
240 continue;
Andi Kleen19d36cc2007-07-22 11:12:31 +0200241 text_poke(*ptr, ((unsigned char []){0xf0}), 1); /* add lock prefix */
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800242 };
243}
244
245static void alternatives_smp_unlock(u8 **start, u8 **end, u8 *text, u8 *text_end)
246{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800247 u8 **ptr;
Andi Kleenab144f52007-08-10 22:31:03 +0200248 char insn[1];
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800249
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +0200250 if (noreplace_smp)
251 return;
252
Andi Kleenab144f52007-08-10 22:31:03 +0200253 add_nops(insn, 1);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800254 for (ptr = start; ptr < end; ptr++) {
255 if (*ptr < text)
256 continue;
257 if (*ptr > text_end)
258 continue;
Andi Kleenab144f52007-08-10 22:31:03 +0200259 text_poke(*ptr, insn, 1);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800260 };
261}
262
263struct smp_alt_module {
264 /* what is this ??? */
265 struct module *mod;
266 char *name;
267
268 /* ptrs to lock prefixes */
269 u8 **locks;
270 u8 **locks_end;
271
272 /* .text segment, needed to avoid patching init code ;) */
273 u8 *text;
274 u8 *text_end;
275
276 struct list_head next;
277};
278static LIST_HEAD(smp_alt_modules);
279static DEFINE_SPINLOCK(smp_alt);
Andi Kleenca74a6f2008-01-30 13:33:17 +0100280static int smp_mode = 1; /* protected by smp_alt */
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800281
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800282void alternatives_smp_module_add(struct module *mod, char *name,
283 void *locks, void *locks_end,
284 void *text, void *text_end)
285{
286 struct smp_alt_module *smp;
287 unsigned long flags;
288
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +0200289 if (noreplace_smp)
290 return;
291
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800292 if (smp_alt_once) {
293 if (boot_cpu_has(X86_FEATURE_UP))
294 alternatives_smp_unlock(locks, locks_end,
295 text, text_end);
296 return;
297 }
298
299 smp = kzalloc(sizeof(*smp), GFP_KERNEL);
300 if (NULL == smp)
301 return; /* we'll run the (safe but slow) SMP code then ... */
302
303 smp->mod = mod;
304 smp->name = name;
305 smp->locks = locks;
306 smp->locks_end = locks_end;
307 smp->text = text;
308 smp->text_end = text_end;
309 DPRINTK("%s: locks %p -> %p, text %p -> %p, name %s\n",
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800310 __func__, smp->locks, smp->locks_end,
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800311 smp->text, smp->text_end, smp->name);
312
313 spin_lock_irqsave(&smp_alt, flags);
314 list_add_tail(&smp->next, &smp_alt_modules);
315 if (boot_cpu_has(X86_FEATURE_UP))
316 alternatives_smp_unlock(smp->locks, smp->locks_end,
317 smp->text, smp->text_end);
318 spin_unlock_irqrestore(&smp_alt, flags);
319}
320
321void alternatives_smp_module_del(struct module *mod)
322{
323 struct smp_alt_module *item;
324 unsigned long flags;
325
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +0200326 if (smp_alt_once || noreplace_smp)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800327 return;
328
329 spin_lock_irqsave(&smp_alt, flags);
330 list_for_each_entry(item, &smp_alt_modules, next) {
331 if (mod != item->mod)
332 continue;
333 list_del(&item->next);
334 spin_unlock_irqrestore(&smp_alt, flags);
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800335 DPRINTK("%s: %s\n", __func__, item->name);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800336 kfree(item);
337 return;
338 }
339 spin_unlock_irqrestore(&smp_alt, flags);
340}
341
342void alternatives_smp_switch(int smp)
343{
344 struct smp_alt_module *mod;
345 unsigned long flags;
346
Ingo Molnar3047e992006-07-03 00:24:57 -0700347#ifdef CONFIG_LOCKDEP
348 /*
Ingo Molnar17abecf2008-01-30 13:33:24 +0100349 * Older binutils section handling bug prevented
350 * alternatives-replacement from working reliably.
351 *
352 * If this still occurs then you should see a hang
353 * or crash shortly after this line:
Ingo Molnar3047e992006-07-03 00:24:57 -0700354 */
Ingo Molnar17abecf2008-01-30 13:33:24 +0100355 printk("lockdep: fixing up alternatives.\n");
Ingo Molnar3047e992006-07-03 00:24:57 -0700356#endif
357
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +0200358 if (noreplace_smp || smp_alt_once)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800359 return;
360 BUG_ON(!smp && (num_online_cpus() > 1));
361
362 spin_lock_irqsave(&smp_alt, flags);
Andi Kleenca74a6f2008-01-30 13:33:17 +0100363
364 /*
365 * Avoid unnecessary switches because it forces JIT based VMs to
366 * throw away all cached translations, which can be quite costly.
367 */
368 if (smp == smp_mode) {
369 /* nothing */
370 } else if (smp) {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800371 printk(KERN_INFO "SMP alternatives: switching to SMP code\n");
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +0100372 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
373 clear_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800374 list_for_each_entry(mod, &smp_alt_modules, next)
375 alternatives_smp_lock(mod->locks, mod->locks_end,
376 mod->text, mod->text_end);
377 } else {
378 printk(KERN_INFO "SMP alternatives: switching to UP code\n");
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +0100379 set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
380 set_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800381 list_for_each_entry(mod, &smp_alt_modules, next)
382 alternatives_smp_unlock(mod->locks, mod->locks_end,
383 mod->text, mod->text_end);
384 }
Andi Kleenca74a6f2008-01-30 13:33:17 +0100385 smp_mode = smp;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800386 spin_unlock_irqrestore(&smp_alt, flags);
387}
388
Gerd Hoffmann8ec4d412006-07-01 04:36:18 -0700389#endif
390
Rusty Russell139ec7c2006-12-07 02:14:08 +0100391#ifdef CONFIG_PARAVIRT
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +0200392void apply_paravirt(struct paravirt_patch_site *start,
393 struct paravirt_patch_site *end)
Rusty Russell139ec7c2006-12-07 02:14:08 +0100394{
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +0200395 struct paravirt_patch_site *p;
Andi Kleenab144f52007-08-10 22:31:03 +0200396 char insnbuf[MAX_PATCH_LEN];
Rusty Russell139ec7c2006-12-07 02:14:08 +0100397
Jeremy Fitzhardinge959b4fd2007-05-02 19:27:16 +0200398 if (noreplace_paravirt)
399 return;
400
Rusty Russell139ec7c2006-12-07 02:14:08 +0100401 for (p = start; p < end; p++) {
402 unsigned int used;
403
Andi Kleenab144f52007-08-10 22:31:03 +0200404 BUG_ON(p->len > MAX_PATCH_LEN);
Chris Wrightd34fda42007-08-18 14:31:41 -0700405 /* prep the buffer with the original instructions */
406 memcpy(insnbuf, p->instr, p->len);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700407 used = pv_init_ops.patch(p->instrtype, p->clobbers, insnbuf,
408 (unsigned long)p->instr, p->len);
Jeremy Fitzhardinge7f63c412007-05-02 19:27:13 +0200409
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200410 BUG_ON(used > p->len);
411
Rusty Russell139ec7c2006-12-07 02:14:08 +0100412 /* Pad the rest with nops */
Andi Kleenab144f52007-08-10 22:31:03 +0200413 add_nops(insnbuf + used, p->len - used);
414 text_poke(p->instr, insnbuf, p->len);
Rusty Russell139ec7c2006-12-07 02:14:08 +0100415 }
Rusty Russell139ec7c2006-12-07 02:14:08 +0100416}
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +0200417extern struct paravirt_patch_site __start_parainstructions[],
Rusty Russell139ec7c2006-12-07 02:14:08 +0100418 __stop_parainstructions[];
419#endif /* CONFIG_PARAVIRT */
420
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800421void __init alternative_instructions(void)
422{
Zachary Amsdene51959f2006-10-19 23:29:04 -0700423 unsigned long flags;
Zachary Amsdene51959f2006-10-19 23:29:04 -0700424
Andi Kleen8f4e9562007-07-22 11:12:32 +0200425 /* The patching is not fully atomic, so try to avoid local interruptions
426 that might execute the to be patched code.
427 Other CPUs are not running. */
428 stop_nmi();
Adrian Bunkd2d02512007-08-10 22:31:06 +0200429#ifdef CONFIG_X86_MCE
Andi Kleen8f4e9562007-07-22 11:12:32 +0200430 stop_mce();
431#endif
432
Zachary Amsdene51959f2006-10-19 23:29:04 -0700433 local_irq_save(flags);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800434 apply_alternatives(__alt_instructions, __alt_instructions_end);
435
436 /* switch to patch-once-at-boottime-only mode and free the
437 * tables in case we know the number of CPUs will never ever
438 * change */
439#ifdef CONFIG_HOTPLUG_CPU
440 if (num_possible_cpus() < 2)
441 smp_alt_once = 1;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800442#endif
443
Gerd Hoffmann8ec4d412006-07-01 04:36:18 -0700444#ifdef CONFIG_SMP
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800445 if (smp_alt_once) {
446 if (1 == num_possible_cpus()) {
447 printk(KERN_INFO "SMP alternatives: switching to UP code\n");
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +0100448 set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
449 set_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
450
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800451 alternatives_smp_unlock(__smp_locks, __smp_locks_end,
452 _text, _etext);
453 }
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800454 } else {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800455 alternatives_smp_module_add(NULL, "core kernel",
456 __smp_locks, __smp_locks_end,
457 _text, _etext);
Andi Kleenca74a6f2008-01-30 13:33:17 +0100458
459 /* Only switch to UP mode if we don't immediately boot others */
460 if (num_possible_cpus() == 1 || setup_max_cpus <= 1)
461 alternatives_smp_switch(0);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800462 }
Gerd Hoffmann8ec4d412006-07-01 04:36:18 -0700463#endif
Jeremy Fitzhardinge441d40d2007-05-02 19:27:16 +0200464 apply_paravirt(__parainstructions, __parainstructions_end);
Zachary Amsdene51959f2006-10-19 23:29:04 -0700465 local_irq_restore(flags);
Andi Kleen8f4e9562007-07-22 11:12:32 +0200466
Fengguang Wuf68fd5f2007-10-17 18:04:34 +0200467 if (smp_alt_once)
468 free_init_pages("SMP alternatives",
469 (unsigned long)__smp_locks,
470 (unsigned long)__smp_locks_end);
471
Andi Kleen8f4e9562007-07-22 11:12:32 +0200472 restart_nmi();
Adrian Bunkd2d02512007-08-10 22:31:06 +0200473#ifdef CONFIG_X86_MCE
Andi Kleen8f4e9562007-07-22 11:12:32 +0200474 restart_mce();
475#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800476}
Andi Kleen19d36cc2007-07-22 11:12:31 +0200477
478/*
479 * Warning:
480 * When you use this code to patch more than one byte of an instruction
481 * you need to make sure that other CPUs cannot execute this code in parallel.
482 * Also no thread must be currently preempted in the middle of these instructions.
483 * And on the local CPU you need to be protected again NMI or MCE handlers
484 * seeing an inconsistent instruction while you patch.
485 */
Linus Torvalds602033e2007-07-26 12:07:21 -0700486void __kprobes text_poke(void *addr, unsigned char *opcode, int len)
Andi Kleen19d36cc2007-07-22 11:12:31 +0200487{
Andi Kleen19d36cc2007-07-22 11:12:31 +0200488 memcpy(addr, opcode, len);
489 sync_core();
Andi Kleena534b672007-09-06 16:59:52 +0200490 /* Could also do a CLFLUSH here to speed up CPU recovery; but
491 that causes hangs on some VIA CPUs. */
Andi Kleen19d36cc2007-07-22 11:12:31 +0200492}