Jason Riedy | 731043f | 2006-01-25 12:38:36 -0800 | [diff] [blame] | 1 | #include "git-compat-util.h" |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 2 | #include "cache.h" |
Linus Torvalds | 41cb748 | 2005-07-05 15:44:09 -0700 | [diff] [blame] | 3 | #include "pkt-line.h" |
Junio C Hamano | b10d0ec | 2005-07-08 00:02:52 -0700 | [diff] [blame] | 4 | #include "quote.h" |
Junio C Hamano | 6abf5c0 | 2005-10-16 00:25:26 -0700 | [diff] [blame] | 5 | #include "refs.h" |
Shawn O. Pearce | 15a1c012 | 2007-03-12 19:00:19 -0400 | [diff] [blame] | 6 | #include "run-command.h" |
Daniel Barkalow | 6b62816 | 2007-05-12 11:45:59 -0400 | [diff] [blame] | 7 | #include "remote.h" |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 8 | |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 9 | static char *server_capabilities; |
Johannes Schindelin | 211b5f9 | 2005-10-28 04:48:54 +0200 | [diff] [blame] | 10 | |
Linus Torvalds | 2718ff0 | 2006-07-04 12:29:10 -0700 | [diff] [blame] | 11 | static int check_ref(const char *name, int len, unsigned int flags) |
| 12 | { |
| 13 | if (!flags) |
| 14 | return 1; |
| 15 | |
Andy Whitcroft | c41e20b | 2006-09-05 20:00:17 +0100 | [diff] [blame] | 16 | if (len < 5 || memcmp(name, "refs/", 5)) |
Linus Torvalds | 2718ff0 | 2006-07-04 12:29:10 -0700 | [diff] [blame] | 17 | 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 Barkalow | 4577370 | 2007-10-29 21:05:40 -0400 | [diff] [blame] | 39 | int check_ref_type(const struct ref *ref, int flags) |
| 40 | { |
| 41 | return check_ref(ref->name, strlen(ref->name), flags); |
| 42 | } |
| 43 | |
Junio C Hamano | 40c155f | 2008-09-09 01:27:09 -0700 | [diff] [blame] | 44 | static 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 Torvalds | d1c133f | 2005-07-16 13:55:50 -0700 | [diff] [blame] | 51 | /* |
| 52 | * Read all the refs from the other end |
| 53 | */ |
Junio C Hamano | 1a7141f | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 54 | struct ref **get_remote_heads(int in, struct ref **list, |
Linus Torvalds | 2718ff0 | 2006-07-04 12:29:10 -0700 | [diff] [blame] | 55 | int nr_match, char **match, |
Junio C Hamano | 40c155f | 2008-09-09 01:27:09 -0700 | [diff] [blame] | 56 | unsigned int flags, |
| 57 | struct extra_have_objects *extra_have) |
Linus Torvalds | d1c133f | 2005-07-16 13:55:50 -0700 | [diff] [blame] | 58 | { |
| 59 | *list = NULL; |
| 60 | for (;;) { |
| 61 | struct ref *ref; |
| 62 | unsigned char old_sha1[20]; |
| 63 | static char buffer[1000]; |
| 64 | char *name; |
Johannes Schindelin | 211b5f9 | 2005-10-28 04:48:54 +0200 | [diff] [blame] | 65 | int len, name_len; |
Linus Torvalds | d1c133f | 2005-07-16 13:55:50 -0700 | [diff] [blame] | 66 | |
| 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-Werner | a807328 | 2008-11-01 11:44:45 -0700 | [diff] [blame] | 73 | if (len > 4 && !prefixcmp(buffer, "ERR ")) |
| 74 | die("remote error: %s", buffer + 4); |
| 75 | |
Linus Torvalds | d1c133f | 2005-07-16 13:55:50 -0700 | [diff] [blame] | 76 | 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 Hamano | 1a7141f | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 79 | |
Johannes Schindelin | 211b5f9 | 2005-10-28 04:48:54 +0200 | [diff] [blame] | 80 | name_len = strlen(name); |
| 81 | if (len != name_len + 41) { |
Jim Meyering | 8e0f700 | 2008-01-31 18:26:32 +0100 | [diff] [blame] | 82 | free(server_capabilities); |
Shawn Pearce | 9befac4 | 2006-09-02 00:16:31 -0400 | [diff] [blame] | 83 | server_capabilities = xstrdup(name + name_len + 1); |
Johannes Schindelin | 211b5f9 | 2005-10-28 04:48:54 +0200 | [diff] [blame] | 84 | } |
| 85 | |
Junio C Hamano | 40c155f | 2008-09-09 01:27:09 -0700 | [diff] [blame] | 86 | if (extra_have && |
| 87 | name_len == 5 && !memcmp(".have", name, 5)) { |
| 88 | add_extra_have(extra_have, old_sha1); |
| 89 | continue; |
| 90 | } |
| 91 | |
Linus Torvalds | 2718ff0 | 2006-07-04 12:29:10 -0700 | [diff] [blame] | 92 | if (!check_ref(name, name_len, flags)) |
Junio C Hamano | cfee10a | 2005-12-25 23:18:37 -0800 | [diff] [blame] | 93 | continue; |
Linus Torvalds | d1c133f | 2005-07-16 13:55:50 -0700 | [diff] [blame] | 94 | if (nr_match && !path_match(name, nr_match, match)) |
| 95 | continue; |
René Scharfe | 59c69c0 | 2008-10-18 10:44:18 +0200 | [diff] [blame] | 96 | ref = alloc_ref(buffer + 41); |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 97 | hashcpy(ref->old_sha1, old_sha1); |
Linus Torvalds | d1c133f | 2005-07-16 13:55:50 -0700 | [diff] [blame] | 98 | *list = ref; |
| 99 | list = &ref->next; |
| 100 | } |
| 101 | return list; |
| 102 | } |
| 103 | |
Johannes Schindelin | 211b5f9 | 2005-10-28 04:48:54 +0200 | [diff] [blame] | 104 | int server_supports(const char *feature) |
| 105 | { |
Johannes Schindelin | 1f5881b | 2005-10-28 05:56:41 +0200 | [diff] [blame] | 106 | return server_capabilities && |
| 107 | strstr(server_capabilities, feature) != NULL; |
Johannes Schindelin | 211b5f9 | 2005-10-28 04:48:54 +0200 | [diff] [blame] | 108 | } |
| 109 | |
Linus Torvalds | 41cb748 | 2005-07-05 15:44:09 -0700 | [diff] [blame] | 110 | int get_ack(int fd, unsigned char *result_sha1) |
| 111 | { |
| 112 | static char line[1000]; |
| 113 | int len = packet_read_line(fd, line, sizeof(line)); |
| 114 | |
| 115 | if (!len) |
Junio C Hamano | 7e44c93 | 2008-08-31 09:39:19 -0700 | [diff] [blame] | 116 | die("git fetch-pack: expected ACK/NAK, got EOF"); |
Linus Torvalds | 41cb748 | 2005-07-05 15:44:09 -0700 | [diff] [blame] | 117 | if (line[len-1] == '\n') |
| 118 | line[--len] = 0; |
| 119 | if (!strcmp(line, "NAK")) |
| 120 | return 0; |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 121 | if (!prefixcmp(line, "ACK ")) { |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 122 | if (!get_sha1_hex(line+4, result_sha1)) { |
| 123 | if (strstr(line+45, "continue")) |
| 124 | return 2; |
Linus Torvalds | 41cb748 | 2005-07-05 15:44:09 -0700 | [diff] [blame] | 125 | return 1; |
Johannes Schindelin | c4c86f0 | 2005-10-28 04:50:26 +0200 | [diff] [blame] | 126 | } |
Linus Torvalds | 41cb748 | 2005-07-05 15:44:09 -0700 | [diff] [blame] | 127 | } |
Junio C Hamano | 7e44c93 | 2008-08-31 09:39:19 -0700 | [diff] [blame] | 128 | die("git fetch_pack: expected ACK/NAK, got '%s'", line); |
Linus Torvalds | 41cb748 | 2005-07-05 15:44:09 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Linus Torvalds | 013e7c7 | 2005-07-04 13:24:30 -0700 | [diff] [blame] | 131 | int path_match(const char *path, int nr, char **match) |
| 132 | { |
| 133 | int i; |
| 134 | int pathlen = strlen(path); |
| 135 | |
| 136 | for (i = 0; i < nr; i++) { |
| 137 | char *s = match[i]; |
| 138 | int len = strlen(s); |
| 139 | |
| 140 | if (!len || len > pathlen) |
| 141 | continue; |
| 142 | if (memcmp(path + pathlen - len, s, len)) |
| 143 | continue; |
| 144 | if (pathlen > len && path[pathlen - len - 1] != '/') |
| 145 | continue; |
| 146 | *s = 0; |
Junio C Hamano | 9546010 | 2006-05-11 15:28:44 -0700 | [diff] [blame] | 147 | return (i + 1); |
Linus Torvalds | 013e7c7 | 2005-07-04 13:24:30 -0700 | [diff] [blame] | 148 | } |
| 149 | return 0; |
| 150 | } |
| 151 | |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 152 | enum protocol { |
| 153 | PROTO_LOCAL = 1, |
| 154 | PROTO_SSH, |
| 155 | PROTO_GIT, |
| 156 | }; |
| 157 | |
| 158 | static enum protocol get_protocol(const char *name) |
| 159 | { |
| 160 | if (!strcmp(name, "ssh")) |
| 161 | return PROTO_SSH; |
| 162 | if (!strcmp(name, "git")) |
| 163 | return PROTO_GIT; |
Linus Torvalds | c05186c | 2005-10-14 17:14:56 -0700 | [diff] [blame] | 164 | if (!strcmp(name, "git+ssh")) |
| 165 | return PROTO_SSH; |
| 166 | if (!strcmp(name, "ssh+git")) |
| 167 | return PROTO_SSH; |
Linus Torvalds | 72a4f4b | 2007-08-01 10:03:37 -0700 | [diff] [blame] | 168 | if (!strcmp(name, "file")) |
| 169 | return PROTO_LOCAL; |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 170 | die("I don't handle protocol '%s'", name); |
| 171 | } |
| 172 | |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 173 | #define STR_(s) # s |
| 174 | #define STR(s) STR_(s) |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 175 | |
hpa | 49744d6 | 2005-09-28 16:52:21 -0700 | [diff] [blame] | 176 | #ifndef NO_IPV6 |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 177 | |
Alex Riesen | ba50532 | 2007-05-23 23:34:27 +0200 | [diff] [blame] | 178 | static const char *ai_name(const struct addrinfo *ai) |
| 179 | { |
| 180 | static char addr[INET_ADDRSTRLEN]; |
| 181 | if ( AF_INET == ai->ai_family ) { |
| 182 | struct sockaddr_in *in; |
| 183 | in = (struct sockaddr_in *)ai->ai_addr; |
| 184 | inet_ntop(ai->ai_family, &in->sin_addr, addr, sizeof(addr)); |
| 185 | } else if ( AF_INET6 == ai->ai_family ) { |
| 186 | struct sockaddr_in6 *in; |
| 187 | in = (struct sockaddr_in6 *)ai->ai_addr; |
| 188 | inet_ntop(ai->ai_family, &in->sin6_addr, addr, sizeof(addr)); |
| 189 | } else { |
| 190 | strcpy(addr, "(unknown)"); |
| 191 | } |
| 192 | return addr; |
| 193 | } |
| 194 | |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 195 | /* |
| 196 | * Returns a connected socket() fd, or else die()s. |
| 197 | */ |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 198 | static int git_tcp_connect_sock(char *host, int flags) |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 199 | { |
Petr Baudis | ac3bc6c | 2006-07-01 23:56:26 +0200 | [diff] [blame] | 200 | int sockfd = -1, saved_errno = 0; |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 201 | char *colon, *end; |
Timo Hirvonen | 554fe20 | 2006-06-28 12:04:39 +0300 | [diff] [blame] | 202 | const char *port = STR(DEFAULT_GIT_PORT); |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 203 | struct addrinfo hints, *ai0, *ai; |
| 204 | int gai; |
Alex Riesen | ba50532 | 2007-05-23 23:34:27 +0200 | [diff] [blame] | 205 | int cnt = 0; |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 206 | |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 207 | if (host[0] == '[') { |
| 208 | end = strchr(host + 1, ']'); |
| 209 | if (end) { |
| 210 | *end = 0; |
| 211 | end++; |
| 212 | host++; |
| 213 | } else |
| 214 | end = host; |
| 215 | } else |
| 216 | end = host; |
| 217 | colon = strchr(end, ':'); |
| 218 | |
Linus Torvalds | ce6f8e7 | 2005-07-23 11:10:21 -0700 | [diff] [blame] | 219 | if (colon) { |
| 220 | *colon = 0; |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 221 | port = colon + 1; |
Linus Torvalds | 608d48b | 2007-03-27 09:50:20 -0700 | [diff] [blame] | 222 | if (!*port) |
| 223 | port = "<none>"; |
Linus Torvalds | ce6f8e7 | 2005-07-23 11:10:21 -0700 | [diff] [blame] | 224 | } |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 225 | |
| 226 | memset(&hints, 0, sizeof(hints)); |
| 227 | hints.ai_socktype = SOCK_STREAM; |
| 228 | hints.ai_protocol = IPPROTO_TCP; |
| 229 | |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 230 | if (flags & CONNECT_VERBOSE) |
| 231 | fprintf(stderr, "Looking up %s ... ", host); |
| 232 | |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 233 | gai = getaddrinfo(host, port, &hints, &ai); |
| 234 | if (gai) |
Linus Torvalds | 608d48b | 2007-03-27 09:50:20 -0700 | [diff] [blame] | 235 | die("Unable to look up %s (port %s) (%s)", host, port, gai_strerror(gai)); |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 236 | |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 237 | if (flags & CONNECT_VERBOSE) |
| 238 | fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port); |
| 239 | |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 240 | for (ai0 = ai; ai; ai = ai->ai_next) { |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 241 | sockfd = socket(ai->ai_family, |
| 242 | ai->ai_socktype, ai->ai_protocol); |
Petr Baudis | ac3bc6c | 2006-07-01 23:56:26 +0200 | [diff] [blame] | 243 | if (sockfd < 0) { |
| 244 | saved_errno = errno; |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 245 | continue; |
Petr Baudis | ac3bc6c | 2006-07-01 23:56:26 +0200 | [diff] [blame] | 246 | } |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 247 | if (connect(sockfd, ai->ai_addr, ai->ai_addrlen) < 0) { |
Petr Baudis | ac3bc6c | 2006-07-01 23:56:26 +0200 | [diff] [blame] | 248 | saved_errno = errno; |
Alex Riesen | 7cbf2f2 | 2007-06-12 22:52:10 +0200 | [diff] [blame] | 249 | fprintf(stderr, "%s[%d: %s]: errno=%s\n", |
Alex Riesen | ba50532 | 2007-05-23 23:34:27 +0200 | [diff] [blame] | 250 | host, |
| 251 | cnt, |
| 252 | ai_name(ai), |
Alex Riesen | ba50532 | 2007-05-23 23:34:27 +0200 | [diff] [blame] | 253 | strerror(saved_errno)); |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 254 | close(sockfd); |
| 255 | sockfd = -1; |
| 256 | continue; |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 257 | } |
Alex Riesen | ba50532 | 2007-05-23 23:34:27 +0200 | [diff] [blame] | 258 | if (flags & CONNECT_VERBOSE) |
| 259 | fprintf(stderr, "%s ", ai_name(ai)); |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 260 | break; |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 261 | } |
| 262 | |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 263 | freeaddrinfo(ai0); |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 264 | |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 265 | if (sockfd < 0) |
Petr Baudis | ac3bc6c | 2006-07-01 23:56:26 +0200 | [diff] [blame] | 266 | die("unable to connect a socket (%s)", strerror(saved_errno)); |
YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 09:10:36 -0400 | [diff] [blame] | 267 | |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 268 | if (flags & CONNECT_VERBOSE) |
| 269 | fprintf(stderr, "done.\n"); |
| 270 | |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 271 | return sockfd; |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 272 | } |
| 273 | |
hpa | 49744d6 | 2005-09-28 16:52:21 -0700 | [diff] [blame] | 274 | #else /* NO_IPV6 */ |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 275 | |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 276 | /* |
| 277 | * Returns a connected socket() fd, or else die()s. |
| 278 | */ |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 279 | static int git_tcp_connect_sock(char *host, int flags) |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 280 | { |
Petr Baudis | ac3bc6c | 2006-07-01 23:56:26 +0200 | [diff] [blame] | 281 | int sockfd = -1, saved_errno = 0; |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 282 | char *colon, *end; |
| 283 | char *port = STR(DEFAULT_GIT_PORT), *ep; |
| 284 | struct hostent *he; |
| 285 | struct sockaddr_in sa; |
| 286 | char **ap; |
| 287 | unsigned int nport; |
Alex Riesen | ba50532 | 2007-05-23 23:34:27 +0200 | [diff] [blame] | 288 | int cnt; |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 289 | |
| 290 | if (host[0] == '[') { |
| 291 | end = strchr(host + 1, ']'); |
| 292 | if (end) { |
| 293 | *end = 0; |
| 294 | end++; |
| 295 | host++; |
| 296 | } else |
| 297 | end = host; |
| 298 | } else |
| 299 | end = host; |
| 300 | colon = strchr(end, ':'); |
| 301 | |
| 302 | if (colon) { |
| 303 | *colon = 0; |
| 304 | port = colon + 1; |
| 305 | } |
| 306 | |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 307 | if (flags & CONNECT_VERBOSE) |
| 308 | fprintf(stderr, "Looking up %s ... ", host); |
| 309 | |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 310 | he = gethostbyname(host); |
| 311 | if (!he) |
| 312 | die("Unable to look up %s (%s)", host, hstrerror(h_errno)); |
| 313 | nport = strtoul(port, &ep, 10); |
| 314 | if ( ep == port || *ep ) { |
| 315 | /* Not numeric */ |
| 316 | struct servent *se = getservbyname(port,"tcp"); |
| 317 | if ( !se ) |
Alexander Potashev | d753070 | 2009-01-04 21:38:41 +0300 | [diff] [blame] | 318 | die("Unknown port %s", port); |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 319 | nport = se->s_port; |
| 320 | } |
| 321 | |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 322 | if (flags & CONNECT_VERBOSE) |
| 323 | fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port); |
| 324 | |
Alex Riesen | ba50532 | 2007-05-23 23:34:27 +0200 | [diff] [blame] | 325 | for (cnt = 0, ap = he->h_addr_list; *ap; ap++, cnt++) { |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 326 | sockfd = socket(he->h_addrtype, SOCK_STREAM, 0); |
Petr Baudis | ac3bc6c | 2006-07-01 23:56:26 +0200 | [diff] [blame] | 327 | if (sockfd < 0) { |
| 328 | saved_errno = errno; |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 329 | continue; |
Petr Baudis | ac3bc6c | 2006-07-01 23:56:26 +0200 | [diff] [blame] | 330 | } |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 331 | |
| 332 | memset(&sa, 0, sizeof sa); |
| 333 | sa.sin_family = he->h_addrtype; |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 334 | sa.sin_port = htons(nport); |
Paul Serice | c616421 | 2005-11-22 07:54:23 -0600 | [diff] [blame] | 335 | memcpy(&sa.sin_addr, *ap, he->h_length); |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 336 | |
| 337 | if (connect(sockfd, (struct sockaddr *)&sa, sizeof sa) < 0) { |
Petr Baudis | ac3bc6c | 2006-07-01 23:56:26 +0200 | [diff] [blame] | 338 | saved_errno = errno; |
Alex Riesen | 7cbf2f2 | 2007-06-12 22:52:10 +0200 | [diff] [blame] | 339 | fprintf(stderr, "%s[%d: %s]: errno=%s\n", |
Alex Riesen | ba50532 | 2007-05-23 23:34:27 +0200 | [diff] [blame] | 340 | host, |
| 341 | cnt, |
| 342 | inet_ntoa(*(struct in_addr *)&sa.sin_addr), |
Alex Riesen | ba50532 | 2007-05-23 23:34:27 +0200 | [diff] [blame] | 343 | strerror(saved_errno)); |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 344 | close(sockfd); |
| 345 | sockfd = -1; |
| 346 | continue; |
| 347 | } |
Alex Riesen | ba50532 | 2007-05-23 23:34:27 +0200 | [diff] [blame] | 348 | if (flags & CONNECT_VERBOSE) |
| 349 | fprintf(stderr, "%s ", |
| 350 | inet_ntoa(*(struct in_addr *)&sa.sin_addr)); |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 351 | break; |
| 352 | } |
| 353 | |
| 354 | if (sockfd < 0) |
Petr Baudis | ac3bc6c | 2006-07-01 23:56:26 +0200 | [diff] [blame] | 355 | die("unable to connect a socket (%s)", strerror(saved_errno)); |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 356 | |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 357 | if (flags & CONNECT_VERBOSE) |
| 358 | fprintf(stderr, "done.\n"); |
| 359 | |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 360 | return sockfd; |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 361 | } |
| 362 | |
hpa | 49744d6 | 2005-09-28 16:52:21 -0700 | [diff] [blame] | 363 | #endif /* NO_IPV6 */ |
hpa | 4c505f7 | 2005-09-28 16:37:58 -0700 | [diff] [blame] | 364 | |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 365 | |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 366 | static void git_tcp_connect(int fd[2], char *host, int flags) |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 367 | { |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 368 | int sockfd = git_tcp_connect_sock(host, flags); |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 369 | |
| 370 | fd[0] = sockfd; |
Junio C Hamano | ec587fd | 2007-01-21 17:10:51 -0800 | [diff] [blame] | 371 | fd[1] = dup(sockfd); |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 375 | static char *git_proxy_command; |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 376 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 377 | static int git_proxy_command_options(const char *var, const char *value, |
| 378 | void *cb) |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 379 | { |
Junio C Hamano | e814bc4 | 2005-11-19 03:48:56 -0800 | [diff] [blame] | 380 | if (!strcmp(var, "core.gitproxy")) { |
YOSHIFUJI Hideaki / 吉藤英明 | c3df856 | 2005-11-22 12:18:23 +0900 | [diff] [blame] | 381 | const char *for_pos; |
| 382 | int matchlen = -1; |
| 383 | int hostlen; |
Erik Faye-Lund | 15112c9 | 2009-03-11 02:38:12 +0000 | [diff] [blame] | 384 | const char *rhost_name = cb; |
| 385 | int rhost_len = strlen(rhost_name); |
YOSHIFUJI Hideaki / 吉藤英明 | c3df856 | 2005-11-22 12:18:23 +0900 | [diff] [blame] | 386 | |
Junio C Hamano | e814bc4 | 2005-11-19 03:48:56 -0800 | [diff] [blame] | 387 | if (git_proxy_command) |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 388 | return 0; |
Junio C Hamano | c64b9ad | 2008-02-11 10:52:15 -0800 | [diff] [blame] | 389 | if (!value) |
| 390 | return config_error_nonbool(var); |
Junio C Hamano | e814bc4 | 2005-11-19 03:48:56 -0800 | [diff] [blame] | 391 | /* [core] |
| 392 | * ;# matches www.kernel.org as well |
| 393 | * gitproxy = netcatter-1 for kernel.org |
| 394 | * gitproxy = netcatter-2 for sample.xz |
| 395 | * gitproxy = netcatter-default |
| 396 | */ |
YOSHIFUJI Hideaki / 吉藤英明 | c3df856 | 2005-11-22 12:18:23 +0900 | [diff] [blame] | 397 | for_pos = strstr(value, " for "); |
Junio C Hamano | e814bc4 | 2005-11-19 03:48:56 -0800 | [diff] [blame] | 398 | if (!for_pos) |
| 399 | /* matches everybody */ |
| 400 | matchlen = strlen(value); |
| 401 | else { |
| 402 | hostlen = strlen(for_pos + 5); |
| 403 | if (rhost_len < hostlen) |
| 404 | matchlen = -1; |
| 405 | else if (!strncmp(for_pos + 5, |
| 406 | rhost_name + rhost_len - hostlen, |
| 407 | hostlen) && |
| 408 | ((rhost_len == hostlen) || |
| 409 | rhost_name[rhost_len - hostlen -1] == '.')) |
| 410 | matchlen = for_pos - value; |
| 411 | else |
| 412 | matchlen = -1; |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 413 | } |
Junio C Hamano | e814bc4 | 2005-11-19 03:48:56 -0800 | [diff] [blame] | 414 | if (0 <= matchlen) { |
| 415 | /* core.gitproxy = none for kernel.org */ |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 416 | if (matchlen == 4 && |
Junio C Hamano | e814bc4 | 2005-11-19 03:48:56 -0800 | [diff] [blame] | 417 | !memcmp(value, "none", 4)) |
| 418 | matchlen = 0; |
Pierre Habouzit | 182af83 | 2007-09-16 00:32:36 +0200 | [diff] [blame] | 419 | git_proxy_command = xmemdupz(value, matchlen); |
Junio C Hamano | e814bc4 | 2005-11-19 03:48:56 -0800 | [diff] [blame] | 420 | } |
| 421 | return 0; |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 422 | } |
| 423 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 424 | return git_default_config(var, value, cb); |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 425 | } |
| 426 | |
Junio C Hamano | e814bc4 | 2005-11-19 03:48:56 -0800 | [diff] [blame] | 427 | static int git_use_proxy(const char *host) |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 428 | { |
| 429 | git_proxy_command = getenv("GIT_PROXY_COMMAND"); |
Erik Faye-Lund | 15112c9 | 2009-03-11 02:38:12 +0000 | [diff] [blame] | 430 | git_config(git_proxy_command_options, (void*)host); |
Junio C Hamano | e814bc4 | 2005-11-19 03:48:56 -0800 | [diff] [blame] | 431 | return (git_proxy_command && *git_proxy_command); |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Junio C Hamano | c78963d | 2006-06-28 03:50:33 -0700 | [diff] [blame] | 434 | static void git_proxy_connect(int fd[2], char *host) |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 435 | { |
Timo Hirvonen | 554fe20 | 2006-06-28 12:04:39 +0300 | [diff] [blame] | 436 | const char *port = STR(DEFAULT_GIT_PORT); |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 437 | char *colon, *end; |
Shawn O. Pearce | 15a1c012 | 2007-03-12 19:00:19 -0400 | [diff] [blame] | 438 | const char *argv[4]; |
| 439 | struct child_process proxy; |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 440 | |
| 441 | if (host[0] == '[') { |
| 442 | end = strchr(host + 1, ']'); |
| 443 | if (end) { |
| 444 | *end = 0; |
| 445 | end++; |
| 446 | host++; |
| 447 | } else |
| 448 | end = host; |
| 449 | } else |
| 450 | end = host; |
| 451 | colon = strchr(end, ':'); |
| 452 | |
| 453 | if (colon) { |
| 454 | *colon = 0; |
| 455 | port = colon + 1; |
| 456 | } |
| 457 | |
Shawn O. Pearce | 15a1c012 | 2007-03-12 19:00:19 -0400 | [diff] [blame] | 458 | argv[0] = git_proxy_command; |
| 459 | argv[1] = host; |
| 460 | argv[2] = port; |
| 461 | argv[3] = NULL; |
| 462 | memset(&proxy, 0, sizeof(proxy)); |
| 463 | proxy.argv = argv; |
| 464 | proxy.in = -1; |
| 465 | proxy.out = -1; |
| 466 | if (start_command(&proxy)) |
| 467 | die("cannot start proxy %s", argv[0]); |
| 468 | fd[0] = proxy.out; /* read from proxy stdout */ |
| 469 | fd[1] = proxy.in; /* write to proxy stdin */ |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 470 | } |
| 471 | |
Christian Couder | 0f503d7 | 2006-09-11 07:04:50 +0200 | [diff] [blame] | 472 | #define MAX_CMD_LEN 1024 |
| 473 | |
Luben Tuikov | 2e77666 | 2007-09-01 02:36:31 -0700 | [diff] [blame] | 474 | char *get_port(char *host) |
| 475 | { |
| 476 | char *end; |
| 477 | char *p = strchr(host, ':'); |
| 478 | |
| 479 | if (p) { |
René Scharfe | 8f14825 | 2008-12-21 02:12:11 +0100 | [diff] [blame] | 480 | long port = strtol(p + 1, &end, 10); |
| 481 | if (end != p + 1 && *end == '\0' && 0 <= port && port < 65536) { |
Luben Tuikov | 2e77666 | 2007-09-01 02:36:31 -0700 | [diff] [blame] | 482 | *p = '\0'; |
| 483 | return p+1; |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | return NULL; |
| 488 | } |
| 489 | |
Johannes Schindelin | fb32c91 | 2008-02-10 03:06:57 +0000 | [diff] [blame] | 490 | static struct child_process no_fork; |
| 491 | |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 492 | /* |
Johannes Schindelin | fb32c91 | 2008-02-10 03:06:57 +0000 | [diff] [blame] | 493 | * This returns a dummy child_process if the transport protocol does not |
| 494 | * need fork(2), or a struct child_process object if it does. Once done, |
| 495 | * finish the connection with finish_connect() with the value returned from |
| 496 | * this function (it is safe to call finish_connect() with NULL to support |
| 497 | * the former case). |
Franck Bui-Huu | f42a5c4 | 2006-09-12 11:00:13 +0200 | [diff] [blame] | 498 | * |
Johannes Schindelin | fb32c91 | 2008-02-10 03:06:57 +0000 | [diff] [blame] | 499 | * If it returns, the connect is successful; it just dies on errors (this |
| 500 | * will hopefully be changed in a libification effort, to return NULL when |
| 501 | * the connection failed). |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 502 | */ |
Daniel Barkalow | 4577370 | 2007-10-29 21:05:40 -0400 | [diff] [blame] | 503 | struct child_process *git_connect(int fd[2], const char *url_orig, |
Johannes Sixt | 98158e9 | 2007-10-19 21:47:53 +0200 | [diff] [blame] | 504 | const char *prog, int flags) |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 505 | { |
Daniel Barkalow | 4577370 | 2007-10-29 21:05:40 -0400 | [diff] [blame] | 506 | char *url = xstrdup(url_orig); |
Benjamin Kramer | 8e76bf3 | 2009-03-13 13:51:33 +0100 | [diff] [blame] | 507 | char *host, *path; |
YOSHIFUJI Hideaki / 吉藤英明 | 356bece | 2005-12-21 19:23:42 +0900 | [diff] [blame] | 508 | char *end; |
| 509 | int c; |
Johannes Sixt | 98158e9 | 2007-10-19 21:47:53 +0200 | [diff] [blame] | 510 | struct child_process *conn; |
Andreas Ericsson | faea9cc | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 511 | enum protocol protocol = PROTO_LOCAL; |
Serge E. Hallyn | da2a95b | 2006-04-17 10:14:47 -0500 | [diff] [blame] | 512 | int free_path = 0; |
Luben Tuikov | 2e77666 | 2007-09-01 02:36:31 -0700 | [diff] [blame] | 513 | char *port = NULL; |
Johannes Sixt | f364cb8 | 2007-10-19 21:47:54 +0200 | [diff] [blame] | 514 | const char **arg; |
| 515 | struct strbuf cmd; |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 516 | |
Junio C Hamano | f0b7367 | 2006-06-19 18:25:21 -0700 | [diff] [blame] | 517 | /* Without this we cannot rely on waitpid() to tell |
| 518 | * what happened to our children. |
| 519 | */ |
| 520 | signal(SIGCHLD, SIG_DFL); |
| 521 | |
Andreas Ericsson | faea9cc | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 522 | host = strstr(url, "://"); |
| 523 | if(host) { |
| 524 | *host = '\0'; |
| 525 | protocol = get_protocol(url); |
| 526 | host += 3; |
YOSHIFUJI Hideaki / 吉藤英明 | 356bece | 2005-12-21 19:23:42 +0900 | [diff] [blame] | 527 | c = '/'; |
| 528 | } else { |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 529 | host = url; |
YOSHIFUJI Hideaki / 吉藤英明 | 356bece | 2005-12-21 19:23:42 +0900 | [diff] [blame] | 530 | c = ':'; |
| 531 | } |
| 532 | |
| 533 | if (host[0] == '[') { |
| 534 | end = strchr(host + 1, ']'); |
| 535 | if (end) { |
| 536 | *end = 0; |
| 537 | end++; |
| 538 | host++; |
| 539 | } else |
| 540 | end = host; |
| 541 | } else |
| 542 | end = host; |
| 543 | |
| 544 | path = strchr(end, c); |
Johannes Sixt | be50181 | 2007-11-30 22:51:10 +0100 | [diff] [blame] | 545 | if (path && !has_dos_drive_prefix(end)) { |
Linus Torvalds | 72a4f4b | 2007-08-01 10:03:37 -0700 | [diff] [blame] | 546 | if (c == ':') { |
Andreas Ericsson | faea9cc | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 547 | protocol = PROTO_SSH; |
YOSHIFUJI Hideaki / 吉藤英明 | 356bece | 2005-12-21 19:23:42 +0900 | [diff] [blame] | 548 | *path++ = '\0'; |
Linus Torvalds | 72a4f4b | 2007-08-01 10:03:37 -0700 | [diff] [blame] | 549 | } |
| 550 | } else |
| 551 | path = end; |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 552 | |
Andreas Ericsson | faea9cc | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 553 | if (!path || !*path) |
| 554 | die("No path specified. See 'man git-pull' for valid url syntax"); |
| 555 | |
| 556 | /* |
| 557 | * null-terminate hostname and point path to ~ for URL's like this: |
| 558 | * ssh://host.xz/~user/repo |
| 559 | */ |
| 560 | if (protocol != PROTO_LOCAL && host != url) { |
| 561 | char *ptr = path; |
| 562 | if (path[1] == '~') |
| 563 | path++; |
Serge E. Hallyn | da2a95b | 2006-04-17 10:14:47 -0500 | [diff] [blame] | 564 | else { |
Shawn Pearce | 9befac4 | 2006-09-02 00:16:31 -0400 | [diff] [blame] | 565 | path = xstrdup(ptr); |
Serge E. Hallyn | da2a95b | 2006-04-17 10:14:47 -0500 | [diff] [blame] | 566 | free_path = 1; |
| 567 | } |
Andreas Ericsson | faea9cc | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 568 | |
| 569 | *ptr = '\0'; |
| 570 | } |
| 571 | |
Luben Tuikov | 2e77666 | 2007-09-01 02:36:31 -0700 | [diff] [blame] | 572 | /* |
| 573 | * Add support for ssh port: ssh://host.xy:<port>/... |
| 574 | */ |
| 575 | if (protocol == PROTO_SSH && host != url) |
| 576 | port = get_port(host); |
| 577 | |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 578 | if (protocol == PROTO_GIT) { |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 579 | /* These underlying connection commands die() if they |
| 580 | * cannot connect. |
| 581 | */ |
Shawn Pearce | 9befac4 | 2006-09-02 00:16:31 -0400 | [diff] [blame] | 582 | char *target_host = xstrdup(host); |
Junio C Hamano | e814bc4 | 2005-11-19 03:48:56 -0800 | [diff] [blame] | 583 | if (git_use_proxy(host)) |
Junio C Hamano | c78963d | 2006-06-28 03:50:33 -0700 | [diff] [blame] | 584 | git_proxy_connect(fd, host); |
Serge E. Hallyn | da2a95b | 2006-04-17 10:14:47 -0500 | [diff] [blame] | 585 | else |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 586 | git_tcp_connect(fd, host, flags); |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 587 | /* |
| 588 | * Separate original protocol components prog and path |
| 589 | * from extended components with a NUL byte. |
| 590 | */ |
| 591 | packet_write(fd[1], |
| 592 | "%s %s%chost=%s%c", |
| 593 | prog, path, 0, |
| 594 | target_host, 0); |
| 595 | free(target_host); |
Daniel Barkalow | 4577370 | 2007-10-29 21:05:40 -0400 | [diff] [blame] | 596 | free(url); |
Serge E. Hallyn | da2a95b | 2006-04-17 10:14:47 -0500 | [diff] [blame] | 597 | if (free_path) |
| 598 | free(path); |
Johannes Schindelin | fb32c91 | 2008-02-10 03:06:57 +0000 | [diff] [blame] | 599 | return &no_fork; |
Paul Collins | f801477 | 2005-11-04 14:57:16 +0000 | [diff] [blame] | 600 | } |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 601 | |
Johannes Sixt | 98158e9 | 2007-10-19 21:47:53 +0200 | [diff] [blame] | 602 | conn = xcalloc(1, sizeof(*conn)); |
Christian Couder | 0f503d7 | 2006-09-11 07:04:50 +0200 | [diff] [blame] | 603 | |
Johannes Sixt | f364cb8 | 2007-10-19 21:47:54 +0200 | [diff] [blame] | 604 | strbuf_init(&cmd, MAX_CMD_LEN); |
| 605 | strbuf_addstr(&cmd, prog); |
| 606 | strbuf_addch(&cmd, ' '); |
| 607 | sq_quote_buf(&cmd, path); |
| 608 | if (cmd.len >= MAX_CMD_LEN) |
| 609 | die("command line too long"); |
Christian Couder | 0f503d7 | 2006-09-11 07:04:50 +0200 | [diff] [blame] | 610 | |
Johannes Sixt | f364cb8 | 2007-10-19 21:47:54 +0200 | [diff] [blame] | 611 | conn->in = conn->out = -1; |
| 612 | conn->argv = arg = xcalloc(6, sizeof(*arg)); |
| 613 | if (protocol == PROTO_SSH) { |
| 614 | const char *ssh = getenv("GIT_SSH"); |
| 615 | if (!ssh) ssh = "ssh"; |
Luben Tuikov | 2e77666 | 2007-09-01 02:36:31 -0700 | [diff] [blame] | 616 | |
Johannes Sixt | f364cb8 | 2007-10-19 21:47:54 +0200 | [diff] [blame] | 617 | *arg++ = ssh; |
| 618 | if (port) { |
| 619 | *arg++ = "-p"; |
| 620 | *arg++ = port; |
Martin Sivak | 4852f72 | 2005-08-03 17:15:42 +0200 | [diff] [blame] | 621 | } |
Johannes Sixt | f364cb8 | 2007-10-19 21:47:54 +0200 | [diff] [blame] | 622 | *arg++ = host; |
Matt Draisey | 016fb48 | 2006-01-19 15:58:03 -0500 | [diff] [blame] | 623 | } |
Johannes Sixt | f364cb8 | 2007-10-19 21:47:54 +0200 | [diff] [blame] | 624 | else { |
| 625 | /* remove these from the environment */ |
| 626 | const char *env[] = { |
| 627 | ALTERNATE_DB_ENVIRONMENT, |
| 628 | DB_ENVIRONMENT, |
| 629 | GIT_DIR_ENVIRONMENT, |
| 630 | GIT_WORK_TREE_ENVIRONMENT, |
| 631 | GRAFT_ENVIRONMENT, |
| 632 | INDEX_ENVIRONMENT, |
| 633 | NULL |
| 634 | }; |
| 635 | conn->env = env; |
| 636 | *arg++ = "sh"; |
| 637 | *arg++ = "-c"; |
| 638 | } |
| 639 | *arg++ = cmd.buf; |
| 640 | *arg = NULL; |
| 641 | |
| 642 | if (start_command(conn)) |
| 643 | die("unable to fork"); |
| 644 | |
| 645 | fd[0] = conn->out; /* read from child's stdout */ |
| 646 | fd[1] = conn->in; /* write to child's stdin */ |
| 647 | strbuf_release(&cmd); |
Daniel Barkalow | 4577370 | 2007-10-29 21:05:40 -0400 | [diff] [blame] | 648 | free(url); |
Serge E. Hallyn | da2a95b | 2006-04-17 10:14:47 -0500 | [diff] [blame] | 649 | if (free_path) |
| 650 | free(path); |
Johannes Sixt | 98158e9 | 2007-10-19 21:47:53 +0200 | [diff] [blame] | 651 | return conn; |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 652 | } |
| 653 | |
Johannes Sixt | 98158e9 | 2007-10-19 21:47:53 +0200 | [diff] [blame] | 654 | int finish_connect(struct child_process *conn) |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 655 | { |
Johannes Sixt | f364cb8 | 2007-10-19 21:47:54 +0200 | [diff] [blame] | 656 | int code; |
Johannes Schindelin | fb32c91 | 2008-02-10 03:06:57 +0000 | [diff] [blame] | 657 | if (!conn || conn == &no_fork) |
Franck Bui-Huu | f42a5c4 | 2006-09-12 11:00:13 +0200 | [diff] [blame] | 658 | return 0; |
| 659 | |
Johannes Sixt | f364cb8 | 2007-10-19 21:47:54 +0200 | [diff] [blame] | 660 | code = finish_command(conn); |
| 661 | free(conn->argv); |
Johannes Sixt | 98158e9 | 2007-10-19 21:47:53 +0200 | [diff] [blame] | 662 | free(conn); |
Johannes Sixt | f364cb8 | 2007-10-19 21:47:54 +0200 | [diff] [blame] | 663 | return code; |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 664 | } |