1 #include "git-compat-util.h"
6 #include "run-command.h"
10 #include "string-list.h"
12 static char *server_capabilities;
13 static const char *parse_feature_value(const char *, const char *, int *);
15 static int check_ref(const char *name, int len, unsigned int flags)
20 if (len < 5 || memcmp(name, "refs/", 5))
23 /* Skip the "refs/" part */
27 /* REF_NORMAL means that we don't want the magic fake tag refs */
28 if ((flags & REF_NORMAL) && check_refname_format(name, 0))
31 /* REF_HEADS means that we want regular branch heads */
32 if ((flags & REF_HEADS) && !memcmp(name, "heads/", 6))
35 /* REF_TAGS means that we want tags */
36 if ((flags & REF_TAGS) && !memcmp(name, "tags/", 5))
39 /* All type bits clear means that we are ok with anything */
40 return !(flags & ~REF_NORMAL);
43 int check_ref_type(const struct ref *ref, int flags)
45 return check_ref(ref->name, strlen(ref->name), flags);
48 static void add_extra_have(struct extra_have_objects *extra, unsigned char *sha1)
50 ALLOC_GROW(extra->array, extra->nr + 1, extra->alloc);
51 hashcpy(&(extra->array[extra->nr][0]), sha1);
55 static void die_initial_contact(int got_at_least_one_head)
57 if (got_at_least_one_head)
58 die("The remote end hung up upon initial contact");
60 die("Could not read from remote repository.\n\n"
61 "Please make sure you have the correct access rights\n"
62 "and the repository exists.");
65 static void parse_one_symref_info(struct string_list *symref, const char *val, int len)
68 struct string_list_item *item;
71 return; /* just "symref" */
72 /* e.g. "symref=HEAD:refs/heads/master" */
73 sym = xmalloc(len + 1);
74 memcpy(sym, val, len);
76 target = strchr(sym, ':');
78 /* just "symref=something" */
81 if (check_refname_format(sym, REFNAME_ALLOW_ONELEVEL) ||
82 check_refname_format(target, REFNAME_ALLOW_ONELEVEL))
83 /* "symref=bogus:pair */
85 item = string_list_append(symref, sym);
93 static void annotate_refs_with_symref_info(struct ref *ref)
95 struct string_list symref = STRING_LIST_INIT_DUP;
96 const char *feature_list = server_capabilities;
98 while (feature_list) {
102 val = parse_feature_value(feature_list, "symref", &len);
105 parse_one_symref_info(&symref, val, len);
106 feature_list = val + 1;
108 sort_string_list(&symref);
110 for (; ref; ref = ref->next) {
111 struct string_list_item *item;
112 item = string_list_lookup(&symref, ref->name);
115 ref->symref = xstrdup((char *)item->util);
117 string_list_clear(&symref, 0);
121 * Read all the refs from the other end
123 struct ref **get_remote_heads(int in, char *src_buf, size_t src_len,
124 struct ref **list, unsigned int flags,
125 struct extra_have_objects *extra_have)
127 struct ref **orig_list = list;
128 int got_at_least_one_head = 0;
133 unsigned char old_sha1[20];
136 char *buffer = packet_buffer;
138 len = packet_read(in, &src_buf, &src_len,
139 packet_buffer, sizeof(packet_buffer),
140 PACKET_READ_GENTLE_ON_EOF |
141 PACKET_READ_CHOMP_NEWLINE);
143 die_initial_contact(got_at_least_one_head);
148 if (len > 4 && !prefixcmp(buffer, "ERR "))
149 die("remote error: %s", buffer + 4);
151 if (len < 42 || get_sha1_hex(buffer, old_sha1) || buffer[40] != ' ')
152 die("protocol error: expected sha/ref, got '%s'", buffer);
155 name_len = strlen(name);
156 if (len != name_len + 41) {
157 free(server_capabilities);
158 server_capabilities = xstrdup(name + name_len + 1);
162 name_len == 5 && !memcmp(".have", name, 5)) {
163 add_extra_have(extra_have, old_sha1);
167 if (!check_ref(name, name_len, flags))
169 ref = alloc_ref(buffer + 41);
170 hashcpy(ref->old_sha1, old_sha1);
173 got_at_least_one_head = 1;
176 annotate_refs_with_symref_info(*orig_list);
181 static const char *parse_feature_value(const char *feature_list, const char *feature, int *lenp)
188 len = strlen(feature);
189 while (*feature_list) {
190 const char *found = strstr(feature_list, feature);
193 if (feature_list == found || isspace(found[-1])) {
194 const char *value = found + len;
195 /* feature with no value (e.g., "thin-pack") */
196 if (!*value || isspace(*value)) {
201 /* feature with a value (e.g., "agent=git/1.2.3") */
202 else if (*value == '=') {
205 *lenp = strcspn(value, " \t\n");
209 * otherwise we matched a substring of another feature;
213 feature_list = found + 1;
218 int parse_feature_request(const char *feature_list, const char *feature)
220 return !!parse_feature_value(feature_list, feature, NULL);
223 const char *server_feature_value(const char *feature, int *len)
225 return parse_feature_value(server_capabilities, feature, len);
228 int server_supports(const char *feature)
230 return !!server_feature_value(feature, NULL);
239 static const char *prot_name(enum protocol protocol)
249 return "unkown protocol";
253 static enum protocol get_protocol(const char *name)
255 if (!strcmp(name, "ssh"))
257 if (!strcmp(name, "git"))
259 if (!strcmp(name, "git+ssh"))
261 if (!strcmp(name, "ssh+git"))
263 if (!strcmp(name, "file"))
265 die("I don't handle protocol '%s'", name);
269 #define STR(s) STR_(s)
271 static void get_host_and_port(char **host, const char **port)
275 if (*host[0] == '[') {
276 end = strchr(*host + 1, ']');
285 colon = strchr(end, ':');
293 static void enable_keepalive(int sockfd)
297 if (setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, &ka, sizeof(ka)) < 0)
298 fprintf(stderr, "unable to set SO_KEEPALIVE on socket: %s\n",
304 static const char *ai_name(const struct addrinfo *ai)
306 static char addr[NI_MAXHOST];
307 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, addr, sizeof(addr), NULL, 0,
308 NI_NUMERICHOST) != 0)
309 strcpy(addr, "(unknown)");
315 * Returns a connected socket() fd, or else die()s.
317 static int git_tcp_connect_sock(char *host, int flags)
319 struct strbuf error_message = STRBUF_INIT;
321 const char *port = STR(DEFAULT_GIT_PORT);
322 struct addrinfo hints, *ai0, *ai;
326 get_host_and_port(&host, &port);
330 memset(&hints, 0, sizeof(hints));
331 hints.ai_socktype = SOCK_STREAM;
332 hints.ai_protocol = IPPROTO_TCP;
334 if (flags & CONNECT_VERBOSE)
335 fprintf(stderr, "Looking up %s ... ", host);
337 gai = getaddrinfo(host, port, &hints, &ai);
339 die("Unable to look up %s (port %s) (%s)", host, port, gai_strerror(gai));
341 if (flags & CONNECT_VERBOSE)
342 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
344 for (ai0 = ai; ai; ai = ai->ai_next, cnt++) {
345 sockfd = socket(ai->ai_family,
346 ai->ai_socktype, ai->ai_protocol);
348 (connect(sockfd, ai->ai_addr, ai->ai_addrlen) < 0)) {
349 strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n",
350 host, cnt, ai_name(ai), strerror(errno));
356 if (flags & CONNECT_VERBOSE)
357 fprintf(stderr, "%s ", ai_name(ai));
364 die("unable to connect to %s:\n%s", host, error_message.buf);
366 enable_keepalive(sockfd);
368 if (flags & CONNECT_VERBOSE)
369 fprintf(stderr, "done.\n");
371 strbuf_release(&error_message);
379 * Returns a connected socket() fd, or else die()s.
381 static int git_tcp_connect_sock(char *host, int flags)
383 struct strbuf error_message = STRBUF_INIT;
385 const char *port = STR(DEFAULT_GIT_PORT);
388 struct sockaddr_in sa;
393 get_host_and_port(&host, &port);
395 if (flags & CONNECT_VERBOSE)
396 fprintf(stderr, "Looking up %s ... ", host);
398 he = gethostbyname(host);
400 die("Unable to look up %s (%s)", host, hstrerror(h_errno));
401 nport = strtoul(port, &ep, 10);
402 if ( ep == port || *ep ) {
404 struct servent *se = getservbyname(port,"tcp");
406 die("Unknown port %s", port);
410 if (flags & CONNECT_VERBOSE)
411 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
413 for (cnt = 0, ap = he->h_addr_list; *ap; ap++, cnt++) {
414 memset(&sa, 0, sizeof sa);
415 sa.sin_family = he->h_addrtype;
416 sa.sin_port = htons(nport);
417 memcpy(&sa.sin_addr, *ap, he->h_length);
419 sockfd = socket(he->h_addrtype, SOCK_STREAM, 0);
421 connect(sockfd, (struct sockaddr *)&sa, sizeof sa) < 0) {
422 strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n",
425 inet_ntoa(*(struct in_addr *)&sa.sin_addr),
432 if (flags & CONNECT_VERBOSE)
433 fprintf(stderr, "%s ",
434 inet_ntoa(*(struct in_addr *)&sa.sin_addr));
439 die("unable to connect to %s:\n%s", host, error_message.buf);
441 enable_keepalive(sockfd);
443 if (flags & CONNECT_VERBOSE)
444 fprintf(stderr, "done.\n");
452 static void git_tcp_connect(int fd[2], char *host, int flags)
454 int sockfd = git_tcp_connect_sock(host, flags);
461 static char *git_proxy_command;
463 static int git_proxy_command_options(const char *var, const char *value,
466 if (!strcmp(var, "core.gitproxy")) {
470 const char *rhost_name = cb;
471 int rhost_len = strlen(rhost_name);
473 if (git_proxy_command)
476 return config_error_nonbool(var);
478 * ;# matches www.kernel.org as well
479 * gitproxy = netcatter-1 for kernel.org
480 * gitproxy = netcatter-2 for sample.xz
481 * gitproxy = netcatter-default
483 for_pos = strstr(value, " for ");
485 /* matches everybody */
486 matchlen = strlen(value);
488 hostlen = strlen(for_pos + 5);
489 if (rhost_len < hostlen)
491 else if (!strncmp(for_pos + 5,
492 rhost_name + rhost_len - hostlen,
494 ((rhost_len == hostlen) ||
495 rhost_name[rhost_len - hostlen -1] == '.'))
496 matchlen = for_pos - value;
501 /* core.gitproxy = none for kernel.org */
503 !memcmp(value, "none", 4))
505 git_proxy_command = xmemdupz(value, matchlen);
510 return git_default_config(var, value, cb);
513 static int git_use_proxy(const char *host)
515 git_proxy_command = getenv("GIT_PROXY_COMMAND");
516 git_config(git_proxy_command_options, (void*)host);
517 return (git_proxy_command && *git_proxy_command);
520 static struct child_process *git_proxy_connect(int fd[2], char *host)
522 const char *port = STR(DEFAULT_GIT_PORT);
524 struct child_process *proxy;
526 get_host_and_port(&host, &port);
528 argv = xmalloc(sizeof(*argv) * 4);
529 argv[0] = git_proxy_command;
533 proxy = xcalloc(1, sizeof(*proxy));
537 if (start_command(proxy))
538 die("cannot start proxy %s", argv[0]);
539 fd[0] = proxy->out; /* read from proxy stdout */
540 fd[1] = proxy->in; /* write to proxy stdin */
544 static char *get_port(char *host)
547 char *p = strchr(host, ':');
550 long port = strtol(p + 1, &end, 10);
551 if (end != p + 1 && *end == '\0' && 0 <= port && port < 65536) {
561 * Extract protocol and relevant parts from the specified connection URL.
562 * The caller must free() the returned strings.
564 static enum protocol parse_connect_url(const char *url_orig, char **ret_host,
565 char **ret_port, char **ret_path)
571 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);
592 * Don't do destructive transforms with git:// as that
593 * protocol code does '[]' unwrapping of its own.
595 if (host[0] == '[') {
596 end = strchr(host + 1, ']');
598 if (protocol != PROTO_GIT) {
608 path = strchr(end, c);
609 if (path && !has_dos_drive_prefix(end)) {
611 if (host != url || path < strchrnul(host, '/')) {
612 protocol = PROTO_SSH;
614 } else /* '/' in the host part, assume local path */
621 die("No path specified. See 'man git-pull' for valid url syntax");
624 * null-terminate hostname and point path to ~ for URL's like this:
625 * ssh://host.xz/~user/repo
627 if (protocol != PROTO_LOCAL && host != url) {
640 * Add support for ssh port: ssh://host.xy:<port>/...
642 if (protocol == PROTO_SSH && host != url)
643 port = get_port(end);
645 *ret_host = xstrdup(host);
647 *ret_port = xstrdup(port);
653 *ret_path = xstrdup(path);
658 static struct child_process no_fork;
661 * This returns a dummy child_process if the transport protocol does not
662 * need fork(2), or a struct child_process object if it does. Once done,
663 * finish the connection with finish_connect() with the value returned from
664 * this function (it is safe to call finish_connect() with NULL to support
667 * If it returns, the connect is successful; it just dies on errors (this
668 * will hopefully be changed in a libification effort, to return NULL when
669 * the connection failed).
671 struct child_process *git_connect(int fd[2], const char *url,
672 const char *prog, int flags)
675 struct child_process *conn = &no_fork;
676 enum protocol protocol;
679 struct strbuf cmd = STRBUF_INIT;
681 /* Without this we cannot rely on waitpid() to tell
682 * what happened to our children.
684 signal(SIGCHLD, SIG_DFL);
686 protocol = parse_connect_url(url, &host, &port, &path);
687 if (flags & CONNECT_DIAG_URL) {
688 printf("Diag: url=%s\n", url ? url : "NULL");
689 printf("Diag: protocol=%s\n", prot_name(protocol));
690 printf("Diag: hostandport=%s", host ? host : "NULL");
692 printf(":%s\n", port);
695 printf("Diag: path=%s\n", path ? path : "NULL");
702 if (protocol == PROTO_GIT) {
703 /* These underlying connection commands die() if they
706 char *target_host = xstrdup(host);
707 if (git_use_proxy(host))
708 conn = git_proxy_connect(fd, host);
710 git_tcp_connect(fd, host, flags);
712 * Separate original protocol components prog and path
713 * from extended host header with a NUL byte.
715 * Note: Do not add any other headers here! Doing so
716 * will cause older git-daemon servers to crash.
729 conn = xcalloc(1, sizeof(*conn));
731 strbuf_addstr(&cmd, prog);
732 strbuf_addch(&cmd, ' ');
733 sq_quote_buf(&cmd, path);
735 conn->in = conn->out = -1;
736 conn->argv = arg = xcalloc(7, sizeof(*arg));
737 if (protocol == PROTO_SSH) {
738 const char *ssh = getenv("GIT_SSH");
739 int putty = ssh && strcasestr(ssh, "plink");
740 if (!ssh) ssh = "ssh";
743 if (putty && !strcasestr(ssh, "tortoiseplink"))
746 /* P is for PuTTY, p is for OpenSSH */
747 *arg++ = putty ? "-P" : "-p";
753 /* remove repo-local variables from the environment */
754 conn->env = local_repo_env;
760 if (start_command(conn))
761 die("unable to fork");
763 fd[0] = conn->out; /* read from child's stdout */
764 fd[1] = conn->in; /* write to child's stdin */
765 strbuf_release(&cmd);
772 int git_connection_is_socket(struct child_process *conn)
774 return conn == &no_fork;
777 int finish_connect(struct child_process *conn)
780 if (!conn || git_connection_is_socket(conn))
783 code = finish_command(conn);