send-pack: avoid deadlock on git:// push with failed pack-objects
authorJeff King <peff@peff.net>
Mon, 16 May 2011 06:52:57 +0000 (02:52 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 16 May 2011 23:20:01 +0000 (16:20 -0700)
Commit 09c9957c fixes a deadlock in which pack-objects
fails, the remote end is still waiting for pack data, and we
are still waiting for the remote end to say something (see
that commit for a much more in-depth explanation).

We solved the problem there by making sure the output pipe
is closed on error; thus the remote sees EOF, and proceeds
to complain and close its end of the connection.

However, in the special case of push over git://, we don't
have a pipe, but rather a full-duplex socket, with another
dup()-ed descriptor in place of the second half of the pipe.
In this case, closing the second descriptor signals nothing
to the remote end, and we still deadlock.

This patch calls shutdown() explicitly to signal EOF to the
other side.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-send-pack.c
index dfd3d1105d5de43c96007624170c70a4d8678064..eef19cb60a6096445f70b53457f095450309a102 100644 (file)
@@ -520,6 +520,8 @@ int send_pack(struct send_pack_args *args,
                                ref->status = REF_STATUS_NONE;
                        if (args->stateless_rpc)
                                close(out);
+                       if (git_connection_is_socket(conn))
+                               shutdown(fd[0], SHUT_WR);
                        if (use_sideband)
                                finish_async(&demux);
                        return -1;