blob: beaff987c7bc36096d09b2557f5208c5606ce2dd [file] [log] [blame]
Jason Riedy731043f2006-01-25 12:38:36 -08001#include "git-compat-util.h"
Linus Torvaldsf7192592005-07-04 11:57:58 -07002#include "cache.h"
Linus Torvalds41cb7482005-07-05 15:44:09 -07003#include "pkt-line.h"
Junio C Hamanob10d0ec2005-07-08 00:02:52 -07004#include "quote.h"
Junio C Hamano6abf5c02005-10-16 00:25:26 -07005#include "refs.h"
Shawn O. Pearce15a1c0122007-03-12 19:00:19 -04006#include "run-command.h"
Daniel Barkalow6b628162007-05-12 11:45:59 -04007#include "remote.h"
Linus Torvaldsf7192592005-07-04 11:57:58 -07008
David Rientjes96f1e582006-08-15 10:23:48 -07009static char *server_capabilities;
Johannes Schindelin211b5f92005-10-28 04:48:54 +020010
Linus Torvalds2718ff02006-07-04 12:29:10 -070011static int check_ref(const char *name, int len, unsigned int flags)
12{
13 if (!flags)
14 return 1;
15
Andy Whitcroftc41e20b2006-09-05 20:00:17 +010016 if (len < 5 || memcmp(name, "refs/", 5))
Linus Torvalds2718ff02006-07-04 12:29:10 -070017 return 0;
18
19 /* Skip the "refs/" part */
20 name += 5;
21 len -= 5;
22
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;
26
27 /* REF_HEADS means that we want regular branch heads */
28 if ((flags & REF_HEADS) && !memcmp(name, "heads/", 6))
29 return 1;
30
31 /* REF_TAGS means that we want tags */
32 if ((flags & REF_TAGS) && !memcmp(name, "tags/", 5))
33 return 1;
34
35 /* All type bits clear means that we are ok with anything */
36 return !(flags & ~REF_NORMAL);
37}
38
Daniel Barkalow45773702007-10-29 21:05:40 -040039int check_ref_type(const struct ref *ref, int flags)
40{
41 return check_ref(ref->name, strlen(ref->name), flags);
42}
43
Junio C Hamano40c155f2008-09-09 01:27:09 -070044static void add_extra_have(struct extra_have_objects *extra, unsigned char *sha1)
45{
46 ALLOC_GROW(extra->array, extra->nr + 1, extra->alloc);
47 hashcpy(&(extra->array[extra->nr][0]), sha1);
48 extra->nr++;
49}
50
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070051/*
52 * Read all the refs from the other end
53 */
Junio C Hamano1a7141f2005-10-13 18:57:40 -070054struct ref **get_remote_heads(int in, struct ref **list,
Linus Torvalds2718ff02006-07-04 12:29:10 -070055 int nr_match, char **match,
Junio C Hamano40c155f2008-09-09 01:27:09 -070056 unsigned int flags,
57 struct extra_have_objects *extra_have)
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070058{
59 *list = NULL;
60 for (;;) {
61 struct ref *ref;
62 unsigned char old_sha1[20];
63 static char buffer[1000];
64 char *name;
Johannes Schindelin211b5f92005-10-28 04:48:54 +020065 int len, name_len;
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070066
67 len = packet_read_line(in, buffer, sizeof(buffer));
68 if (!len)
69 break;
70 if (buffer[len-1] == '\n')
71 buffer[--len] = 0;
72
Tom Preston-Wernera8073282008-11-01 11:44:45 -070073 if (len > 4 && !prefixcmp(buffer, "ERR "))
74 die("remote error: %s", buffer + 4);
75
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070076 if (len < 42 || get_sha1_hex(buffer, old_sha1) || buffer[40] != ' ')
77 die("protocol error: expected sha/ref, got '%s'", buffer);
78 name = buffer + 41;
Junio C Hamano1a7141f2005-10-13 18:57:40 -070079
Johannes Schindelin211b5f92005-10-28 04:48:54 +020080 name_len = strlen(name);
81 if (len != name_len + 41) {
Jim Meyering8e0f7002008-01-31 18:26:32 +010082 free(server_capabilities);
Shawn Pearce9befac42006-09-02 00:16:31 -040083 server_capabilities = xstrdup(name + name_len + 1);
Johannes Schindelin211b5f92005-10-28 04:48:54 +020084 }
85
Junio C Hamano40c155f2008-09-09 01:27:09 -070086 if (extra_have &&
87 name_len == 5 && !memcmp(".have", name, 5)) {
88 add_extra_have(extra_have, old_sha1);
89 continue;
90 }
91
Linus Torvalds2718ff02006-07-04 12:29:10 -070092 if (!check_ref(name, name_len, flags))
Junio C Hamanocfee10a2005-12-25 23:18:37 -080093 continue;
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070094 if (nr_match && !path_match(name, nr_match, match))
95 continue;
René Scharfe59c69c02008-10-18 10:44:18 +020096 ref = alloc_ref(buffer + 41);
Shawn Pearcee7024962006-08-23 02:49:00 -040097 hashcpy(ref->old_sha1, old_sha1);
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070098 *list = ref;
99 list = &ref->next;
100 }
101 return list;
102}
103
Johannes Schindelin211b5f92005-10-28 04:48:54 +0200104int server_supports(const char *feature)
105{
Johannes Schindelin1f5881b2005-10-28 05:56:41 +0200106 return server_capabilities &&
107 strstr(server_capabilities, feature) != NULL;
Johannes Schindelin211b5f92005-10-28 04:48:54 +0200108}
109
Linus Torvalds013e7c72005-07-04 13:24:30 -0700110int path_match(const char *path, int nr, char **match)
111{
112 int i;
113 int pathlen = strlen(path);
114
115 for (i = 0; i < nr; i++) {
116 char *s = match[i];
117 int len = strlen(s);
118
119 if (!len || len > pathlen)
120 continue;
121 if (memcmp(path + pathlen - len, s, len))
122 continue;
123 if (pathlen > len && path[pathlen - len - 1] != '/')
124 continue;
125 *s = 0;
Junio C Hamano95460102006-05-11 15:28:44 -0700126 return (i + 1);
Linus Torvalds013e7c72005-07-04 13:24:30 -0700127 }
128 return 0;
129}
130
Linus Torvalds2386d652005-07-13 18:46:20 -0700131enum protocol {
132 PROTO_LOCAL = 1,
133 PROTO_SSH,
134 PROTO_GIT,
135};
136
137static enum protocol get_protocol(const char *name)
138{
139 if (!strcmp(name, "ssh"))
140 return PROTO_SSH;
141 if (!strcmp(name, "git"))
142 return PROTO_GIT;
Linus Torvaldsc05186c2005-10-14 17:14:56 -0700143 if (!strcmp(name, "git+ssh"))
144 return PROTO_SSH;
145 if (!strcmp(name, "ssh+git"))
146 return PROTO_SSH;
Linus Torvalds72a4f4b2007-08-01 10:03:37 -0700147 if (!strcmp(name, "file"))
148 return PROTO_LOCAL;
Linus Torvalds2386d652005-07-13 18:46:20 -0700149 die("I don't handle protocol '%s'", name);
150}
151
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400152#define STR_(s) # s
153#define STR(s) STR_(s)
Linus Torvalds2386d652005-07-13 18:46:20 -0700154
hpa49744d62005-09-28 16:52:21 -0700155#ifndef NO_IPV6
hpa4c505f72005-09-28 16:37:58 -0700156
Alex Riesenba505322007-05-23 23:34:27 +0200157static const char *ai_name(const struct addrinfo *ai)
158{
Benjamin Kramer785a9852009-04-24 14:16:41 +0200159 static char addr[NI_MAXHOST];
160 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, addr, sizeof(addr), NULL, 0,
161 NI_NUMERICHOST) != 0)
Alex Riesenba505322007-05-23 23:34:27 +0200162 strcpy(addr, "(unknown)");
Benjamin Kramer785a9852009-04-24 14:16:41 +0200163
Alex Riesenba505322007-05-23 23:34:27 +0200164 return addr;
165}
166
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500167/*
168 * Returns a connected socket() fd, or else die()s.
169 */
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300170static int git_tcp_connect_sock(char *host, int flags)
Linus Torvalds2386d652005-07-13 18:46:20 -0700171{
Petr Baudisac3bc6c2006-07-01 23:56:26 +0200172 int sockfd = -1, saved_errno = 0;
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400173 char *colon, *end;
Timo Hirvonen554fe202006-06-28 12:04:39 +0300174 const char *port = STR(DEFAULT_GIT_PORT);
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400175 struct addrinfo hints, *ai0, *ai;
176 int gai;
Alex Riesenba505322007-05-23 23:34:27 +0200177 int cnt = 0;
Linus Torvalds2386d652005-07-13 18:46:20 -0700178
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400179 if (host[0] == '[') {
180 end = strchr(host + 1, ']');
181 if (end) {
182 *end = 0;
183 end++;
184 host++;
185 } else
186 end = host;
187 } else
188 end = host;
189 colon = strchr(end, ':');
190
Linus Torvaldsce6f8e72005-07-23 11:10:21 -0700191 if (colon) {
192 *colon = 0;
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400193 port = colon + 1;
Linus Torvalds608d48b2007-03-27 09:50:20 -0700194 if (!*port)
195 port = "<none>";
Linus Torvaldsce6f8e72005-07-23 11:10:21 -0700196 }
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400197
198 memset(&hints, 0, sizeof(hints));
199 hints.ai_socktype = SOCK_STREAM;
200 hints.ai_protocol = IPPROTO_TCP;
201
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300202 if (flags & CONNECT_VERBOSE)
203 fprintf(stderr, "Looking up %s ... ", host);
204
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400205 gai = getaddrinfo(host, port, &hints, &ai);
206 if (gai)
Linus Torvalds608d48b2007-03-27 09:50:20 -0700207 die("Unable to look up %s (port %s) (%s)", host, port, gai_strerror(gai));
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400208
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300209 if (flags & CONNECT_VERBOSE)
210 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
211
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400212 for (ai0 = ai; ai; ai = ai->ai_next) {
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500213 sockfd = socket(ai->ai_family,
214 ai->ai_socktype, ai->ai_protocol);
Petr Baudisac3bc6c2006-07-01 23:56:26 +0200215 if (sockfd < 0) {
216 saved_errno = errno;
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400217 continue;
Petr Baudisac3bc6c2006-07-01 23:56:26 +0200218 }
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400219 if (connect(sockfd, ai->ai_addr, ai->ai_addrlen) < 0) {
Petr Baudisac3bc6c2006-07-01 23:56:26 +0200220 saved_errno = errno;
Alex Riesen7cbf2f22007-06-12 22:52:10 +0200221 fprintf(stderr, "%s[%d: %s]: errno=%s\n",
Alex Riesenba505322007-05-23 23:34:27 +0200222 host,
223 cnt,
224 ai_name(ai),
Alex Riesenba505322007-05-23 23:34:27 +0200225 strerror(saved_errno));
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400226 close(sockfd);
227 sockfd = -1;
228 continue;
Linus Torvalds2386d652005-07-13 18:46:20 -0700229 }
Alex Riesenba505322007-05-23 23:34:27 +0200230 if (flags & CONNECT_VERBOSE)
231 fprintf(stderr, "%s ", ai_name(ai));
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400232 break;
Linus Torvalds2386d652005-07-13 18:46:20 -0700233 }
234
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400235 freeaddrinfo(ai0);
Linus Torvalds2386d652005-07-13 18:46:20 -0700236
Linus Torvalds2386d652005-07-13 18:46:20 -0700237 if (sockfd < 0)
Petr Baudisac3bc6c2006-07-01 23:56:26 +0200238 die("unable to connect a socket (%s)", strerror(saved_errno));
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400239
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300240 if (flags & CONNECT_VERBOSE)
241 fprintf(stderr, "done.\n");
242
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500243 return sockfd;
Linus Torvalds2386d652005-07-13 18:46:20 -0700244}
245
hpa49744d62005-09-28 16:52:21 -0700246#else /* NO_IPV6 */
hpa4c505f72005-09-28 16:37:58 -0700247
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500248/*
249 * Returns a connected socket() fd, or else die()s.
250 */
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300251static int git_tcp_connect_sock(char *host, int flags)
hpa4c505f72005-09-28 16:37:58 -0700252{
Petr Baudisac3bc6c2006-07-01 23:56:26 +0200253 int sockfd = -1, saved_errno = 0;
hpa4c505f72005-09-28 16:37:58 -0700254 char *colon, *end;
255 char *port = STR(DEFAULT_GIT_PORT), *ep;
256 struct hostent *he;
257 struct sockaddr_in sa;
258 char **ap;
259 unsigned int nport;
Alex Riesenba505322007-05-23 23:34:27 +0200260 int cnt;
hpa4c505f72005-09-28 16:37:58 -0700261
262 if (host[0] == '[') {
263 end = strchr(host + 1, ']');
264 if (end) {
265 *end = 0;
266 end++;
267 host++;
268 } else
269 end = host;
270 } else
271 end = host;
272 colon = strchr(end, ':');
273
274 if (colon) {
275 *colon = 0;
276 port = colon + 1;
277 }
278
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300279 if (flags & CONNECT_VERBOSE)
280 fprintf(stderr, "Looking up %s ... ", host);
281
hpa4c505f72005-09-28 16:37:58 -0700282 he = gethostbyname(host);
283 if (!he)
284 die("Unable to look up %s (%s)", host, hstrerror(h_errno));
285 nport = strtoul(port, &ep, 10);
286 if ( ep == port || *ep ) {
287 /* Not numeric */
288 struct servent *se = getservbyname(port,"tcp");
289 if ( !se )
Alexander Potashevd7530702009-01-04 21:38:41 +0300290 die("Unknown port %s", port);
hpa4c505f72005-09-28 16:37:58 -0700291 nport = se->s_port;
292 }
293
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300294 if (flags & CONNECT_VERBOSE)
295 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
296
Alex Riesenba505322007-05-23 23:34:27 +0200297 for (cnt = 0, ap = he->h_addr_list; *ap; ap++, cnt++) {
hpa4c505f72005-09-28 16:37:58 -0700298 sockfd = socket(he->h_addrtype, SOCK_STREAM, 0);
Petr Baudisac3bc6c2006-07-01 23:56:26 +0200299 if (sockfd < 0) {
300 saved_errno = errno;
hpa4c505f72005-09-28 16:37:58 -0700301 continue;
Petr Baudisac3bc6c2006-07-01 23:56:26 +0200302 }
hpa4c505f72005-09-28 16:37:58 -0700303
304 memset(&sa, 0, sizeof sa);
305 sa.sin_family = he->h_addrtype;
Peter Anvin6573faf2005-09-28 17:26:44 -0700306 sa.sin_port = htons(nport);
Paul Sericec6164212005-11-22 07:54:23 -0600307 memcpy(&sa.sin_addr, *ap, he->h_length);
hpa4c505f72005-09-28 16:37:58 -0700308
309 if (connect(sockfd, (struct sockaddr *)&sa, sizeof sa) < 0) {
Petr Baudisac3bc6c2006-07-01 23:56:26 +0200310 saved_errno = errno;
Alex Riesen7cbf2f22007-06-12 22:52:10 +0200311 fprintf(stderr, "%s[%d: %s]: errno=%s\n",
Alex Riesenba505322007-05-23 23:34:27 +0200312 host,
313 cnt,
314 inet_ntoa(*(struct in_addr *)&sa.sin_addr),
Alex Riesenba505322007-05-23 23:34:27 +0200315 strerror(saved_errno));
hpa4c505f72005-09-28 16:37:58 -0700316 close(sockfd);
317 sockfd = -1;
318 continue;
319 }
Alex Riesenba505322007-05-23 23:34:27 +0200320 if (flags & CONNECT_VERBOSE)
321 fprintf(stderr, "%s ",
322 inet_ntoa(*(struct in_addr *)&sa.sin_addr));
hpa4c505f72005-09-28 16:37:58 -0700323 break;
324 }
325
326 if (sockfd < 0)
Petr Baudisac3bc6c2006-07-01 23:56:26 +0200327 die("unable to connect a socket (%s)", strerror(saved_errno));
hpa4c505f72005-09-28 16:37:58 -0700328
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300329 if (flags & CONNECT_VERBOSE)
330 fprintf(stderr, "done.\n");
331
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500332 return sockfd;
hpa4c505f72005-09-28 16:37:58 -0700333}
334
hpa49744d62005-09-28 16:52:21 -0700335#endif /* NO_IPV6 */
hpa4c505f72005-09-28 16:37:58 -0700336
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500337
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300338static void git_tcp_connect(int fd[2], char *host, int flags)
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500339{
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300340 int sockfd = git_tcp_connect_sock(host, flags);
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500341
342 fd[0] = sockfd;
Junio C Hamanoec587fd2007-01-21 17:10:51 -0800343 fd[1] = dup(sockfd);
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500344}
345
346
David Rientjes96f1e582006-08-15 10:23:48 -0700347static char *git_proxy_command;
Paul Collinsf8014772005-11-04 14:57:16 +0000348
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100349static int git_proxy_command_options(const char *var, const char *value,
350 void *cb)
Paul Collinsf8014772005-11-04 14:57:16 +0000351{
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800352 if (!strcmp(var, "core.gitproxy")) {
YOSHIFUJI Hideaki / 吉藤英明c3df8562005-11-22 12:18:23 +0900353 const char *for_pos;
354 int matchlen = -1;
355 int hostlen;
Erik Faye-Lund15112c92009-03-11 02:38:12 +0000356 const char *rhost_name = cb;
357 int rhost_len = strlen(rhost_name);
YOSHIFUJI Hideaki / 吉藤英明c3df8562005-11-22 12:18:23 +0900358
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800359 if (git_proxy_command)
Paul Collinsf8014772005-11-04 14:57:16 +0000360 return 0;
Junio C Hamanoc64b9ad2008-02-11 10:52:15 -0800361 if (!value)
362 return config_error_nonbool(var);
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800363 /* [core]
364 * ;# matches www.kernel.org as well
365 * gitproxy = netcatter-1 for kernel.org
366 * gitproxy = netcatter-2 for sample.xz
367 * gitproxy = netcatter-default
368 */
YOSHIFUJI Hideaki / 吉藤英明c3df8562005-11-22 12:18:23 +0900369 for_pos = strstr(value, " for ");
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800370 if (!for_pos)
371 /* matches everybody */
372 matchlen = strlen(value);
373 else {
374 hostlen = strlen(for_pos + 5);
375 if (rhost_len < hostlen)
376 matchlen = -1;
377 else if (!strncmp(for_pos + 5,
378 rhost_name + rhost_len - hostlen,
379 hostlen) &&
380 ((rhost_len == hostlen) ||
381 rhost_name[rhost_len - hostlen -1] == '.'))
382 matchlen = for_pos - value;
383 else
384 matchlen = -1;
Paul Collinsf8014772005-11-04 14:57:16 +0000385 }
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800386 if (0 <= matchlen) {
387 /* core.gitproxy = none for kernel.org */
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700388 if (matchlen == 4 &&
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800389 !memcmp(value, "none", 4))
390 matchlen = 0;
Pierre Habouzit182af832007-09-16 00:32:36 +0200391 git_proxy_command = xmemdupz(value, matchlen);
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800392 }
393 return 0;
Paul Collinsf8014772005-11-04 14:57:16 +0000394 }
395
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100396 return git_default_config(var, value, cb);
Paul Collinsf8014772005-11-04 14:57:16 +0000397}
398
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800399static int git_use_proxy(const char *host)
Paul Collinsf8014772005-11-04 14:57:16 +0000400{
401 git_proxy_command = getenv("GIT_PROXY_COMMAND");
Erik Faye-Lund15112c92009-03-11 02:38:12 +0000402 git_config(git_proxy_command_options, (void*)host);
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800403 return (git_proxy_command && *git_proxy_command);
Paul Collinsf8014772005-11-04 14:57:16 +0000404}
405
Junio C Hamanoc78963d2006-06-28 03:50:33 -0700406static void git_proxy_connect(int fd[2], char *host)
Paul Collinsf8014772005-11-04 14:57:16 +0000407{
Timo Hirvonen554fe202006-06-28 12:04:39 +0300408 const char *port = STR(DEFAULT_GIT_PORT);
Paul Collinsf8014772005-11-04 14:57:16 +0000409 char *colon, *end;
Shawn O. Pearce15a1c0122007-03-12 19:00:19 -0400410 const char *argv[4];
411 struct child_process proxy;
Paul Collinsf8014772005-11-04 14:57:16 +0000412
413 if (host[0] == '[') {
414 end = strchr(host + 1, ']');
415 if (end) {
416 *end = 0;
417 end++;
418 host++;
419 } else
420 end = host;
421 } else
422 end = host;
423 colon = strchr(end, ':');
424
425 if (colon) {
426 *colon = 0;
427 port = colon + 1;
428 }
429
Shawn O. Pearce15a1c0122007-03-12 19:00:19 -0400430 argv[0] = git_proxy_command;
431 argv[1] = host;
432 argv[2] = port;
433 argv[3] = NULL;
434 memset(&proxy, 0, sizeof(proxy));
435 proxy.argv = argv;
436 proxy.in = -1;
437 proxy.out = -1;
438 if (start_command(&proxy))
439 die("cannot start proxy %s", argv[0]);
440 fd[0] = proxy.out; /* read from proxy stdout */
441 fd[1] = proxy.in; /* write to proxy stdin */
Paul Collinsf8014772005-11-04 14:57:16 +0000442}
443
Christian Couder0f503d72006-09-11 07:04:50 +0200444#define MAX_CMD_LEN 1024
445
Linus Torvalds2af202b2009-06-18 10:28:43 -0700446static char *get_port(char *host)
Luben Tuikov2e776662007-09-01 02:36:31 -0700447{
448 char *end;
449 char *p = strchr(host, ':');
450
451 if (p) {
René Scharfe8f148252008-12-21 02:12:11 +0100452 long port = strtol(p + 1, &end, 10);
453 if (end != p + 1 && *end == '\0' && 0 <= port && port < 65536) {
Luben Tuikov2e776662007-09-01 02:36:31 -0700454 *p = '\0';
455 return p+1;
456 }
457 }
458
459 return NULL;
460}
461
Johannes Schindelinfb32c912008-02-10 03:06:57 +0000462static struct child_process no_fork;
463
Linus Torvaldsf7192592005-07-04 11:57:58 -0700464/*
Johannes Schindelinfb32c912008-02-10 03:06:57 +0000465 * This returns a dummy child_process if the transport protocol does not
466 * need fork(2), or a struct child_process object if it does. Once done,
467 * finish the connection with finish_connect() with the value returned from
468 * this function (it is safe to call finish_connect() with NULL to support
469 * the former case).
Franck Bui-Huuf42a5c42006-09-12 11:00:13 +0200470 *
Johannes Schindelinfb32c912008-02-10 03:06:57 +0000471 * If it returns, the connect is successful; it just dies on errors (this
472 * will hopefully be changed in a libification effort, to return NULL when
473 * the connection failed).
Linus Torvaldsf7192592005-07-04 11:57:58 -0700474 */
Daniel Barkalow45773702007-10-29 21:05:40 -0400475struct child_process *git_connect(int fd[2], const char *url_orig,
Johannes Sixt98158e92007-10-19 21:47:53 +0200476 const char *prog, int flags)
Linus Torvaldsf7192592005-07-04 11:57:58 -0700477{
Daniel Barkalow45773702007-10-29 21:05:40 -0400478 char *url = xstrdup(url_orig);
Benjamin Kramer8e76bf32009-03-13 13:51:33 +0100479 char *host, *path;
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900480 char *end;
481 int c;
Johannes Sixt98158e92007-10-19 21:47:53 +0200482 struct child_process *conn;
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100483 enum protocol protocol = PROTO_LOCAL;
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500484 int free_path = 0;
Luben Tuikov2e776662007-09-01 02:36:31 -0700485 char *port = NULL;
Johannes Sixtf364cb82007-10-19 21:47:54 +0200486 const char **arg;
487 struct strbuf cmd;
Linus Torvaldsf7192592005-07-04 11:57:58 -0700488
Junio C Hamanof0b73672006-06-19 18:25:21 -0700489 /* Without this we cannot rely on waitpid() to tell
490 * what happened to our children.
491 */
492 signal(SIGCHLD, SIG_DFL);
493
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100494 host = strstr(url, "://");
Brian Gianforcaroeeefa7c2009-09-01 01:35:10 -0400495 if (host) {
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100496 *host = '\0';
497 protocol = get_protocol(url);
498 host += 3;
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900499 c = '/';
500 } else {
Linus Torvaldsf7192592005-07-04 11:57:58 -0700501 host = url;
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900502 c = ':';
503 }
504
Ilari Liusvaara9aa50532010-01-26 20:24:42 +0200505 /*
506 * Don't do destructive transforms with git:// as that
Junio C Hamano9517e6b2010-02-03 21:23:18 -0800507 * protocol code does '[]' unwrapping of its own.
Ilari Liusvaara9aa50532010-01-26 20:24:42 +0200508 */
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900509 if (host[0] == '[') {
510 end = strchr(host + 1, ']');
511 if (end) {
Ilari Liusvaara9aa50532010-01-26 20:24:42 +0200512 if (protocol != PROTO_GIT) {
513 *end = 0;
514 host++;
515 }
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900516 end++;
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900517 } else
518 end = host;
519 } else
520 end = host;
521
522 path = strchr(end, c);
Johannes Sixtbe501812007-11-30 22:51:10 +0100523 if (path && !has_dos_drive_prefix(end)) {
Linus Torvalds72a4f4b2007-08-01 10:03:37 -0700524 if (c == ':') {
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100525 protocol = PROTO_SSH;
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900526 *path++ = '\0';
Linus Torvalds72a4f4b2007-08-01 10:03:37 -0700527 }
528 } else
529 path = end;
Linus Torvalds2386d652005-07-13 18:46:20 -0700530
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100531 if (!path || !*path)
532 die("No path specified. See 'man git-pull' for valid url syntax");
533
534 /*
535 * null-terminate hostname and point path to ~ for URL's like this:
536 * ssh://host.xz/~user/repo
537 */
538 if (protocol != PROTO_LOCAL && host != url) {
539 char *ptr = path;
540 if (path[1] == '~')
541 path++;
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500542 else {
Shawn Pearce9befac42006-09-02 00:16:31 -0400543 path = xstrdup(ptr);
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500544 free_path = 1;
545 }
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100546
547 *ptr = '\0';
548 }
549
Luben Tuikov2e776662007-09-01 02:36:31 -0700550 /*
551 * Add support for ssh port: ssh://host.xy:<port>/...
552 */
553 if (protocol == PROTO_SSH && host != url)
554 port = get_port(host);
555
Paul Collinsf8014772005-11-04 14:57:16 +0000556 if (protocol == PROTO_GIT) {
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500557 /* These underlying connection commands die() if they
558 * cannot connect.
559 */
Shawn Pearce9befac42006-09-02 00:16:31 -0400560 char *target_host = xstrdup(host);
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800561 if (git_use_proxy(host))
Junio C Hamanoc78963d2006-06-28 03:50:33 -0700562 git_proxy_connect(fd, host);
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500563 else
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300564 git_tcp_connect(fd, host, flags);
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500565 /*
566 * Separate original protocol components prog and path
Shawn O. Pearce73bb33a2009-06-04 18:33:32 -0700567 * from extended host header with a NUL byte.
568 *
569 * Note: Do not add any other headers here! Doing so
570 * will cause older git-daemon servers to crash.
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500571 */
572 packet_write(fd[1],
573 "%s %s%chost=%s%c",
574 prog, path, 0,
575 target_host, 0);
576 free(target_host);
Daniel Barkalow45773702007-10-29 21:05:40 -0400577 free(url);
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500578 if (free_path)
579 free(path);
Johannes Schindelinfb32c912008-02-10 03:06:57 +0000580 return &no_fork;
Paul Collinsf8014772005-11-04 14:57:16 +0000581 }
Linus Torvalds2386d652005-07-13 18:46:20 -0700582
Johannes Sixt98158e92007-10-19 21:47:53 +0200583 conn = xcalloc(1, sizeof(*conn));
Christian Couder0f503d72006-09-11 07:04:50 +0200584
Johannes Sixtf364cb82007-10-19 21:47:54 +0200585 strbuf_init(&cmd, MAX_CMD_LEN);
586 strbuf_addstr(&cmd, prog);
587 strbuf_addch(&cmd, ' ');
588 sq_quote_buf(&cmd, path);
589 if (cmd.len >= MAX_CMD_LEN)
590 die("command line too long");
Christian Couder0f503d72006-09-11 07:04:50 +0200591
Johannes Sixtf364cb82007-10-19 21:47:54 +0200592 conn->in = conn->out = -1;
Edward Z. Yang36ad53f2009-05-31 18:15:21 +0200593 conn->argv = arg = xcalloc(7, sizeof(*arg));
Johannes Sixtf364cb82007-10-19 21:47:54 +0200594 if (protocol == PROTO_SSH) {
595 const char *ssh = getenv("GIT_SSH");
Edward Z. Yang36ad53f2009-05-31 18:15:21 +0200596 int putty = ssh && strcasestr(ssh, "plink");
Johannes Sixtf364cb82007-10-19 21:47:54 +0200597 if (!ssh) ssh = "ssh";
Luben Tuikov2e776662007-09-01 02:36:31 -0700598
Johannes Sixtf364cb82007-10-19 21:47:54 +0200599 *arg++ = ssh;
Edward Z. Yang36ad53f2009-05-31 18:15:21 +0200600 if (putty && !strcasestr(ssh, "tortoiseplink"))
601 *arg++ = "-batch";
Johannes Sixtf364cb82007-10-19 21:47:54 +0200602 if (port) {
Edward Z. Yang36ad53f2009-05-31 18:15:21 +0200603 /* P is for PuTTY, p is for OpenSSH */
604 *arg++ = putty ? "-P" : "-p";
Johannes Sixtf364cb82007-10-19 21:47:54 +0200605 *arg++ = port;
Martin Sivak4852f722005-08-03 17:15:42 +0200606 }
Johannes Sixtf364cb82007-10-19 21:47:54 +0200607 *arg++ = host;
Matt Draisey016fb482006-01-19 15:58:03 -0500608 }
Johannes Sixtf364cb82007-10-19 21:47:54 +0200609 else {
Giuseppe Bilotta48a7c1c2010-02-25 00:34:14 +0100610 /* remove repo-local variables from the environment */
611 conn->env = local_repo_env;
Johannes Sixt4cfb2a42010-01-25 13:32:44 +0100612 conn->use_shell = 1;
Johannes Sixtf364cb82007-10-19 21:47:54 +0200613 }
614 *arg++ = cmd.buf;
615 *arg = NULL;
616
617 if (start_command(conn))
618 die("unable to fork");
619
620 fd[0] = conn->out; /* read from child's stdout */
621 fd[1] = conn->in; /* write to child's stdin */
622 strbuf_release(&cmd);
Daniel Barkalow45773702007-10-29 21:05:40 -0400623 free(url);
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500624 if (free_path)
625 free(path);
Johannes Sixt98158e92007-10-19 21:47:53 +0200626 return conn;
Linus Torvaldsf7192592005-07-04 11:57:58 -0700627}
628
Johannes Sixt98158e92007-10-19 21:47:53 +0200629int finish_connect(struct child_process *conn)
Linus Torvaldsf7192592005-07-04 11:57:58 -0700630{
Johannes Sixtf364cb82007-10-19 21:47:54 +0200631 int code;
Johannes Schindelinfb32c912008-02-10 03:06:57 +0000632 if (!conn || conn == &no_fork)
Franck Bui-Huuf42a5c42006-09-12 11:00:13 +0200633 return 0;
634
Johannes Sixtf364cb82007-10-19 21:47:54 +0200635 code = finish_command(conn);
636 free(conn->argv);
Johannes Sixt98158e92007-10-19 21:47:53 +0200637 free(conn);
Johannes Sixtf364cb82007-10-19 21:47:54 +0200638 return code;
Linus Torvaldsf7192592005-07-04 11:57:58 -0700639}