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
, int len
, unsigned int flags
)
21 if (len
< 5 || memcmp(name
, "refs/", 5))
24 /* Skip the "refs/" part */
28 /* REF_NORMAL means that we don't want the magic fake tag refs */
29 if ((flags
& REF_NORMAL
) && check_refname_format(name
, 0))
32 /* REF_HEADS means that we want regular branch heads */
33 if ((flags
& REF_HEADS
) && !memcmp(name
, "heads/", 6))
36 /* REF_TAGS means that we want tags */
37 if ((flags
& REF_TAGS
) && !memcmp(name
, "tags/", 5))
40 /* All type bits clear means that we are ok with anything */
41 return !(flags
& ~REF_NORMAL
);
44 int check_ref_type(const struct ref
*ref
, int flags
)
46 return check_ref(ref
->name
, strlen(ref
->name
), flags
);
49 static void die_initial_contact(int got_at_least_one_head
)
51 if (got_at_least_one_head
)
52 die("The remote end hung up upon initial contact");
54 die("Could not read from remote repository.\n\n"
55 "Please make sure you have the correct access rights\n"
56 "and the repository exists.");
59 static void parse_one_symref_info(struct string_list
*symref
, const char *val
, int len
)
62 struct string_list_item
*item
;
65 return; /* just "symref" */
66 /* e.g. "symref=HEAD:refs/heads/master" */
67 sym
= xmemdupz(val
, len
);
68 target
= strchr(sym
, ':');
70 /* just "symref=something" */
73 if (check_refname_format(sym
, REFNAME_ALLOW_ONELEVEL
) ||
74 check_refname_format(target
, REFNAME_ALLOW_ONELEVEL
))
75 /* "symref=bogus:pair */
77 item
= string_list_append(symref
, sym
);
85 static void annotate_refs_with_symref_info(struct ref
*ref
)
87 struct string_list symref
= STRING_LIST_INIT_DUP
;
88 const char *feature_list
= server_capabilities
;
90 while (feature_list
) {
94 val
= parse_feature_value(feature_list
, "symref", &len
);
97 parse_one_symref_info(&symref
, val
, len
);
98 feature_list
= val
+ 1;
100 sort_string_list(&symref
);
102 for (; ref
; ref
= ref
->next
) {
103 struct string_list_item
*item
;
104 item
= string_list_lookup(&symref
, ref
->name
);
107 ref
->symref
= xstrdup((char *)item
->util
);
109 string_list_clear(&symref
, 0);
113 * Read all the refs from the other end
115 struct ref
**get_remote_heads(int in
, char *src_buf
, size_t src_len
,
116 struct ref
**list
, unsigned int flags
,
117 struct sha1_array
*extra_have
,
118 struct sha1_array
*shallow_points
)
120 struct ref
**orig_list
= list
;
121 int got_at_least_one_head
= 0;
126 unsigned char old_sha1
[20];
129 char *buffer
= packet_buffer
;
132 len
= packet_read(in
, &src_buf
, &src_len
,
133 packet_buffer
, sizeof(packet_buffer
),
134 PACKET_READ_GENTLE_ON_EOF
|
135 PACKET_READ_CHOMP_NEWLINE
);
137 die_initial_contact(got_at_least_one_head
);
142 if (len
> 4 && skip_prefix(buffer
, "ERR ", &arg
))
143 die("remote error: %s", arg
);
145 if (len
== 48 && skip_prefix(buffer
, "shallow ", &arg
)) {
146 if (get_sha1_hex(arg
, old_sha1
))
147 die("protocol error: expected shallow sha-1, got '%s'", arg
);
149 die("repository on the other end cannot be shallow");
150 sha1_array_append(shallow_points
, old_sha1
);
154 if (len
< 42 || get_sha1_hex(buffer
, old_sha1
) || buffer
[40] != ' ')
155 die("protocol error: expected sha/ref, got '%s'", buffer
);
158 name_len
= strlen(name
);
159 if (len
!= name_len
+ 41) {
160 free(server_capabilities
);
161 server_capabilities
= xstrdup(name
+ name_len
+ 1);
164 if (extra_have
&& !strcmp(name
, ".have")) {
165 sha1_array_append(extra_have
, old_sha1
);
169 if (!check_ref(name
, name_len
, flags
))
171 ref
= alloc_ref(buffer
+ 41);
172 hashcpy(ref
->old_sha1
, old_sha1
);
175 got_at_least_one_head
= 1;
178 annotate_refs_with_symref_info(*orig_list
);
183 static const char *parse_feature_value(const char *feature_list
, const char *feature
, int *lenp
)
190 len
= strlen(feature
);
191 while (*feature_list
) {
192 const char *found
= strstr(feature_list
, feature
);
195 if (feature_list
== found
|| isspace(found
[-1])) {
196 const char *value
= found
+ len
;
197 /* feature with no value (e.g., "thin-pack") */
198 if (!*value
|| isspace(*value
)) {
203 /* feature with a value (e.g., "agent=git/1.2.3") */
204 else if (*value
== '=') {
207 *lenp
= strcspn(value
, " \t\n");
211 * otherwise we matched a substring of another feature;
215 feature_list
= found
+ 1;
220 int parse_feature_request(const char *feature_list
, const char *feature
)
222 return !!parse_feature_value(feature_list
, feature
, NULL
);
225 const char *server_feature_value(const char *feature
, int *len
)
227 return parse_feature_value(server_capabilities
, feature
, len
);
230 int server_supports(const char *feature
)
232 return !!server_feature_value(feature
, NULL
);
242 int url_is_local_not_ssh(const char *url
)
244 const char *colon
= strchr(url
, ':');
245 const char *slash
= strchr(url
, '/');
246 return !colon
|| (slash
&& slash
< colon
) ||
247 has_dos_drive_prefix(url
);
250 static const char *prot_name(enum protocol protocol
)
261 return "unkown protocol";
265 static enum protocol
get_protocol(const char *name
)
267 if (!strcmp(name
, "ssh"))
269 if (!strcmp(name
, "git"))
271 if (!strcmp(name
, "git+ssh"))
273 if (!strcmp(name
, "ssh+git"))
275 if (!strcmp(name
, "file"))
277 die("I don't handle protocol '%s'", name
);
281 #define STR(s) STR_(s)
283 static void get_host_and_port(char **host
, const char **port
)
287 if (*host
[0] == '[') {
288 end
= strchr(*host
+ 1, ']');
297 colon
= strchr(end
, ':');
305 static void enable_keepalive(int sockfd
)
309 if (setsockopt(sockfd
, SOL_SOCKET
, SO_KEEPALIVE
, &ka
, sizeof(ka
)) < 0)
310 fprintf(stderr
, "unable to set SO_KEEPALIVE on socket: %s\n",
316 static const char *ai_name(const struct addrinfo
*ai
)
318 static char addr
[NI_MAXHOST
];
319 if (getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, addr
, sizeof(addr
), NULL
, 0,
320 NI_NUMERICHOST
) != 0)
321 strcpy(addr
, "(unknown)");
327 * Returns a connected socket() fd, or else die()s.
329 static int git_tcp_connect_sock(char *host
, int flags
)
331 struct strbuf error_message
= STRBUF_INIT
;
333 const char *port
= STR(DEFAULT_GIT_PORT
);
334 struct addrinfo hints
, *ai0
, *ai
;
338 get_host_and_port(&host
, &port
);
342 memset(&hints
, 0, sizeof(hints
));
343 hints
.ai_socktype
= SOCK_STREAM
;
344 hints
.ai_protocol
= IPPROTO_TCP
;
346 if (flags
& CONNECT_VERBOSE
)
347 fprintf(stderr
, "Looking up %s ... ", host
);
349 gai
= getaddrinfo(host
, port
, &hints
, &ai
);
351 die("Unable to look up %s (port %s) (%s)", host
, port
, gai_strerror(gai
));
353 if (flags
& CONNECT_VERBOSE
)
354 fprintf(stderr
, "done.\nConnecting to %s (port %s) ... ", host
, port
);
356 for (ai0
= ai
; ai
; ai
= ai
->ai_next
, cnt
++) {
357 sockfd
= socket(ai
->ai_family
,
358 ai
->ai_socktype
, ai
->ai_protocol
);
360 (connect(sockfd
, ai
->ai_addr
, ai
->ai_addrlen
) < 0)) {
361 strbuf_addf(&error_message
, "%s[%d: %s]: errno=%s\n",
362 host
, cnt
, ai_name(ai
), strerror(errno
));
368 if (flags
& CONNECT_VERBOSE
)
369 fprintf(stderr
, "%s ", ai_name(ai
));
376 die("unable to connect to %s:\n%s", host
, error_message
.buf
);
378 enable_keepalive(sockfd
);
380 if (flags
& CONNECT_VERBOSE
)
381 fprintf(stderr
, "done.\n");
383 strbuf_release(&error_message
);
391 * Returns a connected socket() fd, or else die()s.
393 static int git_tcp_connect_sock(char *host
, int flags
)
395 struct strbuf error_message
= STRBUF_INIT
;
397 const char *port
= STR(DEFAULT_GIT_PORT
);
400 struct sockaddr_in sa
;
405 get_host_and_port(&host
, &port
);
407 if (flags
& CONNECT_VERBOSE
)
408 fprintf(stderr
, "Looking up %s ... ", host
);
410 he
= gethostbyname(host
);
412 die("Unable to look up %s (%s)", host
, hstrerror(h_errno
));
413 nport
= strtoul(port
, &ep
, 10);
414 if ( ep
== port
|| *ep
) {
416 struct servent
*se
= getservbyname(port
,"tcp");
418 die("Unknown port %s", port
);
422 if (flags
& CONNECT_VERBOSE
)
423 fprintf(stderr
, "done.\nConnecting to %s (port %s) ... ", host
, port
);
425 for (cnt
= 0, ap
= he
->h_addr_list
; *ap
; ap
++, cnt
++) {
426 memset(&sa
, 0, sizeof sa
);
427 sa
.sin_family
= he
->h_addrtype
;
428 sa
.sin_port
= htons(nport
);
429 memcpy(&sa
.sin_addr
, *ap
, he
->h_length
);
431 sockfd
= socket(he
->h_addrtype
, SOCK_STREAM
, 0);
433 connect(sockfd
, (struct sockaddr
*)&sa
, sizeof sa
) < 0) {
434 strbuf_addf(&error_message
, "%s[%d: %s]: errno=%s\n",
437 inet_ntoa(*(struct in_addr
*)&sa
.sin_addr
),
444 if (flags
& CONNECT_VERBOSE
)
445 fprintf(stderr
, "%s ",
446 inet_ntoa(*(struct in_addr
*)&sa
.sin_addr
));
451 die("unable to connect to %s:\n%s", host
, error_message
.buf
);
453 enable_keepalive(sockfd
);
455 if (flags
& CONNECT_VERBOSE
)
456 fprintf(stderr
, "done.\n");
464 static void git_tcp_connect(int fd
[2], char *host
, int flags
)
466 int sockfd
= git_tcp_connect_sock(host
, flags
);
473 static char *git_proxy_command
;
475 static int git_proxy_command_options(const char *var
, const char *value
,
478 if (!strcmp(var
, "core.gitproxy")) {
482 const char *rhost_name
= cb
;
483 int rhost_len
= strlen(rhost_name
);
485 if (git_proxy_command
)
488 return config_error_nonbool(var
);
490 * ;# matches www.kernel.org as well
491 * gitproxy = netcatter-1 for kernel.org
492 * gitproxy = netcatter-2 for sample.xz
493 * gitproxy = netcatter-default
495 for_pos
= strstr(value
, " for ");
497 /* matches everybody */
498 matchlen
= strlen(value
);
500 hostlen
= strlen(for_pos
+ 5);
501 if (rhost_len
< hostlen
)
503 else if (!strncmp(for_pos
+ 5,
504 rhost_name
+ rhost_len
- hostlen
,
506 ((rhost_len
== hostlen
) ||
507 rhost_name
[rhost_len
- hostlen
-1] == '.'))
508 matchlen
= for_pos
- value
;
513 /* core.gitproxy = none for kernel.org */
515 !memcmp(value
, "none", 4))
517 git_proxy_command
= xmemdupz(value
, matchlen
);
522 return git_default_config(var
, value
, cb
);
525 static int git_use_proxy(const char *host
)
527 git_proxy_command
= getenv("GIT_PROXY_COMMAND");
528 git_config(git_proxy_command_options
, (void*)host
);
529 return (git_proxy_command
&& *git_proxy_command
);
532 static struct child_process
*git_proxy_connect(int fd
[2], char *host
)
534 const char *port
= STR(DEFAULT_GIT_PORT
);
535 struct child_process
*proxy
;
537 get_host_and_port(&host
, &port
);
539 proxy
= xcalloc(1, sizeof(*proxy
));
540 argv_array_push(&proxy
->args
, git_proxy_command
);
541 argv_array_push(&proxy
->args
, host
);
542 argv_array_push(&proxy
->args
, port
);
545 if (start_command(proxy
))
546 die("cannot start proxy %s", git_proxy_command
);
547 fd
[0] = proxy
->out
; /* read from proxy stdout */
548 fd
[1] = proxy
->in
; /* write to proxy stdin */
552 static const char *get_port_numeric(const char *p
)
556 long port
= strtol(p
+ 1, &end
, 10);
557 if (end
!= p
+ 1 && *end
== '\0' && 0 <= port
&& port
< 65536) {
566 * Extract protocol and relevant parts from the specified connection URL.
567 * The caller must free() the returned strings.
569 static enum protocol
parse_connect_url(const char *url_orig
, char **ret_host
,
576 enum protocol protocol
= PROTO_LOCAL
;
578 if (is_url(url_orig
))
579 url
= url_decode(url_orig
);
581 url
= xstrdup(url_orig
);
583 host
= strstr(url
, "://");
586 protocol
= get_protocol(url
);
590 if (!url_is_local_not_ssh(url
)) {
591 protocol
= PROTO_SSH
;
597 * Don't do destructive transforms as protocol code does
598 * '[]' unwrapping in get_host_and_port()
600 if (host
[0] == '[') {
601 end
= strchr(host
+ 1, ']');
609 if (protocol
== PROTO_LOCAL
)
611 else if (protocol
== PROTO_FILE
&& has_dos_drive_prefix(end
))
612 path
= end
; /* "file://$(pwd)" may be "file://C:/projects/repo" */
614 path
= strchr(end
, separator
);
617 die("No path specified. See 'man git-pull' for valid url syntax");
620 * null-terminate hostname and point path to ~ for URL's like this:
621 * ssh://host.xz/~user/repo
624 end
= path
; /* Need to \0 terminate host here */
625 if (separator
== ':')
626 path
++; /* path starts after ':' */
627 if (protocol
== PROTO_GIT
|| protocol
== PROTO_SSH
) {
632 path
= xstrdup(path
);
635 *ret_host
= xstrdup(host
);
641 static struct child_process no_fork
;
644 * This returns a dummy child_process if the transport protocol does not
645 * need fork(2), or a struct child_process object if it does. Once done,
646 * finish the connection with finish_connect() with the value returned from
647 * this function (it is safe to call finish_connect() with NULL to support
650 * If it returns, the connect is successful; it just dies on errors (this
651 * will hopefully be changed in a libification effort, to return NULL when
652 * the connection failed).
654 struct child_process
*git_connect(int fd
[2], const char *url
,
655 const char *prog
, int flags
)
657 char *hostandport
, *path
;
658 struct child_process
*conn
= &no_fork
;
659 enum protocol protocol
;
660 struct strbuf cmd
= STRBUF_INIT
;
662 /* Without this we cannot rely on waitpid() to tell
663 * what happened to our children.
665 signal(SIGCHLD
, SIG_DFL
);
667 protocol
= parse_connect_url(url
, &hostandport
, &path
);
668 if (flags
& CONNECT_DIAG_URL
) {
669 printf("Diag: url=%s\n", url
? url
: "NULL");
670 printf("Diag: protocol=%s\n", prot_name(protocol
));
671 printf("Diag: hostandport=%s\n", hostandport
? hostandport
: "NULL");
672 printf("Diag: path=%s\n", path
? path
: "NULL");
674 } else if (protocol
== PROTO_GIT
) {
675 /* These underlying connection commands die() if they
678 char *target_host
= xstrdup(hostandport
);
679 if (git_use_proxy(hostandport
))
680 conn
= git_proxy_connect(fd
, hostandport
);
682 git_tcp_connect(fd
, hostandport
, flags
);
684 * Separate original protocol components prog and path
685 * from extended host header with a NUL byte.
687 * Note: Do not add any other headers here! Doing so
688 * will cause older git-daemon servers to crash.
696 conn
= xcalloc(1, sizeof(*conn
));
698 strbuf_addstr(&cmd
, prog
);
699 strbuf_addch(&cmd
, ' ');
700 sq_quote_buf(&cmd
, path
);
702 conn
->in
= conn
->out
= -1;
703 if (protocol
== PROTO_SSH
) {
704 const char *ssh
= getenv("GIT_SSH");
705 int putty
= ssh
&& strcasestr(ssh
, "plink");
706 char *ssh_host
= hostandport
;
707 const char *port
= NULL
;
708 get_host_and_port(&ssh_host
, &port
);
709 port
= get_port_numeric(port
);
711 if (!ssh
) ssh
= "ssh";
713 argv_array_push(&conn
->args
, ssh
);
714 if (putty
&& !strcasestr(ssh
, "tortoiseplink"))
715 argv_array_push(&conn
->args
, "-batch");
717 /* P is for PuTTY, p is for OpenSSH */
718 argv_array_push(&conn
->args
, putty
? "-P" : "-p");
719 argv_array_push(&conn
->args
, port
);
721 argv_array_push(&conn
->args
, ssh_host
);
723 /* remove repo-local variables from the environment */
724 conn
->env
= local_repo_env
;
727 argv_array_push(&conn
->args
, cmd
.buf
);
729 if (start_command(conn
))
730 die("unable to fork");
732 fd
[0] = conn
->out
; /* read from child's stdout */
733 fd
[1] = conn
->in
; /* write to child's stdin */
734 strbuf_release(&cmd
);
741 int git_connection_is_socket(struct child_process
*conn
)
743 return conn
== &no_fork
;
746 int finish_connect(struct child_process
*conn
)
749 if (!conn
|| git_connection_is_socket(conn
))
752 code
= finish_command(conn
);