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