3 #include "run-command.h"
5 #include "fetch-pack.h"
15 #include "submodule.h"
16 #include "string-list.h"
17 #include "sha1-array.h"
20 static void set_upstreams(struct transport
*transport
, struct ref
*refs
,
24 for (ref
= refs
; ref
; ref
= ref
->next
) {
25 const char *localname
;
27 const char *remotename
;
28 unsigned char sha
[20];
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
)
474 struct object_id head_oid
;
476 int summary_width
= transport_summary_width(refs
);
478 head
= resolve_refdup("HEAD", RESOLVE_REF_READING
, head_oid
.hash
, NULL
);
481 for (ref
= refs
; ref
; ref
= ref
->next
)
482 if (ref
->status
== REF_STATUS_UPTODATE
)
483 n
+= print_one_push_status(ref
, dest
, n
,
484 porcelain
, summary_width
);
487 for (ref
= refs
; ref
; ref
= ref
->next
)
488 if (ref
->status
== REF_STATUS_OK
)
489 n
+= print_one_push_status(ref
, dest
, n
,
490 porcelain
, summary_width
);
493 for (ref
= refs
; ref
; ref
= ref
->next
) {
494 if (ref
->status
!= REF_STATUS_NONE
&&
495 ref
->status
!= REF_STATUS_UPTODATE
&&
496 ref
->status
!= REF_STATUS_OK
)
497 n
+= print_one_push_status(ref
, dest
, n
,
498 porcelain
, summary_width
);
499 if (ref
->status
== REF_STATUS_REJECT_NONFASTFORWARD
) {
500 if (head
!= NULL
&& !strcmp(head
, ref
->name
))
501 *reject_reasons
|= REJECT_NON_FF_HEAD
;
503 *reject_reasons
|= REJECT_NON_FF_OTHER
;
504 } else if (ref
->status
== REF_STATUS_REJECT_ALREADY_EXISTS
) {
505 *reject_reasons
|= REJECT_ALREADY_EXISTS
;
506 } else if (ref
->status
== REF_STATUS_REJECT_FETCH_FIRST
) {
507 *reject_reasons
|= REJECT_FETCH_FIRST
;
508 } else if (ref
->status
== REF_STATUS_REJECT_NEEDS_FORCE
) {
509 *reject_reasons
|= REJECT_NEEDS_FORCE
;
515 void transport_verify_remote_names(int nr_heads
, const char **heads
)
519 for (i
= 0; i
< nr_heads
; i
++) {
520 const char *local
= heads
[i
];
521 const char *remote
= strrchr(heads
[i
], ':');
526 /* A matching refspec is okay. */
527 if (remote
== local
&& remote
[1] == '\0')
530 remote
= remote
? (remote
+ 1) : local
;
531 if (check_refname_format(remote
,
532 REFNAME_ALLOW_ONELEVEL
|REFNAME_REFSPEC_PATTERN
))
533 die("remote part of refspec is not a valid name in %s",
538 static int git_transport_push(struct transport
*transport
, struct ref
*remote_refs
, int flags
)
540 struct git_transport_data
*data
= transport
->data
;
541 struct send_pack_args args
;
544 if (!data
->got_remote_heads
) {
545 struct ref
*tmp_refs
;
546 connect_setup(transport
, 1);
548 get_remote_heads(data
->fd
[0], NULL
, 0, &tmp_refs
, REF_NORMAL
,
549 NULL
, &data
->shallow
);
550 data
->got_remote_heads
= 1;
553 memset(&args
, 0, sizeof(args
));
554 args
.send_mirror
= !!(flags
& TRANSPORT_PUSH_MIRROR
);
555 args
.force_update
= !!(flags
& TRANSPORT_PUSH_FORCE
);
556 args
.use_thin_pack
= data
->options
.thin
;
557 args
.verbose
= (transport
->verbose
> 0);
558 args
.quiet
= (transport
->verbose
< 0);
559 args
.progress
= transport
->progress
;
560 args
.dry_run
= !!(flags
& TRANSPORT_PUSH_DRY_RUN
);
561 args
.porcelain
= !!(flags
& TRANSPORT_PUSH_PORCELAIN
);
562 args
.atomic
= !!(flags
& TRANSPORT_PUSH_ATOMIC
);
563 args
.push_options
= transport
->push_options
;
564 args
.url
= transport
->url
;
566 if (flags
& TRANSPORT_PUSH_CERT_ALWAYS
)
567 args
.push_cert
= SEND_PACK_PUSH_CERT_ALWAYS
;
568 else if (flags
& TRANSPORT_PUSH_CERT_IF_ASKED
)
569 args
.push_cert
= SEND_PACK_PUSH_CERT_IF_ASKED
;
571 args
.push_cert
= SEND_PACK_PUSH_CERT_NEVER
;
573 ret
= send_pack(&args
, data
->fd
, data
->conn
, remote_refs
,
578 ret
|= finish_connect(data
->conn
);
580 data
->got_remote_heads
= 0;
585 static int connect_git(struct transport
*transport
, const char *name
,
586 const char *executable
, int fd
[2])
588 struct git_transport_data
*data
= transport
->data
;
589 data
->conn
= git_connect(data
->fd
, transport
->url
,
596 static int disconnect_git(struct transport
*transport
)
598 struct git_transport_data
*data
= transport
->data
;
600 if (data
->got_remote_heads
)
601 packet_flush(data
->fd
[1]);
604 finish_connect(data
->conn
);
611 void transport_take_over(struct transport
*transport
,
612 struct child_process
*child
)
614 struct git_transport_data
*data
;
616 if (!transport
->smart_options
)
617 die("BUG: taking over transport requires non-NULL "
618 "smart_options field.");
620 data
= xcalloc(1, sizeof(*data
));
621 data
->options
= *transport
->smart_options
;
623 data
->fd
[0] = data
->conn
->out
;
624 data
->fd
[1] = data
->conn
->in
;
625 data
->got_remote_heads
= 0;
626 transport
->data
= data
;
628 transport
->set_option
= NULL
;
629 transport
->get_refs_list
= get_refs_via_connect
;
630 transport
->fetch
= fetch_refs_via_pack
;
631 transport
->push
= NULL
;
632 transport
->push_refs
= git_transport_push
;
633 transport
->disconnect
= disconnect_git
;
634 transport
->smart_options
= &(data
->options
);
636 transport
->cannot_reuse
= 1;
639 static int is_file(const char *url
)
644 return S_ISREG(buf
.st_mode
);
647 static int external_specification_len(const char *url
)
649 return strchr(url
, ':') - url
;
652 static const struct string_list
*protocol_whitelist(void)
654 static int enabled
= -1;
655 static struct string_list allowed
= STRING_LIST_INIT_DUP
;
658 const char *v
= getenv("GIT_ALLOW_PROTOCOL");
660 string_list_split(&allowed
, v
, ':', -1);
661 string_list_sort(&allowed
);
668 return enabled
? &allowed
: NULL
;
671 enum protocol_allow_config
{
672 PROTOCOL_ALLOW_NEVER
= 0,
673 PROTOCOL_ALLOW_USER_ONLY
,
674 PROTOCOL_ALLOW_ALWAYS
677 static enum protocol_allow_config
parse_protocol_config(const char *key
,
680 if (!strcasecmp(value
, "always"))
681 return PROTOCOL_ALLOW_ALWAYS
;
682 else if (!strcasecmp(value
, "never"))
683 return PROTOCOL_ALLOW_NEVER
;
684 else if (!strcasecmp(value
, "user"))
685 return PROTOCOL_ALLOW_USER_ONLY
;
687 die("unknown value for config '%s': %s", key
, value
);
690 static enum protocol_allow_config
get_protocol_config(const char *type
)
692 char *key
= xstrfmt("protocol.%s.allow", type
);
695 /* first check the per-protocol config */
696 if (!git_config_get_string(key
, &value
)) {
697 enum protocol_allow_config ret
=
698 parse_protocol_config(key
, value
);
705 /* if defined, fallback to user-defined default for unknown protocols */
706 if (!git_config_get_string("protocol.allow", &value
)) {
707 enum protocol_allow_config ret
=
708 parse_protocol_config("protocol.allow", value
);
713 /* fallback to built-in defaults */
715 if (!strcmp(type
, "http") ||
716 !strcmp(type
, "https") ||
717 !strcmp(type
, "git") ||
718 !strcmp(type
, "ssh") ||
719 !strcmp(type
, "file"))
720 return PROTOCOL_ALLOW_ALWAYS
;
722 /* known scary; err on the side of caution */
723 if (!strcmp(type
, "ext"))
724 return PROTOCOL_ALLOW_NEVER
;
726 /* unknown; by default let them be used only directly by the user */
727 return PROTOCOL_ALLOW_USER_ONLY
;
730 int is_transport_allowed(const char *type
, int from_user
)
732 const struct string_list
*whitelist
= protocol_whitelist();
734 return string_list_has_string(whitelist
, type
);
736 switch (get_protocol_config(type
)) {
737 case PROTOCOL_ALLOW_ALWAYS
:
739 case PROTOCOL_ALLOW_NEVER
:
741 case PROTOCOL_ALLOW_USER_ONLY
:
743 from_user
= git_env_bool("GIT_PROTOCOL_FROM_USER", 1);
747 die("BUG: invalid protocol_allow_config type");
750 void transport_check_allowed(const char *type
)
752 if (!is_transport_allowed(type
, -1))
753 die("transport '%s' not allowed", type
);
756 struct transport
*transport_get(struct remote
*remote
, const char *url
)
759 struct transport
*ret
= xcalloc(1, sizeof(*ret
));
761 ret
->progress
= isatty(2);
764 die("No remote provided to transport_get()");
766 ret
->got_remote_refs
= 0;
767 ret
->remote
= remote
;
768 helper
= remote
->foreign_vcs
;
770 if (!url
&& remote
->url
)
771 url
= remote
->url
[0];
774 /* maybe it is a foreign URL? */
778 while (is_urlschemechar(p
== url
, *p
))
780 if (starts_with(p
, "::"))
781 helper
= xstrndup(url
, p
- url
);
785 transport_helper_init(ret
, helper
);
786 } else if (starts_with(url
, "rsync:")) {
787 die("git-over-rsync is no longer supported");
788 } else if (url_is_local_not_ssh(url
) && is_file(url
) && is_bundle(url
, 1)) {
789 struct bundle_transport_data
*data
= xcalloc(1, sizeof(*data
));
790 transport_check_allowed("file");
792 ret
->get_refs_list
= get_refs_from_bundle
;
793 ret
->fetch
= fetch_refs_from_bundle
;
794 ret
->disconnect
= close_bundle
;
795 ret
->smart_options
= NULL
;
796 } else if (!is_url(url
)
797 || starts_with(url
, "file://")
798 || starts_with(url
, "git://")
799 || starts_with(url
, "ssh://")
800 || starts_with(url
, "git+ssh://") /* deprecated - do not use */
801 || starts_with(url
, "ssh+git://") /* deprecated - do not use */
804 * These are builtin smart transports; "allowed" transports
805 * will be checked individually in git_connect.
807 struct git_transport_data
*data
= xcalloc(1, sizeof(*data
));
809 ret
->set_option
= NULL
;
810 ret
->get_refs_list
= get_refs_via_connect
;
811 ret
->fetch
= fetch_refs_via_pack
;
812 ret
->push_refs
= git_transport_push
;
813 ret
->connect
= connect_git
;
814 ret
->disconnect
= disconnect_git
;
815 ret
->smart_options
= &(data
->options
);
818 data
->got_remote_heads
= 0;
820 /* Unknown protocol in URL. Pass to external handler. */
821 int len
= external_specification_len(url
);
822 char *handler
= xmemdupz(url
, len
);
823 transport_helper_init(ret
, handler
);
826 if (ret
->smart_options
) {
827 ret
->smart_options
->thin
= 1;
828 ret
->smart_options
->uploadpack
= "git-upload-pack";
829 if (remote
->uploadpack
)
830 ret
->smart_options
->uploadpack
= remote
->uploadpack
;
831 ret
->smart_options
->receivepack
= "git-receive-pack";
832 if (remote
->receivepack
)
833 ret
->smart_options
->receivepack
= remote
->receivepack
;
839 int transport_set_option(struct transport
*transport
,
840 const char *name
, const char *value
)
842 int git_reports
= 1, protocol_reports
= 1;
844 if (transport
->smart_options
)
845 git_reports
= set_git_option(transport
->smart_options
,
848 if (transport
->set_option
)
849 protocol_reports
= transport
->set_option(transport
, name
,
852 /* If either report is 0, report 0 (success). */
853 if (!git_reports
|| !protocol_reports
)
855 /* If either reports -1 (invalid value), report -1. */
856 if ((git_reports
== -1) || (protocol_reports
== -1))
858 /* Otherwise if both report unknown, report unknown. */
862 void transport_set_verbosity(struct transport
*transport
, int verbosity
,
866 transport
->verbose
= verbosity
<= 3 ? verbosity
: 3;
868 transport
->verbose
= -1;
871 * Rules used to determine whether to report progress (processing aborts
872 * when a rule is satisfied):
874 * . Report progress, if force_progress is 1 (ie. --progress).
875 * . Don't report progress, if force_progress is 0 (ie. --no-progress).
876 * . Don't report progress, if verbosity < 0 (ie. -q/--quiet ).
877 * . Report progress if isatty(2) is 1.
879 if (force_progress
>= 0)
880 transport
->progress
= !!force_progress
;
882 transport
->progress
= verbosity
>= 0 && isatty(2);
885 static void die_with_unpushed_submodules(struct string_list
*needs_pushing
)
889 fprintf(stderr
, _("The following submodule paths contain changes that can\n"
890 "not be found on any remote:\n"));
891 for (i
= 0; i
< needs_pushing
->nr
; i
++)
892 fprintf(stderr
, " %s\n", needs_pushing
->items
[i
].string
);
893 fprintf(stderr
, _("\nPlease try\n\n"
894 " git push --recurse-submodules=on-demand\n\n"
895 "or cd to the path and use\n\n"
897 "to push them to a remote.\n\n"));
899 string_list_clear(needs_pushing
, 0);
904 static int run_pre_push_hook(struct transport
*transport
,
905 struct ref
*remote_refs
)
909 struct child_process proc
= CHILD_PROCESS_INIT
;
913 if (!(argv
[0] = find_hook("pre-push")))
916 argv
[1] = transport
->remote
->name
;
917 argv
[2] = transport
->url
;
923 if (start_command(&proc
)) {
924 finish_command(&proc
);
928 sigchain_push(SIGPIPE
, SIG_IGN
);
930 strbuf_init(&buf
, 256);
932 for (r
= remote_refs
; r
; r
= r
->next
) {
933 if (!r
->peer_ref
) continue;
934 if (r
->status
== REF_STATUS_REJECT_NONFASTFORWARD
) continue;
935 if (r
->status
== REF_STATUS_REJECT_STALE
) continue;
936 if (r
->status
== REF_STATUS_UPTODATE
) continue;
939 strbuf_addf( &buf
, "%s %s %s %s\n",
940 r
->peer_ref
->name
, oid_to_hex(&r
->new_oid
),
941 r
->name
, oid_to_hex(&r
->old_oid
));
943 if (write_in_full(proc
.in
, buf
.buf
, buf
.len
) < 0) {
944 /* We do not mind if a hook does not read all refs. */
951 strbuf_release(&buf
);
957 sigchain_pop(SIGPIPE
);
959 x
= finish_command(&proc
);
966 int transport_push(struct transport
*transport
,
967 int refspec_nr
, const char **refspec
, int flags
,
968 unsigned int *reject_reasons
)
971 transport_verify_remote_names(refspec_nr
, refspec
);
973 if (transport
->push
) {
974 /* Maybe FIXME. But no important transport uses this case. */
975 if (flags
& TRANSPORT_PUSH_SET_UPSTREAM
)
976 die("This transport does not support using --set-upstream");
978 return transport
->push(transport
, refspec_nr
, refspec
, flags
);
979 } else if (transport
->push_refs
) {
980 struct ref
*remote_refs
;
981 struct ref
*local_refs
= get_local_heads();
982 int match_flags
= MATCH_REFS_NONE
;
983 int verbose
= (transport
->verbose
> 0);
984 int quiet
= (transport
->verbose
< 0);
985 int porcelain
= flags
& TRANSPORT_PUSH_PORCELAIN
;
986 int pretend
= flags
& TRANSPORT_PUSH_DRY_RUN
;
987 int push_ret
, ret
, err
;
989 if (check_push_refs(local_refs
, refspec_nr
, refspec
) < 0)
992 remote_refs
= transport
->get_refs_list(transport
, 1);
994 if (flags
& TRANSPORT_PUSH_ALL
)
995 match_flags
|= MATCH_REFS_ALL
;
996 if (flags
& TRANSPORT_PUSH_MIRROR
)
997 match_flags
|= MATCH_REFS_MIRROR
;
998 if (flags
& TRANSPORT_PUSH_PRUNE
)
999 match_flags
|= MATCH_REFS_PRUNE
;
1000 if (flags
& TRANSPORT_PUSH_FOLLOW_TAGS
)
1001 match_flags
|= MATCH_REFS_FOLLOW_TAGS
;
1003 if (match_push_refs(local_refs
, &remote_refs
,
1004 refspec_nr
, refspec
, match_flags
)) {
1008 if (transport
->smart_options
&&
1009 transport
->smart_options
->cas
&&
1010 !is_empty_cas(transport
->smart_options
->cas
))
1011 apply_push_cas(transport
->smart_options
->cas
,
1012 transport
->remote
, remote_refs
);
1014 set_ref_status_for_push(remote_refs
,
1015 flags
& TRANSPORT_PUSH_MIRROR
,
1016 flags
& TRANSPORT_PUSH_FORCE
);
1018 if (!(flags
& TRANSPORT_PUSH_NO_HOOK
))
1019 if (run_pre_push_hook(transport
, remote_refs
))
1022 if ((flags
& (TRANSPORT_RECURSE_SUBMODULES_ON_DEMAND
|
1023 TRANSPORT_RECURSE_SUBMODULES_ONLY
)) &&
1024 !is_bare_repository()) {
1025 struct ref
*ref
= remote_refs
;
1026 struct oid_array commits
= OID_ARRAY_INIT
;
1028 for (; ref
; ref
= ref
->next
)
1029 if (!is_null_oid(&ref
->new_oid
))
1030 oid_array_append(&commits
,
1033 if (!push_unpushed_submodules(&commits
,
1035 refspec
, refspec_nr
,
1036 transport
->push_options
,
1038 oid_array_clear(&commits
);
1039 die("Failed to push all needed submodules!");
1041 oid_array_clear(&commits
);
1044 if (((flags
& TRANSPORT_RECURSE_SUBMODULES_CHECK
) ||
1045 ((flags
& (TRANSPORT_RECURSE_SUBMODULES_ON_DEMAND
|
1046 TRANSPORT_RECURSE_SUBMODULES_ONLY
)) &&
1047 !pretend
)) && !is_bare_repository()) {
1048 struct ref
*ref
= remote_refs
;
1049 struct string_list needs_pushing
= STRING_LIST_INIT_DUP
;
1050 struct oid_array commits
= OID_ARRAY_INIT
;
1052 for (; ref
; ref
= ref
->next
)
1053 if (!is_null_oid(&ref
->new_oid
))
1054 oid_array_append(&commits
,
1057 if (find_unpushed_submodules(&commits
, transport
->remote
->name
,
1059 oid_array_clear(&commits
);
1060 die_with_unpushed_submodules(&needs_pushing
);
1062 string_list_clear(&needs_pushing
, 0);
1063 oid_array_clear(&commits
);
1066 if (!(flags
& TRANSPORT_RECURSE_SUBMODULES_ONLY
))
1067 push_ret
= transport
->push_refs(transport
, remote_refs
, flags
);
1070 err
= push_had_errors(remote_refs
);
1071 ret
= push_ret
| err
;
1074 transport_print_push_status(transport
->url
, remote_refs
,
1075 verbose
| porcelain
, porcelain
,
1078 if (flags
& TRANSPORT_PUSH_SET_UPSTREAM
)
1079 set_upstreams(transport
, remote_refs
, pretend
);
1081 if (!(flags
& (TRANSPORT_PUSH_DRY_RUN
|
1082 TRANSPORT_RECURSE_SUBMODULES_ONLY
))) {
1084 for (ref
= remote_refs
; ref
; ref
= ref
->next
)
1085 transport_update_tracking_ref(transport
->remote
, ref
, verbose
);
1088 if (porcelain
&& !push_ret
)
1090 else if (!quiet
&& !ret
&& !transport_refs_pushed(remote_refs
))
1091 fprintf(stderr
, "Everything up-to-date\n");
1098 const struct ref
*transport_get_remote_refs(struct transport
*transport
)
1100 if (!transport
->got_remote_refs
) {
1101 transport
->remote_refs
= transport
->get_refs_list(transport
, 0);
1102 transport
->got_remote_refs
= 1;
1105 return transport
->remote_refs
;
1108 int transport_fetch_refs(struct transport
*transport
, struct ref
*refs
)
1111 int nr_heads
= 0, nr_alloc
= 0, nr_refs
= 0;
1112 struct ref
**heads
= NULL
;
1115 for (rm
= refs
; rm
; rm
= rm
->next
) {
1118 !is_null_oid(&rm
->old_oid
) &&
1119 !oidcmp(&rm
->peer_ref
->old_oid
, &rm
->old_oid
))
1121 ALLOC_GROW(heads
, nr_heads
+ 1, nr_alloc
);
1122 heads
[nr_heads
++] = rm
;
1127 * When deepening of a shallow repository is requested,
1128 * then local and remote refs are likely to still be equal.
1129 * Just feed them all to the fetch method in that case.
1130 * This condition shouldn't be met in a non-deepening fetch
1131 * (see builtin/fetch.c:quickfetch()).
1133 ALLOC_ARRAY(heads
, nr_refs
);
1134 for (rm
= refs
; rm
; rm
= rm
->next
)
1135 heads
[nr_heads
++] = rm
;
1138 rc
= transport
->fetch(transport
, nr_heads
, heads
);
1144 void transport_unlock_pack(struct transport
*transport
)
1146 if (transport
->pack_lockfile
) {
1147 unlink_or_warn(transport
->pack_lockfile
);
1148 free(transport
->pack_lockfile
);
1149 transport
->pack_lockfile
= NULL
;
1153 int transport_connect(struct transport
*transport
, const char *name
,
1154 const char *exec
, int fd
[2])
1156 if (transport
->connect
)
1157 return transport
->connect(transport
, name
, exec
, fd
);
1159 die("Operation not supported by protocol");
1162 int transport_disconnect(struct transport
*transport
)
1165 if (transport
->disconnect
)
1166 ret
= transport
->disconnect(transport
);
1172 * Strip username (and password) from a URL and return
1173 * it in a newly allocated string.
1175 char *transport_anonymize_url(const char *url
)
1177 char *scheme_prefix
, *anon_part
;
1178 size_t anon_len
, prefix_len
= 0;
1180 anon_part
= strchr(url
, '@');
1181 if (url_is_local_not_ssh(url
) || !anon_part
)
1184 anon_len
= strlen(++anon_part
);
1185 scheme_prefix
= strstr(url
, "://");
1186 if (!scheme_prefix
) {
1187 if (!strchr(anon_part
, ':'))
1188 /* cannot be "me@there:/path/name" */
1192 /* make sure scheme is reasonable */
1193 for (cp
= url
; cp
< scheme_prefix
; cp
++) {
1196 case '+': case '.': case '-':
1205 /* @ past the first slash does not count */
1206 cp
= strchr(scheme_prefix
+ 3, '/');
1207 if (cp
&& cp
< anon_part
)
1209 prefix_len
= scheme_prefix
- url
+ 3;
1211 return xstrfmt("%.*s%.*s", (int)prefix_len
, url
,
1212 (int)anon_len
, anon_part
);
1214 return xstrdup(url
);
1217 static void read_alternate_refs(const char *path
,
1218 alternate_ref_fn
*cb
,
1221 struct child_process cmd
= CHILD_PROCESS_INIT
;
1222 struct strbuf line
= STRBUF_INIT
;
1226 argv_array_pushf(&cmd
.args
, "--git-dir=%s", path
);
1227 argv_array_push(&cmd
.args
, "for-each-ref");
1228 argv_array_push(&cmd
.args
, "--format=%(objectname) %(refname)");
1229 cmd
.env
= local_repo_env
;
1232 if (start_command(&cmd
))
1235 fh
= xfdopen(cmd
.out
, "r");
1236 while (strbuf_getline_lf(&line
, fh
) != EOF
) {
1237 struct object_id oid
;
1239 if (get_oid_hex(line
.buf
, &oid
) ||
1240 line
.buf
[GIT_SHA1_HEXSZ
] != ' ') {
1241 warning("invalid line while parsing alternate refs: %s",
1246 cb(line
.buf
+ GIT_SHA1_HEXSZ
+ 1, &oid
, data
);
1250 finish_command(&cmd
);
1253 struct alternate_refs_data
{
1254 alternate_ref_fn
*fn
;
1258 static int refs_from_alternate_cb(struct alternate_object_database
*e
,
1261 struct strbuf path
= STRBUF_INIT
;
1263 struct alternate_refs_data
*cb
= data
;
1265 if (!strbuf_realpath(&path
, e
->path
, 0))
1267 if (!strbuf_strip_suffix(&path
, "/objects"))
1269 base_len
= path
.len
;
1271 /* Is this a git repository with refs? */
1272 strbuf_addstr(&path
, "/refs");
1273 if (!is_directory(path
.buf
))
1275 strbuf_setlen(&path
, base_len
);
1277 read_alternate_refs(path
.buf
, cb
->fn
, cb
->data
);
1280 strbuf_release(&path
);
1284 void for_each_alternate_ref(alternate_ref_fn fn
, void *data
)
1286 struct alternate_refs_data cb
;
1289 foreach_alt_odb(refs_from_alternate_cb
, &cb
);