mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-26 00:00:16 +02:00
Merge branch 'tokio-1.5.x' into merge-1.5.x
This commit is contained in:
@@ -60,6 +60,14 @@ a kernel bug. ([#3803])
|
|||||||
[#3775]: https://github.com/tokio-rs/tokio/pull/3775
|
[#3775]: https://github.com/tokio-rs/tokio/pull/3775
|
||||||
[#3780]: https://github.com/tokio-rs/tokio/pull/3780
|
[#3780]: https://github.com/tokio-rs/tokio/pull/3780
|
||||||
|
|
||||||
|
# 1.5.1 (July 6, 2021)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
|
||||||
|
|
||||||
|
[#3934]: https://github.com/tokio-rs/tokio/pull/3934
|
||||||
|
|
||||||
# 1.5.0 (April 12, 2021)
|
# 1.5.0 (April 12, 2021)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -164,6 +164,17 @@ where
|
|||||||
self.complete(Err(err), true)
|
self.complete(Err(err), true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Remotely abort the task
|
||||||
|
///
|
||||||
|
/// This is similar to `shutdown` except that it asks the runtime to perform
|
||||||
|
/// the shutdown. This is necessary to avoid the shutdown happening in the
|
||||||
|
/// wrong thread for non-Send tasks.
|
||||||
|
pub(super) fn remote_abort(self) {
|
||||||
|
if self.header().state.transition_to_notified_and_cancel() {
|
||||||
|
self.core().scheduler.schedule(Notified(self.to_task()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// ====== internal ======
|
// ====== internal ======
|
||||||
|
|
||||||
fn complete(self, output: super::Result<T::Output>, is_join_interested: bool) {
|
fn complete(self, output: super::Result<T::Output>, is_join_interested: bool) {
|
||||||
|
|||||||
@@ -192,7 +192,7 @@ impl<T> JoinHandle<T> {
|
|||||||
/// ```
|
/// ```
|
||||||
pub fn abort(&self) {
|
pub fn abort(&self) {
|
||||||
if let Some(raw) = self.raw {
|
if let Some(raw) = self.raw {
|
||||||
raw.shutdown();
|
raw.remote_abort();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,6 +22,9 @@ pub(super) struct Vtable {
|
|||||||
/// The join handle has been dropped
|
/// The join handle has been dropped
|
||||||
pub(super) drop_join_handle_slow: unsafe fn(NonNull<Header>),
|
pub(super) drop_join_handle_slow: unsafe fn(NonNull<Header>),
|
||||||
|
|
||||||
|
/// The task is remotely aborted
|
||||||
|
pub(super) remote_abort: unsafe fn(NonNull<Header>),
|
||||||
|
|
||||||
/// Scheduler is being shutdown
|
/// Scheduler is being shutdown
|
||||||
pub(super) shutdown: unsafe fn(NonNull<Header>),
|
pub(super) shutdown: unsafe fn(NonNull<Header>),
|
||||||
}
|
}
|
||||||
@@ -33,6 +36,7 @@ pub(super) fn vtable<T: Future, S: Schedule>() -> &'static Vtable {
|
|||||||
dealloc: dealloc::<T, S>,
|
dealloc: dealloc::<T, S>,
|
||||||
try_read_output: try_read_output::<T, S>,
|
try_read_output: try_read_output::<T, S>,
|
||||||
drop_join_handle_slow: drop_join_handle_slow::<T, S>,
|
drop_join_handle_slow: drop_join_handle_slow::<T, S>,
|
||||||
|
remote_abort: remote_abort::<T, S>,
|
||||||
shutdown: shutdown::<T, S>,
|
shutdown: shutdown::<T, S>,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -89,6 +93,11 @@ impl RawTask {
|
|||||||
let vtable = self.header().vtable;
|
let vtable = self.header().vtable;
|
||||||
unsafe { (vtable.shutdown)(self.ptr) }
|
unsafe { (vtable.shutdown)(self.ptr) }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub(super) fn remote_abort(self) {
|
||||||
|
let vtable = self.header().vtable;
|
||||||
|
unsafe { (vtable.remote_abort)(self.ptr) }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Clone for RawTask {
|
impl Clone for RawTask {
|
||||||
@@ -125,6 +134,11 @@ unsafe fn drop_join_handle_slow<T: Future, S: Schedule>(ptr: NonNull<Header>) {
|
|||||||
harness.drop_join_handle_slow()
|
harness.drop_join_handle_slow()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsafe fn remote_abort<T: Future, S: Schedule>(ptr: NonNull<Header>) {
|
||||||
|
let harness = Harness::<T, S>::from_raw(ptr);
|
||||||
|
harness.remote_abort()
|
||||||
|
}
|
||||||
|
|
||||||
unsafe fn shutdown<T: Future, S: Schedule>(ptr: NonNull<Header>) {
|
unsafe fn shutdown<T: Future, S: Schedule>(ptr: NonNull<Header>) {
|
||||||
let harness = Harness::<T, S>::from_raw(ptr);
|
let harness = Harness::<T, S>::from_raw(ptr);
|
||||||
harness.shutdown()
|
harness.shutdown()
|
||||||
|
|||||||
@@ -177,6 +177,15 @@ impl State {
|
|||||||
prev.will_need_queueing()
|
prev.will_need_queueing()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Set the cancelled bit and transition the state to `NOTIFIED`.
|
||||||
|
///
|
||||||
|
/// Returns `true` if the task needs to be submitted to the pool for
|
||||||
|
/// execution
|
||||||
|
pub(super) fn transition_to_notified_and_cancel(&self) -> bool {
|
||||||
|
let prev = Snapshot(self.val.fetch_or(NOTIFIED | CANCELLED, AcqRel));
|
||||||
|
prev.will_need_queueing()
|
||||||
|
}
|
||||||
|
|
||||||
/// Set the `CANCELLED` bit and attempt to transition to `Running`.
|
/// Set the `CANCELLED` bit and attempt to transition to `Running`.
|
||||||
///
|
///
|
||||||
/// Returns `true` if the transition to `Running` succeeded.
|
/// Returns `true` if the transition to `Running` succeeded.
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
#![warn(rust_2018_idioms)]
|
#![warn(rust_2018_idioms)]
|
||||||
#![cfg(feature = "full")]
|
#![cfg(feature = "full")]
|
||||||
|
|
||||||
|
use std::thread::sleep;
|
||||||
|
use std::time::Duration;
|
||||||
|
|
||||||
/// Checks that a suspended task can be aborted without panicking as reported in
|
/// Checks that a suspended task can be aborted without panicking as reported in
|
||||||
/// issue #3157: <https://github.com/tokio-rs/tokio/issues/3157>.
|
/// issue #3157: <https://github.com/tokio-rs/tokio/issues/3157>.
|
||||||
#[test]
|
#[test]
|
||||||
@@ -62,18 +65,16 @@ fn test_abort_without_panic_3662() {
|
|||||||
// This runs in a separate thread so it doesn't have immediate
|
// This runs in a separate thread so it doesn't have immediate
|
||||||
// thread-local access to the executor. It does however transition
|
// thread-local access to the executor. It does however transition
|
||||||
// the underlying task to be completed, which will cause it to be
|
// the underlying task to be completed, which will cause it to be
|
||||||
// dropped (in this thread no less).
|
// dropped (but not in this thread).
|
||||||
assert!(!drop_flag2.load(Ordering::SeqCst));
|
assert!(!drop_flag2.load(Ordering::SeqCst));
|
||||||
j.abort();
|
j.abort();
|
||||||
// TODO: is this guaranteed at this point?
|
|
||||||
// assert!(drop_flag2.load(Ordering::SeqCst));
|
|
||||||
j
|
j
|
||||||
})
|
})
|
||||||
.join()
|
.join()
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
assert!(drop_flag.load(Ordering::SeqCst));
|
|
||||||
let result = task.await;
|
let result = task.await;
|
||||||
|
assert!(drop_flag.load(Ordering::SeqCst));
|
||||||
assert!(result.unwrap_err().is_cancelled());
|
assert!(result.unwrap_err().is_cancelled());
|
||||||
|
|
||||||
// Note: We do the following to trigger a deferred task cleanup.
|
// Note: We do the following to trigger a deferred task cleanup.
|
||||||
@@ -91,3 +92,49 @@ fn test_abort_without_panic_3662() {
|
|||||||
i.await.unwrap();
|
i.await.unwrap();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Checks that a suspended LocalSet task can be aborted from a remote thread
|
||||||
|
/// without panicking and without running the tasks destructor on the wrong thread.
|
||||||
|
/// <https://github.com/tokio-rs/tokio/issues/3929>
|
||||||
|
#[test]
|
||||||
|
fn remote_abort_local_set_3929() {
|
||||||
|
struct DropCheck {
|
||||||
|
created_on: std::thread::ThreadId,
|
||||||
|
not_send: std::marker::PhantomData<*const ()>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl DropCheck {
|
||||||
|
fn new() -> Self {
|
||||||
|
Self {
|
||||||
|
created_on: std::thread::current().id(),
|
||||||
|
not_send: std::marker::PhantomData,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl Drop for DropCheck {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
if std::thread::current().id() != self.created_on {
|
||||||
|
panic!("non-Send value dropped in another thread!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let rt = tokio::runtime::Builder::new_current_thread()
|
||||||
|
.build()
|
||||||
|
.unwrap();
|
||||||
|
let local = tokio::task::LocalSet::new();
|
||||||
|
|
||||||
|
let check = DropCheck::new();
|
||||||
|
let jh = local.spawn_local(async move {
|
||||||
|
futures::future::pending::<()>().await;
|
||||||
|
drop(check);
|
||||||
|
});
|
||||||
|
|
||||||
|
let jh2 = std::thread::spawn(move || {
|
||||||
|
sleep(Duration::from_millis(50));
|
||||||
|
jh.abort();
|
||||||
|
});
|
||||||
|
|
||||||
|
rt.block_on(local);
|
||||||
|
jh2.join().unwrap();
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user