blob: 60299f61843fc9c13a701704edff8567baf3e08e [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>
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -050014#include <asm/cacheflush.h>
15#include <asm/io.h>
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080016
Andi Kleenab144f52007-08-10 22:31:03 +020017#define MAX_PATCH_LEN (255-1)
18
Jan Beulich09488162007-07-21 17:10:25 +020019#ifdef CONFIG_HOTPLUG_CPU
20static int smp_alt_once;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080021
Gerd Hoffmannd167a512006-06-26 13:56:16 +020022static int __init bootonly(char *str)
23{
24 smp_alt_once = 1;
25 return 1;
26}
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020027__setup("smp-alt-boot", bootonly);
Jan Beulich09488162007-07-21 17:10:25 +020028#else
29#define smp_alt_once 1
30#endif
31
32static int debug_alternative;
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020033
Gerd Hoffmannd167a512006-06-26 13:56:16 +020034static int __init debug_alt(char *str)
35{
36 debug_alternative = 1;
37 return 1;
38}
Gerd Hoffmannd167a512006-06-26 13:56:16 +020039__setup("debug-alternative", debug_alt);
40
Jan Beulich09488162007-07-21 17:10:25 +020041static int noreplace_smp;
42
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020043static int __init setup_noreplace_smp(char *str)
44{
45 noreplace_smp = 1;
46 return 1;
47}
48__setup("noreplace-smp", setup_noreplace_smp);
49
Jeremy Fitzhardinge959b4fd2007-05-02 19:27:16 +020050#ifdef CONFIG_PARAVIRT
51static int noreplace_paravirt = 0;
52
53static int __init setup_noreplace_paravirt(char *str)
54{
55 noreplace_paravirt = 1;
56 return 1;
57}
58__setup("noreplace-paravirt", setup_noreplace_paravirt);
59#endif
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020060
Gerd Hoffmannd167a512006-06-26 13:56:16 +020061#define DPRINTK(fmt, args...) if (debug_alternative) \
62 printk(KERN_DEBUG fmt, args)
63
64#ifdef GENERIC_NOP1
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080065/* Use inline assembly to define this because the nops are defined
66 as inline assembly strings in the include files and we cannot
67 get them easily into strings. */
Jan Beulich121d7bf2007-10-17 18:04:37 +020068asm("\t.section .rodata, \"a\"\nintelnops: "
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080069 GENERIC_NOP1 GENERIC_NOP2 GENERIC_NOP3 GENERIC_NOP4 GENERIC_NOP5 GENERIC_NOP6
Steven Rostedtf4be31e2008-04-09 19:04:07 -040070 GENERIC_NOP7 GENERIC_NOP8
71 "\t.previous");
Jan Beulich121d7bf2007-10-17 18:04:37 +020072extern const unsigned char intelnops[];
73static const unsigned char *const intel_nops[ASM_NOP_MAX+1] = {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080074 NULL,
75 intelnops,
76 intelnops + 1,
77 intelnops + 1 + 2,
78 intelnops + 1 + 2 + 3,
79 intelnops + 1 + 2 + 3 + 4,
80 intelnops + 1 + 2 + 3 + 4 + 5,
81 intelnops + 1 + 2 + 3 + 4 + 5 + 6,
82 intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
83};
Gerd Hoffmannd167a512006-06-26 13:56:16 +020084#endif
85
86#ifdef K8_NOP1
Jan Beulich121d7bf2007-10-17 18:04:37 +020087asm("\t.section .rodata, \"a\"\nk8nops: "
Gerd Hoffmannd167a512006-06-26 13:56:16 +020088 K8_NOP1 K8_NOP2 K8_NOP3 K8_NOP4 K8_NOP5 K8_NOP6
Steven Rostedtf4be31e2008-04-09 19:04:07 -040089 K8_NOP7 K8_NOP8
90 "\t.previous");
Jan Beulich121d7bf2007-10-17 18:04:37 +020091extern const unsigned char k8nops[];
92static const unsigned char *const k8_nops[ASM_NOP_MAX+1] = {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080093 NULL,
94 k8nops,
95 k8nops + 1,
96 k8nops + 1 + 2,
97 k8nops + 1 + 2 + 3,
98 k8nops + 1 + 2 + 3 + 4,
99 k8nops + 1 + 2 + 3 + 4 + 5,
100 k8nops + 1 + 2 + 3 + 4 + 5 + 6,
101 k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
102};
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200103#endif
104
105#ifdef K7_NOP1
Jan Beulich121d7bf2007-10-17 18:04:37 +0200106asm("\t.section .rodata, \"a\"\nk7nops: "
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200107 K7_NOP1 K7_NOP2 K7_NOP3 K7_NOP4 K7_NOP5 K7_NOP6
Steven Rostedtf4be31e2008-04-09 19:04:07 -0400108 K7_NOP7 K7_NOP8
109 "\t.previous");
Jan Beulich121d7bf2007-10-17 18:04:37 +0200110extern const unsigned char k7nops[];
111static const unsigned char *const k7_nops[ASM_NOP_MAX+1] = {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800112 NULL,
113 k7nops,
114 k7nops + 1,
115 k7nops + 1 + 2,
116 k7nops + 1 + 2 + 3,
117 k7nops + 1 + 2 + 3 + 4,
118 k7nops + 1 + 2 + 3 + 4 + 5,
119 k7nops + 1 + 2 + 3 + 4 + 5 + 6,
120 k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
121};
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200122#endif
123
Jan Beulich32c464f2007-10-17 18:04:41 +0200124#ifdef P6_NOP1
125asm("\t.section .rodata, \"a\"\np6nops: "
126 P6_NOP1 P6_NOP2 P6_NOP3 P6_NOP4 P6_NOP5 P6_NOP6
Steven Rostedtf4be31e2008-04-09 19:04:07 -0400127 P6_NOP7 P6_NOP8
128 "\t.previous");
Jan Beulich32c464f2007-10-17 18:04:41 +0200129extern const unsigned char p6nops[];
130static const unsigned char *const p6_nops[ASM_NOP_MAX+1] = {
131 NULL,
132 p6nops,
133 p6nops + 1,
134 p6nops + 1 + 2,
135 p6nops + 1 + 2 + 3,
136 p6nops + 1 + 2 + 3 + 4,
137 p6nops + 1 + 2 + 3 + 4 + 5,
138 p6nops + 1 + 2 + 3 + 4 + 5 + 6,
139 p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
140};
141#endif
142
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200143#ifdef CONFIG_X86_64
144
145extern char __vsyscall_0;
Jan Beulich121d7bf2007-10-17 18:04:37 +0200146static inline const unsigned char*const * find_nop_table(void)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200147{
Jan Beulich32c464f2007-10-17 18:04:41 +0200148 return boot_cpu_data.x86_vendor != X86_VENDOR_INTEL ||
149 boot_cpu_data.x86 < 6 ? k8_nops : p6_nops;
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200150}
151
152#else /* CONFIG_X86_64 */
153
Jan Beulich121d7bf2007-10-17 18:04:37 +0200154static const struct nop {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800155 int cpuid;
Jan Beulich121d7bf2007-10-17 18:04:37 +0200156 const unsigned char *const *noptable;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800157} noptypes[] = {
158 { X86_FEATURE_K8, k8_nops },
159 { X86_FEATURE_K7, k7_nops },
Jan Beulich32c464f2007-10-17 18:04:41 +0200160 { X86_FEATURE_P4, p6_nops },
161 { X86_FEATURE_P3, p6_nops },
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800162 { -1, NULL }
163};
164
Jan Beulich121d7bf2007-10-17 18:04:37 +0200165static const unsigned char*const * find_nop_table(void)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800166{
Jan Beulich121d7bf2007-10-17 18:04:37 +0200167 const unsigned char *const *noptable = intel_nops;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800168 int i;
169
170 for (i = 0; noptypes[i].cpuid >= 0; i++) {
171 if (boot_cpu_has(noptypes[i].cpuid)) {
172 noptable = noptypes[i].noptable;
173 break;
174 }
175 }
176 return noptable;
177}
178
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200179#endif /* CONFIG_X86_64 */
180
Andi Kleenab144f52007-08-10 22:31:03 +0200181/* Use this to add nops to a buffer, then text_poke the whole buffer. */
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500182void add_nops(void *insns, unsigned int len)
Rusty Russell139ec7c2006-12-07 02:14:08 +0100183{
Jan Beulich121d7bf2007-10-17 18:04:37 +0200184 const unsigned char *const *noptable = find_nop_table();
Rusty Russell139ec7c2006-12-07 02:14:08 +0100185
186 while (len > 0) {
187 unsigned int noplen = len;
188 if (noplen > ASM_NOP_MAX)
189 noplen = ASM_NOP_MAX;
Andi Kleenab144f52007-08-10 22:31:03 +0200190 memcpy(insns, noptable[noplen], noplen);
Rusty Russell139ec7c2006-12-07 02:14:08 +0100191 insns += noplen;
192 len -= noplen;
193 }
194}
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500195EXPORT_SYMBOL_GPL(add_nops);
Rusty Russell139ec7c2006-12-07 02:14:08 +0100196
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200197extern struct alt_instr __alt_instructions[], __alt_instructions_end[];
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200198extern u8 *__smp_locks[], *__smp_locks_end[];
199
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800200/* 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
206void apply_alternatives(struct alt_instr *start, struct alt_instr *end)
207{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800208 struct alt_instr *a;
Andi Kleenab144f52007-08-10 22:31:03 +0200209 char insnbuf[MAX_PATCH_LEN];
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800210
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800211 DPRINTK("%s: alt table %p -> %p\n", __func__, start, end);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800212 for (a = start; a < end; a++) {
Andi Kleenab144f52007-08-10 22:31:03 +0200213 u8 *instr = a->instr;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800214 BUG_ON(a->replacementlen > a->instrlen);
Andi Kleenab144f52007-08-10 22:31:03 +0200215 BUG_ON(a->instrlen > sizeof(insnbuf));
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800216 if (!boot_cpu_has(a->cpuid))
217 continue;
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200218#ifdef CONFIG_X86_64
219 /* vsyscall code is not mapped yet. resolve it manually. */
220 if (instr >= (u8 *)VSYSCALL_START && instr < (u8*)VSYSCALL_END) {
221 instr = __va(instr - (u8*)VSYSCALL_START + (u8*)__pa_symbol(&__vsyscall_0));
222 DPRINTK("%s: vsyscall fixup: %p => %p\n",
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800223 __func__, a->instr, instr);
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200224 }
225#endif
Andi Kleenab144f52007-08-10 22:31:03 +0200226 memcpy(insnbuf, a->replacement, a->replacementlen);
227 add_nops(insnbuf + a->replacementlen,
228 a->instrlen - a->replacementlen);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500229 text_poke_early(instr, insnbuf, a->instrlen);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800230 }
231}
232
Gerd Hoffmann8ec4d412006-07-01 04:36:18 -0700233#ifdef CONFIG_SMP
234
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800235static void alternatives_smp_lock(u8 **start, u8 **end, u8 *text, u8 *text_end)
236{
237 u8 **ptr;
238
239 for (ptr = start; ptr < end; ptr++) {
240 if (*ptr < text)
241 continue;
242 if (*ptr > text_end)
243 continue;
Andi Kleen19d36cc2007-07-22 11:12:31 +0200244 text_poke(*ptr, ((unsigned char []){0xf0}), 1); /* add lock prefix */
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800245 };
246}
247
248static void alternatives_smp_unlock(u8 **start, u8 **end, u8 *text, u8 *text_end)
249{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800250 u8 **ptr;
Andi Kleenab144f52007-08-10 22:31:03 +0200251 char insn[1];
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800252
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +0200253 if (noreplace_smp)
254 return;
255
Andi Kleenab144f52007-08-10 22:31:03 +0200256 add_nops(insn, 1);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800257 for (ptr = start; ptr < end; ptr++) {
258 if (*ptr < text)
259 continue;
260 if (*ptr > text_end)
261 continue;
Andi Kleenab144f52007-08-10 22:31:03 +0200262 text_poke(*ptr, insn, 1);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800263 };
264}
265
266struct smp_alt_module {
267 /* what is this ??? */
268 struct module *mod;
269 char *name;
270
271 /* ptrs to lock prefixes */
272 u8 **locks;
273 u8 **locks_end;
274
275 /* .text segment, needed to avoid patching init code ;) */
276 u8 *text;
277 u8 *text_end;
278
279 struct list_head next;
280};
281static LIST_HEAD(smp_alt_modules);
282static DEFINE_SPINLOCK(smp_alt);
Andi Kleenca74a6f2008-01-30 13:33:17 +0100283static int smp_mode = 1; /* protected by smp_alt */
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800284
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800285void alternatives_smp_module_add(struct module *mod, char *name,
286 void *locks, void *locks_end,
287 void *text, void *text_end)
288{
289 struct smp_alt_module *smp;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800290
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +0200291 if (noreplace_smp)
292 return;
293
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800294 if (smp_alt_once) {
295 if (boot_cpu_has(X86_FEATURE_UP))
296 alternatives_smp_unlock(locks, locks_end,
297 text, text_end);
298 return;
299 }
300
301 smp = kzalloc(sizeof(*smp), GFP_KERNEL);
302 if (NULL == smp)
303 return; /* we'll run the (safe but slow) SMP code then ... */
304
305 smp->mod = mod;
306 smp->name = name;
307 smp->locks = locks;
308 smp->locks_end = locks_end;
309 smp->text = text;
310 smp->text_end = text_end;
311 DPRINTK("%s: locks %p -> %p, text %p -> %p, name %s\n",
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800312 __func__, smp->locks, smp->locks_end,
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800313 smp->text, smp->text_end, smp->name);
314
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500315 spin_lock(&smp_alt);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800316 list_add_tail(&smp->next, &smp_alt_modules);
317 if (boot_cpu_has(X86_FEATURE_UP))
318 alternatives_smp_unlock(smp->locks, smp->locks_end,
319 smp->text, smp->text_end);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500320 spin_unlock(&smp_alt);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800321}
322
323void alternatives_smp_module_del(struct module *mod)
324{
325 struct smp_alt_module *item;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800326
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +0200327 if (smp_alt_once || noreplace_smp)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800328 return;
329
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500330 spin_lock(&smp_alt);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800331 list_for_each_entry(item, &smp_alt_modules, next) {
332 if (mod != item->mod)
333 continue;
334 list_del(&item->next);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500335 spin_unlock(&smp_alt);
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800336 DPRINTK("%s: %s\n", __func__, item->name);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800337 kfree(item);
338 return;
339 }
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500340 spin_unlock(&smp_alt);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800341}
342
343void alternatives_smp_switch(int smp)
344{
345 struct smp_alt_module *mod;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800346
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
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500362 spin_lock(&smp_alt);
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;
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500386 spin_unlock(&smp_alt);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800387}
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);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500414 text_poke_early(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{
Andi Kleen8f4e9562007-07-22 11:12:32 +0200423 /* The patching is not fully atomic, so try to avoid local interruptions
424 that might execute the to be patched code.
425 Other CPUs are not running. */
426 stop_nmi();
Adrian Bunkd2d02512007-08-10 22:31:06 +0200427#ifdef CONFIG_X86_MCE
Andi Kleen8f4e9562007-07-22 11:12:32 +0200428 stop_mce();
429#endif
430
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800431 apply_alternatives(__alt_instructions, __alt_instructions_end);
432
433 /* switch to patch-once-at-boottime-only mode and free the
434 * tables in case we know the number of CPUs will never ever
435 * change */
436#ifdef CONFIG_HOTPLUG_CPU
437 if (num_possible_cpus() < 2)
438 smp_alt_once = 1;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800439#endif
440
Gerd Hoffmann8ec4d412006-07-01 04:36:18 -0700441#ifdef CONFIG_SMP
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800442 if (smp_alt_once) {
443 if (1 == num_possible_cpus()) {
444 printk(KERN_INFO "SMP alternatives: switching to UP code\n");
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +0100445 set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
446 set_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
447
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800448 alternatives_smp_unlock(__smp_locks, __smp_locks_end,
449 _text, _etext);
450 }
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800451 } else {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800452 alternatives_smp_module_add(NULL, "core kernel",
453 __smp_locks, __smp_locks_end,
454 _text, _etext);
Andi Kleenca74a6f2008-01-30 13:33:17 +0100455
456 /* Only switch to UP mode if we don't immediately boot others */
457 if (num_possible_cpus() == 1 || setup_max_cpus <= 1)
458 alternatives_smp_switch(0);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800459 }
Gerd Hoffmann8ec4d412006-07-01 04:36:18 -0700460#endif
Jeremy Fitzhardinge441d40d2007-05-02 19:27:16 +0200461 apply_paravirt(__parainstructions, __parainstructions_end);
Andi Kleen8f4e9562007-07-22 11:12:32 +0200462
Fengguang Wuf68fd5f2007-10-17 18:04:34 +0200463 if (smp_alt_once)
464 free_init_pages("SMP alternatives",
465 (unsigned long)__smp_locks,
466 (unsigned long)__smp_locks_end);
467
Andi Kleen8f4e9562007-07-22 11:12:32 +0200468 restart_nmi();
Adrian Bunkd2d02512007-08-10 22:31:06 +0200469#ifdef CONFIG_X86_MCE
Andi Kleen8f4e9562007-07-22 11:12:32 +0200470 restart_mce();
471#endif
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800472}
Andi Kleen19d36cc2007-07-22 11:12:31 +0200473
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500474/**
475 * text_poke_early - Update instructions on a live kernel at boot time
476 * @addr: address to modify
477 * @opcode: source of the copy
478 * @len: length to copy
479 *
Andi Kleen19d36cc2007-07-22 11:12:31 +0200480 * 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.
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500482 * Also no thread must be currently preempted in the middle of these
483 * instructions. And on the local CPU you need to be protected again NMI or MCE
484 * handlers seeing an inconsistent instruction while you patch.
Andi Kleen19d36cc2007-07-22 11:12:31 +0200485 */
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500486void *text_poke_early(void *addr, const void *opcode, size_t len)
Andi Kleen19d36cc2007-07-22 11:12:31 +0200487{
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500488 unsigned long flags;
489 local_irq_save(flags);
Andi Kleen19d36cc2007-07-22 11:12:31 +0200490 memcpy(addr, opcode, len);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500491 local_irq_restore(flags);
Andi Kleen19d36cc2007-07-22 11:12:31 +0200492 sync_core();
Andi Kleena534b672007-09-06 16:59:52 +0200493 /* Could also do a CLFLUSH here to speed up CPU recovery; but
494 that causes hangs on some VIA CPUs. */
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500495 return addr;
496}
497
498/**
499 * text_poke - Update instructions on a live kernel
500 * @addr: address to modify
501 * @opcode: source of the copy
502 * @len: length to copy
503 *
504 * Only atomic text poke/set should be allowed when not doing early patching.
505 * It means the size must be writable atomically and the address must be aligned
506 * in a way that permits an atomic write. It also makes sure we fit on a single
507 * page.
508 */
509void *__kprobes text_poke(void *addr, const void *opcode, size_t len)
510{
511 unsigned long flags;
512 char *vaddr;
513 int nr_pages = 2;
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400514 struct page *pages[2];
515 int i;
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500516
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400517 if (!core_kernel_text((unsigned long)addr)) {
518 pages[0] = vmalloc_to_page(addr);
519 pages[1] = vmalloc_to_page(addr + PAGE_SIZE);
Mathieu Desnoyers15a601e2008-03-12 11:54:16 -0400520 } else {
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400521 pages[0] = virt_to_page(addr);
522 pages[1] = virt_to_page(addr + PAGE_SIZE);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500523 }
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400524 BUG_ON(!pages[0]);
525 if (!pages[1])
526 nr_pages = 1;
527 vaddr = vmap(pages, nr_pages, VM_MAP, PAGE_KERNEL);
528 BUG_ON(!vaddr);
529 local_irq_save(flags);
530 memcpy(&vaddr[(unsigned long)addr & ~PAGE_MASK], opcode, len);
531 local_irq_restore(flags);
532 vunmap(vaddr);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500533 sync_core();
534 /* Could also do a CLFLUSH here to speed up CPU recovery; but
535 that causes hangs on some VIA CPUs. */
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400536 for (i = 0; i < len; i++)
537 BUG_ON(((char *)addr)[i] != ((char *)opcode)[i]);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500538 return addr;
Andi Kleen19d36cc2007-07-22 11:12:31 +0200539}