blob: 49e56ba35a645359b0d7c1f7bbc9e2108b3424d9 [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"
Jeff King9d2e9422010-05-23 05:19:44 -04008#include "url.h"
Linus Torvaldsf7192592005-07-04 11:57:58 -07009
David Rientjes96f1e582006-08-15 10:23:48 -070010static char *server_capabilities;
Johannes Schindelin211b5f92005-10-28 04:48:54 +020011
Linus Torvalds2718ff02006-07-04 12:29:10 -070012static int check_ref(const char *name, int len, unsigned int flags)
13{
14 if (!flags)
15 return 1;
16
Andy Whitcroftc41e20b2006-09-05 20:00:17 +010017 if (len < 5 || memcmp(name, "refs/", 5))
Linus Torvalds2718ff02006-07-04 12:29:10 -070018 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 */
Michael Haggerty8d9c5012011-09-15 23:10:25 +020025 if ((flags & REF_NORMAL) && check_refname_format(name, 0))
Linus Torvalds2718ff02006-07-04 12:29:10 -070026 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
Daniel Barkalow45773702007-10-29 21:05:40 -040040int check_ref_type(const struct ref *ref, int flags)
41{
42 return check_ref(ref->name, strlen(ref->name), flags);
43}
44
Junio C Hamano40c155f2008-09-09 01:27:09 -070045static 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
Heiko Voigt46284dd2012-06-19 20:24:50 +020052static 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
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070062/*
63 * Read all the refs from the other end
64 */
Junio C Hamano1a7141f2005-10-13 18:57:40 -070065struct ref **get_remote_heads(int in, struct ref **list,
Junio C Hamano40c155f2008-09-09 01:27:09 -070066 unsigned int flags,
67 struct extra_have_objects *extra_have)
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070068{
Heiko Voigt46284dd2012-06-19 20:24:50 +020069 int got_at_least_one_head = 0;
70
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070071 *list = NULL;
72 for (;;) {
73 struct ref *ref;
74 unsigned char old_sha1[20];
75 static char buffer[1000];
76 char *name;
Johannes Schindelin211b5f92005-10-28 04:48:54 +020077 int len, name_len;
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070078
Heiko Voigt46284dd2012-06-19 20:24:50 +020079 len = packet_read(in, buffer, sizeof(buffer));
80 if (len < 0)
81 die_initial_contact(got_at_least_one_head);
82
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070083 if (!len)
84 break;
85 if (buffer[len-1] == '\n')
86 buffer[--len] = 0;
87
Tom Preston-Wernera8073282008-11-01 11:44:45 -070088 if (len > 4 && !prefixcmp(buffer, "ERR "))
89 die("remote error: %s", buffer + 4);
90
Linus Torvaldsd1c133f2005-07-16 13:55:50 -070091 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;
Junio C Hamano1a7141f2005-10-13 18:57:40 -070094
Johannes Schindelin211b5f92005-10-28 04:48:54 +020095 name_len = strlen(name);
96 if (len != name_len + 41) {
Jim Meyering8e0f7002008-01-31 18:26:32 +010097 free(server_capabilities);
Shawn Pearce9befac42006-09-02 00:16:31 -040098 server_capabilities = xstrdup(name + name_len + 1);
Johannes Schindelin211b5f92005-10-28 04:48:54 +020099 }
100
Junio C Hamano40c155f2008-09-09 01:27:09 -0700101 if (extra_have &&
102 name_len == 5 && !memcmp(".have", name, 5)) {
103 add_extra_have(extra_have, old_sha1);
104 continue;
105 }
106
Linus Torvalds2718ff02006-07-04 12:29:10 -0700107 if (!check_ref(name, name_len, flags))
Junio C Hamanocfee10a2005-12-25 23:18:37 -0800108 continue;
René Scharfe59c69c02008-10-18 10:44:18 +0200109 ref = alloc_ref(buffer + 41);
Shawn Pearcee7024962006-08-23 02:49:00 -0400110 hashcpy(ref->old_sha1, old_sha1);
Linus Torvaldsd1c133f2005-07-16 13:55:50 -0700111 *list = ref;
112 list = &ref->next;
Heiko Voigt46284dd2012-06-19 20:24:50 +0200113 got_at_least_one_head = 1;
Linus Torvaldsd1c133f2005-07-16 13:55:50 -0700114 }
115 return list;
116}
117
Jeff King94427102012-08-13 21:59:27 -0400118const char *parse_feature_value(const char *feature_list, const char *feature, int *lenp)
Junio C Hamanof47182c2012-01-08 22:06:19 +0100119{
120 int len;
121
122 if (!feature_list)
123 return NULL;
124
125 len = strlen(feature);
126 while (*feature_list) {
127 const char *found = strstr(feature_list, feature);
128 if (!found)
129 return NULL;
Jeff King94427102012-08-13 21:59:27 -0400130 if (feature_list == found || isspace(found[-1])) {
131 const char *value = found + len;
132 /* feature with no value (e.g., "thin-pack") */
133 if (!*value || isspace(*value)) {
134 if (lenp)
135 *lenp = 0;
136 return value;
137 }
138 /* feature with a value (e.g., "agent=git/1.2.3") */
139 else if (*value == '=') {
140 value++;
141 if (lenp)
142 *lenp = strcspn(value, " \t\n");
143 return value;
144 }
145 /*
146 * otherwise we matched a substring of another feature;
147 * keep looking
148 */
149 }
Junio C Hamanof47182c2012-01-08 22:06:19 +0100150 feature_list = found + 1;
151 }
152 return NULL;
Johannes Schindelin211b5f92005-10-28 04:48:54 +0200153}
154
Jeff King94427102012-08-13 21:59:27 -0400155int parse_feature_request(const char *feature_list, const char *feature)
156{
157 return !!parse_feature_value(feature_list, feature, NULL);
158}
159
160const char *server_feature_value(const char *feature, int *len)
161{
162 return parse_feature_value(server_capabilities, feature, len);
163}
164
165int server_supports(const char *feature)
166{
167 return !!server_feature_value(feature, NULL);
168}
169
Linus Torvalds2386d652005-07-13 18:46:20 -0700170enum protocol {
171 PROTO_LOCAL = 1,
172 PROTO_SSH,
Gary V. Vaughan4b055482010-05-14 09:31:35 +0000173 PROTO_GIT
Linus Torvalds2386d652005-07-13 18:46:20 -0700174};
175
176static enum protocol get_protocol(const char *name)
177{
178 if (!strcmp(name, "ssh"))
179 return PROTO_SSH;
180 if (!strcmp(name, "git"))
181 return PROTO_GIT;
Linus Torvaldsc05186c2005-10-14 17:14:56 -0700182 if (!strcmp(name, "git+ssh"))
183 return PROTO_SSH;
184 if (!strcmp(name, "ssh+git"))
185 return PROTO_SSH;
Linus Torvalds72a4f4b2007-08-01 10:03:37 -0700186 if (!strcmp(name, "file"))
187 return PROTO_LOCAL;
Linus Torvalds2386d652005-07-13 18:46:20 -0700188 die("I don't handle protocol '%s'", name);
189}
190
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400191#define STR_(s) # s
192#define STR(s) STR_(s)
Linus Torvalds2386d652005-07-13 18:46:20 -0700193
Michael Lukashov72a534d2010-02-17 20:56:02 +0000194static void get_host_and_port(char **host, const char **port)
195{
196 char *colon, *end;
197
198 if (*host[0] == '[') {
199 end = strchr(*host + 1, ']');
200 if (end) {
201 *end = 0;
202 end++;
203 (*host)++;
204 } else
205 end = *host;
206 } else
207 end = *host;
208 colon = strchr(end, ':');
209
210 if (colon) {
211 *colon = 0;
212 *port = colon + 1;
213 }
214}
215
Eric Wonge47a8582011-12-06 04:39:36 +0000216static void enable_keepalive(int sockfd)
217{
218 int ka = 1;
219
220 if (setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, &ka, sizeof(ka)) < 0)
221 fprintf(stderr, "unable to set SO_KEEPALIVE on socket: %s\n",
222 strerror(errno));
223}
224
hpa49744d62005-09-28 16:52:21 -0700225#ifndef NO_IPV6
hpa4c505f72005-09-28 16:37:58 -0700226
Alex Riesenba505322007-05-23 23:34:27 +0200227static const char *ai_name(const struct addrinfo *ai)
228{
Benjamin Kramer785a9852009-04-24 14:16:41 +0200229 static char addr[NI_MAXHOST];
230 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, addr, sizeof(addr), NULL, 0,
231 NI_NUMERICHOST) != 0)
Alex Riesenba505322007-05-23 23:34:27 +0200232 strcpy(addr, "(unknown)");
Benjamin Kramer785a9852009-04-24 14:16:41 +0200233
Alex Riesenba505322007-05-23 23:34:27 +0200234 return addr;
235}
236
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500237/*
238 * Returns a connected socket() fd, or else die()s.
239 */
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300240static int git_tcp_connect_sock(char *host, int flags)
Linus Torvalds2386d652005-07-13 18:46:20 -0700241{
Dave Zarzycki63a995b2011-07-12 09:28:34 -0700242 struct strbuf error_message = STRBUF_INIT;
243 int sockfd = -1;
Timo Hirvonen554fe202006-06-28 12:04:39 +0300244 const char *port = STR(DEFAULT_GIT_PORT);
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400245 struct addrinfo hints, *ai0, *ai;
246 int gai;
Alex Riesenba505322007-05-23 23:34:27 +0200247 int cnt = 0;
Linus Torvalds2386d652005-07-13 18:46:20 -0700248
Michael Lukashov72a534d2010-02-17 20:56:02 +0000249 get_host_and_port(&host, &port);
250 if (!*port)
251 port = "<none>";
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400252
253 memset(&hints, 0, sizeof(hints));
254 hints.ai_socktype = SOCK_STREAM;
255 hints.ai_protocol = IPPROTO_TCP;
256
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300257 if (flags & CONNECT_VERBOSE)
258 fprintf(stderr, "Looking up %s ... ", host);
259
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400260 gai = getaddrinfo(host, port, &hints, &ai);
261 if (gai)
Linus Torvalds608d48b2007-03-27 09:50:20 -0700262 die("Unable to look up %s (port %s) (%s)", host, port, gai_strerror(gai));
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400263
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300264 if (flags & CONNECT_VERBOSE)
265 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
266
Erik Faye-Lunde08afec2011-08-01 13:16:09 +0200267 for (ai0 = ai; ai; ai = ai->ai_next, cnt++) {
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500268 sockfd = socket(ai->ai_family,
269 ai->ai_socktype, ai->ai_protocol);
Dave Zarzycki63a995b2011-07-12 09:28:34 -0700270 if ((sockfd < 0) ||
271 (connect(sockfd, ai->ai_addr, ai->ai_addrlen) < 0)) {
272 strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n",
273 host, cnt, ai_name(ai), strerror(errno));
274 if (0 <= sockfd)
275 close(sockfd);
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400276 sockfd = -1;
277 continue;
Linus Torvalds2386d652005-07-13 18:46:20 -0700278 }
Alex Riesenba505322007-05-23 23:34:27 +0200279 if (flags & CONNECT_VERBOSE)
280 fprintf(stderr, "%s ", ai_name(ai));
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400281 break;
Linus Torvalds2386d652005-07-13 18:46:20 -0700282 }
283
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400284 freeaddrinfo(ai0);
Linus Torvalds2386d652005-07-13 18:46:20 -0700285
Linus Torvalds2386d652005-07-13 18:46:20 -0700286 if (sockfd < 0)
Dave Zarzycki63a995b2011-07-12 09:28:34 -0700287 die("unable to connect to %s:\n%s", host, error_message.buf);
YOSHIFUJI Hideaki5ba88442005-07-21 09:10:36 -0400288
Eric Wonge47a8582011-12-06 04:39:36 +0000289 enable_keepalive(sockfd);
290
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300291 if (flags & CONNECT_VERBOSE)
292 fprintf(stderr, "done.\n");
293
Dave Zarzycki63a995b2011-07-12 09:28:34 -0700294 strbuf_release(&error_message);
295
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500296 return sockfd;
Linus Torvalds2386d652005-07-13 18:46:20 -0700297}
298
hpa49744d62005-09-28 16:52:21 -0700299#else /* NO_IPV6 */
hpa4c505f72005-09-28 16:37:58 -0700300
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500301/*
302 * Returns a connected socket() fd, or else die()s.
303 */
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300304static int git_tcp_connect_sock(char *host, int flags)
hpa4c505f72005-09-28 16:37:58 -0700305{
Erik Faye-Lund7203a2d2011-08-01 13:16:10 +0200306 struct strbuf error_message = STRBUF_INIT;
307 int sockfd = -1;
Michael Lukashov72a534d2010-02-17 20:56:02 +0000308 const char *port = STR(DEFAULT_GIT_PORT);
309 char *ep;
hpa4c505f72005-09-28 16:37:58 -0700310 struct hostent *he;
311 struct sockaddr_in sa;
312 char **ap;
313 unsigned int nport;
Alex Riesenba505322007-05-23 23:34:27 +0200314 int cnt;
hpa4c505f72005-09-28 16:37:58 -0700315
Michael Lukashov72a534d2010-02-17 20:56:02 +0000316 get_host_and_port(&host, &port);
hpa4c505f72005-09-28 16:37:58 -0700317
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300318 if (flags & CONNECT_VERBOSE)
319 fprintf(stderr, "Looking up %s ... ", host);
320
hpa4c505f72005-09-28 16:37:58 -0700321 he = gethostbyname(host);
322 if (!he)
323 die("Unable to look up %s (%s)", host, hstrerror(h_errno));
324 nport = strtoul(port, &ep, 10);
325 if ( ep == port || *ep ) {
326 /* Not numeric */
327 struct servent *se = getservbyname(port,"tcp");
328 if ( !se )
Alexander Potashevd7530702009-01-04 21:38:41 +0300329 die("Unknown port %s", port);
hpa4c505f72005-09-28 16:37:58 -0700330 nport = se->s_port;
331 }
332
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300333 if (flags & CONNECT_VERBOSE)
334 fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port);
335
Alex Riesenba505322007-05-23 23:34:27 +0200336 for (cnt = 0, ap = he->h_addr_list; *ap; ap++, cnt++) {
hpa4c505f72005-09-28 16:37:58 -0700337 memset(&sa, 0, sizeof sa);
338 sa.sin_family = he->h_addrtype;
Peter Anvin6573faf2005-09-28 17:26:44 -0700339 sa.sin_port = htons(nport);
Paul Sericec6164212005-11-22 07:54:23 -0600340 memcpy(&sa.sin_addr, *ap, he->h_length);
hpa4c505f72005-09-28 16:37:58 -0700341
Erik Faye-Lund7203a2d2011-08-01 13:16:10 +0200342 sockfd = socket(he->h_addrtype, SOCK_STREAM, 0);
343 if ((sockfd < 0) ||
344 connect(sockfd, (struct sockaddr *)&sa, sizeof sa) < 0) {
345 strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n",
Alex Riesenba505322007-05-23 23:34:27 +0200346 host,
347 cnt,
348 inet_ntoa(*(struct in_addr *)&sa.sin_addr),
Erik Faye-Lund7203a2d2011-08-01 13:16:10 +0200349 strerror(errno));
350 if (0 <= sockfd)
351 close(sockfd);
hpa4c505f72005-09-28 16:37:58 -0700352 sockfd = -1;
353 continue;
354 }
Alex Riesenba505322007-05-23 23:34:27 +0200355 if (flags & CONNECT_VERBOSE)
356 fprintf(stderr, "%s ",
357 inet_ntoa(*(struct in_addr *)&sa.sin_addr));
hpa4c505f72005-09-28 16:37:58 -0700358 break;
359 }
360
361 if (sockfd < 0)
Erik Faye-Lund7203a2d2011-08-01 13:16:10 +0200362 die("unable to connect to %s:\n%s", host, error_message.buf);
hpa4c505f72005-09-28 16:37:58 -0700363
Eric Wonge47a8582011-12-06 04:39:36 +0000364 enable_keepalive(sockfd);
365
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300366 if (flags & CONNECT_VERBOSE)
367 fprintf(stderr, "done.\n");
368
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500369 return sockfd;
hpa4c505f72005-09-28 16:37:58 -0700370}
371
hpa49744d62005-09-28 16:52:21 -0700372#endif /* NO_IPV6 */
hpa4c505f72005-09-28 16:37:58 -0700373
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500374
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300375static void git_tcp_connect(int fd[2], char *host, int flags)
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500376{
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300377 int sockfd = git_tcp_connect_sock(host, flags);
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500378
379 fd[0] = sockfd;
Junio C Hamanoec587fd2007-01-21 17:10:51 -0800380 fd[1] = dup(sockfd);
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500381}
382
383
David Rientjes96f1e582006-08-15 10:23:48 -0700384static char *git_proxy_command;
Paul Collinsf8014772005-11-04 14:57:16 +0000385
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100386static int git_proxy_command_options(const char *var, const char *value,
387 void *cb)
Paul Collinsf8014772005-11-04 14:57:16 +0000388{
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800389 if (!strcmp(var, "core.gitproxy")) {
YOSHIFUJI Hideaki / 吉藤英明c3df8562005-11-22 12:18:23 +0900390 const char *for_pos;
391 int matchlen = -1;
392 int hostlen;
Erik Faye-Lund15112c92009-03-11 02:38:12 +0000393 const char *rhost_name = cb;
394 int rhost_len = strlen(rhost_name);
YOSHIFUJI Hideaki / 吉藤英明c3df8562005-11-22 12:18:23 +0900395
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800396 if (git_proxy_command)
Paul Collinsf8014772005-11-04 14:57:16 +0000397 return 0;
Junio C Hamanoc64b9ad2008-02-11 10:52:15 -0800398 if (!value)
399 return config_error_nonbool(var);
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800400 /* [core]
401 * ;# matches www.kernel.org as well
402 * gitproxy = netcatter-1 for kernel.org
403 * gitproxy = netcatter-2 for sample.xz
404 * gitproxy = netcatter-default
405 */
YOSHIFUJI Hideaki / 吉藤英明c3df8562005-11-22 12:18:23 +0900406 for_pos = strstr(value, " for ");
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800407 if (!for_pos)
408 /* matches everybody */
409 matchlen = strlen(value);
410 else {
411 hostlen = strlen(for_pos + 5);
412 if (rhost_len < hostlen)
413 matchlen = -1;
414 else if (!strncmp(for_pos + 5,
415 rhost_name + rhost_len - hostlen,
416 hostlen) &&
417 ((rhost_len == hostlen) ||
418 rhost_name[rhost_len - hostlen -1] == '.'))
419 matchlen = for_pos - value;
420 else
421 matchlen = -1;
Paul Collinsf8014772005-11-04 14:57:16 +0000422 }
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800423 if (0 <= matchlen) {
424 /* core.gitproxy = none for kernel.org */
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700425 if (matchlen == 4 &&
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800426 !memcmp(value, "none", 4))
427 matchlen = 0;
Pierre Habouzit182af832007-09-16 00:32:36 +0200428 git_proxy_command = xmemdupz(value, matchlen);
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800429 }
430 return 0;
Paul Collinsf8014772005-11-04 14:57:16 +0000431 }
432
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100433 return git_default_config(var, value, cb);
Paul Collinsf8014772005-11-04 14:57:16 +0000434}
435
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800436static int git_use_proxy(const char *host)
Paul Collinsf8014772005-11-04 14:57:16 +0000437{
438 git_proxy_command = getenv("GIT_PROXY_COMMAND");
Erik Faye-Lund15112c92009-03-11 02:38:12 +0000439 git_config(git_proxy_command_options, (void*)host);
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800440 return (git_proxy_command && *git_proxy_command);
Paul Collinsf8014772005-11-04 14:57:16 +0000441}
442
Jeff King5cbf8242011-05-16 02:46:07 -0400443static struct child_process *git_proxy_connect(int fd[2], char *host)
Paul Collinsf8014772005-11-04 14:57:16 +0000444{
Timo Hirvonen554fe202006-06-28 12:04:39 +0300445 const char *port = STR(DEFAULT_GIT_PORT);
Jeff King5cbf8242011-05-16 02:46:07 -0400446 const char **argv;
447 struct child_process *proxy;
Paul Collinsf8014772005-11-04 14:57:16 +0000448
Michael Lukashov72a534d2010-02-17 20:56:02 +0000449 get_host_and_port(&host, &port);
Paul Collinsf8014772005-11-04 14:57:16 +0000450
Jeff King5cbf8242011-05-16 02:46:07 -0400451 argv = xmalloc(sizeof(*argv) * 4);
Shawn O. Pearce15a1c0122007-03-12 19:00:19 -0400452 argv[0] = git_proxy_command;
453 argv[1] = host;
454 argv[2] = port;
455 argv[3] = NULL;
Jeff King5cbf8242011-05-16 02:46:07 -0400456 proxy = xcalloc(1, sizeof(*proxy));
457 proxy->argv = argv;
458 proxy->in = -1;
459 proxy->out = -1;
460 if (start_command(proxy))
Shawn O. Pearce15a1c0122007-03-12 19:00:19 -0400461 die("cannot start proxy %s", argv[0]);
Jeff King5cbf8242011-05-16 02:46:07 -0400462 fd[0] = proxy->out; /* read from proxy stdout */
463 fd[1] = proxy->in; /* write to proxy stdin */
464 return proxy;
Paul Collinsf8014772005-11-04 14:57:16 +0000465}
466
Christian Couder0f503d72006-09-11 07:04:50 +0200467#define MAX_CMD_LEN 1024
468
Linus Torvalds2af202b2009-06-18 10:28:43 -0700469static char *get_port(char *host)
Luben Tuikov2e776662007-09-01 02:36:31 -0700470{
471 char *end;
472 char *p = strchr(host, ':');
473
474 if (p) {
René Scharfe8f148252008-12-21 02:12:11 +0100475 long port = strtol(p + 1, &end, 10);
476 if (end != p + 1 && *end == '\0' && 0 <= port && port < 65536) {
Luben Tuikov2e776662007-09-01 02:36:31 -0700477 *p = '\0';
478 return p+1;
479 }
480 }
481
482 return NULL;
483}
484
Johannes Schindelinfb32c912008-02-10 03:06:57 +0000485static struct child_process no_fork;
486
Linus Torvaldsf7192592005-07-04 11:57:58 -0700487/*
Johannes Schindelinfb32c912008-02-10 03:06:57 +0000488 * This returns a dummy child_process if the transport protocol does not
489 * need fork(2), or a struct child_process object if it does. Once done,
490 * finish the connection with finish_connect() with the value returned from
491 * this function (it is safe to call finish_connect() with NULL to support
492 * the former case).
Franck Bui-Huuf42a5c42006-09-12 11:00:13 +0200493 *
Johannes Schindelinfb32c912008-02-10 03:06:57 +0000494 * If it returns, the connect is successful; it just dies on errors (this
495 * will hopefully be changed in a libification effort, to return NULL when
496 * the connection failed).
Linus Torvaldsf7192592005-07-04 11:57:58 -0700497 */
Daniel Barkalow45773702007-10-29 21:05:40 -0400498struct child_process *git_connect(int fd[2], const char *url_orig,
Johannes Sixt98158e92007-10-19 21:47:53 +0200499 const char *prog, int flags)
Linus Torvaldsf7192592005-07-04 11:57:58 -0700500{
Jeff King9d2e9422010-05-23 05:19:44 -0400501 char *url;
Benjamin Kramer8e76bf32009-03-13 13:51:33 +0100502 char *host, *path;
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900503 char *end;
504 int c;
Jeff King5cbf8242011-05-16 02:46:07 -0400505 struct child_process *conn = &no_fork;
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100506 enum protocol protocol = PROTO_LOCAL;
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500507 int free_path = 0;
Luben Tuikov2e776662007-09-01 02:36:31 -0700508 char *port = NULL;
Johannes Sixtf364cb82007-10-19 21:47:54 +0200509 const char **arg;
510 struct strbuf cmd;
Linus Torvaldsf7192592005-07-04 11:57:58 -0700511
Junio C Hamanof0b73672006-06-19 18:25:21 -0700512 /* Without this we cannot rely on waitpid() to tell
513 * what happened to our children.
514 */
515 signal(SIGCHLD, SIG_DFL);
516
Jeff King9d2e9422010-05-23 05:19:44 -0400517 if (is_url(url_orig))
518 url = url_decode(url_orig);
519 else
520 url = xstrdup(url_orig);
521
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100522 host = strstr(url, "://");
Brian Gianforcaroeeefa7c2009-09-01 01:35:10 -0400523 if (host) {
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100524 *host = '\0';
525 protocol = get_protocol(url);
526 host += 3;
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900527 c = '/';
528 } else {
Linus Torvaldsf7192592005-07-04 11:57:58 -0700529 host = url;
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900530 c = ':';
531 }
532
Ilari Liusvaara9aa50532010-01-26 20:24:42 +0200533 /*
534 * Don't do destructive transforms with git:// as that
Junio C Hamano9517e6b2010-02-03 21:23:18 -0800535 * protocol code does '[]' unwrapping of its own.
Ilari Liusvaara9aa50532010-01-26 20:24:42 +0200536 */
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900537 if (host[0] == '[') {
538 end = strchr(host + 1, ']');
539 if (end) {
Ilari Liusvaara9aa50532010-01-26 20:24:42 +0200540 if (protocol != PROTO_GIT) {
541 *end = 0;
542 host++;
543 }
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900544 end++;
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900545 } else
546 end = host;
547 } else
548 end = host;
549
550 path = strchr(end, c);
Johannes Sixtbe501812007-11-30 22:51:10 +0100551 if (path && !has_dos_drive_prefix(end)) {
Linus Torvalds72a4f4b2007-08-01 10:03:37 -0700552 if (c == ':') {
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100553 protocol = PROTO_SSH;
YOSHIFUJI Hideaki / 吉藤英明356bece2005-12-21 19:23:42 +0900554 *path++ = '\0';
Linus Torvalds72a4f4b2007-08-01 10:03:37 -0700555 }
556 } else
557 path = end;
Linus Torvalds2386d652005-07-13 18:46:20 -0700558
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100559 if (!path || !*path)
560 die("No path specified. See 'man git-pull' for valid url syntax");
561
562 /*
563 * null-terminate hostname and point path to ~ for URL's like this:
564 * ssh://host.xz/~user/repo
565 */
566 if (protocol != PROTO_LOCAL && host != url) {
567 char *ptr = path;
568 if (path[1] == '~')
569 path++;
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500570 else {
Shawn Pearce9befac42006-09-02 00:16:31 -0400571 path = xstrdup(ptr);
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500572 free_path = 1;
573 }
Andreas Ericssonfaea9cc2005-11-17 20:37:14 +0100574
575 *ptr = '\0';
576 }
577
Luben Tuikov2e776662007-09-01 02:36:31 -0700578 /*
579 * Add support for ssh port: ssh://host.xy:<port>/...
580 */
581 if (protocol == PROTO_SSH && host != url)
René Scharfe7acf4382012-06-12 20:46:56 +0200582 port = get_port(end);
Luben Tuikov2e776662007-09-01 02:36:31 -0700583
Paul Collinsf8014772005-11-04 14:57:16 +0000584 if (protocol == PROTO_GIT) {
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500585 /* These underlying connection commands die() if they
586 * cannot connect.
587 */
Shawn Pearce9befac42006-09-02 00:16:31 -0400588 char *target_host = xstrdup(host);
Junio C Hamanoe814bc42005-11-19 03:48:56 -0800589 if (git_use_proxy(host))
Jeff King5cbf8242011-05-16 02:46:07 -0400590 conn = git_proxy_connect(fd, host);
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500591 else
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300592 git_tcp_connect(fd, host, flags);
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500593 /*
594 * Separate original protocol components prog and path
Shawn O. Pearce73bb33a2009-06-04 18:33:32 -0700595 * from extended host header with a NUL byte.
596 *
597 * Note: Do not add any other headers here! Doing so
598 * will cause older git-daemon servers to crash.
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500599 */
600 packet_write(fd[1],
601 "%s %s%chost=%s%c",
602 prog, path, 0,
603 target_host, 0);
604 free(target_host);
Daniel Barkalow45773702007-10-29 21:05:40 -0400605 free(url);
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500606 if (free_path)
607 free(path);
Jeff King5cbf8242011-05-16 02:46:07 -0400608 return conn;
Paul Collinsf8014772005-11-04 14:57:16 +0000609 }
Linus Torvalds2386d652005-07-13 18:46:20 -0700610
Johannes Sixt98158e92007-10-19 21:47:53 +0200611 conn = xcalloc(1, sizeof(*conn));
Christian Couder0f503d72006-09-11 07:04:50 +0200612
Johannes Sixtf364cb82007-10-19 21:47:54 +0200613 strbuf_init(&cmd, MAX_CMD_LEN);
614 strbuf_addstr(&cmd, prog);
615 strbuf_addch(&cmd, ' ');
616 sq_quote_buf(&cmd, path);
617 if (cmd.len >= MAX_CMD_LEN)
618 die("command line too long");
Christian Couder0f503d72006-09-11 07:04:50 +0200619
Johannes Sixtf364cb82007-10-19 21:47:54 +0200620 conn->in = conn->out = -1;
Edward Z. Yang36ad53f2009-05-31 18:15:21 +0200621 conn->argv = arg = xcalloc(7, sizeof(*arg));
Johannes Sixtf364cb82007-10-19 21:47:54 +0200622 if (protocol == PROTO_SSH) {
623 const char *ssh = getenv("GIT_SSH");
Edward Z. Yang36ad53f2009-05-31 18:15:21 +0200624 int putty = ssh && strcasestr(ssh, "plink");
Johannes Sixtf364cb82007-10-19 21:47:54 +0200625 if (!ssh) ssh = "ssh";
Luben Tuikov2e776662007-09-01 02:36:31 -0700626
Johannes Sixtf364cb82007-10-19 21:47:54 +0200627 *arg++ = ssh;
Edward Z. Yang36ad53f2009-05-31 18:15:21 +0200628 if (putty && !strcasestr(ssh, "tortoiseplink"))
629 *arg++ = "-batch";
Johannes Sixtf364cb82007-10-19 21:47:54 +0200630 if (port) {
Edward Z. Yang36ad53f2009-05-31 18:15:21 +0200631 /* P is for PuTTY, p is for OpenSSH */
632 *arg++ = putty ? "-P" : "-p";
Johannes Sixtf364cb82007-10-19 21:47:54 +0200633 *arg++ = port;
Martin Sivak4852f722005-08-03 17:15:42 +0200634 }
Johannes Sixtf364cb82007-10-19 21:47:54 +0200635 *arg++ = host;
Matt Draisey016fb482006-01-19 15:58:03 -0500636 }
Johannes Sixtf364cb82007-10-19 21:47:54 +0200637 else {
Giuseppe Bilotta48a7c1c2010-02-25 00:34:14 +0100638 /* remove repo-local variables from the environment */
639 conn->env = local_repo_env;
Johannes Sixt4cfb2a42010-01-25 13:32:44 +0100640 conn->use_shell = 1;
Johannes Sixtf364cb82007-10-19 21:47:54 +0200641 }
642 *arg++ = cmd.buf;
643 *arg = NULL;
644
645 if (start_command(conn))
646 die("unable to fork");
647
648 fd[0] = conn->out; /* read from child's stdout */
649 fd[1] = conn->in; /* write to child's stdin */
650 strbuf_release(&cmd);
Daniel Barkalow45773702007-10-29 21:05:40 -0400651 free(url);
Serge E. Hallynda2a95b2006-04-17 10:14:47 -0500652 if (free_path)
653 free(path);
Johannes Sixt98158e92007-10-19 21:47:53 +0200654 return conn;
Linus Torvaldsf7192592005-07-04 11:57:58 -0700655}
656
Jeff King7ffe8532011-05-16 02:52:11 -0400657int git_connection_is_socket(struct child_process *conn)
658{
659 return conn == &no_fork;
660}
661
Johannes Sixt98158e92007-10-19 21:47:53 +0200662int finish_connect(struct child_process *conn)
Linus Torvaldsf7192592005-07-04 11:57:58 -0700663{
Johannes Sixtf364cb82007-10-19 21:47:54 +0200664 int code;
Jeff King7ffe8532011-05-16 02:52:11 -0400665 if (!conn || git_connection_is_socket(conn))
Franck Bui-Huuf42a5c42006-09-12 11:00:13 +0200666 return 0;
667
Johannes Sixtf364cb82007-10-19 21:47:54 +0200668 code = finish_command(conn);
669 free(conn->argv);
Johannes Sixt98158e92007-10-19 21:47:53 +0200670 free(conn);
Johannes Sixtf364cb82007-10-19 21:47:54 +0200671 return code;
Linus Torvaldsf7192592005-07-04 11:57:58 -0700672}