Merge remote-tracking branch 'mmc-uh/next'
[deliverable/linux.git] / arch / arm64 / kernel / alternative.c
CommitLineData
e039ee4e
AP
1/*
2 * alternative runtime patching
3 * inspired by the x86 version
4 *
5 * Copyright (C) 2014 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#define pr_fmt(fmt) "alternatives: " fmt
21
22#include <linux/init.h>
23#include <linux/cpu.h>
24#include <asm/cacheflush.h>
25#include <asm/alternative.h>
26#include <asm/cpufeature.h>
7616fc8b 27#include <asm/insn.h>
ee78fdc7 28#include <asm/sections.h>
e039ee4e
AP
29#include <linux/stop_machine.h>
30
7616fc8b
MZ
31#define __ALT_PTR(a,f) (u32 *)((void *)&(a)->f + (a)->f)
32#define ALT_ORIG_PTR(a) __ALT_PTR(a, orig_offset)
33#define ALT_REPL_PTR(a) __ALT_PTR(a, alt_offset)
34
932ded4b
AP
35struct alt_region {
36 struct alt_instr *begin;
37 struct alt_instr *end;
38};
39
7616fc8b
MZ
40/*
41 * Check if the target PC is within an alternative block.
42 */
43static bool branch_insn_requires_update(struct alt_instr *alt, unsigned long pc)
44{
45 unsigned long replptr;
46
47 if (kernel_text_address(pc))
48 return 1;
49
50 replptr = (unsigned long)ALT_REPL_PTR(alt);
51 if (pc >= replptr && pc <= (replptr + alt->alt_len))
52 return 0;
53
54 /*
55 * Branching into *another* alternate sequence is doomed, and
56 * we're not even trying to fix it up.
57 */
58 BUG();
59}
60
c831b2ae
SP
61#define align_down(x, a) ((unsigned long)(x) & ~(((unsigned long)(a)) - 1))
62
7616fc8b
MZ
63static u32 get_alt_insn(struct alt_instr *alt, u32 *insnptr, u32 *altinsnptr)
64{
65 u32 insn;
66
67 insn = le32_to_cpu(*altinsnptr);
68
69 if (aarch64_insn_is_branch_imm(insn)) {
70 s32 offset = aarch64_get_branch_offset(insn);
71 unsigned long target;
72
73 target = (unsigned long)altinsnptr + offset;
74
75 /*
76 * If we're branching inside the alternate sequence,
77 * do not rewrite the instruction, as it is already
78 * correct. Otherwise, generate the new instruction.
79 */
80 if (branch_insn_requires_update(alt, target)) {
81 offset = target - (unsigned long)insnptr;
82 insn = aarch64_set_branch_offset(insn, offset);
83 }
c831b2ae
SP
84 } else if (aarch64_insn_is_adrp(insn)) {
85 s32 orig_offset, new_offset;
86 unsigned long target;
87
88 /*
89 * If we're replacing an adrp instruction, which uses PC-relative
90 * immediate addressing, adjust the offset to reflect the new
91 * PC. adrp operates on 4K aligned addresses.
92 */
93 orig_offset = aarch64_insn_adrp_get_offset(insn);
94 target = align_down(altinsnptr, SZ_4K) + orig_offset;
95 new_offset = target - align_down(insnptr, SZ_4K);
96 insn = aarch64_insn_adrp_set_offset(insn, new_offset);
baa763b5
SP
97 } else if (aarch64_insn_uses_literal(insn)) {
98 /*
99 * Disallow patching unhandled instructions using PC relative
100 * literal addresses
101 */
102 BUG();
7616fc8b
MZ
103 }
104
105 return insn;
106}
107
ef5e724b 108static void __apply_alternatives(void *alt_region)
e039ee4e
AP
109{
110 struct alt_instr *alt;
932ded4b 111 struct alt_region *region = alt_region;
7616fc8b 112 u32 *origptr, *replptr;
e039ee4e 113
932ded4b 114 for (alt = region->begin; alt < region->end; alt++) {
7616fc8b
MZ
115 u32 insn;
116 int i, nr_inst;
117
e039ee4e
AP
118 if (!cpus_have_cap(alt->cpufeature))
119 continue;
120
fef7f2b2 121 BUG_ON(alt->alt_len != alt->orig_len);
e039ee4e
AP
122
123 pr_info_once("patching kernel code\n");
124
7616fc8b
MZ
125 origptr = ALT_ORIG_PTR(alt);
126 replptr = ALT_REPL_PTR(alt);
127 nr_inst = alt->alt_len / sizeof(insn);
128
129 for (i = 0; i < nr_inst; i++) {
130 insn = get_alt_insn(alt, origptr + i, replptr + i);
131 *(origptr + i) = cpu_to_le32(insn);
132 }
133
e039ee4e 134 flush_icache_range((uintptr_t)origptr,
7616fc8b 135 (uintptr_t)(origptr + nr_inst));
e039ee4e 136 }
e039ee4e
AP
137}
138
ef5e724b
WD
139/*
140 * We might be patching the stop_machine state machine, so implement a
141 * really simple polling protocol here.
142 */
143static int __apply_alternatives_multi_stop(void *unused)
e039ee4e 144{
ef5e724b 145 static int patched = 0;
932ded4b 146 struct alt_region region = {
ee78fdc7
JM
147 .begin = (struct alt_instr *)__alt_instructions,
148 .end = (struct alt_instr *)__alt_instructions_end,
932ded4b
AP
149 };
150
ef5e724b
WD
151 /* We always have a CPU 0 at this point (__init) */
152 if (smp_processor_id()) {
153 while (!READ_ONCE(patched))
154 cpu_relax();
04b8637b 155 isb();
ef5e724b
WD
156 } else {
157 BUG_ON(patched);
158 __apply_alternatives(&region);
159 /* Barriers provided by the cache flushing */
160 WRITE_ONCE(patched, 1);
161 }
162
163 return 0;
164}
165
166void __init apply_alternatives_all(void)
167{
e039ee4e 168 /* better not try code patching on a live SMP system */
ef5e724b 169 stop_machine(__apply_alternatives_multi_stop, NULL, cpu_online_mask);
932ded4b
AP
170}
171
172void apply_alternatives(void *start, size_t length)
173{
174 struct alt_region region = {
175 .begin = start,
176 .end = start + length,
177 };
178
179 __apply_alternatives(&region);
e039ee4e 180}
This page took 0.102739 seconds and 5 git commands to generate.