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