Skip to content

Commit f56a265

Browse files
authored
Rollup merge of #110089 - petrosagg:mpsc-ub, r=m-ou-se
sync::mpsc: synchronize receiver disconnect with initialization Receiver disconnection relies on the incorrect assumption that `head.index != tail.index` implies that the channel is initialized (i.e `head.block` and `tail.block` point to allocated blocks). However, it can happen that `head.index != tail.index` and `head.block == null` at the same time which leads to a segfault when a channel is dropped in that state. This can happen because initialization is performed in two steps. First, the tail block is allocated and the `tail.block` is set. If that is successful `head.block` is set to the same pointer. Importantly, initialization is skipped if `tail.block` is not null. Therefore we can have the following situation: 1. Thread A starts to send the first value of the channel, observes that `tail.block` is null and begins initialization. It sets `tail.block` to point to a newly allocated block and then gets preempted. `head.block` is still null at this point. 2. Thread B starts to send the second value of the channel, observes that `tail.block` *is not* null and proceeds with writing its value in the allocated tail block and sets `tail.index` to 1. 3. Thread B drops the receiver of the channel which observes that `head.index != tail.index` (0 and 1 respectively), therefore there must be messages to drop. It starts traversing the linked list from `head.block` which is still a null pointer, leading to a segfault. This PR fixes this problem by waiting for initialization to complete when `head.index != tail.index` and the `head.block` is still null. A similar check exists in `start_recv` for similar reasons. Fixes #110001
2 parents d40c827 + f0d487d commit f56a265

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

library/std/src/sync/mpmc/list.rs

+12
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,18 @@ impl<T> Channel<T> {
549549
let mut head = self.head.index.load(Ordering::Acquire);
550550
let mut block = self.head.block.load(Ordering::Acquire);
551551

552+
// If we're going to be dropping messages we need to synchronize with initialization
553+
if head >> SHIFT != tail >> SHIFT {
554+
// The block can be null here only if a sender is in the process of initializing the
555+
// channel while another sender managed to send a message by inserting it into the
556+
// semi-initialized channel and advanced the tail.
557+
// In that case, just wait until it gets initialized.
558+
while block.is_null() {
559+
backoff.spin_heavy();
560+
block = self.head.block.load(Ordering::Acquire);
561+
}
562+
}
563+
552564
unsafe {
553565
// Drop all messages between head and tail and deallocate the heap-allocated blocks.
554566
while head >> SHIFT != tail >> SHIFT {

0 commit comments

Comments
 (0)