diff options
author | Simon Rettberg | 2024-05-15 11:58:58 +0200 |
---|---|---|
committer | Simon Rettberg | 2024-05-15 11:58:58 +0200 |
commit | 200055fda562fcd9c709c87b2cab9c659f81baa7 (patch) | |
tree | cf0c92e048a64354a833afb005142e3360492133 /src | |
parent | github: Need libcurl now (diff) | |
download | dnbd3-200055fda562fcd9c709c87b2cab9c659f81baa7.tar.gz dnbd3-200055fda562fcd9c709c87b2cab9c659f81baa7.tar.xz dnbd3-200055fda562fcd9c709c87b2cab9c659f81baa7.zip |
[FUSE] Buffer upload reply contents and conditionally print
Diffstat (limited to 'src')
-rw-r--r-- | src/fuse/cowfile.c | 9 | ||||
-rw-r--r-- | src/fuse/cowfile.h | 3 |
2 files changed, 9 insertions, 3 deletions
diff --git a/src/fuse/cowfile.c b/src/fuse/cowfile.c index ed370c2..b183202 100644 --- a/src/fuse/cowfile.c +++ b/src/fuse/cowfile.c @@ -511,6 +511,8 @@ static bool addUpload( CURLM *cm, cow_curl_read_upload_t *uploadingCluster ) curl_easy_setopt( eh, CURLOPT_HEADERDATA, (void *)uploadingCluster ); curl_easy_setopt( eh, CURLOPT_READFUNCTION, curlReadCallbackUploadBlock ); curl_easy_setopt( eh, CURLOPT_READDATA, (void *)uploadingCluster ); + curl_easy_setopt( eh, CURLOPT_WRITEFUNCTION, curlWriteCb500 ); + curl_easy_setopt( eh, CURLOPT_WRITEDATA, (void *)uploadingCluster->replyBuffer ); curl_easy_setopt( eh, CURLOPT_PRIVATE, (void *)uploadingCluster ); // min upload speed of 1kb/s over 10 sec otherwise the upload is canceled. curl_easy_setopt( eh, CURLOPT_LOW_SPEED_TIME, 10L ); @@ -593,16 +595,18 @@ static bool clusterUploadDoneHandler( CURLM *cm, CURLMsg *msg ) } else if ( msg->data.result != CURLE_OK ) { logadd( LOG_ERROR, "curl_easy returned non-OK after multi-finish: %s", curl_easy_strerror( msg->data.result ) ); + logadd( LOG_ERROR, "(%ld, %s)", http_code, uploadingCluster->replyBuffer ); } else if ( res != CURLE_OK || res2 != CURLE_OK ) { logadd( LOG_ERROR, "curl_easy_getinfo failed after multifinish (%d, %d)", (int)res, (int)res2 ); } else if ( http_code == 503 ) { if ( uploadingCluster->retryTime > 0 ) { logadd( LOG_INFO, "COW server is asking to backoff for %d seconds", uploadingCluster->retryTime ); } else { - logadd( LOG_ERROR, "COW server returned 503 without Retry-After value" ); + logadd( LOG_ERROR, "COW server returned 503 without Retry-After value: %s", + uploadingCluster->replyBuffer ); } } else if ( http_code < 200 || http_code >= 300 ) { - logadd( LOG_ERROR, "COW server returned HTTP %ld", http_code ); + logadd( LOG_ERROR, "COW server returned HTTP %ld: %s", http_code, uploadingCluster->replyBuffer ); } else { // everything went ok, reset timeChanged of underlying cluster, but only if it // didn't get updated again in the meantime. @@ -728,6 +732,7 @@ bool uploadModifiedClusters( bool ignoreMinUploadDelay, CURLM *cm ) b->position = 0; b->retryTime = 0; b->time = cluster->timeChanged; + b->replyBuffer[0] = '\0'; // Copy, so it doesn't change during upload // when we assemble the data in curlReadCallbackUploadBlock() for ( int i = 0; i < COW_BITFIELD_SIZE; ++i ) { diff --git a/src/fuse/cowfile.h b/src/fuse/cowfile.h index 20f4518..3b1711c 100644 --- a/src/fuse/cowfile.h +++ b/src/fuse/cowfile.h @@ -107,10 +107,11 @@ typedef struct cow_curl_read_upload atomic_uint_least64_t time; cow_l2_entry_t *cluster; size_t position; - long unsigned int clusterNumber; + uint64_t clusterNumber; int64_t ulLast; int retryTime; atomic_uchar bitfield[COW_BITFIELD_SIZE]; + char replyBuffer[500]; } cow_curl_read_upload_t; |