git-remote: list branches in vertical lists
[git/dscho.git] / connect.c
blob0c50d0a26a493f4505eee16812d14c5d7d1b7392
1 #include "git-compat-util.h"
2 #include "cache.h"
3 #include "pkt-line.h"
4 #include "quote.h"
5 #include "refs.h"
6 #include "run-command.h"
7 #include "remote.h"
9 static char *server_capabilities;
11 static int check_ref(const char *name, int len, unsigned int flags)
13 if (!flags)
14 return 1;
16 if (len < 5 || memcmp(name, "refs/", 5))
17 return 0;
19 /* Skip the "refs/" part */
20 name += 5;
21 len -= 5;
23 /* REF_NORMAL means that we don't want the magic fake tag refs */
24 if ((flags & REF_NORMAL) && check_ref_format(name) < 0)
25 return 0;
27 /* REF_HEADS means that we want regular branch heads */
28 if ((flags & REF_HEADS) && !memcmp(name, "heads/", 6))
29 return 1;
31 /* REF_TAGS means that we want tags */
32 if ((flags & REF_TAGS) && !memcmp(name, "tags/", 5))
33 return 1;
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);
48 extra->nr++;
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,
56 unsigned int flags,
57 struct extra_have_objects *extra_have)
59 *list = NULL;
60 for (;;) {
61 struct ref *ref;
62 unsigned char old_sha1[20];
63 static char buffer[1000];
64 char *name;
65 int len, name_len;
67 len = packet_read_line(in, buffer, sizeof(buffer));
68 if (!len)
69 break;
70 if (buffer[len-1] == '\n')
71 buffer[--len] = 0;
73 if (len < 42 || get_sha1_hex(buffer, old_sha1) || buffer[40] != ' ')
74 die("protocol error: expected sha/ref, got '%s'", buffer);
75 name = buffer + 41;
77 name_len = strlen(name);
78 if (len != name_len + 41) {
79 free(server_capabilities);
80 server_capabilities = xstrdup(name + name_len + 1);
83 if (extra_have &&
84 name_len == 5 && !memcmp(".have", name, 5)) {
85 add_extra_have(extra_have, old_sha1);
86 continue;
89 if (!check_ref(name, name_len, flags))
90 continue;
91 if (nr_match && !path_match(name, nr_match, match))
92 continue;
93 ref = alloc_ref(buffer + 41);
94 hashcpy(ref->old_sha1, old_sha1);
95 *list = ref;
96 list = &ref->next;
98 return list;
101 int server_supports(const char *feature)
103 return server_capabilities &&
104 strstr(server_capabilities, feature) != NULL;
107 int get_ack(int fd, unsigned char *result_sha1)
109 static char line[1000];
110 int len = packet_read_line(fd, line, sizeof(line));
112 if (!len)
113 die("git fetch-pack: expected ACK/NAK, got EOF");
114 if (line[len-1] == '\n')
115 line[--len] = 0;
116 if (!strcmp(line, "NAK"))
117 return 0;
118 if (!prefixcmp(line, "ACK ")) {
119 if (!get_sha1_hex(line+4, result_sha1)) {
120 if (strstr(line+45, "continue"))
121 return 2;
122 return 1;
125 die("git fetch_pack: expected ACK/NAK, got '%s'", line);
128 int path_match(const char *path, int nr, char **match)
130 int i;
131 int pathlen = strlen(path);
133 for (i = 0; i < nr; i++) {
134 char *s = match[i];
135 int len = strlen(s);
137 if (!len || len > pathlen)
138 continue;
139 if (memcmp(path + pathlen - len, s, len))
140 continue;
141 if (pathlen > len && path[pathlen - len - 1] != '/')
142 continue;
143 *s = 0;
144 return (i + 1);
146 return 0;
149 enum protocol {
150 PROTO_LOCAL = 1,
151 PROTO_SSH,
152 PROTO_GIT,
155 static enum protocol get_protocol(const char *name)
157 if (!strcmp(name, "ssh"))
158 return PROTO_SSH;
159 if (!strcmp(name, "git"))
160 return PROTO_GIT;
161 if (!strcmp(name, "git+ssh"))
162 return PROTO_SSH;
163 if (!strcmp(name, "ssh+git"))
164 return PROTO_SSH;
165 if (!strcmp(name, "file"))
166 return PROTO_LOCAL;
167 die("I don't handle protocol '%s'", name);
170 #define STR_(s) # s
171 #define STR(s) STR_(s)
173 #ifndef NO_IPV6
175 static const char *ai_name(const struct addrinfo *ai)
177 static char addr[INET_ADDRSTRLEN];
178 if ( AF_INET == ai->ai_family ) {
179 struct sockaddr_in *in;
180 in = (struct sockaddr_in *)ai->ai_addr;
181 inet_ntop(ai->ai_family, &in->sin_addr, addr, sizeof(addr));
182 } else if ( AF_INET6 == ai->ai_family ) {
183 struct sockaddr_in6 *in;
184 in = (struct sockaddr_in6 *)ai->ai_addr;
185 inet_ntop(ai->ai_family, &in->sin6_addr, addr, sizeof(addr));
186 } else {
187 strcpy(addr, "(unknown)");
189 return addr;
193 * Returns a connected socket() fd, or else die()s.
195 static int git_tcp_connect_sock(char *host, int flags)
197 int sockfd = -1, saved_errno = 0;
198 char *colon, *end;
199 const char *port = STR(DEFAULT_GIT_PORT);
200 struct addrinfo hints, *ai0, *ai;
201 int gai;
202 int cnt = 0;
204 if (host[0] == '[') {
205 end = strchr(host + 1, ']');
206 if (end) {
207 *end = 0;
208 end++;
209 host++;
210 } else
211 end = host;
212 } else
213 end = host;
214 colon = strchr(end, ':');
216 if (colon) {
217 *colon = 0;
218 port = colon + 1;
219 if (!*port)
220 port = "<none>";
223 memset(&hints, 0, sizeof(hints));
224 hints.ai_socktype = SOCK_STREAM;
225 hints.ai_protocol = IPPROTO_TCP;
227 if (flags & CONNECT_VERBOSE)
228 fprintf(stderr, "Looking up %s ... ", host);
230 gai = getaddrinfo(host, port, &hints, &ai);
231 if (gai)
232 die("Unable to look up %s (port %s) (%s)", host, port, gai_strerror(gai));
234 if (flags & CONNECT_VERBOSE)
235 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
237 for (ai0 = ai; ai; ai = ai->ai_next) {
238 sockfd = socket(ai->ai_family,
239 ai->ai_socktype, ai->ai_protocol);
240 if (sockfd < 0) {
241 saved_errno = errno;
242 continue;
244 if (connect(sockfd, ai->ai_addr, ai->ai_addrlen) < 0) {
245 saved_errno = errno;
246 fprintf(stderr, "%s[%d: %s]: errno=%s\n",
247 host,
248 cnt,
249 ai_name(ai),
250 strerror(saved_errno));
251 close(sockfd);
252 sockfd = -1;
253 continue;
255 if (flags & CONNECT_VERBOSE)
256 fprintf(stderr, "%s ", ai_name(ai));
257 break;
260 freeaddrinfo(ai0);
262 if (sockfd < 0)
263 die("unable to connect a socket (%s)", strerror(saved_errno));
265 if (flags & CONNECT_VERBOSE)
266 fprintf(stderr, "done.\n");
268 return sockfd;
271 #else /* NO_IPV6 */
274 * Returns a connected socket() fd, or else die()s.
276 static int git_tcp_connect_sock(char *host, int flags)
278 int sockfd = -1, saved_errno = 0;
279 char *colon, *end;
280 char *port = STR(DEFAULT_GIT_PORT), *ep;
281 struct hostent *he;
282 struct sockaddr_in sa;
283 char **ap;
284 unsigned int nport;
285 int cnt;
287 if (host[0] == '[') {
288 end = strchr(host + 1, ']');
289 if (end) {
290 *end = 0;
291 end++;
292 host++;
293 } else
294 end = host;
295 } else
296 end = host;
297 colon = strchr(end, ':');
299 if (colon) {
300 *colon = 0;
301 port = colon + 1;
304 if (flags & CONNECT_VERBOSE)
305 fprintf(stderr, "Looking up %s ... ", host);
307 he = gethostbyname(host);
308 if (!he)
309 die("Unable to look up %s (%s)", host, hstrerror(h_errno));
310 nport = strtoul(port, &ep, 10);
311 if ( ep == port || *ep ) {
312 /* Not numeric */
313 struct servent *se = getservbyname(port,"tcp");
314 if ( !se )
315 die("Unknown port %s\n", port);
316 nport = se->s_port;
319 if (flags & CONNECT_VERBOSE)
320 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
322 for (cnt = 0, ap = he->h_addr_list; *ap; ap++, cnt++) {
323 sockfd = socket(he->h_addrtype, SOCK_STREAM, 0);
324 if (sockfd < 0) {
325 saved_errno = errno;
326 continue;
329 memset(&sa, 0, sizeof sa);
330 sa.sin_family = he->h_addrtype;
331 sa.sin_port = htons(nport);
332 memcpy(&sa.sin_addr, *ap, he->h_length);
334 if (connect(sockfd, (struct sockaddr *)&sa, sizeof sa) < 0) {
335 saved_errno = errno;
336 fprintf(stderr, "%s[%d: %s]: errno=%s\n",
337 host,
338 cnt,
339 inet_ntoa(*(struct in_addr *)&sa.sin_addr),
340 strerror(saved_errno));
341 close(sockfd);
342 sockfd = -1;
343 continue;
345 if (flags & CONNECT_VERBOSE)
346 fprintf(stderr, "%s ",
347 inet_ntoa(*(struct in_addr *)&sa.sin_addr));
348 break;
351 if (sockfd < 0)
352 die("unable to connect a socket (%s)", strerror(saved_errno));
354 if (flags & CONNECT_VERBOSE)
355 fprintf(stderr, "done.\n");
357 return sockfd;
360 #endif /* NO_IPV6 */
363 static void git_tcp_connect(int fd[2], char *host, int flags)
365 int sockfd = git_tcp_connect_sock(host, flags);
367 fd[0] = sockfd;
368 fd[1] = dup(sockfd);
372 static char *git_proxy_command;
373 static const char *rhost_name;
374 static int rhost_len;
376 static int git_proxy_command_options(const char *var, const char *value,
377 void *cb)
379 if (!strcmp(var, "core.gitproxy")) {
380 const char *for_pos;
381 int matchlen = -1;
382 int hostlen;
384 if (git_proxy_command)
385 return 0;
386 if (!value)
387 return config_error_nonbool(var);
388 /* [core]
389 * ;# matches www.kernel.org as well
390 * gitproxy = netcatter-1 for kernel.org
391 * gitproxy = netcatter-2 for sample.xz
392 * gitproxy = netcatter-default
394 for_pos = strstr(value, " for ");
395 if (!for_pos)
396 /* matches everybody */
397 matchlen = strlen(value);
398 else {
399 hostlen = strlen(for_pos + 5);
400 if (rhost_len < hostlen)
401 matchlen = -1;
402 else if (!strncmp(for_pos + 5,
403 rhost_name + rhost_len - hostlen,
404 hostlen) &&
405 ((rhost_len == hostlen) ||
406 rhost_name[rhost_len - hostlen -1] == '.'))
407 matchlen = for_pos - value;
408 else
409 matchlen = -1;
411 if (0 <= matchlen) {
412 /* core.gitproxy = none for kernel.org */
413 if (matchlen == 4 &&
414 !memcmp(value, "none", 4))
415 matchlen = 0;
416 git_proxy_command = xmemdupz(value, matchlen);
418 return 0;
421 return git_default_config(var, value, cb);
424 static int git_use_proxy(const char *host)
426 rhost_name = host;
427 rhost_len = strlen(host);
428 git_proxy_command = getenv("GIT_PROXY_COMMAND");
429 git_config(git_proxy_command_options, NULL);
430 rhost_name = NULL;
431 return (git_proxy_command && *git_proxy_command);
434 static void git_proxy_connect(int fd[2], char *host)
436 const char *port = STR(DEFAULT_GIT_PORT);
437 char *colon, *end;
438 const char *argv[4];
439 struct child_process proxy;
441 if (host[0] == '[') {
442 end = strchr(host + 1, ']');
443 if (end) {
444 *end = 0;
445 end++;
446 host++;
447 } else
448 end = host;
449 } else
450 end = host;
451 colon = strchr(end, ':');
453 if (colon) {
454 *colon = 0;
455 port = colon + 1;
458 argv[0] = git_proxy_command;
459 argv[1] = host;
460 argv[2] = port;
461 argv[3] = NULL;
462 memset(&proxy, 0, sizeof(proxy));
463 proxy.argv = argv;
464 proxy.in = -1;
465 proxy.out = -1;
466 if (start_command(&proxy))
467 die("cannot start proxy %s", argv[0]);
468 fd[0] = proxy.out; /* read from proxy stdout */
469 fd[1] = proxy.in; /* write to proxy stdin */
472 #define MAX_CMD_LEN 1024
474 char *get_port(char *host)
476 char *end;
477 char *p = strchr(host, ':');
479 if (p) {
480 strtol(p+1, &end, 10);
481 if (*end == '\0') {
482 *p = '\0';
483 return p+1;
487 return NULL;
490 static struct child_process no_fork;
493 * This returns a dummy child_process if the transport protocol does not
494 * need fork(2), or a struct child_process object if it does. Once done,
495 * finish the connection with finish_connect() with the value returned from
496 * this function (it is safe to call finish_connect() with NULL to support
497 * the former case).
499 * If it returns, the connect is successful; it just dies on errors (this
500 * will hopefully be changed in a libification effort, to return NULL when
501 * the connection failed).
503 struct child_process *git_connect(int fd[2], const char *url_orig,
504 const char *prog, int flags)
506 char *url = xstrdup(url_orig);
507 char *host, *path = url;
508 char *end;
509 int c;
510 struct child_process *conn;
511 enum protocol protocol = PROTO_LOCAL;
512 int free_path = 0;
513 char *port = NULL;
514 const char **arg;
515 struct strbuf cmd;
517 /* Without this we cannot rely on waitpid() to tell
518 * what happened to our children.
520 signal(SIGCHLD, SIG_DFL);
522 host = strstr(url, "://");
523 if(host) {
524 *host = '\0';
525 protocol = get_protocol(url);
526 host += 3;
527 c = '/';
528 } else {
529 host = url;
530 c = ':';
533 if (host[0] == '[') {
534 end = strchr(host + 1, ']');
535 if (end) {
536 *end = 0;
537 end++;
538 host++;
539 } else
540 end = host;
541 } else
542 end = host;
544 path = strchr(end, c);
545 if (path && !has_dos_drive_prefix(end)) {
546 if (c == ':') {
547 protocol = PROTO_SSH;
548 *path++ = '\0';
550 } else
551 path = end;
553 if (!path || !*path)
554 die("No path specified. See 'man git-pull' for valid url syntax");
557 * null-terminate hostname and point path to ~ for URL's like this:
558 * ssh://host.xz/~user/repo
560 if (protocol != PROTO_LOCAL && host != url) {
561 char *ptr = path;
562 if (path[1] == '~')
563 path++;
564 else {
565 path = xstrdup(ptr);
566 free_path = 1;
569 *ptr = '\0';
573 * Add support for ssh port: ssh://host.xy:<port>/...
575 if (protocol == PROTO_SSH && host != url)
576 port = get_port(host);
578 if (protocol == PROTO_GIT) {
579 /* These underlying connection commands die() if they
580 * cannot connect.
582 char *target_host = xstrdup(host);
583 if (git_use_proxy(host))
584 git_proxy_connect(fd, host);
585 else
586 git_tcp_connect(fd, host, flags);
588 * Separate original protocol components prog and path
589 * from extended components with a NUL byte.
591 packet_write(fd[1],
592 "%s %s%chost=%s%c",
593 prog, path, 0,
594 target_host, 0);
595 free(target_host);
596 free(url);
597 if (free_path)
598 free(path);
599 return &no_fork;
602 conn = xcalloc(1, sizeof(*conn));
604 strbuf_init(&cmd, MAX_CMD_LEN);
605 strbuf_addstr(&cmd, prog);
606 strbuf_addch(&cmd, ' ');
607 sq_quote_buf(&cmd, path);
608 if (cmd.len >= MAX_CMD_LEN)
609 die("command line too long");
611 conn->in = conn->out = -1;
612 conn->argv = arg = xcalloc(6, sizeof(*arg));
613 if (protocol == PROTO_SSH) {
614 const char *ssh = getenv("GIT_SSH");
615 if (!ssh) ssh = "ssh";
617 *arg++ = ssh;
618 if (port) {
619 *arg++ = "-p";
620 *arg++ = port;
622 *arg++ = host;
624 else {
625 /* remove these from the environment */
626 const char *env[] = {
627 ALTERNATE_DB_ENVIRONMENT,
628 DB_ENVIRONMENT,
629 GIT_DIR_ENVIRONMENT,
630 GIT_WORK_TREE_ENVIRONMENT,
631 GRAFT_ENVIRONMENT,
632 INDEX_ENVIRONMENT,
633 NULL
635 conn->env = env;
636 *arg++ = "sh";
637 *arg++ = "-c";
639 *arg++ = cmd.buf;
640 *arg = NULL;
642 if (start_command(conn))
643 die("unable to fork");
645 fd[0] = conn->out; /* read from child's stdout */
646 fd[1] = conn->in; /* write to child's stdin */
647 strbuf_release(&cmd);
648 free(url);
649 if (free_path)
650 free(path);
651 return conn;
654 int finish_connect(struct child_process *conn)
656 int code;
657 if (!conn || conn == &no_fork)
658 return 0;
660 code = finish_command(conn);
661 free(conn->argv);
662 free(conn);
663 return code;