Joe Perches | c767a54 | 2012-05-21 19:50:07 -0700 | [diff] [blame] | 1 | #define pr_fmt(fmt) "SMP alternatives: " fmt |
| 2 | |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 3 | #include <linux/module.h> |
Al Viro | f6a5703 | 2006-10-18 01:47:25 -0400 | [diff] [blame] | 4 | #include <linux/sched.h> |
Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 5 | #include <linux/mutex.h> |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 6 | #include <linux/list.h> |
Jan Beulich | 8b5a10f | 2009-08-19 08:40:48 +0100 | [diff] [blame] | 7 | #include <linux/stringify.h> |
Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 8 | #include <linux/kprobes.h> |
| 9 | #include <linux/mm.h> |
| 10 | #include <linux/vmalloc.h> |
Masami Hiramatsu | 3945dab | 2009-03-06 10:37:22 -0500 | [diff] [blame] | 11 | #include <linux/memory.h> |
Masami Hiramatsu | 3d55cc8 | 2010-02-25 08:34:38 -0500 | [diff] [blame] | 12 | #include <linux/stop_machine.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 14 | #include <asm/alternative.h> |
| 15 | #include <asm/sections.h> |
Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 16 | #include <asm/pgtable.h> |
Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 17 | #include <asm/mce.h> |
| 18 | #include <asm/nmi.h> |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 19 | #include <asm/cacheflush.h> |
Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 20 | #include <asm/tlbflush.h> |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 21 | #include <asm/io.h> |
Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 22 | #include <asm/fixmap.h> |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 23 | |
Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 24 | #define MAX_PATCH_LEN (255-1) |
| 25 | |
Jan Beulich | 8b5a10f | 2009-08-19 08:40:48 +0100 | [diff] [blame] | 26 | static int __initdata_or_module debug_alternative; |
Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 27 | |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 28 | static int __init debug_alt(char *str) |
| 29 | { |
| 30 | debug_alternative = 1; |
| 31 | return 1; |
| 32 | } |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 33 | __setup("debug-alternative", debug_alt); |
| 34 | |
Jan Beulich | 0948816 | 2007-07-21 17:10:25 +0200 | [diff] [blame] | 35 | static int noreplace_smp; |
| 36 | |
Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 37 | static int __init setup_noreplace_smp(char *str) |
| 38 | { |
| 39 | noreplace_smp = 1; |
| 40 | return 1; |
| 41 | } |
| 42 | __setup("noreplace-smp", setup_noreplace_smp); |
| 43 | |
Jeremy Fitzhardinge | 959b4fd | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 44 | #ifdef CONFIG_PARAVIRT |
Jan Beulich | 8b5a10f | 2009-08-19 08:40:48 +0100 | [diff] [blame] | 45 | static int __initdata_or_module noreplace_paravirt = 0; |
Jeremy Fitzhardinge | 959b4fd | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 46 | |
| 47 | static int __init setup_noreplace_paravirt(char *str) |
| 48 | { |
| 49 | noreplace_paravirt = 1; |
| 50 | return 1; |
| 51 | } |
| 52 | __setup("noreplace-paravirt", setup_noreplace_paravirt); |
| 53 | #endif |
Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 54 | |
Joe Perches | c767a54 | 2012-05-21 19:50:07 -0700 | [diff] [blame] | 55 | #define DPRINTK(fmt, ...) \ |
| 56 | do { \ |
| 57 | if (debug_alternative) \ |
| 58 | printk(KERN_DEBUG fmt, ##__VA_ARGS__); \ |
| 59 | } while (0) |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 60 | |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 61 | /* |
| 62 | * Each GENERIC_NOPX is of X bytes, and defined as an array of bytes |
| 63 | * that correspond to that nop. Getting from one nop to the next, we |
| 64 | * add to the array the offset that is equal to the sum of all sizes of |
| 65 | * nops preceding the one we are after. |
| 66 | * |
| 67 | * Note: The GENERIC_NOP5_ATOMIC is at the end, as it breaks the |
| 68 | * nice symmetry of sizes of the previous nops. |
| 69 | */ |
Jan Beulich | 8b5a10f | 2009-08-19 08:40:48 +0100 | [diff] [blame] | 70 | #if defined(GENERIC_NOP1) && !defined(CONFIG_X86_64) |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 71 | static const unsigned char intelnops[] = |
| 72 | { |
| 73 | GENERIC_NOP1, |
| 74 | GENERIC_NOP2, |
| 75 | GENERIC_NOP3, |
| 76 | GENERIC_NOP4, |
| 77 | GENERIC_NOP5, |
| 78 | GENERIC_NOP6, |
| 79 | GENERIC_NOP7, |
| 80 | GENERIC_NOP8, |
| 81 | GENERIC_NOP5_ATOMIC |
| 82 | }; |
| 83 | static const unsigned char * const intel_nops[ASM_NOP_MAX+2] = |
| 84 | { |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 85 | NULL, |
| 86 | intelnops, |
| 87 | intelnops + 1, |
| 88 | intelnops + 1 + 2, |
| 89 | intelnops + 1 + 2 + 3, |
| 90 | intelnops + 1 + 2 + 3 + 4, |
| 91 | intelnops + 1 + 2 + 3 + 4 + 5, |
| 92 | intelnops + 1 + 2 + 3 + 4 + 5 + 6, |
| 93 | intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7, |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 94 | intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8, |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 95 | }; |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 96 | #endif |
| 97 | |
| 98 | #ifdef K8_NOP1 |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 99 | static const unsigned char k8nops[] = |
| 100 | { |
| 101 | K8_NOP1, |
| 102 | K8_NOP2, |
| 103 | K8_NOP3, |
| 104 | K8_NOP4, |
| 105 | K8_NOP5, |
| 106 | K8_NOP6, |
| 107 | K8_NOP7, |
| 108 | K8_NOP8, |
| 109 | K8_NOP5_ATOMIC |
| 110 | }; |
| 111 | static const unsigned char * const k8_nops[ASM_NOP_MAX+2] = |
| 112 | { |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 113 | NULL, |
| 114 | k8nops, |
| 115 | k8nops + 1, |
| 116 | k8nops + 1 + 2, |
| 117 | k8nops + 1 + 2 + 3, |
| 118 | k8nops + 1 + 2 + 3 + 4, |
| 119 | k8nops + 1 + 2 + 3 + 4 + 5, |
| 120 | k8nops + 1 + 2 + 3 + 4 + 5 + 6, |
| 121 | k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7, |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 122 | k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8, |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 123 | }; |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 124 | #endif |
| 125 | |
Jan Beulich | 8b5a10f | 2009-08-19 08:40:48 +0100 | [diff] [blame] | 126 | #if defined(K7_NOP1) && !defined(CONFIG_X86_64) |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 127 | static const unsigned char k7nops[] = |
| 128 | { |
| 129 | K7_NOP1, |
| 130 | K7_NOP2, |
| 131 | K7_NOP3, |
| 132 | K7_NOP4, |
| 133 | K7_NOP5, |
| 134 | K7_NOP6, |
| 135 | K7_NOP7, |
| 136 | K7_NOP8, |
| 137 | K7_NOP5_ATOMIC |
| 138 | }; |
| 139 | static const unsigned char * const k7_nops[ASM_NOP_MAX+2] = |
| 140 | { |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 141 | NULL, |
| 142 | k7nops, |
| 143 | k7nops + 1, |
| 144 | k7nops + 1 + 2, |
| 145 | k7nops + 1 + 2 + 3, |
| 146 | k7nops + 1 + 2 + 3 + 4, |
| 147 | k7nops + 1 + 2 + 3 + 4 + 5, |
| 148 | k7nops + 1 + 2 + 3 + 4 + 5 + 6, |
| 149 | k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7, |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 150 | k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8, |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 151 | }; |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 152 | #endif |
| 153 | |
Jan Beulich | 32c464f | 2007-10-17 18:04:41 +0200 | [diff] [blame] | 154 | #ifdef P6_NOP1 |
Avi Kivity | cb09cad | 2012-08-22 13:03:48 +0300 | [diff] [blame] | 155 | static const unsigned char p6nops[] = |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 156 | { |
| 157 | P6_NOP1, |
| 158 | P6_NOP2, |
| 159 | P6_NOP3, |
| 160 | P6_NOP4, |
| 161 | P6_NOP5, |
| 162 | P6_NOP6, |
| 163 | P6_NOP7, |
| 164 | P6_NOP8, |
| 165 | P6_NOP5_ATOMIC |
| 166 | }; |
| 167 | static const unsigned char * const p6_nops[ASM_NOP_MAX+2] = |
| 168 | { |
Jan Beulich | 32c464f | 2007-10-17 18:04:41 +0200 | [diff] [blame] | 169 | NULL, |
| 170 | p6nops, |
| 171 | p6nops + 1, |
| 172 | p6nops + 1 + 2, |
| 173 | p6nops + 1 + 2 + 3, |
| 174 | p6nops + 1 + 2 + 3 + 4, |
| 175 | p6nops + 1 + 2 + 3 + 4 + 5, |
| 176 | p6nops + 1 + 2 + 3 + 4 + 5 + 6, |
| 177 | p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7, |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 178 | p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8, |
Jan Beulich | 32c464f | 2007-10-17 18:04:41 +0200 | [diff] [blame] | 179 | }; |
| 180 | #endif |
| 181 | |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 182 | /* Initialize these to a safe default */ |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 183 | #ifdef CONFIG_X86_64 |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 184 | const unsigned char * const *ideal_nops = p6_nops; |
| 185 | #else |
| 186 | const unsigned char * const *ideal_nops = intel_nops; |
| 187 | #endif |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 188 | |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 189 | void __init arch_init_ideal_nops(void) |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 190 | { |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 191 | switch (boot_cpu_data.x86_vendor) { |
| 192 | case X86_VENDOR_INTEL: |
H. Peter Anvin | d8d9766 | 2011-04-18 15:31:57 -0700 | [diff] [blame] | 193 | /* |
| 194 | * Due to a decoder implementation quirk, some |
| 195 | * specific Intel CPUs actually perform better with |
| 196 | * the "k8_nops" than with the SDM-recommended NOPs. |
| 197 | */ |
| 198 | if (boot_cpu_data.x86 == 6 && |
| 199 | boot_cpu_data.x86_model >= 0x0f && |
| 200 | boot_cpu_data.x86_model != 0x1c && |
| 201 | boot_cpu_data.x86_model != 0x26 && |
| 202 | boot_cpu_data.x86_model != 0x27 && |
| 203 | boot_cpu_data.x86_model < 0x30) { |
| 204 | ideal_nops = k8_nops; |
| 205 | } else if (boot_cpu_has(X86_FEATURE_NOPL)) { |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 206 | ideal_nops = p6_nops; |
| 207 | } else { |
| 208 | #ifdef CONFIG_X86_64 |
| 209 | ideal_nops = k8_nops; |
| 210 | #else |
| 211 | ideal_nops = intel_nops; |
| 212 | #endif |
| 213 | } |
Alan Cox | d6250a3 | 2012-07-25 16:28:19 +0100 | [diff] [blame] | 214 | break; |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 215 | default: |
| 216 | #ifdef CONFIG_X86_64 |
| 217 | ideal_nops = k8_nops; |
| 218 | #else |
| 219 | if (boot_cpu_has(X86_FEATURE_K8)) |
| 220 | ideal_nops = k8_nops; |
| 221 | else if (boot_cpu_has(X86_FEATURE_K7)) |
| 222 | ideal_nops = k7_nops; |
| 223 | else |
| 224 | ideal_nops = intel_nops; |
| 225 | #endif |
| 226 | } |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 227 | } |
| 228 | |
Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 229 | /* 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] | 230 | static void __init_or_module add_nops(void *insns, unsigned int len) |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 231 | { |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 232 | while (len > 0) { |
| 233 | unsigned int noplen = len; |
| 234 | if (noplen > ASM_NOP_MAX) |
| 235 | noplen = ASM_NOP_MAX; |
H. Peter Anvin | dc326fc | 2011-04-18 15:19:51 -0700 | [diff] [blame] | 236 | memcpy(insns, ideal_nops[noplen], noplen); |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 237 | insns += noplen; |
| 238 | len -= noplen; |
| 239 | } |
| 240 | } |
| 241 | |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 242 | extern struct alt_instr __alt_instructions[], __alt_instructions_end[]; |
Jan Beulich | 5967ed8 | 2010-04-21 16:08:14 +0100 | [diff] [blame] | 243 | extern s32 __smp_locks[], __smp_locks_end[]; |
Jason Baron | fa6f2cc | 2010-09-17 11:08:56 -0400 | [diff] [blame] | 244 | void *text_poke_early(void *addr, const void *opcode, size_t len); |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 245 | |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 246 | /* Replace instructions with better alternatives for this CPU type. |
| 247 | This runs before SMP is initialized to avoid SMP problems with |
Lucas De Marchi | 0d2eb44 | 2011-03-17 16:24:16 -0300 | [diff] [blame] | 248 | self modifying code. This implies that asymmetric systems where |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 249 | APs have less capabilities than the boot processor are not handled. |
| 250 | Tough. Make sure you disable such features by hand. */ |
| 251 | |
Jan Beulich | 8b5a10f | 2009-08-19 08:40:48 +0100 | [diff] [blame] | 252 | void __init_or_module apply_alternatives(struct alt_instr *start, |
| 253 | struct alt_instr *end) |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 254 | { |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 255 | struct alt_instr *a; |
Andy Lutomirski | 59e97e4 | 2011-07-13 09:24:10 -0400 | [diff] [blame] | 256 | u8 *instr, *replacement; |
Jan Beulich | 1b1d925 | 2009-12-18 16:12:56 +0000 | [diff] [blame] | 257 | u8 insnbuf[MAX_PATCH_LEN]; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 258 | |
Harvey Harrison | 77bf90e | 2008-03-03 11:37:23 -0800 | [diff] [blame] | 259 | DPRINTK("%s: alt table %p -> %p\n", __func__, start, end); |
Fenghua Yu | 5097313 | 2011-05-17 15:29:12 -0700 | [diff] [blame] | 260 | /* |
| 261 | * The scan order should be from start to end. A later scanned |
| 262 | * alternative code can overwrite a previous scanned alternative code. |
| 263 | * Some kernel functions (e.g. memcpy, memset, etc) use this order to |
| 264 | * patch code. |
| 265 | * |
| 266 | * So be careful if you want to change the scan order to any other |
| 267 | * order. |
| 268 | */ |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 269 | for (a = start; a < end; a++) { |
Andy Lutomirski | 59e97e4 | 2011-07-13 09:24:10 -0400 | [diff] [blame] | 270 | instr = (u8 *)&a->instr_offset + a->instr_offset; |
| 271 | replacement = (u8 *)&a->repl_offset + a->repl_offset; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 272 | BUG_ON(a->replacementlen > a->instrlen); |
Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 273 | BUG_ON(a->instrlen > sizeof(insnbuf)); |
Borislav Petkov | 65fc985 | 2013-03-20 15:07:23 +0100 | [diff] [blame] | 274 | BUG_ON(a->cpuid >= (NCAPINTS + NBUGINTS) * 32); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 275 | if (!boot_cpu_has(a->cpuid)) |
| 276 | continue; |
Andy Lutomirski | 59e97e4 | 2011-07-13 09:24:10 -0400 | [diff] [blame] | 277 | |
| 278 | memcpy(insnbuf, replacement, a->replacementlen); |
| 279 | |
| 280 | /* 0xe8 is a relative jump; fix the offset. */ |
| 281 | if (*insnbuf == 0xe8 && a->replacementlen == 5) |
| 282 | *(s32 *)(insnbuf + 1) += replacement - instr; |
| 283 | |
| 284 | add_nops(insnbuf + a->replacementlen, |
| 285 | a->instrlen - a->replacementlen); |
| 286 | |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 287 | text_poke_early(instr, insnbuf, a->instrlen); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 288 | } |
| 289 | } |
| 290 | |
Gerd Hoffmann | 8ec4d41 | 2006-07-01 04:36:18 -0700 | [diff] [blame] | 291 | #ifdef CONFIG_SMP |
| 292 | |
Jan Beulich | 5967ed8 | 2010-04-21 16:08:14 +0100 | [diff] [blame] | 293 | static void alternatives_smp_lock(const s32 *start, const s32 *end, |
| 294 | u8 *text, u8 *text_end) |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 295 | { |
Jan Beulich | 5967ed8 | 2010-04-21 16:08:14 +0100 | [diff] [blame] | 296 | const s32 *poff; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 297 | |
Masami Hiramatsu | 3945dab | 2009-03-06 10:37:22 -0500 | [diff] [blame] | 298 | mutex_lock(&text_mutex); |
Jan Beulich | 5967ed8 | 2010-04-21 16:08:14 +0100 | [diff] [blame] | 299 | for (poff = start; poff < end; poff++) { |
| 300 | u8 *ptr = (u8 *)poff + *poff; |
| 301 | |
| 302 | if (!*poff || ptr < text || ptr >= text_end) |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 303 | continue; |
Mathieu Desnoyers | f88f07e | 2008-08-14 16:58:15 -0400 | [diff] [blame] | 304 | /* turn DS segment override prefix into lock prefix */ |
H. Peter Anvin | d9c5841 | 2010-04-29 16:53:17 -0700 | [diff] [blame] | 305 | if (*ptr == 0x3e) |
| 306 | text_poke(ptr, ((unsigned char []){0xf0}), 1); |
Peter Senna Tschudin | 4b8073e | 2012-09-18 18:36:14 +0200 | [diff] [blame] | 307 | } |
Masami Hiramatsu | 3945dab | 2009-03-06 10:37:22 -0500 | [diff] [blame] | 308 | mutex_unlock(&text_mutex); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 309 | } |
| 310 | |
Jan Beulich | 5967ed8 | 2010-04-21 16:08:14 +0100 | [diff] [blame] | 311 | static void alternatives_smp_unlock(const s32 *start, const s32 *end, |
| 312 | u8 *text, u8 *text_end) |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 313 | { |
Jan Beulich | 5967ed8 | 2010-04-21 16:08:14 +0100 | [diff] [blame] | 314 | const s32 *poff; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 315 | |
Masami Hiramatsu | 3945dab | 2009-03-06 10:37:22 -0500 | [diff] [blame] | 316 | mutex_lock(&text_mutex); |
Jan Beulich | 5967ed8 | 2010-04-21 16:08:14 +0100 | [diff] [blame] | 317 | for (poff = start; poff < end; poff++) { |
| 318 | u8 *ptr = (u8 *)poff + *poff; |
| 319 | |
| 320 | if (!*poff || ptr < text || ptr >= text_end) |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 321 | continue; |
Mathieu Desnoyers | f88f07e | 2008-08-14 16:58:15 -0400 | [diff] [blame] | 322 | /* turn lock prefix into DS segment override prefix */ |
H. Peter Anvin | d9c5841 | 2010-04-29 16:53:17 -0700 | [diff] [blame] | 323 | if (*ptr == 0xf0) |
| 324 | text_poke(ptr, ((unsigned char []){0x3E}), 1); |
Peter Senna Tschudin | 4b8073e | 2012-09-18 18:36:14 +0200 | [diff] [blame] | 325 | } |
Masami Hiramatsu | 3945dab | 2009-03-06 10:37:22 -0500 | [diff] [blame] | 326 | mutex_unlock(&text_mutex); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | struct smp_alt_module { |
| 330 | /* what is this ??? */ |
| 331 | struct module *mod; |
| 332 | char *name; |
| 333 | |
| 334 | /* ptrs to lock prefixes */ |
Jan Beulich | 5967ed8 | 2010-04-21 16:08:14 +0100 | [diff] [blame] | 335 | const s32 *locks; |
| 336 | const s32 *locks_end; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 337 | |
| 338 | /* .text segment, needed to avoid patching init code ;) */ |
| 339 | u8 *text; |
| 340 | u8 *text_end; |
| 341 | |
| 342 | struct list_head next; |
| 343 | }; |
| 344 | static LIST_HEAD(smp_alt_modules); |
Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 345 | static DEFINE_MUTEX(smp_alt); |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 346 | static bool uniproc_patched = false; /* protected by smp_alt */ |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 347 | |
Jan Beulich | 8b5a10f | 2009-08-19 08:40:48 +0100 | [diff] [blame] | 348 | void __init_or_module alternatives_smp_module_add(struct module *mod, |
| 349 | char *name, |
| 350 | void *locks, void *locks_end, |
| 351 | void *text, void *text_end) |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 352 | { |
| 353 | struct smp_alt_module *smp; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 354 | |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 355 | mutex_lock(&smp_alt); |
| 356 | if (!uniproc_patched) |
| 357 | goto unlock; |
Jeremy Fitzhardinge | b7fb4af | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 358 | |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 359 | if (num_possible_cpus() == 1) |
| 360 | /* Don't bother remembering, we'll never have to undo it. */ |
| 361 | goto smp_unlock; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 362 | |
| 363 | smp = kzalloc(sizeof(*smp), GFP_KERNEL); |
| 364 | if (NULL == smp) |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 365 | /* we'll run the (safe but slow) SMP code then ... */ |
| 366 | goto unlock; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 367 | |
| 368 | smp->mod = mod; |
| 369 | smp->name = name; |
| 370 | smp->locks = locks; |
| 371 | smp->locks_end = locks_end; |
| 372 | smp->text = text; |
| 373 | smp->text_end = text_end; |
| 374 | DPRINTK("%s: locks %p -> %p, text %p -> %p, name %s\n", |
Harvey Harrison | 77bf90e | 2008-03-03 11:37:23 -0800 | [diff] [blame] | 375 | __func__, smp->locks, smp->locks_end, |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 376 | smp->text, smp->text_end, smp->name); |
| 377 | |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 378 | list_add_tail(&smp->next, &smp_alt_modules); |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 379 | smp_unlock: |
| 380 | alternatives_smp_unlock(locks, locks_end, text, text_end); |
| 381 | unlock: |
Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 382 | mutex_unlock(&smp_alt); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 383 | } |
| 384 | |
Jan Beulich | 8b5a10f | 2009-08-19 08:40:48 +0100 | [diff] [blame] | 385 | void __init_or_module alternatives_smp_module_del(struct module *mod) |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 386 | { |
| 387 | struct smp_alt_module *item; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 388 | |
Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 389 | mutex_lock(&smp_alt); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 390 | list_for_each_entry(item, &smp_alt_modules, next) { |
| 391 | if (mod != item->mod) |
| 392 | continue; |
| 393 | list_del(&item->next); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 394 | kfree(item); |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 395 | break; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 396 | } |
Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 397 | mutex_unlock(&smp_alt); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 398 | } |
| 399 | |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 400 | void alternatives_enable_smp(void) |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 401 | { |
| 402 | struct smp_alt_module *mod; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 403 | |
Ingo Molnar | 3047e99 | 2006-07-03 00:24:57 -0700 | [diff] [blame] | 404 | #ifdef CONFIG_LOCKDEP |
| 405 | /* |
Ingo Molnar | 17abecf | 2008-01-30 13:33:24 +0100 | [diff] [blame] | 406 | * Older binutils section handling bug prevented |
| 407 | * alternatives-replacement from working reliably. |
| 408 | * |
| 409 | * If this still occurs then you should see a hang |
| 410 | * or crash shortly after this line: |
Ingo Molnar | 3047e99 | 2006-07-03 00:24:57 -0700 | [diff] [blame] | 411 | */ |
Joe Perches | c767a54 | 2012-05-21 19:50:07 -0700 | [diff] [blame] | 412 | pr_info("lockdep: fixing up alternatives\n"); |
Ingo Molnar | 3047e99 | 2006-07-03 00:24:57 -0700 | [diff] [blame] | 413 | #endif |
| 414 | |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 415 | /* Why bother if there are no other CPUs? */ |
| 416 | BUG_ON(num_possible_cpus() == 1); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 417 | |
Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 418 | mutex_lock(&smp_alt); |
Andi Kleen | ca74a6f | 2008-01-30 13:33:17 +0100 | [diff] [blame] | 419 | |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 420 | if (uniproc_patched) { |
Joe Perches | c767a54 | 2012-05-21 19:50:07 -0700 | [diff] [blame] | 421 | pr_info("switching to SMP code\n"); |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 422 | BUG_ON(num_online_cpus() != 1); |
Jeremy Fitzhardinge | 53756d3 | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 423 | clear_cpu_cap(&boot_cpu_data, X86_FEATURE_UP); |
| 424 | clear_cpu_cap(&cpu_data(0), X86_FEATURE_UP); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 425 | list_for_each_entry(mod, &smp_alt_modules, next) |
| 426 | alternatives_smp_lock(mod->locks, mod->locks_end, |
| 427 | mod->text, mod->text_end); |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 428 | uniproc_patched = false; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 429 | } |
Pekka Paalanen | 2f1dafe | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 430 | mutex_unlock(&smp_alt); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 431 | } |
| 432 | |
Masami Hiramatsu | 2cfa197 | 2010-02-02 16:49:11 -0500 | [diff] [blame] | 433 | /* Return 1 if the address range is reserved for smp-alternatives */ |
| 434 | int alternatives_text_reserved(void *start, void *end) |
| 435 | { |
| 436 | struct smp_alt_module *mod; |
Jan Beulich | 5967ed8 | 2010-04-21 16:08:14 +0100 | [diff] [blame] | 437 | const s32 *poff; |
Masami Hiramatsu | 076dc4a | 2010-02-05 12:16:47 -0500 | [diff] [blame] | 438 | u8 *text_start = start; |
| 439 | u8 *text_end = end; |
Masami Hiramatsu | 2cfa197 | 2010-02-02 16:49:11 -0500 | [diff] [blame] | 440 | |
| 441 | list_for_each_entry(mod, &smp_alt_modules, next) { |
Masami Hiramatsu | 076dc4a | 2010-02-05 12:16:47 -0500 | [diff] [blame] | 442 | if (mod->text > text_end || mod->text_end < text_start) |
Masami Hiramatsu | 2cfa197 | 2010-02-02 16:49:11 -0500 | [diff] [blame] | 443 | continue; |
Jan Beulich | 5967ed8 | 2010-04-21 16:08:14 +0100 | [diff] [blame] | 444 | for (poff = mod->locks; poff < mod->locks_end; poff++) { |
| 445 | const u8 *ptr = (const u8 *)poff + *poff; |
| 446 | |
| 447 | if (text_start <= ptr && text_end > ptr) |
Masami Hiramatsu | 2cfa197 | 2010-02-02 16:49:11 -0500 | [diff] [blame] | 448 | return 1; |
Jan Beulich | 5967ed8 | 2010-04-21 16:08:14 +0100 | [diff] [blame] | 449 | } |
Masami Hiramatsu | 2cfa197 | 2010-02-02 16:49:11 -0500 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | return 0; |
| 453 | } |
Gerd Hoffmann | 8ec4d41 | 2006-07-01 04:36:18 -0700 | [diff] [blame] | 454 | #endif |
| 455 | |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 456 | #ifdef CONFIG_PARAVIRT |
Jan Beulich | 8b5a10f | 2009-08-19 08:40:48 +0100 | [diff] [blame] | 457 | void __init_or_module apply_paravirt(struct paravirt_patch_site *start, |
| 458 | struct paravirt_patch_site *end) |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 459 | { |
Jeremy Fitzhardinge | 98de032 | 2007-05-02 19:27:14 +0200 | [diff] [blame] | 460 | struct paravirt_patch_site *p; |
Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 461 | char insnbuf[MAX_PATCH_LEN]; |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 462 | |
Jeremy Fitzhardinge | 959b4fd | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 463 | if (noreplace_paravirt) |
| 464 | return; |
| 465 | |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 466 | for (p = start; p < end; p++) { |
| 467 | unsigned int used; |
| 468 | |
Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 469 | BUG_ON(p->len > MAX_PATCH_LEN); |
Chris Wright | d34fda4 | 2007-08-18 14:31:41 -0700 | [diff] [blame] | 470 | /* prep the buffer with the original instructions */ |
| 471 | memcpy(insnbuf, p->instr, p->len); |
Jeremy Fitzhardinge | 93b1eab | 2007-10-16 11:51:29 -0700 | [diff] [blame] | 472 | used = pv_init_ops.patch(p->instrtype, p->clobbers, insnbuf, |
| 473 | (unsigned long)p->instr, p->len); |
Jeremy Fitzhardinge | 7f63c41 | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 474 | |
Jeremy Fitzhardinge | 63f7027 | 2007-05-02 19:27:14 +0200 | [diff] [blame] | 475 | BUG_ON(used > p->len); |
| 476 | |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 477 | /* Pad the rest with nops */ |
Andi Kleen | ab144f5 | 2007-08-10 22:31:03 +0200 | [diff] [blame] | 478 | add_nops(insnbuf + used, p->len - used); |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 479 | text_poke_early(p->instr, insnbuf, p->len); |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 480 | } |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 481 | } |
Jeremy Fitzhardinge | 98de032 | 2007-05-02 19:27:14 +0200 | [diff] [blame] | 482 | extern struct paravirt_patch_site __start_parainstructions[], |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 483 | __stop_parainstructions[]; |
| 484 | #endif /* CONFIG_PARAVIRT */ |
| 485 | |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 486 | void __init alternative_instructions(void) |
| 487 | { |
Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 488 | /* The patching is not fully atomic, so try to avoid local interruptions |
| 489 | that might execute the to be patched code. |
| 490 | Other CPUs are not running. */ |
| 491 | stop_nmi(); |
Andi Kleen | 123aa76 | 2009-02-12 13:39:27 +0100 | [diff] [blame] | 492 | |
| 493 | /* |
| 494 | * Don't stop machine check exceptions while patching. |
| 495 | * MCEs only happen when something got corrupted and in this |
| 496 | * case we must do something about the corruption. |
| 497 | * Ignoring it is worse than a unlikely patching race. |
| 498 | * Also machine checks tend to be broadcast and if one CPU |
| 499 | * goes into machine check the others follow quickly, so we don't |
| 500 | * expect a machine check to cause undue problems during to code |
| 501 | * patching. |
| 502 | */ |
Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 503 | |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 504 | apply_alternatives(__alt_instructions, __alt_instructions_end); |
| 505 | |
Gerd Hoffmann | 8ec4d41 | 2006-07-01 04:36:18 -0700 | [diff] [blame] | 506 | #ifdef CONFIG_SMP |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 507 | /* Patch to UP if other cpus not imminent. */ |
| 508 | if (!noreplace_smp && (num_present_cpus() == 1 || setup_max_cpus <= 1)) { |
| 509 | uniproc_patched = true; |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 510 | alternatives_smp_module_add(NULL, "core kernel", |
| 511 | __smp_locks, __smp_locks_end, |
| 512 | _text, _etext); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 513 | } |
Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 514 | |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 515 | if (!uniproc_patched || num_possible_cpus() == 1) |
Fengguang Wu | f68fd5f | 2007-10-17 18:04:34 +0200 | [diff] [blame] | 516 | free_init_pages("SMP alternatives", |
| 517 | (unsigned long)__smp_locks, |
| 518 | (unsigned long)__smp_locks_end); |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 519 | #endif |
| 520 | |
| 521 | apply_paravirt(__parainstructions, __parainstructions_end); |
Fengguang Wu | f68fd5f | 2007-10-17 18:04:34 +0200 | [diff] [blame] | 522 | |
Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 523 | restart_nmi(); |
Gerd Hoffmann | 9a0b581 | 2006-03-23 02:59:32 -0800 | [diff] [blame] | 524 | } |
Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 525 | |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 526 | /** |
| 527 | * text_poke_early - Update instructions on a live kernel at boot time |
| 528 | * @addr: address to modify |
| 529 | * @opcode: source of the copy |
| 530 | * @len: length to copy |
| 531 | * |
Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 532 | * When you use this code to patch more than one byte of an instruction |
| 533 | * 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] | 534 | * Also no thread must be currently preempted in the middle of these |
| 535 | * instructions. And on the local CPU you need to be protected again NMI or MCE |
| 536 | * handlers seeing an inconsistent instruction while you patch. |
Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 537 | */ |
Jason Baron | fa6f2cc | 2010-09-17 11:08:56 -0400 | [diff] [blame] | 538 | void *__init_or_module text_poke_early(void *addr, const void *opcode, |
Jan Beulich | 8b5a10f | 2009-08-19 08:40:48 +0100 | [diff] [blame] | 539 | size_t len) |
Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 540 | { |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 541 | unsigned long flags; |
| 542 | local_irq_save(flags); |
Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 543 | memcpy(addr, opcode, len); |
| 544 | sync_core(); |
Ben Hutchings | 5367b68 | 2009-09-10 02:53:50 +0100 | [diff] [blame] | 545 | local_irq_restore(flags); |
Andi Kleen | a534b67 | 2007-09-06 16:59:52 +0200 | [diff] [blame] | 546 | /* Could also do a CLFLUSH here to speed up CPU recovery; but |
| 547 | that causes hangs on some VIA CPUs. */ |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 548 | return addr; |
| 549 | } |
| 550 | |
| 551 | /** |
| 552 | * text_poke - Update instructions on a live kernel |
| 553 | * @addr: address to modify |
| 554 | * @opcode: source of the copy |
| 555 | * @len: length to copy |
| 556 | * |
| 557 | * Only atomic text poke/set should be allowed when not doing early patching. |
| 558 | * It means the size must be writable atomically and the address must be aligned |
| 559 | * in a way that permits an atomic write. It also makes sure we fit on a single |
| 560 | * page. |
Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 561 | * |
| 562 | * Note: Must be called under text_mutex. |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 563 | */ |
| 564 | void *__kprobes text_poke(void *addr, const void *opcode, size_t len) |
| 565 | { |
Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 566 | unsigned long flags; |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 567 | char *vaddr; |
Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 568 | struct page *pages[2]; |
| 569 | int i; |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 570 | |
Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 571 | if (!core_kernel_text((unsigned long)addr)) { |
| 572 | pages[0] = vmalloc_to_page(addr); |
| 573 | pages[1] = vmalloc_to_page(addr + PAGE_SIZE); |
Mathieu Desnoyers | 15a601e | 2008-03-12 11:54:16 -0400 | [diff] [blame] | 574 | } else { |
Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 575 | pages[0] = virt_to_page(addr); |
Ingo Molnar | 00c6b2d | 2008-04-25 17:07:03 +0200 | [diff] [blame] | 576 | WARN_ON(!PageReserved(pages[0])); |
Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 577 | pages[1] = virt_to_page(addr + PAGE_SIZE); |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 578 | } |
Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 579 | BUG_ON(!pages[0]); |
Masami Hiramatsu | 7cf4942 | 2009-03-09 12:40:40 -0400 | [diff] [blame] | 580 | local_irq_save(flags); |
Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 581 | set_fixmap(FIX_TEXT_POKE0, page_to_phys(pages[0])); |
| 582 | if (pages[1]) |
| 583 | set_fixmap(FIX_TEXT_POKE1, page_to_phys(pages[1])); |
| 584 | vaddr = (char *)fix_to_virt(FIX_TEXT_POKE0); |
Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 585 | memcpy(&vaddr[(unsigned long)addr & ~PAGE_MASK], opcode, len); |
Masami Hiramatsu | 78ff7fa | 2009-03-06 10:37:54 -0500 | [diff] [blame] | 586 | clear_fixmap(FIX_TEXT_POKE0); |
| 587 | if (pages[1]) |
| 588 | clear_fixmap(FIX_TEXT_POKE1); |
| 589 | local_flush_tlb(); |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 590 | sync_core(); |
| 591 | /* Could also do a CLFLUSH here to speed up CPU recovery; but |
| 592 | that causes hangs on some VIA CPUs. */ |
Mathieu Desnoyers | b7b66ba | 2008-04-24 11:03:33 -0400 | [diff] [blame] | 593 | for (i = 0; i < len; i++) |
| 594 | BUG_ON(((char *)addr)[i] != ((char *)opcode)[i]); |
Masami Hiramatsu | 7cf4942 | 2009-03-09 12:40:40 -0400 | [diff] [blame] | 595 | local_irq_restore(flags); |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 596 | return addr; |
Andi Kleen | 19d36cc | 2007-07-22 11:12:31 +0200 | [diff] [blame] | 597 | } |
Masami Hiramatsu | 3d55cc8 | 2010-02-25 08:34:38 -0500 | [diff] [blame] | 598 | |
| 599 | /* |
| 600 | * Cross-modifying kernel text with stop_machine(). |
| 601 | * This code originally comes from immediate value. |
| 602 | */ |
| 603 | static atomic_t stop_machine_first; |
| 604 | static int wrote_text; |
| 605 | |
| 606 | struct text_poke_params { |
Masami Hiramatsu | 7deb18d | 2010-12-03 18:54:22 +0900 | [diff] [blame] | 607 | struct text_poke_param *params; |
| 608 | int nparams; |
Masami Hiramatsu | 3d55cc8 | 2010-02-25 08:34:38 -0500 | [diff] [blame] | 609 | }; |
| 610 | |
| 611 | static int __kprobes stop_machine_text_poke(void *data) |
| 612 | { |
| 613 | struct text_poke_params *tpp = data; |
Masami Hiramatsu | 7deb18d | 2010-12-03 18:54:22 +0900 | [diff] [blame] | 614 | struct text_poke_param *p; |
| 615 | int i; |
Masami Hiramatsu | 3d55cc8 | 2010-02-25 08:34:38 -0500 | [diff] [blame] | 616 | |
OGAWA Hirofumi | 2f74759 | 2012-06-07 22:20:18 +0900 | [diff] [blame] | 617 | if (atomic_xchg(&stop_machine_first, 0)) { |
Masami Hiramatsu | 7deb18d | 2010-12-03 18:54:22 +0900 | [diff] [blame] | 618 | for (i = 0; i < tpp->nparams; i++) { |
| 619 | p = &tpp->params[i]; |
| 620 | text_poke(p->addr, p->opcode, p->len); |
| 621 | } |
Masami Hiramatsu | 3d55cc8 | 2010-02-25 08:34:38 -0500 | [diff] [blame] | 622 | smp_wmb(); /* Make sure other cpus see that this has run */ |
| 623 | wrote_text = 1; |
| 624 | } else { |
| 625 | while (!wrote_text) |
Masami Hiramatsu | e5a1101 | 2010-03-03 22:38:50 -0500 | [diff] [blame] | 626 | cpu_relax(); |
| 627 | smp_mb(); /* Load wrote_text before following execution */ |
Masami Hiramatsu | 3d55cc8 | 2010-02-25 08:34:38 -0500 | [diff] [blame] | 628 | } |
| 629 | |
Masami Hiramatsu | 7deb18d | 2010-12-03 18:54:22 +0900 | [diff] [blame] | 630 | for (i = 0; i < tpp->nparams; i++) { |
| 631 | p = &tpp->params[i]; |
| 632 | flush_icache_range((unsigned long)p->addr, |
| 633 | (unsigned long)p->addr + p->len); |
| 634 | } |
Mathieu Desnoyers | 0e00f7a | 2011-03-03 11:01:37 -0500 | [diff] [blame] | 635 | /* |
| 636 | * Intel Archiecture Software Developer's Manual section 7.1.3 specifies |
| 637 | * that a core serializing instruction such as "cpuid" should be |
| 638 | * executed on _each_ core before the new instruction is made visible. |
| 639 | */ |
| 640 | sync_core(); |
Masami Hiramatsu | 3d55cc8 | 2010-02-25 08:34:38 -0500 | [diff] [blame] | 641 | return 0; |
| 642 | } |
| 643 | |
| 644 | /** |
| 645 | * text_poke_smp - Update instructions on a live kernel on SMP |
| 646 | * @addr: address to modify |
| 647 | * @opcode: source of the copy |
| 648 | * @len: length to copy |
| 649 | * |
| 650 | * Modify multi-byte instruction by using stop_machine() on SMP. This allows |
| 651 | * user to poke/set multi-byte text on SMP. Only non-NMI/MCE code modifying |
| 652 | * should be allowed, since stop_machine() does _not_ protect code against |
| 653 | * NMI and MCE. |
| 654 | * |
| 655 | * Note: Must be called under get_online_cpus() and text_mutex. |
| 656 | */ |
| 657 | void *__kprobes text_poke_smp(void *addr, const void *opcode, size_t len) |
| 658 | { |
| 659 | struct text_poke_params tpp; |
Masami Hiramatsu | 7deb18d | 2010-12-03 18:54:22 +0900 | [diff] [blame] | 660 | struct text_poke_param p; |
Masami Hiramatsu | 3d55cc8 | 2010-02-25 08:34:38 -0500 | [diff] [blame] | 661 | |
Masami Hiramatsu | 7deb18d | 2010-12-03 18:54:22 +0900 | [diff] [blame] | 662 | p.addr = addr; |
| 663 | p.opcode = opcode; |
| 664 | p.len = len; |
| 665 | tpp.params = &p; |
| 666 | tpp.nparams = 1; |
Masami Hiramatsu | 3d55cc8 | 2010-02-25 08:34:38 -0500 | [diff] [blame] | 667 | atomic_set(&stop_machine_first, 1); |
| 668 | wrote_text = 0; |
Masami Hiramatsu | 3caa3751 | 2010-10-14 12:10:36 +0900 | [diff] [blame] | 669 | /* Use __stop_machine() because the caller already got online_cpus. */ |
Jason Baron | 404ba5d | 2010-10-28 11:20:27 -0400 | [diff] [blame] | 670 | __stop_machine(stop_machine_text_poke, (void *)&tpp, cpu_online_mask); |
Masami Hiramatsu | 3d55cc8 | 2010-02-25 08:34:38 -0500 | [diff] [blame] | 671 | return addr; |
| 672 | } |
| 673 | |
Masami Hiramatsu | 7deb18d | 2010-12-03 18:54:22 +0900 | [diff] [blame] | 674 | /** |
| 675 | * text_poke_smp_batch - Update instructions on a live kernel on SMP |
| 676 | * @params: an array of text_poke parameters |
| 677 | * @n: the number of elements in params. |
| 678 | * |
| 679 | * Modify multi-byte instruction by using stop_machine() on SMP. Since the |
| 680 | * stop_machine() is heavy task, it is better to aggregate text_poke requests |
| 681 | * and do it once if possible. |
| 682 | * |
| 683 | * Note: Must be called under get_online_cpus() and text_mutex. |
| 684 | */ |
| 685 | void __kprobes text_poke_smp_batch(struct text_poke_param *params, int n) |
| 686 | { |
| 687 | struct text_poke_params tpp = {.params = params, .nparams = n}; |
| 688 | |
| 689 | atomic_set(&stop_machine_first, 1); |
| 690 | wrote_text = 0; |
Rabin Vincent | 78345d2 | 2011-10-27 13:24:32 +0530 | [diff] [blame] | 691 | __stop_machine(stop_machine_text_poke, (void *)&tpp, cpu_online_mask); |
Masami Hiramatsu | 7deb18d | 2010-12-03 18:54:22 +0900 | [diff] [blame] | 692 | } |