interlock 0.0.4

Readers-writer locks designed for locking intervals
Documentation
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
//! RB-Tree-based implementation
use core::{
    cell::{Cell, UnsafeCell},
    cmp::Ordering,
    fmt,
    marker::PhantomPinned,
    ops::Range,
    pin::Pin,
    ptr::NonNull,
};

use super::{IntervalRwLockCore, LockCallback, LockState, UnlockCallback};
use crate::utils::{
    panicking::abort_on_unwind,
    pin::{EarlyDrop, EarlyDropGuard},
    rbtree,
};

#[cfg(test)]
mod tests;

// Data types
// -----------------------------------------------------------------------------

/// An implementation of [`IntervalRwLockCore`] based on red-black trees.
pub struct RbTreeIntervalRwLockCore<Index, Priority, InProgress> {
    reads: Option<NonNull<ReadNode<Index>>>,
    writes: Option<NonNull<WriteNode<Index>>>,
    pendings: Option<NonNull<PendingNode<Index, Priority, InProgress>>>,
    /// Ensures the destructor is called.
    _pin: PhantomPinned,
}

// Safety: They are semantically container
unsafe impl<Index: Send, Priority: Send, InProgress: Send> Send
    for RbTreeIntervalRwLockCore<Index, Priority, InProgress>
{
}

// Safety: It can do nothing with `&Self`. But we require `Send` just in case,
// following `std::mutex::Mutex`'s pattern.
unsafe impl<Index: Send, Priority: Send, InProgress: Send> Sync
    for RbTreeIntervalRwLockCore<Index, Priority, InProgress>
{
}

/// A node of [`RbTreeIntervalRwLockCore::reads`]. Represents an endpoint of an
/// immutable borrow.
///
///  - `(index, 1)`: A lower bound (inclusive)
///  - `(index, -1)`: An upper bound (exclusive)
///
type ReadNode<Index> = rbtree::Node<(Index, i8), isize>;

/// A node of [`RbTreeIntervalRwLockCore::writes`]. Represents a mutable borrow.
type WriteNode<Index> = rbtree::Node<Range<Index>, ()>;

/// A node of [`RbTreeIntervalRwLockCore::pendings`]. Represents a pending
/// borrow.
type PendingNode<Index, Priority, InProgress> =
    rbtree::Node<Pending<Index, Priority, InProgress>, ()>;

/// An pending borrow.
#[derive(Debug)]
struct Pending<Index, Priority, InProgress> {
    /// The next index range to borrow.
    range: Range<Index>,
    priority: Priority,
    /// A pointer to the [`ReadLockState`] or [`WriteLockState`] that contains
    /// `Self`.
    parent: LockStatePtr<Index, Priority, InProgress>,
    /// A user-provided object that will be returned when this pending borrow
    /// operation completes.
    in_progress: InProgress,
}

#[derive(Debug)]
enum LockStatePtr<Index, Priority, InProgress> {
    Read(NonNull<ReadLockStateInner<Index, Priority, InProgress>>),
    Write(NonNull<WriteLockStateInner<Index, Priority, InProgress>>),
}

impl<Index, Priority, InProgress> Clone for LockStatePtr<Index, Priority, InProgress> {
    #[inline]
    fn clone(&self) -> Self {
        *self
    }
}

impl<Index, Priority, InProgress> Copy for LockStatePtr<Index, Priority, InProgress> {}

macro_rules! impl_lock_state {
    ($(
        $( #[$meta:meta] )*
        pub struct $ty:ident { inner: $inner:ident }
    )*) => {$(
        $( #[$meta] )*

        #[pin_project::pin_project]
        pub struct $ty<Index, Priority, InProgress> {
            #[pin]
            inner: EarlyDropGuard<$inner<Index, Priority, InProgress>>
        }

        impl<Index, Priority, InProgress> $ty<Index, Priority, InProgress> {
            #[inline]
            pub const fn new() -> Self {
                Self { inner: EarlyDropGuard::new() }
            }

            /// Get a shared reference to the contained `$inner`.
            ///
            /// Note that there's no method that gives a mutable reference to
            /// the contained `$inner`. This is because `$inner` may be linked
            /// to another tree, in which case another thread could mutate
            /// `$inner`'s interior-mutable fields even if the current thread
            /// has `Pin<&mut $ty>`.
            #[inline]
            fn get(self: Pin<&mut Self>) -> Pin<&$inner<Index, Priority, InProgress>> {
                self.project().inner.get_or_insert_default()
            }
        }

        impl<Index, Priority, InProgress> fmt::Debug for $ty<Index, Priority, InProgress> {
            fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
                // We might be tempted to debug-format the contained nodes, but
                // we should because `Index`, `Priority`, and `InProgress` might
                // not be designed to be accessed in a different thread. We can
                // only show the parent's address.
                f.write_str(stringify!($ty))?;
                if let Some(parent) = self.inner.get().and_then(|inner|inner.parent.get()) {
                    write!(f, "(< borrow data for {:p} >)", parent)
                } else {
                    f.write_str("(< empty >)")
                }
            }
        }

        impl<Index, Priority, InProgress> Default for $ty<Index, Priority, InProgress> {
            #[inline]
            fn default() -> Self {
                Self::new()
            }
        }

        // Safety: `$ty` is just a vessel to contain the data associated with
        // locks. Its content is only accessed by `RbTreeIntervalRwLockCore`'s
        // methods, to which `$ty` is only passed as `Pin<&mut $ty>`. The
        // destructor isn't allowed to run if the slots for any of these generic
        // parameter types are filled.
        unsafe impl<Index, Priority, InProgress> Send for $ty<Index, Priority, InProgress> {}
        unsafe impl<Index, Priority, InProgress> Sync for $ty<Index, Priority, InProgress> {}
    )*};
}

impl_lock_state! {
    /// Provides a storage to store information about a blocking reader lock in
    /// [`RbTreeIntervalRwLockCore`].
    pub struct ReadLockState { inner: ReadLockStateInner }
    /// Provides a storage to store information about a blocking writer lock in
    /// [`RbTreeIntervalRwLockCore`].
    pub struct WriteLockState { inner: WriteLockStateInner }
    /// Provides a storage to store information about a non-blocking reader lock in
    /// [`RbTreeIntervalRwLockCore`].
    pub struct TryReadLockState { inner: TryReadLockStateInner }
    /// Provides a storage to store information about a non-blocking writer lock in
    /// [`RbTreeIntervalRwLockCore`].
    pub struct TryWriteLockState { inner: TryWriteLockStateInner }
}

struct ReadLockStateInner<Index, Priority, InProgress> {
    // | State                       | `parent` | `read` | `pending` |
    // | --------------------------- | -------- | ------ | --------- |
    // | Not in use                  | `None`   | `None` | `None`    |
    // | Pending, no borrowed region | `Some`   | `None` | `Some`    |
    // | Pending, partial borrow     | `Some`   | `Some` | `Some`    |
    // | Complete                    | `Some`   | `Some` | `None`    |
    /// The `RbTreeIntervalRwLockCore` `self` is currently used with. This is
    /// set when a lock is associated with `self` and cleared when the lock is
    /// released. When accessed through `Pin<&[mut]
    /// [Try]{Read,Write}LockState>`, this field essentially inherits that
    /// reference's mutability. (Maybe we can actually move this field to
    /// `[Try]{Read,Write}LockState` and peel `Cell` off.)
    ///
    /// In a method that takes `self: &mut RbTreeIntervalRwLockCore` and `Pin<&
    /// mut [Try]{Read,Write}LockState>`, `parent == self || parent == None`
    /// usually means it's safe to mutably borrow this struct's UnsafeCell`s.
    /// In other cases, doing so may cause an undefined behavior because the
    /// nodes are linked to that `parent`'s tree and may be modified through
    /// `*mut [Try]{Read,Write}LockStateInner`.
    parent: Cell<Option<NonNull<RbTreeIntervalRwLockCore<Index, Priority, InProgress>>>>,
    /// Stores a linked `PendingNode` if the borrow is incomplete.
    pending: UnsafeCell<Option<PendingNode<Index, Priority, InProgress>>>,
    /// Stores linked `ReadNode`s if the borrowed region is non-empty.
    read: UnsafeCell<Option<[ReadNode<Index>; 2]>>,
}

struct WriteLockStateInner<Index, Priority, InProgress> {
    /// See [`ReadLockStateInner::parent`]
    parent: Cell<Option<NonNull<RbTreeIntervalRwLockCore<Index, Priority, InProgress>>>>,
    /// See [`ReadLockStateInner::pending`]
    pending: UnsafeCell<Option<PendingNode<Index, Priority, InProgress>>>,
    /// Stores a linked `WriteNode` if the borrowed region is non-empty.
    write: UnsafeCell<Option<WriteNode<Index>>>,
}

struct TryReadLockStateInner<Index, Priority, InProgress> {
    /// See [`ReadLockStateInner::parent`]
    parent: Cell<Option<NonNull<RbTreeIntervalRwLockCore<Index, Priority, InProgress>>>>,
    /// See [`ReadLockStateInner::read`]
    read: UnsafeCell<Option<[ReadNode<Index>; 2]>>,
}

struct TryWriteLockStateInner<Index, Priority, InProgress> {
    /// See [`ReadLockStateInner::parent`]
    parent: Cell<Option<NonNull<RbTreeIntervalRwLockCore<Index, Priority, InProgress>>>>,
    /// See [`WriteLockStateInner::write`]
    write: UnsafeCell<Option<WriteNode<Index>>>,
}

impl<Index, Priority, InProgress> Default for ReadLockStateInner<Index, Priority, InProgress> {
    #[inline]
    fn default() -> Self {
        Self {
            parent: Cell::new(None),
            read: UnsafeCell::new(None),
            pending: UnsafeCell::new(None),
        }
    }
}

impl<Index, Priority, InProgress> Default for WriteLockStateInner<Index, Priority, InProgress> {
    #[inline]
    fn default() -> Self {
        Self {
            parent: Cell::new(None),
            write: UnsafeCell::new(None),
            pending: UnsafeCell::new(None),
        }
    }
}

impl<Index, Priority, InProgress> Default for TryReadLockStateInner<Index, Priority, InProgress> {
    #[inline]
    fn default() -> Self {
        Self {
            parent: Cell::new(None),
            read: UnsafeCell::new(None),
        }
    }
}

impl<Index, Priority, InProgress> Default for TryWriteLockStateInner<Index, Priority, InProgress> {
    #[inline]
    fn default() -> Self {
        Self {
            parent: Cell::new(None),
            write: UnsafeCell::new(None),
        }
    }
}

// RB tree callbacks
// -----------------------------------------------------------------------------

struct ReadNodeCallback;

impl<Index: Ord> rbtree::Callback<(Index, i8), isize> for ReadNodeCallback {
    // The summary of nodes is the sum of their `element.1` values
    #[inline]
    fn zero_summary(&mut self) -> isize {
        0
    }
    #[inline]
    fn element_to_summary(&mut self, element: &(Index, i8)) -> isize {
        element.1 as isize
    }
    #[inline]
    fn add_assign_summary(&mut self, lhs: &mut isize, rhs: &isize) {
        *lhs = lhs.wrapping_add(*rhs);
    }
    #[inline]
    fn sub_assign_summary(&mut self, lhs: &mut isize, rhs: &isize) {
        *lhs = lhs.wrapping_sub(*rhs);
    }
    #[inline]
    fn cmp_element(&mut self, e1: &(Index, i8), e2: &(Index, i8)) -> Ordering {
        e1.0.cmp(&e2.0)
    }
}

struct WriteNodeCallback;

impl<Index: Ord> rbtree::Callback<Range<Index>, ()> for WriteNodeCallback {
    #[inline]
    fn zero_summary(&mut self) {}
    #[inline]
    fn element_to_summary(&mut self, _element: &Range<Index>) {}
    #[inline]
    fn add_assign_summary(&mut self, _lhs: &mut (), _rhs: &()) {}
    #[inline]
    fn sub_assign_summary(&mut self, _lhs: &mut (), _rhs: &()) {}
    #[inline]
    fn cmp_element(&mut self, e1: &Range<Index>, e2: &Range<Index>) -> Ordering {
        // Since write borrows have no overlaps, either `start` and `end` can be
        // used for ordering
        e1.start.cmp(&e2.start)
    }
}

struct PendingNodeCallback;

impl<Index: Ord, Priority: Ord, InProgress>
    rbtree::Callback<Pending<Index, Priority, InProgress>, ()> for PendingNodeCallback
{
    #[inline]
    fn zero_summary(&mut self) {}
    #[inline]
    fn element_to_summary(&mut self, _element: &Pending<Index, Priority, InProgress>) {}
    #[inline]
    fn add_assign_summary(&mut self, _lhs: &mut (), _rhs: &()) {}
    #[inline]
    fn sub_assign_summary(&mut self, _lhs: &mut (), _rhs: &()) {}
    #[inline]
    fn cmp_element(
        &mut self,
        new: &Pending<Index, Priority, InProgress>,
        existing: &Pending<Index, Priority, InProgress>,
    ) -> Ordering {
        (&new.range.start, &new.priority)
            .cmp(&(&existing.range.start, &existing.priority))
            // When they are tied, sort in the reverse insertion order
            .then(Ordering::Less)
    }
}

// Implementation
// -----------------------------------------------------------------------------

impl<Index, Priority, InProgress> RbTreeIntervalRwLockCore<Index, Priority, InProgress> {
    #[inline]
    pub const fn new() -> Self {
        Self {
            reads: None,
            writes: None,
            pendings: None,
            _pin: PhantomPinned,
        }
    }
}

unsafe impl<Index, Priority, InProgress> IntervalRwLockCore
    for RbTreeIntervalRwLockCore<Index, Priority, InProgress>
where
    Index: Clone + Ord,
    Priority: Ord,
{
    type Index = Index;
    type Priority = Priority;
    type ReadLockState = ReadLockState<Index, Priority, InProgress>;
    type WriteLockState = WriteLockState<Index, Priority, InProgress>;
    type TryReadLockState = TryReadLockState<Index, Priority, InProgress>;
    type TryWriteLockState = TryWriteLockState<Index, Priority, InProgress>;
    type InProgress = InProgress;

    const INIT: Self = Self::new();

    fn lock_read<Callback: LockCallback<Self::InProgress>>(
        self: Pin<&mut Self>,
        range: Range<Self::Index>,
        priority: Self::Priority,
        state: Pin<&mut Self::ReadLockState>,
        callback: Callback,
    ) -> Callback::Output {
        // Safety: We won't violate the pinning invariant
        let this = unsafe { self.get_unchecked_mut() };

        let state = state.get();

        debug_assert!(range.start < range.end, "invalid range");

        // Check for conflicting borrows.
        let (output, pending) =
            if let Some(first_conflict_index) = this.first_write_borrow_in_range(&range) {
                let (output, in_progress) = callback.in_progress();
                (
                    output,
                    Some(Pending {
                        range: first_conflict_index..range.end.clone(),
                        priority,
                        parent: LockStatePtr::Read((&*state).into()),
                        in_progress,
                    }),
                )
            } else {
                drop(priority);
                (callback.complete(), None)
            };

        // The about-to-be-successfully-borrowed region
        let borrow_range = if let Some(pending) = &pending {
            (pending.range.start != range.start).then(|| range.start..pending.range.start.clone())
        } else {
            Some(range)
        };

        // Claim `state`. Do this before accessing other fields of `state`
        // because external trait implementations may use `state` with other
        // instances of `RbTreeIntervalRwLockCore`.
        if state.parent.get().is_some() {
            panic_lock_state_in_use();
        }
        state.parent.set(Some(NonNull::from(&*this)));

        abort_on_unwind(|| {
            // The rest steps are indivisible - we must complete, rollback, or
            // abort the program.

            // Borrow the region that we can borrow now
            if let Some(borrow_range) = borrow_range {
                // Initialize the read borrow nodes
                let read_nodes: [NonNull<_>; 2] = {
                    // Safety: Since `state` is still claimed by `self`, we have
                    // exclusive access to the contained `UnsafeCell`s.
                    let read_nodes = unsafe { &mut *state.read.get() };
                    debug_assert!(read_nodes.is_none());
                    let [n0, n1] = read_nodes.insert([
                        rbtree::Node::new((borrow_range.start, 1), 1),
                        rbtree::Node::new((borrow_range.end, -1), -1),
                    ]);
                    [n0.into(), n1.into()]
                };

                // Insert the read borrow nodes
                // Safety: The tree is sound, these nodes are new, and there are no
                //         conflicting borrows of the existing nodes.
                unsafe {
                    rbtree::Node::insert(ReadNodeCallback, &mut this.reads, read_nodes[0]);
                    rbtree::Node::insert(ReadNodeCallback, &mut this.reads, read_nodes[1]);
                };
            }

            // Remember the pending borrow
            if let Some(pending) = pending {
                // Initialize the pending borrow node
                let pending_node: NonNull<_> = {
                    // Safety: Since `state` is still claimed by `self`, we have
                    // exclusive access to the contained `UnsafeCell`s.
                    let pending_node = unsafe { &mut *state.pending.get() };
                    debug_assert!(pending_node.is_none());
                    pending_node.insert(rbtree::Node::new(pending, ())).into()
                };

                // Insert the pending borrow node
                // Safety: The tree is sound, this nodes is new, and there are no
                //         conflicting borrows of the existing nodes.
                unsafe {
                    rbtree::Node::insert(PendingNodeCallback, &mut this.pendings, pending_node)
                };
            }

            true
        });

        output
    }

    fn lock_write<Callback: LockCallback<Self::InProgress>>(
        self: Pin<&mut Self>,
        range: Range<Self::Index>,
        priority: Self::Priority,
        state: Pin<&mut Self::WriteLockState>,
        callback: Callback,
    ) -> Callback::Output {
        // Safety: We won't violate the pinning invariant
        let this = unsafe { self.get_unchecked_mut() };

        let state = state.get();

        debug_assert!(range.start < range.end, "invalid range");

        // Check for conflicting borrows.
        let first_conflict_index = match (
            this.first_write_borrow_in_range(&range),
            this.first_read_borrow_in_range(&range),
        ) {
            (None, None) => None,
            (one @ Some(_), None) | (None, one @ Some(_)) => one,
            (Some(i0), Some(i1)) => Some(i0.min(i1)),
        };

        // Check for conflicting borrows.
        let (output, pending) = if let Some(first_conflict_index) = first_conflict_index {
            let (output, in_progress) = callback.in_progress();
            (
                output,
                Some(Pending {
                    range: first_conflict_index..range.end.clone(),
                    priority,
                    parent: LockStatePtr::Write((&*state).into()),
                    in_progress,
                }),
            )
        } else {
            drop(priority);
            (callback.complete(), None)
        };

        // The about-to-be-successfully-borrowed region
        let borrow_range = if let Some(pending) = &pending {
            (pending.range.start != range.start).then(|| range.start..pending.range.start.clone())
        } else {
            Some(range)
        };

        // Claim `state`. Do this before accessing other fields of `state`
        // because external trait implementations may use `state` with other
        // instances of `RbTreeIntervalRwLockCore`.
        if state.parent.get().is_some() {
            panic_lock_state_in_use();
        }
        state.parent.set(Some(NonNull::from(&*this)));

        abort_on_unwind(|| {
            // The rest steps are indivisible - we must complete, rollback, or
            // abort the program.

            if let Some(borrow_range) = borrow_range {
                // Initialize the write borrow node
                let write_node: NonNull<_> = {
                    // Safety: Since `state` is still claimed by `self`, we have
                    // exclusive access to the contained `UnsafeCell`s.
                    let write_node = unsafe { &mut *state.write.get() };
                    debug_assert!(write_node.is_none());
                    write_node
                        .insert(rbtree::Node::new(borrow_range, ()))
                        .into()
                };

                // Insert the write borrow node
                // Safety: The tree is sound, this nodes is new, and there are no
                //         conflicting borrows of the existing nodes.
                unsafe { rbtree::Node::insert(WriteNodeCallback, &mut this.writes, write_node) };
            }

            // Remember the pending borrow
            if let Some(pending) = pending {
                // Initialize the pending borrow node
                let pending_node: NonNull<_> = {
                    // Safety: Since `state` is still claimed by `self`, we have
                    // exclusive access to the contained `UnsafeCell`s.
                    let pending_node = unsafe { &mut *state.pending.get() };
                    debug_assert!(pending_node.is_none());
                    pending_node.insert(rbtree::Node::new(pending, ())).into()
                };

                // Insert the pending borrow node
                // Safety: The tree is sound, this nodes is new, and there are no
                //         conflicting borrows of the existing nodes.
                unsafe {
                    rbtree::Node::insert(PendingNodeCallback, &mut this.pendings, pending_node)
                };
            }

            output
        })
    }

    fn try_lock_read(
        self: Pin<&mut Self>,
        range: Range<Self::Index>,
        state: Pin<&mut Self::TryReadLockState>,
    ) -> bool {
        // Safety: We won't violate the pinning invariant
        let this = unsafe { self.get_unchecked_mut() };

        let state = state.get();

        debug_assert!(range.start < range.end, "invalid range");

        // Check for conflicting borrows.
        if this.first_write_borrow_in_range(&range).is_some() {
            // Failure - write borrow conflict
            return false;
        }

        // Claim `state`. Do this before accessing other fields of `state`
        // because external trait implementations may use `state` with other
        // instances of `RbTreeIntervalRwLockCore`.
        if state.parent.get().is_some() {
            panic_lock_state_in_use();
        }
        state.parent.set(Some(NonNull::from(&*this)));

        abort_on_unwind(|| {
            // The rest steps are indivisible - we must complete, rollback, or
            // abort the program.

            // Initialize the read borrow nodes
            let read_nodes: [NonNull<_>; 2] = {
                // Safety: Since `state` is still claimed by `self`, we have
                // exclusive access to the contained `UnsafeCell`s.
                let read_nodes = unsafe { &mut *state.read.get() };
                debug_assert!(read_nodes.is_none());
                let [n0, n1] = read_nodes.insert([
                    ReadNode::new((range.start, 1), 1),
                    ReadNode::new((range.end, -1), -1),
                ]);
                [n0.into(), n1.into()]
            };

            // Insert the read borrow nodes
            // Safety: The tree is sound, these nodes are new, and there are no
            //         conflicting borrows of the existing nodes.
            unsafe {
                rbtree::Node::insert(ReadNodeCallback, &mut this.reads, read_nodes[0]);
                rbtree::Node::insert(ReadNodeCallback, &mut this.reads, read_nodes[1]);
            };

            true
        })
    }

    fn try_lock_write(
        self: Pin<&mut Self>,
        range: Range<Self::Index>,
        state: Pin<&mut Self::TryWriteLockState>,
    ) -> bool {
        // Safety: We won't violate the pinning invariant
        let this = unsafe { self.get_unchecked_mut() };

        let state = state.get();

        debug_assert!(range.start < range.end, "invalid range");

        // Check for conflicting borrows.
        if this.first_write_borrow_in_range(&range).is_some()
            || this.first_read_borrow_in_range(&range).is_some()
        {
            // Failure - borrow conflict
            return false;
        }

        // Claim `state`. Do this before accessing other fields of `state`
        // because external trait implementations may use `state` with other
        // instances of `RbTreeIntervalRwLockCore`.
        if state.parent.get().is_some() {
            panic_lock_state_in_use();
        }
        state.parent.set(Some(NonNull::from(&*this)));

        abort_on_unwind(|| {
            // The rest steps are indivisible - we must complete, rollback, or
            // abort the program.

            // Initialize the write borrow node
            let write_node: NonNull<_> = {
                // Safety: Since `state` is still claimed by `self`, we have
                // exclusive access to the contained `UnsafeCell`s.
                let write_node = unsafe { &mut *state.write.get() };
                debug_assert!(write_node.is_none());
                NonNull::from(write_node.insert(WriteNode::new(range, ())))
            };

            // Insert the write borrow node
            // Safety: The tree is sound, this nodes is new, and there are no
            //         conflicting borrows of the existing nodes.
            unsafe { rbtree::Node::insert(WriteNodeCallback, &mut this.writes, write_node) };

            true
        })
    }

    fn unlock_read<Callback: UnlockCallback<Self::InProgress>>(
        self: Pin<&mut Self>,
        state: Pin<&mut Self::ReadLockState>,
        callback: Callback,
    ) -> Option<Self::InProgress> {
        // Safety: We won't violate the pinning invariant
        let this = unsafe { self.get_unchecked_mut() };

        let state = state.get();

        // Check `state`'s ownership before touching its `UnsafeCell`s
        if state.parent.get() != Some(NonNull::from(&*this)) {
            panic_lock_state_incorrect_parent();
        }

        let removed_pending_node = abort_on_unwind(|| {
            // If `state` contains a pending borrow, cancel it by removing it
            // from `self.pendings`.
            //
            // Safety: Since `state` is still claimed by `self`, we have
            // exclusive access to the contained `UnsafeCell`s.
            let removed_pending_node =
                unsafe { this.cancel_borrow(NonNull::new(state.pending.get()).unwrap()) };

            // Unborrow the (already-) borrowed region
            unsafe { this.unlock_read_inner(NonNull::new(state.read.get()).unwrap(), callback) };

            removed_pending_node
        });

        // Unclaim `state`
        state.parent.set(None);

        removed_pending_node.map(|node| node.element.in_progress)
    }

    fn unlock_write<Callback: UnlockCallback<Self::InProgress>>(
        self: Pin<&mut Self>,
        state: Pin<&mut Self::WriteLockState>,
        callback: Callback,
    ) -> Option<Self::InProgress> {
        // Safety: We won't violate the pinning invariant
        let this = unsafe { self.get_unchecked_mut() };

        let state = state.get();

        // Check `state`'s ownership before touching its `UnsafeCell`s
        if state.parent.get() != Some(NonNull::from(&*this)) {
            panic_lock_state_incorrect_parent();
        }

        let removed_pending_node = abort_on_unwind(|| {
            // If `state` contains a pending borrow, cancel it by removing it
            // from `self.pendings`.
            //
            // Safety: Since `state` is still claimed by `self`, we have
            // exclusive access to the contained `UnsafeCell`s.
            let removed_pending_node =
                unsafe { this.cancel_borrow(NonNull::new(state.pending.get()).unwrap()) };

            // Unborrow the (already-) borrowed region
            unsafe { this.unlock_write_inner(NonNull::new(state.write.get()).unwrap(), callback) };

            removed_pending_node
        });

        // Unclaim `state`
        state.parent.set(None);

        removed_pending_node.map(|node| node.element.in_progress)
    }

    /// Release a non-blocking reader lock.
    fn unlock_try_read<Callback: UnlockCallback<Self::InProgress>>(
        self: Pin<&mut Self>,
        state: Pin<&mut Self::TryReadLockState>,
        callback: Callback,
    ) {
        // Safety: We won't violate the pinning invariant
        let this = unsafe { self.get_unchecked_mut() };

        let state = state.get();

        // Check `state`'s ownership before touching its `UnsafeCell`s
        if state.parent.get() != Some(NonNull::from(&*this)) {
            panic_lock_state_incorrect_parent();
        }

        abort_on_unwind(|| {
            // Unborrow the borrowed region
            unsafe { this.unlock_read_inner(NonNull::new(state.read.get()).unwrap(), callback) };
        });

        // Unclaim `state`
        state.parent.set(None);
    }

    /// Release a non-blocking writer lock.
    fn unlock_try_write<Callback: UnlockCallback<Self::InProgress>>(
        self: Pin<&mut Self>,
        state: Pin<&mut Self::TryWriteLockState>,
        callback: Callback,
    ) {
        // Safety: We won't violate the pinning invariant
        let this = unsafe { self.get_unchecked_mut() };

        let state = state.get();

        // Check `state`'s ownership before touching its `UnsafeCell`s
        if state.parent.get() != Some(NonNull::from(&*this)) {
            panic_lock_state_incorrect_parent();
        }

        abort_on_unwind(|| {
            // Unborrow the borrowed region
            unsafe { this.unlock_write_inner(NonNull::new(state.write.get()).unwrap(), callback) };
        });

        // Unclaim `state`
        state.parent.set(None);
    }

    fn inspect_read_mut<'a>(
        self: Pin<&'a mut Self>,
        state: Pin<&'a mut Self::ReadLockState>,
    ) -> LockState<&'a mut Self::InProgress> {
        // Safety: We won't violate the pinning invariant
        let this = unsafe { self.get_unchecked_mut() };

        let state = state.get();

        // Check `state`'s ownership before touching its `UnsafeCell`s
        if state.parent.get() != Some(NonNull::from(&*this)) {
            panic_lock_state_incorrect_parent();
        }

        // Safety: Since `state` is still claimed by `self`, we have
        // exclusive access to the contained `UnsafeCell`s.
        match unsafe { &mut *state.pending.get() } {
            Some(pending_node) => LockState::InProgress(&mut pending_node.element.in_progress),
            None => LockState::Complete,
        }
    }

    fn inspect_write_mut<'a>(
        self: Pin<&'a mut Self>,
        state: Pin<&'a mut Self::WriteLockState>,
    ) -> LockState<&'a mut Self::InProgress> {
        // Safety: We won't violate the pinning invariant
        let this = unsafe { self.get_unchecked_mut() };

        let state = state.get();

        // Check `state`'s ownership before touching its `UnsafeCell`s
        if state.parent.get() != Some(NonNull::from(&*this)) {
            panic_lock_state_incorrect_parent();
        }

        // Safety: Since `state` is still claimed by `self`, we have
        // exclusive access to the contained `UnsafeCell`s.
        match unsafe { &mut *state.pending.get() } {
            Some(pending_node) => LockState::InProgress(&mut pending_node.element.in_progress),
            None => LockState::Complete,
        }
    }
}

impl<Index, Priority, InProgress> RbTreeIntervalRwLockCore<Index, Priority, InProgress>
where
    Index: Clone + Ord,
    Priority: Ord,
{
    /// Find the lowest mutably borrowed index in the specified range.
    fn first_write_borrow_in_range(&self, range: &Range<Index>) -> Option<Index> {
        // Find the first writing borrow whose end address is > range.start.
        let write_node = unsafe {
            rbtree::Node::lower_bound(&self.writes, |e| {
                range.start.cmp(&e.end).then(Ordering::Greater)
            })
            .map(|node| node.as_ref())
        };

        // ... and whose start address if < range.end.
        write_node
            .filter(|node| node.element.start < range.end)
            .map(|node| (&node.element.start).max(&range.start).clone())
    }

    /// Find the lowest immutably borrowed index in the specified range.
    fn first_read_borrow_in_range(&self, range: &Range<Index>) -> Option<Index> {
        // Find the first reading borrow endpoint whose
        // address is > range.start.
        //
        // Safety: The tree is sound, and there are no conflicting borrows of
        // the existing nodes.
        let read_node = unsafe {
            rbtree::Node::lower_bound(&self.reads, |e| {
                range.start.cmp(&e.0).then(Ordering::Greater)
            })
            .map(|node| node.as_ref())
        };
        if let Some(read_node) = read_node {
            debug_assert!(read_node.element.0 > range.start);

            // The summary of read nodes in the range `..=range.start`, i.e.,
            // the number of read borrows that overlap with `range.start..
            // range.start + ε`.
            //
            // Safety: The tree is sound, there are no conflicting borrows of
            // the existing nodes, and `read_node` is included in the tree.
            let num_reads_at_start = unsafe {
                rbtree::Node::prefix_sum(ReadNodeCallback, &self.reads, Some(read_node.into()))
            };

            if num_reads_at_start > 0 {
                // There's at least one read borrow in `range.start..range.start
                // + ε`,
                return Some(range.start.clone());
            }

            // Is there a read borrow that starts in the range `range.start + ε
            // ..range.end`?
            let read_starts_in_middle = read_node.element.0 < range.end;

            // the first node in `range.start + ε..` must be a lower bound of
            // some read borrow range
            debug_assert_eq!(
                read_node.element.1, 1,
                "found a read borrow upper bound point without a matching lower \
                bound point"
            );

            if read_starts_in_middle {
                // A read borrow starts here
                return Some(read_node.element.0.clone());
            }
        } else {
            // There are no read borrows in the range `range.start + ε..`.
        }
        None
    }

    /// Cancel a pending borrow. This is an internal function that assumes the
    /// following:
    ///
    ///  - Called inside `abort_on_unwind`. (This method is not unwind safe).
    ///  - If `pending_node` is `Some(_)`, it contains a node that is included
    ///    in the tree `self.pendings`.
    ///  - Neither `*pending_node` nor any of `self.pendings`'s nodes are
    ///    currently borrowed.
    ///
    unsafe fn cancel_borrow(
        &mut self,
        mut pending_node: NonNull<Option<PendingNode<Index, Priority, InProgress>>>,
    ) -> Option<PendingNode<Index, Priority, InProgress>> {
        // If `pending_node` contains a node, remove it from `self.pendings`.
        // First, do the conversion `NonNull<Option<T>>` → `Option<NonNull<T>>`.
        // If the result is `None`, return early.
        //
        // Safety: `*pending_node` is safe to borrow
        let pending_node_ptr = unsafe { option_as_ptr(pending_node)? };

        // Safety: The tree is sound, this nodes is new, and there are no
        //         conflicting borrows of the existing nodes.
        unsafe { rbtree::Node::remove(PendingNodeCallback, &mut self.pendings, pending_node_ptr) };

        // Move the node out of `state.pending` for safer deletion
        //
        // Safety: There are no conflicting borrows of `*pending_node`
        unsafe { pending_node.as_mut() }.take()
    }

    /// Release a reader lock. This is an internal function that assumes the
    /// following:
    ///
    ///  - Called inside `abort_on_unwind`. (This method is not unwind safe).
    ///  - If `read_nodes` contains nodes, they are included in the tree
    ///    `self.reads`.
    ///  - The pending borrow corresponding to `read_nodes` is absent from
    ///    `self.pendings`.
    ///  - Neither `*read_nodes` nor any of `self`'s trees' nodes are
    ///    currently borrowed.
    ///
    unsafe fn unlock_read_inner<Callback: UnlockCallback<InProgress>>(
        &mut self,
        mut read_nodes_ptr: NonNull<Option<[ReadNode<Index>; 2]>>,
        mut callback: Callback,
    ) {
        // First, do the conversion `NonNull<Option<[T; 2]>>` →
        // `Option<[NonNull<T>; 2]>`. If the result is `None`, return early.
        //
        // Safety: `*read_nodes` is safe to borrow
        let Some(mut read_nodes) =( unsafe { option_array2_as_ptr(read_nodes_ptr) })
            else { return; };

        // The range we are about to unlock
        // Safety: It's still safe to borrow
        let [start, mut end] = unsafe { read_nodes.map(|n| n.as_ref().element.0.clone()) };

        // Look for pending borrows that can be resumed. Find the maximum node
        // that is < (end, -∞)
        //
        // Safety: The tree is sound, this nodes is new, and there are no
        //         conflicting borrows of the existing nodes.
        let mut maybe_pending_node = unsafe {
            if let Some(node) =
                rbtree::Node::lower_bound(&self.pendings, |e| end.cmp(&e.range.start))
            {
                rbtree::Node::predecessor(node)
            } else {
                self.pendings.map(|root| rbtree::Node::max(root))
            }
            .filter(|node| node.as_ref().element.range.start >= start)
        };

        // Is this borrow complete? Obviously it's initially `false` because it
        // is a *pending* borrow.
        let mut complete = false;

        while let Some(pending_node) = maybe_pending_node {
            // Find the next pending borrow before removing this one
            //
            // Safety: `pending_node` is in the tree and safe to borrow. Note
            // that `resume_borrow` only removes the provided node.
            let next_maybe_pending_node = unsafe {
                rbtree::Node::predecessor(pending_node)
                    .filter(|node| node.as_ref().element.range.start >= start)
            };

            // Unborrow `index..end` before resuming this pending borrow
            let index = unsafe { pending_node.as_ref().element.range.start.clone() };
            debug_assert!((&start..=&end).contains(&&index));

            if !complete {
                if index == end {
                    // Although we searched for pending nodes that are `< end`,
                    // since `end` is moved to the pending node's index on each
                    // iteration, we might come here if there are multiple pending
                    // nodes at the same index.
                } else if index == start {
                    // The unborrowing is complete.
                    unsafe {
                        rbtree::Node::remove(ReadNodeCallback, &mut self.reads, read_nodes[1]);
                        rbtree::Node::remove(ReadNodeCallback, &mut self.reads, read_nodes[0]);
                        *read_nodes_ptr.as_mut() = None;
                    }
                    complete = true;
                } else {
                    // The unborrowing is incomplete. Truncate the borrow to
                    // `start..index`.
                    unsafe {
                        rbtree::Node::remove(ReadNodeCallback, &mut self.reads, read_nodes[1]);
                        read_nodes[1].as_mut().element.0 = index.clone();
                        read_nodes[1].as_mut().summary = -1;
                        rbtree::Node::insert(ReadNodeCallback, &mut self.reads, read_nodes[1]);
                    }
                    end = index;
                }
            }

            // Resume this pending borrow.
            unsafe { self.resume_borrow(pending_node, &mut callback) };

            maybe_pending_node = next_maybe_pending_node;
        } // while

        if !complete {
            // We did not find a pending node whose index is exactly `start`.
            // Anyway, we completely processed pending nodes in the range,
            // so unborrow the remaining part (`start..end`) completely.
            unsafe {
                rbtree::Node::remove(ReadNodeCallback, &mut self.reads, read_nodes[0]);
                rbtree::Node::remove(ReadNodeCallback, &mut self.reads, read_nodes[1]);
                *read_nodes_ptr.as_mut() = None;
            }
        }
    }

    /// Release a writer lock. This is an internal function that assumes the
    /// following:
    ///
    ///  - Called inside `abort_on_unwind`. (This method is not unwind safe).
    ///  - If `write_node` contains a node, it is included in the tree
    ///    `self.writes`.
    ///  - The pending borrow corresponding to `write_node` is absent from
    ///    `self.pendings`.
    ///  - Neither `*write_node` nor any of `self`'s trees' nodes are
    ///    currently borrowed.
    ///
    unsafe fn unlock_write_inner<Callback: UnlockCallback<InProgress>>(
        &mut self,
        mut write_node_ptr: NonNull<Option<WriteNode<Index>>>,
        mut callback: Callback,
    ) {
        // First, do the conversion `NonNull<Option<T>>` → `Option<NonNull<T>>`.
        // If the result is `None`, return early.
        //
        // Safety: `*pending_node` is safe to borrow
        let Some(mut write_node) = (unsafe { option_as_ptr(write_node_ptr) })
            else { return; };

        let Range { start, mut end } = unsafe { write_node.as_ref().element.clone() };

        // Look for pending borrows that can be resumed. Find the maximum node
        // that is < (end, -∞)
        //
        // Safety: The tree is sound, this nodes is new, and there are no
        //         conflicting borrows of the existing nodes.
        let mut maybe_pending_node = unsafe {
            if let Some(node) =
                rbtree::Node::lower_bound(&self.pendings, |e| end.cmp(&e.range.start))
            {
                rbtree::Node::predecessor(node)
            } else {
                self.pendings.map(|root| rbtree::Node::max(root))
            }
            .filter(|node| node.as_ref().element.range.start >= start)
        };

        // Is this borrow complete? Obviously it's initially `false` because it
        // is a *pending* borrow.
        let mut complete = false;

        while let Some(pending_node) = maybe_pending_node {
            // Find the next pending borrow before removing this one
            //
            // Safety: `pending_node` is in the tree and safe to borrow. Note
            // that `resume_borrow` only removes the provided node.
            let next_maybe_pending_node = unsafe {
                rbtree::Node::predecessor(pending_node)
                    .filter(|node| node.as_ref().element.range.start >= start)
            };

            // Unborrow `index..end` before resuming this pending borrow
            let index = unsafe { pending_node.as_ref().element.range.start.clone() };
            debug_assert!((&start..=&end).contains(&&index));

            if !complete {
                if index == start {
                    // The unborrowing is complete.
                    unsafe {
                        rbtree::Node::remove(WriteNodeCallback, &mut self.writes, write_node)
                    };
                    unsafe { *write_node_ptr.as_mut() = None };
                    complete = true;
                } else {
                    // The unborrowing is incomplete. Truncate the borrow to
                    // `start..index`.
                    //
                    // Although we searched for pending nodes that are `< end`,
                    // since `end` is moved to the pending node's index on each
                    // iteration, we might observe `index == end` here if there are
                    // multiple pending nodes at the same index.
                    unsafe { write_node.as_mut().element.end = index.clone() };
                    end = index;
                }
            }

            // Resume this pending borrow.
            unsafe { self.resume_borrow(pending_node, &mut callback) };

            maybe_pending_node = next_maybe_pending_node;
        } // while

        if !complete {
            // We did not find a pending node whose index is exactly `start`.
            // Anyway, we completely processed pending nodes in the range,
            // so unborrow the remaining part (`start..end`) completely.
            unsafe { rbtree::Node::remove(WriteNodeCallback, &mut self.writes, write_node) };
            unsafe { *write_node_ptr.as_mut() = None };
        }
    }

    /// Attempt to resume and potentially complete a pending borrow.
    ///
    /// This is an internal function that assumes the following:
    ///
    ///  - Called inside `abort_on_unwind`. (This method is not unwind safe).
    ///  - `pending_node` is included in the tree `self.pendings`.
    ///  - None of `self`'s trees' nodes are currently borrowed.
    ///
    /// This method may remove `pending_node` but does not remove or modify any
    /// other pending borrows.
    unsafe fn resume_borrow(
        &mut self,
        mut pending_node_ptr: NonNull<PendingNode<Index, Priority, InProgress>>,
        callback: &mut impl UnlockCallback<InProgress>,
    ) {
        let pending: &Pending<_, _, _> = unsafe { &pending_node_ptr.as_ref().element };
        let parent = pending.parent;

        // The borrow resumes here
        let range = pending.range.clone();

        // Check for conflicting borrows.
        let first_conflict_write_index = self.first_write_borrow_in_range(&range);
        let first_conflict_read_index = if let LockStatePtr::Write(_) = parent {
            self.first_read_borrow_in_range(&range)
        } else {
            None // read borrows can overlap
        };
        let first_conflict_index = match (first_conflict_write_index, first_conflict_read_index) {
            (None, None) => None,
            (one @ Some(_), None) | (None, one @ Some(_)) => one,
            (Some(i0), Some(i1)) => Some(i0.min(i1)),
        };

        if first_conflict_index.as_ref() == Some(&range.start) {
            // No progress
            return;
        }

        // Move `pending_node_ptr` to the new conflict position
        // (Warning: This invalidates `pending` according to Stacked Borrows)
        unsafe { rbtree::Node::remove(PendingNodeCallback, &mut self.pendings, pending_node_ptr) };
        if let Some(first_conflict_index) = first_conflict_index.clone() {
            // Reinsert `pending_node_ptr` at the new position
            unsafe { pending_node_ptr.as_mut() }.element.range.start = first_conflict_index;

            unsafe {
                rbtree::Node::insert(PendingNodeCallback, &mut self.pendings, pending_node_ptr);
            }
        } else {
            // This borrow is complete. Move out `in_progress` from `parent`
            // and assign `None` to `(Read|Write)LockState::pending`.
            // Safety: `parent`'s target still exists and is safe to borrow
            let pending_cell: *mut Option<PendingNode<_, _, _>> = match parent {
                LockStatePtr::Write(state) => unsafe { state.as_ref() }.pending.get(),
                LockStatePtr::Read(state) => unsafe { state.as_ref() }.pending.get(),
            };

            debug_assert_eq!(Some(pending_node_ptr), unsafe {
                option_as_ptr(NonNull::new(pending_cell).unwrap())
            });

            // Notify the client
            // (Warning: This `take` invalidates `pending_node_ptr`.)
            let in_progress = unsafe { (*pending_cell).take() }
                .unwrap()
                .element
                .in_progress;
            callback.complete(in_progress);
        }

        // Expand the existing borrow
        let new_end = first_conflict_index.unwrap_or(range.end);
        match parent {
            LockStatePtr::Write(state) => {
                // Safety: `state` is still claimed
                let state = unsafe { state.as_ref() };

                // ... it's still claimed, right?
                debug_assert_eq!(state.parent.get(), Some(NonNull::from(&*self)));

                // Safety: `state` is still claimed
                let write_node_cell = unsafe { &mut *state.write.get() };
                if let Some(write_node) = write_node_cell.as_mut() {
                    // Yes, there's indeed an existing borrow
                    write_node.element.end = new_end;
                } else {
                    // Actually, the previous borrowed region was empty. Create
                    // a `WriteNode` now.
                    let write_node =
                        write_node_cell.insert(WriteNode::new(range.start..new_end, ()));
                    unsafe {
                        rbtree::Node::insert(
                            WriteNodeCallback,
                            &mut self.writes,
                            NonNull::from(write_node),
                        );
                    }
                }
            }
            LockStatePtr::Read(state) => {
                // Safety: `state` is still claimed
                let state = unsafe { state.as_ref() };

                // ... it's still claimed, right?
                debug_assert_eq!(state.parent.get(), Some(NonNull::from(&*self)));

                // Safety: `state` is still claimed
                let read_node_cells = unsafe { &mut *state.read.get() };
                if let Some([_, read_node1]) = read_node_cells.as_mut() {
                    // Yes, there's indeed an existing borrow; reinsert the second node
                    unsafe {
                        rbtree::Node::remove(
                            ReadNodeCallback,
                            &mut self.reads,
                            NonNull::from(&mut *read_node1),
                        );
                    }
                    read_node1.element.0 = new_end;
                    read_node1.summary = -1;
                    unsafe {
                        rbtree::Node::insert(
                            ReadNodeCallback,
                            &mut self.reads,
                            NonNull::from(&mut *read_node1),
                        );
                    }
                } else {
                    // Actually, the previous borrowed region was empty. Create
                    // `ReadNode`s now.
                    let read_nodes = read_node_cells.insert([
                        ReadNode::new((range.start, 1), 1),
                        ReadNode::new((new_end, -1), -1),
                    ]);
                    unsafe {
                        rbtree::Node::insert(
                            ReadNodeCallback,
                            &mut self.reads,
                            NonNull::from(&mut read_nodes[0]),
                        );
                        rbtree::Node::insert(
                            ReadNodeCallback,
                            &mut self.reads,
                            NonNull::from(&mut read_nodes[1]),
                        );
                    }
                }
            }
        }
    }
}

/// Panic because of [`WriteLockState::parent`] being still set.
#[cold]
#[track_caller]
fn panic_lock_state_in_use() -> ! {
    panic!("attempted to occupy a `*LockState` that is still in use")
}

/// Panic because of [`WriteLockState::parent`] being incorrect.
#[cold]
#[track_caller]
fn panic_lock_state_incorrect_parent() -> ! {
    panic!("attempted to operate on a lock with an incorrect origin")
}

/// Convert `NonNull<Option<T>>` to `Option<NonNull<T>>`.
///
/// # Safety
///
/// This function temporarily borrows the target to check its variant.
/// (In terms of the Stacked Borrows model, this is considered a *use* of `p`,
/// meaning there must be SharedRW in the stack for the location, and that this
/// function will temporarily put a Unique on top.)
///
/// That this produces SharedRW means the target must be included in
/// `UnsafeCell`. (There are other ways in which this can be safe, though.)
#[inline]
unsafe fn option_as_ptr<T>(mut p: NonNull<Option<T>>) -> Option<NonNull<T>> {
    Some(unsafe { p.as_mut() }.as_mut()?.into())
}

/// Convert `NonNull<Option<[T; 2]>>` to `Option<[NonNull<T>; 2]>`.
///
/// # Safety
///
/// See [`option_as_ptr`].
#[inline]
unsafe fn option_array2_as_ptr<T>(mut p: NonNull<Option<[T; 2]>>) -> Option<[NonNull<T>; 2]> {
    Some(
        unsafe { p.as_mut() }
            .as_mut()?
            .each_mut()
            .map(NonNull::from),
    )
}

// Destructors
// -----------------------------------------------------------------------------

impl<Index, Priority, InProgress> Drop for RbTreeIntervalRwLockCore<Index, Priority, InProgress> {
    #[inline]
    #[track_caller]
    fn drop(&mut self) {
        if self.reads.is_some() || self.writes.is_some() || self.pendings.is_some() {
            panic_drop_when_still_locked();
        }
    }
}

/// Panic because of [`RbTreeIntervalRwLockCore`] still being locked.
#[cold]
#[track_caller]
fn panic_drop_when_still_locked() -> ! {
    panic!("attempted to drop an `RbTreeIntervalRwLockCore` while it's locked")
}

impl<Index, Priority, InProgress> EarlyDrop for ReadLockStateInner<Index, Priority, InProgress> {
    #[inline]
    #[track_caller]
    unsafe fn early_drop(self: Pin<&Self>) {
        if self.parent.get().is_some() {
            panic_drop_when_still_linked();
        }
    }
}

impl<Index, Priority, InProgress> EarlyDrop for WriteLockStateInner<Index, Priority, InProgress> {
    #[inline]
    #[track_caller]
    unsafe fn early_drop(self: Pin<&Self>) {
        if self.parent.get().is_some() {
            panic_drop_when_still_linked();
        }
    }
}

impl<Index, Priority, InProgress> EarlyDrop for TryReadLockStateInner<Index, Priority, InProgress> {
    #[inline]
    #[track_caller]
    unsafe fn early_drop(self: Pin<&Self>) {
        if self.parent.get().is_some() {
            panic_drop_when_still_linked();
        }
    }
}

impl<Index, Priority, InProgress> EarlyDrop
    for TryWriteLockStateInner<Index, Priority, InProgress>
{
    #[inline]
    #[track_caller]
    unsafe fn early_drop(self: Pin<&Self>) {
        if self.parent.get().is_some() {
            panic_drop_when_still_linked();
        }
    }
}

/// Panic because of [`WriteLockState::parent`] being still set.
#[cold]
#[track_caller]
fn panic_drop_when_still_linked() -> ! {
    panic!("attempted to early-drop a `*LockState` while it's holding a lock")
}