]> git.ipfire.org Git - thirdparty/git.git/blame - connect.c
completion: add --set-upstream-to and --unset-upstream
[thirdparty/git.git] / connect.c
CommitLineData
731043fd 1#include "git-compat-util.h"
f7192598 2#include "cache.h"
41cb7488 3#include "pkt-line.h"
b10d0ec7 4#include "quote.h"
6abf5c0c 5#include "refs.h"
15a1c012 6#include "run-command.h"
6b62816c 7#include "remote.h"
9d2e9420 8#include "url.h"
f7192598 9
96f1e58f 10static char *server_capabilities;
211b5f9e 11
2718ff09
LT
12static int check_ref(const char *name, int len, unsigned int flags)
13{
14 if (!flags)
15 return 1;
16
c41e20b3 17 if (len < 5 || memcmp(name, "refs/", 5))
2718ff09
LT
18 return 0;
19
20 /* Skip the "refs/" part */
21 name += 5;
22 len -= 5;
23
24 /* REF_NORMAL means that we don't want the magic fake tag refs */
8d9c5010 25 if ((flags & REF_NORMAL) && check_refname_format(name, 0))
2718ff09
LT
26 return 0;
27
28 /* REF_HEADS means that we want regular branch heads */
29 if ((flags & REF_HEADS) && !memcmp(name, "heads/", 6))
30 return 1;
31
32 /* REF_TAGS means that we want tags */
33 if ((flags & REF_TAGS) && !memcmp(name, "tags/", 5))
34 return 1;
35
36 /* All type bits clear means that we are ok with anything */
37 return !(flags & ~REF_NORMAL);
38}
39
4577370e
DB
40int check_ref_type(const struct ref *ref, int flags)
41{
42 return check_ref(ref->name, strlen(ref->name), flags);
43}
44
40c155ff
JH
45static void add_extra_have(struct extra_have_objects *extra, unsigned char *sha1)
46{
47 ALLOC_GROW(extra->array, extra->nr + 1, extra->alloc);
48 hashcpy(&(extra->array[extra->nr][0]), sha1);
49 extra->nr++;
50}
51
46284dd1
HV
52static void die_initial_contact(int got_at_least_one_head)
53{
54 if (got_at_least_one_head)
55 die("The remote end hung up upon initial contact");
56 else
57 die("Could not read from remote repository.\n\n"
58 "Please make sure you have the correct access rights\n"
59 "and the repository exists.");
60}
61
d1c133f5
LT
62/*
63 * Read all the refs from the other end
64 */
1a7141ff 65struct ref **get_remote_heads(int in, struct ref **list,
40c155ff
JH
66 unsigned int flags,
67 struct extra_have_objects *extra_have)
d1c133f5 68{
46284dd1
HV
69 int got_at_least_one_head = 0;
70
d1c133f5
LT
71 *list = NULL;
72 for (;;) {
73 struct ref *ref;
74 unsigned char old_sha1[20];
75 static char buffer[1000];
76 char *name;
211b5f9e 77 int len, name_len;
d1c133f5 78
46284dd1
HV
79 len = packet_read(in, buffer, sizeof(buffer));
80 if (len < 0)
81 die_initial_contact(got_at_least_one_head);
82
d1c133f5
LT
83 if (!len)
84 break;
85 if (buffer[len-1] == '\n')
86 buffer[--len] = 0;
87
a8073289
TPW
88 if (len > 4 && !prefixcmp(buffer, "ERR "))
89 die("remote error: %s", buffer + 4);
90
d1c133f5
LT
91 if (len < 42 || get_sha1_hex(buffer, old_sha1) || buffer[40] != ' ')
92 die("protocol error: expected sha/ref, got '%s'", buffer);
93 name = buffer + 41;
1a7141ff 94
211b5f9e
JS
95 name_len = strlen(name);
96 if (len != name_len + 41) {
8e0f7003 97 free(server_capabilities);
9befac47 98 server_capabilities = xstrdup(name + name_len + 1);
211b5f9e
JS
99 }
100
40c155ff
JH
101 if (extra_have &&
102 name_len == 5 && !memcmp(".have", name, 5)) {
103 add_extra_have(extra_have, old_sha1);
104 continue;
105 }
106
2718ff09 107 if (!check_ref(name, name_len, flags))
cfee10a7 108 continue;
59c69c0c 109 ref = alloc_ref(buffer + 41);
e702496e 110 hashcpy(ref->old_sha1, old_sha1);
d1c133f5
LT
111 *list = ref;
112 list = &ref->next;
46284dd1 113 got_at_least_one_head = 1;
d1c133f5
LT
114 }
115 return list;
116}
117
211b5f9e
JS
118int server_supports(const char *feature)
119{
f47182c8
JH
120 return !!parse_feature_request(server_capabilities, feature);
121}
122
123const char *parse_feature_request(const char *feature_list, const char *feature)
124{
125 int len;
126
127 if (!feature_list)
128 return NULL;
129
130 len = strlen(feature);
131 while (*feature_list) {
132 const char *found = strstr(feature_list, feature);
133 if (!found)
134 return NULL;
135 if ((feature_list == found || isspace(found[-1])) &&
136 (!found[len] || isspace(found[len]) || found[len] == '='))
137 return found;
138 feature_list = found + 1;
139 }
140 return NULL;
211b5f9e
JS
141}
142
2386d658
LT
143enum protocol {
144 PROTO_LOCAL = 1,
145 PROTO_SSH,
4b05548f 146 PROTO_GIT
2386d658
LT
147};
148
149static enum protocol get_protocol(const char *name)
150{
151 if (!strcmp(name, "ssh"))
152 return PROTO_SSH;
153 if (!strcmp(name, "git"))
154 return PROTO_GIT;
c05186cc
LT
155 if (!strcmp(name, "git+ssh"))
156 return PROTO_SSH;
157 if (!strcmp(name, "ssh+git"))
158 return PROTO_SSH;
72a4f4b6
LT
159 if (!strcmp(name, "file"))
160 return PROTO_LOCAL;
2386d658
LT
161 die("I don't handle protocol '%s'", name);
162}
163
5ba88448
YH
164#define STR_(s) # s
165#define STR(s) STR_(s)
2386d658 166
72a534da
ML
167static void get_host_and_port(char **host, const char **port)
168{
169 char *colon, *end;
170
171 if (*host[0] == '[') {
172 end = strchr(*host + 1, ']');
173 if (end) {
174 *end = 0;
175 end++;
176 (*host)++;
177 } else
178 end = *host;
179 } else
180 end = *host;
181 colon = strchr(end, ':');
182
183 if (colon) {
184 *colon = 0;
185 *port = colon + 1;
186 }
187}
188
e47a8583
EW
189static void enable_keepalive(int sockfd)
190{
191 int ka = 1;
192
193 if (setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, &ka, sizeof(ka)) < 0)
194 fprintf(stderr, "unable to set SO_KEEPALIVE on socket: %s\n",
195 strerror(errno));
196}
197
49744d63 198#ifndef NO_IPV6
4c505f71 199
ba505322
AR
200static const char *ai_name(const struct addrinfo *ai)
201{
785a9857
BK
202 static char addr[NI_MAXHOST];
203 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, addr, sizeof(addr), NULL, 0,
204 NI_NUMERICHOST) != 0)
ba505322 205 strcpy(addr, "(unknown)");
785a9857 206
ba505322
AR
207 return addr;
208}
209
5ad312be
JL
210/*
211 * Returns a connected socket() fd, or else die()s.
212 */
7841ce79 213static int git_tcp_connect_sock(char *host, int flags)
2386d658 214{
63a995b6
DZ
215 struct strbuf error_message = STRBUF_INIT;
216 int sockfd = -1;
554fe20d 217 const char *port = STR(DEFAULT_GIT_PORT);
5ba88448
YH
218 struct addrinfo hints, *ai0, *ai;
219 int gai;
ba505322 220 int cnt = 0;
5ba88448 221
72a534da
ML
222 get_host_and_port(&host, &port);
223 if (!*port)
224 port = "<none>";
5ba88448
YH
225
226 memset(&hints, 0, sizeof(hints));
227 hints.ai_socktype = SOCK_STREAM;
228 hints.ai_protocol = IPPROTO_TCP;
229
7841ce79
MT
230 if (flags & CONNECT_VERBOSE)
231 fprintf(stderr, "Looking up %s ... ", host);
232
5ba88448
YH
233 gai = getaddrinfo(host, port, &hints, &ai);
234 if (gai)
608d48b2 235 die("Unable to look up %s (port %s) (%s)", host, port, gai_strerror(gai));
5ba88448 236
7841ce79
MT
237 if (flags & CONNECT_VERBOSE)
238 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
239
e08afecd 240 for (ai0 = ai; ai; ai = ai->ai_next, cnt++) {
5ad312be
JL
241 sockfd = socket(ai->ai_family,
242 ai->ai_socktype, ai->ai_protocol);
63a995b6
DZ
243 if ((sockfd < 0) ||
244 (connect(sockfd, ai->ai_addr, ai->ai_addrlen) < 0)) {
245 strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n",
246 host, cnt, ai_name(ai), strerror(errno));
247 if (0 <= sockfd)
248 close(sockfd);
5ba88448
YH
249 sockfd = -1;
250 continue;
2386d658 251 }
ba505322
AR
252 if (flags & CONNECT_VERBOSE)
253 fprintf(stderr, "%s ", ai_name(ai));
5ba88448 254 break;
2386d658
LT
255 }
256
5ba88448 257 freeaddrinfo(ai0);
2386d658 258
2386d658 259 if (sockfd < 0)
63a995b6 260 die("unable to connect to %s:\n%s", host, error_message.buf);
5ba88448 261
e47a8583
EW
262 enable_keepalive(sockfd);
263
7841ce79
MT
264 if (flags & CONNECT_VERBOSE)
265 fprintf(stderr, "done.\n");
266
63a995b6
DZ
267 strbuf_release(&error_message);
268
5ad312be 269 return sockfd;
2386d658
LT
270}
271
49744d63 272#else /* NO_IPV6 */
4c505f71 273
5ad312be
JL
274/*
275 * Returns a connected socket() fd, or else die()s.
276 */
7841ce79 277static int git_tcp_connect_sock(char *host, int flags)
4c505f71 278{
7203a2d1
EFL
279 struct strbuf error_message = STRBUF_INIT;
280 int sockfd = -1;
72a534da
ML
281 const char *port = STR(DEFAULT_GIT_PORT);
282 char *ep;
4c505f71
PA
283 struct hostent *he;
284 struct sockaddr_in sa;
285 char **ap;
286 unsigned int nport;
ba505322 287 int cnt;
4c505f71 288
72a534da 289 get_host_and_port(&host, &port);
4c505f71 290
7841ce79
MT
291 if (flags & CONNECT_VERBOSE)
292 fprintf(stderr, "Looking up %s ... ", host);
293
4c505f71
PA
294 he = gethostbyname(host);
295 if (!he)
296 die("Unable to look up %s (%s)", host, hstrerror(h_errno));
297 nport = strtoul(port, &ep, 10);
298 if ( ep == port || *ep ) {
299 /* Not numeric */
300 struct servent *se = getservbyname(port,"tcp");
301 if ( !se )
d7530708 302 die("Unknown port %s", port);
4c505f71
PA
303 nport = se->s_port;
304 }
305
7841ce79
MT
306 if (flags & CONNECT_VERBOSE)
307 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
308
ba505322 309 for (cnt = 0, ap = he->h_addr_list; *ap; ap++, cnt++) {
4c505f71
PA
310 memset(&sa, 0, sizeof sa);
311 sa.sin_family = he->h_addrtype;
6573faff 312 sa.sin_port = htons(nport);
c6164218 313 memcpy(&sa.sin_addr, *ap, he->h_length);
4c505f71 314
7203a2d1
EFL
315 sockfd = socket(he->h_addrtype, SOCK_STREAM, 0);
316 if ((sockfd < 0) ||
317 connect(sockfd, (struct sockaddr *)&sa, sizeof sa) < 0) {
318 strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n",
ba505322
AR
319 host,
320 cnt,
321 inet_ntoa(*(struct in_addr *)&sa.sin_addr),
7203a2d1
EFL
322 strerror(errno));
323 if (0 <= sockfd)
324 close(sockfd);
4c505f71
PA
325 sockfd = -1;
326 continue;
327 }
ba505322
AR
328 if (flags & CONNECT_VERBOSE)
329 fprintf(stderr, "%s ",
330 inet_ntoa(*(struct in_addr *)&sa.sin_addr));
4c505f71
PA
331 break;
332 }
333
334 if (sockfd < 0)
7203a2d1 335 die("unable to connect to %s:\n%s", host, error_message.buf);
4c505f71 336
e47a8583
EW
337 enable_keepalive(sockfd);
338
7841ce79
MT
339 if (flags & CONNECT_VERBOSE)
340 fprintf(stderr, "done.\n");
341
5ad312be
JL
342 return sockfd;
343}
344
345#endif /* NO_IPV6 */
346
347
7841ce79 348static void git_tcp_connect(int fd[2], char *host, int flags)
5ad312be 349{
7841ce79 350 int sockfd = git_tcp_connect_sock(host, flags);
5ad312be 351
4c505f71 352 fd[0] = sockfd;
ec587fde 353 fd[1] = dup(sockfd);
4c505f71
PA
354}
355
4c505f71 356
96f1e58f 357static char *git_proxy_command;
f8014776 358
ef90d6d4
JS
359static int git_proxy_command_options(const char *var, const char *value,
360 void *cb)
f8014776 361{
e814bc4d 362 if (!strcmp(var, "core.gitproxy")) {
c3df8568
YH
363 const char *for_pos;
364 int matchlen = -1;
365 int hostlen;
15112c95
EFL
366 const char *rhost_name = cb;
367 int rhost_len = strlen(rhost_name);
c3df8568 368
e814bc4d 369 if (git_proxy_command)
f8014776 370 return 0;
c64b9ad0
JH
371 if (!value)
372 return config_error_nonbool(var);
e814bc4d
JH
373 /* [core]
374 * ;# matches www.kernel.org as well
375 * gitproxy = netcatter-1 for kernel.org
376 * gitproxy = netcatter-2 for sample.xz
377 * gitproxy = netcatter-default
378 */
c3df8568 379 for_pos = strstr(value, " for ");
e814bc4d
JH
380 if (!for_pos)
381 /* matches everybody */
382 matchlen = strlen(value);
383 else {
384 hostlen = strlen(for_pos + 5);
385 if (rhost_len < hostlen)
386 matchlen = -1;
387 else if (!strncmp(for_pos + 5,
388 rhost_name + rhost_len - hostlen,
389 hostlen) &&
390 ((rhost_len == hostlen) ||
391 rhost_name[rhost_len - hostlen -1] == '.'))
392 matchlen = for_pos - value;
393 else
394 matchlen = -1;
395 }
396 if (0 <= matchlen) {
397 /* core.gitproxy = none for kernel.org */
a6080a0a 398 if (matchlen == 4 &&
e814bc4d
JH
399 !memcmp(value, "none", 4))
400 matchlen = 0;
182af834 401 git_proxy_command = xmemdupz(value, matchlen);
f8014776 402 }
e814bc4d 403 return 0;
f8014776
PC
404 }
405
ef90d6d4 406 return git_default_config(var, value, cb);
f8014776
PC
407}
408
e814bc4d 409static int git_use_proxy(const char *host)
f8014776
PC
410{
411 git_proxy_command = getenv("GIT_PROXY_COMMAND");
15112c95 412 git_config(git_proxy_command_options, (void*)host);
e814bc4d 413 return (git_proxy_command && *git_proxy_command);
f8014776
PC
414}
415
5cbf8246 416static struct child_process *git_proxy_connect(int fd[2], char *host)
f8014776 417{
554fe20d 418 const char *port = STR(DEFAULT_GIT_PORT);
5cbf8246
JK
419 const char **argv;
420 struct child_process *proxy;
f8014776 421
72a534da 422 get_host_and_port(&host, &port);
f8014776 423
5cbf8246 424 argv = xmalloc(sizeof(*argv) * 4);
15a1c012
SP
425 argv[0] = git_proxy_command;
426 argv[1] = host;
427 argv[2] = port;
428 argv[3] = NULL;
5cbf8246
JK
429 proxy = xcalloc(1, sizeof(*proxy));
430 proxy->argv = argv;
431 proxy->in = -1;
432 proxy->out = -1;
433 if (start_command(proxy))
15a1c012 434 die("cannot start proxy %s", argv[0]);
5cbf8246
JK
435 fd[0] = proxy->out; /* read from proxy stdout */
436 fd[1] = proxy->in; /* write to proxy stdin */
437 return proxy;
f8014776
PC
438}
439
0f503d77
CC
440#define MAX_CMD_LEN 1024
441
2af202be 442static char *get_port(char *host)
2e776665
LT
443{
444 char *end;
445 char *p = strchr(host, ':');
446
447 if (p) {
8f148253
RS
448 long port = strtol(p + 1, &end, 10);
449 if (end != p + 1 && *end == '\0' && 0 <= port && port < 65536) {
2e776665
LT
450 *p = '\0';
451 return p+1;
452 }
453 }
454
455 return NULL;
456}
457
fb32c917
JS
458static struct child_process no_fork;
459
f7192598 460/*
fb32c917
JS
461 * This returns a dummy child_process if the transport protocol does not
462 * need fork(2), or a struct child_process object if it does. Once done,
463 * finish the connection with finish_connect() with the value returned from
464 * this function (it is safe to call finish_connect() with NULL to support
465 * the former case).
f42a5c4e 466 *
fb32c917
JS
467 * If it returns, the connect is successful; it just dies on errors (this
468 * will hopefully be changed in a libification effort, to return NULL when
469 * the connection failed).
f7192598 470 */
4577370e 471struct child_process *git_connect(int fd[2], const char *url_orig,
98158e9c 472 const char *prog, int flags)
f7192598 473{
9d2e9420 474 char *url;
8e76bf3f 475 char *host, *path;
356bece0
YH
476 char *end;
477 int c;
5cbf8246 478 struct child_process *conn = &no_fork;
faea9ccb 479 enum protocol protocol = PROTO_LOCAL;
da2a95b2 480 int free_path = 0;
2e776665 481 char *port = NULL;
f364cb88
JS
482 const char **arg;
483 struct strbuf cmd;
faea9ccb 484
f0b7367c
JH
485 /* Without this we cannot rely on waitpid() to tell
486 * what happened to our children.
487 */
488 signal(SIGCHLD, SIG_DFL);
489
9d2e9420
JK
490 if (is_url(url_orig))
491 url = url_decode(url_orig);
492 else
493 url = xstrdup(url_orig);
494
faea9ccb 495 host = strstr(url, "://");
eeefa7c9 496 if (host) {
faea9ccb
AE
497 *host = '\0';
498 protocol = get_protocol(url);
499 host += 3;
356bece0
YH
500 c = '/';
501 } else {
f7192598 502 host = url;
356bece0
YH
503 c = ':';
504 }
505
9aa5053d
IL
506 /*
507 * Don't do destructive transforms with git:// as that
9517e6b8 508 * protocol code does '[]' unwrapping of its own.
9aa5053d 509 */
356bece0
YH
510 if (host[0] == '[') {
511 end = strchr(host + 1, ']');
512 if (end) {
9aa5053d
IL
513 if (protocol != PROTO_GIT) {
514 *end = 0;
515 host++;
516 }
356bece0 517 end++;
356bece0
YH
518 } else
519 end = host;
520 } else
521 end = host;
522
523 path = strchr(end, c);
be501813 524 if (path && !has_dos_drive_prefix(end)) {
72a4f4b6 525 if (c == ':') {
faea9ccb 526 protocol = PROTO_SSH;
356bece0 527 *path++ = '\0';
72a4f4b6
LT
528 }
529 } else
530 path = end;
2386d658 531
faea9ccb
AE
532 if (!path || !*path)
533 die("No path specified. See 'man git-pull' for valid url syntax");
534
535 /*
536 * null-terminate hostname and point path to ~ for URL's like this:
537 * ssh://host.xz/~user/repo
538 */
539 if (protocol != PROTO_LOCAL && host != url) {
540 char *ptr = path;
541 if (path[1] == '~')
542 path++;
da2a95b2 543 else {
9befac47 544 path = xstrdup(ptr);
da2a95b2
SH
545 free_path = 1;
546 }
faea9ccb
AE
547
548 *ptr = '\0';
549 }
550
2e776665
LT
551 /*
552 * Add support for ssh port: ssh://host.xy:<port>/...
553 */
554 if (protocol == PROTO_SSH && host != url)
7acf4382 555 port = get_port(end);
2e776665 556
f8014776 557 if (protocol == PROTO_GIT) {
5ad312be
JL
558 /* These underlying connection commands die() if they
559 * cannot connect.
560 */
9befac47 561 char *target_host = xstrdup(host);
e814bc4d 562 if (git_use_proxy(host))
5cbf8246 563 conn = git_proxy_connect(fd, host);
da2a95b2 564 else
7841ce79 565 git_tcp_connect(fd, host, flags);
5ad312be
JL
566 /*
567 * Separate original protocol components prog and path
73bb33a9
SP
568 * from extended host header with a NUL byte.
569 *
570 * Note: Do not add any other headers here! Doing so
571 * will cause older git-daemon servers to crash.
5ad312be
JL
572 */
573 packet_write(fd[1],
574 "%s %s%chost=%s%c",
575 prog, path, 0,
576 target_host, 0);
577 free(target_host);
4577370e 578 free(url);
da2a95b2
SH
579 if (free_path)
580 free(path);
5cbf8246 581 return conn;
f8014776 582 }
2386d658 583
98158e9c 584 conn = xcalloc(1, sizeof(*conn));
2e776665 585
f364cb88
JS
586 strbuf_init(&cmd, MAX_CMD_LEN);
587 strbuf_addstr(&cmd, prog);
588 strbuf_addch(&cmd, ' ');
589 sq_quote_buf(&cmd, path);
590 if (cmd.len >= MAX_CMD_LEN)
591 die("command line too long");
592
593 conn->in = conn->out = -1;
36ad53ff 594 conn->argv = arg = xcalloc(7, sizeof(*arg));
f364cb88
JS
595 if (protocol == PROTO_SSH) {
596 const char *ssh = getenv("GIT_SSH");
36ad53ff 597 int putty = ssh && strcasestr(ssh, "plink");
f364cb88
JS
598 if (!ssh) ssh = "ssh";
599
600 *arg++ = ssh;
36ad53ff
EY
601 if (putty && !strcasestr(ssh, "tortoiseplink"))
602 *arg++ = "-batch";
f364cb88 603 if (port) {
36ad53ff
EY
604 /* P is for PuTTY, p is for OpenSSH */
605 *arg++ = putty ? "-P" : "-p";
f364cb88 606 *arg++ = port;
4852f723 607 }
f364cb88
JS
608 *arg++ = host;
609 }
610 else {
48a7c1c4
GB
611 /* remove repo-local variables from the environment */
612 conn->env = local_repo_env;
4cfb2a44 613 conn->use_shell = 1;
016fb48b 614 }
f364cb88
JS
615 *arg++ = cmd.buf;
616 *arg = NULL;
617
618 if (start_command(conn))
619 die("unable to fork");
620
621 fd[0] = conn->out; /* read from child's stdout */
622 fd[1] = conn->in; /* write to child's stdin */
623 strbuf_release(&cmd);
4577370e 624 free(url);
da2a95b2
SH
625 if (free_path)
626 free(path);
98158e9c 627 return conn;
f7192598
LT
628}
629
7ffe853b
JK
630int git_connection_is_socket(struct child_process *conn)
631{
632 return conn == &no_fork;
633}
634
98158e9c 635int finish_connect(struct child_process *conn)
f7192598 636{
f364cb88 637 int code;
7ffe853b 638 if (!conn || git_connection_is_socket(conn))
f42a5c4e
FBH
639 return 0;
640
f364cb88
JS
641 code = finish_command(conn);
642 free(conn->argv);
98158e9c 643 free(conn);
f364cb88 644 return code;
f7192598 645}