1 #include "git-compat-util.h"
6 #include "run-command.h"
9 static char *server_capabilities
;
11 static int check_ref(const char *name
, int len
, unsigned int flags
)
16 if (len
< 5 || memcmp(name
, "refs/", 5))
19 /* Skip the "refs/" part */
23 /* REF_NORMAL means that we don't want the magic fake tag refs */
24 if ((flags
& REF_NORMAL
) && check_ref_format(name
) < 0)
27 /* REF_HEADS means that we want regular branch heads */
28 if ((flags
& REF_HEADS
) && !memcmp(name
, "heads/", 6))
31 /* REF_TAGS means that we want tags */
32 if ((flags
& REF_TAGS
) && !memcmp(name
, "tags/", 5))
35 /* All type bits clear means that we are ok with anything */
36 return !(flags
& ~REF_NORMAL
);
39 int check_ref_type(const struct ref
*ref
, int flags
)
41 return check_ref(ref
->name
, strlen(ref
->name
), flags
);
44 static void add_extra_have(struct extra_have_objects
*extra
, unsigned char *sha1
)
46 ALLOC_GROW(extra
->array
, extra
->nr
+ 1, extra
->alloc
);
47 hashcpy(&(extra
->array
[extra
->nr
][0]), sha1
);
52 * Read all the refs from the other end
54 struct ref
**get_remote_heads(int in
, struct ref
**list
,
55 int nr_match
, char **match
,
57 struct extra_have_objects
*extra_have
)
62 unsigned char old_sha1
[20];
63 static char buffer
[1000];
67 len
= packet_read_line(in
, buffer
, sizeof(buffer
));
70 if (buffer
[len
-1] == '\n')
73 if (len
< 42 || get_sha1_hex(buffer
, old_sha1
) || buffer
[40] != ' ')
74 die("protocol error: expected sha/ref, got '%s'", buffer
);
77 name_len
= strlen(name
);
78 if (len
!= name_len
+ 41) {
79 free(server_capabilities
);
80 server_capabilities
= xstrdup(name
+ name_len
+ 1);
84 name_len
== 5 && !memcmp(".have", name
, 5)) {
85 add_extra_have(extra_have
, old_sha1
);
89 if (!check_ref(name
, name_len
, flags
))
91 if (nr_match
&& !path_match(name
, nr_match
, match
))
93 ref
= alloc_ref(name_len
+ 1);
94 hashcpy(ref
->old_sha1
, old_sha1
);
95 memcpy(ref
->name
, buffer
+ 41, name_len
+ 1);
102 int server_supports(const char *feature
)
104 return server_capabilities
&&
105 strstr(server_capabilities
, feature
) != NULL
;
108 int get_ack(int fd
, unsigned char *result_sha1
)
110 static char line
[1000];
111 int len
= packet_read_line(fd
, line
, sizeof(line
));
114 die("git fetch-pack: expected ACK/NAK, got EOF");
115 if (line
[len
-1] == '\n')
117 if (!strcmp(line
, "NAK"))
119 if (!prefixcmp(line
, "ACK ")) {
120 if (!get_sha1_hex(line
+4, result_sha1
)) {
121 if (strstr(line
+45, "continue"))
126 die("git fetch_pack: expected ACK/NAK, got '%s'", line
);
129 int path_match(const char *path
, int nr
, char **match
)
132 int pathlen
= strlen(path
);
134 for (i
= 0; i
< nr
; i
++) {
138 if (!len
|| len
> pathlen
)
140 if (memcmp(path
+ pathlen
- len
, s
, len
))
142 if (pathlen
> len
&& path
[pathlen
- len
- 1] != '/')
156 static enum protocol
get_protocol(const char *name
)
158 if (!strcmp(name
, "ssh"))
160 if (!strcmp(name
, "git"))
162 if (!strcmp(name
, "git+ssh"))
164 if (!strcmp(name
, "ssh+git"))
166 if (!strcmp(name
, "file"))
168 die("I don't handle protocol '%s'", name
);
172 #define STR(s) STR_(s)
176 static const char *ai_name(const struct addrinfo
*ai
)
178 static char addr
[INET_ADDRSTRLEN
];
179 if ( AF_INET
== ai
->ai_family
) {
180 struct sockaddr_in
*in
;
181 in
= (struct sockaddr_in
*)ai
->ai_addr
;
182 inet_ntop(ai
->ai_family
, &in
->sin_addr
, addr
, sizeof(addr
));
183 } else if ( AF_INET6
== ai
->ai_family
) {
184 struct sockaddr_in6
*in
;
185 in
= (struct sockaddr_in6
*)ai
->ai_addr
;
186 inet_ntop(ai
->ai_family
, &in
->sin6_addr
, addr
, sizeof(addr
));
188 strcpy(addr
, "(unknown)");
194 * Returns a connected socket() fd, or else die()s.
196 static int git_tcp_connect_sock(char *host
, int flags
)
198 int sockfd
= -1, saved_errno
= 0;
200 const char *port
= STR(DEFAULT_GIT_PORT
);
201 struct addrinfo hints
, *ai0
, *ai
;
205 if (host
[0] == '[') {
206 end
= strchr(host
+ 1, ']');
215 colon
= strchr(end
, ':');
224 memset(&hints
, 0, sizeof(hints
));
225 hints
.ai_socktype
= SOCK_STREAM
;
226 hints
.ai_protocol
= IPPROTO_TCP
;
228 if (flags
& CONNECT_VERBOSE
)
229 fprintf(stderr
, "Looking up %s ... ", host
);
231 gai
= getaddrinfo(host
, port
, &hints
, &ai
);
233 die("Unable to look up %s (port %s) (%s)", host
, port
, gai_strerror(gai
));
235 if (flags
& CONNECT_VERBOSE
)
236 fprintf(stderr
, "done.\nConnecting to %s (port %s) ... ", host
, port
);
238 for (ai0
= ai
; ai
; ai
= ai
->ai_next
) {
239 sockfd
= socket(ai
->ai_family
,
240 ai
->ai_socktype
, ai
->ai_protocol
);
245 if (connect(sockfd
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
247 fprintf(stderr
, "%s[%d: %s]: errno=%s\n",
251 strerror(saved_errno
));
256 if (flags
& CONNECT_VERBOSE
)
257 fprintf(stderr
, "%s ", ai_name(ai
));
264 die("unable to connect a socket (%s)", strerror(saved_errno
));
266 if (flags
& CONNECT_VERBOSE
)
267 fprintf(stderr
, "done.\n");
275 * Returns a connected socket() fd, or else die()s.
277 static int git_tcp_connect_sock(char *host
, int flags
)
279 int sockfd
= -1, saved_errno
= 0;
281 char *port
= STR(DEFAULT_GIT_PORT
), *ep
;
283 struct sockaddr_in sa
;
288 if (host
[0] == '[') {
289 end
= strchr(host
+ 1, ']');
298 colon
= strchr(end
, ':');
305 if (flags
& CONNECT_VERBOSE
)
306 fprintf(stderr
, "Looking up %s ... ", host
);
308 he
= gethostbyname(host
);
310 die("Unable to look up %s (%s)", host
, hstrerror(h_errno
));
311 nport
= strtoul(port
, &ep
, 10);
312 if ( ep
== port
|| *ep
) {
314 struct servent
*se
= getservbyname(port
,"tcp");
316 die("Unknown port %s\n", port
);
320 if (flags
& CONNECT_VERBOSE
)
321 fprintf(stderr
, "done.\nConnecting to %s (port %s) ... ", host
, port
);
323 for (cnt
= 0, ap
= he
->h_addr_list
; *ap
; ap
++, cnt
++) {
324 sockfd
= socket(he
->h_addrtype
, SOCK_STREAM
, 0);
330 memset(&sa
, 0, sizeof sa
);
331 sa
.sin_family
= he
->h_addrtype
;
332 sa
.sin_port
= htons(nport
);
333 memcpy(&sa
.sin_addr
, *ap
, he
->h_length
);
335 if (connect(sockfd
, (struct sockaddr
*)&sa
, sizeof sa
) < 0) {
337 fprintf(stderr
, "%s[%d: %s]: errno=%s\n",
340 inet_ntoa(*(struct in_addr
*)&sa
.sin_addr
),
341 strerror(saved_errno
));
346 if (flags
& CONNECT_VERBOSE
)
347 fprintf(stderr
, "%s ",
348 inet_ntoa(*(struct in_addr
*)&sa
.sin_addr
));
353 die("unable to connect a socket (%s)", strerror(saved_errno
));
355 if (flags
& CONNECT_VERBOSE
)
356 fprintf(stderr
, "done.\n");
364 static void git_tcp_connect(int fd
[2], char *host
, int flags
)
366 int sockfd
= git_tcp_connect_sock(host
, flags
);
373 static char *git_proxy_command
;
374 static const char *rhost_name
;
375 static int rhost_len
;
377 static int git_proxy_command_options(const char *var
, const char *value
,
380 if (!strcmp(var
, "core.gitproxy")) {
385 if (git_proxy_command
)
388 return config_error_nonbool(var
);
390 * ;# matches www.kernel.org as well
391 * gitproxy = netcatter-1 for kernel.org
392 * gitproxy = netcatter-2 for sample.xz
393 * gitproxy = netcatter-default
395 for_pos
= strstr(value
, " for ");
397 /* matches everybody */
398 matchlen
= strlen(value
);
400 hostlen
= strlen(for_pos
+ 5);
401 if (rhost_len
< hostlen
)
403 else if (!strncmp(for_pos
+ 5,
404 rhost_name
+ rhost_len
- hostlen
,
406 ((rhost_len
== hostlen
) ||
407 rhost_name
[rhost_len
- hostlen
-1] == '.'))
408 matchlen
= for_pos
- value
;
413 /* core.gitproxy = none for kernel.org */
415 !memcmp(value
, "none", 4))
417 git_proxy_command
= xmemdupz(value
, matchlen
);
422 return git_default_config(var
, value
, cb
);
425 static int git_use_proxy(const char *host
)
428 rhost_len
= strlen(host
);
429 git_proxy_command
= getenv("GIT_PROXY_COMMAND");
430 git_config(git_proxy_command_options
, NULL
);
432 return (git_proxy_command
&& *git_proxy_command
);
435 static void git_proxy_connect(int fd
[2], char *host
)
437 const char *port
= STR(DEFAULT_GIT_PORT
);
440 struct child_process proxy
;
442 if (host
[0] == '[') {
443 end
= strchr(host
+ 1, ']');
452 colon
= strchr(end
, ':');
459 argv
[0] = git_proxy_command
;
463 memset(&proxy
, 0, sizeof(proxy
));
467 if (start_command(&proxy
))
468 die("cannot start proxy %s", argv
[0]);
469 fd
[0] = proxy
.out
; /* read from proxy stdout */
470 fd
[1] = proxy
.in
; /* write to proxy stdin */
473 #define MAX_CMD_LEN 1024
475 char *get_port(char *host
)
478 char *p
= strchr(host
, ':');
481 strtol(p
+1, &end
, 10);
491 static struct child_process no_fork
;
494 * This returns a dummy child_process if the transport protocol does not
495 * need fork(2), or a struct child_process object if it does. Once done,
496 * finish the connection with finish_connect() with the value returned from
497 * this function (it is safe to call finish_connect() with NULL to support
500 * If it returns, the connect is successful; it just dies on errors (this
501 * will hopefully be changed in a libification effort, to return NULL when
502 * the connection failed).
504 struct child_process
*git_connect(int fd
[2], const char *url_orig
,
505 const char *prog
, int flags
)
507 char *url
= xstrdup(url_orig
);
508 char *host
, *path
= url
;
511 struct child_process
*conn
;
512 enum protocol protocol
= PROTO_LOCAL
;
518 /* Without this we cannot rely on waitpid() to tell
519 * what happened to our children.
521 signal(SIGCHLD
, SIG_DFL
);
523 host
= strstr(url
, "://");
526 protocol
= get_protocol(url
);
534 if (host
[0] == '[') {
535 end
= strchr(host
+ 1, ']');
545 path
= strchr(end
, c
);
546 if (path
&& !has_dos_drive_prefix(end
)) {
548 protocol
= PROTO_SSH
;
555 die("No path specified. See 'man git-pull' for valid url syntax");
558 * null-terminate hostname and point path to ~ for URL's like this:
559 * ssh://host.xz/~user/repo
561 if (protocol
!= PROTO_LOCAL
&& host
!= url
) {
574 * Add support for ssh port: ssh://host.xy:<port>/...
576 if (protocol
== PROTO_SSH
&& host
!= url
)
577 port
= get_port(host
);
579 if (protocol
== PROTO_GIT
) {
580 /* These underlying connection commands die() if they
583 char *target_host
= xstrdup(host
);
584 if (git_use_proxy(host
))
585 git_proxy_connect(fd
, host
);
587 git_tcp_connect(fd
, host
, flags
);
589 * Separate original protocol components prog and path
590 * from extended components with a NUL byte.
603 conn
= xcalloc(1, sizeof(*conn
));
605 strbuf_init(&cmd
, MAX_CMD_LEN
);
606 strbuf_addstr(&cmd
, prog
);
607 strbuf_addch(&cmd
, ' ');
608 sq_quote_buf(&cmd
, path
);
609 if (cmd
.len
>= MAX_CMD_LEN
)
610 die("command line too long");
612 conn
->in
= conn
->out
= -1;
613 conn
->argv
= arg
= xcalloc(6, sizeof(*arg
));
614 if (protocol
== PROTO_SSH
) {
615 const char *ssh
= getenv("GIT_SSH");
616 if (!ssh
) ssh
= "ssh";
626 /* remove these from the environment */
627 const char *env
[] = {
628 ALTERNATE_DB_ENVIRONMENT
,
631 GIT_WORK_TREE_ENVIRONMENT
,
643 if (start_command(conn
))
644 die("unable to fork");
646 fd
[0] = conn
->out
; /* read from child's stdout */
647 fd
[1] = conn
->in
; /* write to child's stdin */
648 strbuf_release(&cmd
);
655 int finish_connect(struct child_process
*conn
)
658 if (!conn
|| conn
== &no_fork
)
661 code
= finish_command(conn
);