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
use std::cell::Cell; use std::ptr; use std::sync::atomic::{AtomicBool, AtomicPtr, AtomicUsize, Ordering}; use super::RefCnt; const DEBT_SLOT_CNT: usize = 8; /// One debt slot. pub(crate) struct Debt(AtomicUsize); impl Default for Debt { fn default() -> Self { Debt(AtomicUsize::new(NO_DEBT)) } } #[repr(align(64))] #[derive(Default)] struct Slots([Debt; DEBT_SLOT_CNT]); /// One thread-local node for debts. #[repr(C)] struct Node { slots: Slots, next: Option<&'static Node>, in_use: AtomicBool, } impl Default for Node { fn default() -> Self { Node { next: None, in_use: AtomicBool::new(true), slots: Default::default(), } } } impl Node { fn get() -> &'static Self { // Try to find an unused one in the chain and reuse it. traverse(|node| { // Try to claim this node. Nothing is synchronized through this atomic, we only // track if someone claims ownership of it. if !node.in_use.compare_and_swap(false, true, Ordering::Relaxed) { Some(node) } else { None } }) // If that didn't work, create a new one and prepend to the list. .unwrap_or_else(|| { let node = Box::leak(Box::new(Node::default())); // Not shared between threads yet, so ordinary write would be fine too. node.in_use.store(true, Ordering::Relaxed); // We don't want to read any data in addition to the head, Relaxed is fine // here. // // We do need to release the data to others, but for that, we acquire in the // compare_exchange below. let mut head = DEBT_HEAD.load(Ordering::Relaxed); loop { node.next = unsafe { head.as_ref() }; if let Err(old) = DEBT_HEAD.compare_exchange_weak( head, node, // We need to release *the whole chain* here. For that, we need to // acquire it first. Ordering::AcqRel, Ordering::Relaxed, // Nothing changed, go next round of the loop. ) { head = old; } else { return node; } } }) } } /// The value of pointer `1` should be pretty safe, for two reasons: /// /// * It's an odd number, but the pointers we have are likely aligned at least to the word size, /// because the data at the end of the `Arc` has the counters. /// * It's in the very first page where NULL lives, so it's not mapped. pub(crate) const NO_DEBT: usize = 1; /// The head of the debt chain. static DEBT_HEAD: AtomicPtr<Node> = AtomicPtr::new(ptr::null_mut()); /// A wrapper around a node pointer, to un-claim the node on thread shutdown. struct DebtHead { // Node for this thread. node: Cell<Option<&'static Node>>, // The next slot in round-robin rotation. Heuristically tries to balance the load across them // instead of having all of them stuffed towards the start of the array which gets // unsuccessfully iterated through every time. offset: Cell<usize>, } impl Drop for DebtHead { fn drop(&mut self) { if let Some(node) = self.node.get() { // Nothing synchronized by this atomic. assert!(node.in_use.swap(false, Ordering::Relaxed)); } } } thread_local! { /// A debt node assigned to this thread. static THREAD_HEAD: DebtHead = DebtHead { node: Cell::new(None), offset: Cell::new(0), }; } /// Goes through the debt linked list. /// /// This traverses the linked list, calling the closure on each node. If the closure returns /// `Some`, it terminates with that value early, otherwise it runs to the end. fn traverse<R, F: FnMut(&'static Node) -> Option<R>>(mut f: F) -> Option<R> { // Acquire ‒ we want to make sure we read the correct version of data at the end of the // pointer. Any write to the DEBT_HEAD is with Release. // // Note that the other pointers in the chain never change and are *ordinary* pointers. The // whole linked list is synchronized through the head. let mut current = unsafe { DEBT_HEAD.load(Ordering::Acquire).as_ref() }; while let Some(node) = current { let result = f(node); if result.is_some() { return result; } current = node.next; } None } impl Debt { /// Creates a new debt. /// /// This stores the debt of the given pointer (untyped, casted into an usize) and returns a /// reference to that slot, or gives up with `None` if all the slots are currently full. /// /// This is technically lock-free on the first call in a given thread and wait-free on all the /// other accesses. // Turn the lint off in clippy, but don't complain anywhere else. clippy::new_ret_no_self // doesn't work yet, that thing is not stabilized. #[allow(unknown_lints, renamed_and_removed_lints, new_ret_no_self)] #[inline] pub(crate) fn new(ptr: usize) -> Option<&'static Self> { THREAD_HEAD .try_with(|head| { let node = match head.node.get() { // Already have my own node (most likely)? Some(node) => node, // No node yet, called for the first time in this thread. Set one up. None => { let new_node = Node::get(); head.node.set(Some(new_node)); new_node } }; // Check it is in use by *us* debug_assert!(node.in_use.load(Ordering::Relaxed)); // Trick with offsets: we rotate through the slots (save the value from last time) // so successive leases are likely to succeed on the first attempt (or soon after) // instead of going through the list of already held ones. let offset = head.offset.get(); let len = node.slots.0.len(); for i in 0..len { let i = (i + offset) % len; // Note: the indexing check is almost certainly optimised out because the len // is used above. And using .get_unchecked was actually *slower*. let got_it = node.slots.0[i] .0 // Try to acquire the slot. Relaxed if it doesn't work is fine, as we don't // synchronize by it. .compare_exchange(NO_DEBT, ptr, Ordering::SeqCst, Ordering::Relaxed) .is_ok(); if got_it { head.offset.set(i + 1); return Some(&node.slots.0[i]); } } None }) .ok() .and_then(|new| new) } /// Tries to pay the given debt. /// /// If the debt is still there, for the given pointer, it is paid and `true` is returned. If it /// is empty or if there's some other pointer, it is not paid and `false` is returned, meaning /// the debt was paid previously by someone else. /// /// # Notes /// /// * It is possible that someone paid the debt and then someone else put a debt for the same /// pointer in there. This is fine, as we'll just pay the debt for that someone else. /// * This relies on the fact that the same pointer must point to the same object and /// specifically to the same type ‒ the caller provides the type, it's destructor, etc. /// * It also relies on the fact the same thing is not stuffed both inside an `Arc` and `Rc` or /// something like that, but that sounds like a reasonable assumption. Someone storing it /// through `ArcSwap<T>` and someone else with `ArcSwapOption<T>` will work. #[inline] pub(crate) fn pay<T: RefCnt>(&self, ptr: *const T::Base) -> bool { self.0 // If we don't change anything because there's something else, Relaxed is fine. // // The Release works as kind of Mutex. We make sure nothing from the debt-protected // sections leaks below this point. .compare_exchange(ptr as usize, NO_DEBT, Ordering::Release, Ordering::Relaxed) .is_ok() } /// Pays all the debts on the given pointer. pub(crate) fn pay_all<T: RefCnt>(ptr: *const T::Base) { let val = unsafe { T::from_ptr(ptr) }; T::inc(&val); traverse::<(), _>(|node| { for slot in &node.slots.0 { if slot .0 .compare_exchange(ptr as usize, NO_DEBT, Ordering::AcqRel, Ordering::Relaxed) .is_ok() { T::inc(&val); } } None }); } } #[cfg(test)] mod tests { use std::sync::Arc; /// Checks the assumption that arcs to ZSTs have different pointer values. #[test] fn arc_zst() { struct A; struct B; let a = Arc::new(A); let b = Arc::new(B); let aref: &A = &a; let bref: &B = &b; let aptr = aref as *const _ as usize; let bptr = bref as *const _ as usize; assert_ne!(aptr, bptr); } }