1 #include "git-compat-util.h"
6 #include "run-command.h"
10 static char *server_capabilities;
12 static int check_ref(const char *name, int len, unsigned int flags)
17 if (len < 5 || memcmp(name, "refs/", 5))
20 /* Skip the "refs/" part */
24 /* REF_NORMAL means that we don't want the magic fake tag refs */
25 if ((flags & REF_NORMAL) && check_refname_format(name, 0))
28 /* REF_HEADS means that we want regular branch heads */
29 if ((flags & REF_HEADS) && !memcmp(name, "heads/", 6))
32 /* REF_TAGS means that we want tags */
33 if ((flags & REF_TAGS) && !memcmp(name, "tags/", 5))
36 /* All type bits clear means that we are ok with anything */
37 return !(flags & ~REF_NORMAL);
40 int check_ref_type(const struct ref *ref, int flags)
42 return check_ref(ref->name, strlen(ref->name), flags);
45 static void add_extra_have(struct extra_have_objects *extra, unsigned char *sha1)
47 ALLOC_GROW(extra->array, extra->nr + 1, extra->alloc);
48 hashcpy(&(extra->array[extra->nr][0]), sha1);
53 * Read all the refs from the other end
55 struct ref **get_remote_heads(int in, struct ref **list,
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 > 4 && !prefixcmp(buffer, "ERR "))
74 die("remote error: %s", buffer + 4);
76 if (len < 42 || get_sha1_hex(buffer, old_sha1) || buffer[40] != ' ')
77 die("protocol error: expected sha/ref, got '%s'", buffer);
80 name_len = strlen(name);
81 if (len != name_len + 41) {
82 free(server_capabilities);
83 server_capabilities = xstrdup(name + name_len + 1);
87 name_len == 5 && !memcmp(".have", name, 5)) {
88 add_extra_have(extra_have, old_sha1);
92 if (!check_ref(name, name_len, flags))
94 ref = alloc_ref(buffer + 41);
95 hashcpy(ref->old_sha1, old_sha1);
102 int server_supports(const char *feature)
104 return server_capabilities &&
105 strstr(server_capabilities, feature) != NULL;
114 static enum protocol get_protocol(const char *name)
116 if (!strcmp(name, "ssh"))
118 if (!strcmp(name, "git"))
120 if (!strcmp(name, "git+ssh"))
122 if (!strcmp(name, "ssh+git"))
124 if (!strcmp(name, "file"))
126 die("I don't handle protocol '%s'", name);
130 #define STR(s) STR_(s)
132 static void get_host_and_port(char **host, const char **port)
136 if (*host[0] == '[') {
137 end = strchr(*host + 1, ']');
146 colon = strchr(end, ':');
154 static void enable_keepalive(int sockfd)
158 if (setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, &ka, sizeof(ka)) < 0)
159 fprintf(stderr, "unable to set SO_KEEPALIVE on socket: %s\n",
165 static const char *ai_name(const struct addrinfo *ai)
167 static char addr[NI_MAXHOST];
168 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, addr, sizeof(addr), NULL, 0,
169 NI_NUMERICHOST) != 0)
170 strcpy(addr, "(unknown)");
176 * Returns a connected socket() fd, or else die()s.
178 static int git_tcp_connect_sock(char *host, int flags)
180 struct strbuf error_message = STRBUF_INIT;
182 const char *port = STR(DEFAULT_GIT_PORT);
183 struct addrinfo hints, *ai0, *ai;
187 get_host_and_port(&host, &port);
191 memset(&hints, 0, sizeof(hints));
192 hints.ai_socktype = SOCK_STREAM;
193 hints.ai_protocol = IPPROTO_TCP;
195 if (flags & CONNECT_VERBOSE)
196 fprintf(stderr, "Looking up %s ... ", host);
198 gai = getaddrinfo(host, port, &hints, &ai);
200 die("Unable to look up %s (port %s) (%s)", host, port, gai_strerror(gai));
202 if (flags & CONNECT_VERBOSE)
203 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
205 for (ai0 = ai; ai; ai = ai->ai_next, cnt++) {
206 sockfd = socket(ai->ai_family,
207 ai->ai_socktype, ai->ai_protocol);
209 (connect(sockfd, ai->ai_addr, ai->ai_addrlen) < 0)) {
210 strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n",
211 host, cnt, ai_name(ai), strerror(errno));
217 if (flags & CONNECT_VERBOSE)
218 fprintf(stderr, "%s ", ai_name(ai));
225 die("unable to connect to %s:\n%s", host, error_message.buf);
227 enable_keepalive(sockfd);
229 if (flags & CONNECT_VERBOSE)
230 fprintf(stderr, "done.\n");
232 strbuf_release(&error_message);
240 * Returns a connected socket() fd, or else die()s.
242 static int git_tcp_connect_sock(char *host, int flags)
244 struct strbuf error_message = STRBUF_INIT;
246 const char *port = STR(DEFAULT_GIT_PORT);
249 struct sockaddr_in sa;
254 get_host_and_port(&host, &port);
256 if (flags & CONNECT_VERBOSE)
257 fprintf(stderr, "Looking up %s ... ", host);
259 he = gethostbyname(host);
261 die("Unable to look up %s (%s)", host, hstrerror(h_errno));
262 nport = strtoul(port, &ep, 10);
263 if ( ep == port || *ep ) {
265 struct servent *se = getservbyname(port,"tcp");
267 die("Unknown port %s", port);
271 if (flags & CONNECT_VERBOSE)
272 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
274 for (cnt = 0, ap = he->h_addr_list; *ap; ap++, cnt++) {
275 memset(&sa, 0, sizeof sa);
276 sa.sin_family = he->h_addrtype;
277 sa.sin_port = htons(nport);
278 memcpy(&sa.sin_addr, *ap, he->h_length);
280 sockfd = socket(he->h_addrtype, SOCK_STREAM, 0);
282 connect(sockfd, (struct sockaddr *)&sa, sizeof sa) < 0) {
283 strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n",
286 inet_ntoa(*(struct in_addr *)&sa.sin_addr),
293 if (flags & CONNECT_VERBOSE)
294 fprintf(stderr, "%s ",
295 inet_ntoa(*(struct in_addr *)&sa.sin_addr));
300 die("unable to connect to %s:\n%s", host, error_message.buf);
302 enable_keepalive(sockfd);
304 if (flags & CONNECT_VERBOSE)
305 fprintf(stderr, "done.\n");
313 static void git_tcp_connect(int fd[2], char *host, int flags)
315 int sockfd = git_tcp_connect_sock(host, flags);
322 static char *git_proxy_command;
324 static int git_proxy_command_options(const char *var, const char *value,
327 if (!strcmp(var, "core.gitproxy")) {
331 const char *rhost_name = cb;
332 int rhost_len = strlen(rhost_name);
334 if (git_proxy_command)
337 return config_error_nonbool(var);
339 * ;# matches www.kernel.org as well
340 * gitproxy = netcatter-1 for kernel.org
341 * gitproxy = netcatter-2 for sample.xz
342 * gitproxy = netcatter-default
344 for_pos = strstr(value, " for ");
346 /* matches everybody */
347 matchlen = strlen(value);
349 hostlen = strlen(for_pos + 5);
350 if (rhost_len < hostlen)
352 else if (!strncmp(for_pos + 5,
353 rhost_name + rhost_len - hostlen,
355 ((rhost_len == hostlen) ||
356 rhost_name[rhost_len - hostlen -1] == '.'))
357 matchlen = for_pos - value;
362 /* core.gitproxy = none for kernel.org */
364 !memcmp(value, "none", 4))
366 git_proxy_command = xmemdupz(value, matchlen);
371 return git_default_config(var, value, cb);
374 static int git_use_proxy(const char *host)
376 git_proxy_command = getenv("GIT_PROXY_COMMAND");
377 git_config(git_proxy_command_options, (void*)host);
378 return (git_proxy_command && *git_proxy_command);
381 static struct child_process *git_proxy_connect(int fd[2], char *host)
383 const char *port = STR(DEFAULT_GIT_PORT);
385 struct child_process *proxy;
387 get_host_and_port(&host, &port);
389 argv = xmalloc(sizeof(*argv) * 4);
390 argv[0] = git_proxy_command;
394 proxy = xcalloc(1, sizeof(*proxy));
398 if (start_command(proxy))
399 die("cannot start proxy %s", argv[0]);
400 fd[0] = proxy->out; /* read from proxy stdout */
401 fd[1] = proxy->in; /* write to proxy stdin */
405 #define MAX_CMD_LEN 1024
407 static char *get_port(char *host)
410 char *p = strchr(host, ':');
413 long port = strtol(p + 1, &end, 10);
414 if (end != p + 1 && *end == '\0' && 0 <= port && port < 65536) {
423 static struct child_process no_fork;
426 * This returns a dummy child_process if the transport protocol does not
427 * need fork(2), or a struct child_process object if it does. Once done,
428 * finish the connection with finish_connect() with the value returned from
429 * this function (it is safe to call finish_connect() with NULL to support
432 * If it returns, the connect is successful; it just dies on errors (this
433 * will hopefully be changed in a libification effort, to return NULL when
434 * the connection failed).
436 struct child_process *git_connect(int fd[2], const char *url_orig,
437 const char *prog, int flags)
443 struct child_process *conn = &no_fork;
444 enum protocol protocol = PROTO_LOCAL;
450 /* Without this we cannot rely on waitpid() to tell
451 * what happened to our children.
453 signal(SIGCHLD, SIG_DFL);
455 if (is_url(url_orig))
456 url = url_decode(url_orig);
458 url = xstrdup(url_orig);
460 host = strstr(url, "://");
463 protocol = get_protocol(url);
472 * Don't do destructive transforms with git:// as that
473 * protocol code does '[]' unwrapping of its own.
475 if (host[0] == '[') {
476 end = strchr(host + 1, ']');
478 if (protocol != PROTO_GIT) {
488 path = strchr(end, c);
489 if (path && !has_dos_drive_prefix(end)) {
491 protocol = PROTO_SSH;
498 die("No path specified. See 'man git-pull' for valid url syntax");
501 * null-terminate hostname and point path to ~ for URL's like this:
502 * ssh://host.xz/~user/repo
504 if (protocol != PROTO_LOCAL && host != url) {
517 * Add support for ssh port: ssh://host.xy:<port>/...
519 if (protocol == PROTO_SSH && host != url)
520 port = get_port(host);
522 if (protocol == PROTO_GIT) {
523 /* These underlying connection commands die() if they
526 char *target_host = xstrdup(host);
527 if (git_use_proxy(host))
528 conn = git_proxy_connect(fd, host);
530 git_tcp_connect(fd, host, flags);
532 * Separate original protocol components prog and path
533 * from extended host header with a NUL byte.
535 * Note: Do not add any other headers here! Doing so
536 * will cause older git-daemon servers to crash.
549 conn = xcalloc(1, sizeof(*conn));
551 strbuf_init(&cmd, MAX_CMD_LEN);
552 strbuf_addstr(&cmd, prog);
553 strbuf_addch(&cmd, ' ');
554 sq_quote_buf(&cmd, path);
555 if (cmd.len >= MAX_CMD_LEN)
556 die("command line too long");
558 conn->in = conn->out = -1;
559 conn->argv = arg = xcalloc(7, sizeof(*arg));
560 if (protocol == PROTO_SSH) {
561 const char *ssh = getenv("GIT_SSH");
562 int putty = ssh && strcasestr(ssh, "plink");
563 if (!ssh) ssh = "ssh";
566 if (putty && !strcasestr(ssh, "tortoiseplink"))
569 /* P is for PuTTY, p is for OpenSSH */
570 *arg++ = putty ? "-P" : "-p";
576 /* remove repo-local variables from the environment */
577 conn->env = local_repo_env;
583 if (start_command(conn))
584 die("unable to fork");
586 fd[0] = conn->out; /* read from child's stdout */
587 fd[1] = conn->in; /* write to child's stdin */
588 strbuf_release(&cmd);
595 int git_connection_is_socket(struct child_process *conn)
597 return conn == &no_fork;
600 int finish_connect(struct child_process *conn)
603 if (!conn || git_connection_is_socket(conn))
606 code = finish_command(conn);
612 char *git_getpass(const char *prompt)
615 struct child_process pass;
617 static struct strbuf buffer = STRBUF_INIT;
619 askpass = getenv("GIT_ASKPASS");
621 askpass = askpass_program;
623 askpass = getenv("SSH_ASKPASS");
624 if (!askpass || !(*askpass)) {
625 char *result = getpass(prompt);
627 die_errno("Could not read password");
635 memset(&pass, 0, sizeof(pass));
639 if (start_command(&pass))
642 strbuf_reset(&buffer);
643 if (strbuf_read(&buffer, pass.out, 20) < 0)
644 die("failed to read password from %s\n", askpass);
648 if (finish_command(&pass))
651 strbuf_setlen(&buffer, strcspn(buffer.buf, "\r\n"));