1 // SPDX-License-Identifier: GPL-2.0
2 
3 #define pr_fmt(fmt) "x86/split lock detection: " fmt
4 
5 #include <linux/semaphore.h>
6 #include <linux/workqueue.h>
7 #include <linux/delay.h>
8 #include <linux/cpuhotplug.h>
9 #include <asm/cpu_device_id.h>
10 #include <asm/cmdline.h>
11 #include <asm/traps.h>
12 #include <asm/cpu.h>
13 
14 enum split_lock_detect_state {
15 	sld_off = 0,
16 	sld_warn,
17 	sld_fatal,
18 	sld_ratelimit,
19 };
20 
21 /*
22  * Default to sld_off because most systems do not support split lock detection.
23  * sld_state_setup() will switch this to sld_warn on systems that support
24  * split lock/bus lock detect, unless there is a command line override.
25  */
26 static enum split_lock_detect_state sld_state __ro_after_init = sld_off;
27 static u64 msr_test_ctrl_cache __ro_after_init;
28 
29 /*
30  * With a name like MSR_TEST_CTL it should go without saying, but don't touch
31  * MSR_TEST_CTL unless the CPU is one of the whitelisted models.  Writing it
32  * on CPUs that do not support SLD can cause fireworks, even when writing '0'.
33  */
34 static bool cpu_model_supports_sld __ro_after_init;
35 
36 static const struct {
37 	const char			*option;
38 	enum split_lock_detect_state	state;
39 } sld_options[] __initconst = {
40 	{ "off",	sld_off   },
41 	{ "warn",	sld_warn  },
42 	{ "fatal",	sld_fatal },
43 	{ "ratelimit:", sld_ratelimit },
44 };
45 
46 static struct ratelimit_state bld_ratelimit;
47 
48 static unsigned int sysctl_sld_mitigate = 1;
49 static DEFINE_SEMAPHORE(buslock_sem, 1);
50 
51 #ifdef CONFIG_PROC_SYSCTL
52 static const struct ctl_table sld_sysctls[] = {
53 	{
54 		.procname       = "split_lock_mitigate",
55 		.data           = &sysctl_sld_mitigate,
56 		.maxlen         = sizeof(unsigned int),
57 		.mode           = 0644,
58 		.proc_handler	= proc_douintvec_minmax,
59 		.extra1         = SYSCTL_ZERO,
60 		.extra2         = SYSCTL_ONE,
61 	},
62 };
63 
sld_mitigate_sysctl_init(void)64 static int __init sld_mitigate_sysctl_init(void)
65 {
66 	register_sysctl_init("kernel", sld_sysctls);
67 	return 0;
68 }
69 
70 late_initcall(sld_mitigate_sysctl_init);
71 #endif
72 
match_option(const char * arg,int arglen,const char * opt)73 static inline bool match_option(const char *arg, int arglen, const char *opt)
74 {
75 	int len = strlen(opt), ratelimit;
76 
77 	if (strncmp(arg, opt, len))
78 		return false;
79 
80 	/*
81 	 * Min ratelimit is 1 bus lock/sec.
82 	 * Max ratelimit is 1000 bus locks/sec.
83 	 */
84 	if (sscanf(arg, "ratelimit:%d", &ratelimit) == 1 &&
85 	    ratelimit > 0 && ratelimit <= 1000) {
86 		ratelimit_state_init(&bld_ratelimit, HZ, ratelimit);
87 		ratelimit_set_flags(&bld_ratelimit, RATELIMIT_MSG_ON_RELEASE);
88 		return true;
89 	}
90 
91 	return len == arglen;
92 }
93 
split_lock_verify_msr(bool on)94 static bool split_lock_verify_msr(bool on)
95 {
96 	u64 ctrl, tmp;
97 
98 	if (rdmsrl_safe(MSR_TEST_CTRL, &ctrl))
99 		return false;
100 	if (on)
101 		ctrl |= MSR_TEST_CTRL_SPLIT_LOCK_DETECT;
102 	else
103 		ctrl &= ~MSR_TEST_CTRL_SPLIT_LOCK_DETECT;
104 	if (wrmsrl_safe(MSR_TEST_CTRL, ctrl))
105 		return false;
106 	rdmsrl(MSR_TEST_CTRL, tmp);
107 	return ctrl == tmp;
108 }
109 
sld_state_setup(void)110 static void __init sld_state_setup(void)
111 {
112 	enum split_lock_detect_state state = sld_warn;
113 	char arg[20];
114 	int i, ret;
115 
116 	if (!boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT) &&
117 	    !boot_cpu_has(X86_FEATURE_BUS_LOCK_DETECT))
118 		return;
119 
120 	ret = cmdline_find_option(boot_command_line, "split_lock_detect",
121 				  arg, sizeof(arg));
122 	if (ret >= 0) {
123 		for (i = 0; i < ARRAY_SIZE(sld_options); i++) {
124 			if (match_option(arg, ret, sld_options[i].option)) {
125 				state = sld_options[i].state;
126 				break;
127 			}
128 		}
129 	}
130 	sld_state = state;
131 }
132 
__split_lock_setup(void)133 static void __init __split_lock_setup(void)
134 {
135 	if (!split_lock_verify_msr(false)) {
136 		pr_info("MSR access failed: Disabled\n");
137 		return;
138 	}
139 
140 	rdmsrl(MSR_TEST_CTRL, msr_test_ctrl_cache);
141 
142 	if (!split_lock_verify_msr(true)) {
143 		pr_info("MSR access failed: Disabled\n");
144 		return;
145 	}
146 
147 	/* Restore the MSR to its cached value. */
148 	wrmsrl(MSR_TEST_CTRL, msr_test_ctrl_cache);
149 
150 	setup_force_cpu_cap(X86_FEATURE_SPLIT_LOCK_DETECT);
151 }
152 
153 /*
154  * MSR_TEST_CTRL is per core, but we treat it like a per CPU MSR. Locking
155  * is not implemented as one thread could undo the setting of the other
156  * thread immediately after dropping the lock anyway.
157  */
sld_update_msr(bool on)158 static void sld_update_msr(bool on)
159 {
160 	u64 test_ctrl_val = msr_test_ctrl_cache;
161 
162 	if (on)
163 		test_ctrl_val |= MSR_TEST_CTRL_SPLIT_LOCK_DETECT;
164 
165 	wrmsrl(MSR_TEST_CTRL, test_ctrl_val);
166 }
167 
split_lock_init(void)168 void split_lock_init(void)
169 {
170 	/*
171 	 * #DB for bus lock handles ratelimit and #AC for split lock is
172 	 * disabled.
173 	 */
174 	if (sld_state == sld_ratelimit) {
175 		split_lock_verify_msr(false);
176 		return;
177 	}
178 
179 	if (cpu_model_supports_sld)
180 		split_lock_verify_msr(sld_state != sld_off);
181 }
182 
__split_lock_reenable_unlock(struct work_struct * work)183 static void __split_lock_reenable_unlock(struct work_struct *work)
184 {
185 	sld_update_msr(true);
186 	up(&buslock_sem);
187 }
188 
189 static DECLARE_DELAYED_WORK(sl_reenable_unlock, __split_lock_reenable_unlock);
190 
__split_lock_reenable(struct work_struct * work)191 static void __split_lock_reenable(struct work_struct *work)
192 {
193 	sld_update_msr(true);
194 }
195 /*
196  * In order for each CPU to schedule its delayed work independently of the
197  * others, delayed work struct must be per-CPU. This is not required when
198  * sysctl_sld_mitigate is enabled because of the semaphore that limits
199  * the number of simultaneously scheduled delayed works to 1.
200  */
201 static DEFINE_PER_CPU(struct delayed_work, sl_reenable);
202 
203 /*
204  * If a CPU goes offline with pending delayed work to re-enable split lock
205  * detection then the delayed work will be executed on some other CPU. That
206  * handles releasing the buslock_sem, but because it executes on a
207  * different CPU probably won't re-enable split lock detection. This is a
208  * problem on HT systems since the sibling CPU on the same core may then be
209  * left running with split lock detection disabled.
210  *
211  * Unconditionally re-enable detection here.
212  */
splitlock_cpu_offline(unsigned int cpu)213 static int splitlock_cpu_offline(unsigned int cpu)
214 {
215 	sld_update_msr(true);
216 
217 	return 0;
218 }
219 
split_lock_warn(unsigned long ip)220 static void split_lock_warn(unsigned long ip)
221 {
222 	struct delayed_work *work = NULL;
223 	int cpu;
224 
225 	if (!current->reported_split_lock)
226 		pr_warn_ratelimited("#AC: %s/%d took a split_lock trap at address: 0x%lx\n",
227 				    current->comm, current->pid, ip);
228 	current->reported_split_lock = 1;
229 
230 	if (sysctl_sld_mitigate) {
231 		/*
232 		 * misery factor #1:
233 		 * sleep 10ms before trying to execute split lock.
234 		 */
235 		if (msleep_interruptible(10) > 0)
236 			return;
237 		/*
238 		 * Misery factor #2:
239 		 * only allow one buslocked disabled core at a time.
240 		 */
241 		if (down_interruptible(&buslock_sem) == -EINTR)
242 			return;
243 		work = &sl_reenable_unlock;
244 	}
245 
246 	cpu = get_cpu();
247 
248 	if (!work) {
249 		work = this_cpu_ptr(&sl_reenable);
250 		/* Deferred initialization of per-CPU struct */
251 		if (!work->work.func)
252 			INIT_DELAYED_WORK(work, __split_lock_reenable);
253 	}
254 
255 	schedule_delayed_work_on(cpu, work, 2);
256 
257 	/* Disable split lock detection on this CPU to make progress */
258 	sld_update_msr(false);
259 	put_cpu();
260 }
261 
handle_guest_split_lock(unsigned long ip)262 bool handle_guest_split_lock(unsigned long ip)
263 {
264 	if (sld_state == sld_warn) {
265 		split_lock_warn(ip);
266 		return true;
267 	}
268 
269 	pr_warn_once("#AC: %s/%d %s split_lock trap at address: 0x%lx\n",
270 		     current->comm, current->pid,
271 		     sld_state == sld_fatal ? "fatal" : "bogus", ip);
272 
273 	current->thread.error_code = 0;
274 	current->thread.trap_nr = X86_TRAP_AC;
275 	force_sig_fault(SIGBUS, BUS_ADRALN, NULL);
276 	return false;
277 }
278 EXPORT_SYMBOL_GPL(handle_guest_split_lock);
279 
bus_lock_init(void)280 void bus_lock_init(void)
281 {
282 	u64 val;
283 
284 	if (!boot_cpu_has(X86_FEATURE_BUS_LOCK_DETECT))
285 		return;
286 
287 	rdmsrl(MSR_IA32_DEBUGCTLMSR, val);
288 
289 	if ((boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT) &&
290 	    (sld_state == sld_warn || sld_state == sld_fatal)) ||
291 	    sld_state == sld_off) {
292 		/*
293 		 * Warn and fatal are handled by #AC for split lock if #AC for
294 		 * split lock is supported.
295 		 */
296 		val &= ~DEBUGCTLMSR_BUS_LOCK_DETECT;
297 	} else {
298 		val |= DEBUGCTLMSR_BUS_LOCK_DETECT;
299 	}
300 
301 	wrmsrl(MSR_IA32_DEBUGCTLMSR, val);
302 }
303 
handle_user_split_lock(struct pt_regs * regs,long error_code)304 bool handle_user_split_lock(struct pt_regs *regs, long error_code)
305 {
306 	if ((regs->flags & X86_EFLAGS_AC) || sld_state == sld_fatal)
307 		return false;
308 	split_lock_warn(regs->ip);
309 	return true;
310 }
311 
handle_bus_lock(struct pt_regs * regs)312 void handle_bus_lock(struct pt_regs *regs)
313 {
314 	switch (sld_state) {
315 	case sld_off:
316 		break;
317 	case sld_ratelimit:
318 		/* Enforce no more than bld_ratelimit bus locks/sec. */
319 		while (!__ratelimit(&bld_ratelimit))
320 			msleep(20);
321 		/* Warn on the bus lock. */
322 		fallthrough;
323 	case sld_warn:
324 		pr_warn_ratelimited("#DB: %s/%d took a bus_lock trap at address: 0x%lx\n",
325 				    current->comm, current->pid, regs->ip);
326 		break;
327 	case sld_fatal:
328 		force_sig_fault(SIGBUS, BUS_ADRALN, NULL);
329 		break;
330 	}
331 }
332 
333 /*
334  * CPU models that are known to have the per-core split-lock detection
335  * feature even though they do not enumerate IA32_CORE_CAPABILITIES.
336  */
337 static const struct x86_cpu_id split_lock_cpu_ids[] __initconst = {
338 	X86_MATCH_VFM(INTEL_ICELAKE_X,	0),
339 	X86_MATCH_VFM(INTEL_ICELAKE_L,	0),
340 	X86_MATCH_VFM(INTEL_ICELAKE_D,	0),
341 	{}
342 };
343 
split_lock_setup(struct cpuinfo_x86 * c)344 static void __init split_lock_setup(struct cpuinfo_x86 *c)
345 {
346 	const struct x86_cpu_id *m;
347 	u64 ia32_core_caps;
348 
349 	if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
350 		return;
351 
352 	/* Check for CPUs that have support but do not enumerate it: */
353 	m = x86_match_cpu(split_lock_cpu_ids);
354 	if (m)
355 		goto supported;
356 
357 	if (!cpu_has(c, X86_FEATURE_CORE_CAPABILITIES))
358 		return;
359 
360 	/*
361 	 * Not all bits in MSR_IA32_CORE_CAPS are architectural, but
362 	 * MSR_IA32_CORE_CAPS_SPLIT_LOCK_DETECT is.  All CPUs that set
363 	 * it have split lock detection.
364 	 */
365 	rdmsrl(MSR_IA32_CORE_CAPS, ia32_core_caps);
366 	if (ia32_core_caps & MSR_IA32_CORE_CAPS_SPLIT_LOCK_DETECT)
367 		goto supported;
368 
369 	/* CPU is not in the model list and does not have the MSR bit: */
370 	return;
371 
372 supported:
373 	cpu_model_supports_sld = true;
374 	__split_lock_setup();
375 }
376 
sld_state_show(void)377 static void sld_state_show(void)
378 {
379 	if (!boot_cpu_has(X86_FEATURE_BUS_LOCK_DETECT) &&
380 	    !boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
381 		return;
382 
383 	switch (sld_state) {
384 	case sld_off:
385 		pr_info("disabled\n");
386 		break;
387 	case sld_warn:
388 		if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT)) {
389 			pr_info("#AC: crashing the kernel on kernel split_locks and warning on user-space split_locks\n");
390 			if (cpuhp_setup_state(CPUHP_AP_ONLINE_DYN,
391 					      "x86/splitlock", NULL, splitlock_cpu_offline) < 0)
392 				pr_warn("No splitlock CPU offline handler\n");
393 		} else if (boot_cpu_has(X86_FEATURE_BUS_LOCK_DETECT)) {
394 			pr_info("#DB: warning on user-space bus_locks\n");
395 		}
396 		break;
397 	case sld_fatal:
398 		if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT)) {
399 			pr_info("#AC: crashing the kernel on kernel split_locks and sending SIGBUS on user-space split_locks\n");
400 		} else if (boot_cpu_has(X86_FEATURE_BUS_LOCK_DETECT)) {
401 			pr_info("#DB: sending SIGBUS on user-space bus_locks%s\n",
402 				boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT) ?
403 				" from non-WB" : "");
404 		}
405 		break;
406 	case sld_ratelimit:
407 		if (boot_cpu_has(X86_FEATURE_BUS_LOCK_DETECT))
408 			pr_info("#DB: setting system wide bus lock rate limit to %u/sec\n", bld_ratelimit.burst);
409 		break;
410 	}
411 }
412 
sld_setup(struct cpuinfo_x86 * c)413 void __init sld_setup(struct cpuinfo_x86 *c)
414 {
415 	split_lock_setup(c);
416 	sld_state_setup();
417 	sld_state_show();
418 }
419