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