blob: c0501ea6b634cd4b998ef7002b6ff8b93fc14d05 [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>
Pekka Paalanen2f1dafe2008-05-12 21:21:01 +02003#include <linux/mutex.h>
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08004#include <linux/list.h>
Jan Beulich8b5a10f2009-08-19 08:40:48 +01005#include <linux/stringify.h>
Andi Kleen19d36cc2007-07-22 11:12:31 +02006#include <linux/kprobes.h>
7#include <linux/mm.h>
8#include <linux/vmalloc.h>
Masami Hiramatsu3945dab2009-03-06 10:37:22 -05009#include <linux/memory.h>
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -050010#include <linux/stop_machine.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080012#include <asm/alternative.h>
13#include <asm/sections.h>
Andi Kleen19d36cc2007-07-22 11:12:31 +020014#include <asm/pgtable.h>
Andi Kleen8f4e9562007-07-22 11:12:32 +020015#include <asm/mce.h>
16#include <asm/nmi.h>
Dave Jonesb0979762007-10-14 22:57:45 +020017#include <asm/vsyscall.h>
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -050018#include <asm/cacheflush.h>
Masami Hiramatsu78ff7fa2009-03-06 10:37:54 -050019#include <asm/tlbflush.h>
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -050020#include <asm/io.h>
Masami Hiramatsu78ff7fa2009-03-06 10:37:54 -050021#include <asm/fixmap.h>
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080022
Andi Kleenab144f52007-08-10 22:31:03 +020023#define MAX_PATCH_LEN (255-1)
24
Jan Beulich09488162007-07-21 17:10:25 +020025#ifdef CONFIG_HOTPLUG_CPU
26static int smp_alt_once;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080027
Gerd Hoffmannd167a512006-06-26 13:56:16 +020028static int __init bootonly(char *str)
29{
30 smp_alt_once = 1;
31 return 1;
32}
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020033__setup("smp-alt-boot", bootonly);
Jan Beulich09488162007-07-21 17:10:25 +020034#else
35#define smp_alt_once 1
36#endif
37
Jan Beulich8b5a10f2009-08-19 08:40:48 +010038static int __initdata_or_module debug_alternative;
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020039
Gerd Hoffmannd167a512006-06-26 13:56:16 +020040static int __init debug_alt(char *str)
41{
42 debug_alternative = 1;
43 return 1;
44}
Gerd Hoffmannd167a512006-06-26 13:56:16 +020045__setup("debug-alternative", debug_alt);
46
Jan Beulich09488162007-07-21 17:10:25 +020047static int noreplace_smp;
48
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020049static int __init setup_noreplace_smp(char *str)
50{
51 noreplace_smp = 1;
52 return 1;
53}
54__setup("noreplace-smp", setup_noreplace_smp);
55
Jeremy Fitzhardinge959b4fd2007-05-02 19:27:16 +020056#ifdef CONFIG_PARAVIRT
Jan Beulich8b5a10f2009-08-19 08:40:48 +010057static int __initdata_or_module noreplace_paravirt = 0;
Jeremy Fitzhardinge959b4fd2007-05-02 19:27:16 +020058
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
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +020066
Gerd Hoffmannd167a512006-06-26 13:56:16 +020067#define DPRINTK(fmt, args...) if (debug_alternative) \
68 printk(KERN_DEBUG fmt, args)
69
H. Peter Anvindc326fc2011-04-18 15:19:51 -070070/*
71 * Each GENERIC_NOPX is of X bytes, and defined as an array of bytes
72 * that correspond to that nop. Getting from one nop to the next, we
73 * add to the array the offset that is equal to the sum of all sizes of
74 * nops preceding the one we are after.
75 *
76 * Note: The GENERIC_NOP5_ATOMIC is at the end, as it breaks the
77 * nice symmetry of sizes of the previous nops.
78 */
Jan Beulich8b5a10f2009-08-19 08:40:48 +010079#if defined(GENERIC_NOP1) && !defined(CONFIG_X86_64)
H. Peter Anvindc326fc2011-04-18 15:19:51 -070080static const unsigned char intelnops[] =
81{
82 GENERIC_NOP1,
83 GENERIC_NOP2,
84 GENERIC_NOP3,
85 GENERIC_NOP4,
86 GENERIC_NOP5,
87 GENERIC_NOP6,
88 GENERIC_NOP7,
89 GENERIC_NOP8,
90 GENERIC_NOP5_ATOMIC
91};
92static const unsigned char * const intel_nops[ASM_NOP_MAX+2] =
93{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080094 NULL,
95 intelnops,
96 intelnops + 1,
97 intelnops + 1 + 2,
98 intelnops + 1 + 2 + 3,
99 intelnops + 1 + 2 + 3 + 4,
100 intelnops + 1 + 2 + 3 + 4 + 5,
101 intelnops + 1 + 2 + 3 + 4 + 5 + 6,
102 intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700103 intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800104};
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200105#endif
106
107#ifdef K8_NOP1
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700108static const unsigned char k8nops[] =
109{
110 K8_NOP1,
111 K8_NOP2,
112 K8_NOP3,
113 K8_NOP4,
114 K8_NOP5,
115 K8_NOP6,
116 K8_NOP7,
117 K8_NOP8,
118 K8_NOP5_ATOMIC
119};
120static const unsigned char * const k8_nops[ASM_NOP_MAX+2] =
121{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800122 NULL,
123 k8nops,
124 k8nops + 1,
125 k8nops + 1 + 2,
126 k8nops + 1 + 2 + 3,
127 k8nops + 1 + 2 + 3 + 4,
128 k8nops + 1 + 2 + 3 + 4 + 5,
129 k8nops + 1 + 2 + 3 + 4 + 5 + 6,
130 k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700131 k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800132};
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200133#endif
134
Jan Beulich8b5a10f2009-08-19 08:40:48 +0100135#if defined(K7_NOP1) && !defined(CONFIG_X86_64)
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700136static const unsigned char k7nops[] =
137{
138 K7_NOP1,
139 K7_NOP2,
140 K7_NOP3,
141 K7_NOP4,
142 K7_NOP5,
143 K7_NOP6,
144 K7_NOP7,
145 K7_NOP8,
146 K7_NOP5_ATOMIC
147};
148static const unsigned char * const k7_nops[ASM_NOP_MAX+2] =
149{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800150 NULL,
151 k7nops,
152 k7nops + 1,
153 k7nops + 1 + 2,
154 k7nops + 1 + 2 + 3,
155 k7nops + 1 + 2 + 3 + 4,
156 k7nops + 1 + 2 + 3 + 4 + 5,
157 k7nops + 1 + 2 + 3 + 4 + 5 + 6,
158 k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700159 k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800160};
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200161#endif
162
Jan Beulich32c464f2007-10-17 18:04:41 +0200163#ifdef P6_NOP1
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700164static const unsigned char __initconst_or_module p6nops[] =
165{
166 P6_NOP1,
167 P6_NOP2,
168 P6_NOP3,
169 P6_NOP4,
170 P6_NOP5,
171 P6_NOP6,
172 P6_NOP7,
173 P6_NOP8,
174 P6_NOP5_ATOMIC
175};
176static const unsigned char * const p6_nops[ASM_NOP_MAX+2] =
177{
Jan Beulich32c464f2007-10-17 18:04:41 +0200178 NULL,
179 p6nops,
180 p6nops + 1,
181 p6nops + 1 + 2,
182 p6nops + 1 + 2 + 3,
183 p6nops + 1 + 2 + 3 + 4,
184 p6nops + 1 + 2 + 3 + 4 + 5,
185 p6nops + 1 + 2 + 3 + 4 + 5 + 6,
186 p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700187 p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8,
Jan Beulich32c464f2007-10-17 18:04:41 +0200188};
189#endif
190
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700191/* Initialize these to a safe default */
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200192#ifdef CONFIG_X86_64
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700193const unsigned char * const *ideal_nops = p6_nops;
194#else
195const unsigned char * const *ideal_nops = intel_nops;
196#endif
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200197
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700198void __init arch_init_ideal_nops(void)
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200199{
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700200 switch (boot_cpu_data.x86_vendor) {
201 case X86_VENDOR_INTEL:
H. Peter Anvind8d97662011-04-18 15:31:57 -0700202 /*
203 * Due to a decoder implementation quirk, some
204 * specific Intel CPUs actually perform better with
205 * the "k8_nops" than with the SDM-recommended NOPs.
206 */
207 if (boot_cpu_data.x86 == 6 &&
208 boot_cpu_data.x86_model >= 0x0f &&
209 boot_cpu_data.x86_model != 0x1c &&
210 boot_cpu_data.x86_model != 0x26 &&
211 boot_cpu_data.x86_model != 0x27 &&
212 boot_cpu_data.x86_model < 0x30) {
213 ideal_nops = k8_nops;
214 } else if (boot_cpu_has(X86_FEATURE_NOPL)) {
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700215 ideal_nops = p6_nops;
216 } else {
217#ifdef CONFIG_X86_64
218 ideal_nops = k8_nops;
219#else
220 ideal_nops = intel_nops;
221#endif
222 }
223
224 default:
225#ifdef CONFIG_X86_64
226 ideal_nops = k8_nops;
227#else
228 if (boot_cpu_has(X86_FEATURE_K8))
229 ideal_nops = k8_nops;
230 else if (boot_cpu_has(X86_FEATURE_K7))
231 ideal_nops = k7_nops;
232 else
233 ideal_nops = intel_nops;
234#endif
235 }
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200236}
237
Andi Kleenab144f52007-08-10 22:31:03 +0200238/* Use this to add nops to a buffer, then text_poke the whole buffer. */
Jan Beulich8b5a10f2009-08-19 08:40:48 +0100239static void __init_or_module add_nops(void *insns, unsigned int len)
Rusty Russell139ec7c2006-12-07 02:14:08 +0100240{
Rusty Russell139ec7c2006-12-07 02:14:08 +0100241 while (len > 0) {
242 unsigned int noplen = len;
243 if (noplen > ASM_NOP_MAX)
244 noplen = ASM_NOP_MAX;
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700245 memcpy(insns, ideal_nops[noplen], noplen);
Rusty Russell139ec7c2006-12-07 02:14:08 +0100246 insns += noplen;
247 len -= noplen;
248 }
249}
250
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200251extern struct alt_instr __alt_instructions[], __alt_instructions_end[];
Jan Beulich5967ed82010-04-21 16:08:14 +0100252extern s32 __smp_locks[], __smp_locks_end[];
H. Peter Anvindc326fc2011-04-18 15:19:51 -0700253extern char __vsyscall_0;
Jason Baronfa6f2cc2010-09-17 11:08:56 -0400254void *text_poke_early(void *addr, const void *opcode, size_t len);
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200255
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800256/* Replace instructions with better alternatives for this CPU type.
257 This runs before SMP is initialized to avoid SMP problems with
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300258 self modifying code. This implies that asymmetric systems where
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800259 APs have less capabilities than the boot processor are not handled.
260 Tough. Make sure you disable such features by hand. */
261
Jan Beulich8b5a10f2009-08-19 08:40:48 +0100262void __init_or_module apply_alternatives(struct alt_instr *start,
263 struct alt_instr *end)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800264{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800265 struct alt_instr *a;
Jan Beulich1b1d9252009-12-18 16:12:56 +0000266 u8 insnbuf[MAX_PATCH_LEN];
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800267
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800268 DPRINTK("%s: alt table %p -> %p\n", __func__, start, end);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800269 for (a = start; a < end; a++) {
Andi Kleenab144f52007-08-10 22:31:03 +0200270 u8 *instr = a->instr;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800271 BUG_ON(a->replacementlen > a->instrlen);
Andi Kleenab144f52007-08-10 22:31:03 +0200272 BUG_ON(a->instrlen > sizeof(insnbuf));
H. Peter Anvin3b770a22010-07-13 14:57:50 -0700273 BUG_ON(a->cpuid >= NCAPINTS*32);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800274 if (!boot_cpu_has(a->cpuid))
275 continue;
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200276#ifdef CONFIG_X86_64
277 /* vsyscall code is not mapped yet. resolve it manually. */
278 if (instr >= (u8 *)VSYSCALL_START && instr < (u8*)VSYSCALL_END) {
279 instr = __va(instr - (u8*)VSYSCALL_START + (u8*)__pa_symbol(&__vsyscall_0));
280 DPRINTK("%s: vsyscall fixup: %p => %p\n",
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800281 __func__, a->instr, instr);
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200282 }
283#endif
Andi Kleenab144f52007-08-10 22:31:03 +0200284 memcpy(insnbuf, a->replacement, a->replacementlen);
Jan Beulich1b1d9252009-12-18 16:12:56 +0000285 if (*insnbuf == 0xe8 && a->replacementlen == 5)
286 *(s32 *)(insnbuf + 1) += a->replacement - a->instr;
Andi Kleenab144f52007-08-10 22:31:03 +0200287 add_nops(insnbuf + a->replacementlen,
288 a->instrlen - a->replacementlen);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500289 text_poke_early(instr, insnbuf, a->instrlen);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800290 }
291}
292
Gerd Hoffmann8ec4d412006-07-01 04:36:18 -0700293#ifdef CONFIG_SMP
294
Jan Beulich5967ed82010-04-21 16:08:14 +0100295static void alternatives_smp_lock(const s32 *start, const s32 *end,
296 u8 *text, u8 *text_end)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800297{
Jan Beulich5967ed82010-04-21 16:08:14 +0100298 const s32 *poff;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800299
Masami Hiramatsu3945dab2009-03-06 10:37:22 -0500300 mutex_lock(&text_mutex);
Jan Beulich5967ed82010-04-21 16:08:14 +0100301 for (poff = start; poff < end; poff++) {
302 u8 *ptr = (u8 *)poff + *poff;
303
304 if (!*poff || ptr < text || ptr >= text_end)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800305 continue;
Mathieu Desnoyersf88f07e2008-08-14 16:58:15 -0400306 /* turn DS segment override prefix into lock prefix */
H. Peter Anvind9c58412010-04-29 16:53:17 -0700307 if (*ptr == 0x3e)
308 text_poke(ptr, ((unsigned char []){0xf0}), 1);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800309 };
Masami Hiramatsu3945dab2009-03-06 10:37:22 -0500310 mutex_unlock(&text_mutex);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800311}
312
Jan Beulich5967ed82010-04-21 16:08:14 +0100313static void alternatives_smp_unlock(const s32 *start, const s32 *end,
314 u8 *text, u8 *text_end)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800315{
Jan Beulich5967ed82010-04-21 16:08:14 +0100316 const s32 *poff;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800317
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +0200318 if (noreplace_smp)
319 return;
320
Masami Hiramatsu3945dab2009-03-06 10:37:22 -0500321 mutex_lock(&text_mutex);
Jan Beulich5967ed82010-04-21 16:08:14 +0100322 for (poff = start; poff < end; poff++) {
323 u8 *ptr = (u8 *)poff + *poff;
324
325 if (!*poff || ptr < text || ptr >= text_end)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800326 continue;
Mathieu Desnoyersf88f07e2008-08-14 16:58:15 -0400327 /* turn lock prefix into DS segment override prefix */
H. Peter Anvind9c58412010-04-29 16:53:17 -0700328 if (*ptr == 0xf0)
329 text_poke(ptr, ((unsigned char []){0x3E}), 1);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800330 };
Masami Hiramatsu3945dab2009-03-06 10:37:22 -0500331 mutex_unlock(&text_mutex);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800332}
333
334struct smp_alt_module {
335 /* what is this ??? */
336 struct module *mod;
337 char *name;
338
339 /* ptrs to lock prefixes */
Jan Beulich5967ed82010-04-21 16:08:14 +0100340 const s32 *locks;
341 const s32 *locks_end;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800342
343 /* .text segment, needed to avoid patching init code ;) */
344 u8 *text;
345 u8 *text_end;
346
347 struct list_head next;
348};
349static LIST_HEAD(smp_alt_modules);
Pekka Paalanen2f1dafe2008-05-12 21:21:01 +0200350static DEFINE_MUTEX(smp_alt);
Andi Kleenca74a6f2008-01-30 13:33:17 +0100351static int smp_mode = 1; /* protected by smp_alt */
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800352
Jan Beulich8b5a10f2009-08-19 08:40:48 +0100353void __init_or_module alternatives_smp_module_add(struct module *mod,
354 char *name,
355 void *locks, void *locks_end,
356 void *text, void *text_end)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800357{
358 struct smp_alt_module *smp;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800359
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +0200360 if (noreplace_smp)
361 return;
362
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800363 if (smp_alt_once) {
364 if (boot_cpu_has(X86_FEATURE_UP))
365 alternatives_smp_unlock(locks, locks_end,
366 text, text_end);
367 return;
368 }
369
370 smp = kzalloc(sizeof(*smp), GFP_KERNEL);
371 if (NULL == smp)
372 return; /* we'll run the (safe but slow) SMP code then ... */
373
374 smp->mod = mod;
375 smp->name = name;
376 smp->locks = locks;
377 smp->locks_end = locks_end;
378 smp->text = text;
379 smp->text_end = text_end;
380 DPRINTK("%s: locks %p -> %p, text %p -> %p, name %s\n",
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800381 __func__, smp->locks, smp->locks_end,
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800382 smp->text, smp->text_end, smp->name);
383
Pekka Paalanen2f1dafe2008-05-12 21:21:01 +0200384 mutex_lock(&smp_alt);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800385 list_add_tail(&smp->next, &smp_alt_modules);
386 if (boot_cpu_has(X86_FEATURE_UP))
387 alternatives_smp_unlock(smp->locks, smp->locks_end,
388 smp->text, smp->text_end);
Pekka Paalanen2f1dafe2008-05-12 21:21:01 +0200389 mutex_unlock(&smp_alt);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800390}
391
Jan Beulich8b5a10f2009-08-19 08:40:48 +0100392void __init_or_module alternatives_smp_module_del(struct module *mod)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800393{
394 struct smp_alt_module *item;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800395
Jeremy Fitzhardingeb7fb4af2007-05-02 19:27:13 +0200396 if (smp_alt_once || noreplace_smp)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800397 return;
398
Pekka Paalanen2f1dafe2008-05-12 21:21:01 +0200399 mutex_lock(&smp_alt);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800400 list_for_each_entry(item, &smp_alt_modules, next) {
401 if (mod != item->mod)
402 continue;
403 list_del(&item->next);
Pekka Paalanen2f1dafe2008-05-12 21:21:01 +0200404 mutex_unlock(&smp_alt);
Harvey Harrison77bf90e2008-03-03 11:37:23 -0800405 DPRINTK("%s: %s\n", __func__, item->name);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800406 kfree(item);
407 return;
408 }
Pekka Paalanen2f1dafe2008-05-12 21:21:01 +0200409 mutex_unlock(&smp_alt);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800410}
411
Suresh Siddha3fb82d52010-11-23 16:11:40 -0800412bool skip_smp_alternatives;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800413void alternatives_smp_switch(int smp)
414{
415 struct smp_alt_module *mod;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800416
Ingo Molnar3047e992006-07-03 00:24:57 -0700417#ifdef CONFIG_LOCKDEP
418 /*
Ingo Molnar17abecf2008-01-30 13:33:24 +0100419 * Older binutils section handling bug prevented
420 * alternatives-replacement from working reliably.
421 *
422 * If this still occurs then you should see a hang
423 * or crash shortly after this line:
Ingo Molnar3047e992006-07-03 00:24:57 -0700424 */
Ingo Molnar17abecf2008-01-30 13:33:24 +0100425 printk("lockdep: fixing up alternatives.\n");
Ingo Molnar3047e992006-07-03 00:24:57 -0700426#endif
427
Suresh Siddha3fb82d52010-11-23 16:11:40 -0800428 if (noreplace_smp || smp_alt_once || skip_smp_alternatives)
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800429 return;
430 BUG_ON(!smp && (num_online_cpus() > 1));
431
Pekka Paalanen2f1dafe2008-05-12 21:21:01 +0200432 mutex_lock(&smp_alt);
Andi Kleenca74a6f2008-01-30 13:33:17 +0100433
434 /*
435 * Avoid unnecessary switches because it forces JIT based VMs to
436 * throw away all cached translations, which can be quite costly.
437 */
438 if (smp == smp_mode) {
439 /* nothing */
440 } else if (smp) {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800441 printk(KERN_INFO "SMP alternatives: switching to SMP code\n");
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +0100442 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
443 clear_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800444 list_for_each_entry(mod, &smp_alt_modules, next)
445 alternatives_smp_lock(mod->locks, mod->locks_end,
446 mod->text, mod->text_end);
447 } else {
448 printk(KERN_INFO "SMP alternatives: switching to UP code\n");
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +0100449 set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
450 set_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800451 list_for_each_entry(mod, &smp_alt_modules, next)
452 alternatives_smp_unlock(mod->locks, mod->locks_end,
453 mod->text, mod->text_end);
454 }
Andi Kleenca74a6f2008-01-30 13:33:17 +0100455 smp_mode = smp;
Pekka Paalanen2f1dafe2008-05-12 21:21:01 +0200456 mutex_unlock(&smp_alt);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800457}
458
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -0500459/* Return 1 if the address range is reserved for smp-alternatives */
460int alternatives_text_reserved(void *start, void *end)
461{
462 struct smp_alt_module *mod;
Jan Beulich5967ed82010-04-21 16:08:14 +0100463 const s32 *poff;
Masami Hiramatsu076dc4a62010-02-05 12:16:47 -0500464 u8 *text_start = start;
465 u8 *text_end = end;
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -0500466
467 list_for_each_entry(mod, &smp_alt_modules, next) {
Masami Hiramatsu076dc4a62010-02-05 12:16:47 -0500468 if (mod->text > text_end || mod->text_end < text_start)
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -0500469 continue;
Jan Beulich5967ed82010-04-21 16:08:14 +0100470 for (poff = mod->locks; poff < mod->locks_end; poff++) {
471 const u8 *ptr = (const u8 *)poff + *poff;
472
473 if (text_start <= ptr && text_end > ptr)
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -0500474 return 1;
Jan Beulich5967ed82010-04-21 16:08:14 +0100475 }
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -0500476 }
477
478 return 0;
479}
Gerd Hoffmann8ec4d412006-07-01 04:36:18 -0700480#endif
481
Rusty Russell139ec7c2006-12-07 02:14:08 +0100482#ifdef CONFIG_PARAVIRT
Jan Beulich8b5a10f2009-08-19 08:40:48 +0100483void __init_or_module apply_paravirt(struct paravirt_patch_site *start,
484 struct paravirt_patch_site *end)
Rusty Russell139ec7c2006-12-07 02:14:08 +0100485{
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +0200486 struct paravirt_patch_site *p;
Andi Kleenab144f52007-08-10 22:31:03 +0200487 char insnbuf[MAX_PATCH_LEN];
Rusty Russell139ec7c2006-12-07 02:14:08 +0100488
Jeremy Fitzhardinge959b4fd2007-05-02 19:27:16 +0200489 if (noreplace_paravirt)
490 return;
491
Rusty Russell139ec7c2006-12-07 02:14:08 +0100492 for (p = start; p < end; p++) {
493 unsigned int used;
494
Andi Kleenab144f52007-08-10 22:31:03 +0200495 BUG_ON(p->len > MAX_PATCH_LEN);
Chris Wrightd34fda42007-08-18 14:31:41 -0700496 /* prep the buffer with the original instructions */
497 memcpy(insnbuf, p->instr, p->len);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700498 used = pv_init_ops.patch(p->instrtype, p->clobbers, insnbuf,
499 (unsigned long)p->instr, p->len);
Jeremy Fitzhardinge7f63c412007-05-02 19:27:13 +0200500
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200501 BUG_ON(used > p->len);
502
Rusty Russell139ec7c2006-12-07 02:14:08 +0100503 /* Pad the rest with nops */
Andi Kleenab144f52007-08-10 22:31:03 +0200504 add_nops(insnbuf + used, p->len - used);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500505 text_poke_early(p->instr, insnbuf, p->len);
Rusty Russell139ec7c2006-12-07 02:14:08 +0100506 }
Rusty Russell139ec7c2006-12-07 02:14:08 +0100507}
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +0200508extern struct paravirt_patch_site __start_parainstructions[],
Rusty Russell139ec7c2006-12-07 02:14:08 +0100509 __stop_parainstructions[];
510#endif /* CONFIG_PARAVIRT */
511
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800512void __init alternative_instructions(void)
513{
Andi Kleen8f4e9562007-07-22 11:12:32 +0200514 /* The patching is not fully atomic, so try to avoid local interruptions
515 that might execute the to be patched code.
516 Other CPUs are not running. */
517 stop_nmi();
Andi Kleen123aa762009-02-12 13:39:27 +0100518
519 /*
520 * Don't stop machine check exceptions while patching.
521 * MCEs only happen when something got corrupted and in this
522 * case we must do something about the corruption.
523 * Ignoring it is worse than a unlikely patching race.
524 * Also machine checks tend to be broadcast and if one CPU
525 * goes into machine check the others follow quickly, so we don't
526 * expect a machine check to cause undue problems during to code
527 * patching.
528 */
Andi Kleen8f4e9562007-07-22 11:12:32 +0200529
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800530 apply_alternatives(__alt_instructions, __alt_instructions_end);
531
532 /* switch to patch-once-at-boottime-only mode and free the
533 * tables in case we know the number of CPUs will never ever
534 * change */
535#ifdef CONFIG_HOTPLUG_CPU
536 if (num_possible_cpus() < 2)
537 smp_alt_once = 1;
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800538#endif
539
Gerd Hoffmann8ec4d412006-07-01 04:36:18 -0700540#ifdef CONFIG_SMP
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800541 if (smp_alt_once) {
542 if (1 == num_possible_cpus()) {
543 printk(KERN_INFO "SMP alternatives: switching to UP code\n");
Jeremy Fitzhardinge53756d32008-01-30 13:30:55 +0100544 set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
545 set_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
546
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800547 alternatives_smp_unlock(__smp_locks, __smp_locks_end,
548 _text, _etext);
549 }
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800550 } else {
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800551 alternatives_smp_module_add(NULL, "core kernel",
552 __smp_locks, __smp_locks_end,
553 _text, _etext);
Andi Kleenca74a6f2008-01-30 13:33:17 +0100554
555 /* Only switch to UP mode if we don't immediately boot others */
Thomas Gleixner649c6652008-10-05 16:52:24 +0200556 if (num_present_cpus() == 1 || setup_max_cpus <= 1)
Andi Kleenca74a6f2008-01-30 13:33:17 +0100557 alternatives_smp_switch(0);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800558 }
Gerd Hoffmann8ec4d412006-07-01 04:36:18 -0700559#endif
Jeremy Fitzhardinge441d40d2007-05-02 19:27:16 +0200560 apply_paravirt(__parainstructions, __parainstructions_end);
Andi Kleen8f4e9562007-07-22 11:12:32 +0200561
Fengguang Wuf68fd5f2007-10-17 18:04:34 +0200562 if (smp_alt_once)
563 free_init_pages("SMP alternatives",
564 (unsigned long)__smp_locks,
565 (unsigned long)__smp_locks_end);
566
Andi Kleen8f4e9562007-07-22 11:12:32 +0200567 restart_nmi();
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800568}
Andi Kleen19d36cc2007-07-22 11:12:31 +0200569
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500570/**
571 * text_poke_early - Update instructions on a live kernel at boot time
572 * @addr: address to modify
573 * @opcode: source of the copy
574 * @len: length to copy
575 *
Andi Kleen19d36cc2007-07-22 11:12:31 +0200576 * When you use this code to patch more than one byte of an instruction
577 * you need to make sure that other CPUs cannot execute this code in parallel.
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500578 * Also no thread must be currently preempted in the middle of these
579 * instructions. And on the local CPU you need to be protected again NMI or MCE
580 * handlers seeing an inconsistent instruction while you patch.
Andi Kleen19d36cc2007-07-22 11:12:31 +0200581 */
Jason Baronfa6f2cc2010-09-17 11:08:56 -0400582void *__init_or_module text_poke_early(void *addr, const void *opcode,
Jan Beulich8b5a10f2009-08-19 08:40:48 +0100583 size_t len)
Andi Kleen19d36cc2007-07-22 11:12:31 +0200584{
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500585 unsigned long flags;
586 local_irq_save(flags);
Andi Kleen19d36cc2007-07-22 11:12:31 +0200587 memcpy(addr, opcode, len);
588 sync_core();
Ben Hutchings5367b682009-09-10 02:53:50 +0100589 local_irq_restore(flags);
Andi Kleena534b672007-09-06 16:59:52 +0200590 /* Could also do a CLFLUSH here to speed up CPU recovery; but
591 that causes hangs on some VIA CPUs. */
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500592 return addr;
593}
594
595/**
596 * text_poke - Update instructions on a live kernel
597 * @addr: address to modify
598 * @opcode: source of the copy
599 * @len: length to copy
600 *
601 * Only atomic text poke/set should be allowed when not doing early patching.
602 * It means the size must be writable atomically and the address must be aligned
603 * in a way that permits an atomic write. It also makes sure we fit on a single
604 * page.
Masami Hiramatsu78ff7fa2009-03-06 10:37:54 -0500605 *
606 * Note: Must be called under text_mutex.
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500607 */
608void *__kprobes text_poke(void *addr, const void *opcode, size_t len)
609{
Masami Hiramatsu78ff7fa2009-03-06 10:37:54 -0500610 unsigned long flags;
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500611 char *vaddr;
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400612 struct page *pages[2];
613 int i;
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500614
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400615 if (!core_kernel_text((unsigned long)addr)) {
616 pages[0] = vmalloc_to_page(addr);
617 pages[1] = vmalloc_to_page(addr + PAGE_SIZE);
Mathieu Desnoyers15a601e2008-03-12 11:54:16 -0400618 } else {
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400619 pages[0] = virt_to_page(addr);
Ingo Molnar00c6b2d2008-04-25 17:07:03 +0200620 WARN_ON(!PageReserved(pages[0]));
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400621 pages[1] = virt_to_page(addr + PAGE_SIZE);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500622 }
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400623 BUG_ON(!pages[0]);
Masami Hiramatsu7cf49422009-03-09 12:40:40 -0400624 local_irq_save(flags);
Masami Hiramatsu78ff7fa2009-03-06 10:37:54 -0500625 set_fixmap(FIX_TEXT_POKE0, page_to_phys(pages[0]));
626 if (pages[1])
627 set_fixmap(FIX_TEXT_POKE1, page_to_phys(pages[1]));
628 vaddr = (char *)fix_to_virt(FIX_TEXT_POKE0);
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400629 memcpy(&vaddr[(unsigned long)addr & ~PAGE_MASK], opcode, len);
Masami Hiramatsu78ff7fa2009-03-06 10:37:54 -0500630 clear_fixmap(FIX_TEXT_POKE0);
631 if (pages[1])
632 clear_fixmap(FIX_TEXT_POKE1);
633 local_flush_tlb();
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500634 sync_core();
635 /* Could also do a CLFLUSH here to speed up CPU recovery; but
636 that causes hangs on some VIA CPUs. */
Mathieu Desnoyersb7b66ba2008-04-24 11:03:33 -0400637 for (i = 0; i < len; i++)
638 BUG_ON(((char *)addr)[i] != ((char *)opcode)[i]);
Masami Hiramatsu7cf49422009-03-09 12:40:40 -0400639 local_irq_restore(flags);
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500640 return addr;
Andi Kleen19d36cc2007-07-22 11:12:31 +0200641}
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -0500642
643/*
644 * Cross-modifying kernel text with stop_machine().
645 * This code originally comes from immediate value.
646 */
647static atomic_t stop_machine_first;
648static int wrote_text;
649
650struct text_poke_params {
Masami Hiramatsu7deb18d2010-12-03 18:54:22 +0900651 struct text_poke_param *params;
652 int nparams;
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -0500653};
654
655static int __kprobes stop_machine_text_poke(void *data)
656{
657 struct text_poke_params *tpp = data;
Masami Hiramatsu7deb18d2010-12-03 18:54:22 +0900658 struct text_poke_param *p;
659 int i;
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -0500660
661 if (atomic_dec_and_test(&stop_machine_first)) {
Masami Hiramatsu7deb18d2010-12-03 18:54:22 +0900662 for (i = 0; i < tpp->nparams; i++) {
663 p = &tpp->params[i];
664 text_poke(p->addr, p->opcode, p->len);
665 }
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -0500666 smp_wmb(); /* Make sure other cpus see that this has run */
667 wrote_text = 1;
668 } else {
669 while (!wrote_text)
Masami Hiramatsue5a11012010-03-03 22:38:50 -0500670 cpu_relax();
671 smp_mb(); /* Load wrote_text before following execution */
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -0500672 }
673
Masami Hiramatsu7deb18d2010-12-03 18:54:22 +0900674 for (i = 0; i < tpp->nparams; i++) {
675 p = &tpp->params[i];
676 flush_icache_range((unsigned long)p->addr,
677 (unsigned long)p->addr + p->len);
678 }
Mathieu Desnoyers0e00f7a2011-03-03 11:01:37 -0500679 /*
680 * Intel Archiecture Software Developer's Manual section 7.1.3 specifies
681 * that a core serializing instruction such as "cpuid" should be
682 * executed on _each_ core before the new instruction is made visible.
683 */
684 sync_core();
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -0500685 return 0;
686}
687
688/**
689 * text_poke_smp - Update instructions on a live kernel on SMP
690 * @addr: address to modify
691 * @opcode: source of the copy
692 * @len: length to copy
693 *
694 * Modify multi-byte instruction by using stop_machine() on SMP. This allows
695 * user to poke/set multi-byte text on SMP. Only non-NMI/MCE code modifying
696 * should be allowed, since stop_machine() does _not_ protect code against
697 * NMI and MCE.
698 *
699 * Note: Must be called under get_online_cpus() and text_mutex.
700 */
701void *__kprobes text_poke_smp(void *addr, const void *opcode, size_t len)
702{
703 struct text_poke_params tpp;
Masami Hiramatsu7deb18d2010-12-03 18:54:22 +0900704 struct text_poke_param p;
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -0500705
Masami Hiramatsu7deb18d2010-12-03 18:54:22 +0900706 p.addr = addr;
707 p.opcode = opcode;
708 p.len = len;
709 tpp.params = &p;
710 tpp.nparams = 1;
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -0500711 atomic_set(&stop_machine_first, 1);
712 wrote_text = 0;
Masami Hiramatsu3caa37512010-10-14 12:10:36 +0900713 /* Use __stop_machine() because the caller already got online_cpus. */
Jason Baron404ba5d2010-10-28 11:20:27 -0400714 __stop_machine(stop_machine_text_poke, (void *)&tpp, cpu_online_mask);
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -0500715 return addr;
716}
717
Masami Hiramatsu7deb18d2010-12-03 18:54:22 +0900718/**
719 * text_poke_smp_batch - Update instructions on a live kernel on SMP
720 * @params: an array of text_poke parameters
721 * @n: the number of elements in params.
722 *
723 * Modify multi-byte instruction by using stop_machine() on SMP. Since the
724 * stop_machine() is heavy task, it is better to aggregate text_poke requests
725 * and do it once if possible.
726 *
727 * Note: Must be called under get_online_cpus() and text_mutex.
728 */
729void __kprobes text_poke_smp_batch(struct text_poke_param *params, int n)
730{
731 struct text_poke_params tpp = {.params = params, .nparams = n};
732
733 atomic_set(&stop_machine_first, 1);
734 wrote_text = 0;
Peter Zijlstrad91309f2011-02-11 22:07:46 +0100735 __stop_machine(stop_machine_text_poke, (void *)&tpp, NULL);
Masami Hiramatsu7deb18d2010-12-03 18:54:22 +0900736}