H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_ALTERNATIVE_H |
| 2 | #define _ASM_X86_ALTERNATIVE_H |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 3 | |
| 4 | #include <linux/types.h> |
| 5 | #include <linux/stddef.h> |
Mathieu Desnoyers | edc953f | 2009-04-28 11:13:46 -0400 | [diff] [blame] | 6 | #include <linux/stringify.h> |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 7 | #include <asm/asm.h> |
Jiri Kosina | 17f4157 | 2013-07-23 10:09:28 +0200 | [diff] [blame] | 8 | #include <asm/ptrace.h> |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 9 | |
| 10 | /* |
| 11 | * Alternative inline assembly for SMP. |
| 12 | * |
| 13 | * The LOCK_PREFIX macro defined here replaces the LOCK and |
| 14 | * LOCK_PREFIX macros used everywhere in the source tree. |
| 15 | * |
| 16 | * SMP alternatives use the same data structures as the other |
| 17 | * alternatives and the X86_FEATURE_UP flag to indicate the case of a |
| 18 | * UP system running a SMP kernel. The existing apply_alternatives() |
| 19 | * works fine for patching a SMP kernel for UP. |
| 20 | * |
| 21 | * The SMP alternative tables can be kept after boot and contain both |
| 22 | * UP and SMP versions of the instructions to allow switching back to |
| 23 | * SMP at runtime, when hotplugging in a new CPU, which is especially |
| 24 | * useful in virtualized environments. |
| 25 | * |
| 26 | * The very common lock prefix is handled as special case in a |
| 27 | * separate table which is a pure address list without replacement ptr |
| 28 | * and size information. That keeps the table sizes small. |
| 29 | */ |
| 30 | |
| 31 | #ifdef CONFIG_SMP |
Luca Barbieri | b3ac891 | 2010-02-24 10:54:22 +0100 | [diff] [blame] | 32 | #define LOCK_PREFIX_HERE \ |
H. Peter Anvin | 9cebed4 | 2012-09-21 12:43:08 -0700 | [diff] [blame] | 33 | ".pushsection .smp_locks,\"a\"\n" \ |
| 34 | ".balign 4\n" \ |
| 35 | ".long 671f - .\n" /* offset */ \ |
| 36 | ".popsection\n" \ |
Luca Barbieri | b3ac891 | 2010-02-24 10:54:22 +0100 | [diff] [blame] | 37 | "671:" |
| 38 | |
| 39 | #define LOCK_PREFIX LOCK_PREFIX_HERE "\n\tlock; " |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 40 | |
| 41 | #else /* ! CONFIG_SMP */ |
H. Peter Anvin | b701a47 | 2010-04-29 16:03:57 -0700 | [diff] [blame] | 42 | #define LOCK_PREFIX_HERE "" |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 43 | #define LOCK_PREFIX "" |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 44 | #endif |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 45 | |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 46 | struct alt_instr { |
Andy Lutomirski | 59e97e4 | 2011-07-13 09:24:10 -0400 | [diff] [blame] | 47 | s32 instr_offset; /* original instruction */ |
| 48 | s32 repl_offset; /* offset to replacement instruction */ |
H. Peter Anvin | 83a7a2a | 2010-06-10 00:10:43 +0000 | [diff] [blame] | 49 | u16 cpuid; /* cpuid bit set for replacement */ |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 50 | u8 instrlen; /* length of original instruction */ |
| 51 | u8 replacementlen; /* length of new instruction, <= instrlen */ |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | extern void alternative_instructions(void); |
| 55 | extern void apply_alternatives(struct alt_instr *start, struct alt_instr *end); |
| 56 | |
| 57 | struct module; |
| 58 | |
| 59 | #ifdef CONFIG_SMP |
| 60 | extern void alternatives_smp_module_add(struct module *mod, char *name, |
| 61 | void *locks, void *locks_end, |
| 62 | void *text, void *text_end); |
| 63 | extern void alternatives_smp_module_del(struct module *mod); |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 64 | extern void alternatives_enable_smp(void); |
Masami Hiramatsu | 2cfa197 | 2010-02-02 16:49:11 -0500 | [diff] [blame] | 65 | extern int alternatives_text_reserved(void *start, void *end); |
Suresh Siddha | 3fb82d5 | 2010-11-23 16:11:40 -0800 | [diff] [blame] | 66 | extern bool skip_smp_alternatives; |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 67 | #else |
| 68 | static inline void alternatives_smp_module_add(struct module *mod, char *name, |
Joe Perches | 2ac1ea7 | 2008-03-23 01:01:37 -0700 | [diff] [blame] | 69 | void *locks, void *locks_end, |
| 70 | void *text, void *text_end) {} |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 71 | static inline void alternatives_smp_module_del(struct module *mod) {} |
Rusty Russell | 816afe4 | 2012-08-06 17:29:49 +0930 | [diff] [blame] | 72 | static inline void alternatives_enable_smp(void) {} |
Masami Hiramatsu | 2cfa197 | 2010-02-02 16:49:11 -0500 | [diff] [blame] | 73 | static inline int alternatives_text_reserved(void *start, void *end) |
| 74 | { |
| 75 | return 0; |
| 76 | } |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 77 | #endif /* CONFIG_SMP */ |
| 78 | |
Fenghua Yu | 954e482 | 2012-05-24 18:19:45 -0700 | [diff] [blame] | 79 | #define OLDINSTR(oldinstr) "661:\n\t" oldinstr "\n662:\n" |
| 80 | |
| 81 | #define b_replacement(number) "663"#number |
| 82 | #define e_replacement(number) "664"#number |
| 83 | |
| 84 | #define alt_slen "662b-661b" |
| 85 | #define alt_rlen(number) e_replacement(number)"f-"b_replacement(number)"f" |
| 86 | |
| 87 | #define ALTINSTR_ENTRY(feature, number) \ |
| 88 | " .long 661b - .\n" /* label */ \ |
| 89 | " .long " b_replacement(number)"f - .\n" /* new instruction */ \ |
| 90 | " .word " __stringify(feature) "\n" /* feature bit */ \ |
| 91 | " .byte " alt_slen "\n" /* source len */ \ |
| 92 | " .byte " alt_rlen(number) "\n" /* replacement len */ |
| 93 | |
| 94 | #define DISCARD_ENTRY(number) /* rlen <= slen */ \ |
| 95 | " .byte 0xff + (" alt_rlen(number) ") - (" alt_slen ")\n" |
| 96 | |
| 97 | #define ALTINSTR_REPLACEMENT(newinstr, feature, number) /* replacement */ \ |
| 98 | b_replacement(number)":\n\t" newinstr "\n" e_replacement(number) ":\n\t" |
| 99 | |
Mathieu Desnoyers | edc953f | 2009-04-28 11:13:46 -0400 | [diff] [blame] | 100 | /* alternative assembly primitive: */ |
| 101 | #define ALTERNATIVE(oldinstr, newinstr, feature) \ |
Fenghua Yu | 954e482 | 2012-05-24 18:19:45 -0700 | [diff] [blame] | 102 | OLDINSTR(oldinstr) \ |
H. Peter Anvin | 9cebed4 | 2012-09-21 12:43:08 -0700 | [diff] [blame] | 103 | ".pushsection .altinstructions,\"a\"\n" \ |
Fenghua Yu | 954e482 | 2012-05-24 18:19:45 -0700 | [diff] [blame] | 104 | ALTINSTR_ENTRY(feature, 1) \ |
H. Peter Anvin | 9cebed4 | 2012-09-21 12:43:08 -0700 | [diff] [blame] | 105 | ".popsection\n" \ |
| 106 | ".pushsection .discard,\"aw\",@progbits\n" \ |
Fenghua Yu | 954e482 | 2012-05-24 18:19:45 -0700 | [diff] [blame] | 107 | DISCARD_ENTRY(1) \ |
H. Peter Anvin | 9cebed4 | 2012-09-21 12:43:08 -0700 | [diff] [blame] | 108 | ".popsection\n" \ |
| 109 | ".pushsection .altinstr_replacement, \"ax\"\n" \ |
Fenghua Yu | 954e482 | 2012-05-24 18:19:45 -0700 | [diff] [blame] | 110 | ALTINSTR_REPLACEMENT(newinstr, feature, 1) \ |
H. Peter Anvin | 9cebed4 | 2012-09-21 12:43:08 -0700 | [diff] [blame] | 111 | ".popsection" |
Fenghua Yu | 954e482 | 2012-05-24 18:19:45 -0700 | [diff] [blame] | 112 | |
| 113 | #define ALTERNATIVE_2(oldinstr, newinstr1, feature1, newinstr2, feature2)\ |
| 114 | OLDINSTR(oldinstr) \ |
H. Peter Anvin | 9cebed4 | 2012-09-21 12:43:08 -0700 | [diff] [blame] | 115 | ".pushsection .altinstructions,\"a\"\n" \ |
Fenghua Yu | 954e482 | 2012-05-24 18:19:45 -0700 | [diff] [blame] | 116 | ALTINSTR_ENTRY(feature1, 1) \ |
| 117 | ALTINSTR_ENTRY(feature2, 2) \ |
H. Peter Anvin | 9cebed4 | 2012-09-21 12:43:08 -0700 | [diff] [blame] | 118 | ".popsection\n" \ |
| 119 | ".pushsection .discard,\"aw\",@progbits\n" \ |
Fenghua Yu | 954e482 | 2012-05-24 18:19:45 -0700 | [diff] [blame] | 120 | DISCARD_ENTRY(1) \ |
| 121 | DISCARD_ENTRY(2) \ |
H. Peter Anvin | 9cebed4 | 2012-09-21 12:43:08 -0700 | [diff] [blame] | 122 | ".popsection\n" \ |
| 123 | ".pushsection .altinstr_replacement, \"ax\"\n" \ |
Fenghua Yu | 954e482 | 2012-05-24 18:19:45 -0700 | [diff] [blame] | 124 | ALTINSTR_REPLACEMENT(newinstr1, feature1, 1) \ |
| 125 | ALTINSTR_REPLACEMENT(newinstr2, feature2, 2) \ |
H. Peter Anvin | 9cebed4 | 2012-09-21 12:43:08 -0700 | [diff] [blame] | 126 | ".popsection" |
Mathieu Desnoyers | edc953f | 2009-04-28 11:13:46 -0400 | [diff] [blame] | 127 | |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 128 | /* |
Borislav Petkov | d61931d | 2010-03-05 17:34:46 +0100 | [diff] [blame] | 129 | * This must be included *after* the definition of ALTERNATIVE due to |
| 130 | * <asm/arch_hweight.h> |
| 131 | */ |
| 132 | #include <asm/cpufeature.h> |
| 133 | |
| 134 | /* |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 135 | * Alternative instructions for different CPU types or capabilities. |
| 136 | * |
| 137 | * This allows to use optimized instructions even on generic binary |
| 138 | * kernels. |
| 139 | * |
| 140 | * length of oldinstr must be longer or equal the length of newinstr |
| 141 | * It can be padded with nops as needed. |
| 142 | * |
| 143 | * For non barrier like inlines please define new variants |
| 144 | * without volatile and memory clobber. |
| 145 | */ |
| 146 | #define alternative(oldinstr, newinstr, feature) \ |
Mathieu Desnoyers | edc953f | 2009-04-28 11:13:46 -0400 | [diff] [blame] | 147 | asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) : : : "memory") |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 148 | |
| 149 | /* |
| 150 | * Alternative inline assembly with input. |
| 151 | * |
| 152 | * Pecularities: |
| 153 | * No memory clobber here. |
| 154 | * Argument numbers start with 1. |
| 155 | * Best is to use constraints that are fixed size (like (%1) ... "r") |
| 156 | * If you use variable sized constraints like "m" or "g" in the |
| 157 | * replacement make sure to pad to the worst case length. |
Mathieu Desnoyers | edc953f | 2009-04-28 11:13:46 -0400 | [diff] [blame] | 158 | * Leaving an unused argument 0 to keep API compatibility. |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 159 | */ |
| 160 | #define alternative_input(oldinstr, newinstr, feature, input...) \ |
Mathieu Desnoyers | edc953f | 2009-04-28 11:13:46 -0400 | [diff] [blame] | 161 | asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \ |
| 162 | : : "i" (0), ## input) |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 163 | |
| 164 | /* Like alternative_input, but with a single output argument */ |
| 165 | #define alternative_io(oldinstr, newinstr, feature, output, input...) \ |
Mathieu Desnoyers | edc953f | 2009-04-28 11:13:46 -0400 | [diff] [blame] | 166 | asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \ |
| 167 | : output : "i" (0), ## input) |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 168 | |
Jan Beulich | 1b1d925 | 2009-12-18 16:12:56 +0000 | [diff] [blame] | 169 | /* Like alternative_io, but for replacing a direct call with another one. */ |
| 170 | #define alternative_call(oldfunc, newfunc, feature, output, input...) \ |
| 171 | asm volatile (ALTERNATIVE("call %P[old]", "call %P[new]", feature) \ |
| 172 | : output : [old] "i" (oldfunc), [new] "i" (newfunc), ## input) |
| 173 | |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 174 | /* |
Fenghua Yu | 954e482 | 2012-05-24 18:19:45 -0700 | [diff] [blame] | 175 | * Like alternative_call, but there are two features and respective functions. |
| 176 | * If CPU has feature2, function2 is used. |
| 177 | * Otherwise, if CPU has feature1, function1 is used. |
| 178 | * Otherwise, old function is used. |
| 179 | */ |
| 180 | #define alternative_call_2(oldfunc, newfunc1, feature1, newfunc2, feature2, \ |
| 181 | output, input...) \ |
| 182 | asm volatile (ALTERNATIVE_2("call %P[old]", "call %P[new1]", feature1,\ |
| 183 | "call %P[new2]", feature2) \ |
| 184 | : output : [old] "i" (oldfunc), [new1] "i" (newfunc1), \ |
| 185 | [new2] "i" (newfunc2), ## input) |
| 186 | |
| 187 | /* |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 188 | * use this macro(s) if you need more than one output parameter |
| 189 | * in alternative_io |
| 190 | */ |
Jan Beulich | 1b1d925 | 2009-12-18 16:12:56 +0000 | [diff] [blame] | 191 | #define ASM_OUTPUT2(a...) a |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 192 | |
Jan Beulich | 819165f | 2012-01-20 16:21:41 +0000 | [diff] [blame] | 193 | /* |
| 194 | * use this macro if you need clobbers but no inputs in |
| 195 | * alternative_{input,io,call}() |
| 196 | */ |
| 197 | #define ASM_NO_INPUT_CLOBBER(clbr...) "i" (0) : clbr |
| 198 | |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 199 | struct paravirt_patch_site; |
| 200 | #ifdef CONFIG_PARAVIRT |
| 201 | void apply_paravirt(struct paravirt_patch_site *start, |
| 202 | struct paravirt_patch_site *end); |
| 203 | #else |
Joe Perches | 2ac1ea7 | 2008-03-23 01:01:37 -0700 | [diff] [blame] | 204 | static inline void apply_paravirt(struct paravirt_patch_site *start, |
| 205 | struct paravirt_patch_site *end) |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 206 | {} |
| 207 | #define __parainstructions NULL |
| 208 | #define __parainstructions_end NULL |
| 209 | #endif |
| 210 | |
Jason Baron | fa6f2cc | 2010-09-17 11:08:56 -0400 | [diff] [blame] | 211 | extern void *text_poke_early(void *addr, const void *opcode, size_t len); |
| 212 | |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 213 | /* |
| 214 | * Clear and restore the kernel write-protection flag on the local CPU. |
| 215 | * Allows the kernel to edit read-only pages. |
| 216 | * Side-effect: any interrupt handler running between save and restore will have |
| 217 | * the ability to write to read-only pages. |
| 218 | * |
| 219 | * Warning: |
| 220 | * Code patching in the UP case is safe if NMIs and MCE handlers are stopped and |
| 221 | * no thread can be preempted in the instructions being modified (no iret to an |
| 222 | * invalid instruction possible) or if the instructions are changed from a |
| 223 | * consistent state to another consistent state atomically. |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 224 | * On the local CPU you need to be protected again NMI or MCE handlers seeing an |
| 225 | * inconsistent instruction while you patch. |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 226 | */ |
Mathieu Desnoyers | e587cad | 2008-03-06 08:48:49 -0500 | [diff] [blame] | 227 | extern void *text_poke(void *addr, const void *opcode, size_t len); |
Jiri Kosina | 17f4157 | 2013-07-23 10:09:28 +0200 | [diff] [blame] | 228 | extern int poke_int3_handler(struct pt_regs *regs); |
Jiri Kosina | fd4363f | 2013-07-12 11:21:48 +0200 | [diff] [blame] | 229 | extern void *text_poke_bp(void *addr, const void *opcode, size_t len, void *handler); |
H. Peter Anvin | 6b59257 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 230 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 231 | #endif /* _ASM_X86_ALTERNATIVE_H */ |