11 #include "list-objects.h"
12 #include "run-command.h"
16 #include "string-list.h"
17 #include "argv-array.h"
19 static const char upload_pack_usage[] = "git upload-pack [--strict] [--timeout=<n>] <dir>";
21 /* Remember to update object flag allocation in object.h */
22 #define THEY_HAVE (1u << 11)
23 #define OUR_REF (1u << 12)
24 #define WANTED (1u << 13)
25 #define COMMON_KNOWN (1u << 14)
26 #define REACHABLE (1u << 15)
28 #define SHALLOW (1u << 16)
29 #define NOT_SHALLOW (1u << 17)
30 #define CLIENT_SHALLOW (1u << 18)
31 #define HIDDEN_REF (1u << 19)
33 static unsigned long oldest_have;
37 static int use_thin_pack, use_ofs_delta, use_include_tag;
38 static int no_progress, daemon_mode;
39 /* Allow specifying sha1 if it is a ref tip. */
40 #define ALLOW_TIP_SHA1 01
41 /* Allow request of a sha1 if it is reachable from a ref (possibly hidden ref). */
42 #define ALLOW_REACHABLE_SHA1 02
43 static unsigned int allow_unadvertised_object_request;
44 static int shallow_nr;
45 static struct object_array have_obj;
46 static struct object_array want_obj;
47 static struct object_array extra_edge_obj;
48 static unsigned int timeout;
49 static int keepalive = 5;
51 * otherwise maximum packet size (up to 65520 bytes).
53 static int use_sideband;
54 static int advertise_refs;
55 static int stateless_rpc;
57 static void reset_timeout(void)
62 static ssize_t send_client_data(int fd, const char *data, ssize_t sz)
65 return send_sideband(1, fd, data, sz, use_sideband);
70 /* XXX: are we happy to lose stuff here? */
74 write_or_die(fd, data, sz);
78 static int write_one_shallow(const struct commit_graft *graft, void *cb_data)
81 if (graft->nr_parent == -1)
82 fprintf(fp, "--shallow %s\n", oid_to_hex(&graft->oid));
86 static void create_pack_file(void)
88 struct child_process pack_objects = CHILD_PROCESS_INIT;
89 char data[8193], progress[128];
90 char abort_msg[] = "aborting due to possible repository "
91 "corruption on the remote side.";
99 argv[arg++] = "--shallow-file";
102 argv[arg++] = "pack-objects";
103 argv[arg++] = "--revs";
105 argv[arg++] = "--thin";
107 argv[arg++] = "--stdout";
109 argv[arg++] = "--shallow";
111 argv[arg++] = "--progress";
113 argv[arg++] = "--delta-base-offset";
115 argv[arg++] = "--include-tag";
118 pack_objects.in = -1;
119 pack_objects.out = -1;
120 pack_objects.err = -1;
121 pack_objects.git_cmd = 1;
122 pack_objects.argv = argv;
124 if (start_command(&pack_objects))
125 die("git upload-pack: unable to fork git-pack-objects");
127 pipe_fd = xfdopen(pack_objects.in, "w");
130 for_each_commit_graft(write_one_shallow, pipe_fd);
132 for (i = 0; i < want_obj.nr; i++)
133 fprintf(pipe_fd, "%s\n",
134 oid_to_hex(&want_obj.objects[i].item->oid));
135 fprintf(pipe_fd, "--not\n");
136 for (i = 0; i < have_obj.nr; i++)
137 fprintf(pipe_fd, "%s\n",
138 oid_to_hex(&have_obj.objects[i].item->oid));
139 for (i = 0; i < extra_edge_obj.nr; i++)
140 fprintf(pipe_fd, "%s\n",
141 oid_to_hex(&extra_edge_obj.objects[i].item->oid));
142 fprintf(pipe_fd, "\n");
146 /* We read from pack_objects.err to capture stderr output for
147 * progress bar, and pack_objects.out to capture the pack data.
151 struct pollfd pfd[2];
152 int pe, pu, pollsize;
160 if (0 <= pack_objects.out) {
161 pfd[pollsize].fd = pack_objects.out;
162 pfd[pollsize].events = POLLIN;
166 if (0 <= pack_objects.err) {
167 pfd[pollsize].fd = pack_objects.err;
168 pfd[pollsize].events = POLLIN;
176 ret = poll(pfd, pollsize,
177 keepalive < 0 ? -1 : 1000 * keepalive);
180 if (errno != EINTR) {
181 error("poll failed, resuming: %s",
187 if (0 <= pe && (pfd[pe].revents & (POLLIN|POLLHUP))) {
188 /* Status ready; we ship that in the side-band
189 * or dump to the standard error.
191 sz = xread(pack_objects.err, progress,
194 send_client_data(2, progress, sz);
196 close(pack_objects.err);
197 pack_objects.err = -1;
201 /* give priority to status messages */
204 if (0 <= pu && (pfd[pu].revents & (POLLIN|POLLHUP))) {
205 /* Data ready; we keep the last byte to ourselves
206 * in case we detect broken rev-list, so that we
207 * can leave the stream corrupted. This is
208 * unfortunate -- unpack-objects would happily
209 * accept a valid packdata with trailing garbage,
210 * so appending garbage after we pass all the
211 * pack data is not good enough to signal
212 * breakage to downstream.
220 sz = xread(pack_objects.out, cp,
221 sizeof(data) - outsz);
225 close(pack_objects.out);
226 pack_objects.out = -1;
232 buffered = data[sz-1] & 0xFF;
237 sz = send_client_data(1, data, sz);
243 * We hit the keepalive timeout without saying anything; send
244 * an empty message on the data sideband just to let the other
245 * side know we're still working on it, but don't have any data
248 * If we don't have a sideband channel, there's no room in the
249 * protocol to say anything, so those clients are just out of
252 if (!ret && use_sideband) {
253 static const char buf[] = "0005\1";
254 write_or_die(1, buf, 5);
258 if (finish_command(&pack_objects)) {
259 error("git upload-pack: git-pack-objects died with error.");
266 sz = send_client_data(1, data, 1);
269 fprintf(stderr, "flushed.\n");
276 send_client_data(3, abort_msg, sizeof(abort_msg));
277 die("git upload-pack: %s", abort_msg);
280 static int got_sha1(const char *hex, unsigned char *sha1)
283 int we_knew_they_have = 0;
285 if (get_sha1_hex(hex, sha1))
286 die("git upload-pack: expected SHA1 object, got '%s'", hex);
287 if (!has_sha1_file(sha1))
290 o = parse_object(sha1);
292 die("oops (%s)", sha1_to_hex(sha1));
293 if (o->type == OBJ_COMMIT) {
294 struct commit_list *parents;
295 struct commit *commit = (struct commit *)o;
296 if (o->flags & THEY_HAVE)
297 we_knew_they_have = 1;
299 o->flags |= THEY_HAVE;
300 if (!oldest_have || (commit->date < oldest_have))
301 oldest_have = commit->date;
302 for (parents = commit->parents;
304 parents = parents->next)
305 parents->item->object.flags |= THEY_HAVE;
307 if (!we_knew_they_have) {
308 add_object_array(o, NULL, &have_obj);
314 static int reachable(struct commit *want)
316 struct commit_list *work = NULL;
318 commit_list_insert_by_date(want, &work);
320 struct commit_list *list;
321 struct commit *commit = pop_commit(&work);
323 if (commit->object.flags & THEY_HAVE) {
324 want->object.flags |= COMMON_KNOWN;
327 if (!commit->object.parsed)
328 parse_object(commit->object.oid.hash);
329 if (commit->object.flags & REACHABLE)
331 commit->object.flags |= REACHABLE;
332 if (commit->date < oldest_have)
334 for (list = commit->parents; list; list = list->next) {
335 struct commit *parent = list->item;
336 if (!(parent->object.flags & REACHABLE))
337 commit_list_insert_by_date(parent, &work);
340 want->object.flags |= REACHABLE;
341 clear_commit_marks(want, REACHABLE);
342 free_commit_list(work);
343 return (want->object.flags & COMMON_KNOWN);
346 static int ok_to_give_up(void)
353 for (i = 0; i < want_obj.nr; i++) {
354 struct object *want = want_obj.objects[i].item;
356 if (want->flags & COMMON_KNOWN)
358 want = deref_tag(want, "a want line", 0);
359 if (!want || want->type != OBJ_COMMIT) {
360 /* no way to tell if this is reachable by
361 * looking at the ancestry chain alone, so
362 * leave a note to ourselves not to worry about
363 * this object anymore.
365 want_obj.objects[i].item->flags |= COMMON_KNOWN;
368 if (!reachable((struct commit *)want))
374 static int get_common_commits(void)
376 unsigned char sha1[20];
382 save_commit_buffer = 0;
385 char *line = packet_read_line(0, NULL);
391 if (multi_ack == 2 && got_common
392 && !got_other && ok_to_give_up()) {
394 packet_write(1, "ACK %s ready\n", last_hex);
396 if (have_obj.nr == 0 || multi_ack)
397 packet_write(1, "NAK\n");
399 if (no_done && sent_ready) {
400 packet_write(1, "ACK %s\n", last_hex);
409 if (skip_prefix(line, "have ", &arg)) {
410 switch (got_sha1(arg, sha1)) {
411 case -1: /* they have what we do not */
413 if (multi_ack && ok_to_give_up()) {
414 const char *hex = sha1_to_hex(sha1);
415 if (multi_ack == 2) {
417 packet_write(1, "ACK %s ready\n", hex);
419 packet_write(1, "ACK %s continue\n", hex);
424 memcpy(last_hex, sha1_to_hex(sha1), 41);
426 packet_write(1, "ACK %s common\n", last_hex);
428 packet_write(1, "ACK %s continue\n", last_hex);
429 else if (have_obj.nr == 1)
430 packet_write(1, "ACK %s\n", last_hex);
435 if (!strcmp(line, "done")) {
436 if (have_obj.nr > 0) {
438 packet_write(1, "ACK %s\n", last_hex);
441 packet_write(1, "NAK\n");
444 die("git upload-pack: expected SHA1 list, got '%s'", line);
448 static int is_our_ref(struct object *o)
450 int allow_hidden_ref = (allow_unadvertised_object_request &
451 (ALLOW_TIP_SHA1 | ALLOW_REACHABLE_SHA1));
452 return o->flags & ((allow_hidden_ref ? HIDDEN_REF : 0) | OUR_REF);
456 * on successful case, it's up to the caller to close cmd->out
458 static int do_reachable_revlist(struct child_process *cmd,
459 struct object_array *src,
460 struct object_array *reachable)
462 static const char *argv[] = {
463 "rev-list", "--stdin", NULL,
466 char namebuf[42]; /* ^ + SHA-1 + LF */
476 * If the next rev-list --stdin encounters an unknown commit,
477 * it terminates, which will cause SIGPIPE in the write loop
480 sigchain_push(SIGPIPE, SIG_IGN);
482 if (start_command(cmd))
487 for (i = get_max_object_index(); 0 < i; ) {
488 o = get_indexed_object(--i);
491 if (reachable && o->type == OBJ_COMMIT)
492 o->flags &= ~TMP_MARK;
495 memcpy(namebuf + 1, oid_to_hex(&o->oid), GIT_SHA1_HEXSZ);
496 if (write_in_full(cmd->in, namebuf, 42) < 0)
500 for (i = 0; i < src->nr; i++) {
501 o = src->objects[i].item;
504 add_object_array(o, NULL, reachable);
507 if (reachable && o->type == OBJ_COMMIT)
508 o->flags |= TMP_MARK;
509 memcpy(namebuf, oid_to_hex(&o->oid), GIT_SHA1_HEXSZ);
510 if (write_in_full(cmd->in, namebuf, 41) < 0)
515 sigchain_pop(SIGPIPE);
520 sigchain_pop(SIGPIPE);
529 static int get_reachable_list(struct object_array *src,
530 struct object_array *reachable)
532 struct child_process cmd = CHILD_PROCESS_INIT;
535 char namebuf[42]; /* ^ + SHA-1 + LF */
537 if (do_reachable_revlist(&cmd, src, reachable) < 0)
540 while ((i = read_in_full(cmd.out, namebuf, 41)) == 41) {
541 struct object_id sha1;
543 if (namebuf[40] != '\n' || get_oid_hex(namebuf, &sha1))
546 o = lookup_object(sha1.hash);
547 if (o && o->type == OBJ_COMMIT) {
548 o->flags &= ~TMP_MARK;
551 for (i = get_max_object_index(); 0 < i; i--) {
552 o = get_indexed_object(i - 1);
553 if (o && o->type == OBJ_COMMIT &&
554 (o->flags & TMP_MARK)) {
555 add_object_array(o, NULL, reachable);
556 o->flags &= ~TMP_MARK;
561 if (finish_command(&cmd))
567 static int has_unreachable(struct object_array *src)
569 struct child_process cmd = CHILD_PROCESS_INIT;
573 if (do_reachable_revlist(&cmd, src, NULL) < 0)
577 * The commits out of the rev-list are not ancestors of
580 i = read_in_full(cmd.out, buf, 1);
587 * rev-list may have died by encountering a bad commit
588 * in the history, in which case we do want to bail out
589 * even when it showed no commit.
591 if (finish_command(&cmd))
594 /* All the non-tip ones are ancestors of what we advertised */
598 sigchain_pop(SIGPIPE);
604 static void check_non_tip(void)
609 * In the normal in-process case without
610 * uploadpack.allowReachableSHA1InWant,
611 * non-tip requests can never happen.
613 if (!stateless_rpc && !(allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1))
615 if (!has_unreachable(&want_obj))
616 /* All the non-tip ones are ancestors of what we advertised */
620 /* Pick one of them (we know there at least is one) */
621 for (i = 0; i < want_obj.nr; i++) {
622 struct object *o = want_obj.objects[i].item;
624 die("git upload-pack: not our ref %s",
625 oid_to_hex(&o->oid));
629 static void send_shallow(struct commit_list *result)
632 struct object *object = &result->item->object;
633 if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) {
634 packet_write(1, "shallow %s",
635 oid_to_hex(&object->oid));
636 register_shallow(object->oid.hash);
639 result = result->next;
643 static void send_unshallow(const struct object_array *shallows)
647 for (i = 0; i < shallows->nr; i++) {
648 struct object *object = shallows->objects[i].item;
649 if (object->flags & NOT_SHALLOW) {
650 struct commit_list *parents;
651 packet_write(1, "unshallow %s",
652 oid_to_hex(&object->oid));
653 object->flags &= ~CLIENT_SHALLOW;
655 * We want to _register_ "object" as shallow, but we
656 * also need to traverse object's parents to deepen a
657 * shallow clone. Unregister it for now so we can
658 * parse and add the parents to the want list, then
661 unregister_shallow(object->oid.hash);
663 parse_commit_or_die((struct commit *)object);
664 parents = ((struct commit *)object)->parents;
666 add_object_array(&parents->item->object,
668 parents = parents->next;
670 add_object_array(object, NULL, &extra_edge_obj);
672 /* make sure commit traversal conforms to client */
673 register_shallow(object->oid.hash);
677 static void deepen(int depth, const struct object_array *shallows)
679 if (depth == INFINITE_DEPTH && !is_repository_shallow()) {
682 for (i = 0; i < shallows->nr; i++) {
683 struct object *object = shallows->objects[i].item;
684 object->flags |= NOT_SHALLOW;
687 struct commit_list *result;
689 result = get_shallow_commits(&want_obj, depth,
690 SHALLOW, NOT_SHALLOW);
691 send_shallow(result);
692 free_commit_list(result);
695 send_unshallow(shallows);
699 static void deepen_by_rev_list(int ac, const char **av,
700 struct object_array *shallows)
702 struct commit_list *result;
704 result = get_shallow_commits_by_rev_list(ac, av, SHALLOW, NOT_SHALLOW);
705 send_shallow(result);
706 free_commit_list(result);
707 send_unshallow(shallows);
711 static void receive_needs(void)
713 struct object_array shallows = OBJECT_ARRAY_INIT;
714 struct string_list deepen_not = STRING_LIST_INIT_DUP;
717 unsigned long deepen_since = 0;
718 int deepen_rev_list = 0;
723 const char *features;
724 unsigned char sha1_buf[20];
725 char *line = packet_read_line(0, NULL);
732 if (skip_prefix(line, "shallow ", &arg)) {
733 unsigned char sha1[20];
734 struct object *object;
735 if (get_sha1_hex(arg, sha1))
736 die("invalid shallow line: %s", line);
737 object = parse_object(sha1);
740 if (object->type != OBJ_COMMIT)
741 die("invalid shallow object %s", sha1_to_hex(sha1));
742 if (!(object->flags & CLIENT_SHALLOW)) {
743 object->flags |= CLIENT_SHALLOW;
744 add_object_array(object, NULL, &shallows);
748 if (skip_prefix(line, "deepen ", &arg)) {
750 depth = strtol(arg, &end, 0);
751 if (!end || *end || depth <= 0)
752 die("Invalid deepen: %s", line);
755 if (skip_prefix(line, "deepen-since ", &arg)) {
757 deepen_since = strtoul(arg, &end, 0);
758 if (!end || *end || !deepen_since ||
759 /* revisions.c's max_age -1 is special */
761 die("Invalid deepen-since: %s", line);
765 if (skip_prefix(line, "deepen-not ", &arg)) {
767 unsigned char sha1[20];
768 if (expand_ref(arg, strlen(arg), sha1, &ref) != 1)
769 die("git upload-pack: ambiguous deepen-not: %s", line);
770 string_list_append(&deepen_not, ref);
775 if (!skip_prefix(line, "want ", &arg) ||
776 get_sha1_hex(arg, sha1_buf))
777 die("git upload-pack: protocol error, "
778 "expected to get sha, not '%s'", line);
782 if (parse_feature_request(features, "multi_ack_detailed"))
784 else if (parse_feature_request(features, "multi_ack"))
786 if (parse_feature_request(features, "no-done"))
788 if (parse_feature_request(features, "thin-pack"))
790 if (parse_feature_request(features, "ofs-delta"))
792 if (parse_feature_request(features, "side-band-64k"))
793 use_sideband = LARGE_PACKET_MAX;
794 else if (parse_feature_request(features, "side-band"))
795 use_sideband = DEFAULT_PACKET_MAX;
796 if (parse_feature_request(features, "no-progress"))
798 if (parse_feature_request(features, "include-tag"))
801 o = parse_object(sha1_buf);
803 die("git upload-pack: not our ref %s",
804 sha1_to_hex(sha1_buf));
805 if (!(o->flags & WANTED)) {
809 add_object_array(o, NULL, &want_obj);
814 * We have sent all our refs already, and the other end
815 * should have chosen out of them. When we are operating
816 * in the stateless RPC mode, however, their choice may
817 * have been based on the set of older refs advertised
818 * by another process that handled the initial request.
823 if (!use_sideband && daemon_mode)
826 if (depth == 0 && !deepen_rev_list && shallows.nr == 0)
828 if (depth > 0 && deepen_rev_list)
829 die("git upload-pack: deepen and deepen-since (or deepen-not) cannot be used together");
831 deepen(depth, &shallows);
832 else if (deepen_rev_list) {
833 struct argv_array av = ARGV_ARRAY_INIT;
836 argv_array_push(&av, "rev-list");
838 argv_array_pushf(&av, "--max-age=%lu", deepen_since);
840 argv_array_push(&av, "--not");
841 for (i = 0; i < deepen_not.nr; i++) {
842 struct string_list_item *s = deepen_not.items + i;
843 argv_array_push(&av, s->string);
845 argv_array_push(&av, "--not");
847 for (i = 0; i < want_obj.nr; i++) {
848 struct object *o = want_obj.objects[i].item;
849 argv_array_push(&av, oid_to_hex(&o->oid));
851 deepen_by_rev_list(av.argc, av.argv, &shallows);
852 argv_array_clear(&av);
855 if (shallows.nr > 0) {
857 for (i = 0; i < shallows.nr; i++)
858 register_shallow(shallows.objects[i].item->oid.hash);
861 shallow_nr += shallows.nr;
862 free(shallows.objects);
865 /* return non-zero if the ref is hidden, otherwise 0 */
866 static int mark_our_ref(const char *refname, const char *refname_full,
867 const struct object_id *oid)
869 struct object *o = lookup_unknown_object(oid->hash);
871 if (ref_is_hidden(refname, refname_full)) {
872 o->flags |= HIDDEN_REF;
879 static int check_ref(const char *refname_full, const struct object_id *oid,
880 int flag, void *cb_data)
882 const char *refname = strip_namespace(refname_full);
884 mark_our_ref(refname, refname_full, oid);
888 static void format_symref_info(struct strbuf *buf, struct string_list *symref)
890 struct string_list_item *item;
894 for_each_string_list_item(item, symref)
895 strbuf_addf(buf, " symref=%s:%s", item->string, (char *)item->util);
898 static int send_ref(const char *refname, const struct object_id *oid,
899 int flag, void *cb_data)
901 static const char *capabilities = "multi_ack thin-pack side-band"
902 " side-band-64k ofs-delta shallow deepen-since deepen-not no-progress"
903 " include-tag multi_ack_detailed";
904 const char *refname_nons = strip_namespace(refname);
905 struct object_id peeled;
907 if (mark_our_ref(refname_nons, refname, oid))
911 struct strbuf symref_info = STRBUF_INIT;
913 format_symref_info(&symref_info, cb_data);
914 packet_write(1, "%s %s%c%s%s%s%s%s agent=%s\n",
915 oid_to_hex(oid), refname_nons,
917 (allow_unadvertised_object_request & ALLOW_TIP_SHA1) ?
918 " allow-tip-sha1-in-want" : "",
919 (allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1) ?
920 " allow-reachable-sha1-in-want" : "",
921 stateless_rpc ? " no-done" : "",
923 git_user_agent_sanitized());
924 strbuf_release(&symref_info);
926 packet_write(1, "%s %s\n", oid_to_hex(oid), refname_nons);
929 if (!peel_ref(refname, peeled.hash))
930 packet_write(1, "%s %s^{}\n", oid_to_hex(&peeled), refname_nons);
934 static int find_symref(const char *refname, const struct object_id *oid,
935 int flag, void *cb_data)
937 const char *symref_target;
938 struct string_list_item *item;
939 struct object_id unused;
941 if ((flag & REF_ISSYMREF) == 0)
943 symref_target = resolve_ref_unsafe(refname, 0, unused.hash, &flag);
944 if (!symref_target || (flag & REF_ISSYMREF) == 0)
945 die("'%s' is a symref but it is not?", refname);
946 item = string_list_append(cb_data, refname);
947 item->util = xstrdup(symref_target);
951 static void upload_pack(void)
953 struct string_list symref = STRING_LIST_INIT_DUP;
955 head_ref_namespaced(find_symref, &symref);
957 if (advertise_refs || !stateless_rpc) {
959 head_ref_namespaced(send_ref, &symref);
960 for_each_namespaced_ref(send_ref, &symref);
961 advertise_shallow_grafts(1);
964 head_ref_namespaced(check_ref, NULL);
965 for_each_namespaced_ref(check_ref, NULL);
967 string_list_clear(&symref, 1);
973 get_common_commits();
978 static int upload_pack_config(const char *var, const char *value, void *unused)
980 if (!strcmp("uploadpack.allowtipsha1inwant", var)) {
981 if (git_config_bool(var, value))
982 allow_unadvertised_object_request |= ALLOW_TIP_SHA1;
984 allow_unadvertised_object_request &= ~ALLOW_TIP_SHA1;
985 } else if (!strcmp("uploadpack.allowreachablesha1inwant", var)) {
986 if (git_config_bool(var, value))
987 allow_unadvertised_object_request |= ALLOW_REACHABLE_SHA1;
989 allow_unadvertised_object_request &= ~ALLOW_REACHABLE_SHA1;
990 } else if (!strcmp("uploadpack.keepalive", var)) {
991 keepalive = git_config_int(var, value);
995 return parse_hide_refs_config(var, value, "uploadpack");
998 int main(int argc, char **argv)
1004 git_setup_gettext();
1006 packet_trace_identity("upload-pack");
1007 git_extract_argv0_path(argv[0]);
1008 check_replace_refs = 0;
1010 for (i = 1; i < argc; i++) {
1011 const char *arg = argv[i];
1015 if (!strcmp(arg, "--advertise-refs")) {
1019 if (!strcmp(arg, "--stateless-rpc")) {
1023 if (!strcmp(arg, "--strict")) {
1027 if (skip_prefix(arg, "--timeout=", &arg)) {
1028 timeout = atoi(arg);
1032 if (!strcmp(arg, "--")) {
1039 usage(upload_pack_usage);
1045 if (!enter_repo(dir, strict))
1046 die("'%s' does not appear to be a git repository", dir);
1048 git_config(upload_pack_config, NULL);