Описание
Race condition in tokio
When aborting a task with JoinHandle::abort, the future is dropped in the thread calling abort if the task is not currently being executed. This is incorrect for tasks spawned on a LocalSet. This can easily result in race conditions as many projects use Rc or RefCell in their Tokio tasks for better performance.
Пакеты
tokio
>= 1.8.0, < 1.8.1
1.8.1
tokio
>= 1.7.0, < 1.7.2
1.7.2
tokio
>= 1.6.0, < 1.6.3
1.6.3
tokio
>= 0.3.0, < 1.5.1
1.5.1
Связанные уязвимости
An issue was discovered in the tokio crate before 1.8.1 for Rust. Upon a JoinHandle::abort, a Task may be dropped in the wrong thread.
An issue was discovered in the tokio crate before 1.8.1 for Rust. Upon a JoinHandle::abort, a Task may be dropped in the wrong thread.
An issue was discovered in the tokio crate before 1.8.1 for Rust. Upon a JoinHandle::abort, a Task may be dropped in the wrong thread.
An issue was discovered in the tokio crate before 1.8.1 for Rust. Upon ...