1 #include "git-compat-util.h"
6 #include "run-command.h"
10 #include "string-list.h"
11 #include "sha1-array.h"
13 static char *server_capabilities
;
14 static const char *parse_feature_value(const char *, const char *, int *);
16 static int check_ref(const char *name
, unsigned int flags
)
21 if (!skip_prefix(name
, "refs/", &name
))
24 /* REF_NORMAL means that we don't want the magic fake tag refs */
25 if ((flags
& REF_NORMAL
) && check_refname_format(name
, 0))
28 /* REF_HEADS means that we want regular branch heads */
29 if ((flags
& REF_HEADS
) && starts_with(name
, "heads/"))
32 /* REF_TAGS means that we want tags */
33 if ((flags
& REF_TAGS
) && starts_with(name
, "tags/"))
36 /* All type bits clear means that we are ok with anything */
37 return !(flags
& ~REF_NORMAL
);
40 int check_ref_type(const struct ref
*ref
, int flags
)
42 return check_ref(ref
->name
, flags
);
45 static void die_initial_contact(int got_at_least_one_head
)
47 if (got_at_least_one_head
)
48 die("The remote end hung up upon initial contact");
50 die("Could not read from remote repository.\n\n"
51 "Please make sure you have the correct access rights\n"
52 "and the repository exists.");
55 static void parse_one_symref_info(struct string_list
*symref
, const char *val
, int len
)
58 struct string_list_item
*item
;
61 return; /* just "symref" */
62 /* e.g. "symref=HEAD:refs/heads/master" */
63 sym
= xmemdupz(val
, len
);
64 target
= strchr(sym
, ':');
66 /* just "symref=something" */
69 if (check_refname_format(sym
, REFNAME_ALLOW_ONELEVEL
) ||
70 check_refname_format(target
, REFNAME_ALLOW_ONELEVEL
))
71 /* "symref=bogus:pair */
73 item
= string_list_append(symref
, sym
);
81 static void annotate_refs_with_symref_info(struct ref
*ref
)
83 struct string_list symref
= STRING_LIST_INIT_DUP
;
84 const char *feature_list
= server_capabilities
;
86 while (feature_list
) {
90 val
= parse_feature_value(feature_list
, "symref", &len
);
93 parse_one_symref_info(&symref
, val
, len
);
94 feature_list
= val
+ 1;
96 string_list_sort(&symref
);
98 for (; ref
; ref
= ref
->next
) {
99 struct string_list_item
*item
;
100 item
= string_list_lookup(&symref
, ref
->name
);
103 ref
->symref
= xstrdup((char *)item
->util
);
105 string_list_clear(&symref
, 0);
109 * Read all the refs from the other end
111 struct ref
**get_remote_heads(int in
, char *src_buf
, size_t src_len
,
112 struct ref
**list
, unsigned int flags
,
113 struct sha1_array
*extra_have
,
114 struct sha1_array
*shallow_points
)
116 struct ref
**orig_list
= list
;
117 int got_at_least_one_head
= 0;
122 unsigned char old_sha1
[20];
125 char *buffer
= packet_buffer
;
128 len
= packet_read(in
, &src_buf
, &src_len
,
129 packet_buffer
, sizeof(packet_buffer
),
130 PACKET_READ_GENTLE_ON_EOF
|
131 PACKET_READ_CHOMP_NEWLINE
);
133 die_initial_contact(got_at_least_one_head
);
138 if (len
> 4 && skip_prefix(buffer
, "ERR ", &arg
))
139 die("remote error: %s", arg
);
141 if (len
== 48 && skip_prefix(buffer
, "shallow ", &arg
)) {
142 if (get_sha1_hex(arg
, old_sha1
))
143 die("protocol error: expected shallow sha-1, got '%s'", arg
);
145 die("repository on the other end cannot be shallow");
146 sha1_array_append(shallow_points
, old_sha1
);
150 if (len
< 42 || get_sha1_hex(buffer
, old_sha1
) || buffer
[40] != ' ')
151 die("protocol error: expected sha/ref, got '%s'", buffer
);
154 name_len
= strlen(name
);
155 if (len
!= name_len
+ 41) {
156 free(server_capabilities
);
157 server_capabilities
= xstrdup(name
+ name_len
+ 1);
160 if (extra_have
&& !strcmp(name
, ".have")) {
161 sha1_array_append(extra_have
, old_sha1
);
165 if (!check_ref(name
, flags
))
167 ref
= alloc_ref(buffer
+ 41);
168 hashcpy(ref
->old_sha1
, old_sha1
);
171 got_at_least_one_head
= 1;
174 annotate_refs_with_symref_info(*orig_list
);
179 static const char *parse_feature_value(const char *feature_list
, const char *feature
, int *lenp
)
186 len
= strlen(feature
);
187 while (*feature_list
) {
188 const char *found
= strstr(feature_list
, feature
);
191 if (feature_list
== found
|| isspace(found
[-1])) {
192 const char *value
= found
+ len
;
193 /* feature with no value (e.g., "thin-pack") */
194 if (!*value
|| isspace(*value
)) {
199 /* feature with a value (e.g., "agent=git/1.2.3") */
200 else if (*value
== '=') {
203 *lenp
= strcspn(value
, " \t\n");
207 * otherwise we matched a substring of another feature;
211 feature_list
= found
+ 1;
216 int parse_feature_request(const char *feature_list
, const char *feature
)
218 return !!parse_feature_value(feature_list
, feature
, NULL
);
221 const char *server_feature_value(const char *feature
, int *len
)
223 return parse_feature_value(server_capabilities
, feature
, len
);
226 int server_supports(const char *feature
)
228 return !!server_feature_value(feature
, NULL
);
238 int url_is_local_not_ssh(const char *url
)
240 const char *colon
= strchr(url
, ':');
241 const char *slash
= strchr(url
, '/');
242 return !colon
|| (slash
&& slash
< colon
) ||
243 has_dos_drive_prefix(url
);
246 static const char *prot_name(enum protocol protocol
)
257 return "unkown protocol";
261 static enum protocol
get_protocol(const char *name
)
263 if (!strcmp(name
, "ssh"))
265 if (!strcmp(name
, "git"))
267 if (!strcmp(name
, "git+ssh"))
269 if (!strcmp(name
, "ssh+git"))
271 if (!strcmp(name
, "file"))
273 die("I don't handle protocol '%s'", name
);
277 #define STR(s) STR_(s)
279 static void get_host_and_port(char **host
, const char **port
)
283 if (*host
[0] == '[') {
284 end
= strchr(*host
+ 1, ']');
293 colon
= strchr(end
, ':');
301 static void enable_keepalive(int sockfd
)
305 if (setsockopt(sockfd
, SOL_SOCKET
, SO_KEEPALIVE
, &ka
, sizeof(ka
)) < 0)
306 fprintf(stderr
, "unable to set SO_KEEPALIVE on socket: %s\n",
312 static const char *ai_name(const struct addrinfo
*ai
)
314 static char addr
[NI_MAXHOST
];
315 if (getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, addr
, sizeof(addr
), NULL
, 0,
316 NI_NUMERICHOST
) != 0)
317 strcpy(addr
, "(unknown)");
323 * Returns a connected socket() fd, or else die()s.
325 static int git_tcp_connect_sock(char *host
, int flags
)
327 struct strbuf error_message
= STRBUF_INIT
;
329 const char *port
= STR(DEFAULT_GIT_PORT
);
330 struct addrinfo hints
, *ai0
, *ai
;
334 get_host_and_port(&host
, &port
);
338 memset(&hints
, 0, sizeof(hints
));
339 hints
.ai_socktype
= SOCK_STREAM
;
340 hints
.ai_protocol
= IPPROTO_TCP
;
342 if (flags
& CONNECT_VERBOSE
)
343 fprintf(stderr
, "Looking up %s ... ", host
);
345 gai
= getaddrinfo(host
, port
, &hints
, &ai
);
347 die("Unable to look up %s (port %s) (%s)", host
, port
, gai_strerror(gai
));
349 if (flags
& CONNECT_VERBOSE
)
350 fprintf(stderr
, "done.\nConnecting to %s (port %s) ... ", host
, port
);
352 for (ai0
= ai
; ai
; ai
= ai
->ai_next
, cnt
++) {
353 sockfd
= socket(ai
->ai_family
,
354 ai
->ai_socktype
, ai
->ai_protocol
);
356 (connect(sockfd
, ai
->ai_addr
, ai
->ai_addrlen
) < 0)) {
357 strbuf_addf(&error_message
, "%s[%d: %s]: errno=%s\n",
358 host
, cnt
, ai_name(ai
), strerror(errno
));
364 if (flags
& CONNECT_VERBOSE
)
365 fprintf(stderr
, "%s ", ai_name(ai
));
372 die("unable to connect to %s:\n%s", host
, error_message
.buf
);
374 enable_keepalive(sockfd
);
376 if (flags
& CONNECT_VERBOSE
)
377 fprintf(stderr
, "done.\n");
379 strbuf_release(&error_message
);
387 * Returns a connected socket() fd, or else die()s.
389 static int git_tcp_connect_sock(char *host
, int flags
)
391 struct strbuf error_message
= STRBUF_INIT
;
393 const char *port
= STR(DEFAULT_GIT_PORT
);
396 struct sockaddr_in sa
;
401 get_host_and_port(&host
, &port
);
403 if (flags
& CONNECT_VERBOSE
)
404 fprintf(stderr
, "Looking up %s ... ", host
);
406 he
= gethostbyname(host
);
408 die("Unable to look up %s (%s)", host
, hstrerror(h_errno
));
409 nport
= strtoul(port
, &ep
, 10);
410 if ( ep
== port
|| *ep
) {
412 struct servent
*se
= getservbyname(port
,"tcp");
414 die("Unknown port %s", port
);
418 if (flags
& CONNECT_VERBOSE
)
419 fprintf(stderr
, "done.\nConnecting to %s (port %s) ... ", host
, port
);
421 for (cnt
= 0, ap
= he
->h_addr_list
; *ap
; ap
++, cnt
++) {
422 memset(&sa
, 0, sizeof sa
);
423 sa
.sin_family
= he
->h_addrtype
;
424 sa
.sin_port
= htons(nport
);
425 memcpy(&sa
.sin_addr
, *ap
, he
->h_length
);
427 sockfd
= socket(he
->h_addrtype
, SOCK_STREAM
, 0);
429 connect(sockfd
, (struct sockaddr
*)&sa
, sizeof sa
) < 0) {
430 strbuf_addf(&error_message
, "%s[%d: %s]: errno=%s\n",
433 inet_ntoa(*(struct in_addr
*)&sa
.sin_addr
),
440 if (flags
& CONNECT_VERBOSE
)
441 fprintf(stderr
, "%s ",
442 inet_ntoa(*(struct in_addr
*)&sa
.sin_addr
));
447 die("unable to connect to %s:\n%s", host
, error_message
.buf
);
449 enable_keepalive(sockfd
);
451 if (flags
& CONNECT_VERBOSE
)
452 fprintf(stderr
, "done.\n");
460 static void git_tcp_connect(int fd
[2], char *host
, int flags
)
462 int sockfd
= git_tcp_connect_sock(host
, flags
);
469 static char *git_proxy_command
;
471 static int git_proxy_command_options(const char *var
, const char *value
,
474 if (!strcmp(var
, "core.gitproxy")) {
478 const char *rhost_name
= cb
;
479 int rhost_len
= strlen(rhost_name
);
481 if (git_proxy_command
)
484 return config_error_nonbool(var
);
486 * ;# matches www.kernel.org as well
487 * gitproxy = netcatter-1 for kernel.org
488 * gitproxy = netcatter-2 for sample.xz
489 * gitproxy = netcatter-default
491 for_pos
= strstr(value
, " for ");
493 /* matches everybody */
494 matchlen
= strlen(value
);
496 hostlen
= strlen(for_pos
+ 5);
497 if (rhost_len
< hostlen
)
499 else if (!strncmp(for_pos
+ 5,
500 rhost_name
+ rhost_len
- hostlen
,
502 ((rhost_len
== hostlen
) ||
503 rhost_name
[rhost_len
- hostlen
-1] == '.'))
504 matchlen
= for_pos
- value
;
509 /* core.gitproxy = none for kernel.org */
511 !memcmp(value
, "none", 4))
513 git_proxy_command
= xmemdupz(value
, matchlen
);
518 return git_default_config(var
, value
, cb
);
521 static int git_use_proxy(const char *host
)
523 git_proxy_command
= getenv("GIT_PROXY_COMMAND");
524 git_config(git_proxy_command_options
, (void*)host
);
525 return (git_proxy_command
&& *git_proxy_command
);
528 static struct child_process
*git_proxy_connect(int fd
[2], char *host
)
530 const char *port
= STR(DEFAULT_GIT_PORT
);
531 struct child_process
*proxy
;
533 get_host_and_port(&host
, &port
);
535 proxy
= xmalloc(sizeof(*proxy
));
536 child_process_init(proxy
);
537 argv_array_push(&proxy
->args
, git_proxy_command
);
538 argv_array_push(&proxy
->args
, host
);
539 argv_array_push(&proxy
->args
, port
);
542 if (start_command(proxy
))
543 die("cannot start proxy %s", git_proxy_command
);
544 fd
[0] = proxy
->out
; /* read from proxy stdout */
545 fd
[1] = proxy
->in
; /* write to proxy stdin */
549 static const char *get_port_numeric(const char *p
)
553 long port
= strtol(p
+ 1, &end
, 10);
554 if (end
!= p
+ 1 && *end
== '\0' && 0 <= port
&& port
< 65536) {
563 * Extract protocol and relevant parts from the specified connection URL.
564 * The caller must free() the returned strings.
566 static enum protocol
parse_connect_url(const char *url_orig
, char **ret_host
,
573 enum protocol protocol
= PROTO_LOCAL
;
575 if (is_url(url_orig
))
576 url
= url_decode(url_orig
);
578 url
= xstrdup(url_orig
);
580 host
= strstr(url
, "://");
583 protocol
= get_protocol(url
);
587 if (!url_is_local_not_ssh(url
)) {
588 protocol
= PROTO_SSH
;
594 * Don't do destructive transforms as protocol code does
595 * '[]' unwrapping in get_host_and_port()
597 if (host
[0] == '[') {
598 end
= strchr(host
+ 1, ']');
606 if (protocol
== PROTO_LOCAL
)
608 else if (protocol
== PROTO_FILE
&& has_dos_drive_prefix(end
))
609 path
= end
; /* "file://$(pwd)" may be "file://C:/projects/repo" */
611 path
= strchr(end
, separator
);
614 die("No path specified. See 'man git-pull' for valid url syntax");
617 * null-terminate hostname and point path to ~ for URL's like this:
618 * ssh://host.xz/~user/repo
621 end
= path
; /* Need to \0 terminate host here */
622 if (separator
== ':')
623 path
++; /* path starts after ':' */
624 if (protocol
== PROTO_GIT
|| protocol
== PROTO_SSH
) {
629 path
= xstrdup(path
);
632 *ret_host
= xstrdup(host
);
638 static struct child_process no_fork
= CHILD_PROCESS_INIT
;
641 * This returns a dummy child_process if the transport protocol does not
642 * need fork(2), or a struct child_process object if it does. Once done,
643 * finish the connection with finish_connect() with the value returned from
644 * this function (it is safe to call finish_connect() with NULL to support
647 * If it returns, the connect is successful; it just dies on errors (this
648 * will hopefully be changed in a libification effort, to return NULL when
649 * the connection failed).
651 struct child_process
*git_connect(int fd
[2], const char *url
,
652 const char *prog
, int flags
)
654 char *hostandport
, *path
;
655 struct child_process
*conn
= &no_fork
;
656 enum protocol protocol
;
657 struct strbuf cmd
= STRBUF_INIT
;
659 /* Without this we cannot rely on waitpid() to tell
660 * what happened to our children.
662 signal(SIGCHLD
, SIG_DFL
);
664 protocol
= parse_connect_url(url
, &hostandport
, &path
);
665 if (flags
& CONNECT_DIAG_URL
) {
666 printf("Diag: url=%s\n", url
? url
: "NULL");
667 printf("Diag: protocol=%s\n", prot_name(protocol
));
668 printf("Diag: hostandport=%s\n", hostandport
? hostandport
: "NULL");
669 printf("Diag: path=%s\n", path
? path
: "NULL");
671 } else if (protocol
== PROTO_GIT
) {
673 * Set up virtual host information based on where we will
674 * connect, unless the user has overridden us in
677 char *target_host
= getenv("GIT_OVERRIDE_VIRTUAL_HOST");
679 target_host
= xstrdup(target_host
);
681 target_host
= xstrdup(hostandport
);
683 /* These underlying connection commands die() if they
686 if (git_use_proxy(hostandport
))
687 conn
= git_proxy_connect(fd
, hostandport
);
689 git_tcp_connect(fd
, hostandport
, flags
);
691 * Separate original protocol components prog and path
692 * from extended host header with a NUL byte.
694 * Note: Do not add any other headers here! Doing so
695 * will cause older git-daemon servers to crash.
703 conn
= xmalloc(sizeof(*conn
));
704 child_process_init(conn
);
706 strbuf_addstr(&cmd
, prog
);
707 strbuf_addch(&cmd
, ' ');
708 sq_quote_buf(&cmd
, path
);
710 conn
->in
= conn
->out
= -1;
711 if (protocol
== PROTO_SSH
) {
714 char *ssh_host
= hostandport
;
715 const char *port
= NULL
;
716 get_host_and_port(&ssh_host
, &port
);
717 port
= get_port_numeric(port
);
719 ssh
= getenv("GIT_SSH_COMMAND");
724 ssh
= getenv("GIT_SSH");
727 putty
= !!strcasestr(ssh
, "plink");
730 argv_array_push(&conn
->args
, ssh
);
731 if (putty
&& !strcasestr(ssh
, "tortoiseplink"))
732 argv_array_push(&conn
->args
, "-batch");
734 /* P is for PuTTY, p is for OpenSSH */
735 argv_array_push(&conn
->args
, putty
? "-P" : "-p");
736 argv_array_push(&conn
->args
, port
);
738 argv_array_push(&conn
->args
, ssh_host
);
740 /* remove repo-local variables from the environment */
741 conn
->env
= local_repo_env
;
744 argv_array_push(&conn
->args
, cmd
.buf
);
746 if (start_command(conn
))
747 die("unable to fork");
749 fd
[0] = conn
->out
; /* read from child's stdout */
750 fd
[1] = conn
->in
; /* write to child's stdin */
751 strbuf_release(&cmd
);
758 int git_connection_is_socket(struct child_process
*conn
)
760 return conn
== &no_fork
;
763 int finish_connect(struct child_process
*conn
)
766 if (!conn
|| git_connection_is_socket(conn
))
769 code
= finish_command(conn
);