Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a kani::futures library containing block_on #1427

Merged
merged 4 commits into from
Jul 30, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions library/kani/src/futures.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// Copyright Kani Contributors
// SPDX-License-Identifier: Apache-2.0 OR MIT

fzaiser marked this conversation as resolved.
Show resolved Hide resolved
//! This module contains functions to work with futures (and async/.await) in Kani.

use std::{
future::Future,
pin::Pin,
task::{Context, RawWaker, RawWakerVTable, Waker},
};

/// A very simple executor: it polls the future in a busy loop until completion
///
/// This is intended as a drop-in replacement for `futures::block_on`, which Kani cannot handle.
/// Whereas a clever executor like `block_on` in `futures` or `tokio` would interact with the OS scheduler
/// to be woken up when a resource becomes available, this is not supported by Kani.
/// As a consequence, this function completely ignores the waker infrastructure and just polls the given future in a busy loop.
pub fn block_on<T>(mut fut: impl Future<Output = T>) -> T {
let waker = unsafe { Waker::from_raw(NOOP_RAW_WAKER) };
let cx = &mut Context::from_waker(&waker);
// SAFETY: we shadow the original binding, so it cannot be accessed again for the rest of the scope.
// This is the same as what the pin_mut! macro in the futures crate does.
let mut fut = unsafe { Pin::new_unchecked(&mut fut) };
loop {
match fut.as_mut().poll(cx) {
std::task::Poll::Ready(res) => return res,
std::task::Poll::Pending => continue,
}
}
}

/// A dummy waker, which is needed to call [`Future::poll`]
const NOOP_RAW_WAKER: RawWaker = {
fzaiser marked this conversation as resolved.
Show resolved Hide resolved
#[inline]
unsafe fn clone_waker(_: *const ()) -> RawWaker {
NOOP_RAW_WAKER
}

#[inline]
unsafe fn noop(_: *const ()) {}

RawWaker::new(std::ptr::null(), &RawWakerVTable::new(clone_waker, noop, noop, noop))
};
2 changes: 2 additions & 0 deletions library/kani/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
#![feature(min_specialization)] // Used for default implementation of Arbitrary.

pub mod arbitrary;
pub mod futures;
pub mod invariant;
pub mod slice;
pub mod vec;

pub use arbitrary::Arbitrary;
pub use futures::block_on;
pub use invariant::Invariant;

/// Creates an assumption that will be valid after this statement run. Note that the assumption
Expand Down
31 changes: 19 additions & 12 deletions tests/kani/AsyncAwait/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,21 @@ use std::{
fn main() {}

#[kani::proof]
#[kani::unwind(10)]
#[kani::unwind(2)]
fn test_async_await() {
poll_loop(async {
// Test using the `block_on` implementation in Kani's library
kani::block_on(async {
let async_block_result = async { 42 }.await;
let async_fn_result = async_fn().await;
assert_eq!(async_block_result, async_fn_result);
})
}

#[kani::proof]
#[kani::unwind(2)]
fn test_async_await_manually() {
// Test using the manual `block_on` implementation
block_on(async {
let async_block_result = async { 42 }.await;
let async_fn_result = async_fn().await;
assert_eq!(async_block_result, async_fn_result);
Expand All @@ -28,12 +40,12 @@ pub async fn async_fn() -> i32 {
}

/// A very simple executor that just polls the future in a loop
pub fn poll_loop<F: Future>(mut fut: F) -> <F as Future>::Output {
pub fn block_on<T>(mut fut: impl Future<Output = T>) -> T {
let waker = unsafe { Waker::from_raw(NOOP_RAW_WAKER) };
let cx = &mut Context::from_waker(&waker);
let mut fut = unsafe { Pin::new_unchecked(&mut fut) };
loop {
let pinned = unsafe { Pin::new_unchecked(&mut fut) };
match pinned.poll(cx) {
match fut.as_mut().poll(cx) {
std::task::Poll::Ready(res) => return res,
std::task::Poll::Pending => continue,
}
Expand All @@ -45,11 +57,6 @@ const NOOP_RAW_WAKER: RawWaker = {
unsafe fn clone_waker(_: *const ()) -> RawWaker {
NOOP_RAW_WAKER
}
unsafe fn wake(_: *const ()) {}
unsafe fn wake_by_ref(_: *const ()) {}
unsafe fn drop_waker(_: *const ()) {}
RawWaker::new(
std::ptr::null(),
&RawWakerVTable::new(clone_waker, wake, wake_by_ref, drop_waker),
)
unsafe fn noop(_: *const ()) {}
RawWaker::new(std::ptr::null(), &RawWakerVTable::new(clone_waker, noop, noop, noop))
};