blob: 01171f6c2c3747b51e2e1df0dba4d5c843b24be1 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_ALTERNATIVE_H
2#define _ASM_X86_ALTERNATIVE_H
H. Peter Anvin6b592572008-01-30 13:30:30 +01003
4#include <linux/types.h>
5#include <linux/stddef.h>
Mathieu Desnoyersedc953f2009-04-28 11:13:46 -04006#include <linux/stringify.h>
Jason Baronbf5438fc2010-09-17 11:09:00 -04007#include <linux/jump_label.h>
H. Peter Anvin6b592572008-01-30 13:30:30 +01008#include <asm/asm.h>
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 Barbierib3ac8912010-02-24 10:54:22 +010032#define LOCK_PREFIX_HERE \
H. Peter Anvin6b592572008-01-30 13:30:30 +010033 ".section .smp_locks,\"a\"\n" \
Jan Beulich5967ed82010-04-21 16:08:14 +010034 ".balign 4\n" \
H. Peter Anvind9c58412010-04-29 16:53:17 -070035 ".long 671f - .\n" /* offset */ \
H. Peter Anvin6b592572008-01-30 13:30:30 +010036 ".previous\n" \
Luca Barbierib3ac8912010-02-24 10:54:22 +010037 "671:"
38
39#define LOCK_PREFIX LOCK_PREFIX_HERE "\n\tlock; "
H. Peter Anvin6b592572008-01-30 13:30:30 +010040
41#else /* ! CONFIG_SMP */
H. Peter Anvinb701a472010-04-29 16:03:57 -070042#define LOCK_PREFIX_HERE ""
H. Peter Anvin6b592572008-01-30 13:30:30 +010043#define LOCK_PREFIX ""
Thomas Gleixner96a388d2007-10-11 11:20:03 +020044#endif
H. Peter Anvin6b592572008-01-30 13:30:30 +010045
H. Peter Anvin6b592572008-01-30 13:30:30 +010046struct alt_instr {
47 u8 *instr; /* original instruction */
48 u8 *replacement;
H. Peter Anvin83a7a2a2010-06-10 00:10:43 +000049 u16 cpuid; /* cpuid bit set for replacement */
H. Peter Anvin6b592572008-01-30 13:30:30 +010050 u8 instrlen; /* length of original instruction */
51 u8 replacementlen; /* length of new instruction, <= instrlen */
H. Peter Anvin6b592572008-01-30 13:30:30 +010052#ifdef CONFIG_X86_64
53 u32 pad2;
54#endif
55};
56
57extern void alternative_instructions(void);
58extern void apply_alternatives(struct alt_instr *start, struct alt_instr *end);
59
60struct module;
61
62#ifdef CONFIG_SMP
63extern void alternatives_smp_module_add(struct module *mod, char *name,
64 void *locks, void *locks_end,
65 void *text, void *text_end);
66extern void alternatives_smp_module_del(struct module *mod);
67extern void alternatives_smp_switch(int smp);
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -050068extern int alternatives_text_reserved(void *start, void *end);
Suresh Siddha3fb82d52010-11-23 16:11:40 -080069extern bool skip_smp_alternatives;
H. Peter Anvin6b592572008-01-30 13:30:30 +010070#else
71static inline void alternatives_smp_module_add(struct module *mod, char *name,
Joe Perches2ac1ea72008-03-23 01:01:37 -070072 void *locks, void *locks_end,
73 void *text, void *text_end) {}
H. Peter Anvin6b592572008-01-30 13:30:30 +010074static inline void alternatives_smp_module_del(struct module *mod) {}
75static inline void alternatives_smp_switch(int smp) {}
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -050076static inline int alternatives_text_reserved(void *start, void *end)
77{
78 return 0;
79}
H. Peter Anvin6b592572008-01-30 13:30:30 +010080#endif /* CONFIG_SMP */
81
Mathieu Desnoyersedc953f2009-04-28 11:13:46 -040082/* alternative assembly primitive: */
83#define ALTERNATIVE(oldinstr, newinstr, feature) \
84 \
85 "661:\n\t" oldinstr "\n662:\n" \
86 ".section .altinstructions,\"a\"\n" \
87 _ASM_ALIGN "\n" \
88 _ASM_PTR "661b\n" /* label */ \
89 _ASM_PTR "663f\n" /* new instruction */ \
H. Peter Anvin83a7a2a2010-06-10 00:10:43 +000090 " .word " __stringify(feature) "\n" /* feature bit */ \
Mathieu Desnoyersedc953f2009-04-28 11:13:46 -040091 " .byte 662b-661b\n" /* sourcelen */ \
92 " .byte 664f-663f\n" /* replacementlen */ \
H. Peter Anvin83a7a2a2010-06-10 00:10:43 +000093 ".previous\n" \
94 ".section .discard,\"aw\",@progbits\n" \
Jan Beulich01be50a2009-11-27 15:04:58 +000095 " .byte 0xff + (664f-663f) - (662b-661b)\n" /* rlen <= slen */ \
Mathieu Desnoyersedc953f2009-04-28 11:13:46 -040096 ".previous\n" \
97 ".section .altinstr_replacement, \"ax\"\n" \
98 "663:\n\t" newinstr "\n664:\n" /* replacement */ \
99 ".previous"
100
H. Peter Anvin6b592572008-01-30 13:30:30 +0100101/*
Borislav Petkovd61931d2010-03-05 17:34:46 +0100102 * This must be included *after* the definition of ALTERNATIVE due to
103 * <asm/arch_hweight.h>
104 */
105#include <asm/cpufeature.h>
106
107/*
H. Peter Anvin6b592572008-01-30 13:30:30 +0100108 * Alternative instructions for different CPU types or capabilities.
109 *
110 * This allows to use optimized instructions even on generic binary
111 * kernels.
112 *
113 * length of oldinstr must be longer or equal the length of newinstr
114 * It can be padded with nops as needed.
115 *
116 * For non barrier like inlines please define new variants
117 * without volatile and memory clobber.
118 */
119#define alternative(oldinstr, newinstr, feature) \
Mathieu Desnoyersedc953f2009-04-28 11:13:46 -0400120 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) : : : "memory")
H. Peter Anvin6b592572008-01-30 13:30:30 +0100121
122/*
123 * Alternative inline assembly with input.
124 *
125 * Pecularities:
126 * No memory clobber here.
127 * Argument numbers start with 1.
128 * Best is to use constraints that are fixed size (like (%1) ... "r")
129 * If you use variable sized constraints like "m" or "g" in the
130 * replacement make sure to pad to the worst case length.
Mathieu Desnoyersedc953f2009-04-28 11:13:46 -0400131 * Leaving an unused argument 0 to keep API compatibility.
H. Peter Anvin6b592572008-01-30 13:30:30 +0100132 */
133#define alternative_input(oldinstr, newinstr, feature, input...) \
Mathieu Desnoyersedc953f2009-04-28 11:13:46 -0400134 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \
135 : : "i" (0), ## input)
H. Peter Anvin6b592572008-01-30 13:30:30 +0100136
137/* Like alternative_input, but with a single output argument */
138#define alternative_io(oldinstr, newinstr, feature, output, input...) \
Mathieu Desnoyersedc953f2009-04-28 11:13:46 -0400139 asm volatile (ALTERNATIVE(oldinstr, newinstr, feature) \
140 : output : "i" (0), ## input)
H. Peter Anvin6b592572008-01-30 13:30:30 +0100141
Jan Beulich1b1d9252009-12-18 16:12:56 +0000142/* Like alternative_io, but for replacing a direct call with another one. */
143#define alternative_call(oldfunc, newfunc, feature, output, input...) \
144 asm volatile (ALTERNATIVE("call %P[old]", "call %P[new]", feature) \
145 : output : [old] "i" (oldfunc), [new] "i" (newfunc), ## input)
146
H. Peter Anvin6b592572008-01-30 13:30:30 +0100147/*
148 * use this macro(s) if you need more than one output parameter
149 * in alternative_io
150 */
Jan Beulich1b1d9252009-12-18 16:12:56 +0000151#define ASM_OUTPUT2(a...) a
H. Peter Anvin6b592572008-01-30 13:30:30 +0100152
153struct paravirt_patch_site;
154#ifdef CONFIG_PARAVIRT
155void apply_paravirt(struct paravirt_patch_site *start,
156 struct paravirt_patch_site *end);
157#else
Joe Perches2ac1ea72008-03-23 01:01:37 -0700158static inline void apply_paravirt(struct paravirt_patch_site *start,
159 struct paravirt_patch_site *end)
H. Peter Anvin6b592572008-01-30 13:30:30 +0100160{}
161#define __parainstructions NULL
162#define __parainstructions_end NULL
163#endif
164
Jason Baronfa6f2cc2010-09-17 11:08:56 -0400165extern void *text_poke_early(void *addr, const void *opcode, size_t len);
166
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500167/*
168 * Clear and restore the kernel write-protection flag on the local CPU.
169 * Allows the kernel to edit read-only pages.
170 * Side-effect: any interrupt handler running between save and restore will have
171 * the ability to write to read-only pages.
172 *
173 * Warning:
174 * Code patching in the UP case is safe if NMIs and MCE handlers are stopped and
175 * no thread can be preempted in the instructions being modified (no iret to an
176 * invalid instruction possible) or if the instructions are changed from a
177 * consistent state to another consistent state atomically.
178 * More care must be taken when modifying code in the SMP case because of
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -0500179 * Intel's errata. text_poke_smp() takes care that errata, but still
180 * doesn't support NMI/MCE handler code modifying.
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500181 * On the local CPU you need to be protected again NMI or MCE handlers seeing an
182 * inconsistent instruction while you patch.
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500183 */
Mathieu Desnoyerse587cad2008-03-06 08:48:49 -0500184extern void *text_poke(void *addr, const void *opcode, size_t len);
Masami Hiramatsu3d55cc82010-02-25 08:34:38 -0500185extern void *text_poke_smp(void *addr, const void *opcode, size_t len);
H. Peter Anvin6b592572008-01-30 13:30:30 +0100186
Jason Baronbf5438fc2010-09-17 11:09:00 -0400187#if defined(CONFIG_DYNAMIC_FTRACE) || defined(HAVE_JUMP_LABEL)
Jason Baronf49aa442010-09-17 11:08:51 -0400188#define IDEAL_NOP_SIZE_5 5
189extern unsigned char ideal_nop5[IDEAL_NOP_SIZE_5];
190extern void arch_init_ideal_nop5(void);
191#else
192static inline void arch_init_ideal_nop5(void) {}
193#endif
194
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700195#endif /* _ASM_X86_ALTERNATIVE_H */