]> git.ipfire.org Git - thirdparty/kernel/stable.git/blob - arch/powerpc/kernel/security.c
powerpc/64s: Enable barrier_nospec based on firmware settings
[thirdparty/kernel/stable.git] / arch / powerpc / kernel / security.c
1 // SPDX-License-Identifier: GPL-2.0+
2 //
3 // Security related flags and so on.
4 //
5 // Copyright 2018, Michael Ellerman, IBM Corporation.
6
7 #include <linux/kernel.h>
8 #include <linux/debugfs.h>
9 #include <linux/device.h>
10 #include <linux/seq_buf.h>
11
12 #include <asm/debug.h>
13 #include <asm/security_features.h>
14 #include <asm/setup.h>
15
16
17 unsigned long powerpc_security_features __read_mostly = SEC_FTR_DEFAULT;
18
19 bool barrier_nospec_enabled;
20
21 static void enable_barrier_nospec(bool enable)
22 {
23 barrier_nospec_enabled = enable;
24 do_barrier_nospec_fixups(enable);
25 }
26
27 void setup_barrier_nospec(void)
28 {
29 bool enable;
30
31 /*
32 * It would make sense to check SEC_FTR_SPEC_BAR_ORI31 below as well.
33 * But there's a good reason not to. The two flags we check below are
34 * both are enabled by default in the kernel, so if the hcall is not
35 * functional they will be enabled.
36 * On a system where the host firmware has been updated (so the ori
37 * functions as a barrier), but on which the hypervisor (KVM/Qemu) has
38 * not been updated, we would like to enable the barrier. Dropping the
39 * check for SEC_FTR_SPEC_BAR_ORI31 achieves that. The only downside is
40 * we potentially enable the barrier on systems where the host firmware
41 * is not updated, but that's harmless as it's a no-op.
42 */
43 enable = security_ftr_enabled(SEC_FTR_FAVOUR_SECURITY) &&
44 security_ftr_enabled(SEC_FTR_BNDS_CHK_SPEC_BAR);
45
46 enable_barrier_nospec(enable);
47 }
48
49 #ifdef CONFIG_DEBUG_FS
50 static int barrier_nospec_set(void *data, u64 val)
51 {
52 switch (val) {
53 case 0:
54 case 1:
55 break;
56 default:
57 return -EINVAL;
58 }
59
60 if (!!val == !!barrier_nospec_enabled)
61 return 0;
62
63 enable_barrier_nospec(!!val);
64
65 return 0;
66 }
67
68 static int barrier_nospec_get(void *data, u64 *val)
69 {
70 *val = barrier_nospec_enabled ? 1 : 0;
71 return 0;
72 }
73
74 DEFINE_SIMPLE_ATTRIBUTE(fops_barrier_nospec,
75 barrier_nospec_get, barrier_nospec_set, "%llu\n");
76
77 static __init int barrier_nospec_debugfs_init(void)
78 {
79 debugfs_create_file("barrier_nospec", 0600, powerpc_debugfs_root, NULL,
80 &fops_barrier_nospec);
81 return 0;
82 }
83 device_initcall(barrier_nospec_debugfs_init);
84 #endif /* CONFIG_DEBUG_FS */
85
86 ssize_t cpu_show_meltdown(struct device *dev, struct device_attribute *attr, char *buf)
87 {
88 bool thread_priv;
89
90 thread_priv = security_ftr_enabled(SEC_FTR_L1D_THREAD_PRIV);
91
92 if (rfi_flush || thread_priv) {
93 struct seq_buf s;
94 seq_buf_init(&s, buf, PAGE_SIZE - 1);
95
96 seq_buf_printf(&s, "Mitigation: ");
97
98 if (rfi_flush)
99 seq_buf_printf(&s, "RFI Flush");
100
101 if (rfi_flush && thread_priv)
102 seq_buf_printf(&s, ", ");
103
104 if (thread_priv)
105 seq_buf_printf(&s, "L1D private per thread");
106
107 seq_buf_printf(&s, "\n");
108
109 return s.len;
110 }
111
112 if (!security_ftr_enabled(SEC_FTR_L1D_FLUSH_HV) &&
113 !security_ftr_enabled(SEC_FTR_L1D_FLUSH_PR))
114 return sprintf(buf, "Not affected\n");
115
116 return sprintf(buf, "Vulnerable\n");
117 }
118
119 ssize_t cpu_show_spectre_v1(struct device *dev, struct device_attribute *attr, char *buf)
120 {
121 if (!security_ftr_enabled(SEC_FTR_BNDS_CHK_SPEC_BAR))
122 return sprintf(buf, "Not affected\n");
123
124 return sprintf(buf, "Vulnerable\n");
125 }
126
127 ssize_t cpu_show_spectre_v2(struct device *dev, struct device_attribute *attr, char *buf)
128 {
129 bool bcs, ccd, ori;
130 struct seq_buf s;
131
132 seq_buf_init(&s, buf, PAGE_SIZE - 1);
133
134 bcs = security_ftr_enabled(SEC_FTR_BCCTRL_SERIALISED);
135 ccd = security_ftr_enabled(SEC_FTR_COUNT_CACHE_DISABLED);
136 ori = security_ftr_enabled(SEC_FTR_SPEC_BAR_ORI31);
137
138 if (bcs || ccd) {
139 seq_buf_printf(&s, "Mitigation: ");
140
141 if (bcs)
142 seq_buf_printf(&s, "Indirect branch serialisation (kernel only)");
143
144 if (bcs && ccd)
145 seq_buf_printf(&s, ", ");
146
147 if (ccd)
148 seq_buf_printf(&s, "Indirect branch cache disabled");
149 } else
150 seq_buf_printf(&s, "Vulnerable");
151
152 if (ori)
153 seq_buf_printf(&s, ", ori31 speculation barrier enabled");
154
155 seq_buf_printf(&s, "\n");
156
157 return s.len;
158 }
159
160 /*
161 * Store-forwarding barrier support.
162 */
163
164 static enum stf_barrier_type stf_enabled_flush_types;
165 static bool no_stf_barrier;
166 bool stf_barrier;
167
168 static int __init handle_no_stf_barrier(char *p)
169 {
170 pr_info("stf-barrier: disabled on command line.");
171 no_stf_barrier = true;
172 return 0;
173 }
174
175 early_param("no_stf_barrier", handle_no_stf_barrier);
176
177 /* This is the generic flag used by other architectures */
178 static int __init handle_ssbd(char *p)
179 {
180 if (!p || strncmp(p, "auto", 5) == 0 || strncmp(p, "on", 2) == 0 ) {
181 /* Until firmware tells us, we have the barrier with auto */
182 return 0;
183 } else if (strncmp(p, "off", 3) == 0) {
184 handle_no_stf_barrier(NULL);
185 return 0;
186 } else
187 return 1;
188
189 return 0;
190 }
191 early_param("spec_store_bypass_disable", handle_ssbd);
192
193 /* This is the generic flag used by other architectures */
194 static int __init handle_no_ssbd(char *p)
195 {
196 handle_no_stf_barrier(NULL);
197 return 0;
198 }
199 early_param("nospec_store_bypass_disable", handle_no_ssbd);
200
201 static void stf_barrier_enable(bool enable)
202 {
203 if (enable)
204 do_stf_barrier_fixups(stf_enabled_flush_types);
205 else
206 do_stf_barrier_fixups(STF_BARRIER_NONE);
207
208 stf_barrier = enable;
209 }
210
211 void setup_stf_barrier(void)
212 {
213 enum stf_barrier_type type;
214 bool enable, hv;
215
216 hv = cpu_has_feature(CPU_FTR_HVMODE);
217
218 /* Default to fallback in case fw-features are not available */
219 if (cpu_has_feature(CPU_FTR_ARCH_300))
220 type = STF_BARRIER_EIEIO;
221 else if (cpu_has_feature(CPU_FTR_ARCH_207S))
222 type = STF_BARRIER_SYNC_ORI;
223 else if (cpu_has_feature(CPU_FTR_ARCH_206))
224 type = STF_BARRIER_FALLBACK;
225 else
226 type = STF_BARRIER_NONE;
227
228 enable = security_ftr_enabled(SEC_FTR_FAVOUR_SECURITY) &&
229 (security_ftr_enabled(SEC_FTR_L1D_FLUSH_PR) ||
230 (security_ftr_enabled(SEC_FTR_L1D_FLUSH_HV) && hv));
231
232 if (type == STF_BARRIER_FALLBACK) {
233 pr_info("stf-barrier: fallback barrier available\n");
234 } else if (type == STF_BARRIER_SYNC_ORI) {
235 pr_info("stf-barrier: hwsync barrier available\n");
236 } else if (type == STF_BARRIER_EIEIO) {
237 pr_info("stf-barrier: eieio barrier available\n");
238 }
239
240 stf_enabled_flush_types = type;
241
242 if (!no_stf_barrier)
243 stf_barrier_enable(enable);
244 }
245
246 ssize_t cpu_show_spec_store_bypass(struct device *dev, struct device_attribute *attr, char *buf)
247 {
248 if (stf_barrier && stf_enabled_flush_types != STF_BARRIER_NONE) {
249 const char *type;
250 switch (stf_enabled_flush_types) {
251 case STF_BARRIER_EIEIO:
252 type = "eieio";
253 break;
254 case STF_BARRIER_SYNC_ORI:
255 type = "hwsync";
256 break;
257 case STF_BARRIER_FALLBACK:
258 type = "fallback";
259 break;
260 default:
261 type = "unknown";
262 }
263 return sprintf(buf, "Mitigation: Kernel entry/exit barrier (%s)\n", type);
264 }
265
266 if (!security_ftr_enabled(SEC_FTR_L1D_FLUSH_HV) &&
267 !security_ftr_enabled(SEC_FTR_L1D_FLUSH_PR))
268 return sprintf(buf, "Not affected\n");
269
270 return sprintf(buf, "Vulnerable\n");
271 }
272
273 #ifdef CONFIG_DEBUG_FS
274 static int stf_barrier_set(void *data, u64 val)
275 {
276 bool enable;
277
278 if (val == 1)
279 enable = true;
280 else if (val == 0)
281 enable = false;
282 else
283 return -EINVAL;
284
285 /* Only do anything if we're changing state */
286 if (enable != stf_barrier)
287 stf_barrier_enable(enable);
288
289 return 0;
290 }
291
292 static int stf_barrier_get(void *data, u64 *val)
293 {
294 *val = stf_barrier ? 1 : 0;
295 return 0;
296 }
297
298 DEFINE_SIMPLE_ATTRIBUTE(fops_stf_barrier, stf_barrier_get, stf_barrier_set, "%llu\n");
299
300 static __init int stf_barrier_debugfs_init(void)
301 {
302 debugfs_create_file("stf_barrier", 0600, powerpc_debugfs_root, NULL, &fops_stf_barrier);
303 return 0;
304 }
305 device_initcall(stf_barrier_debugfs_init);
306 #endif /* CONFIG_DEBUG_FS */