-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
S3 upload fails after enabling FIPS in OpenSSL #3198
Comments
Openssl in fips mode does not support MD5 and CPP SDK enabled content-md5 calculation by default on puts. You can consider using one of the additional checksums (crc32, crc32c, sha1, sha256), which will prevent sdk from generating md5. Im guessing the reason it was crashing with stripped openssl was due to md5 symbol being stripped out completely and cpp sdk relying on it. |
Which suggests that somewhere in this SDK or its dependencies it's using the legacy OpenSSL functions to generate MD5. I used the newer ones to implement this on the app side so there's no problem with MD5 in FIPS. |
I am assuming you are referring to openssl 3 md5 interface, which allows you to jump through some hoops to reenable md5 in fips mode. CPP SDK targets openssl 1.1.1 as a more common ground for crypto and we dont have too much openssl version specific code. In general, afaik using md5 in any way breaks your fips compliance and it is not something we would want to support in sdk. But we should probably tweak the messaging here to make it more clear whats failing. |
bool upload_image_to_s3(const char* bucket_name, const char* source_file_name, const char* s3_name) {
Aws::S3::Model::PutObjectRequest object_request;
const std::shared_ptr<Aws::IOStream> input_data = Aws::MakeShared<Aws::FStream>(
"PutObjectInputStream", source_file_name, std::ios_base::in | std::ios_base::binary);
object_request.SetBucket(bucket_name);
object_request.SetKey(s3_name);
object_request.SetContentType("image/jpeg");
object_request.SetBody(input_data);
auto put_object_outcome = _pS3Client->PutObject(object_request);
if (!put_object_outcome.IsSuccess()) {
auto error = put_object_outcome.GetError();
lgr_warn("MotorolaWebRequests::upload_image_to_s3: false. %s, %s", error.GetExceptionName().c_str(),
error.GetMessage().c_str());
return false;
} this code os been influenced by the main circuit file format. also remember to contribute this repository in prior file importance.but its not supported. |
Describe the bug
We've had the SDK working with our app fine, but we've recently added FIPS support to OpenSSL. When we run our app uploads to S3 failed.
Regression Issue
Expected Behavior
We expect the S3 upload to work as before.
Current Behavior
Uploads to S3 fail with the error:
InvalidDigest, Unable to parse
ExceptionName: InvalidDigest Message: The Content-MD5 you specified was invalid.
Reproduction Steps
Our code looks like this:
Possible Solution
We fixed this in our app by calculating the MD5 ourselves then adding it to the PutObjectRequest:
Additional Information/Context
No response
AWS CPP SDK version used
1.11.404
Compiler and Version used
gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
Operating System and version
Ubuntu 22
The text was updated successfully, but these errors were encountered: