4 #include "run-command.h"
6 #include "fetch-pack.h"
16 #include "submodule.h"
17 #include "string-list.h"
18 #include "sha1-array.h"
21 static void set_upstreams(struct transport *transport, struct ref *refs,
25 for (ref = refs; ref; ref = ref->next) {
26 const char *localname;
28 const char *remotename;
31 * Check suitability for tracking. Must be successful /
32 * already up-to-date ref create/modify (not delete).
34 if (ref->status != REF_STATUS_OK &&
35 ref->status != REF_STATUS_UPTODATE)
39 if (is_null_oid(&ref->new_oid))
42 /* Follow symbolic refs (mainly for HEAD). */
43 localname = ref->peer_ref->name;
44 remotename = ref->name;
45 tmp = resolve_ref_unsafe(localname, RESOLVE_REF_READING,
47 if (tmp && flag & REF_ISSYMREF &&
48 starts_with(tmp, "refs/heads/"))
51 /* Both source and destination must be local branches. */
52 if (!localname || !starts_with(localname, "refs/heads/"))
54 if (!remotename || !starts_with(remotename, "refs/heads/"))
58 install_branch_config(BRANCH_CONFIG_VERBOSE,
59 localname + 11, transport->remote->name,
62 printf(_("Would set upstream of '%s' to '%s' of '%s'\n"),
63 localname + 11, remotename + 11,
64 transport->remote->name);
68 struct bundle_transport_data {
70 struct bundle_header header;
73 static struct ref *get_refs_from_bundle(struct transport *transport, int for_push)
75 struct bundle_transport_data *data = transport->data;
76 struct ref *result = NULL;
84 data->fd = read_bundle_header(transport->url, &data->header);
86 die ("Could not read bundle '%s'.", transport->url);
87 for (i = 0; i < data->header.references.nr; i++) {
88 struct ref_list_entry *e = data->header.references.list + i;
89 struct ref *ref = alloc_ref(e->name);
90 oidcpy(&ref->old_oid, &e->oid);
97 static int fetch_refs_from_bundle(struct transport *transport,
98 int nr_heads, struct ref **to_fetch)
100 struct bundle_transport_data *data = transport->data;
101 return unbundle(&data->header, data->fd,
102 transport->progress ? BUNDLE_VERBOSE : 0);
105 static int close_bundle(struct transport *transport)
107 struct bundle_transport_data *data = transport->data;
114 struct git_transport_data {
115 struct git_transport_options options;
116 struct child_process *conn;
118 unsigned got_remote_heads : 1;
119 struct oid_array extra_have;
120 struct oid_array shallow;
123 static int set_git_option(struct git_transport_options *opts,
124 const char *name, const char *value)
126 if (!strcmp(name, TRANS_OPT_UPLOADPACK)) {
127 opts->uploadpack = value;
129 } else if (!strcmp(name, TRANS_OPT_RECEIVEPACK)) {
130 opts->receivepack = value;
132 } else if (!strcmp(name, TRANS_OPT_THIN)) {
133 opts->thin = !!value;
135 } else if (!strcmp(name, TRANS_OPT_FOLLOWTAGS)) {
136 opts->followtags = !!value;
138 } else if (!strcmp(name, TRANS_OPT_KEEP)) {
139 opts->keep = !!value;
141 } else if (!strcmp(name, TRANS_OPT_UPDATE_SHALLOW)) {
142 opts->update_shallow = !!value;
144 } else if (!strcmp(name, TRANS_OPT_DEPTH)) {
149 opts->depth = strtol(value, &end, 0);
151 die(_("transport: invalid depth option '%s'"), value);
154 } else if (!strcmp(name, TRANS_OPT_DEEPEN_SINCE)) {
155 opts->deepen_since = value;
157 } else if (!strcmp(name, TRANS_OPT_DEEPEN_NOT)) {
158 opts->deepen_not = (const struct string_list *)value;
160 } else if (!strcmp(name, TRANS_OPT_DEEPEN_RELATIVE)) {
161 opts->deepen_relative = !!value;
167 static int connect_setup(struct transport *transport, int for_push)
169 struct git_transport_data *data = transport->data;
170 int flags = transport->verbose > 0 ? CONNECT_VERBOSE : 0;
175 switch (transport->family) {
176 case TRANSPORT_FAMILY_ALL: break;
177 case TRANSPORT_FAMILY_IPV4: flags |= CONNECT_IPV4; break;
178 case TRANSPORT_FAMILY_IPV6: flags |= CONNECT_IPV6; break;
181 data->conn = git_connect(data->fd, transport->url,
182 for_push ? data->options.receivepack :
183 data->options.uploadpack,
189 static struct ref *get_refs_via_connect(struct transport *transport, int for_push)
191 struct git_transport_data *data = transport->data;
194 connect_setup(transport, for_push);
195 get_remote_heads(data->fd[0], NULL, 0, &refs,
196 for_push ? REF_NORMAL : 0,
199 data->got_remote_heads = 1;
204 static int fetch_refs_via_pack(struct transport *transport,
205 int nr_heads, struct ref **to_fetch)
208 struct git_transport_data *data = transport->data;
210 char *dest = xstrdup(transport->url);
211 struct fetch_pack_args args;
212 struct ref *refs_tmp = NULL;
214 memset(&args, 0, sizeof(args));
215 args.uploadpack = data->options.uploadpack;
216 args.keep_pack = data->options.keep;
218 args.use_thin_pack = data->options.thin;
219 args.include_tag = data->options.followtags;
220 args.verbose = (transport->verbose > 1);
221 args.quiet = (transport->verbose < 0);
222 args.no_progress = !transport->progress;
223 args.depth = data->options.depth;
224 args.deepen_since = data->options.deepen_since;
225 args.deepen_not = data->options.deepen_not;
226 args.deepen_relative = data->options.deepen_relative;
227 args.check_self_contained_and_connected =
228 data->options.check_self_contained_and_connected;
229 args.cloning = transport->cloning;
230 args.update_shallow = data->options.update_shallow;
232 if (!data->got_remote_heads) {
233 connect_setup(transport, 0);
234 get_remote_heads(data->fd[0], NULL, 0, &refs_tmp, 0,
235 NULL, &data->shallow);
236 data->got_remote_heads = 1;
239 refs = fetch_pack(&args, data->fd, data->conn,
240 refs_tmp ? refs_tmp : transport->remote_refs,
241 dest, to_fetch, nr_heads, &data->shallow,
242 &transport->pack_lockfile);
245 if (finish_connect(data->conn))
248 data->got_remote_heads = 0;
249 data->options.self_contained_and_connected =
250 args.self_contained_and_connected;
254 if (report_unmatched_refs(to_fetch, nr_heads))
263 static int push_had_errors(struct ref *ref)
265 for (; ref; ref = ref->next) {
266 switch (ref->status) {
267 case REF_STATUS_NONE:
268 case REF_STATUS_UPTODATE:
278 int transport_refs_pushed(struct ref *ref)
280 for (; ref; ref = ref->next) {
281 switch(ref->status) {
282 case REF_STATUS_NONE:
283 case REF_STATUS_UPTODATE:
292 void transport_update_tracking_ref(struct remote *remote, struct ref *ref, int verbose)
296 if (ref->status != REF_STATUS_OK && ref->status != REF_STATUS_UPTODATE)
302 if (!remote_find_tracking(remote, &rs)) {
304 fprintf(stderr, "updating local tracking ref '%s'\n", rs.dst);
306 delete_ref(NULL, rs.dst, NULL, 0);
308 update_ref("update by push", rs.dst,
309 ref->new_oid.hash, NULL, 0, 0);
314 static void print_ref_status(char flag, const char *summary,
315 struct ref *to, struct ref *from, const char *msg,
316 int porcelain, int summary_width)
320 fprintf(stdout, "%c\t%s:%s\t", flag, from->name, to->name);
322 fprintf(stdout, "%c\t:%s\t", flag, to->name);
324 fprintf(stdout, "%s (%s)\n", summary, msg);
326 fprintf(stdout, "%s\n", summary);
328 fprintf(stderr, " %c %-*s ", flag, summary_width, summary);
330 fprintf(stderr, "%s -> %s", prettify_refname(from->name), prettify_refname(to->name));
332 fputs(prettify_refname(to->name), stderr);
342 static void print_ok_ref_status(struct ref *ref, int porcelain, int summary_width)
345 print_ref_status('-', "[deleted]", ref, NULL, NULL,
346 porcelain, summary_width);
347 else if (is_null_oid(&ref->old_oid))
348 print_ref_status('*',
349 (starts_with(ref->name, "refs/tags/") ? "[new tag]" :
351 ref, ref->peer_ref, NULL, porcelain, summary_width);
353 struct strbuf quickref = STRBUF_INIT;
357 strbuf_add_unique_abbrev(&quickref, ref->old_oid.hash,
359 if (ref->forced_update) {
360 strbuf_addstr(&quickref, "...");
362 msg = "forced update";
364 strbuf_addstr(&quickref, "..");
368 strbuf_add_unique_abbrev(&quickref, ref->new_oid.hash,
371 print_ref_status(type, quickref.buf, ref, ref->peer_ref, msg,
372 porcelain, summary_width);
373 strbuf_release(&quickref);
377 static int print_one_push_status(struct ref *ref, const char *dest, int count,
378 int porcelain, int summary_width)
381 char *url = transport_anonymize_url(dest);
382 fprintf(porcelain ? stdout : stderr, "To %s\n", url);
386 switch(ref->status) {
387 case REF_STATUS_NONE:
388 print_ref_status('X', "[no match]", ref, NULL, NULL,
389 porcelain, summary_width);
391 case REF_STATUS_REJECT_NODELETE:
392 print_ref_status('!', "[rejected]", ref, NULL,
393 "remote does not support deleting refs",
394 porcelain, summary_width);
396 case REF_STATUS_UPTODATE:
397 print_ref_status('=', "[up to date]", ref,
398 ref->peer_ref, NULL, porcelain, summary_width);
400 case REF_STATUS_REJECT_NONFASTFORWARD:
401 print_ref_status('!', "[rejected]", ref, ref->peer_ref,
402 "non-fast-forward", porcelain, summary_width);
404 case REF_STATUS_REJECT_ALREADY_EXISTS:
405 print_ref_status('!', "[rejected]", ref, ref->peer_ref,
406 "already exists", porcelain, summary_width);
408 case REF_STATUS_REJECT_FETCH_FIRST:
409 print_ref_status('!', "[rejected]", ref, ref->peer_ref,
410 "fetch first", porcelain, summary_width);
412 case REF_STATUS_REJECT_NEEDS_FORCE:
413 print_ref_status('!', "[rejected]", ref, ref->peer_ref,
414 "needs force", porcelain, summary_width);
416 case REF_STATUS_REJECT_STALE:
417 print_ref_status('!', "[rejected]", ref, ref->peer_ref,
418 "stale info", porcelain, summary_width);
420 case REF_STATUS_REJECT_SHALLOW:
421 print_ref_status('!', "[rejected]", ref, ref->peer_ref,
422 "new shallow roots not allowed",
423 porcelain, summary_width);
425 case REF_STATUS_REMOTE_REJECT:
426 print_ref_status('!', "[remote rejected]", ref,
427 ref->deletion ? NULL : ref->peer_ref,
428 ref->remote_status, porcelain, summary_width);
430 case REF_STATUS_EXPECTING_REPORT:
431 print_ref_status('!', "[remote failure]", ref,
432 ref->deletion ? NULL : ref->peer_ref,
433 "remote failed to report status",
434 porcelain, summary_width);
436 case REF_STATUS_ATOMIC_PUSH_FAILED:
437 print_ref_status('!', "[rejected]", ref, ref->peer_ref,
438 "atomic push failed", porcelain, summary_width);
441 print_ok_ref_status(ref, porcelain, summary_width);
448 static int measure_abbrev(const struct object_id *oid, int sofar)
450 char hex[GIT_MAX_HEXSZ + 1];
451 int w = find_unique_abbrev_r(hex, oid->hash, DEFAULT_ABBREV);
453 return (w < sofar) ? sofar : w;
456 int transport_summary_width(const struct ref *refs)
460 for (; refs; refs = refs->next) {
461 maxw = measure_abbrev(&refs->old_oid, maxw);
462 maxw = measure_abbrev(&refs->new_oid, maxw);
465 maxw = FALLBACK_DEFAULT_ABBREV;
466 return (2 * maxw + 3);
469 void transport_print_push_status(const char *dest, struct ref *refs,
470 int verbose, int porcelain, unsigned int *reject_reasons)
475 int summary_width = transport_summary_width(refs);
477 head = resolve_refdup("HEAD", RESOLVE_REF_READING, NULL, NULL);
480 for (ref = refs; ref; ref = ref->next)
481 if (ref->status == REF_STATUS_UPTODATE)
482 n += print_one_push_status(ref, dest, n,
483 porcelain, summary_width);
486 for (ref = refs; ref; ref = ref->next)
487 if (ref->status == REF_STATUS_OK)
488 n += print_one_push_status(ref, dest, n,
489 porcelain, summary_width);
492 for (ref = refs; ref; ref = ref->next) {
493 if (ref->status != REF_STATUS_NONE &&
494 ref->status != REF_STATUS_UPTODATE &&
495 ref->status != REF_STATUS_OK)
496 n += print_one_push_status(ref, dest, n,
497 porcelain, summary_width);
498 if (ref->status == REF_STATUS_REJECT_NONFASTFORWARD) {
499 if (head != NULL && !strcmp(head, ref->name))
500 *reject_reasons |= REJECT_NON_FF_HEAD;
502 *reject_reasons |= REJECT_NON_FF_OTHER;
503 } else if (ref->status == REF_STATUS_REJECT_ALREADY_EXISTS) {
504 *reject_reasons |= REJECT_ALREADY_EXISTS;
505 } else if (ref->status == REF_STATUS_REJECT_FETCH_FIRST) {
506 *reject_reasons |= REJECT_FETCH_FIRST;
507 } else if (ref->status == REF_STATUS_REJECT_NEEDS_FORCE) {
508 *reject_reasons |= REJECT_NEEDS_FORCE;
514 void transport_verify_remote_names(int nr_heads, const char **heads)
518 for (i = 0; i < nr_heads; i++) {
519 const char *local = heads[i];
520 const char *remote = strrchr(heads[i], ':');
525 /* A matching refspec is okay. */
526 if (remote == local && remote[1] == '\0')
529 remote = remote ? (remote + 1) : local;
530 if (check_refname_format(remote,
531 REFNAME_ALLOW_ONELEVEL|REFNAME_REFSPEC_PATTERN))
532 die("remote part of refspec is not a valid name in %s",
537 static int git_transport_push(struct transport *transport, struct ref *remote_refs, int flags)
539 struct git_transport_data *data = transport->data;
540 struct send_pack_args args;
543 if (!data->got_remote_heads) {
544 struct ref *tmp_refs;
545 connect_setup(transport, 1);
547 get_remote_heads(data->fd[0], NULL, 0, &tmp_refs, REF_NORMAL,
548 NULL, &data->shallow);
549 data->got_remote_heads = 1;
552 memset(&args, 0, sizeof(args));
553 args.send_mirror = !!(flags & TRANSPORT_PUSH_MIRROR);
554 args.force_update = !!(flags & TRANSPORT_PUSH_FORCE);
555 args.use_thin_pack = data->options.thin;
556 args.verbose = (transport->verbose > 0);
557 args.quiet = (transport->verbose < 0);
558 args.progress = transport->progress;
559 args.dry_run = !!(flags & TRANSPORT_PUSH_DRY_RUN);
560 args.porcelain = !!(flags & TRANSPORT_PUSH_PORCELAIN);
561 args.atomic = !!(flags & TRANSPORT_PUSH_ATOMIC);
562 args.push_options = transport->push_options;
563 args.url = transport->url;
565 if (flags & TRANSPORT_PUSH_CERT_ALWAYS)
566 args.push_cert = SEND_PACK_PUSH_CERT_ALWAYS;
567 else if (flags & TRANSPORT_PUSH_CERT_IF_ASKED)
568 args.push_cert = SEND_PACK_PUSH_CERT_IF_ASKED;
570 args.push_cert = SEND_PACK_PUSH_CERT_NEVER;
572 ret = send_pack(&args, data->fd, data->conn, remote_refs,
577 ret |= finish_connect(data->conn);
579 data->got_remote_heads = 0;
584 static int connect_git(struct transport *transport, const char *name,
585 const char *executable, int fd[2])
587 struct git_transport_data *data = transport->data;
588 data->conn = git_connect(data->fd, transport->url,
595 static int disconnect_git(struct transport *transport)
597 struct git_transport_data *data = transport->data;
599 if (data->got_remote_heads)
600 packet_flush(data->fd[1]);
603 finish_connect(data->conn);
610 void transport_take_over(struct transport *transport,
611 struct child_process *child)
613 struct git_transport_data *data;
615 if (!transport->smart_options)
616 die("BUG: taking over transport requires non-NULL "
617 "smart_options field.");
619 data = xcalloc(1, sizeof(*data));
620 data->options = *transport->smart_options;
622 data->fd[0] = data->conn->out;
623 data->fd[1] = data->conn->in;
624 data->got_remote_heads = 0;
625 transport->data = data;
627 transport->set_option = NULL;
628 transport->get_refs_list = get_refs_via_connect;
629 transport->fetch = fetch_refs_via_pack;
630 transport->push = NULL;
631 transport->push_refs = git_transport_push;
632 transport->disconnect = disconnect_git;
633 transport->smart_options = &(data->options);
635 transport->cannot_reuse = 1;
638 static int is_file(const char *url)
643 return S_ISREG(buf.st_mode);
646 static int external_specification_len(const char *url)
648 return strchr(url, ':') - url;
651 static const struct string_list *protocol_whitelist(void)
653 static int enabled = -1;
654 static struct string_list allowed = STRING_LIST_INIT_DUP;
657 const char *v = getenv("GIT_ALLOW_PROTOCOL");
659 string_list_split(&allowed, v, ':', -1);
660 string_list_sort(&allowed);
667 return enabled ? &allowed : NULL;
670 enum protocol_allow_config {
671 PROTOCOL_ALLOW_NEVER = 0,
672 PROTOCOL_ALLOW_USER_ONLY,
673 PROTOCOL_ALLOW_ALWAYS
676 static enum protocol_allow_config parse_protocol_config(const char *key,
679 if (!strcasecmp(value, "always"))
680 return PROTOCOL_ALLOW_ALWAYS;
681 else if (!strcasecmp(value, "never"))
682 return PROTOCOL_ALLOW_NEVER;
683 else if (!strcasecmp(value, "user"))
684 return PROTOCOL_ALLOW_USER_ONLY;
686 die("unknown value for config '%s': %s", key, value);
689 static enum protocol_allow_config get_protocol_config(const char *type)
691 char *key = xstrfmt("protocol.%s.allow", type);
694 /* first check the per-protocol config */
695 if (!git_config_get_string(key, &value)) {
696 enum protocol_allow_config ret =
697 parse_protocol_config(key, value);
704 /* if defined, fallback to user-defined default for unknown protocols */
705 if (!git_config_get_string("protocol.allow", &value)) {
706 enum protocol_allow_config ret =
707 parse_protocol_config("protocol.allow", value);
712 /* fallback to built-in defaults */
714 if (!strcmp(type, "http") ||
715 !strcmp(type, "https") ||
716 !strcmp(type, "git") ||
717 !strcmp(type, "ssh") ||
718 !strcmp(type, "file"))
719 return PROTOCOL_ALLOW_ALWAYS;
721 /* known scary; err on the side of caution */
722 if (!strcmp(type, "ext"))
723 return PROTOCOL_ALLOW_NEVER;
725 /* unknown; by default let them be used only directly by the user */
726 return PROTOCOL_ALLOW_USER_ONLY;
729 int is_transport_allowed(const char *type, int from_user)
731 const struct string_list *whitelist = protocol_whitelist();
733 return string_list_has_string(whitelist, type);
735 switch (get_protocol_config(type)) {
736 case PROTOCOL_ALLOW_ALWAYS:
738 case PROTOCOL_ALLOW_NEVER:
740 case PROTOCOL_ALLOW_USER_ONLY:
742 from_user = git_env_bool("GIT_PROTOCOL_FROM_USER", 1);
746 die("BUG: invalid protocol_allow_config type");
749 void transport_check_allowed(const char *type)
751 if (!is_transport_allowed(type, -1))
752 die("transport '%s' not allowed", type);
755 struct transport *transport_get(struct remote *remote, const char *url)
758 struct transport *ret = xcalloc(1, sizeof(*ret));
760 ret->progress = isatty(2);
763 die("No remote provided to transport_get()");
765 ret->got_remote_refs = 0;
766 ret->remote = remote;
767 helper = remote->foreign_vcs;
769 if (!url && remote->url)
770 url = remote->url[0];
773 /* maybe it is a foreign URL? */
777 while (is_urlschemechar(p == url, *p))
779 if (starts_with(p, "::"))
780 helper = xstrndup(url, p - url);
784 transport_helper_init(ret, helper);
785 } else if (starts_with(url, "rsync:")) {
786 die("git-over-rsync is no longer supported");
787 } else if (url_is_local_not_ssh(url) && is_file(url) && is_bundle(url, 1)) {
788 struct bundle_transport_data *data = xcalloc(1, sizeof(*data));
789 transport_check_allowed("file");
791 ret->get_refs_list = get_refs_from_bundle;
792 ret->fetch = fetch_refs_from_bundle;
793 ret->disconnect = close_bundle;
794 ret->smart_options = NULL;
795 } else if (!is_url(url)
796 || starts_with(url, "file://")
797 || starts_with(url, "git://")
798 || starts_with(url, "ssh://")
799 || starts_with(url, "git+ssh://") /* deprecated - do not use */
800 || starts_with(url, "ssh+git://") /* deprecated - do not use */
803 * These are builtin smart transports; "allowed" transports
804 * will be checked individually in git_connect.
806 struct git_transport_data *data = xcalloc(1, sizeof(*data));
808 ret->set_option = NULL;
809 ret->get_refs_list = get_refs_via_connect;
810 ret->fetch = fetch_refs_via_pack;
811 ret->push_refs = git_transport_push;
812 ret->connect = connect_git;
813 ret->disconnect = disconnect_git;
814 ret->smart_options = &(data->options);
817 data->got_remote_heads = 0;
819 /* Unknown protocol in URL. Pass to external handler. */
820 int len = external_specification_len(url);
821 char *handler = xmemdupz(url, len);
822 transport_helper_init(ret, handler);
825 if (ret->smart_options) {
826 ret->smart_options->thin = 1;
827 ret->smart_options->uploadpack = "git-upload-pack";
828 if (remote->uploadpack)
829 ret->smart_options->uploadpack = remote->uploadpack;
830 ret->smart_options->receivepack = "git-receive-pack";
831 if (remote->receivepack)
832 ret->smart_options->receivepack = remote->receivepack;
838 int transport_set_option(struct transport *transport,
839 const char *name, const char *value)
841 int git_reports = 1, protocol_reports = 1;
843 if (transport->smart_options)
844 git_reports = set_git_option(transport->smart_options,
847 if (transport->set_option)
848 protocol_reports = transport->set_option(transport, name,
851 /* If either report is 0, report 0 (success). */
852 if (!git_reports || !protocol_reports)
854 /* If either reports -1 (invalid value), report -1. */
855 if ((git_reports == -1) || (protocol_reports == -1))
857 /* Otherwise if both report unknown, report unknown. */
861 void transport_set_verbosity(struct transport *transport, int verbosity,
865 transport->verbose = verbosity <= 3 ? verbosity : 3;
867 transport->verbose = -1;
870 * Rules used to determine whether to report progress (processing aborts
871 * when a rule is satisfied):
873 * . Report progress, if force_progress is 1 (ie. --progress).
874 * . Don't report progress, if force_progress is 0 (ie. --no-progress).
875 * . Don't report progress, if verbosity < 0 (ie. -q/--quiet ).
876 * . Report progress if isatty(2) is 1.
878 if (force_progress >= 0)
879 transport->progress = !!force_progress;
881 transport->progress = verbosity >= 0 && isatty(2);
884 static void die_with_unpushed_submodules(struct string_list *needs_pushing)
888 fprintf(stderr, _("The following submodule paths contain changes that can\n"
889 "not be found on any remote:\n"));
890 for (i = 0; i < needs_pushing->nr; i++)
891 fprintf(stderr, " %s\n", needs_pushing->items[i].string);
892 fprintf(stderr, _("\nPlease try\n\n"
893 " git push --recurse-submodules=on-demand\n\n"
894 "or cd to the path and use\n\n"
896 "to push them to a remote.\n\n"));
898 string_list_clear(needs_pushing, 0);
903 static int run_pre_push_hook(struct transport *transport,
904 struct ref *remote_refs)
908 struct child_process proc = CHILD_PROCESS_INIT;
912 if (!(argv[0] = find_hook("pre-push")))
915 argv[1] = transport->remote->name;
916 argv[2] = transport->url;
922 if (start_command(&proc)) {
923 finish_command(&proc);
927 sigchain_push(SIGPIPE, SIG_IGN);
929 strbuf_init(&buf, 256);
931 for (r = remote_refs; r; r = r->next) {
932 if (!r->peer_ref) continue;
933 if (r->status == REF_STATUS_REJECT_NONFASTFORWARD) continue;
934 if (r->status == REF_STATUS_REJECT_STALE) continue;
935 if (r->status == REF_STATUS_UPTODATE) continue;
938 strbuf_addf( &buf, "%s %s %s %s\n",
939 r->peer_ref->name, oid_to_hex(&r->new_oid),
940 r->name, oid_to_hex(&r->old_oid));
942 if (write_in_full(proc.in, buf.buf, buf.len) < 0) {
943 /* We do not mind if a hook does not read all refs. */
950 strbuf_release(&buf);
956 sigchain_pop(SIGPIPE);
958 x = finish_command(&proc);
965 int transport_push(struct transport *transport,
966 int refspec_nr, const char **refspec, int flags,
967 unsigned int *reject_reasons)
970 transport_verify_remote_names(refspec_nr, refspec);
972 if (transport->push) {
973 /* Maybe FIXME. But no important transport uses this case. */
974 if (flags & TRANSPORT_PUSH_SET_UPSTREAM)
975 die("This transport does not support using --set-upstream");
977 return transport->push(transport, refspec_nr, refspec, flags);
978 } else if (transport->push_refs) {
979 struct ref *remote_refs;
980 struct ref *local_refs = get_local_heads();
981 int match_flags = MATCH_REFS_NONE;
982 int verbose = (transport->verbose > 0);
983 int quiet = (transport->verbose < 0);
984 int porcelain = flags & TRANSPORT_PUSH_PORCELAIN;
985 int pretend = flags & TRANSPORT_PUSH_DRY_RUN;
986 int push_ret, ret, err;
988 if (check_push_refs(local_refs, refspec_nr, refspec) < 0)
991 remote_refs = transport->get_refs_list(transport, 1);
993 if (flags & TRANSPORT_PUSH_ALL)
994 match_flags |= MATCH_REFS_ALL;
995 if (flags & TRANSPORT_PUSH_MIRROR)
996 match_flags |= MATCH_REFS_MIRROR;
997 if (flags & TRANSPORT_PUSH_PRUNE)
998 match_flags |= MATCH_REFS_PRUNE;
999 if (flags & TRANSPORT_PUSH_FOLLOW_TAGS)
1000 match_flags |= MATCH_REFS_FOLLOW_TAGS;
1002 if (match_push_refs(local_refs, &remote_refs,
1003 refspec_nr, refspec, match_flags)) {
1007 if (transport->smart_options &&
1008 transport->smart_options->cas &&
1009 !is_empty_cas(transport->smart_options->cas))
1010 apply_push_cas(transport->smart_options->cas,
1011 transport->remote, remote_refs);
1013 set_ref_status_for_push(remote_refs,
1014 flags & TRANSPORT_PUSH_MIRROR,
1015 flags & TRANSPORT_PUSH_FORCE);
1017 if (!(flags & TRANSPORT_PUSH_NO_HOOK))
1018 if (run_pre_push_hook(transport, remote_refs))
1021 if ((flags & (TRANSPORT_RECURSE_SUBMODULES_ON_DEMAND |
1022 TRANSPORT_RECURSE_SUBMODULES_ONLY)) &&
1023 !is_bare_repository()) {
1024 struct ref *ref = remote_refs;
1025 struct oid_array commits = OID_ARRAY_INIT;
1027 for (; ref; ref = ref->next)
1028 if (!is_null_oid(&ref->new_oid))
1029 oid_array_append(&commits,
1032 if (!push_unpushed_submodules(&commits,
1034 refspec, refspec_nr,
1035 transport->push_options,
1037 oid_array_clear(&commits);
1038 die("Failed to push all needed submodules!");
1040 oid_array_clear(&commits);
1043 if (((flags & TRANSPORT_RECURSE_SUBMODULES_CHECK) ||
1044 ((flags & (TRANSPORT_RECURSE_SUBMODULES_ON_DEMAND |
1045 TRANSPORT_RECURSE_SUBMODULES_ONLY)) &&
1046 !pretend)) && !is_bare_repository()) {
1047 struct ref *ref = remote_refs;
1048 struct string_list needs_pushing = STRING_LIST_INIT_DUP;
1049 struct oid_array commits = OID_ARRAY_INIT;
1051 for (; ref; ref = ref->next)
1052 if (!is_null_oid(&ref->new_oid))
1053 oid_array_append(&commits,
1056 if (find_unpushed_submodules(&commits, transport->remote->name,
1058 oid_array_clear(&commits);
1059 die_with_unpushed_submodules(&needs_pushing);
1061 string_list_clear(&needs_pushing, 0);
1062 oid_array_clear(&commits);
1065 if (!(flags & TRANSPORT_RECURSE_SUBMODULES_ONLY))
1066 push_ret = transport->push_refs(transport, remote_refs, flags);
1069 err = push_had_errors(remote_refs);
1070 ret = push_ret | err;
1073 transport_print_push_status(transport->url, remote_refs,
1074 verbose | porcelain, porcelain,
1077 if (flags & TRANSPORT_PUSH_SET_UPSTREAM)
1078 set_upstreams(transport, remote_refs, pretend);
1080 if (!(flags & (TRANSPORT_PUSH_DRY_RUN |
1081 TRANSPORT_RECURSE_SUBMODULES_ONLY))) {
1083 for (ref = remote_refs; ref; ref = ref->next)
1084 transport_update_tracking_ref(transport->remote, ref, verbose);
1087 if (porcelain && !push_ret)
1089 else if (!quiet && !ret && !transport_refs_pushed(remote_refs))
1090 fprintf(stderr, "Everything up-to-date\n");
1097 const struct ref *transport_get_remote_refs(struct transport *transport)
1099 if (!transport->got_remote_refs) {
1100 transport->remote_refs = transport->get_refs_list(transport, 0);
1101 transport->got_remote_refs = 1;
1104 return transport->remote_refs;
1107 int transport_fetch_refs(struct transport *transport, struct ref *refs)
1110 int nr_heads = 0, nr_alloc = 0, nr_refs = 0;
1111 struct ref **heads = NULL;
1114 for (rm = refs; rm; rm = rm->next) {
1117 !is_null_oid(&rm->old_oid) &&
1118 !oidcmp(&rm->peer_ref->old_oid, &rm->old_oid))
1120 ALLOC_GROW(heads, nr_heads + 1, nr_alloc);
1121 heads[nr_heads++] = rm;
1126 * When deepening of a shallow repository is requested,
1127 * then local and remote refs are likely to still be equal.
1128 * Just feed them all to the fetch method in that case.
1129 * This condition shouldn't be met in a non-deepening fetch
1130 * (see builtin/fetch.c:quickfetch()).
1132 ALLOC_ARRAY(heads, nr_refs);
1133 for (rm = refs; rm; rm = rm->next)
1134 heads[nr_heads++] = rm;
1137 rc = transport->fetch(transport, nr_heads, heads);
1143 void transport_unlock_pack(struct transport *transport)
1145 if (transport->pack_lockfile) {
1146 unlink_or_warn(transport->pack_lockfile);
1147 FREE_AND_NULL(transport->pack_lockfile);
1151 int transport_connect(struct transport *transport, const char *name,
1152 const char *exec, int fd[2])
1154 if (transport->connect)
1155 return transport->connect(transport, name, exec, fd);
1157 die("Operation not supported by protocol");
1160 int transport_disconnect(struct transport *transport)
1163 if (transport->disconnect)
1164 ret = transport->disconnect(transport);
1170 * Strip username (and password) from a URL and return
1171 * it in a newly allocated string.
1173 char *transport_anonymize_url(const char *url)
1175 char *scheme_prefix, *anon_part;
1176 size_t anon_len, prefix_len = 0;
1178 anon_part = strchr(url, '@');
1179 if (url_is_local_not_ssh(url) || !anon_part)
1182 anon_len = strlen(++anon_part);
1183 scheme_prefix = strstr(url, "://");
1184 if (!scheme_prefix) {
1185 if (!strchr(anon_part, ':'))
1186 /* cannot be "me@there:/path/name" */
1190 /* make sure scheme is reasonable */
1191 for (cp = url; cp < scheme_prefix; cp++) {
1194 case '+': case '.': case '-':
1203 /* @ past the first slash does not count */
1204 cp = strchr(scheme_prefix + 3, '/');
1205 if (cp && cp < anon_part)
1207 prefix_len = scheme_prefix - url + 3;
1209 return xstrfmt("%.*s%.*s", (int)prefix_len, url,
1210 (int)anon_len, anon_part);
1212 return xstrdup(url);
1215 static void read_alternate_refs(const char *path,
1216 alternate_ref_fn *cb,
1219 struct child_process cmd = CHILD_PROCESS_INIT;
1220 struct strbuf line = STRBUF_INIT;
1224 argv_array_pushf(&cmd.args, "--git-dir=%s", path);
1225 argv_array_push(&cmd.args, "for-each-ref");
1226 argv_array_push(&cmd.args, "--format=%(objectname) %(refname)");
1227 cmd.env = local_repo_env;
1230 if (start_command(&cmd))
1233 fh = xfdopen(cmd.out, "r");
1234 while (strbuf_getline_lf(&line, fh) != EOF) {
1235 struct object_id oid;
1237 if (get_oid_hex(line.buf, &oid) ||
1238 line.buf[GIT_SHA1_HEXSZ] != ' ') {
1239 warning("invalid line while parsing alternate refs: %s",
1244 cb(line.buf + GIT_SHA1_HEXSZ + 1, &oid, data);
1248 finish_command(&cmd);
1251 struct alternate_refs_data {
1252 alternate_ref_fn *fn;
1256 static int refs_from_alternate_cb(struct alternate_object_database *e,
1259 struct strbuf path = STRBUF_INIT;
1261 struct alternate_refs_data *cb = data;
1263 if (!strbuf_realpath(&path, e->path, 0))
1265 if (!strbuf_strip_suffix(&path, "/objects"))
1267 base_len = path.len;
1269 /* Is this a git repository with refs? */
1270 strbuf_addstr(&path, "/refs");
1271 if (!is_directory(path.buf))
1273 strbuf_setlen(&path, base_len);
1275 read_alternate_refs(path.buf, cb->fn, cb->data);
1278 strbuf_release(&path);
1282 void for_each_alternate_ref(alternate_ref_fn fn, void *data)
1284 struct alternate_refs_data cb;
1287 foreach_alt_odb(refs_from_alternate_cb, &cb);