| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 1 | #include <linux/module.h> | 
| Al Viro | f6a5703 | 2006-10-18 01:47:25 -0400 | [diff] [blame] | 2 | #include <linux/sched.h> | 
| Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 3 | #include <linux/mutex.h> | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 4 | #include <linux/list.h> | 
| Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 5 | #include <linux/kprobes.h> | 
 | 6 | #include <linux/mm.h> | 
 | 7 | #include <linux/vmalloc.h> | 
| Masami Hiramatsu | 3945dab | 2009-03-06 10:37:22 -0500 | [diff] [blame] | 8 | #include <linux/memory.h> | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 9 | #include <asm/alternative.h> | 
 | 10 | #include <asm/sections.h> | 
| Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 11 | #include <asm/pgtable.h> | 
| Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 12 | #include <asm/mce.h> | 
 | 13 | #include <asm/nmi.h> | 
| Dave Jones | b097976 | 2007-10-14 22:57:45 +0200 | [diff] [blame] | 14 | #include <asm/vsyscall.h> | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 15 | #include <asm/cacheflush.h> | 
| Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 16 | #include <asm/tlbflush.h> | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 17 | #include <asm/io.h> | 
| Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 18 | #include <asm/fixmap.h> | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 19 |  | 
| Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 20 | #define MAX_PATCH_LEN (255-1) | 
 | 21 |  | 
| Jan Beulich | 0948816 | 2007-07-21 17:10:25 +0200 | [diff] [blame] | 22 | #ifdef CONFIG_HOTPLUG_CPU | 
 | 23 | static int smp_alt_once; | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 24 |  | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 25 | static int __init bootonly(char *str) | 
 | 26 | { | 
 | 27 | 	smp_alt_once = 1; | 
 | 28 | 	return 1; | 
 | 29 | } | 
| Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 30 | __setup("smp-alt-boot", bootonly); | 
| Jan Beulich | 0948816 | 2007-07-21 17:10:25 +0200 | [diff] [blame] | 31 | #else | 
 | 32 | #define smp_alt_once 1 | 
 | 33 | #endif | 
 | 34 |  | 
 | 35 | static int debug_alternative; | 
| Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 36 |  | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 37 | static int __init debug_alt(char *str) | 
 | 38 | { | 
 | 39 | 	debug_alternative = 1; | 
 | 40 | 	return 1; | 
 | 41 | } | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 42 | __setup("debug-alternative", debug_alt); | 
 | 43 |  | 
| Jan Beulich | 0948816 | 2007-07-21 17:10:25 +0200 | [diff] [blame] | 44 | static int noreplace_smp; | 
 | 45 |  | 
| Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 46 | static int __init setup_noreplace_smp(char *str) | 
 | 47 | { | 
 | 48 | 	noreplace_smp = 1; | 
 | 49 | 	return 1; | 
 | 50 | } | 
 | 51 | __setup("noreplace-smp", setup_noreplace_smp); | 
 | 52 |  | 
| Jeremy Fitzhardinge | 959b4fd | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 53 | #ifdef CONFIG_PARAVIRT | 
 | 54 | static int noreplace_paravirt = 0; | 
 | 55 |  | 
 | 56 | static int __init setup_noreplace_paravirt(char *str) | 
 | 57 | { | 
 | 58 | 	noreplace_paravirt = 1; | 
 | 59 | 	return 1; | 
 | 60 | } | 
 | 61 | __setup("noreplace-paravirt", setup_noreplace_paravirt); | 
 | 62 | #endif | 
| Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 63 |  | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 64 | #define DPRINTK(fmt, args...) if (debug_alternative) \ | 
 | 65 | 	printk(KERN_DEBUG fmt, args) | 
 | 66 |  | 
 | 67 | #ifdef GENERIC_NOP1 | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 68 | /* Use inline assembly to define this because the nops are defined | 
 | 69 |    as inline assembly strings in the include files and we cannot | 
 | 70 |    get them easily into strings. */ | 
| Jan Beulich | 121d7bf | 2007-10-17 18:04:37 +0200 | [diff] [blame] | 71 | asm("\t.section .rodata, \"a\"\nintelnops: " | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 72 | 	GENERIC_NOP1 GENERIC_NOP2 GENERIC_NOP3 GENERIC_NOP4 GENERIC_NOP5 GENERIC_NOP6 | 
| Steven Rostedt | f4be31e | 2008-04-09 19:04:07 -0400 | [diff] [blame] | 73 | 	GENERIC_NOP7 GENERIC_NOP8 | 
 | 74 |     "\t.previous"); | 
| Jan Beulich | 121d7bf | 2007-10-17 18:04:37 +0200 | [diff] [blame] | 75 | extern const unsigned char intelnops[]; | 
 | 76 | static const unsigned char *const intel_nops[ASM_NOP_MAX+1] = { | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 77 | 	NULL, | 
 | 78 | 	intelnops, | 
 | 79 | 	intelnops + 1, | 
 | 80 | 	intelnops + 1 + 2, | 
 | 81 | 	intelnops + 1 + 2 + 3, | 
 | 82 | 	intelnops + 1 + 2 + 3 + 4, | 
 | 83 | 	intelnops + 1 + 2 + 3 + 4 + 5, | 
 | 84 | 	intelnops + 1 + 2 + 3 + 4 + 5 + 6, | 
 | 85 | 	intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7, | 
 | 86 | }; | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 87 | #endif | 
 | 88 |  | 
 | 89 | #ifdef K8_NOP1 | 
| Jan Beulich | 121d7bf | 2007-10-17 18:04:37 +0200 | [diff] [blame] | 90 | asm("\t.section .rodata, \"a\"\nk8nops: " | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 91 | 	K8_NOP1 K8_NOP2 K8_NOP3 K8_NOP4 K8_NOP5 K8_NOP6 | 
| Steven Rostedt | f4be31e | 2008-04-09 19:04:07 -0400 | [diff] [blame] | 92 | 	K8_NOP7 K8_NOP8 | 
 | 93 |     "\t.previous"); | 
| Jan Beulich | 121d7bf | 2007-10-17 18:04:37 +0200 | [diff] [blame] | 94 | extern const unsigned char k8nops[]; | 
 | 95 | static const unsigned char *const k8_nops[ASM_NOP_MAX+1] = { | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 96 | 	NULL, | 
 | 97 | 	k8nops, | 
 | 98 | 	k8nops + 1, | 
 | 99 | 	k8nops + 1 + 2, | 
 | 100 | 	k8nops + 1 + 2 + 3, | 
 | 101 | 	k8nops + 1 + 2 + 3 + 4, | 
 | 102 | 	k8nops + 1 + 2 + 3 + 4 + 5, | 
 | 103 | 	k8nops + 1 + 2 + 3 + 4 + 5 + 6, | 
 | 104 | 	k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7, | 
 | 105 | }; | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 106 | #endif | 
 | 107 |  | 
 | 108 | #ifdef K7_NOP1 | 
| Jan Beulich | 121d7bf | 2007-10-17 18:04:37 +0200 | [diff] [blame] | 109 | asm("\t.section .rodata, \"a\"\nk7nops: " | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 110 | 	K7_NOP1 K7_NOP2 K7_NOP3 K7_NOP4 K7_NOP5 K7_NOP6 | 
| Steven Rostedt | f4be31e | 2008-04-09 19:04:07 -0400 | [diff] [blame] | 111 | 	K7_NOP7 K7_NOP8 | 
 | 112 |     "\t.previous"); | 
| Jan Beulich | 121d7bf | 2007-10-17 18:04:37 +0200 | [diff] [blame] | 113 | extern const unsigned char k7nops[]; | 
 | 114 | static const unsigned char *const k7_nops[ASM_NOP_MAX+1] = { | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 115 | 	NULL, | 
 | 116 | 	k7nops, | 
 | 117 | 	k7nops + 1, | 
 | 118 | 	k7nops + 1 + 2, | 
 | 119 | 	k7nops + 1 + 2 + 3, | 
 | 120 | 	k7nops + 1 + 2 + 3 + 4, | 
 | 121 | 	k7nops + 1 + 2 + 3 + 4 + 5, | 
 | 122 | 	k7nops + 1 + 2 + 3 + 4 + 5 + 6, | 
 | 123 | 	k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7, | 
 | 124 | }; | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 125 | #endif | 
 | 126 |  | 
| Jan Beulich | 32c464f | 2007-10-17 18:04:41 +0200 | [diff] [blame] | 127 | #ifdef P6_NOP1 | 
 | 128 | asm("\t.section .rodata, \"a\"\np6nops: " | 
 | 129 | 	P6_NOP1 P6_NOP2 P6_NOP3 P6_NOP4 P6_NOP5 P6_NOP6 | 
| Steven Rostedt | f4be31e | 2008-04-09 19:04:07 -0400 | [diff] [blame] | 130 | 	P6_NOP7 P6_NOP8 | 
 | 131 |     "\t.previous"); | 
| Jan Beulich | 32c464f | 2007-10-17 18:04:41 +0200 | [diff] [blame] | 132 | extern const unsigned char p6nops[]; | 
 | 133 | static const unsigned char *const p6_nops[ASM_NOP_MAX+1] = { | 
 | 134 | 	NULL, | 
 | 135 | 	p6nops, | 
 | 136 | 	p6nops + 1, | 
 | 137 | 	p6nops + 1 + 2, | 
 | 138 | 	p6nops + 1 + 2 + 3, | 
 | 139 | 	p6nops + 1 + 2 + 3 + 4, | 
 | 140 | 	p6nops + 1 + 2 + 3 + 4 + 5, | 
 | 141 | 	p6nops + 1 + 2 + 3 + 4 + 5 + 6, | 
 | 142 | 	p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7, | 
 | 143 | }; | 
 | 144 | #endif | 
 | 145 |  | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 146 | #ifdef CONFIG_X86_64 | 
 | 147 |  | 
 | 148 | extern char __vsyscall_0; | 
| Steven Rostedt | dfa60ab | 2008-05-12 21:20:43 +0200 | [diff] [blame] | 149 | const unsigned char *const *find_nop_table(void) | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 150 | { | 
| H. Peter Anvin | f31d731 | 2008-08-18 17:50:33 -0700 | [diff] [blame] | 151 | 	if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL && | 
 | 152 | 	    boot_cpu_has(X86_FEATURE_NOPL)) | 
 | 153 | 		return p6_nops; | 
 | 154 | 	else | 
 | 155 | 		return k8_nops; | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 156 | } | 
 | 157 |  | 
 | 158 | #else /* CONFIG_X86_64 */ | 
 | 159 |  | 
| Steven Rostedt | dfa60ab | 2008-05-12 21:20:43 +0200 | [diff] [blame] | 160 | const unsigned char *const *find_nop_table(void) | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 161 | { | 
| H. Peter Anvin | f31d731 | 2008-08-18 17:50:33 -0700 | [diff] [blame] | 162 | 	if (boot_cpu_has(X86_FEATURE_K8)) | 
 | 163 | 		return k8_nops; | 
 | 164 | 	else if (boot_cpu_has(X86_FEATURE_K7)) | 
 | 165 | 		return k7_nops; | 
 | 166 | 	else if (boot_cpu_has(X86_FEATURE_NOPL)) | 
 | 167 | 		return p6_nops; | 
 | 168 | 	else | 
 | 169 | 		return intel_nops; | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 170 | } | 
 | 171 |  | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 172 | #endif /* CONFIG_X86_64 */ | 
 | 173 |  | 
| Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 174 | /* Use this to add nops to a buffer, then text_poke the whole buffer. */ | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 175 | void add_nops(void *insns, unsigned int len) | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 176 | { | 
| Jan Beulich | 121d7bf | 2007-10-17 18:04:37 +0200 | [diff] [blame] | 177 | 	const unsigned char *const *noptable = find_nop_table(); | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 178 |  | 
 | 179 | 	while (len > 0) { | 
 | 180 | 		unsigned int noplen = len; | 
 | 181 | 		if (noplen > ASM_NOP_MAX) | 
 | 182 | 			noplen = ASM_NOP_MAX; | 
| Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 183 | 		memcpy(insns, noptable[noplen], noplen); | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 184 | 		insns += noplen; | 
 | 185 | 		len -= noplen; | 
 | 186 | 	} | 
 | 187 | } | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 188 | EXPORT_SYMBOL_GPL(add_nops); | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 189 |  | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 190 | extern struct alt_instr __alt_instructions[], __alt_instructions_end[]; | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 191 | extern u8 *__smp_locks[], *__smp_locks_end[]; | 
 | 192 |  | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 193 | /* Replace instructions with better alternatives for this CPU type. | 
 | 194 |    This runs before SMP is initialized to avoid SMP problems with | 
 | 195 |    self modifying code. This implies that assymetric systems where | 
 | 196 |    APs have less capabilities than the boot processor are not handled. | 
 | 197 |    Tough. Make sure you disable such features by hand. */ | 
 | 198 |  | 
 | 199 | void apply_alternatives(struct alt_instr *start, struct alt_instr *end) | 
 | 200 | { | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 201 | 	struct alt_instr *a; | 
| Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 202 | 	char insnbuf[MAX_PATCH_LEN]; | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 203 |  | 
| Harvey Harrison | 77bf90e | 2008-03-03 11:37:23 -0800 | [diff] [blame] | 204 | 	DPRINTK("%s: alt table %p -> %p\n", __func__, start, end); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 205 | 	for (a = start; a < end; a++) { | 
| Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 206 | 		u8 *instr = a->instr; | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 207 | 		BUG_ON(a->replacementlen > a->instrlen); | 
| Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 208 | 		BUG_ON(a->instrlen > sizeof(insnbuf)); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 209 | 		if (!boot_cpu_has(a->cpuid)) | 
 | 210 | 			continue; | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 211 | #ifdef CONFIG_X86_64 | 
 | 212 | 		/* vsyscall code is not mapped yet. resolve it manually. */ | 
 | 213 | 		if (instr >= (u8 *)VSYSCALL_START && instr < (u8*)VSYSCALL_END) { | 
 | 214 | 			instr = __va(instr - (u8*)VSYSCALL_START + (u8*)__pa_symbol(&__vsyscall_0)); | 
 | 215 | 			DPRINTK("%s: vsyscall fixup: %p => %p\n", | 
| Harvey Harrison | 77bf90e | 2008-03-03 11:37:23 -0800 | [diff] [blame] | 216 | 				__func__, a->instr, instr); | 
| Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 217 | 		} | 
 | 218 | #endif | 
| Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 219 | 		memcpy(insnbuf, a->replacement, a->replacementlen); | 
 | 220 | 		add_nops(insnbuf + a->replacementlen, | 
 | 221 | 			 a->instrlen - a->replacementlen); | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 222 | 		text_poke_early(instr, insnbuf, a->instrlen); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 223 | 	} | 
 | 224 | } | 
 | 225 |  | 
| Gerd Hoffmann | 8ec4d41 | 2006-07-01 04:36:18 -0700 | [diff] [blame] | 226 | #ifdef CONFIG_SMP | 
 | 227 |  | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 228 | static void alternatives_smp_lock(u8 **start, u8 **end, u8 *text, u8 *text_end) | 
 | 229 | { | 
 | 230 | 	u8 **ptr; | 
 | 231 |  | 
| Masami Hiramatsu | 3945dab | 2009-03-06 10:37:22 -0500 | [diff] [blame] | 232 | 	mutex_lock(&text_mutex); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 233 | 	for (ptr = start; ptr < end; ptr++) { | 
 | 234 | 		if (*ptr < text) | 
 | 235 | 			continue; | 
 | 236 | 		if (*ptr > text_end) | 
 | 237 | 			continue; | 
| Mathieu Desnoyers | f88f07e | 2008-08-14 16:58:15 -0400 | [diff] [blame] | 238 | 		/* turn DS segment override prefix into lock prefix */ | 
 | 239 | 		text_poke(*ptr, ((unsigned char []){0xf0}), 1); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 240 | 	}; | 
| Masami Hiramatsu | 3945dab | 2009-03-06 10:37:22 -0500 | [diff] [blame] | 241 | 	mutex_unlock(&text_mutex); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 242 | } | 
 | 243 |  | 
 | 244 | static void alternatives_smp_unlock(u8 **start, u8 **end, u8 *text, u8 *text_end) | 
 | 245 | { | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 246 | 	u8 **ptr; | 
 | 247 |  | 
| Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 248 | 	if (noreplace_smp) | 
 | 249 | 		return; | 
 | 250 |  | 
| Masami Hiramatsu | 3945dab | 2009-03-06 10:37:22 -0500 | [diff] [blame] | 251 | 	mutex_lock(&text_mutex); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 252 | 	for (ptr = start; ptr < end; ptr++) { | 
 | 253 | 		if (*ptr < text) | 
 | 254 | 			continue; | 
 | 255 | 		if (*ptr > text_end) | 
 | 256 | 			continue; | 
| Mathieu Desnoyers | f88f07e | 2008-08-14 16:58:15 -0400 | [diff] [blame] | 257 | 		/* turn lock prefix into DS segment override prefix */ | 
 | 258 | 		text_poke(*ptr, ((unsigned char []){0x3E}), 1); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 259 | 	}; | 
| Masami Hiramatsu | 3945dab | 2009-03-06 10:37:22 -0500 | [diff] [blame] | 260 | 	mutex_unlock(&text_mutex); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 261 | } | 
 | 262 |  | 
 | 263 | struct 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 | }; | 
 | 278 | static LIST_HEAD(smp_alt_modules); | 
| Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 279 | static DEFINE_MUTEX(smp_alt); | 
| Andi Kleen | ca74a6f | 2008-01-30 13:33:17 +0100 | [diff] [blame] | 280 | static int smp_mode = 1;	/* protected by smp_alt */ | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 281 |  | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 282 | void 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; | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 287 |  | 
| Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 288 | 	if (noreplace_smp) | 
 | 289 | 		return; | 
 | 290 |  | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 291 | 	if (smp_alt_once) { | 
 | 292 | 		if (boot_cpu_has(X86_FEATURE_UP)) | 
 | 293 | 			alternatives_smp_unlock(locks, locks_end, | 
 | 294 | 						text, text_end); | 
 | 295 | 		return; | 
 | 296 | 	} | 
 | 297 |  | 
 | 298 | 	smp = kzalloc(sizeof(*smp), GFP_KERNEL); | 
 | 299 | 	if (NULL == smp) | 
 | 300 | 		return; /* we'll run the (safe but slow) SMP code then ... */ | 
 | 301 |  | 
 | 302 | 	smp->mod	= mod; | 
 | 303 | 	smp->name	= name; | 
 | 304 | 	smp->locks	= locks; | 
 | 305 | 	smp->locks_end	= locks_end; | 
 | 306 | 	smp->text	= text; | 
 | 307 | 	smp->text_end	= text_end; | 
 | 308 | 	DPRINTK("%s: locks %p -> %p, text %p -> %p, name %s\n", | 
| Harvey Harrison | 77bf90e | 2008-03-03 11:37:23 -0800 | [diff] [blame] | 309 | 		__func__, smp->locks, smp->locks_end, | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 310 | 		smp->text, smp->text_end, smp->name); | 
 | 311 |  | 
| Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 312 | 	mutex_lock(&smp_alt); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 313 | 	list_add_tail(&smp->next, &smp_alt_modules); | 
 | 314 | 	if (boot_cpu_has(X86_FEATURE_UP)) | 
 | 315 | 		alternatives_smp_unlock(smp->locks, smp->locks_end, | 
 | 316 | 					smp->text, smp->text_end); | 
| Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 317 | 	mutex_unlock(&smp_alt); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 318 | } | 
 | 319 |  | 
 | 320 | void alternatives_smp_module_del(struct module *mod) | 
 | 321 | { | 
 | 322 | 	struct smp_alt_module *item; | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 323 |  | 
| Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 324 | 	if (smp_alt_once || noreplace_smp) | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 325 | 		return; | 
 | 326 |  | 
| Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 327 | 	mutex_lock(&smp_alt); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 328 | 	list_for_each_entry(item, &smp_alt_modules, next) { | 
 | 329 | 		if (mod != item->mod) | 
 | 330 | 			continue; | 
 | 331 | 		list_del(&item->next); | 
| Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 332 | 		mutex_unlock(&smp_alt); | 
| Harvey Harrison | 77bf90e | 2008-03-03 11:37:23 -0800 | [diff] [blame] | 333 | 		DPRINTK("%s: %s\n", __func__, item->name); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 334 | 		kfree(item); | 
 | 335 | 		return; | 
 | 336 | 	} | 
| Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 337 | 	mutex_unlock(&smp_alt); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 338 | } | 
 | 339 |  | 
 | 340 | void alternatives_smp_switch(int smp) | 
 | 341 | { | 
 | 342 | 	struct smp_alt_module *mod; | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 343 |  | 
| Ingo Molnar | 3047e99 | 2006-07-03 00:24:57 -0700 | [diff] [blame] | 344 | #ifdef CONFIG_LOCKDEP | 
 | 345 | 	/* | 
| Ingo Molnar | 17abecf | 2008-01-30 13:33:24 +0100 | [diff] [blame] | 346 | 	 * Older binutils section handling bug prevented | 
 | 347 | 	 * alternatives-replacement from working reliably. | 
 | 348 | 	 * | 
 | 349 | 	 * If this still occurs then you should see a hang | 
 | 350 | 	 * or crash shortly after this line: | 
| Ingo Molnar | 3047e99 | 2006-07-03 00:24:57 -0700 | [diff] [blame] | 351 | 	 */ | 
| Ingo Molnar | 17abecf | 2008-01-30 13:33:24 +0100 | [diff] [blame] | 352 | 	printk("lockdep: fixing up alternatives.\n"); | 
| Ingo Molnar | 3047e99 | 2006-07-03 00:24:57 -0700 | [diff] [blame] | 353 | #endif | 
 | 354 |  | 
| Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 355 | 	if (noreplace_smp || smp_alt_once) | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 356 | 		return; | 
 | 357 | 	BUG_ON(!smp && (num_online_cpus() > 1)); | 
 | 358 |  | 
| Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 359 | 	mutex_lock(&smp_alt); | 
| Andi Kleen | ca74a6f | 2008-01-30 13:33:17 +0100 | [diff] [blame] | 360 |  | 
 | 361 | 	/* | 
 | 362 | 	 * Avoid unnecessary switches because it forces JIT based VMs to | 
 | 363 | 	 * throw away all cached translations, which can be quite costly. | 
 | 364 | 	 */ | 
 | 365 | 	if (smp == smp_mode) { | 
 | 366 | 		/* nothing */ | 
 | 367 | 	} else if (smp) { | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 368 | 		printk(KERN_INFO "SMP alternatives: switching to SMP code\n"); | 
| Jeremy Fitzhardinge | 53756d3 | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 369 | 		clear_cpu_cap(&boot_cpu_data, X86_FEATURE_UP); | 
 | 370 | 		clear_cpu_cap(&cpu_data(0), X86_FEATURE_UP); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 371 | 		list_for_each_entry(mod, &smp_alt_modules, next) | 
 | 372 | 			alternatives_smp_lock(mod->locks, mod->locks_end, | 
 | 373 | 					      mod->text, mod->text_end); | 
 | 374 | 	} else { | 
 | 375 | 		printk(KERN_INFO "SMP alternatives: switching to UP code\n"); | 
| Jeremy Fitzhardinge | 53756d3 | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 376 | 		set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP); | 
 | 377 | 		set_cpu_cap(&cpu_data(0), X86_FEATURE_UP); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 378 | 		list_for_each_entry(mod, &smp_alt_modules, next) | 
 | 379 | 			alternatives_smp_unlock(mod->locks, mod->locks_end, | 
 | 380 | 						mod->text, mod->text_end); | 
 | 381 | 	} | 
| Andi Kleen | ca74a6f | 2008-01-30 13:33:17 +0100 | [diff] [blame] | 382 | 	smp_mode = smp; | 
| Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 383 | 	mutex_unlock(&smp_alt); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 384 | } | 
 | 385 |  | 
| Gerd Hoffmann | 8ec4d41 | 2006-07-01 04:36:18 -0700 | [diff] [blame] | 386 | #endif | 
 | 387 |  | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 388 | #ifdef CONFIG_PARAVIRT | 
| Jeremy Fitzhardinge | 98de032 | 2007-05-02 19:27:14 +0200 | [diff] [blame] | 389 | void apply_paravirt(struct paravirt_patch_site *start, | 
 | 390 | 		    struct paravirt_patch_site *end) | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 391 | { | 
| Jeremy Fitzhardinge | 98de032 | 2007-05-02 19:27:14 +0200 | [diff] [blame] | 392 | 	struct paravirt_patch_site *p; | 
| Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 393 | 	char insnbuf[MAX_PATCH_LEN]; | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 394 |  | 
| Jeremy Fitzhardinge | 959b4fd | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 395 | 	if (noreplace_paravirt) | 
 | 396 | 		return; | 
 | 397 |  | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 398 | 	for (p = start; p < end; p++) { | 
 | 399 | 		unsigned int used; | 
 | 400 |  | 
| Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 401 | 		BUG_ON(p->len > MAX_PATCH_LEN); | 
| Chris Wright | d34fda4 | 2007-08-18 14:31:41 -0700 | [diff] [blame] | 402 | 		/* prep the buffer with the original instructions */ | 
 | 403 | 		memcpy(insnbuf, p->instr, p->len); | 
| Jeremy Fitzhardinge | 93b1eab | 2007-10-16 11:51:29 -0700 | [diff] [blame] | 404 | 		used = pv_init_ops.patch(p->instrtype, p->clobbers, insnbuf, | 
 | 405 | 					 (unsigned long)p->instr, p->len); | 
| Jeremy Fitzhardinge | 7f63c41 | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 406 |  | 
| Jeremy Fitzhardinge | 63f7027 | 2007-05-02 19:27:14 +0200 | [diff] [blame] | 407 | 		BUG_ON(used > p->len); | 
 | 408 |  | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 409 | 		/* Pad the rest with nops */ | 
| Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 410 | 		add_nops(insnbuf + used, p->len - used); | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 411 | 		text_poke_early(p->instr, insnbuf, p->len); | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 412 | 	} | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 413 | } | 
| Jeremy Fitzhardinge | 98de032 | 2007-05-02 19:27:14 +0200 | [diff] [blame] | 414 | extern struct paravirt_patch_site __start_parainstructions[], | 
| Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 415 | 	__stop_parainstructions[]; | 
 | 416 | #endif	/* CONFIG_PARAVIRT */ | 
 | 417 |  | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 418 | void __init alternative_instructions(void) | 
 | 419 | { | 
| Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 420 | 	/* The patching is not fully atomic, so try to avoid local interruptions | 
 | 421 | 	   that might execute the to be patched code. | 
 | 422 | 	   Other CPUs are not running. */ | 
 | 423 | 	stop_nmi(); | 
| Andi Kleen | 123aa76 | 2009-02-12 13:39:27 +0100 | [diff] [blame] | 424 |  | 
 | 425 | 	/* | 
 | 426 | 	 * Don't stop machine check exceptions while patching. | 
 | 427 | 	 * MCEs only happen when something got corrupted and in this | 
 | 428 | 	 * case we must do something about the corruption. | 
 | 429 | 	 * Ignoring it is worse than a unlikely patching race. | 
 | 430 | 	 * Also machine checks tend to be broadcast and if one CPU | 
 | 431 | 	 * goes into machine check the others follow quickly, so we don't | 
 | 432 | 	 * expect a machine check to cause undue problems during to code | 
 | 433 | 	 * patching. | 
 | 434 | 	 */ | 
| Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 435 |  | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 436 | 	apply_alternatives(__alt_instructions, __alt_instructions_end); | 
 | 437 |  | 
 | 438 | 	/* switch to patch-once-at-boottime-only mode and free the | 
 | 439 | 	 * tables in case we know the number of CPUs will never ever | 
 | 440 | 	 * change */ | 
 | 441 | #ifdef CONFIG_HOTPLUG_CPU | 
 | 442 | 	if (num_possible_cpus() < 2) | 
 | 443 | 		smp_alt_once = 1; | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 444 | #endif | 
 | 445 |  | 
| Gerd Hoffmann | 8ec4d41 | 2006-07-01 04:36:18 -0700 | [diff] [blame] | 446 | #ifdef CONFIG_SMP | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 447 | 	if (smp_alt_once) { | 
 | 448 | 		if (1 == num_possible_cpus()) { | 
 | 449 | 			printk(KERN_INFO "SMP alternatives: switching to UP code\n"); | 
| Jeremy Fitzhardinge | 53756d3 | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 450 | 			set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP); | 
 | 451 | 			set_cpu_cap(&cpu_data(0), X86_FEATURE_UP); | 
 | 452 |  | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 453 | 			alternatives_smp_unlock(__smp_locks, __smp_locks_end, | 
 | 454 | 						_text, _etext); | 
 | 455 | 		} | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 456 | 	} else { | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 457 | 		alternatives_smp_module_add(NULL, "core kernel", | 
 | 458 | 					    __smp_locks, __smp_locks_end, | 
 | 459 | 					    _text, _etext); | 
| Andi Kleen | ca74a6f | 2008-01-30 13:33:17 +0100 | [diff] [blame] | 460 |  | 
 | 461 | 		/* Only switch to UP mode if we don't immediately boot others */ | 
| Thomas Gleixner | 649c665 | 2008-10-05 16:52:24 +0200 | [diff] [blame] | 462 | 		if (num_present_cpus() == 1 || setup_max_cpus <= 1) | 
| Andi Kleen | ca74a6f | 2008-01-30 13:33:17 +0100 | [diff] [blame] | 463 | 			alternatives_smp_switch(0); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 464 | 	} | 
| Gerd Hoffmann | 8ec4d41 | 2006-07-01 04:36:18 -0700 | [diff] [blame] | 465 | #endif | 
| Jeremy Fitzhardinge | 441d40d | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 466 |  	apply_paravirt(__parainstructions, __parainstructions_end); | 
| Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 467 |  | 
| Fengguang Wu | f68fd5f | 2007-10-17 18:04:34 +0200 | [diff] [blame] | 468 | 	if (smp_alt_once) | 
 | 469 | 		free_init_pages("SMP alternatives", | 
 | 470 | 				(unsigned long)__smp_locks, | 
 | 471 | 				(unsigned long)__smp_locks_end); | 
 | 472 |  | 
| Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 473 | 	restart_nmi(); | 
| Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 474 | } | 
| Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 475 |  | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 476 | /** | 
 | 477 |  * text_poke_early - Update instructions on a live kernel at boot time | 
 | 478 |  * @addr: address to modify | 
 | 479 |  * @opcode: source of the copy | 
 | 480 |  * @len: length to copy | 
 | 481 |  * | 
| Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 482 |  * When you use this code to patch more than one byte of an instruction | 
 | 483 |  * you need to make sure that other CPUs cannot execute this code in parallel. | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 484 |  * Also no thread must be currently preempted in the middle of these | 
 | 485 |  * instructions. And on the local CPU you need to be protected again NMI or MCE | 
 | 486 |  * handlers seeing an inconsistent instruction while you patch. | 
| Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 487 |  */ | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 488 | void *text_poke_early(void *addr, const void *opcode, size_t len) | 
| Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 489 | { | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 490 | 	unsigned long flags; | 
 | 491 | 	local_irq_save(flags); | 
| Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 492 | 	memcpy(addr, opcode, len); | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 493 | 	local_irq_restore(flags); | 
| Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 494 | 	sync_core(); | 
| Andi Kleen | a534b67 | 2007-09-06 16:59:52 +0200 | [diff] [blame] | 495 | 	/* Could also do a CLFLUSH here to speed up CPU recovery; but | 
 | 496 | 	   that causes hangs on some VIA CPUs. */ | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 497 | 	return addr; | 
 | 498 | } | 
 | 499 |  | 
 | 500 | /** | 
 | 501 |  * text_poke - Update instructions on a live kernel | 
 | 502 |  * @addr: address to modify | 
 | 503 |  * @opcode: source of the copy | 
 | 504 |  * @len: length to copy | 
 | 505 |  * | 
 | 506 |  * Only atomic text poke/set should be allowed when not doing early patching. | 
 | 507 |  * It means the size must be writable atomically and the address must be aligned | 
 | 508 |  * in a way that permits an atomic write. It also makes sure we fit on a single | 
 | 509 |  * page. | 
| Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 510 |  * | 
 | 511 |  * Note: Must be called under text_mutex. | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 512 |  */ | 
 | 513 | void *__kprobes text_poke(void *addr, const void *opcode, size_t len) | 
 | 514 | { | 
| Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 515 | 	unsigned long flags; | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 516 | 	char *vaddr; | 
| Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 517 | 	struct page *pages[2]; | 
 | 518 | 	int i; | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 519 |  | 
| Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 520 | 	if (!core_kernel_text((unsigned long)addr)) { | 
 | 521 | 		pages[0] = vmalloc_to_page(addr); | 
 | 522 | 		pages[1] = vmalloc_to_page(addr + PAGE_SIZE); | 
| Mathieu Desnoyers | 15a601e | 2008-03-12 11:54:16 -0400 | [diff] [blame] | 523 | 	} else { | 
| Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 524 | 		pages[0] = virt_to_page(addr); | 
| Ingo Molnar | 00c6b2d | 2008-04-25 17:07:03 +0200 | [diff] [blame] | 525 | 		WARN_ON(!PageReserved(pages[0])); | 
| Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 526 | 		pages[1] = virt_to_page(addr + PAGE_SIZE); | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 527 | 	} | 
| Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 528 | 	BUG_ON(!pages[0]); | 
| Masami Hiramatsu | 7cf4942 | 2009-03-09 12:40:40 -0400 | [diff] [blame] | 529 | 	local_irq_save(flags); | 
| Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 530 | 	set_fixmap(FIX_TEXT_POKE0, page_to_phys(pages[0])); | 
 | 531 | 	if (pages[1]) | 
 | 532 | 		set_fixmap(FIX_TEXT_POKE1, page_to_phys(pages[1])); | 
 | 533 | 	vaddr = (char *)fix_to_virt(FIX_TEXT_POKE0); | 
| Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 534 | 	memcpy(&vaddr[(unsigned long)addr & ~PAGE_MASK], opcode, len); | 
| Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 535 | 	clear_fixmap(FIX_TEXT_POKE0); | 
 | 536 | 	if (pages[1]) | 
 | 537 | 		clear_fixmap(FIX_TEXT_POKE1); | 
 | 538 | 	local_flush_tlb(); | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 539 | 	sync_core(); | 
 | 540 | 	/* Could also do a CLFLUSH here to speed up CPU recovery; but | 
 | 541 | 	   that causes hangs on some VIA CPUs. */ | 
| Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 542 | 	for (i = 0; i < len; i++) | 
 | 543 | 		BUG_ON(((char *)addr)[i] != ((char *)opcode)[i]); | 
| Masami Hiramatsu | 7cf4942 | 2009-03-09 12:40:40 -0400 | [diff] [blame] | 544 | 	local_irq_restore(flags); | 
| Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 545 | 	return addr; | 
| Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 546 | } |