1 #include "git-compat-util.h"
6 #include "run-command.h"
9 #include "string-list.h"
11 static char *server_capabilities
;
12 static const char *parse_feature_value(const char *, const char *, int *);
14 static int check_ref(const char *name
, int len
, unsigned int flags
)
19 if (len
< 5 || memcmp(name
, "refs/", 5))
22 /* Skip the "refs/" part */
26 /* REF_NORMAL means that we don't want the magic fake tag refs */
27 if ((flags
& REF_NORMAL
) && check_refname_format(name
, 0))
30 /* REF_HEADS means that we want regular branch heads */
31 if ((flags
& REF_HEADS
) && !memcmp(name
, "heads/", 6))
34 /* REF_TAGS means that we want tags */
35 if ((flags
& REF_TAGS
) && !memcmp(name
, "tags/", 5))
38 /* All type bits clear means that we are ok with anything */
39 return !(flags
& ~REF_NORMAL
);
42 int check_ref_type(const struct ref
*ref
, int flags
)
44 return check_ref(ref
->name
, strlen(ref
->name
), flags
);
47 static void add_extra_have(struct extra_have_objects
*extra
, unsigned char *sha1
)
49 ALLOC_GROW(extra
->array
, extra
->nr
+ 1, extra
->alloc
);
50 hashcpy(&(extra
->array
[extra
->nr
][0]), sha1
);
54 static void die_initial_contact(int got_at_least_one_head
)
56 if (got_at_least_one_head
)
57 die("The remote end hung up upon initial contact");
59 die("Could not read from remote repository.\n\n"
60 "Please make sure you have the correct access rights\n"
61 "and the repository exists.");
64 static void parse_one_symref_info(struct string_list
*symref
, const char *val
, int len
)
67 struct string_list_item
*item
;
70 return; /* just "symref" */
71 /* e.g. "symref=HEAD:refs/heads/master" */
72 sym
= xmalloc(len
+ 1);
73 memcpy(sym
, val
, len
);
75 target
= strchr(sym
, ':');
77 /* just "symref=something" */
80 if (check_refname_format(sym
, REFNAME_ALLOW_ONELEVEL
) ||
81 check_refname_format(target
, REFNAME_ALLOW_ONELEVEL
))
82 /* "symref=bogus:pair */
84 item
= string_list_append(symref
, sym
);
92 static void annotate_refs_with_symref_info(struct ref
*ref
)
94 struct string_list symref
= STRING_LIST_INIT_DUP
;
95 const char *feature_list
= server_capabilities
;
97 while (feature_list
) {
101 val
= parse_feature_value(feature_list
, "symref", &len
);
104 parse_one_symref_info(&symref
, val
, len
);
105 feature_list
= val
+ 1;
107 sort_string_list(&symref
);
109 for (; ref
; ref
= ref
->next
) {
110 struct string_list_item
*item
;
111 item
= string_list_lookup(&symref
, ref
->name
);
114 ref
->symref
= xstrdup((char *)item
->util
);
116 string_list_clear(&symref
, 0);
120 * Read all the refs from the other end
122 struct ref
**get_remote_heads(int in
, char *src_buf
, size_t src_len
,
123 struct ref
**list
, unsigned int flags
,
124 struct extra_have_objects
*extra_have
)
126 struct ref
**orig_list
= list
;
127 int got_at_least_one_head
= 0;
132 unsigned char old_sha1
[20];
135 char *buffer
= packet_buffer
;
137 len
= packet_read(in
, &src_buf
, &src_len
,
138 packet_buffer
, sizeof(packet_buffer
),
139 PACKET_READ_GENTLE_ON_EOF
|
140 PACKET_READ_CHOMP_NEWLINE
);
142 die_initial_contact(got_at_least_one_head
);
147 if (len
> 4 && !prefixcmp(buffer
, "ERR "))
148 die("remote error: %s", buffer
+ 4);
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);
161 name_len
== 5 && !memcmp(".have", name
, 5)) {
162 add_extra_have(extra_have
, old_sha1
);
166 if (!check_ref(name
, name_len
, flags
))
168 ref
= alloc_ref(buffer
+ 41);
169 hashcpy(ref
->old_sha1
, old_sha1
);
172 got_at_least_one_head
= 1;
175 annotate_refs_with_symref_info(*orig_list
);
180 static const char *parse_feature_value(const char *feature_list
, const char *feature
, int *lenp
)
187 len
= strlen(feature
);
188 while (*feature_list
) {
189 const char *found
= strstr(feature_list
, feature
);
192 if (feature_list
== found
|| isspace(found
[-1])) {
193 const char *value
= found
+ len
;
194 /* feature with no value (e.g., "thin-pack") */
195 if (!*value
|| isspace(*value
)) {
200 /* feature with a value (e.g., "agent=git/1.2.3") */
201 else if (*value
== '=') {
204 *lenp
= strcspn(value
, " \t\n");
208 * otherwise we matched a substring of another feature;
212 feature_list
= found
+ 1;
217 int parse_feature_request(const char *feature_list
, const char *feature
)
219 return !!parse_feature_value(feature_list
, feature
, NULL
);
222 const char *server_feature_value(const char *feature
, int *len
)
224 return parse_feature_value(server_capabilities
, feature
, len
);
227 int server_supports(const char *feature
)
229 return !!server_feature_value(feature
, NULL
);
238 static enum protocol
get_protocol(const char *name
)
240 if (!strcmp(name
, "ssh"))
242 if (!strcmp(name
, "git"))
244 if (!strcmp(name
, "git+ssh"))
246 if (!strcmp(name
, "ssh+git"))
248 if (!strcmp(name
, "file"))
250 die("I don't handle protocol '%s'", name
);
254 #define STR(s) STR_(s)
256 static void get_host_and_port(char **host
, const char **port
)
260 if (*host
[0] == '[') {
261 end
= strchr(*host
+ 1, ']');
270 colon
= strchr(end
, ':');
278 static void enable_keepalive(int sockfd
)
282 if (setsockopt(sockfd
, SOL_SOCKET
, SO_KEEPALIVE
, &ka
, sizeof(ka
)) < 0)
283 fprintf(stderr
, "unable to set SO_KEEPALIVE on socket: %s\n",
289 static const char *ai_name(const struct addrinfo
*ai
)
291 static char addr
[NI_MAXHOST
];
292 if (getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, addr
, sizeof(addr
), NULL
, 0,
293 NI_NUMERICHOST
) != 0)
294 strcpy(addr
, "(unknown)");
300 * Returns a connected socket() fd, or else die()s.
302 static int git_tcp_connect_sock(char *host
, int flags
)
304 struct strbuf error_message
= STRBUF_INIT
;
306 const char *port
= STR(DEFAULT_GIT_PORT
);
307 struct addrinfo hints
, *ai0
, *ai
;
311 get_host_and_port(&host
, &port
);
315 memset(&hints
, 0, sizeof(hints
));
316 hints
.ai_socktype
= SOCK_STREAM
;
317 hints
.ai_protocol
= IPPROTO_TCP
;
319 if (flags
& CONNECT_VERBOSE
)
320 fprintf(stderr
, "Looking up %s ... ", host
);
322 gai
= getaddrinfo(host
, port
, &hints
, &ai
);
324 die("Unable to look up %s (port %s) (%s)", host
, port
, gai_strerror(gai
));
326 if (flags
& CONNECT_VERBOSE
)
327 fprintf(stderr
, "done.\nConnecting to %s (port %s) ... ", host
, port
);
329 for (ai0
= ai
; ai
; ai
= ai
->ai_next
, cnt
++) {
330 sockfd
= socket(ai
->ai_family
,
331 ai
->ai_socktype
, ai
->ai_protocol
);
333 (connect(sockfd
, ai
->ai_addr
, ai
->ai_addrlen
) < 0)) {
334 strbuf_addf(&error_message
, "%s[%d: %s]: errno=%s\n",
335 host
, cnt
, ai_name(ai
), strerror(errno
));
341 if (flags
& CONNECT_VERBOSE
)
342 fprintf(stderr
, "%s ", ai_name(ai
));
349 die("unable to connect to %s:\n%s", host
, error_message
.buf
);
351 enable_keepalive(sockfd
);
353 if (flags
& CONNECT_VERBOSE
)
354 fprintf(stderr
, "done.\n");
356 strbuf_release(&error_message
);
364 * Returns a connected socket() fd, or else die()s.
366 static int git_tcp_connect_sock(char *host
, int flags
)
368 struct strbuf error_message
= STRBUF_INIT
;
370 const char *port
= STR(DEFAULT_GIT_PORT
);
373 struct sockaddr_in sa
;
378 get_host_and_port(&host
, &port
);
380 if (flags
& CONNECT_VERBOSE
)
381 fprintf(stderr
, "Looking up %s ... ", host
);
383 he
= gethostbyname(host
);
385 die("Unable to look up %s (%s)", host
, hstrerror(h_errno
));
386 nport
= strtoul(port
, &ep
, 10);
387 if ( ep
== port
|| *ep
) {
389 struct servent
*se
= getservbyname(port
,"tcp");
391 die("Unknown port %s", port
);
395 if (flags
& CONNECT_VERBOSE
)
396 fprintf(stderr
, "done.\nConnecting to %s (port %s) ... ", host
, port
);
398 for (cnt
= 0, ap
= he
->h_addr_list
; *ap
; ap
++, cnt
++) {
399 memset(&sa
, 0, sizeof sa
);
400 sa
.sin_family
= he
->h_addrtype
;
401 sa
.sin_port
= htons(nport
);
402 memcpy(&sa
.sin_addr
, *ap
, he
->h_length
);
404 sockfd
= socket(he
->h_addrtype
, SOCK_STREAM
, 0);
406 connect(sockfd
, (struct sockaddr
*)&sa
, sizeof sa
) < 0) {
407 strbuf_addf(&error_message
, "%s[%d: %s]: errno=%s\n",
410 inet_ntoa(*(struct in_addr
*)&sa
.sin_addr
),
417 if (flags
& CONNECT_VERBOSE
)
418 fprintf(stderr
, "%s ",
419 inet_ntoa(*(struct in_addr
*)&sa
.sin_addr
));
424 die("unable to connect to %s:\n%s", host
, error_message
.buf
);
426 enable_keepalive(sockfd
);
428 if (flags
& CONNECT_VERBOSE
)
429 fprintf(stderr
, "done.\n");
437 static void git_tcp_connect(int fd
[2], char *host
, int flags
)
439 int sockfd
= git_tcp_connect_sock(host
, flags
);
446 static char *git_proxy_command
;
448 static int git_proxy_command_options(const char *var
, const char *value
,
451 if (!strcmp(var
, "core.gitproxy")) {
455 const char *rhost_name
= cb
;
456 int rhost_len
= strlen(rhost_name
);
458 if (git_proxy_command
)
461 return config_error_nonbool(var
);
463 * ;# matches www.kernel.org as well
464 * gitproxy = netcatter-1 for kernel.org
465 * gitproxy = netcatter-2 for sample.xz
466 * gitproxy = netcatter-default
468 for_pos
= strstr(value
, " for ");
470 /* matches everybody */
471 matchlen
= strlen(value
);
473 hostlen
= strlen(for_pos
+ 5);
474 if (rhost_len
< hostlen
)
476 else if (!strncmp(for_pos
+ 5,
477 rhost_name
+ rhost_len
- hostlen
,
479 ((rhost_len
== hostlen
) ||
480 rhost_name
[rhost_len
- hostlen
-1] == '.'))
481 matchlen
= for_pos
- value
;
486 /* core.gitproxy = none for kernel.org */
488 !memcmp(value
, "none", 4))
490 git_proxy_command
= xmemdupz(value
, matchlen
);
495 return git_default_config(var
, value
, cb
);
498 static int git_use_proxy(const char *host
)
500 git_proxy_command
= getenv("GIT_PROXY_COMMAND");
501 git_config(git_proxy_command_options
, (void*)host
);
502 return (git_proxy_command
&& *git_proxy_command
);
505 static struct child_process
*git_proxy_connect(int fd
[2], char *host
)
507 const char *port
= STR(DEFAULT_GIT_PORT
);
509 struct child_process
*proxy
;
511 get_host_and_port(&host
, &port
);
513 argv
= xmalloc(sizeof(*argv
) * 4);
514 argv
[0] = git_proxy_command
;
518 proxy
= xcalloc(1, sizeof(*proxy
));
522 if (start_command(proxy
))
523 die("cannot start proxy %s", argv
[0]);
524 fd
[0] = proxy
->out
; /* read from proxy stdout */
525 fd
[1] = proxy
->in
; /* write to proxy stdin */
529 #define MAX_CMD_LEN 1024
531 static char *get_port(char *host
)
534 char *p
= strchr(host
, ':');
537 long port
= strtol(p
+ 1, &end
, 10);
538 if (end
!= p
+ 1 && *end
== '\0' && 0 <= port
&& port
< 65536) {
547 static struct child_process no_fork
;
550 * This returns a dummy child_process if the transport protocol does not
551 * need fork(2), or a struct child_process object if it does. Once done,
552 * finish the connection with finish_connect() with the value returned from
553 * this function (it is safe to call finish_connect() with NULL to support
556 * If it returns, the connect is successful; it just dies on errors (this
557 * will hopefully be changed in a libification effort, to return NULL when
558 * the connection failed).
560 struct child_process
*git_connect(int fd
[2], const char *url_orig
,
561 const char *prog
, int flags
)
567 struct child_process
*conn
= &no_fork
;
568 enum protocol protocol
= PROTO_LOCAL
;
574 /* Without this we cannot rely on waitpid() to tell
575 * what happened to our children.
577 signal(SIGCHLD
, SIG_DFL
);
579 if (is_url(url_orig
))
580 url
= url_decode(url_orig
);
582 url
= xstrdup(url_orig
);
584 host
= strstr(url
, "://");
587 protocol
= get_protocol(url
);
596 * Don't do destructive transforms with git:// as that
597 * protocol code does '[]' unwrapping of its own.
599 if (host
[0] == '[') {
600 end
= strchr(host
+ 1, ']');
602 if (protocol
!= PROTO_GIT
) {
612 path
= strchr(end
, c
);
613 if (path
&& !has_dos_drive_prefix(end
)) {
615 if (path
< strchrnul(host
, '/')) {
616 protocol
= PROTO_SSH
;
618 } else /* '/' in the host part, assume local path */
625 die("No path specified. See 'man git-pull' for valid url syntax");
628 * null-terminate hostname and point path to ~ for URL's like this:
629 * ssh://host.xz/~user/repo
631 if (protocol
!= PROTO_LOCAL
&& host
!= url
) {
644 * Add support for ssh port: ssh://host.xy:<port>/...
646 if (protocol
== PROTO_SSH
&& host
!= url
)
647 port
= get_port(end
);
649 if (protocol
== PROTO_GIT
) {
650 /* These underlying connection commands die() if they
653 char *target_host
= xstrdup(host
);
654 if (git_use_proxy(host
))
655 conn
= git_proxy_connect(fd
, host
);
657 git_tcp_connect(fd
, host
, flags
);
659 * Separate original protocol components prog and path
660 * from extended host header with a NUL byte.
662 * Note: Do not add any other headers here! Doing so
663 * will cause older git-daemon servers to crash.
676 conn
= xcalloc(1, sizeof(*conn
));
678 strbuf_init(&cmd
, MAX_CMD_LEN
);
679 strbuf_addstr(&cmd
, prog
);
680 strbuf_addch(&cmd
, ' ');
681 sq_quote_buf(&cmd
, path
);
682 if (cmd
.len
>= MAX_CMD_LEN
)
683 die("command line too long");
685 conn
->in
= conn
->out
= -1;
686 conn
->argv
= arg
= xcalloc(7, sizeof(*arg
));
687 if (protocol
== PROTO_SSH
) {
688 const char *ssh
= getenv("GIT_SSH");
689 int putty
= ssh
&& strcasestr(ssh
, "plink");
690 if (!ssh
) ssh
= "ssh";
693 if (putty
&& !strcasestr(ssh
, "tortoiseplink"))
696 /* P is for PuTTY, p is for OpenSSH */
697 *arg
++ = putty
? "-P" : "-p";
703 /* remove repo-local variables from the environment */
704 conn
->env
= local_repo_env
;
710 if (start_command(conn
))
711 die("unable to fork");
713 fd
[0] = conn
->out
; /* read from child's stdout */
714 fd
[1] = conn
->in
; /* write to child's stdin */
715 strbuf_release(&cmd
);
722 int git_connection_is_socket(struct child_process
*conn
)
724 return conn
== &no_fork
;
727 int finish_connect(struct child_process
*conn
)
730 if (!conn
|| git_connection_is_socket(conn
))
733 code
= finish_command(conn
);