Skip to content

Commit

Permalink
fast-import: avoid running end_packfile recursively
Browse files Browse the repository at this point in the history
When an import has finished, we run end_packfile() to
finalize the data and move the packfile into place. If this
process fails, we call die() and end up in our die_nicely()
handler.  Which unfortunately includes running end_packfile
to save any progress we made. We enter the function again,
and start operating on the pack_data struct while it is in
an inconsistent state, leading to a segfault.

One way to trigger this is to simply start two identical
fast-imports at the same time. They will both create the
same packfiles, which will then try to create identically
named ".keep" files. One will win the race, and the other
will die(), and end up with the segfault.

Since 3c078b9, we already reset the pack_data pointer to
NULL at the end of end_packfile. That covers the case of us
calling die() right after end_packfile, before we have
reinitialized the pack_data pointer. This new problem is
quite similar, except that we are worried about calling
die() _during_ end_packfile, not right after. Ideally we
would simply set pack_data to NULL as soon as we enter the
function, and operate on a copy of the pointer.

Unfortunately, it is not so easy. pack_data is a global, and
end_packfile calls into other functions which operate on the
global directly. We would have to teach each of these to
take an argument, and there is no guarantee that we would
catch all of the spots.

Instead, we can simply use a static flag to avoid
recursively entering the function. This is a little less
elegant, but it's short and fool-proof.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Jeff King authored and Junio C Hamano committed Feb 10, 2015
1 parent 3c84ac8 commit 5e915f3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion fast-import.c
Original file line number Diff line number Diff line change
Expand Up @@ -946,9 +946,12 @@ static void unkeep_all_packs(void)

static void end_packfile(void)
{
if (!pack_data)
static int running;

if (running || !pack_data)
return;

running = 1;
clear_delta_base_cache();
if (object_count) {
struct packed_git *new_p;
Expand Down Expand Up @@ -998,6 +1001,7 @@ static void end_packfile(void)
}
free(pack_data);
pack_data = NULL;
running = 0;

/* We can't carry a delta across packfiles. */
strbuf_release(&last_blob.data);
Expand Down

0 comments on commit 5e915f3

Please sign in to comment.