Skip to content

Commit 3028db4

Browse files
jiangxingitster
authored andcommitted
send-pack: new return code "ERROR_SEND_PACK_BAD_REF_STATUS"
The "push_refs" function in the transport_vtable is the handler for git-push operation. All the "push_refs" functions for different transports (protocols) should have the same behavior, but the behavior of "git_transport_push()" function for builtin_smart_vtable in "transport.c" (which calls "send_pack()" in "send-pack.c") differs from the handler of the HTTP protocol. The "push_refs()" function for the HTTP protocol which calls the "push_refs_with_push()" function in "transport-helper.c" will return 0 even when a bad REF_STATUS (such as REF_STATUS_REJECT_NONFASTFORWARD) was found. But "send_pack()" for Git smart protocol will return -1 for a bad REF_STATUS. We cannot ignore bad REF_STATUS directly in the "send_pack()" function, because the function is also used in "builtin/send-pack.c". So we add a new non-zero error code "SEND_PACK_ERROR_REF_STATUS" for "send_pack()". Ignore the specific error code in the "git_transport_push()" function to have the same behavior as "push_refs()" for HTTP protocol. Note that even though we ignore the error here, we'll ultimately still end up detecting that a subset of refs was not pushed in `transport_push()` because we eventually call `push_had_errors()` on the remote refs. Signed-off-by: Jiang Xin <[email protected]> Signed-off-by: Patrick Steinhardt <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent dd69a12 commit 3028db4

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

send-pack.c

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ int send_pack(struct repository *r,
632632
reject_atomic_push(remote_refs, args->send_mirror);
633633
error("atomic push failed for ref %s. status: %d",
634634
ref->name, ref->status);
635-
ret = args->porcelain ? 0 : -1;
635+
ret = ERROR_SEND_PACK_BAD_REF_STATUS;
636636
goto out;
637637
}
638638
/* else fallthrough */
@@ -763,19 +763,14 @@ int send_pack(struct repository *r,
763763
if (ret < 0)
764764
goto out;
765765

766-
if (args->porcelain) {
767-
ret = 0;
768-
goto out;
769-
}
770-
771766
for (ref = remote_refs; ref; ref = ref->next) {
772767
switch (ref->status) {
773768
case REF_STATUS_NONE:
774769
case REF_STATUS_UPTODATE:
775770
case REF_STATUS_OK:
776771
break;
777772
default:
778-
ret = -1;
773+
ret = ERROR_SEND_PACK_BAD_REF_STATUS;
779774
goto out;
780775
}
781776
}

send-pack.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ struct repository;
1313
#define SEND_PACK_PUSH_CERT_IF_ASKED 1
1414
#define SEND_PACK_PUSH_CERT_ALWAYS 2
1515

16+
/* At least one reference has been rejected by the remote side. */
17+
#define ERROR_SEND_PACK_BAD_REF_STATUS 1
18+
1619
struct send_pack_args {
1720
const char *url;
1821
unsigned verbose:1,
@@ -36,6 +39,16 @@ struct option;
3639
int option_parse_push_signed(const struct option *opt,
3740
const char *arg, int unset);
3841

42+
/*
43+
* Compute a packfile and write it to a file descriptor. The `fd` array needs
44+
* to contain two file descriptors: `fd[0]` is the file descriptor used as
45+
* input for the packet reader, whereas `fd[1]` is the file descriptor the
46+
* packfile will be written to.
47+
*
48+
* Returns 0 on success, non-zero otherwise. Negative return values indicate a
49+
* generic error, whereas positive return values indicate specific error
50+
* conditions as documented with the `ERROR_SEND_PACK_*` constants.
51+
*/
3952
int send_pack(struct repository *r, struct send_pack_args *args,
4053
int fd[], struct child_process *conn,
4154
struct ref *remote_refs, struct oid_array *extra_have);

transport.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -934,6 +934,13 @@ static int git_transport_push(struct transport *transport, struct ref *remote_re
934934
case protocol_v0:
935935
ret = send_pack(the_repository, &args, data->fd, data->conn, remote_refs,
936936
&data->extra_have);
937+
/*
938+
* Ignore the specific error code to maintain consistent behavior
939+
* with the "push_refs()" function across different transports,
940+
* such as "push_refs_with_push()" for HTTP protocol.
941+
*/
942+
if (ret == ERROR_SEND_PACK_BAD_REF_STATUS)
943+
ret = 0;
937944
break;
938945
case protocol_unknown_version:
939946
BUG("unknown protocol version");

0 commit comments

Comments
 (0)