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
//
// Copyright 2020 yvt, all rights reserved.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
//! This crate provides a cell type, [`TokenLock`], which can only be borrowed
//! by presenting the correct unforgeable token, thus decoupling permissions
//! from data.
//!
//! # Examples
//!
//! ## Basics
//!
//! ```
//! # use tokenlock::*;
//! // Create a token
//! let mut token = IcToken::new();
//!
//! // Create a keyhole by `token.id()` and use this to create a `TokenLock`.
//! let lock: IcTokenLock<i32> = TokenLock::new(token.id(), 1);
//! assert_eq!(*lock.read(&token), 1);
//!
//! // Unlock the `TokenLock` using the matching token
//! let mut guard = lock.write(&mut token);
//! assert_eq!(*guard, 1);
//! *guard = 2;
//! ```
//!
//! Only the matching [`Token`]'s owner can access its contents. `Token`
//! cannot be cloned:
//!
//! ```
//! # use tokenlock::*;
//! # use std::sync::Arc;
//! # let mut token = ArcToken::new();
//! let lock = Arc::new(TokenLock::new(token.id(), 1));
//!
//! let lock_1 = Arc::clone(&lock);
//! std::thread::spawn(move || {
//! let lock_1 = lock_1;
//! let mut token_1 = token;
//!
//! // I have `Token` so I can get a mutable reference to the contents
//! lock_1.write(&mut token_1);
//! });
//!
//! // can't access the contents; I no longer have `Token`
//! // lock.write(&mut token);
//! ```
//!
//! ## Zero-sized tokens
//!
//! Some token types, such as [`BrandedToken`] and [`SingletonToken`], rely
//! solely on type safety and compile-time checks to guarantee uniqueness and
//! don't use runtime data for identification. As such, the keyholes for such
//! tokens can be default-constructed. [`TokenLock::wrap`] lets you construct a
//! `TokenLock` with a default-constructed keyhole.
//! On the other hand, creating such tokens usually has specific requirements.
//! See the following example that uses [`with_branded_token`]:
//!
//! ```
//! # use tokenlock::*;
//! with_branded_token(|mut token| {
//! // The lifetime of `token: BrandedToken<'brand>` is bound to
//! // this closure.
//!
//! // lock: BrandedTokenLock<'brand, i32>
//! let lock = BrandedTokenLock::wrap(42);
//!
//! lock.set(&mut token, 56);
//! assert_eq!(lock.get(&token), 56);
//! });
//! ```
//!
//! ## Lifetimes
//!
//! The lifetime of the returned reference is limited by both of the `TokenLock`
//! and `Token`.
//!
//! ```compile_fail
//! # use tokenlock::*;
//! # use std::mem::drop;
//! let mut token = IcToken::new();
//! let lock = TokenLock::new(token.id(), 1);
//! let guard = lock.write(&mut token);
//! drop(lock); // compile error: `guard` cannot outlive `TokenLock`
//! drop(guard);
//! ```
//!
//! ```compile_fail
//! # use tokenlock::*;
//! # use std::mem::drop;
//! # let mut token = ArcToken::new();
//! # let lock = TokenLock::new(token.id(), 1);
//! # let guard = lock.write(&mut token);
//! drop(token); // compile error: `guard` cannot outlive `Token`
//! drop(guard);
//! ```
//!
//! It also prevents from forming a reference to the contained value when
//! there already is a mutable reference to it:
//!
//! ```compile_fail
//! # use tokenlock::*;
//! # let mut token = ArcToken::new();
//! # let lock = TokenLock::new(token.id(), 1);
//! let write_guard = lock.write(&mut token);
//! let read_guard = lock.read(&token); // compile error
//! drop(write_guard);
//! ```
//!
//! While allowing multiple immutable references:
//!
//! ```
//! # use tokenlock::*;
//! # let mut token = ArcToken::new();
//! # let lock = TokenLock::new(token.id(), 1);
//! let read_guard1 = lock.read(&token);
//! let read_guard2 = lock.read(&token);
//! ```
//!
//! ## Use case: Linked lists
//!
//! An operating system kernel often needs to store the global state in a global
//! variable. Linked lists are a common data structure used in a kernel, but
//! Rust's ownership does not allow forming `'static` references into values
//! protected by a mutex. Common work-arounds, such as smart pointers and index
//! references, take a heavy toll on a small microcontroller with a single-issue
//! in-order pipeline and no hardware multiplier.
//!
//! ```rust,ignore
//! struct Process {
//! prev: Option<& /* what lifetime? */ Process>,
//! next: Option<& /* what lifetime? */ Process>,
//! state: u8,
//! /* ... */
//! }
//! struct SystemState {
//! first_process: Option<& /* what lifetime? */ Process>,
//! process_pool: [Process; 64],
//! }
//! static STATE: Mutex<SystemState> = todo!();
//! ```
//!
//! `tokenlock` makes the `'static` reference approach possible by detaching the
//! lock granularity from the protected data's granularity.
//!
//! ```rust
//! use tokenlock::*;
//! use std::cell::Cell;
//! struct Tag;
//! impl_singleton_token_factory!(Tag);
//!
//! type KLock<T> = UnsyncSingletonTokenLock<T, Tag>;
//! type KLockToken = UnsyncSingletonToken<Tag>;
//! type KLockTokenId = SingletonTokenId<Tag>;
//!
//! struct Process {
//! prev: KLock<Option<&'static Process>>,
//! next: KLock<Option<&'static Process>>,
//! state: KLock<u8>,
//! /* ... */
//! }
//! struct SystemState {
//! first_process: KLock<Option<&'static Process>>,
//! process_pool: [Process; 1],
//! }
//! static STATE: SystemState = SystemState {
//! first_process: KLock::new(KLockTokenId::new(), None),
//! process_pool: [
//! Process {
//! prev: KLock::new(KLockTokenId::new(), None),
//! next: KLock::new(KLockTokenId::new(), None),
//! state: KLock::new(KLockTokenId::new(), 0),
//! }
//! ],
//! };
//! ```
//!
//! # Cell types
//!
//! The `TokenLock` type family is comprised of the following types:
//!
//! | | `Sync` tokens | [`!Sync` tokens]² |
//! | ---------- | ---------------- | ---------------------- |
//! | Unpinned | [`TokenLock`] | [`UnsyncTokenLock`] |
//! | Pinned¹ | [`PinTokenLock`] | [`UnsyncPinTokenLock`] |
//!
//! <sub>¹That is, these types respect `T` being `!Unpin` and prevent the
//! exposure of `&mut T` through `&Self` or `Pin<&mut Self>`.</sub>
//!
//! <sub>²`Unsync*TokenLock` require that tokens are `!Sync` (not sharable
//! across threads). In exchange, such cells can be `Sync` even if the contained
//! data is not `Sync`, just like [`std::sync::Mutex`].</sub>
//!
//! [`!Sync` tokens]: #sync-tokens
//!
//! # Token types
//!
//! This crate provides the following types implementing [`Token`].
//!
//! (**`std` only**) [`IcToken`] uses a global counter (with thread-local pools)
//! to generate unique 128-bit tokens.
//!
//! (**`alloc` only**) [`RcToken`] and [`ArcToken`] ensure their uniqueness by
//! reference-counted memory allocations.
//!
//! [`SingletonToken`]`<Tag>` is a singleton token, meaning only one of such
//! instance can exist at any point of time during the program's execution.
//! [`impl_singleton_token_factory!`] instantiates a `static` flag to indicate
//! `SingletonToken`'s liveness and allows you to construct it safely by
//! [`SingletonToken::new`]. Alternatively, you can use
//! [`SingletonToken::new_unchecked`], but this is unsafe if misused.
//!
//! [`BrandedToken`]`<'brand>` implements an extension of [`GhostCell`][2]. It's
//! created by [`with_branded_token`] or [`with_branded_token_async`], which
//! makes the created token available only within the provided closure or the
//! created `Future`. This token incurs no runtime cost.
//!
//! | Token ID (keyhole) | Token (key) |
//! | ------------------------------ | --------------------------------- |
//! | [`IcTokenId`] | [`IcToken`] + `u128` comparison |
//! | [`RcTokenId`] | [`RcToken`] + `usize` comparison |
//! | [`ArcTokenId`] | [`ArcToken`] + `usize` comparison |
//! | [`SingletonTokenId`]`<Tag>` | [`SingletonToken`]`<Tag>` |
//! | [`BrandedTokenId`]`<'brand>` | [`BrandedToken`]`<'brand>` |
//!
//! # `!Sync` tokens
//!
//! [`UnsyncTokenLock`] is similar to `TokenLock` but designed for non-`Sync`
//! tokens and has relaxed requirements on the inner type for thread safety.
//! Specifically, it can be `Sync` even if the inner type is not `Sync`. This
//! allows for storing non-`Sync` cells such as [`Cell`] and reading and
//! writing them using shared references (all of which must be on the same
//! thread because the token is `!Sync`) to the token.
//!
//! [`Cell`]: core::cell::Cell
//!
//! ```
//! # use tokenlock::*;
//! # use std::sync::Arc;
//! use std::cell::Cell;
//! let mut token = ArcToken::new();
//! let lock = Arc::new(UnsyncTokenLock::new(token.id(), Cell::new(1)));
//!
//! let lock_1 = Arc::clone(&lock);
//! std::thread::spawn(move || {
//! // "Lock" the token to the current thread using
//! // `ArcToken::borrow_as_unsync`
//! let token = token.borrow_as_unsync();
//!
//! // Shared references can alias
//! let (token_1, token_2) = (&token, &token);
//!
//! lock_1.read(token_1).set(2);
//! lock_1.read(token_2).set(4);
//! });
//! ```
//!
//! `!Sync` tokens, of course, cannot be shared between threads:
//!
//! ```compile_fail
//! # use tokenlock::*;
//! let mut token = ArcToken::new();
//! let token = token.borrow_as_unsync();
//! let (token_1, token_2) = (&token, &token);
//!
//! // compile error: `&ArcTokenUnsyncRef` is not `Send` because
//! // `ArcTokenUnsyncRef` is not `Sync`
//! std::thread::spawn(move || {
//! let _ = token_2;
//! });
//!
//! let _ = token_1;
//! ```
//!
//! # Cargo Features
//!
//! - **`std`** enables the items that depend on `std` or `alloc`.
//! - **`alloc`** enables the items that depend on `alloc`.
//! - **`unstable`** enables experimental items that are not subject to the
//! semver guarantees.
//! - **`const-default_1`** enables the implementation of `ConstDefault` from
//! [`const-default ^1`][].
//!
//! [`const-default ^1`]: https://crates.io/crates/const-default/1.0.0
//!
//! # Related Work
//!
//! - [`ghost-cell`][1] is the official implementation of [`GhostCell`][2] and
//! has been formally proven to be sound. It provides an equivalent of
//! [`BrandedTokenLock`] with a simpler, more focused interface.
//!
//! - `SCell` from [`singleton-cell`][3] is a more generalized version of
//! `GhostCell` and accepts any singleton token types, and thus it's more
//! closer to our `TokenLock`. It provides equivalents of our
//! [`BrandedToken`] and [`SingletonToken`] out-of-box. It trades away
//! non-ZST token types for an advantage: `SCell<Key, [T]>` can be transposed
//! to `[SCell<Key, T>]`. It uses the [`singleton-trait`][5] crate (which did
//! not exist when `tokenlock::SingletonToken` was added) to mark singleton
//! token types.
//!
//! - [`qcell`][4] provides multiple cell types with different check
//! mechanisms. `QCell` uses a 32-bit integer as a token identifier, `TCell`
//! and `TLCell` use a marker type, and `LCell` uses lifetime branding.
//!
//! - `TokenCell` from [`token-cell`][6] is similar to our [`SingletonToken`],
//! but like `SCell` (but differing slightly), it supports transposition
//! from `&TokenCell<Token, &[T]>` to `&[TokenCell<Token, T>]`. It uses a
//! custom trait to mark singleton token types.
//!
//! [1]: https://crates.io/crates/ghost-cell
//! [2]: http://plv.mpi-sws.org/rustbelt/ghostcell/
//! [3]: https://crates.io/crates/singleton-cell
//! [4]: https://crates.io/crates/qcell
//! [5]: https://crates.io/crates/singleton-trait
//! [6]: https://crates.io/crates/token-cell
pub use core;
extern crate alloc;
extern crate std;
use UnsafeCell;
use ;
// Modules
// ----------------------------------------------------------------------------
pub use *;
pub use *;
pub use *;
pub use ;
// Traits
// ----------------------------------------------------------------------------
/// Trait for an unforgeable token used to access the contents of a
/// [`TokenLock`]`<_, Keyhole>`.
///
/// A token can "open" a `TokenLock` only if the token matches the metaphorical
/// keyhole.
///
/// # Safety
///
/// If safe code could obtain two instances of `T: Token<_>` `x` and `y` and an
/// instance of a `TokenLock`-like type `lock` such that `x` and `y` can be
/// mutably borrowed at the same time, and `x.eq_id(lock.keyhole()) &&
/// y.eq_id(lock.keyhole())`, it can invoke an undefined behavior by creating
/// two mutable borrows of the same place.
pub unsafe
/// Asserts the types implementing this trait are `!`[`Sync`]. (Negative bounds
/// are not supported by the compiler at the point of writing, so this trait
/// must be implemented manually.)
///
/// # Safety
///
/// `Self` must really be `!Sync`.
pub unsafe
// The `TokenLock` type family
// ----------------------------------------------------------------------------
/// A mutual exclusive primitive that can be accessed using a [`Token`]`<Keyhole>`
/// with a very low overhead.
///
/// See the [module-level documentation] for more details.
///
/// [module-level documentation]: index.html
// Safety: `TokenLock` does not allow more multi-thread uses of `T` than a bare
// `T` does, so it can just inherit `T`'s `Send`-ness and `Sync`-ness
unsafe
unsafe
/// Like [`TokenLock`], but the usable [`Token`]s are constrained by [`Unsync`].
/// This subtle difference allows it to be `Sync` even if `T` is not.
///
/// See the [module-level documentation] for more details.
///
/// [module-level documentation]: index.html#sync-tokens
// Safety: In addition to what `TokenLock`'s guarantees, Non-`Sync`-ness of
// the `Token` prohibits `UnsyncTokenLock` from being simultaneously
// read by multiple threads. `T: Send` is still required because `T`
// can be moved out from any `&UnsyncTokenLock`.
unsafe
unsafe
/// A [pinned] mutual exclusive primitive that can be accessed using a
/// [`Token`]`<Keyhole>` with a very low overhead.
///
/// Unlike the unpinned variant [`TokenLock`], `PinTokenLock` does not expose
/// `&mut T` unless the receiver type is `&mut Self`. This way, the pinning
/// invariants are maintained.
///
/// See the [module-level documentation] for more details.
///
/// [pinned]: core::pin
/// [module-level documentation]: index.html
///
/// # Examples
///
/// ```rust
/// use std::{pin::Pin, sync::Arc};
/// use tokenlock::{ArcToken, PinTokenLock};
/// let mut token = ArcToken::new();
/// let mut value = 0;
/// let future = Arc::pin(PinTokenLock::new(token.id(), async { value = 42; }));
///
/// // Use `token` to get `Pin<&mut impl Future>`
/// futures::executor::block_on(Pin::as_ref(&future).write_pin(&mut token));
/// drop(future);
///
/// assert_eq!(value, 42);
/// ```
// Safety: See `TokenLock`.
unsafe
unsafe
/// Like [`PinTokenLock`], but the usable [`Token`]s are constrained by
/// [`Unsync`]. This subtle difference allows it to be `Sync` even if `T` is
/// not.
///
/// Unlike the unpinned variant [`UnsyncTokenLock`], `UnsyncPinTokenLock` does
/// not expose `&mut T` unless the receiver type is `&mut Self`. This way, the
/// [pinning] invariants are maintained.
///
/// See the [module-level documentation] for more details.
///
/// [pinning]: core::pin
/// [module-level documentation]: index.html#sync-tokens
// Safety: See `UnsyncTokenLock`.
unsafe
unsafe
// Error type
// ----------------------------------------------------------------------------
/// Error type returned when a key ([`Token`]) doesn't fit in a keyhole
/// ([`TokenLock::keyhole`]).
;
// Implementation
// ----------------------------------------------------------------------------
/// Used inside [`impl_common!`].
/// Used inside [`impl_common!`].
// `UnsyncTokenLock` has an extra `Unsync` bound on the token when a shared
// reference to a token is given. `Unsync` is not necessary if it's a mutable
// reference because a mutable reference prohibits aliasing.
impl_common!;
impl_common!;
impl_common!;
impl_common!;
// Tests
// ----------------------------------------------------------------------------