Skip to content

Commit 7ba7c52

Browse files
derrickstoleegitster
authored andcommitted
upload-pack: fix race condition in error messages
Test t5516-fetch-push.sh has a test 'deny fetch unreachable SHA1, allowtipsha1inwant=true' that checks stderr for a specific error string from the remote. In some build environments the error sent over the remote connection gets mingled with the error from the die() statement. Since both signals are being output to the same file descriptor (but from parent and child processes), the output we are matching with grep gets split. To reduce the risk of this failure, follow this process instead: 1. Write an error message to stderr. 2. Write an error message across the connection. 3. exit(1). This reorders the events so the error is written entirely before the client receives a message from the remote, removing the race condition. Signed-off-by: Derrick Stolee <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent fb7d80e commit 7ba7c52

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

upload-pack.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -777,11 +777,12 @@ static void check_non_tip(struct upload_pack_data *data)
777777
for (i = 0; i < data->want_obj.nr; i++) {
778778
struct object *o = data->want_obj.objects[i].item;
779779
if (!is_our_ref(o, data->allow_uor)) {
780+
error("git upload-pack: not our ref %s",
781+
oid_to_hex(&o->oid));
780782
packet_writer_error(&data->writer,
781783
"upload-pack: not our ref %s",
782784
oid_to_hex(&o->oid));
783-
die("git upload-pack: not our ref %s",
784-
oid_to_hex(&o->oid));
785+
exit(1);
785786
}
786787
}
787788
}

0 commit comments

Comments
 (0)