Skip to content

anglesideangle/bcsc

Repository files navigation

I will make no_std no_alloc stack allocated async work.

What does bcsc stand for?

Borrow checked structured concurrency

Normal rust async is borrow checked, but this uses lifetimes (as opposed to spamming ref counting) to enforce structured concurrency in a more elegant, performant, and nostd compatible manner.

What is wrong with you asa??

I set out to build the best robotics framework in every aspect. I will do that. It's unfortunate that rust doesn't currently make it easy, but I will gladly fix the problems in rust first.

Ok(())

multi-task vs intra-task concurrency

multi-task concurrency extends better to parallelism

  • in my case, you can also implement thread affinity for hardware

FuturesUnordered requires Arc (std)

scoped/non-'static futures

why this (nostd structured concurrency) is unsound/impossible to do safetly

problem: i really want this feature, and am fine with unsound code

sound options: async nursery - still 'static and not ergonomic api, wraps FuturesUnordered async-scoped - wraps FuturesUnordered, stores in executor better? https://github.com/maroider/async_scoped_task/blob/master/src/lib.rs unsafe async_scoped::scope_and_collect is perfect (unsafe) but uses heap alloc

moro - wraps FuturesUnordered, relies on single threaded for invariants task scope - scoped tasks but no drop guarantees unless blocking relevant rfc for Forget rust-lang/rfcs#3782 !!

outdated tracking issue rust-lang/compiler-team#727

other similar proposal for Leak https://zetanumbers.github.io/book/myosotis.html

alternate way of fixing drop issue Matthias247/rfcs#1

other relevant work/rfc tracking pr rust-lang/rfcs#2958

why drop? https://without.boats/blog/wakers-i/ https://without.boats/blog/wakers-ii/

wakers are references to a Task/whatever the executor uses to wrap and enqueue Futures

safe api: Wake where Task: Wake, wakers are essentially Weak<Task> so they can wake the task while it exists (Weak won't get upgraded once the task goes out of scope, so this is safe) why can't there be a safe api with Arc? &dyn Wake doesn't work because concurrency (think: joins) involves multiple wakers for the same task (unless everything is spawned instead of joined!??) wakers must be cloned, but clone -> Self (Self vtable is unknown through &dyn Wake pointer) ok that explains *const (), but why remove the lifetimes? not sure?? it seems like it wouldn't make a difference, most futures are static anyway for afformentioned soundness reasons

  • what if wakers are an intrusive linked list that the task traverses to cancel when dropped? (requires !Forget)/leak safety
  • what if wakers were &dyn Task with no cloning, and all intra-task concurrency was moved to join handles for scoped spawns
    • also note that stuff like join!() doesn't actually execute the specific future, the outermost task gets woken and then executes all subtasks, which return Pending if they aren't ready
    • intra-task concurrency is evil??
    • still have to wait on concurrent join handles? -> join handles are part of nursery/scope, which stores its own waker-per-task -> subwakers/scope's wakers get called -> scope queues relevant tasks -> call higher level task waker there is no way to make existing RawWaker/AtomicWaker api safe because it cannot be "invalidated"?

What is this project?

New async primitives that disallow intra-task concurrency, clone of futures and futures-concurrency for the new primitives.

channels: need lifetimed receievers, probably needs Forget (arc-like channels would be unsafe)

Chapter 2:

I am actually addicted to rewriting async rust at this point I need a new hobby

why ch 1 failed:

discussed in waker allocation problem from earlier: Futures are self referential

  • i somehow did not realize this

If you have Task<'scope>, which contains Future<'scope>' and Waker<'scope>', where Future::poll(wake: &'scope dyn Wake), there needs to be &'scope references to owned wakers inside Task being passed to owned futures (also in Task). This is useful because it prevents reactors (anything that registers a &'scope dyn Wake) from outliving the future/task containing them, preventing dangling pointers without Arc/alloc. However, it also is self referential:

  • Task<'scope> means your task must live <= 'scope
  • Task { FutureImpl { Reactor { &'scope dyn Wake} } } (the task must store a reactor at some point) means the task must live for >= 'scope

This is fine, actually! Rust does allow self referential structs*. The catch is that, as you may have guessed, the task must live for exactly 'scope. Since it has an immutable reference to parts of itself, and immutable references are disallowed from moving while they are held, the task may not move after the self-reference has been established.

This usually makes self referential structs useless, but... not necessarily in this case

// suppose rustc generated impls for ScopedFuture
async fn example() {
  let f1 = my_future(1);
  let f2 = my_future(2);
  join!(f1, f2) // all async combinators would need to be macros that create self reference in-place
  // actually this would also work because it isn't being polled
}
// suppose rustc generated impls for ScopedFuture
async fn example() {
  let f1 = my_future(1);
  let f2 = my_future(2);
  join!(f1, f2).await; // no futures passed around, used in place!
  // compiles fine!!
}

Cool properties:

  • no Pin, since the compiler guarantees the future will not move due to self reference for entire lifetime of 'scope
  • no unsafe code(?) - no pins

Tradeoffs:

  • need tons of interior mutability, since immutable/can't move means poll cannot take &mut self, cells everywhere
    • nvm lots of unsafe code, but nothing really unsound
  • potentially bad error messages? stuff like join! will have to output code that manually sets up the waker self ref

TODO:

  • ScopedFuture
  • static combinators (Join Race etc), see futures-concurrency
  • #[async_scoped] or some compiler ScopedFuture generation
  • doubly linked list waker registration
  • repeating static time reactors - eg. make event poll every N seconds
  • io uring reactors
  • growable combinators (eg. FutureGroup, FuturesUnordered) (require alloc?)
  • unsound (needs Forget) multithreading
  • "rethinking async rust"
  • all of the above for streams
  • rfc?

Chapter 3

man this really sucks

i need better things to do

issues from ch 2

  • works great[*]
  • *: incompatible with event loop - something still has to poll
    • we're back to doubly linked list of waker registration in event loop
    • this requires Forget
  • ScopedFuture - Future interop sucks

structured concurrency with regular combinators:

  • scope holds tasks
  • scope cancels tasks when dropped
  • tasks are ran by central executor

pure structured concurrency with borrow checker:

  • high level block_on(), any task wake wakes every level up
  • tasks have events

how do the tasks register to an event loop? they don't fuck

struct Task<F: Future> {
  inner: F,
  prev: *const Task,
  next: *const Task,
  waker: Waker,
}

&waker is passed into all sub-tasks, calling wake clone etc panics!!! this is pretty jank

also waker doesn't have a lifetime so a safe code could easily register to external source that outlives the task this is unsound

we need

struct WakerRegister {
  prev: *const WakerRegister,
  next: *const WakerRegister,
}

Borrow Checked Structured Concurrency

An async system needs to have the following components:

  • event loop : polls events and schedules tasks when they are ready
  • tasks : state machines that progress and can await events from the event loop
  • task combinators : tasks that compose other tasks into useful logic structures

Tasks will register themselves to events on the event loop, which will need to outlive tasks and register pointers to wake the tasks, so that they can again be polled. This is incompatible with the borrow checker because the task pointers (wakers) are being stored inside an event loop with a lifetime that may exceed the tasks'.

Waker is effectively a *const dyn Wake. It is implemented using a custom RawWakerVTable rather than a dyn ptr to allow for Wake::wake(self), which is not object safe. This method is necessary for runtime implementations that rely on the wakers to be effectively Arc<Task>, since wake(self) consumes self and decrements the reference count.

There are two types of sound async runtimes that currently exist in rust:

tokio and smol work using the afformentioned reference counting system to ensure wakers aren't dangling pointers to tasks that no longer exist.

embassy and rtic work by ensuring tasks are stored in static task pools for N tasks. Scheduled tasks are represented by an intrusively linked list to avoid allocation, and wakers can't be dangling pointers because completed tasks will refuse to add themselves back to the linked list, or will be replaced by a new task. This is useful in environments where it is desirable to avoid heap allocation, but requires the user annotate the maximum number of a specific task that can exist at one time, and fails to spawn tasks when they exceed that limit.

An async runtime where futures are allocated to the stack cannot be sound under this model because Future::poll allows any safe Future implementation to store or clone wakers wherever they want, which become dangling pointers after the stack allocated future goes out of scope. In order to prevent this, we must have a circular reference, where the task (Task<'scope>: Wake) contains a &'scope Waker and the Waker contains *const dyn Wake. For that to be safe, the Waker must never be moved. This cannot be possible because something needs to register the waker:

// waker is moved
poll(self: Pin<&mut Self>, cx: &mut Context<'_> /* '_ is the duration of the poll fn */) -> Poll<Self::Output> {
  // waker is moved!
  // can't register &Waker bc we run into the same problem,
  // and the waker only lives for '_
  store.register(cx.waker())
}

Effectively, by saying our waker can't move, we are saying it must be stored by the task, which means it can't be a useful waker. Instead, what we could do is have a waker-register (verb, not noun) that facilitates the binding of an immovable waker to an immovable task, where the waker is guaranteed to outlive the task:

pub trait Wake<'task> {
  fn wake(&self);
  fn register_waker(&mut self, waker: &'task Waker);
}

pub struct Waker {
  task: *const dyn Wake,
  valid: bool, // task is in charge of invalidating when it goes out of scope
}

pub struct WakerRegistration<'poll> {
  task: &'poll mut dyn Wake,
}

impl<'poll> WakerRegistration<'poll> {
  pub fn register<'task>(self, slot: &'task Waker)
  where
    'task: 'poll,
    Self: 'task
  {
    *slot = Waker::new(self.task as *const dyn Wake);
    *task.register_waker(slot)
  }
}

This system works better because WakerRegistration only lives

Experienced rust programmers might be reading this and thinking I am stupid (true) because Forget

An astute (soon to be disappointed) reader might be thinking, as I did when I first learned about this sytem, "what if we ensured that there was only one Waker per Task, and gave the task a pointer to the waker, so that it could disable the waker when dropped?"

Unfortunately, there are a multitude of issues with this system

  • In order to hold a pointer to the Waker from the
  • Preventing a Waker from moving means panicking on the

Even if it was guaranteed that wakers could not be moved or cloned (by panicking on clone), and registration occured via &Waker, the task would still be unable to

https://conradludgate.com/posts/async-stack

Structured Concurrency

https://trio.discourse.group/t/discussion-notes-on-structured-concurrency-or-go-statement-considered-harmful/25 https://kotlinlang.org/docs/coroutines-basics.html

Notably, the structured concurrency pattern fits very nicely with our hypothetical unsound stack based async runtime.

WeakCell Pattern & Forget trait

rust-lang/rfcs#3782

There are two solutions:

  • Wakers panic on clone()

Waker allocation problem & intra task concurrency

we can't do intra task concurrency because WeakRegistrations

About

wip scoped structured concurrency enforced by the borrow checker

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published