S3Client::GetObject is not thread safe #3350
Labels
bug
This issue is a bug.
closing-soon
This issue will automatically close in 4 days unless further comments are made.
dependencies
This issue is a problem in a dependency.
Describe the bug
below is part of threat sanitizer alert ,
Aws::S3::S3Client::GetObject
call will hitAws::Crt::Checksum::ComputeCRC64NVME
, which mutates some static function pointers and variables, causing racing.I didn't find any reference in terms of how to properly initialize these checkssum related global state.
had to do the hack by computing it ahead of time in my code
so that these statics get set before kicks off the concurrent download logic.
what is the kosher way of doing this?
Regression Issue
Expected Behavior
these gets set during
Aws::InitAPI
Current Behavior
they are not set until getObject() is invoked
Reproduction Steps
Possible Solution
No response
Additional Information/Context
No response
AWS CPP SDK version used
1.11.504
Compiler and Version used
gcc9
Operating System and version
ubuntu
The text was updated successfully, but these errors were encountered: