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