Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
1
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
24524e3
Breadcrumbs
linux
/
drivers
/
gpu
/
drm
/
i915
/
i915_mitigations.c
Blame
Blame
Latest commit
History
History
147 lines (120 loc) · 3.06 KB
Breadcrumbs
linux
/
drivers
/
gpu
/
drm
/
i915
/
i915_mitigations.c
Top
File metadata and controls
Code
Blame
147 lines (120 loc) · 3.06 KB
Raw
// SPDX-License-Identifier: MIT /* * Copyright © 2021 Intel Corporation */ #include <linux/kernel.h> #include <linux/moduleparam.h> #include <linux/slab.h> #include <linux/string.h> #include "i915_driver.h" #include "i915_drv.h" #include "i915_mitigations.h" static unsigned long mitigations __read_mostly = ~0UL; enum { CLEAR_RESIDUALS = 0, }; static const char * const names[] = { [CLEAR_RESIDUALS] = "residuals", }; bool i915_mitigate_clear_residuals(void) { return READ_ONCE(mitigations) & BIT(CLEAR_RESIDUALS); } static int mitigations_set(const char *val, const struct kernel_param *kp) { unsigned long new = ~0UL; char *str, *sep, *tok; bool first = true; int err = 0; BUILD_BUG_ON(ARRAY_SIZE(names) >= BITS_PER_TYPE(mitigations)); str = kstrdup(val, GFP_KERNEL); if (!str) return -ENOMEM; for (sep = str; (tok = strsep(&sep, ","));) { bool enable = true; int i; /* Be tolerant of leading/trailing whitespace */ tok = strim(tok); if (first) { first = false; if (!strcmp(tok, "auto")) continue; new = 0; if (!strcmp(tok, "off")) continue; } if (*tok == '!') { enable = !enable; tok++; } if (!strncmp(tok, "no", 2)) { enable = !enable; tok += 2; } if (*tok == '\0') continue; for (i = 0; i < ARRAY_SIZE(names); i++) { if (!strcmp(tok, names[i])) { if (enable) new |= BIT(i); else new &= ~BIT(i); break; } } if (i == ARRAY_SIZE(names)) { pr_err("Bad \"%s.mitigations=%s\", '%s' is unknown\n", DRIVER_NAME, val, tok); err = -EINVAL; break; } } kfree(str); if (err) return err; WRITE_ONCE(mitigations, new); return 0; } static int mitigations_get(char *buffer, const struct kernel_param *kp) { unsigned long local = READ_ONCE(mitigations); int count, i; bool enable; if (!local) return scnprintf(buffer, PAGE_SIZE, "%s\n", "off"); if (local & BIT(BITS_PER_LONG - 1)) { count = scnprintf(buffer, PAGE_SIZE, "%s,", "auto"); enable = false; } else { enable = true; count = 0; } for (i = 0; i < ARRAY_SIZE(names); i++) { if ((local & BIT(i)) != enable) continue; count += scnprintf(buffer + count, PAGE_SIZE - count, "%s%s,", enable ? "" : "!", names[i]); } buffer[count - 1] = '\n'; return count; } static const struct kernel_param_ops ops = { .set = mitigations_set, .get = mitigations_get, }; module_param_cb_unsafe(mitigations, &ops, NULL, 0600); MODULE_PARM_DESC(mitigations, "Selectively enable security mitigations for all Intel® GPUs in the system.\n" "\n" " auto -- enables all mitigations required for the platform [default]\n" " off -- disables all mitigations\n" "\n" "Individual mitigations can be enabled by passing a comma-separated string,\n" "e.g. mitigations=residuals to enable only clearing residuals or\n" "mitigations=auto,noresiduals to disable only the clear residual mitigation.\n" "Either '!' or 'no' may be used to switch from enabling the mitigation to\n" "disabling it.\n" "\n" "Active mitigations for Ivybridge, Baytrail, Haswell:\n" " residuals -- clear all thread-local registers between contexts" );
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
You can’t perform that action at this time.