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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
|
// SPDX-License-Identifier: Apache-2.0 OR MIT
// 64-bit atomic implementation using kuser_cmpxchg64 on pre-v6 ARM Linux/Android.
//
// Refs:
// - https://www.kernel.org/doc/Documentation/arm/kernel_user_helpers.txt
// - https://github.com/rust-lang/compiler-builtins/blob/0.1.88/src/arm_linux.rs
//
// Note: On Miri and ThreadSanitizer which do not support inline assembly, we don't use
// this module and use fallback implementation instead.
// TODO: Since Rust 1.64, the Linux kernel requirement for Rust when using std is 3.2+, so it should
// be possible to omit the dynamic kernel version check if the std feature is enabled on Rust 1.64+.
// https://blog.rust-lang.org/2022/08/01/Increasing-glibc-kernel-requirements.html
#[path = "fallback/outline_atomics.rs"]
mod fallback;
use core::{arch::asm, cell::UnsafeCell, mem, sync::atomic::Ordering};
use crate::utils::{Pair, U64};
// https://www.kernel.org/doc/Documentation/arm/kernel_user_helpers.txt
const KUSER_HELPER_VERSION: usize = 0xFFFF0FFC;
// __kuser_helper_version >= 5 (kernel version 3.1+)
const KUSER_CMPXCHG64: usize = 0xFFFF0F60;
#[inline]
fn __kuser_helper_version() -> i32 {
use core::sync::atomic::AtomicI32;
static CACHE: AtomicI32 = AtomicI32::new(0);
let mut v = CACHE.load(Ordering::Relaxed);
if v != 0 {
return v;
}
// SAFETY: core assumes that at least __kuser_memory_barrier (__kuser_helper_version >= 3) is
// available on this platform. __kuser_helper_version is always available on such a platform.
v = unsafe { (KUSER_HELPER_VERSION as *const i32).read() };
CACHE.store(v, Ordering::Relaxed);
v
}
#[inline]
fn has_kuser_cmpxchg64() -> bool {
// Note: detect_false cfg is intended to make it easy for portable-atomic developers to
// test cases such as has_cmpxchg16b == false, has_lse == false,
// __kuser_helper_version < 5, etc., and is not a public API.
if cfg!(portable_atomic_test_outline_atomics_detect_false) {
return false;
}
__kuser_helper_version() >= 5
}
#[inline]
unsafe fn __kuser_cmpxchg64(old_val: *const u64, new_val: *const u64, ptr: *mut u64) -> bool {
// SAFETY: the caller must uphold the safety contract.
unsafe {
let f: extern "C" fn(*const u64, *const u64, *mut u64) -> u32 =
mem::transmute(KUSER_CMPXCHG64 as *const ());
f(old_val, new_val, ptr) == 0
}
}
// 64-bit atomic load by two 32-bit atomic loads.
#[inline]
unsafe fn byte_wise_atomic_load(src: *const u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe {
let (out_lo, out_hi);
asm!(
"ldr {out_lo}, [{src}]",
"ldr {out_hi}, [{src}, #4]",
src = in(reg) src,
out_lo = out(reg) out_lo,
out_hi = out(reg) out_hi,
options(pure, nostack, preserves_flags, readonly),
);
U64 { pair: Pair { lo: out_lo, hi: out_hi } }.whole
}
}
#[inline(always)]
unsafe fn atomic_update_kuser_cmpxchg64<F>(dst: *mut u64, mut f: F) -> u64
where
F: FnMut(u64) -> u64,
{
debug_assert!(dst as usize % 8 == 0);
debug_assert!(has_kuser_cmpxchg64());
// SAFETY: the caller must uphold the safety contract.
unsafe {
loop {
// This is not single-copy atomic reads, but this is ok because subsequent
// CAS will check for consistency.
//
// Note that the C++20 memory model does not allow mixed-sized atomic access,
// so we must use inline assembly to implement byte_wise_atomic_load.
// (i.e., byte-wise atomic based on the standard library's atomic types
// cannot be used here).
let prev = byte_wise_atomic_load(dst);
let next = f(prev);
if __kuser_cmpxchg64(&prev, &next, dst) {
return prev;
}
}
}
}
macro_rules! atomic_with_ifunc {
(
unsafe fn $name:ident($($arg:tt)*) $(-> $ret_ty:ty)? { $($kuser_cmpxchg64_fn_body:tt)* }
fallback = $seqcst_fallback_fn:ident
) => {
#[inline]
unsafe fn $name($($arg)*) $(-> $ret_ty)? {
unsafe fn kuser_cmpxchg64_fn($($arg)*) $(-> $ret_ty)? {
$($kuser_cmpxchg64_fn_body)*
}
// SAFETY: the caller must uphold the safety contract.
// we only calls __kuser_cmpxchg64 if it is available.
unsafe {
ifunc!(unsafe fn($($arg)*) $(-> $ret_ty)? {
if has_kuser_cmpxchg64() {
kuser_cmpxchg64_fn
} else {
// Use SeqCst because __kuser_cmpxchg64 is always SeqCst.
// https://github.com/torvalds/linux/blob/v6.1/arch/arm/kernel/entry-armv.S#L918-L925
fallback::$seqcst_fallback_fn
}
})
}
}
};
}
atomic_with_ifunc! {
unsafe fn atomic_load(src: *mut u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(src, |old| old) }
}
fallback = atomic_load_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_store(dst: *mut u64, val: u64) {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, |_| val); }
}
fallback = atomic_store_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_swap(dst: *mut u64, val: u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, |_| val) }
}
fallback = atomic_swap_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_compare_exchange(dst: *mut u64, old: u64, new: u64) -> (u64, bool) {
// SAFETY: the caller must uphold the safety contract.
let prev = unsafe {
atomic_update_kuser_cmpxchg64(dst, |v| if v == old { new } else { v })
};
(prev, prev == old)
}
fallback = atomic_compare_exchange_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_add(dst: *mut u64, val: u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, |x| x.wrapping_add(val)) }
}
fallback = atomic_add_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_sub(dst: *mut u64, val: u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, |x| x.wrapping_sub(val)) }
}
fallback = atomic_sub_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_and(dst: *mut u64, val: u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, |x| x & val) }
}
fallback = atomic_and_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_nand(dst: *mut u64, val: u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, |x| !(x & val)) }
}
fallback = atomic_nand_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_or(dst: *mut u64, val: u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, |x| x | val) }
}
fallback = atomic_or_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_xor(dst: *mut u64, val: u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, |x| x ^ val) }
}
fallback = atomic_xor_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_max(dst: *mut u64, val: u64) -> u64 {
#[allow(clippy::cast_possible_wrap, clippy::cast_sign_loss)]
// SAFETY: the caller must uphold the safety contract.
unsafe {
atomic_update_kuser_cmpxchg64(dst, |x| core::cmp::max(x as i64, val as i64) as u64)
}
}
fallback = atomic_max_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_umax(dst: *mut u64, val: u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, |x| core::cmp::max(x, val)) }
}
fallback = atomic_umax_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_min(dst: *mut u64, val: u64) -> u64 {
#[allow(clippy::cast_possible_wrap, clippy::cast_sign_loss)]
// SAFETY: the caller must uphold the safety contract.
unsafe {
atomic_update_kuser_cmpxchg64(dst, |x| core::cmp::min(x as i64, val as i64) as u64)
}
}
fallback = atomic_min_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_umin(dst: *mut u64, val: u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, |x| core::cmp::min(x, val)) }
}
fallback = atomic_umin_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_not(dst: *mut u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, |x| !x) }
}
fallback = atomic_not_seqcst
}
atomic_with_ifunc! {
unsafe fn atomic_neg(dst: *mut u64) -> u64 {
// SAFETY: the caller must uphold the safety contract.
unsafe { atomic_update_kuser_cmpxchg64(dst, u64::wrapping_neg) }
}
fallback = atomic_neg_seqcst
}
macro_rules! atomic64 {
($atomic_type:ident, $int_type:ident, $atomic_max:ident, $atomic_min:ident) => {
#[repr(C, align(8))]
pub(crate) struct $atomic_type {
v: UnsafeCell<$int_type>,
}
// Send is implicitly implemented.
// SAFETY: any data races are prevented by the kernel user helper or the lock.
unsafe impl Sync for $atomic_type {}
impl_default_no_fetch_ops!($atomic_type, $int_type);
impl_default_bit_opts!($atomic_type, $int_type);
impl $atomic_type {
#[inline]
pub(crate) const fn new(v: $int_type) -> Self {
Self { v: UnsafeCell::new(v) }
}
#[inline]
pub(crate) fn is_lock_free() -> bool {
has_kuser_cmpxchg64()
}
#[inline]
pub(crate) const fn is_always_lock_free() -> bool {
false
}
#[inline]
pub(crate) fn get_mut(&mut self) -> &mut $int_type {
// SAFETY: the mutable reference guarantees unique ownership.
// (UnsafeCell::get_mut requires Rust 1.50)
unsafe { &mut *self.v.get() }
}
#[inline]
pub(crate) fn into_inner(self) -> $int_type {
self.v.into_inner()
}
#[inline]
#[cfg_attr(all(debug_assertions, not(portable_atomic_no_track_caller)), track_caller)]
pub(crate) fn load(&self, order: Ordering) -> $int_type {
crate::utils::assert_load_ordering(order);
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { atomic_load(self.v.get().cast::<u64>()) as $int_type }
}
#[inline]
#[cfg_attr(all(debug_assertions, not(portable_atomic_no_track_caller)), track_caller)]
pub(crate) fn store(&self, val: $int_type, order: Ordering) {
crate::utils::assert_store_ordering(order);
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { atomic_store(self.v.get().cast::<u64>(), val as u64) }
}
#[inline]
pub(crate) fn swap(&self, val: $int_type, _order: Ordering) -> $int_type {
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { atomic_swap(self.v.get().cast::<u64>(), val as u64) as $int_type }
}
#[inline]
#[cfg_attr(all(debug_assertions, not(portable_atomic_no_track_caller)), track_caller)]
pub(crate) fn compare_exchange(
&self,
current: $int_type,
new: $int_type,
success: Ordering,
failure: Ordering,
) -> Result<$int_type, $int_type> {
crate::utils::assert_compare_exchange_ordering(success, failure);
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe {
let (prev, ok) = atomic_compare_exchange(
self.v.get().cast::<u64>(),
current as u64,
new as u64,
);
if ok {
Ok(prev as $int_type)
} else {
Err(prev as $int_type)
}
}
}
#[inline]
#[cfg_attr(all(debug_assertions, not(portable_atomic_no_track_caller)), track_caller)]
pub(crate) fn compare_exchange_weak(
&self,
current: $int_type,
new: $int_type,
success: Ordering,
failure: Ordering,
) -> Result<$int_type, $int_type> {
self.compare_exchange(current, new, success, failure)
}
#[inline]
pub(crate) fn fetch_add(&self, val: $int_type, _order: Ordering) -> $int_type {
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { atomic_add(self.v.get().cast::<u64>(), val as u64) as $int_type }
}
#[inline]
pub(crate) fn fetch_sub(&self, val: $int_type, _order: Ordering) -> $int_type {
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { atomic_sub(self.v.get().cast::<u64>(), val as u64) as $int_type }
}
#[inline]
pub(crate) fn fetch_and(&self, val: $int_type, _order: Ordering) -> $int_type {
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { atomic_and(self.v.get().cast::<u64>(), val as u64) as $int_type }
}
#[inline]
pub(crate) fn fetch_nand(&self, val: $int_type, _order: Ordering) -> $int_type {
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { atomic_nand(self.v.get().cast::<u64>(), val as u64) as $int_type }
}
#[inline]
pub(crate) fn fetch_or(&self, val: $int_type, _order: Ordering) -> $int_type {
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { atomic_or(self.v.get().cast::<u64>(), val as u64) as $int_type }
}
#[inline]
pub(crate) fn fetch_xor(&self, val: $int_type, _order: Ordering) -> $int_type {
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { atomic_xor(self.v.get().cast::<u64>(), val as u64) as $int_type }
}
#[inline]
pub(crate) fn fetch_max(&self, val: $int_type, _order: Ordering) -> $int_type {
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { $atomic_max(self.v.get().cast::<u64>(), val as u64) as $int_type }
}
#[inline]
pub(crate) fn fetch_min(&self, val: $int_type, _order: Ordering) -> $int_type {
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { $atomic_min(self.v.get().cast::<u64>(), val as u64) as $int_type }
}
#[inline]
pub(crate) fn fetch_not(&self, _order: Ordering) -> $int_type {
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { atomic_not(self.v.get().cast::<u64>()) as $int_type }
}
#[inline]
pub(crate) fn not(&self, order: Ordering) {
self.fetch_not(order);
}
#[inline]
pub(crate) fn fetch_neg(&self, _order: Ordering) -> $int_type {
// SAFETY: any data races are prevented by the kernel user helper or the lock
// and the raw pointer passed in is valid because we got it from a reference.
unsafe { atomic_neg(self.v.get().cast::<u64>()) as $int_type }
}
#[inline]
pub(crate) fn neg(&self, order: Ordering) {
self.fetch_neg(order);
}
#[inline]
pub(crate) const fn as_ptr(&self) -> *mut $int_type {
self.v.get()
}
}
};
}
atomic64!(AtomicI64, i64, atomic_max, atomic_min);
atomic64!(AtomicU64, u64, atomic_umax, atomic_umin);
#[allow(
clippy::alloc_instead_of_core,
clippy::std_instead_of_alloc,
clippy::std_instead_of_core,
clippy::undocumented_unsafe_blocks,
clippy::wildcard_imports
)]
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn kuser_helper_version() {
let version = __kuser_helper_version();
assert!(version >= 5, "{:?}", version);
assert_eq!(version, unsafe { (KUSER_HELPER_VERSION as *const i32).read() });
}
test_atomic_int!(i64);
test_atomic_int!(u64);
// load/store/swap implementation is not affected by signedness, so it is
// enough to test only unsigned types.
stress_test!(u64);
}
|