]> git.ipfire.org Git - thirdparty/git.git/blame - connect.c
t5500: show user name and host in diag-url
[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"
47a59185 8#include "connect.h"
9d2e9420 9#include "url.h"
a45b5f05 10#include "string-list.h"
13eb4626 11#include "sha1-array.h"
f7192598 12
96f1e58f 13static char *server_capabilities;
5d54cffc 14static const char *parse_feature_value(const char *, const char *, int *);
211b5f9e 15
be0b3f82 16static int check_ref(const char *name, unsigned int flags)
2718ff09
LT
17{
18 if (!flags)
19 return 1;
20
be0b3f82 21 if (!skip_prefix(name, "refs/", &name))
2718ff09
LT
22 return 0;
23
2718ff09 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 */
be0b3f82 29 if ((flags & REF_HEADS) && starts_with(name, "heads/"))
2718ff09
LT
30 return 1;
31
32 /* REF_TAGS means that we want tags */
be0b3f82 33 if ((flags & REF_TAGS) && starts_with(name, "tags/"))
2718ff09
LT
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{
be0b3f82 42 return check_ref(ref->name, flags);
4577370e
DB
43}
44
46284dd1
HV
45static void die_initial_contact(int got_at_least_one_head)
46{
47 if (got_at_least_one_head)
48 die("The remote end hung up upon initial contact");
49 else
50 die("Could not read from remote repository.\n\n"
51 "Please make sure you have the correct access rights\n"
52 "and the repository exists.");
53}
54
a45b5f05
JH
55static void parse_one_symref_info(struct string_list *symref, const char *val, int len)
56{
57 char *sym, *target;
58 struct string_list_item *item;
59
60 if (!len)
61 return; /* just "symref" */
62 /* e.g. "symref=HEAD:refs/heads/master" */
5c0b13f8 63 sym = xmemdupz(val, len);
a45b5f05
JH
64 target = strchr(sym, ':');
65 if (!target)
66 /* just "symref=something" */
67 goto reject;
68 *(target++) = '\0';
69 if (check_refname_format(sym, REFNAME_ALLOW_ONELEVEL) ||
70 check_refname_format(target, REFNAME_ALLOW_ONELEVEL))
71 /* "symref=bogus:pair */
72 goto reject;
73 item = string_list_append(symref, sym);
74 item->util = target;
75 return;
76reject:
77 free(sym);
78 return;
79}
80
81static void annotate_refs_with_symref_info(struct ref *ref)
82{
83 struct string_list symref = STRING_LIST_INIT_DUP;
84 const char *feature_list = server_capabilities;
85
86 while (feature_list) {
87 int len;
88 const char *val;
89
90 val = parse_feature_value(feature_list, "symref", &len);
91 if (!val)
92 break;
93 parse_one_symref_info(&symref, val, len);
94 feature_list = val + 1;
95 }
96 sort_string_list(&symref);
97
98 for (; ref; ref = ref->next) {
99 struct string_list_item *item;
100 item = string_list_lookup(&symref, ref->name);
101 if (!item)
102 continue;
103 ref->symref = xstrdup((char *)item->util);
104 }
105 string_list_clear(&symref, 0);
106}
107
d1c133f5
LT
108/*
109 * Read all the refs from the other end
110 */
85edf4f5
JK
111struct ref **get_remote_heads(int in, char *src_buf, size_t src_len,
112 struct ref **list, unsigned int flags,
b06dcd7d
NTND
113 struct sha1_array *extra_have,
114 struct sha1_array *shallow_points)
d1c133f5 115{
a45b5f05 116 struct ref **orig_list = list;
46284dd1
HV
117 int got_at_least_one_head = 0;
118
d1c133f5
LT
119 *list = NULL;
120 for (;;) {
121 struct ref *ref;
122 unsigned char old_sha1[20];
d1c133f5 123 char *name;
211b5f9e 124 int len, name_len;
74543a04 125 char *buffer = packet_buffer;
ae021d87 126 const char *arg;
d1c133f5 127
85edf4f5 128 len = packet_read(in, &src_buf, &src_len,
4981fe75 129 packet_buffer, sizeof(packet_buffer),
819b929d
JK
130 PACKET_READ_GENTLE_ON_EOF |
131 PACKET_READ_CHOMP_NEWLINE);
46284dd1
HV
132 if (len < 0)
133 die_initial_contact(got_at_least_one_head);
134
d1c133f5
LT
135 if (!len)
136 break;
d1c133f5 137
ae021d87
JK
138 if (len > 4 && skip_prefix(buffer, "ERR ", &arg))
139 die("remote error: %s", arg);
a8073289 140
ae021d87
JK
141 if (len == 48 && skip_prefix(buffer, "shallow ", &arg)) {
142 if (get_sha1_hex(arg, old_sha1))
143 die("protocol error: expected shallow sha-1, got '%s'", arg);
b06dcd7d
NTND
144 if (!shallow_points)
145 die("repository on the other end cannot be shallow");
146 sha1_array_append(shallow_points, old_sha1);
147 continue;
148 }
149
d1c133f5
LT
150 if (len < 42 || get_sha1_hex(buffer, old_sha1) || buffer[40] != ' ')
151 die("protocol error: expected sha/ref, got '%s'", buffer);
152 name = buffer + 41;
1a7141ff 153
211b5f9e
JS
154 name_len = strlen(name);
155 if (len != name_len + 41) {
8e0f7003 156 free(server_capabilities);
9befac47 157 server_capabilities = xstrdup(name + name_len + 1);
211b5f9e
JS
158 }
159
40c155ff
JH
160 if (extra_have &&
161 name_len == 5 && !memcmp(".have", name, 5)) {
13eb4626 162 sha1_array_append(extra_have, old_sha1);
40c155ff
JH
163 continue;
164 }
165
be0b3f82 166 if (!check_ref(name, flags))
cfee10a7 167 continue;
59c69c0c 168 ref = alloc_ref(buffer + 41);
e702496e 169 hashcpy(ref->old_sha1, old_sha1);
d1c133f5
LT
170 *list = ref;
171 list = &ref->next;
46284dd1 172 got_at_least_one_head = 1;
d1c133f5 173 }
a45b5f05
JH
174
175 annotate_refs_with_symref_info(*orig_list);
176
d1c133f5
LT
177 return list;
178}
179
5d54cffc 180static const char *parse_feature_value(const char *feature_list, const char *feature, int *lenp)
f47182c8
JH
181{
182 int len;
183
184 if (!feature_list)
185 return NULL;
186
187 len = strlen(feature);
188 while (*feature_list) {
189 const char *found = strstr(feature_list, feature);
190 if (!found)
191 return NULL;
94427108
JK
192 if (feature_list == found || isspace(found[-1])) {
193 const char *value = found + len;
194 /* feature with no value (e.g., "thin-pack") */
195 if (!*value || isspace(*value)) {
196 if (lenp)
197 *lenp = 0;
198 return value;
199 }
200 /* feature with a value (e.g., "agent=git/1.2.3") */
201 else if (*value == '=') {
202 value++;
203 if (lenp)
204 *lenp = strcspn(value, " \t\n");
205 return value;
206 }
207 /*
208 * otherwise we matched a substring of another feature;
209 * keep looking
210 */
211 }
f47182c8
JH
212 feature_list = found + 1;
213 }
214 return NULL;
211b5f9e
JS
215}
216
94427108
JK
217int parse_feature_request(const char *feature_list, const char *feature)
218{
219 return !!parse_feature_value(feature_list, feature, NULL);
220}
221
222const char *server_feature_value(const char *feature, int *len)
223{
224 return parse_feature_value(server_capabilities, feature, len);
225}
226
227int server_supports(const char *feature)
228{
229 return !!server_feature_value(feature, NULL);
230}
231
2386d658
LT
232enum protocol {
233 PROTO_LOCAL = 1,
c59ab2e5 234 PROTO_FILE,
2386d658 235 PROTO_SSH,
4b05548f 236 PROTO_GIT
2386d658
LT
237};
238
c59ab2e5
TB
239int url_is_local_not_ssh(const char *url)
240{
241 const char *colon = strchr(url, ':');
242 const char *slash = strchr(url, '/');
243 return !colon || (slash && slash < colon) ||
244 has_dos_drive_prefix(url);
245}
246
5610b7c0
TB
247static const char *prot_name(enum protocol protocol)
248{
249 switch (protocol) {
250 case PROTO_LOCAL:
c59ab2e5 251 case PROTO_FILE:
5610b7c0
TB
252 return "file";
253 case PROTO_SSH:
254 return "ssh";
255 case PROTO_GIT:
256 return "git";
257 default:
258 return "unkown protocol";
259 }
260}
261
2386d658
LT
262static enum protocol get_protocol(const char *name)
263{
264 if (!strcmp(name, "ssh"))
265 return PROTO_SSH;
266 if (!strcmp(name, "git"))
267 return PROTO_GIT;
c05186cc
LT
268 if (!strcmp(name, "git+ssh"))
269 return PROTO_SSH;
270 if (!strcmp(name, "ssh+git"))
271 return PROTO_SSH;
72a4f4b6 272 if (!strcmp(name, "file"))
c59ab2e5 273 return PROTO_FILE;
2386d658
LT
274 die("I don't handle protocol '%s'", name);
275}
276
86ceb337
TB
277static char *host_end(char **hoststart, int removebrackets)
278{
279 char *host = *hoststart;
280 char *end;
281 char *start = strstr(host, "@[");
282 if (start)
283 start++; /* Jump over '@' */
284 else
285 start = host;
286 if (start[0] == '[') {
287 end = strchr(start + 1, ']');
288 if (end) {
289 if (removebrackets) {
290 *end = 0;
291 memmove(start, start + 1, end - start);
292 end++;
293 }
294 } else
295 end = host;
296 } else
297 end = host;
298 return end;
299}
300
5ba88448
YH
301#define STR_(s) # s
302#define STR(s) STR_(s)
2386d658 303
72a534da
ML
304static void get_host_and_port(char **host, const char **port)
305{
306 char *colon, *end;
86ceb337 307 end = host_end(host, 1);
72a534da 308 colon = strchr(end, ':');
72a534da 309 if (colon) {
86ceb337
TB
310 long portnr = strtol(colon + 1, &end, 10);
311 if (end != colon + 1 && *end == '\0' && 0 <= portnr && portnr < 65536) {
312 *colon = 0;
313 *port = colon + 1;
314 }
72a534da
ML
315 }
316}
317
e47a8583
EW
318static void enable_keepalive(int sockfd)
319{
320 int ka = 1;
321
322 if (setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, &ka, sizeof(ka)) < 0)
323 fprintf(stderr, "unable to set SO_KEEPALIVE on socket: %s\n",
324 strerror(errno));
325}
326
49744d63 327#ifndef NO_IPV6
4c505f71 328
ba505322
AR
329static const char *ai_name(const struct addrinfo *ai)
330{
785a9857
BK
331 static char addr[NI_MAXHOST];
332 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, addr, sizeof(addr), NULL, 0,
333 NI_NUMERICHOST) != 0)
ba505322 334 strcpy(addr, "(unknown)");
785a9857 335
ba505322
AR
336 return addr;
337}
338
5ad312be
JL
339/*
340 * Returns a connected socket() fd, or else die()s.
341 */
7841ce79 342static int git_tcp_connect_sock(char *host, int flags)
2386d658 343{
63a995b6
DZ
344 struct strbuf error_message = STRBUF_INIT;
345 int sockfd = -1;
554fe20d 346 const char *port = STR(DEFAULT_GIT_PORT);
5ba88448
YH
347 struct addrinfo hints, *ai0, *ai;
348 int gai;
ba505322 349 int cnt = 0;
5ba88448 350
72a534da
ML
351 get_host_and_port(&host, &port);
352 if (!*port)
353 port = "<none>";
5ba88448
YH
354
355 memset(&hints, 0, sizeof(hints));
356 hints.ai_socktype = SOCK_STREAM;
357 hints.ai_protocol = IPPROTO_TCP;
358
7841ce79
MT
359 if (flags & CONNECT_VERBOSE)
360 fprintf(stderr, "Looking up %s ... ", host);
361
5ba88448
YH
362 gai = getaddrinfo(host, port, &hints, &ai);
363 if (gai)
608d48b2 364 die("Unable to look up %s (port %s) (%s)", host, port, gai_strerror(gai));
5ba88448 365
7841ce79
MT
366 if (flags & CONNECT_VERBOSE)
367 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
368
e08afecd 369 for (ai0 = ai; ai; ai = ai->ai_next, cnt++) {
5ad312be
JL
370 sockfd = socket(ai->ai_family,
371 ai->ai_socktype, ai->ai_protocol);
63a995b6
DZ
372 if ((sockfd < 0) ||
373 (connect(sockfd, ai->ai_addr, ai->ai_addrlen) < 0)) {
374 strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n",
375 host, cnt, ai_name(ai), strerror(errno));
376 if (0 <= sockfd)
377 close(sockfd);
5ba88448
YH
378 sockfd = -1;
379 continue;
2386d658 380 }
ba505322
AR
381 if (flags & CONNECT_VERBOSE)
382 fprintf(stderr, "%s ", ai_name(ai));
5ba88448 383 break;
2386d658
LT
384 }
385
5ba88448 386 freeaddrinfo(ai0);
2386d658 387
2386d658 388 if (sockfd < 0)
63a995b6 389 die("unable to connect to %s:\n%s", host, error_message.buf);
5ba88448 390
e47a8583
EW
391 enable_keepalive(sockfd);
392
7841ce79
MT
393 if (flags & CONNECT_VERBOSE)
394 fprintf(stderr, "done.\n");
395
63a995b6
DZ
396 strbuf_release(&error_message);
397
5ad312be 398 return sockfd;
2386d658
LT
399}
400
49744d63 401#else /* NO_IPV6 */
4c505f71 402
5ad312be
JL
403/*
404 * Returns a connected socket() fd, or else die()s.
405 */
7841ce79 406static int git_tcp_connect_sock(char *host, int flags)
4c505f71 407{
7203a2d1
EFL
408 struct strbuf error_message = STRBUF_INIT;
409 int sockfd = -1;
72a534da
ML
410 const char *port = STR(DEFAULT_GIT_PORT);
411 char *ep;
4c505f71
PA
412 struct hostent *he;
413 struct sockaddr_in sa;
414 char **ap;
415 unsigned int nport;
ba505322 416 int cnt;
4c505f71 417
72a534da 418 get_host_and_port(&host, &port);
4c505f71 419
7841ce79
MT
420 if (flags & CONNECT_VERBOSE)
421 fprintf(stderr, "Looking up %s ... ", host);
422
4c505f71
PA
423 he = gethostbyname(host);
424 if (!he)
425 die("Unable to look up %s (%s)", host, hstrerror(h_errno));
426 nport = strtoul(port, &ep, 10);
427 if ( ep == port || *ep ) {
428 /* Not numeric */
429 struct servent *se = getservbyname(port,"tcp");
430 if ( !se )
d7530708 431 die("Unknown port %s", port);
4c505f71
PA
432 nport = se->s_port;
433 }
434
7841ce79
MT
435 if (flags & CONNECT_VERBOSE)
436 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
437
ba505322 438 for (cnt = 0, ap = he->h_addr_list; *ap; ap++, cnt++) {
4c505f71
PA
439 memset(&sa, 0, sizeof sa);
440 sa.sin_family = he->h_addrtype;
6573faff 441 sa.sin_port = htons(nport);
c6164218 442 memcpy(&sa.sin_addr, *ap, he->h_length);
4c505f71 443
7203a2d1
EFL
444 sockfd = socket(he->h_addrtype, SOCK_STREAM, 0);
445 if ((sockfd < 0) ||
446 connect(sockfd, (struct sockaddr *)&sa, sizeof sa) < 0) {
447 strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n",
ba505322
AR
448 host,
449 cnt,
450 inet_ntoa(*(struct in_addr *)&sa.sin_addr),
7203a2d1
EFL
451 strerror(errno));
452 if (0 <= sockfd)
453 close(sockfd);
4c505f71
PA
454 sockfd = -1;
455 continue;
456 }
ba505322
AR
457 if (flags & CONNECT_VERBOSE)
458 fprintf(stderr, "%s ",
459 inet_ntoa(*(struct in_addr *)&sa.sin_addr));
4c505f71
PA
460 break;
461 }
462
463 if (sockfd < 0)
7203a2d1 464 die("unable to connect to %s:\n%s", host, error_message.buf);
4c505f71 465
e47a8583
EW
466 enable_keepalive(sockfd);
467
7841ce79
MT
468 if (flags & CONNECT_VERBOSE)
469 fprintf(stderr, "done.\n");
470
5ad312be
JL
471 return sockfd;
472}
473
474#endif /* NO_IPV6 */
475
476
7841ce79 477static void git_tcp_connect(int fd[2], char *host, int flags)
5ad312be 478{
7841ce79 479 int sockfd = git_tcp_connect_sock(host, flags);
5ad312be 480
4c505f71 481 fd[0] = sockfd;
ec587fde 482 fd[1] = dup(sockfd);
4c505f71
PA
483}
484
4c505f71 485
96f1e58f 486static char *git_proxy_command;
f8014776 487
ef90d6d4
JS
488static int git_proxy_command_options(const char *var, const char *value,
489 void *cb)
f8014776 490{
e814bc4d 491 if (!strcmp(var, "core.gitproxy")) {
c3df8568
YH
492 const char *for_pos;
493 int matchlen = -1;
494 int hostlen;
15112c95
EFL
495 const char *rhost_name = cb;
496 int rhost_len = strlen(rhost_name);
c3df8568 497
e814bc4d 498 if (git_proxy_command)
f8014776 499 return 0;
c64b9ad0
JH
500 if (!value)
501 return config_error_nonbool(var);
e814bc4d
JH
502 /* [core]
503 * ;# matches www.kernel.org as well
504 * gitproxy = netcatter-1 for kernel.org
505 * gitproxy = netcatter-2 for sample.xz
506 * gitproxy = netcatter-default
507 */
c3df8568 508 for_pos = strstr(value, " for ");
e814bc4d
JH
509 if (!for_pos)
510 /* matches everybody */
511 matchlen = strlen(value);
512 else {
513 hostlen = strlen(for_pos + 5);
514 if (rhost_len < hostlen)
515 matchlen = -1;
516 else if (!strncmp(for_pos + 5,
517 rhost_name + rhost_len - hostlen,
518 hostlen) &&
519 ((rhost_len == hostlen) ||
520 rhost_name[rhost_len - hostlen -1] == '.'))
521 matchlen = for_pos - value;
522 else
523 matchlen = -1;
524 }
525 if (0 <= matchlen) {
526 /* core.gitproxy = none for kernel.org */
a6080a0a 527 if (matchlen == 4 &&
e814bc4d
JH
528 !memcmp(value, "none", 4))
529 matchlen = 0;
182af834 530 git_proxy_command = xmemdupz(value, matchlen);
f8014776 531 }
e814bc4d 532 return 0;
f8014776
PC
533 }
534
ef90d6d4 535 return git_default_config(var, value, cb);
f8014776
PC
536}
537
e814bc4d 538static int git_use_proxy(const char *host)
f8014776
PC
539{
540 git_proxy_command = getenv("GIT_PROXY_COMMAND");
15112c95 541 git_config(git_proxy_command_options, (void*)host);
e814bc4d 542 return (git_proxy_command && *git_proxy_command);
f8014776
PC
543}
544
5cbf8246 545static struct child_process *git_proxy_connect(int fd[2], char *host)
f8014776 546{
554fe20d 547 const char *port = STR(DEFAULT_GIT_PORT);
5cbf8246 548 struct child_process *proxy;
f8014776 549
72a534da 550 get_host_and_port(&host, &port);
f8014776 551
483bbd4e
RS
552 proxy = xmalloc(sizeof(*proxy));
553 child_process_init(proxy);
1823bea1
JK
554 argv_array_push(&proxy->args, git_proxy_command);
555 argv_array_push(&proxy->args, host);
556 argv_array_push(&proxy->args, port);
5cbf8246
JK
557 proxy->in = -1;
558 proxy->out = -1;
559 if (start_command(proxy))
1823bea1 560 die("cannot start proxy %s", git_proxy_command);
5cbf8246
JK
561 fd[0] = proxy->out; /* read from proxy stdout */
562 fd[1] = proxy->in; /* write to proxy stdin */
563 return proxy;
f8014776
PC
564}
565
86ceb337 566static char *get_port(char *host)
2e776665
LT
567{
568 char *end;
86ceb337
TB
569 char *p = strchr(host, ':');
570
2e776665 571 if (p) {
8f148253
RS
572 long port = strtol(p + 1, &end, 10);
573 if (end != p + 1 && *end == '\0' && 0 <= port && port < 65536) {
86ceb337
TB
574 *p = '\0';
575 return p+1;
2e776665
LT
576 }
577 }
578
579 return NULL;
580}
581
f7192598 582/*
cabc3c12
JS
583 * Extract protocol and relevant parts from the specified connection URL.
584 * The caller must free() the returned strings.
f7192598 585 */
cabc3c12 586static enum protocol parse_connect_url(const char *url_orig, char **ret_host,
83b05875 587 char **ret_path)
f7192598 588{
9d2e9420 589 char *url;
8e76bf3f 590 char *host, *path;
356bece0 591 char *end;
c59ab2e5 592 int separator = '/';
faea9ccb 593 enum protocol protocol = PROTO_LOCAL;
f0b7367c 594
9d2e9420
JK
595 if (is_url(url_orig))
596 url = url_decode(url_orig);
597 else
598 url = xstrdup(url_orig);
599
faea9ccb 600 host = strstr(url, "://");
eeefa7c9 601 if (host) {
faea9ccb
AE
602 *host = '\0';
603 protocol = get_protocol(url);
604 host += 3;
356bece0 605 } else {
f7192598 606 host = url;
c59ab2e5
TB
607 if (!url_is_local_not_ssh(url)) {
608 protocol = PROTO_SSH;
609 separator = ':';
610 }
356bece0
YH
611 }
612
9aa5053d 613 /*
83b05875
TB
614 * Don't do destructive transforms as protocol code does
615 * '[]' unwrapping in get_host_and_port()
9aa5053d 616 */
86ceb337 617 end = host_end(&host, 0);
356bece0 618
c59ab2e5 619 if (protocol == PROTO_LOCAL)
72a4f4b6 620 path = end;
c59ab2e5
TB
621 else if (protocol == PROTO_FILE && has_dos_drive_prefix(end))
622 path = end; /* "file://$(pwd)" may be "file://C:/projects/repo" */
623 else
624 path = strchr(end, separator);
2386d658 625
faea9ccb
AE
626 if (!path || !*path)
627 die("No path specified. See 'man git-pull' for valid url syntax");
628
629 /*
630 * null-terminate hostname and point path to ~ for URL's like this:
631 * ssh://host.xz/~user/repo
632 */
c59ab2e5
TB
633
634 end = path; /* Need to \0 terminate host here */
635 if (separator == ':')
636 path++; /* path starts after ':' */
637 if (protocol == PROTO_GIT || protocol == PROTO_SSH) {
faea9ccb
AE
638 if (path[1] == '~')
639 path++;
faea9ccb
AE
640 }
641
c59ab2e5
TB
642 path = xstrdup(path);
643 *end = '\0';
644
cabc3c12 645 *ret_host = xstrdup(host);
c59ab2e5 646 *ret_path = path;
cabc3c12
JS
647 free(url);
648 return protocol;
649}
650
d3180279 651static struct child_process no_fork = CHILD_PROCESS_INIT;
cabc3c12
JS
652
653/*
654 * This returns a dummy child_process if the transport protocol does not
655 * need fork(2), or a struct child_process object if it does. Once done,
656 * finish the connection with finish_connect() with the value returned from
657 * this function (it is safe to call finish_connect() with NULL to support
658 * the former case).
659 *
660 * If it returns, the connect is successful; it just dies on errors (this
661 * will hopefully be changed in a libification effort, to return NULL when
662 * the connection failed).
663 */
664struct child_process *git_connect(int fd[2], const char *url,
665 const char *prog, int flags)
666{
a2036d7e 667 char *hostandport, *path;
cabc3c12
JS
668 struct child_process *conn = &no_fork;
669 enum protocol protocol;
cabc3c12
JS
670 struct strbuf cmd = STRBUF_INIT;
671
672 /* Without this we cannot rely on waitpid() to tell
673 * what happened to our children.
2e776665 674 */
cabc3c12 675 signal(SIGCHLD, SIG_DFL);
2e776665 676
a2036d7e 677 protocol = parse_connect_url(url, &hostandport, &path);
3f55ccab 678 if ((flags & CONNECT_DIAG_URL) && (protocol != PROTO_SSH)) {
5610b7c0
TB
679 printf("Diag: url=%s\n", url ? url : "NULL");
680 printf("Diag: protocol=%s\n", prot_name(protocol));
a2036d7e 681 printf("Diag: hostandport=%s\n", hostandport ? hostandport : "NULL");
5610b7c0 682 printf("Diag: path=%s\n", path ? path : "NULL");
a2036d7e
TB
683 conn = NULL;
684 } else if (protocol == PROTO_GIT) {
5ad312be
JL
685 /* These underlying connection commands die() if they
686 * cannot connect.
687 */
a2036d7e
TB
688 char *target_host = xstrdup(hostandport);
689 if (git_use_proxy(hostandport))
690 conn = git_proxy_connect(fd, hostandport);
da2a95b2 691 else
a2036d7e 692 git_tcp_connect(fd, hostandport, flags);
5ad312be
JL
693 /*
694 * Separate original protocol components prog and path
73bb33a9
SP
695 * from extended host header with a NUL byte.
696 *
697 * Note: Do not add any other headers here! Doing so
698 * will cause older git-daemon servers to crash.
5ad312be
JL
699 */
700 packet_write(fd[1],
701 "%s %s%chost=%s%c",
702 prog, path, 0,
703 target_host, 0);
704 free(target_host);
a2036d7e 705 } else {
483bbd4e
RS
706 conn = xmalloc(sizeof(*conn));
707 child_process_init(conn);
a2036d7e
TB
708
709 strbuf_addstr(&cmd, prog);
710 strbuf_addch(&cmd, ' ');
711 sq_quote_buf(&cmd, path);
712
713 conn->in = conn->out = -1;
a2036d7e
TB
714 if (protocol == PROTO_SSH) {
715 const char *ssh = getenv("GIT_SSH");
716 int putty = ssh && strcasestr(ssh, "plink");
717 char *ssh_host = hostandport;
718 const char *port = NULL;
719 get_host_and_port(&ssh_host, &port);
86ceb337
TB
720 if (!port)
721 port = get_port(ssh_host);
3f55ccab
TB
722 if (flags & CONNECT_DIAG_URL) {
723 printf("Diag: url=%s\n", url ? url : "NULL");
724 printf("Diag: protocol=%s\n", prot_name(protocol));
725 printf("Diag: userandhost=%s\n", ssh_host ? ssh_host : "NULL");
726 printf("Diag: port=%s\n", port ? port : "NONE");
727 printf("Diag: path=%s\n", path ? path : "NULL");
728
729 free(hostandport);
730 free(path);
731 return NULL;
732 } else {
733 if (!ssh) ssh = "ssh";
734
735 argv_array_push(&conn->args, ssh);
736 if (putty && !strcasestr(ssh, "tortoiseplink"))
737 argv_array_push(&conn->args, "-batch");
738 if (port) {
739 /* P is for PuTTY, p is for OpenSSH */
740 argv_array_push(&conn->args, putty ? "-P" : "-p");
741 argv_array_push(&conn->args, port);
742 }
743 argv_array_push(&conn->args, ssh_host);
a2036d7e 744 }
c049b61d 745 } else {
a2036d7e
TB
746 /* remove repo-local variables from the environment */
747 conn->env = local_repo_env;
748 conn->use_shell = 1;
4852f723 749 }
1823bea1 750 argv_array_push(&conn->args, cmd.buf);
f364cb88 751
a2036d7e
TB
752 if (start_command(conn))
753 die("unable to fork");
f364cb88 754
a2036d7e
TB
755 fd[0] = conn->out; /* read from child's stdout */
756 fd[1] = conn->in; /* write to child's stdin */
757 strbuf_release(&cmd);
758 }
759 free(hostandport);
cabc3c12 760 free(path);
98158e9c 761 return conn;
f7192598
LT
762}
763
7ffe853b
JK
764int git_connection_is_socket(struct child_process *conn)
765{
766 return conn == &no_fork;
767}
768
98158e9c 769int finish_connect(struct child_process *conn)
f7192598 770{
f364cb88 771 int code;
7ffe853b 772 if (!conn || git_connection_is_socket(conn))
f42a5c4e
FBH
773 return 0;
774
f364cb88 775 code = finish_command(conn);
98158e9c 776 free(conn);
f364cb88 777 return code;
f7192598 778}