-
-
Notifications
You must be signed in to change notification settings - Fork 37.1k
crypto: data race in SecureContext::AddRootCerts? #45743
Copy link
Copy link
Closed
Labels
c++Issues and PRs that require attention from people who are familiar with C++.Issues and PRs that require attention from people who are familiar with C++.cryptoIssues and PRs related to the crypto subsystem.Issues and PRs related to the crypto subsystem.
Description
Activity
Metadata
Metadata
Assignees
Labels
c++Issues and PRs that require attention from people who are familiar with C++.Issues and PRs that require attention from people who are familiar with C++.cryptoIssues and PRs related to the crypto subsystem.Issues and PRs related to the crypto subsystem.
Possible data race when
worker_threadsare active?node/src/crypto/crypto_context.cc
Lines 749 to 751 in 1287530
root_cert_storeis astatic X509_STORE*that is assigned to (and read from) without any kind of synchronization, AFAICT.