mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2025-01-24 14:28:24 +00:00
Handle s3fs_get_content_md5 and s3fs_sha256_hex_fd errors (#1534)
Follows on to 4d833a4fb9ffc70cf5ba399e08390417423901ae.
This commit is contained in:
parent
1987bcbea3
commit
17fda89ae9
@ -2595,6 +2595,11 @@ void S3fsCurl::insertV4Headers()
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(0 == payload_hash.length()){
|
||||||
|
S3FS_PRN_ERR("Failed to make SHA256.");
|
||||||
|
// TODO: propagate error
|
||||||
|
}
|
||||||
|
|
||||||
S3FS_PRN_INFO3("computing signature [%s] [%s] [%s] [%s]", op.c_str(), server_path.c_str(), query_string.c_str(), payload_hash.c_str());
|
S3FS_PRN_INFO3("computing signature [%s] [%s] [%s] [%s]", op.c_str(), server_path.c_str(), query_string.c_str(), payload_hash.c_str());
|
||||||
std::string strdate;
|
std::string strdate;
|
||||||
std::string date8601;
|
std::string date8601;
|
||||||
@ -3165,6 +3170,10 @@ int S3fsCurl::PutRequest(const char* tpath, headers_t& meta, int fd)
|
|||||||
std::string strMD5;
|
std::string strMD5;
|
||||||
if(-1 != fd && S3fsCurl::is_content_md5){
|
if(-1 != fd && S3fsCurl::is_content_md5){
|
||||||
strMD5 = s3fs_get_content_md5(fd);
|
strMD5 = s3fs_get_content_md5(fd);
|
||||||
|
if(0 == strMD5.length()){
|
||||||
|
S3FS_PRN_ERR("Failed to make MD5.");
|
||||||
|
return -EIO;
|
||||||
|
}
|
||||||
requestHeaders = curl_slist_sort_insert(requestHeaders, "Content-MD5", strMD5.c_str());
|
requestHeaders = curl_slist_sort_insert(requestHeaders, "Content-MD5", strMD5.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user