| Jason Riedy | 731043f | 2006-01-25 20:38:36 | [diff] [blame] | 1 | #include "git-compat-util.h" |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 2 | #include "cache.h" |
| Linus Torvalds | 41cb748 | 2005-07-05 22:44:09 | [diff] [blame] | 3 | #include "pkt-line.h" |
| Junio C Hamano | b10d0ec | 2005-07-08 07:02:52 | [diff] [blame] | 4 | #include "quote.h" |
| Junio C Hamano | 6abf5c0 | 2005-10-16 07:25:26 | [diff] [blame] | 5 | #include "refs.h" |
| Shawn O. Pearce | 15a1c012 | 2007-03-12 23:00:19 | [diff] [blame] | 6 | #include "run-command.h" |
| Daniel Barkalow | 6b62816 | 2007-05-12 15:45:59 | [diff] [blame] | 7 | #include "remote.h" |
| Junio C Hamano | 47a5918 | 2013-07-08 20:56:53 | [diff] [blame] | 8 | #include "connect.h" |
| Jeff King | 9d2e942 | 2010-05-23 09:19:44 | [diff] [blame] | 9 | #include "url.h" |
| Junio C Hamano | a45b5f0 | 2013-09-18 02:10:31 | [diff] [blame] | 10 | #include "string-list.h" |
| Nguyễn Thái Ngọc Duy | 13eb462 | 2013-12-05 13:02:29 | [diff] [blame] | 11 | #include "sha1-array.h" |
| Jeff King | a5adace | 2015-09-16 17:12:52 | [diff] [blame] | 12 | #include "transport.h" |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 13 | |
| David Rientjes | 96f1e58 | 2006-08-15 17:23:48 | [diff] [blame] | 14 | static char *server_capabilities; |
| Junio C Hamano | 5d54cff | 2013-09-17 23:29:28 | [diff] [blame] | 15 | static const char *parse_feature_value(const char *, const char *, int *); |
| Johannes Schindelin | 211b5f9 | 2005-10-28 02:48:54 | [diff] [blame] | 16 | |
| René Scharfe | be0b3f8 | 2014-08-30 09:46:54 | [diff] [blame] | 17 | static int check_ref(const char *name, unsigned int flags) |
| Linus Torvalds | 2718ff0 | 2006-07-04 19:29:10 | [diff] [blame] | 18 | { |
| 19 | if (!flags) |
| 20 | return 1; |
| 21 | |
| René Scharfe | be0b3f8 | 2014-08-30 09:46:54 | [diff] [blame] | 22 | if (!skip_prefix(name, "refs/", &name)) |
| Linus Torvalds | 2718ff0 | 2006-07-04 19:29:10 | [diff] [blame] | 23 | return 0; |
| 24 | |
| Linus Torvalds | 2718ff0 | 2006-07-04 19:29:10 | [diff] [blame] | 25 | /* REF_NORMAL means that we don't want the magic fake tag refs */ |
| Michael Haggerty | 8d9c501 | 2011-09-15 21:10:25 | [diff] [blame] | 26 | if ((flags & REF_NORMAL) && check_refname_format(name, 0)) |
| Linus Torvalds | 2718ff0 | 2006-07-04 19:29:10 | [diff] [blame] | 27 | return 0; |
| 28 | |
| 29 | /* REF_HEADS means that we want regular branch heads */ |
| René Scharfe | be0b3f8 | 2014-08-30 09:46:54 | [diff] [blame] | 30 | if ((flags & REF_HEADS) && starts_with(name, "heads/")) |
| Linus Torvalds | 2718ff0 | 2006-07-04 19:29:10 | [diff] [blame] | 31 | return 1; |
| 32 | |
| 33 | /* REF_TAGS means that we want tags */ |
| René Scharfe | be0b3f8 | 2014-08-30 09:46:54 | [diff] [blame] | 34 | if ((flags & REF_TAGS) && starts_with(name, "tags/")) |
| Linus Torvalds | 2718ff0 | 2006-07-04 19:29:10 | [diff] [blame] | 35 | return 1; |
| 36 | |
| 37 | /* All type bits clear means that we are ok with anything */ |
| 38 | return !(flags & ~REF_NORMAL); |
| 39 | } |
| 40 | |
| Daniel Barkalow | 4577370 | 2007-10-30 01:05:40 | [diff] [blame] | 41 | int check_ref_type(const struct ref *ref, int flags) |
| 42 | { |
| René Scharfe | be0b3f8 | 2014-08-30 09:46:54 | [diff] [blame] | 43 | return check_ref(ref->name, flags); |
| Daniel Barkalow | 4577370 | 2007-10-30 01:05:40 | [diff] [blame] | 44 | } |
| 45 | |
| Heiko Voigt | 46284dd | 2012-06-19 18:24:50 | [diff] [blame] | 46 | static void die_initial_contact(int got_at_least_one_head) |
| 47 | { |
| 48 | if (got_at_least_one_head) |
| 49 | die("The remote end hung up upon initial contact"); |
| 50 | else |
| 51 | die("Could not read from remote repository.\n\n" |
| 52 | "Please make sure you have the correct access rights\n" |
| 53 | "and the repository exists."); |
| 54 | } |
| 55 | |
| Junio C Hamano | a45b5f0 | 2013-09-18 02:10:31 | [diff] [blame] | 56 | static void parse_one_symref_info(struct string_list *symref, const char *val, int len) |
| 57 | { |
| 58 | char *sym, *target; |
| 59 | struct string_list_item *item; |
| 60 | |
| 61 | if (!len) |
| 62 | return; /* just "symref" */ |
| 63 | /* e.g. "symref=HEAD:refs/heads/master" */ |
| René Scharfe | 5c0b13f | 2014-07-19 15:35:34 | [diff] [blame] | 64 | sym = xmemdupz(val, len); |
| Junio C Hamano | a45b5f0 | 2013-09-18 02:10:31 | [diff] [blame] | 65 | target = strchr(sym, ':'); |
| 66 | if (!target) |
| 67 | /* just "symref=something" */ |
| 68 | goto reject; |
| 69 | *(target++) = '\0'; |
| 70 | if (check_refname_format(sym, REFNAME_ALLOW_ONELEVEL) || |
| 71 | check_refname_format(target, REFNAME_ALLOW_ONELEVEL)) |
| 72 | /* "symref=bogus:pair */ |
| 73 | goto reject; |
| 74 | item = string_list_append(symref, sym); |
| 75 | item->util = target; |
| 76 | return; |
| 77 | reject: |
| 78 | free(sym); |
| 79 | return; |
| 80 | } |
| 81 | |
| 82 | static void annotate_refs_with_symref_info(struct ref *ref) |
| 83 | { |
| 84 | struct string_list symref = STRING_LIST_INIT_DUP; |
| 85 | const char *feature_list = server_capabilities; |
| 86 | |
| 87 | while (feature_list) { |
| 88 | int len; |
| 89 | const char *val; |
| 90 | |
| 91 | val = parse_feature_value(feature_list, "symref", &len); |
| 92 | if (!val) |
| 93 | break; |
| 94 | parse_one_symref_info(&symref, val, len); |
| 95 | feature_list = val + 1; |
| 96 | } |
| Michael Haggerty | 3383e19 | 2014-11-25 08:02:35 | [diff] [blame] | 97 | string_list_sort(&symref); |
| Junio C Hamano | a45b5f0 | 2013-09-18 02:10:31 | [diff] [blame] | 98 | |
| 99 | for (; ref; ref = ref->next) { |
| 100 | struct string_list_item *item; |
| 101 | item = string_list_lookup(&symref, ref->name); |
| 102 | if (!item) |
| 103 | continue; |
| 104 | ref->symref = xstrdup((char *)item->util); |
| 105 | } |
| 106 | string_list_clear(&symref, 0); |
| 107 | } |
| 108 | |
| Linus Torvalds | d1c133f | 2005-07-16 20:55:50 | [diff] [blame] | 109 | /* |
| 110 | * Read all the refs from the other end |
| 111 | */ |
| Jeff King | 85edf4f | 2013-02-20 20:06:45 | [diff] [blame] | 112 | struct ref **get_remote_heads(int in, char *src_buf, size_t src_len, |
| 113 | struct ref **list, unsigned int flags, |
| Nguyễn Thái Ngọc Duy | b06dcd7 | 2013-12-05 13:02:33 | [diff] [blame] | 114 | struct sha1_array *extra_have, |
| 115 | struct sha1_array *shallow_points) |
| Linus Torvalds | d1c133f | 2005-07-16 20:55:50 | [diff] [blame] | 116 | { |
| Junio C Hamano | a45b5f0 | 2013-09-18 02:10:31 | [diff] [blame] | 117 | struct ref **orig_list = list; |
| Heiko Voigt | 46284dd | 2012-06-19 18:24:50 | [diff] [blame] | 118 | int got_at_least_one_head = 0; |
| 119 | |
| Linus Torvalds | d1c133f | 2005-07-16 20:55:50 | [diff] [blame] | 120 | *list = NULL; |
| 121 | for (;;) { |
| 122 | struct ref *ref; |
| brian m. carlson | e96b16c | 2015-11-10 02:22:23 | [diff] [blame] | 123 | struct object_id old_oid; |
| Linus Torvalds | d1c133f | 2005-07-16 20:55:50 | [diff] [blame] | 124 | char *name; |
| Johannes Schindelin | 211b5f9 | 2005-10-28 02:48:54 | [diff] [blame] | 125 | int len, name_len; |
| Jeff King | 74543a0 | 2013-02-20 20:02:57 | [diff] [blame] | 126 | char *buffer = packet_buffer; |
| Jeff King | ae021d8 | 2014-06-18 19:47:50 | [diff] [blame] | 127 | const char *arg; |
| Linus Torvalds | d1c133f | 2005-07-16 20:55:50 | [diff] [blame] | 128 | |
| Jeff King | 85edf4f | 2013-02-20 20:06:45 | [diff] [blame] | 129 | len = packet_read(in, &src_buf, &src_len, |
| Jeff King | 4981fe7 | 2013-02-23 22:31:34 | [diff] [blame] | 130 | packet_buffer, sizeof(packet_buffer), |
| Jeff King | 819b929 | 2013-02-20 20:02:28 | [diff] [blame] | 131 | PACKET_READ_GENTLE_ON_EOF | |
| 132 | PACKET_READ_CHOMP_NEWLINE); |
| Heiko Voigt | 46284dd | 2012-06-19 18:24:50 | [diff] [blame] | 133 | if (len < 0) |
| 134 | die_initial_contact(got_at_least_one_head); |
| 135 | |
| Linus Torvalds | d1c133f | 2005-07-16 20:55:50 | [diff] [blame] | 136 | if (!len) |
| 137 | break; |
| Linus Torvalds | d1c133f | 2005-07-16 20:55:50 | [diff] [blame] | 138 | |
| Jeff King | ae021d8 | 2014-06-18 19:47:50 | [diff] [blame] | 139 | if (len > 4 && skip_prefix(buffer, "ERR ", &arg)) |
| 140 | die("remote error: %s", arg); |
| Tom Preston-Werner | a807328 | 2008-11-01 18:44:45 | [diff] [blame] | 141 | |
| brian m. carlson | e96b16c | 2015-11-10 02:22:23 | [diff] [blame] | 142 | if (len == GIT_SHA1_HEXSZ + strlen("shallow ") && |
| 143 | skip_prefix(buffer, "shallow ", &arg)) { |
| 144 | if (get_oid_hex(arg, &old_oid)) |
| Jeff King | ae021d8 | 2014-06-18 19:47:50 | [diff] [blame] | 145 | die("protocol error: expected shallow sha-1, got '%s'", arg); |
| Nguyễn Thái Ngọc Duy | b06dcd7 | 2013-12-05 13:02:33 | [diff] [blame] | 146 | if (!shallow_points) |
| 147 | die("repository on the other end cannot be shallow"); |
| brian m. carlson | e96b16c | 2015-11-10 02:22:23 | [diff] [blame] | 148 | sha1_array_append(shallow_points, old_oid.hash); |
| Nguyễn Thái Ngọc Duy | b06dcd7 | 2013-12-05 13:02:33 | [diff] [blame] | 149 | continue; |
| 150 | } |
| 151 | |
| brian m. carlson | e96b16c | 2015-11-10 02:22:23 | [diff] [blame] | 152 | if (len < GIT_SHA1_HEXSZ + 2 || get_oid_hex(buffer, &old_oid) || |
| 153 | buffer[GIT_SHA1_HEXSZ] != ' ') |
| Linus Torvalds | d1c133f | 2005-07-16 20:55:50 | [diff] [blame] | 154 | die("protocol error: expected sha/ref, got '%s'", buffer); |
| brian m. carlson | e96b16c | 2015-11-10 02:22:23 | [diff] [blame] | 155 | name = buffer + GIT_SHA1_HEXSZ + 1; |
| Junio C Hamano | 1a7141f | 2005-10-14 01:57:40 | [diff] [blame] | 156 | |
| Johannes Schindelin | 211b5f9 | 2005-10-28 02:48:54 | [diff] [blame] | 157 | name_len = strlen(name); |
| brian m. carlson | e96b16c | 2015-11-10 02:22:23 | [diff] [blame] | 158 | if (len != name_len + GIT_SHA1_HEXSZ + 1) { |
| Jim Meyering | 8e0f700 | 2008-01-31 17:26:32 | [diff] [blame] | 159 | free(server_capabilities); |
| Shawn Pearce | 9befac4 | 2006-09-02 04:16:31 | [diff] [blame] | 160 | server_capabilities = xstrdup(name + name_len + 1); |
| Johannes Schindelin | 211b5f9 | 2005-10-28 02:48:54 | [diff] [blame] | 161 | } |
| 162 | |
| René Scharfe | 2ae7f90 | 2015-02-21 19:49:58 | [diff] [blame] | 163 | if (extra_have && !strcmp(name, ".have")) { |
| brian m. carlson | e96b16c | 2015-11-10 02:22:23 | [diff] [blame] | 164 | sha1_array_append(extra_have, old_oid.hash); |
| Junio C Hamano | 40c155f | 2008-09-09 08:27:09 | [diff] [blame] | 165 | continue; |
| 166 | } |
| 167 | |
| René Scharfe | be0b3f8 | 2014-08-30 09:46:54 | [diff] [blame] | 168 | if (!check_ref(name, flags)) |
| Junio C Hamano | cfee10a | 2005-12-26 07:18:37 | [diff] [blame] | 169 | continue; |
| brian m. carlson | e96b16c | 2015-11-10 02:22:23 | [diff] [blame] | 170 | ref = alloc_ref(buffer + GIT_SHA1_HEXSZ + 1); |
| 171 | oidcpy(&ref->old_oid, &old_oid); |
| Linus Torvalds | d1c133f | 2005-07-16 20:55:50 | [diff] [blame] | 172 | *list = ref; |
| 173 | list = &ref->next; |
| Heiko Voigt | 46284dd | 2012-06-19 18:24:50 | [diff] [blame] | 174 | got_at_least_one_head = 1; |
| Linus Torvalds | d1c133f | 2005-07-16 20:55:50 | [diff] [blame] | 175 | } |
| Junio C Hamano | a45b5f0 | 2013-09-18 02:10:31 | [diff] [blame] | 176 | |
| 177 | annotate_refs_with_symref_info(*orig_list); |
| 178 | |
| Linus Torvalds | d1c133f | 2005-07-16 20:55:50 | [diff] [blame] | 179 | return list; |
| 180 | } |
| 181 | |
| Junio C Hamano | 5d54cff | 2013-09-17 23:29:28 | [diff] [blame] | 182 | static const char *parse_feature_value(const char *feature_list, const char *feature, int *lenp) |
| Junio C Hamano | f47182c | 2012-01-08 21:06:19 | [diff] [blame] | 183 | { |
| 184 | int len; |
| 185 | |
| 186 | if (!feature_list) |
| 187 | return NULL; |
| 188 | |
| 189 | len = strlen(feature); |
| 190 | while (*feature_list) { |
| 191 | const char *found = strstr(feature_list, feature); |
| 192 | if (!found) |
| 193 | return NULL; |
| Jeff King | 9442710 | 2012-08-14 01:59:27 | [diff] [blame] | 194 | if (feature_list == found || isspace(found[-1])) { |
| 195 | const char *value = found + len; |
| 196 | /* feature with no value (e.g., "thin-pack") */ |
| 197 | if (!*value || isspace(*value)) { |
| 198 | if (lenp) |
| 199 | *lenp = 0; |
| 200 | return value; |
| 201 | } |
| 202 | /* feature with a value (e.g., "agent=git/1.2.3") */ |
| 203 | else if (*value == '=') { |
| 204 | value++; |
| 205 | if (lenp) |
| 206 | *lenp = strcspn(value, " \t\n"); |
| 207 | return value; |
| 208 | } |
| 209 | /* |
| 210 | * otherwise we matched a substring of another feature; |
| 211 | * keep looking |
| 212 | */ |
| 213 | } |
| Junio C Hamano | f47182c | 2012-01-08 21:06:19 | [diff] [blame] | 214 | feature_list = found + 1; |
| 215 | } |
| 216 | return NULL; |
| Johannes Schindelin | 211b5f9 | 2005-10-28 02:48:54 | [diff] [blame] | 217 | } |
| 218 | |
| Jeff King | 9442710 | 2012-08-14 01:59:27 | [diff] [blame] | 219 | int parse_feature_request(const char *feature_list, const char *feature) |
| 220 | { |
| 221 | return !!parse_feature_value(feature_list, feature, NULL); |
| 222 | } |
| 223 | |
| 224 | const char *server_feature_value(const char *feature, int *len) |
| 225 | { |
| 226 | return parse_feature_value(server_capabilities, feature, len); |
| 227 | } |
| 228 | |
| 229 | int server_supports(const char *feature) |
| 230 | { |
| 231 | return !!server_feature_value(feature, NULL); |
| 232 | } |
| 233 | |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 234 | enum protocol { |
| 235 | PROTO_LOCAL = 1, |
| Torsten Bögershausen | c59ab2e | 2013-11-28 19:50:03 | [diff] [blame] | 236 | PROTO_FILE, |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 237 | PROTO_SSH, |
| Gary V. Vaughan | 4b05548 | 2010-05-14 09:31:35 | [diff] [blame] | 238 | PROTO_GIT |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 239 | }; |
| 240 | |
| Torsten Bögershausen | c59ab2e | 2013-11-28 19:50:03 | [diff] [blame] | 241 | int url_is_local_not_ssh(const char *url) |
| 242 | { |
| 243 | const char *colon = strchr(url, ':'); |
| 244 | const char *slash = strchr(url, '/'); |
| 245 | return !colon || (slash && slash < colon) || |
| 246 | has_dos_drive_prefix(url); |
| 247 | } |
| 248 | |
| Torsten Bögershausen | 5610b7c | 2013-11-28 19:49:17 | [diff] [blame] | 249 | static const char *prot_name(enum protocol protocol) |
| 250 | { |
| 251 | switch (protocol) { |
| 252 | case PROTO_LOCAL: |
| Torsten Bögershausen | c59ab2e | 2013-11-28 19:50:03 | [diff] [blame] | 253 | case PROTO_FILE: |
| Torsten Bögershausen | 5610b7c | 2013-11-28 19:49:17 | [diff] [blame] | 254 | return "file"; |
| 255 | case PROTO_SSH: |
| 256 | return "ssh"; |
| 257 | case PROTO_GIT: |
| 258 | return "git"; |
| 259 | default: |
| Tobias Klauser | 83e6bda | 2015-09-24 12:44:49 | [diff] [blame] | 260 | return "unknown protocol"; |
| Torsten Bögershausen | 5610b7c | 2013-11-28 19:49:17 | [diff] [blame] | 261 | } |
| 262 | } |
| 263 | |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 264 | static enum protocol get_protocol(const char *name) |
| 265 | { |
| 266 | if (!strcmp(name, "ssh")) |
| 267 | return PROTO_SSH; |
| 268 | if (!strcmp(name, "git")) |
| 269 | return PROTO_GIT; |
| Carlos Martín Nieto | 07c7782 | 2016-02-15 14:29:06 | [diff] [blame] | 270 | if (!strcmp(name, "git+ssh")) /* deprecated - do not use */ |
| Linus Torvalds | c05186c | 2005-10-15 00:14:56 | [diff] [blame] | 271 | return PROTO_SSH; |
| Carlos Martín Nieto | 07c7782 | 2016-02-15 14:29:06 | [diff] [blame] | 272 | if (!strcmp(name, "ssh+git")) /* deprecated - do not use */ |
| Linus Torvalds | c05186c | 2005-10-15 00:14:56 | [diff] [blame] | 273 | return PROTO_SSH; |
| Linus Torvalds | 72a4f4b | 2007-08-01 17:03:37 | [diff] [blame] | 274 | if (!strcmp(name, "file")) |
| Torsten Bögershausen | c59ab2e | 2013-11-28 19:50:03 | [diff] [blame] | 275 | return PROTO_FILE; |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 276 | die("I don't handle protocol '%s'", name); |
| 277 | } |
| 278 | |
| Torsten Bögershausen | 86ceb33 | 2015-02-21 15:52:48 | [diff] [blame] | 279 | static char *host_end(char **hoststart, int removebrackets) |
| 280 | { |
| 281 | char *host = *hoststart; |
| 282 | char *end; |
| 283 | char *start = strstr(host, "@["); |
| 284 | if (start) |
| 285 | start++; /* Jump over '@' */ |
| 286 | else |
| 287 | start = host; |
| 288 | if (start[0] == '[') { |
| 289 | end = strchr(start + 1, ']'); |
| 290 | if (end) { |
| 291 | if (removebrackets) { |
| 292 | *end = 0; |
| 293 | memmove(start, start + 1, end - start); |
| 294 | end++; |
| 295 | } |
| 296 | } else |
| 297 | end = host; |
| 298 | } else |
| 299 | end = host; |
| 300 | return end; |
| 301 | } |
| 302 | |
| YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 13:10:36 | [diff] [blame] | 303 | #define STR_(s) # s |
| 304 | #define STR(s) STR_(s) |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 305 | |
| Michael Lukashov | 72a534d | 2010-02-17 20:56:02 | [diff] [blame] | 306 | static void get_host_and_port(char **host, const char **port) |
| 307 | { |
| 308 | char *colon, *end; |
| Torsten Bögershausen | 86ceb33 | 2015-02-21 15:52:48 | [diff] [blame] | 309 | end = host_end(host, 1); |
| Michael Lukashov | 72a534d | 2010-02-17 20:56:02 | [diff] [blame] | 310 | colon = strchr(end, ':'); |
| Michael Lukashov | 72a534d | 2010-02-17 20:56:02 | [diff] [blame] | 311 | if (colon) { |
| Torsten Bögershausen | 86ceb33 | 2015-02-21 15:52:48 | [diff] [blame] | 312 | long portnr = strtol(colon + 1, &end, 10); |
| 313 | if (end != colon + 1 && *end == '\0' && 0 <= portnr && portnr < 65536) { |
| 314 | *colon = 0; |
| 315 | *port = colon + 1; |
| Torsten Bögershausen | 6b6c5f7 | 2015-04-07 20:03:25 | [diff] [blame] | 316 | } else if (!colon[1]) { |
| 317 | *colon = 0; |
| Torsten Bögershausen | 86ceb33 | 2015-02-21 15:52:48 | [diff] [blame] | 318 | } |
| Michael Lukashov | 72a534d | 2010-02-17 20:56:02 | [diff] [blame] | 319 | } |
| 320 | } |
| 321 | |
| Eric Wong | e47a858 | 2011-12-06 04:39:36 | [diff] [blame] | 322 | static void enable_keepalive(int sockfd) |
| 323 | { |
| 324 | int ka = 1; |
| 325 | |
| 326 | if (setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, &ka, sizeof(ka)) < 0) |
| 327 | fprintf(stderr, "unable to set SO_KEEPALIVE on socket: %s\n", |
| 328 | strerror(errno)); |
| 329 | } |
| 330 | |
| hpa | 49744d6 | 2005-09-28 23:52:21 | [diff] [blame] | 331 | #ifndef NO_IPV6 |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 332 | |
| Alex Riesen | ba50532 | 2007-05-23 21:34:27 | [diff] [blame] | 333 | static const char *ai_name(const struct addrinfo *ai) |
| 334 | { |
| Benjamin Kramer | 785a985 | 2009-04-24 12:16:41 | [diff] [blame] | 335 | static char addr[NI_MAXHOST]; |
| 336 | if (getnameinfo(ai->ai_addr, ai->ai_addrlen, addr, sizeof(addr), NULL, 0, |
| 337 | NI_NUMERICHOST) != 0) |
| Jeff King | 5096d49 | 2015-09-24 21:06:08 | [diff] [blame] | 338 | xsnprintf(addr, sizeof(addr), "(unknown)"); |
| Benjamin Kramer | 785a985 | 2009-04-24 12:16:41 | [diff] [blame] | 339 | |
| Alex Riesen | ba50532 | 2007-05-23 21:34:27 | [diff] [blame] | 340 | return addr; |
| 341 | } |
| 342 | |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 343 | /* |
| 344 | * Returns a connected socket() fd, or else die()s. |
| 345 | */ |
| Michael S. Tsirkin | 7841ce7 | 2007-05-16 17:09:41 | [diff] [blame] | 346 | static int git_tcp_connect_sock(char *host, int flags) |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 347 | { |
| Dave Zarzycki | 63a995b | 2011-07-12 16:28:34 | [diff] [blame] | 348 | struct strbuf error_message = STRBUF_INIT; |
| 349 | int sockfd = -1; |
| Timo Hirvonen | 554fe20 | 2006-06-28 09:04:39 | [diff] [blame] | 350 | const char *port = STR(DEFAULT_GIT_PORT); |
| YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 13:10:36 | [diff] [blame] | 351 | struct addrinfo hints, *ai0, *ai; |
| 352 | int gai; |
| Alex Riesen | ba50532 | 2007-05-23 21:34:27 | [diff] [blame] | 353 | int cnt = 0; |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 354 | |
| Michael Lukashov | 72a534d | 2010-02-17 20:56:02 | [diff] [blame] | 355 | get_host_and_port(&host, &port); |
| 356 | if (!*port) |
| 357 | port = "<none>"; |
| YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 13:10:36 | [diff] [blame] | 358 | |
| 359 | memset(&hints, 0, sizeof(hints)); |
| Eric Wong | c915f11 | 2016-02-03 04:09:14 | [diff] [blame] | 360 | if (flags & CONNECT_IPV4) |
| 361 | hints.ai_family = AF_INET; |
| 362 | else if (flags & CONNECT_IPV6) |
| 363 | hints.ai_family = AF_INET6; |
| YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 13:10:36 | [diff] [blame] | 364 | hints.ai_socktype = SOCK_STREAM; |
| 365 | hints.ai_protocol = IPPROTO_TCP; |
| 366 | |
| Michael S. Tsirkin | 7841ce7 | 2007-05-16 17:09:41 | [diff] [blame] | 367 | if (flags & CONNECT_VERBOSE) |
| 368 | fprintf(stderr, "Looking up %s ... ", host); |
| 369 | |
| YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 13:10:36 | [diff] [blame] | 370 | gai = getaddrinfo(host, port, &hints, &ai); |
| 371 | if (gai) |
| Linus Torvalds | 608d48b | 2007-03-27 16:50:20 | [diff] [blame] | 372 | die("Unable to look up %s (port %s) (%s)", host, port, gai_strerror(gai)); |
| YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 13:10:36 | [diff] [blame] | 373 | |
| Michael S. Tsirkin | 7841ce7 | 2007-05-16 17:09:41 | [diff] [blame] | 374 | if (flags & CONNECT_VERBOSE) |
| 375 | fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port); |
| 376 | |
| Erik Faye-Lund | e08afec | 2011-08-01 11:16:09 | [diff] [blame] | 377 | for (ai0 = ai; ai; ai = ai->ai_next, cnt++) { |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 378 | sockfd = socket(ai->ai_family, |
| 379 | ai->ai_socktype, ai->ai_protocol); |
| Dave Zarzycki | 63a995b | 2011-07-12 16:28:34 | [diff] [blame] | 380 | if ((sockfd < 0) || |
| 381 | (connect(sockfd, ai->ai_addr, ai->ai_addrlen) < 0)) { |
| 382 | strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n", |
| 383 | host, cnt, ai_name(ai), strerror(errno)); |
| 384 | if (0 <= sockfd) |
| 385 | close(sockfd); |
| YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 13:10:36 | [diff] [blame] | 386 | sockfd = -1; |
| 387 | continue; |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 388 | } |
| Alex Riesen | ba50532 | 2007-05-23 21:34:27 | [diff] [blame] | 389 | if (flags & CONNECT_VERBOSE) |
| 390 | fprintf(stderr, "%s ", ai_name(ai)); |
| YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 13:10:36 | [diff] [blame] | 391 | break; |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 392 | } |
| 393 | |
| YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 13:10:36 | [diff] [blame] | 394 | freeaddrinfo(ai0); |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 395 | |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 396 | if (sockfd < 0) |
| Dave Zarzycki | 63a995b | 2011-07-12 16:28:34 | [diff] [blame] | 397 | die("unable to connect to %s:\n%s", host, error_message.buf); |
| YOSHIFUJI Hideaki | 5ba8844 | 2005-07-21 13:10:36 | [diff] [blame] | 398 | |
| Eric Wong | e47a858 | 2011-12-06 04:39:36 | [diff] [blame] | 399 | enable_keepalive(sockfd); |
| 400 | |
| Michael S. Tsirkin | 7841ce7 | 2007-05-16 17:09:41 | [diff] [blame] | 401 | if (flags & CONNECT_VERBOSE) |
| 402 | fprintf(stderr, "done.\n"); |
| 403 | |
| Dave Zarzycki | 63a995b | 2011-07-12 16:28:34 | [diff] [blame] | 404 | strbuf_release(&error_message); |
| 405 | |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 406 | return sockfd; |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 407 | } |
| 408 | |
| hpa | 49744d6 | 2005-09-28 23:52:21 | [diff] [blame] | 409 | #else /* NO_IPV6 */ |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 410 | |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 411 | /* |
| 412 | * Returns a connected socket() fd, or else die()s. |
| 413 | */ |
| Michael S. Tsirkin | 7841ce7 | 2007-05-16 17:09:41 | [diff] [blame] | 414 | static int git_tcp_connect_sock(char *host, int flags) |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 415 | { |
| Erik Faye-Lund | 7203a2d | 2011-08-01 11:16:10 | [diff] [blame] | 416 | struct strbuf error_message = STRBUF_INIT; |
| 417 | int sockfd = -1; |
| Michael Lukashov | 72a534d | 2010-02-17 20:56:02 | [diff] [blame] | 418 | const char *port = STR(DEFAULT_GIT_PORT); |
| 419 | char *ep; |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 420 | struct hostent *he; |
| 421 | struct sockaddr_in sa; |
| 422 | char **ap; |
| 423 | unsigned int nport; |
| Alex Riesen | ba50532 | 2007-05-23 21:34:27 | [diff] [blame] | 424 | int cnt; |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 425 | |
| Michael Lukashov | 72a534d | 2010-02-17 20:56:02 | [diff] [blame] | 426 | get_host_and_port(&host, &port); |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 427 | |
| Michael S. Tsirkin | 7841ce7 | 2007-05-16 17:09:41 | [diff] [blame] | 428 | if (flags & CONNECT_VERBOSE) |
| 429 | fprintf(stderr, "Looking up %s ... ", host); |
| 430 | |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 431 | he = gethostbyname(host); |
| 432 | if (!he) |
| 433 | die("Unable to look up %s (%s)", host, hstrerror(h_errno)); |
| 434 | nport = strtoul(port, &ep, 10); |
| 435 | if ( ep == port || *ep ) { |
| 436 | /* Not numeric */ |
| 437 | struct servent *se = getservbyname(port,"tcp"); |
| 438 | if ( !se ) |
| Alexander Potashev | d753070 | 2009-01-04 18:38:41 | [diff] [blame] | 439 | die("Unknown port %s", port); |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 440 | nport = se->s_port; |
| 441 | } |
| 442 | |
| Michael S. Tsirkin | 7841ce7 | 2007-05-16 17:09:41 | [diff] [blame] | 443 | if (flags & CONNECT_VERBOSE) |
| 444 | fprintf(stderr, "done.\nConnecting to %s (port %s) ... ", host, port); |
| 445 | |
| Alex Riesen | ba50532 | 2007-05-23 21:34:27 | [diff] [blame] | 446 | for (cnt = 0, ap = he->h_addr_list; *ap; ap++, cnt++) { |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 447 | memset(&sa, 0, sizeof sa); |
| 448 | sa.sin_family = he->h_addrtype; |
| Peter Anvin | 6573faf | 2005-09-29 00:26:44 | [diff] [blame] | 449 | sa.sin_port = htons(nport); |
| Paul Serice | c616421 | 2005-11-22 13:54:23 | [diff] [blame] | 450 | memcpy(&sa.sin_addr, *ap, he->h_length); |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 451 | |
| Erik Faye-Lund | 7203a2d | 2011-08-01 11:16:10 | [diff] [blame] | 452 | sockfd = socket(he->h_addrtype, SOCK_STREAM, 0); |
| 453 | if ((sockfd < 0) || |
| 454 | connect(sockfd, (struct sockaddr *)&sa, sizeof sa) < 0) { |
| 455 | strbuf_addf(&error_message, "%s[%d: %s]: errno=%s\n", |
| Alex Riesen | ba50532 | 2007-05-23 21:34:27 | [diff] [blame] | 456 | host, |
| 457 | cnt, |
| 458 | inet_ntoa(*(struct in_addr *)&sa.sin_addr), |
| Erik Faye-Lund | 7203a2d | 2011-08-01 11:16:10 | [diff] [blame] | 459 | strerror(errno)); |
| 460 | if (0 <= sockfd) |
| 461 | close(sockfd); |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 462 | sockfd = -1; |
| 463 | continue; |
| 464 | } |
| Alex Riesen | ba50532 | 2007-05-23 21:34:27 | [diff] [blame] | 465 | if (flags & CONNECT_VERBOSE) |
| 466 | fprintf(stderr, "%s ", |
| 467 | inet_ntoa(*(struct in_addr *)&sa.sin_addr)); |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 468 | break; |
| 469 | } |
| 470 | |
| 471 | if (sockfd < 0) |
| Erik Faye-Lund | 7203a2d | 2011-08-01 11:16:10 | [diff] [blame] | 472 | die("unable to connect to %s:\n%s", host, error_message.buf); |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 473 | |
| Eric Wong | e47a858 | 2011-12-06 04:39:36 | [diff] [blame] | 474 | enable_keepalive(sockfd); |
| 475 | |
| Michael S. Tsirkin | 7841ce7 | 2007-05-16 17:09:41 | [diff] [blame] | 476 | if (flags & CONNECT_VERBOSE) |
| 477 | fprintf(stderr, "done.\n"); |
| 478 | |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 479 | return sockfd; |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 480 | } |
| 481 | |
| hpa | 49744d6 | 2005-09-28 23:52:21 | [diff] [blame] | 482 | #endif /* NO_IPV6 */ |
| hpa | 4c505f7 | 2005-09-28 23:37:58 | [diff] [blame] | 483 | |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 484 | |
| Michael S. Tsirkin | 7841ce7 | 2007-05-16 17:09:41 | [diff] [blame] | 485 | static void git_tcp_connect(int fd[2], char *host, int flags) |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 486 | { |
| Michael S. Tsirkin | 7841ce7 | 2007-05-16 17:09:41 | [diff] [blame] | 487 | int sockfd = git_tcp_connect_sock(host, flags); |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 488 | |
| 489 | fd[0] = sockfd; |
| Junio C Hamano | ec587fd | 2007-01-22 01:10:51 | [diff] [blame] | 490 | fd[1] = dup(sockfd); |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 491 | } |
| 492 | |
| 493 | |
| David Rientjes | 96f1e58 | 2006-08-15 17:23:48 | [diff] [blame] | 494 | static char *git_proxy_command; |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 495 | |
| Johannes Schindelin | ef90d6d | 2008-05-14 17:46:53 | [diff] [blame] | 496 | static int git_proxy_command_options(const char *var, const char *value, |
| 497 | void *cb) |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 498 | { |
| Junio C Hamano | e814bc4 | 2005-11-19 11:48:56 | [diff] [blame] | 499 | if (!strcmp(var, "core.gitproxy")) { |
| YOSHIFUJI Hideaki / 吉藤英明 | c3df856 | 2005-11-22 03:18:23 | [diff] [blame] | 500 | const char *for_pos; |
| 501 | int matchlen = -1; |
| 502 | int hostlen; |
| Erik Faye-Lund | 15112c9 | 2009-03-11 02:38:12 | [diff] [blame] | 503 | const char *rhost_name = cb; |
| 504 | int rhost_len = strlen(rhost_name); |
| YOSHIFUJI Hideaki / 吉藤英明 | c3df856 | 2005-11-22 03:18:23 | [diff] [blame] | 505 | |
| Junio C Hamano | e814bc4 | 2005-11-19 11:48:56 | [diff] [blame] | 506 | if (git_proxy_command) |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 507 | return 0; |
| Junio C Hamano | c64b9ad | 2008-02-11 18:52:15 | [diff] [blame] | 508 | if (!value) |
| 509 | return config_error_nonbool(var); |
| Junio C Hamano | e814bc4 | 2005-11-19 11:48:56 | [diff] [blame] | 510 | /* [core] |
| 511 | * ;# matches www.kernel.org as well |
| 512 | * gitproxy = netcatter-1 for kernel.org |
| 513 | * gitproxy = netcatter-2 for sample.xz |
| 514 | * gitproxy = netcatter-default |
| 515 | */ |
| YOSHIFUJI Hideaki / 吉藤英明 | c3df856 | 2005-11-22 03:18:23 | [diff] [blame] | 516 | for_pos = strstr(value, " for "); |
| Junio C Hamano | e814bc4 | 2005-11-19 11:48:56 | [diff] [blame] | 517 | if (!for_pos) |
| 518 | /* matches everybody */ |
| 519 | matchlen = strlen(value); |
| 520 | else { |
| 521 | hostlen = strlen(for_pos + 5); |
| 522 | if (rhost_len < hostlen) |
| 523 | matchlen = -1; |
| 524 | else if (!strncmp(for_pos + 5, |
| 525 | rhost_name + rhost_len - hostlen, |
| 526 | hostlen) && |
| 527 | ((rhost_len == hostlen) || |
| 528 | rhost_name[rhost_len - hostlen -1] == '.')) |
| 529 | matchlen = for_pos - value; |
| 530 | else |
| 531 | matchlen = -1; |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 532 | } |
| Junio C Hamano | e814bc4 | 2005-11-19 11:48:56 | [diff] [blame] | 533 | if (0 <= matchlen) { |
| 534 | /* core.gitproxy = none for kernel.org */ |
| Junio C Hamano | a6080a0 | 2007-06-07 07:04:01 | [diff] [blame] | 535 | if (matchlen == 4 && |
| Junio C Hamano | e814bc4 | 2005-11-19 11:48:56 | [diff] [blame] | 536 | !memcmp(value, "none", 4)) |
| 537 | matchlen = 0; |
| Pierre Habouzit | 182af83 | 2007-09-15 22:32:36 | [diff] [blame] | 538 | git_proxy_command = xmemdupz(value, matchlen); |
| Junio C Hamano | e814bc4 | 2005-11-19 11:48:56 | [diff] [blame] | 539 | } |
| 540 | return 0; |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 541 | } |
| 542 | |
| Johannes Schindelin | ef90d6d | 2008-05-14 17:46:53 | [diff] [blame] | 543 | return git_default_config(var, value, cb); |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 544 | } |
| 545 | |
| Junio C Hamano | e814bc4 | 2005-11-19 11:48:56 | [diff] [blame] | 546 | static int git_use_proxy(const char *host) |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 547 | { |
| 548 | git_proxy_command = getenv("GIT_PROXY_COMMAND"); |
| Erik Faye-Lund | 15112c9 | 2009-03-11 02:38:12 | [diff] [blame] | 549 | git_config(git_proxy_command_options, (void*)host); |
| Junio C Hamano | e814bc4 | 2005-11-19 11:48:56 | [diff] [blame] | 550 | return (git_proxy_command && *git_proxy_command); |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 551 | } |
| 552 | |
| Jeff King | 5cbf824 | 2011-05-16 06:46:07 | [diff] [blame] | 553 | static struct child_process *git_proxy_connect(int fd[2], char *host) |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 554 | { |
| Timo Hirvonen | 554fe20 | 2006-06-28 09:04:39 | [diff] [blame] | 555 | const char *port = STR(DEFAULT_GIT_PORT); |
| Jeff King | 5cbf824 | 2011-05-16 06:46:07 | [diff] [blame] | 556 | struct child_process *proxy; |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 557 | |
| Michael Lukashov | 72a534d | 2010-02-17 20:56:02 | [diff] [blame] | 558 | get_host_and_port(&host, &port); |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 559 | |
| Jeff King | 3be4cf0 | 2017-07-28 19:26:50 | [diff] [blame] | 560 | if (looks_like_command_line_option(host)) |
| 561 | die("strange hostname '%s' blocked", host); |
| 562 | if (looks_like_command_line_option(port)) |
| 563 | die("strange port '%s' blocked", port); |
| 564 | |
| René Scharfe | 483bbd4 | 2014-08-19 19:10:48 | [diff] [blame] | 565 | proxy = xmalloc(sizeof(*proxy)); |
| 566 | child_process_init(proxy); |
| Jeff King | 1823bea | 2014-05-15 08:34:09 | [diff] [blame] | 567 | argv_array_push(&proxy->args, git_proxy_command); |
| 568 | argv_array_push(&proxy->args, host); |
| 569 | argv_array_push(&proxy->args, port); |
| Jeff King | 5cbf824 | 2011-05-16 06:46:07 | [diff] [blame] | 570 | proxy->in = -1; |
| 571 | proxy->out = -1; |
| 572 | if (start_command(proxy)) |
| Jeff King | 1823bea | 2014-05-15 08:34:09 | [diff] [blame] | 573 | die("cannot start proxy %s", git_proxy_command); |
| Jeff King | 5cbf824 | 2011-05-16 06:46:07 | [diff] [blame] | 574 | fd[0] = proxy->out; /* read from proxy stdout */ |
| 575 | fd[1] = proxy->in; /* write to proxy stdin */ |
| 576 | return proxy; |
| Paul Collins | f801477 | 2005-11-04 14:57:16 | [diff] [blame] | 577 | } |
| 578 | |
| Torsten Bögershausen | 86ceb33 | 2015-02-21 15:52:48 | [diff] [blame] | 579 | static char *get_port(char *host) |
| Luben Tuikov | 2e77666 | 2007-09-01 09:36:31 | [diff] [blame] | 580 | { |
| 581 | char *end; |
| Torsten Bögershausen | 86ceb33 | 2015-02-21 15:52:48 | [diff] [blame] | 582 | char *p = strchr(host, ':'); |
| 583 | |
| Luben Tuikov | 2e77666 | 2007-09-01 09:36:31 | [diff] [blame] | 584 | if (p) { |
| René Scharfe | 8f14825 | 2008-12-21 01:12:11 | [diff] [blame] | 585 | long port = strtol(p + 1, &end, 10); |
| 586 | if (end != p + 1 && *end == '\0' && 0 <= port && port < 65536) { |
| Torsten Bögershausen | 86ceb33 | 2015-02-21 15:52:48 | [diff] [blame] | 587 | *p = '\0'; |
| 588 | return p+1; |
| Luben Tuikov | 2e77666 | 2007-09-01 09:36:31 | [diff] [blame] | 589 | } |
| 590 | } |
| 591 | |
| 592 | return NULL; |
| 593 | } |
| 594 | |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 595 | /* |
| Johannes Sixt | cabc3c1 | 2013-11-28 19:49:01 | [diff] [blame] | 596 | * Extract protocol and relevant parts from the specified connection URL. |
| 597 | * The caller must free() the returned strings. |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 598 | */ |
| Johannes Sixt | cabc3c1 | 2013-11-28 19:49:01 | [diff] [blame] | 599 | static enum protocol parse_connect_url(const char *url_orig, char **ret_host, |
| Torsten Bögershausen | 83b0587 | 2013-11-28 19:49:54 | [diff] [blame] | 600 | char **ret_path) |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 601 | { |
| Jeff King | 9d2e942 | 2010-05-23 09:19:44 | [diff] [blame] | 602 | char *url; |
| Benjamin Kramer | 8e76bf3 | 2009-03-13 12:51:33 | [diff] [blame] | 603 | char *host, *path; |
| YOSHIFUJI Hideaki / 吉藤英明 | 356bece | 2005-12-21 10:23:42 | [diff] [blame] | 604 | char *end; |
| Torsten Bögershausen | c59ab2e | 2013-11-28 19:50:03 | [diff] [blame] | 605 | int separator = '/'; |
| Andreas Ericsson | faea9cc | 2005-11-17 19:37:14 | [diff] [blame] | 606 | enum protocol protocol = PROTO_LOCAL; |
| Junio C Hamano | f0b7367 | 2006-06-20 01:25:21 | [diff] [blame] | 607 | |
| Jeff King | 9d2e942 | 2010-05-23 09:19:44 | [diff] [blame] | 608 | if (is_url(url_orig)) |
| 609 | url = url_decode(url_orig); |
| 610 | else |
| 611 | url = xstrdup(url_orig); |
| 612 | |
| Andreas Ericsson | faea9cc | 2005-11-17 19:37:14 | [diff] [blame] | 613 | host = strstr(url, "://"); |
| Brian Gianforcaro | eeefa7c | 2009-09-01 05:35:10 | [diff] [blame] | 614 | if (host) { |
| Andreas Ericsson | faea9cc | 2005-11-17 19:37:14 | [diff] [blame] | 615 | *host = '\0'; |
| 616 | protocol = get_protocol(url); |
| 617 | host += 3; |
| YOSHIFUJI Hideaki / 吉藤英明 | 356bece | 2005-12-21 10:23:42 | [diff] [blame] | 618 | } else { |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 619 | host = url; |
| Torsten Bögershausen | c59ab2e | 2013-11-28 19:50:03 | [diff] [blame] | 620 | if (!url_is_local_not_ssh(url)) { |
| 621 | protocol = PROTO_SSH; |
| 622 | separator = ':'; |
| 623 | } |
| YOSHIFUJI Hideaki / 吉藤英明 | 356bece | 2005-12-21 10:23:42 | [diff] [blame] | 624 | } |
| 625 | |
| Ilari Liusvaara | 9aa5053 | 2010-01-26 18:24:42 | [diff] [blame] | 626 | /* |
| Torsten Bögershausen | 83b0587 | 2013-11-28 19:49:54 | [diff] [blame] | 627 | * Don't do destructive transforms as protocol code does |
| 628 | * '[]' unwrapping in get_host_and_port() |
| Ilari Liusvaara | 9aa5053 | 2010-01-26 18:24:42 | [diff] [blame] | 629 | */ |
| Torsten Bögershausen | 86ceb33 | 2015-02-21 15:52:48 | [diff] [blame] | 630 | end = host_end(&host, 0); |
| YOSHIFUJI Hideaki / 吉藤英明 | 356bece | 2005-12-21 10:23:42 | [diff] [blame] | 631 | |
| Torsten Bögershausen | c59ab2e | 2013-11-28 19:50:03 | [diff] [blame] | 632 | if (protocol == PROTO_LOCAL) |
| Linus Torvalds | 72a4f4b | 2007-08-01 17:03:37 | [diff] [blame] | 633 | path = end; |
| Torsten Bögershausen | c59ab2e | 2013-11-28 19:50:03 | [diff] [blame] | 634 | else if (protocol == PROTO_FILE && has_dos_drive_prefix(end)) |
| 635 | path = end; /* "file://$(pwd)" may be "file://C:/projects/repo" */ |
| 636 | else |
| 637 | path = strchr(end, separator); |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 638 | |
| Andreas Ericsson | faea9cc | 2005-11-17 19:37:14 | [diff] [blame] | 639 | if (!path || !*path) |
| 640 | die("No path specified. See 'man git-pull' for valid url syntax"); |
| 641 | |
| 642 | /* |
| 643 | * null-terminate hostname and point path to ~ for URL's like this: |
| 644 | * ssh://host.xz/~user/repo |
| 645 | */ |
| Torsten Bögershausen | c59ab2e | 2013-11-28 19:50:03 | [diff] [blame] | 646 | |
| 647 | end = path; /* Need to \0 terminate host here */ |
| 648 | if (separator == ':') |
| 649 | path++; /* path starts after ':' */ |
| 650 | if (protocol == PROTO_GIT || protocol == PROTO_SSH) { |
| Andreas Ericsson | faea9cc | 2005-11-17 19:37:14 | [diff] [blame] | 651 | if (path[1] == '~') |
| 652 | path++; |
| Andreas Ericsson | faea9cc | 2005-11-17 19:37:14 | [diff] [blame] | 653 | } |
| 654 | |
| Torsten Bögershausen | c59ab2e | 2013-11-28 19:50:03 | [diff] [blame] | 655 | path = xstrdup(path); |
| 656 | *end = '\0'; |
| 657 | |
| Johannes Sixt | cabc3c1 | 2013-11-28 19:49:01 | [diff] [blame] | 658 | *ret_host = xstrdup(host); |
| Torsten Bögershausen | c59ab2e | 2013-11-28 19:50:03 | [diff] [blame] | 659 | *ret_path = path; |
| Johannes Sixt | cabc3c1 | 2013-11-28 19:49:01 | [diff] [blame] | 660 | free(url); |
| 661 | return protocol; |
| 662 | } |
| 663 | |
| René Scharfe | d318027 | 2014-08-19 19:09:35 | [diff] [blame] | 664 | static struct child_process no_fork = CHILD_PROCESS_INIT; |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 665 | |
| Nguyễn Thái Ngọc Duy | 3c8ede3 | 2016-06-26 11:16:35 | [diff] [blame] | 666 | static const char *get_ssh_command(void) |
| 667 | { |
| 668 | const char *ssh; |
| 669 | |
| 670 | if ((ssh = getenv("GIT_SSH_COMMAND"))) |
| 671 | return ssh; |
| 672 | |
| 673 | if (!git_config_get_string_const("core.sshcommand", &ssh)) |
| 674 | return ssh; |
| 675 | |
| 676 | return NULL; |
| 677 | } |
| 678 | |
| Johannes Schindelin | fb32c91 | 2008-02-10 03:06:57 | [diff] [blame] | 679 | /* |
| 680 | * This returns a dummy child_process if the transport protocol does not |
| 681 | * need fork(2), or a struct child_process object if it does. Once done, |
| 682 | * finish the connection with finish_connect() with the value returned from |
| 683 | * this function (it is safe to call finish_connect() with NULL to support |
| Franck Bui-Huu | f42a5c4 | 2006-09-12 09:00:13 | [diff] [blame] | 684 | * the former case). |
| Johannes Schindelin | fb32c91 | 2008-02-10 03:06:57 | [diff] [blame] | 685 | * |
| 686 | * If it returns, the connect is successful; it just dies on errors (this |
| 687 | * will hopefully be changed in a libification effort, to return NULL when |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 688 | * the connection failed). |
| Daniel Barkalow | 4577370 | 2007-10-30 01:05:40 | [diff] [blame] | 689 | */ |
| Johannes Sixt | cabc3c1 | 2013-11-28 19:49:01 | [diff] [blame] | 690 | struct child_process *git_connect(int fd[2], const char *url, |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 691 | const char *prog, int flags) |
| Daniel Barkalow | 4577370 | 2007-10-30 01:05:40 | [diff] [blame] | 692 | { |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 693 | char *hostandport, *path; |
| Andreas Ericsson | faea9cc | 2005-11-17 19:37:14 | [diff] [blame] | 694 | struct child_process *conn = &no_fork; |
| Johannes Sixt | cabc3c1 | 2013-11-28 19:49:01 | [diff] [blame] | 695 | enum protocol protocol; |
| Johannes Sixt | cabc3c1 | 2013-11-28 19:49:01 | [diff] [blame] | 696 | struct strbuf cmd = STRBUF_INIT; |
| Junio C Hamano | f0b7367 | 2006-06-20 01:25:21 | [diff] [blame] | 697 | |
| 698 | /* Without this we cannot rely on waitpid() to tell |
| 699 | * what happened to our children. |
| 700 | */ |
| 701 | signal(SIGCHLD, SIG_DFL); |
| Andreas Ericsson | faea9cc | 2005-11-17 19:37:14 | [diff] [blame] | 702 | |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 703 | protocol = parse_connect_url(url, &hostandport, &path); |
| Torsten Bögershausen | 3f55cca | 2015-02-21 15:52:55 | [diff] [blame] | 704 | if ((flags & CONNECT_DIAG_URL) && (protocol != PROTO_SSH)) { |
| Torsten Bögershausen | 5610b7c | 2013-11-28 19:49:17 | [diff] [blame] | 705 | printf("Diag: url=%s\n", url ? url : "NULL"); |
| 706 | printf("Diag: protocol=%s\n", prot_name(protocol)); |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 707 | printf("Diag: hostandport=%s\n", hostandport ? hostandport : "NULL"); |
| Torsten Bögershausen | 5610b7c | 2013-11-28 19:49:17 | [diff] [blame] | 708 | printf("Diag: path=%s\n", path ? path : "NULL"); |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 709 | conn = NULL; |
| 710 | } else if (protocol == PROTO_GIT) { |
| Jeff King | 94bc83c | 2015-02-17 08:37:35 | [diff] [blame] | 711 | /* |
| 712 | * Set up virtual host information based on where we will |
| 713 | * connect, unless the user has overridden us in |
| 714 | * the environment. |
| 715 | */ |
| 716 | char *target_host = getenv("GIT_OVERRIDE_VIRTUAL_HOST"); |
| 717 | if (target_host) |
| 718 | target_host = xstrdup(target_host); |
| 719 | else |
| 720 | target_host = xstrdup(hostandport); |
| 721 | |
| Jeff King | a5adace | 2015-09-16 17:12:52 | [diff] [blame] | 722 | transport_check_allowed("git"); |
| 723 | |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 724 | /* These underlying connection commands die() if they |
| 725 | * cannot connect. |
| 726 | */ |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 727 | if (git_use_proxy(hostandport)) |
| 728 | conn = git_proxy_connect(fd, hostandport); |
| Serge E. Hallyn | da2a95b | 2006-04-17 15:14:47 | [diff] [blame] | 729 | else |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 730 | git_tcp_connect(fd, hostandport, flags); |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 731 | /* |
| 732 | * Separate original protocol components prog and path |
| Shawn O. Pearce | 73bb33a | 2009-06-05 01:33:32 | [diff] [blame] | 733 | * from extended host header with a NUL byte. |
| 734 | * |
| 735 | * Note: Do not add any other headers here! Doing so |
| 736 | * will cause older git-daemon servers to crash. |
| Jon Loeliger | 5ad312b | 2006-06-07 03:58:41 | [diff] [blame] | 737 | */ |
| 738 | packet_write(fd[1], |
| 739 | "%s %s%chost=%s%c", |
| 740 | prog, path, 0, |
| 741 | target_host, 0); |
| 742 | free(target_host); |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 743 | } else { |
| René Scharfe | 483bbd4 | 2014-08-19 19:10:48 | [diff] [blame] | 744 | conn = xmalloc(sizeof(*conn)); |
| 745 | child_process_init(conn); |
| Linus Torvalds | 2386d65 | 2005-07-14 01:46:20 | [diff] [blame] | 746 | |
| Jeff King | aeeb2d4 | 2017-07-28 19:28:55 | [diff] [blame] | 747 | if (looks_like_command_line_option(path)) |
| 748 | die("strange pathname '%s' blocked", path); |
| 749 | |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 750 | strbuf_addstr(&cmd, prog); |
| 751 | strbuf_addch(&cmd, ' '); |
| 752 | sq_quote_buf(&cmd, path); |
| Christian Couder | 0f503d7 | 2006-09-11 05:04:50 | [diff] [blame] | 753 | |
| Jeff King | aab4043 | 2015-09-04 22:40:08 | [diff] [blame] | 754 | /* remove repo-local variables from the environment */ |
| 755 | conn->env = local_repo_env; |
| Jeff King | a48b409 | 2015-09-08 08:33:14 | [diff] [blame] | 756 | conn->use_shell = 1; |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 757 | conn->in = conn->out = -1; |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 758 | if (protocol == PROTO_SSH) { |
| Thomas Quinot | 3994276 | 2014-11-09 22:42:32 | [diff] [blame] | 759 | const char *ssh; |
| Jeff King | a48b409 | 2015-09-08 08:33:14 | [diff] [blame] | 760 | int putty = 0, tortoiseplink = 0; |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 761 | char *ssh_host = hostandport; |
| 762 | const char *port = NULL; |
| Jeff King | a5adace | 2015-09-16 17:12:52 | [diff] [blame] | 763 | transport_check_allowed("ssh"); |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 764 | get_host_and_port(&ssh_host, &port); |
| Christian Couder | 0f503d7 | 2006-09-11 05:04:50 | [diff] [blame] | 765 | |
| Torsten Bögershausen | 86ceb33 | 2015-02-21 15:52:48 | [diff] [blame] | 766 | if (!port) |
| 767 | port = get_port(ssh_host); |
| Junio C Hamano | 42da484 | 2015-03-05 20:45:44 | [diff] [blame] | 768 | |
| Torsten Bögershausen | 3f55cca | 2015-02-21 15:52:55 | [diff] [blame] | 769 | if (flags & CONNECT_DIAG_URL) { |
| 770 | printf("Diag: url=%s\n", url ? url : "NULL"); |
| 771 | printf("Diag: protocol=%s\n", prot_name(protocol)); |
| 772 | printf("Diag: userandhost=%s\n", ssh_host ? ssh_host : "NULL"); |
| 773 | printf("Diag: port=%s\n", port ? port : "NONE"); |
| 774 | printf("Diag: path=%s\n", path ? path : "NULL"); |
| Christian Couder | 0f503d7 | 2006-09-11 05:04:50 | [diff] [blame] | 775 | |
| Torsten Bögershausen | 3f55cca | 2015-02-21 15:52:55 | [diff] [blame] | 776 | free(hostandport); |
| 777 | free(path); |
| Stefan Beller | 04f20c0 | 2015-03-09 16:58:22 | [diff] [blame] | 778 | free(conn); |
| Torsten Bögershausen | 3f55cca | 2015-02-21 15:52:55 | [diff] [blame] | 779 | return NULL; |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 780 | } |
| brian m. carlson | 37ee646 | 2015-04-26 20:30:10 | [diff] [blame] | 781 | |
| Jeff King | 2491f77 | 2017-07-28 19:25:45 | [diff] [blame] | 782 | if (looks_like_command_line_option(ssh_host)) |
| Junio C Hamano | 820d765 | 2017-07-26 17:24:20 | [diff] [blame] | 783 | die("strange hostname '%s' blocked", ssh_host); |
| 784 | |
| Nguyễn Thái Ngọc Duy | 3c8ede3 | 2016-06-26 11:16:35 | [diff] [blame] | 785 | ssh = get_ssh_command(); |
| Jeff King | a48b409 | 2015-09-08 08:33:14 | [diff] [blame] | 786 | if (!ssh) { |
| brian m. carlson | baaf233 | 2015-04-26 20:30:12 | [diff] [blame] | 787 | const char *base; |
| 788 | char *ssh_dup; |
| 789 | |
| Jeff King | a48b409 | 2015-09-08 08:33:14 | [diff] [blame] | 790 | /* |
| 791 | * GIT_SSH is the no-shell version of |
| 792 | * GIT_SSH_COMMAND (and must remain so for |
| 793 | * historical compatibility). |
| 794 | */ |
| 795 | conn->use_shell = 0; |
| 796 | |
| brian m. carlson | 37ee646 | 2015-04-26 20:30:10 | [diff] [blame] | 797 | ssh = getenv("GIT_SSH"); |
| 798 | if (!ssh) |
| 799 | ssh = "ssh"; |
| brian m. carlson | baaf233 | 2015-04-26 20:30:12 | [diff] [blame] | 800 | |
| 801 | ssh_dup = xstrdup(ssh); |
| 802 | base = basename(ssh_dup); |
| 803 | |
| 804 | tortoiseplink = !strcasecmp(base, "tortoiseplink") || |
| 805 | !strcasecmp(base, "tortoiseplink.exe"); |
| Jeff King | a48b409 | 2015-09-08 08:33:14 | [diff] [blame] | 806 | putty = tortoiseplink || |
| 807 | !strcasecmp(base, "plink") || |
| 808 | !strcasecmp(base, "plink.exe"); |
| brian m. carlson | baaf233 | 2015-04-26 20:30:12 | [diff] [blame] | 809 | |
| 810 | free(ssh_dup); |
| brian m. carlson | 37ee646 | 2015-04-26 20:30:10 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | argv_array_push(&conn->args, ssh); |
| Eric Wong | c915f11 | 2016-02-03 04:09:14 | [diff] [blame] | 814 | if (flags & CONNECT_IPV4) |
| 815 | argv_array_push(&conn->args, "-4"); |
| 816 | else if (flags & CONNECT_IPV6) |
| 817 | argv_array_push(&conn->args, "-6"); |
| brian m. carlson | baaf233 | 2015-04-26 20:30:12 | [diff] [blame] | 818 | if (tortoiseplink) |
| brian m. carlson | 37ee646 | 2015-04-26 20:30:10 | [diff] [blame] | 819 | argv_array_push(&conn->args, "-batch"); |
| 820 | if (port) { |
| 821 | /* P is for PuTTY, p is for OpenSSH */ |
| 822 | argv_array_push(&conn->args, putty ? "-P" : "-p"); |
| 823 | argv_array_push(&conn->args, port); |
| 824 | } |
| 825 | argv_array_push(&conn->args, ssh_host); |
| Nguyễn Thái Ngọc Duy | c049b61 | 2014-03-13 11:45:31 | [diff] [blame] | 826 | } else { |
| Jeff King | a5adace | 2015-09-16 17:12:52 | [diff] [blame] | 827 | transport_check_allowed("file"); |
| Martin Sivak | 4852f72 | 2005-08-03 15:15:42 | [diff] [blame] | 828 | } |
| Jeff King | 1823bea | 2014-05-15 08:34:09 | [diff] [blame] | 829 | argv_array_push(&conn->args, cmd.buf); |
| Johannes Sixt | f364cb8 | 2007-10-19 19:47:54 | [diff] [blame] | 830 | |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 831 | if (start_command(conn)) |
| 832 | die("unable to fork"); |
| Johannes Sixt | f364cb8 | 2007-10-19 19:47:54 | [diff] [blame] | 833 | |
| Torsten Bögershausen | a2036d7 | 2013-11-28 19:50:15 | [diff] [blame] | 834 | fd[0] = conn->out; /* read from child's stdout */ |
| 835 | fd[1] = conn->in; /* write to child's stdin */ |
| 836 | strbuf_release(&cmd); |
| 837 | } |
| 838 | free(hostandport); |
| Johannes Sixt | cabc3c1 | 2013-11-28 19:49:01 | [diff] [blame] | 839 | free(path); |
| Johannes Sixt | 98158e9 | 2007-10-19 19:47:53 | [diff] [blame] | 840 | return conn; |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 841 | } |
| 842 | |
| Jeff King | 7ffe853 | 2011-05-16 06:52:11 | [diff] [blame] | 843 | int git_connection_is_socket(struct child_process *conn) |
| 844 | { |
| 845 | return conn == &no_fork; |
| 846 | } |
| 847 | |
| Johannes Sixt | 98158e9 | 2007-10-19 19:47:53 | [diff] [blame] | 848 | int finish_connect(struct child_process *conn) |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 849 | { |
| Johannes Sixt | f364cb8 | 2007-10-19 19:47:54 | [diff] [blame] | 850 | int code; |
| Jeff King | 7ffe853 | 2011-05-16 06:52:11 | [diff] [blame] | 851 | if (!conn || git_connection_is_socket(conn)) |
| Franck Bui-Huu | f42a5c4 | 2006-09-12 09:00:13 | [diff] [blame] | 852 | return 0; |
| 853 | |
| Johannes Sixt | f364cb8 | 2007-10-19 19:47:54 | [diff] [blame] | 854 | code = finish_command(conn); |
| Johannes Sixt | 98158e9 | 2007-10-19 19:47:53 | [diff] [blame] | 855 | free(conn); |
| Johannes Sixt | f364cb8 | 2007-10-19 19:47:54 | [diff] [blame] | 856 | return code; |
| Linus Torvalds | f719259 | 2005-07-04 18:57:58 | [diff] [blame] | 857 | } |