[PATCH] http*: cleanup slot->local after fclose
From: Tay Ray Chuan <hidden>
Date: 2016-06-15 22:46:52
Subsystem:
the rest · Maintainer:
Linus Torvalds
Set slot->local to NULL after doing a fclose on the FILE* pointer it points to. Move NULL assignment to request->slot from http-push.c::finish_request() to http-push.c::release_request(). This is safe, since the functions finish_request() invoke will overwrite request->slot anyway. Refactor http-push.c::fetch_index(), http-walker.c::fetch_index() and http-walker.c::fetch_pack() to use labels while cleaning up. This fixes the issue raised by Clemens Buchacher on 30th May: http://www.spinics.net/lists/git/msg104623.html Signed-off-by: Tay Ray Chuan <redacted> --- This applies on master, and is a resend, this time with the subject. http-push.c | 23 ++++++++++++++--------- http-walker.c | 36 +++++++++++++++++++++++------------- 2 files changed, 37 insertions(+), 22 deletions(-)
diff --git a/http-push.c b/http-push.c
index dac2c6e..816824a 100644
--- a/http-push.c
+++ b/http-push.c@@ -715,6 +715,8 @@ static void release_request(struct transfer_request *request) close(request->local_fileno); if (request->local_stream) fclose(request->local_stream); + if (request->slot) + request->slot = NULL; free(request->url); free(request); }
@@ -727,7 +729,6 @@ static void finish_request(struct transfer_request *request) request->curl_result = request->slot->curl_result; request->http_code = request->slot->http_code; - request->slot = NULL; /* Keep locks active */ check_locks();
@@ -823,6 +824,7 @@ static void finish_request(struct transfer_request *request) fclose(request->local_stream); request->local_stream = NULL; + request->slot->local = NULL; if (!move_temp_to_file(request->tmpfile, request->filename)) { target = (struct packed_git *)request->userData;
@@ -946,6 +948,7 @@ static int add_send_request(struct object *obj, struct remote_lock *lock) static int fetch_index(unsigned char *sha1) { + int ret; char *hex = sha1_to_hex(sha1); char *filename; char *url;
@@ -1022,21 +1025,23 @@ static int fetch_index(unsigned char *sha1) if (start_active_slot(slot)) { run_active_slot(slot); if (results.curl_result != CURLE_OK) { - free(url); - fclose(indexfile); - return error("Unable to get pack index %s\n%s", url, - curl_errorstr); + ret = error("Unable to get pack index %s\n%s", url, + curl_errorstr); + goto cleanup; } } else { - free(url); - fclose(indexfile); - return error("Unable to start request"); + ret = error("Unable to start request"); + goto cleanup; } + ret = move_temp_to_file(tmpfile, filename); + +cleanup: free(url); fclose(indexfile); + slot->local = NULL; - return move_temp_to_file(tmpfile, filename); + return ret; } static int setup_index(unsigned char *sha1)
diff --git a/http-walker.c b/http-walker.c
index 7321ccc..779947d 100644
--- a/http-walker.c
+++ b/http-walker.c@@ -364,6 +364,7 @@ static void prefetch(struct walker *walker, unsigned char *sha1) static int fetch_index(struct walker *walker, struct alt_base *repo, unsigned char *sha1) { + int ret; char *hex = sha1_to_hex(sha1); char *filename; char *url;
@@ -417,18 +418,21 @@ static int fetch_index(struct walker *walker, struct alt_base *repo, unsigned ch if (start_active_slot(slot)) { run_active_slot(slot); if (results.curl_result != CURLE_OK) { - fclose(indexfile); - return error("Unable to get pack index %s\n%s", url, - curl_errorstr); + ret = error("Unable to get pack index %s\n%s", url, + curl_errorstr); + goto cleanup; } } else { - fclose(indexfile); - return error("Unable to start request"); + ret = error("Unable to start request"); + goto cleanup; } - fclose(indexfile); + ret = move_temp_to_file(tmpfile, filename); - return move_temp_to_file(tmpfile, filename); +cleanup: + fclose(indexfile); + slot->local = NULL; + return ret; } static int setup_index(struct walker *walker, struct alt_base *repo, unsigned char *sha1)
@@ -718,7 +722,7 @@ static int fetch_pack(struct walker *walker, struct alt_base *repo, unsigned cha FILE *packfile; char *filename; char tmpfile[PATH_MAX]; - int ret; + int ret = 0; long prev_posn = 0; char range[RANGE_HEADER_SIZE]; struct curl_slist *range_header = NULL;
@@ -775,17 +779,23 @@ static int fetch_pack(struct walker *walker, struct alt_base *repo, unsigned cha if (start_active_slot(slot)) { run_active_slot(slot); if (results.curl_result != CURLE_OK) { - fclose(packfile); - return error("Unable to get pack file %s\n%s", url, - curl_errorstr); + ret = error("Unable to get pack file %s\n%s", url, + curl_errorstr); + goto cleanup; } } else { - fclose(packfile); - return error("Unable to start request"); + ret = error("Unable to start request"); + goto cleanup; } target->pack_size = ftell(packfile); + +cleanup: fclose(packfile); + slot->local = NULL; + + if (ret) + return ret; ret = move_temp_to_file(tmpfile, filename); if (ret)
--
1.6.3.1