Lucene search

K
osvGoogleOSV:GHSA-FQQ2-XP7M-XVM8
HistoryAug 25, 2021 - 8:58 p.m.

Data race in ruspiro-singleton

2021-08-2520:58:19
Google
osv.dev
7
singleton
static object
data race
bug
non-sync types
cell
concurrent programs
trait bounds
commit b0d2bd20e
sync.

EPSS

0.002

Percentile

61.8%

Singleton<T> is meant to be a static object that can be initialized lazily. In
order to satisfy the requirement that static items must implement Sync,
Singleton implemented both Sync and Send unconditionally.

This allows for a bug where non-Sync types such as Cell can be used in
singletons and cause data races in concurrent programs.

The flaw was corrected in commit b0d2bd20e by adding trait bounds, requiring
the contaiend type to implement Sync.

EPSS

0.002

Percentile

61.8%

Related for OSV:GHSA-FQQ2-XP7M-XVM8