forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 488
Expand file tree
/
Copy pathstatic_key.rs
More file actions
150 lines (128 loc) · 3.79 KB
/
static_key.rs
File metadata and controls
150 lines (128 loc) · 3.79 KB
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
148
149
150
// SPDX-License-Identifier: GPL-2.0
// Copyright (C) 2024 Google LLC.
//! Logic for static keys.
use crate::bindings::*;
#[doc(hidden)]
#[macro_export]
#[cfg(target_arch = "x86_64")]
#[cfg(not(CONFIG_HAVE_RUST_ASM_GOTO))]
macro_rules! _static_key_false {
($key:path, $keytyp:ty, $field:ident) => {{
let mut output = 1u32;
core::arch::asm!(
r#"
1: .byte 0x0f,0x1f,0x44,0x00,0x00
.pushsection __jump_table, "aw"
.balign 8
.long 1b - .
.long 3f - .
.quad {0} + {1} - .
.popsection
2: mov {2:e}, 0
3:
"#,
sym $key,
const ::core::mem::offset_of!($keytyp, $field),
inout(reg) output,
);
output != 0
}};
}
#[doc(hidden)]
#[macro_export]
#[cfg(target_arch = "x86_64")]
#[cfg(CONFIG_HAVE_RUST_ASM_GOTO)]
macro_rules! _static_key_false {
($key:path, $keytyp:ty, $field:ident) => {'my_label: {
core::arch::asm!(
r#"
1: .byte 0x0f,0x1f,0x44,0x00,0x00
.pushsection __jump_table, "aw"
.balign 8
.long 1b - .
.long {0} - .
.quad {1} + {2} - .
.popsection
"#,
label {
break 'my_label true;
},
sym $key,
const ::core::mem::offset_of!($keytyp, $field),
);
break 'my_label false;
}};
}
#[doc(hidden)]
#[macro_export]
#[cfg(target_arch = "aarch64")]
#[cfg(not(CONFIG_HAVE_RUST_ASM_GOTO))]
macro_rules! _static_key_false {
($key:path, $keytyp:ty, $field:ident) => {{
let mut output = 1u32;
core::arch::asm!(
r#"
1: nop
.pushsection __jump_table, "aw"
.align 3
.long 1b - ., 3f - .
.quad {0} + {1} - .
.popsection
2: mov {2:w}, 0
3:
"#,
sym $key,
const ::core::mem::offset_of!($keytyp, $field),
inout(reg) output
);
output != 0
}};
}
#[doc(hidden)]
#[macro_export]
#[cfg(target_arch = "aarch64")]
#[cfg(CONFIG_HAVE_RUST_ASM_GOTO)]
macro_rules! _static_key_false {
($key:path, $keytyp:ty, $field:ident) => {'my_label: {
core::arch::asm!(
r#"
1: nop
.pushsection __jump_table, "aw"
.align 3
.long 1b - ., {0} - .
.quad {1} + {2} - .
.popsection
"#,
label {
break 'my_label true;
},
sym $key,
const ::core::mem::offset_of!($keytyp, $field),
);
break 'my_label false;
}};
}
/// Branch based on a static key.
///
/// Takes three arguments:
///
/// * `key` - the path to the static variable containing the `static_key`.
/// * `keytyp` - the type of `key`.
/// * `field` - the name of the field of `key` that contains the `static_key`.
#[macro_export]
macro_rules! static_key_false {
// Forward to the real implementation. Separated like this so that we don't have to duplicate
// the documentation.
($key:path, $keytyp:ty, $field:ident) => {{
// Assert that `$key` has type `$keytyp` and that `$key.$field` has type `static_key`.
//
// SAFETY: We know that `$key` is a static because otherwise the inline assembly will not
// compile. The raw pointers created in this block are in-bounds of `$key`.
static _TY_ASSERT: () = unsafe {
let key: *const $keytyp = ::core::ptr::addr_of!($key);
let _: *const $crate::bindings::static_key = ::core::ptr::addr_of!((*key).$field);
};
$crate::static_key::_static_key_false! { $key, $keytyp, $field }
}};
}
pub use {_static_key_false, static_key_false};