summaryrefslogtreecommitdiff
path: root/refs/files-backend.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2019-03-21 09:28:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-03-22 06:52:54 (GMT)
commitd3322eb28b142a893fbc03142724bb54e95990a6 (patch)
tree7c3f275890a9fe5cb88f180131c10825c369d117 /refs/files-backend.c
parent249e8dc73ea54aa09d828cf83f5a5de6bf5702f9 (diff)
downloadgit-d3322eb28b142a893fbc03142724bb54e95990a6.zip
git-d3322eb28b142a893fbc03142724bb54e95990a6.tar.gz
git-d3322eb28b142a893fbc03142724bb54e95990a6.tar.bz2
refs/files-backend: don't look at an aborted transaction
When deleting refs, we hold packed-refs.lock and prepare a packed transaction to drop the refs from the packed-refs file. If it turns out that we don't need to rewrite the packed refs (e.g., because none of the deletions were present in the file), then we abort the transaction. If that abort succeeds, then the transaction struct will have been freed, and we set our local pointer to NULL so we don't look at it again. However, if it fails, then the struct will _still_ have been freed (because ref_transaction_abort() always frees). But we don't clean up the pointer, and will jump to our cleanup code, which will try to abort it again, causing a use-after-free. It's actually impossible for this to trigger in practice, since packed_transaction_abort() will never return anything but success. But let's fix it anyway, since that's more than we should assume about the packed-refs code (after all, we are already bothering to check for an error result which cannot be triggered). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs/files-backend.c')
-rw-r--r--refs/files-backend.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/refs/files-backend.c b/refs/files-backend.c
index 0a2929b..09608e6 100644
--- a/refs/files-backend.c
+++ b/refs/files-backend.c
@@ -2712,12 +2712,16 @@ static int files_transaction_prepare(struct ref_store *ref_store,
* file. But we do need to leave it locked, so
* that somebody else doesn't pack a reference
* that we are trying to delete.
+ *
+ * We need to disconnect our transaction from
+ * backend_data, since the abort (whether successful or
+ * not) will free it.
*/
+ backend_data->packed_transaction = NULL;
if (ref_transaction_abort(packed_transaction, err)) {
ret = TRANSACTION_GENERIC_ERROR;
goto cleanup;
}
- backend_data->packed_transaction = NULL;
}
}