Martin Schwidefsky | 4253b0e | 2018-04-24 08:23:54 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | #include <linux/device.h> |
| 3 | #include <linux/cpu.h> |
| 4 | #include <asm/facility.h> |
| 5 | #include <asm/nospec-branch.h> |
| 6 | |
| 7 | ssize_t cpu_show_spectre_v1(struct device *dev, |
| 8 | struct device_attribute *attr, char *buf) |
| 9 | { |
| 10 | return sprintf(buf, "Mitigation: __user pointer sanitization\n"); |
| 11 | } |
| 12 | |
| 13 | ssize_t cpu_show_spectre_v2(struct device *dev, |
| 14 | struct device_attribute *attr, char *buf) |
| 15 | { |
Martin Schwidefsky | aeaf700 | 2018-05-08 15:14:48 +0200 | [diff] [blame] | 16 | if (test_facility(156)) |
| 17 | return sprintf(buf, "Mitigation: etokens\n"); |
Sven Schnelle | 5d17d4ed7 | 2021-10-04 08:51:06 +0200 | [diff] [blame] | 18 | if (nospec_uses_trampoline()) |
Martin Schwidefsky | 4253b0e | 2018-04-24 08:23:54 +0200 | [diff] [blame] | 19 | return sprintf(buf, "Mitigation: execute trampolines\n"); |
Sven Schnelle | 17e89e1 | 2021-05-05 22:01:10 +0200 | [diff] [blame] | 20 | if (__test_facility(82, alt_stfle_fac_list)) |
Martin Schwidefsky | 4253b0e | 2018-04-24 08:23:54 +0200 | [diff] [blame] | 21 | return sprintf(buf, "Mitigation: limited branch prediction\n"); |
| 22 | return sprintf(buf, "Vulnerable\n"); |
| 23 | } |