Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1 | #include "cache.h" |
Brandon Williams | b2141fc | 2017-06-14 11:07:36 -0700 | [diff] [blame] | 2 | #include "config.h" |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 3 | #include "remote.h" |
Brandon Williams | ad6ac12 | 2018-03-14 11:31:45 -0700 | [diff] [blame] | 4 | #include "connect.h" |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 5 | #include "strbuf.h" |
| 6 | #include "walker.h" |
| 7 | #include "http.h" |
Stefan Beller | d807c4a | 2018-04-10 14:26:18 -0700 | [diff] [blame] | 8 | #include "exec-cmd.h" |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 9 | #include "run-command.h" |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 10 | #include "pkt-line.h" |
Junio C Hamano | 05c1eb1 | 2013-08-02 15:14:50 -0700 | [diff] [blame] | 11 | #include "string-list.h" |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 12 | #include "sideband.h" |
Jeff King | dbbcd44 | 2020-07-28 16:23:39 -0400 | [diff] [blame] | 13 | #include "strvec.h" |
Jeff King | 2501aff | 2013-09-28 04:31:45 -0400 | [diff] [blame] | 14 | #include "credential.h" |
Jeff King | fe299ec | 2020-03-30 10:03:46 -0400 | [diff] [blame] | 15 | #include "oid-array.h" |
Dave Borowitz | 3026109 | 2015-08-19 11:26:46 -0400 | [diff] [blame] | 16 | #include "send-pack.h" |
Brandon Williams | ad6ac12 | 2018-03-14 11:31:45 -0700 | [diff] [blame] | 17 | #include "protocol.h" |
Jeff King | 90dce21 | 2018-02-19 14:50:14 -0500 | [diff] [blame] | 18 | #include "quote.h" |
Johannes Schindelin | c1284b2 | 2019-03-04 07:33:46 -0800 | [diff] [blame] | 19 | #include "transport.h" |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 20 | |
Shawn O. Pearce | 37a8768 | 2009-10-30 17:47:26 -0700 | [diff] [blame] | 21 | static struct remote *remote; |
Jeff King | b227bbc | 2013-09-28 04:35:25 -0400 | [diff] [blame] | 22 | /* always ends with a trailing slash */ |
| 23 | static struct strbuf url = STRBUF_INIT; |
Shawn O. Pearce | 37a8768 | 2009-10-30 17:47:26 -0700 | [diff] [blame] | 24 | |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 25 | struct options { |
| 26 | int verbosity; |
| 27 | unsigned long depth; |
Nguyễn Thái Ngọc Duy | 508ea88 | 2016-06-12 17:53:59 +0700 | [diff] [blame] | 28 | char *deepen_since; |
Nguyễn Thái Ngọc Duy | a45a260 | 2016-06-12 17:54:04 +0700 | [diff] [blame] | 29 | struct string_list deepen_not; |
Brandon Williams | 511155d | 2017-03-22 15:22:00 -0700 | [diff] [blame] | 30 | struct string_list push_options; |
Jeff Hostetler | acb0c57 | 2017-12-08 15:58:44 +0000 | [diff] [blame] | 31 | char *filter; |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 32 | unsigned progress : 1, |
Nguyễn Thái Ngọc Duy | 9ba3804 | 2013-07-21 15:18:05 +0700 | [diff] [blame] | 33 | check_self_contained_and_connected : 1, |
Nguyễn Thái Ngọc Duy | 1609488 | 2013-12-05 20:02:50 +0700 | [diff] [blame] | 34 | cloning : 1, |
| 35 | update_shallow : 1, |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 36 | followtags : 1, |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 37 | dry_run : 1, |
Junio C Hamano | 0ea47f9 | 2014-09-15 14:59:00 -0700 | [diff] [blame] | 38 | thin : 1, |
Dave Borowitz | 3026109 | 2015-08-19 11:26:46 -0400 | [diff] [blame] | 39 | /* One of the SEND_PACK_PUSH_CERT_* constants. */ |
Nguyễn Thái Ngọc Duy | cccf74e | 2016-06-12 17:54:09 +0700 | [diff] [blame] | 40 | push_cert : 2, |
Jonathan Tan | 88e2f9e | 2017-12-05 16:58:49 +0000 | [diff] [blame] | 41 | deepen_relative : 1, |
Jonathan Tan | 42d418d | 2020-08-17 12:48:18 -0700 | [diff] [blame] | 42 | |
| 43 | /* see documentation of corresponding flag in fetch-pack.h */ |
Jonathan Tan | 88e2f9e | 2017-12-05 16:58:49 +0000 | [diff] [blame] | 44 | from_promisor : 1, |
Jonathan Tan | 42d418d | 2020-08-17 12:48:18 -0700 | [diff] [blame] | 45 | |
Robert Coup | 869a0eb | 2022-03-28 14:02:07 +0000 | [diff] [blame] | 46 | refetch : 1, |
brian m. carlson | 7f60501 | 2020-05-25 19:59:04 +0000 | [diff] [blame] | 47 | atomic : 1, |
Srinidhi Kaushik | 3b990aa | 2020-10-03 17:40:45 +0530 | [diff] [blame] | 48 | object_format : 1, |
| 49 | force_if_includes : 1; |
brian m. carlson | 7f60501 | 2020-05-25 19:59:04 +0000 | [diff] [blame] | 50 | const struct git_hash_algo *hash_algo; |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 51 | }; |
| 52 | static struct options options; |
Junio C Hamano | 05c1eb1 | 2013-08-02 15:14:50 -0700 | [diff] [blame] | 53 | static struct string_list cas_options = STRING_LIST_INIT_DUP; |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 54 | |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 55 | static int set_option(const char *name, const char *value) |
| 56 | { |
| 57 | if (!strcmp(name, "verbosity")) { |
| 58 | char *end; |
| 59 | int v = strtol(value, &end, 10); |
| 60 | if (value == end || *end) |
| 61 | return -1; |
| 62 | options.verbosity = v; |
| 63 | return 0; |
| 64 | } |
| 65 | else if (!strcmp(name, "progress")) { |
| 66 | if (!strcmp(value, "true")) |
| 67 | options.progress = 1; |
| 68 | else if (!strcmp(value, "false")) |
| 69 | options.progress = 0; |
| 70 | else |
| 71 | return -1; |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 72 | return 0; |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 73 | } |
| 74 | else if (!strcmp(name, "depth")) { |
| 75 | char *end; |
| 76 | unsigned long v = strtoul(value, &end, 10); |
| 77 | if (value == end || *end) |
| 78 | return -1; |
| 79 | options.depth = v; |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 80 | return 0; |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 81 | } |
Nguyễn Thái Ngọc Duy | 508ea88 | 2016-06-12 17:53:59 +0700 | [diff] [blame] | 82 | else if (!strcmp(name, "deepen-since")) { |
| 83 | options.deepen_since = xstrdup(value); |
| 84 | return 0; |
| 85 | } |
Nguyễn Thái Ngọc Duy | a45a260 | 2016-06-12 17:54:04 +0700 | [diff] [blame] | 86 | else if (!strcmp(name, "deepen-not")) { |
| 87 | string_list_append(&options.deepen_not, value); |
| 88 | return 0; |
| 89 | } |
Nguyễn Thái Ngọc Duy | cccf74e | 2016-06-12 17:54:09 +0700 | [diff] [blame] | 90 | else if (!strcmp(name, "deepen-relative")) { |
| 91 | if (!strcmp(value, "true")) |
| 92 | options.deepen_relative = 1; |
| 93 | else if (!strcmp(value, "false")) |
| 94 | options.deepen_relative = 0; |
| 95 | else |
| 96 | return -1; |
| 97 | return 0; |
| 98 | } |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 99 | else if (!strcmp(name, "followtags")) { |
| 100 | if (!strcmp(value, "true")) |
| 101 | options.followtags = 1; |
| 102 | else if (!strcmp(value, "false")) |
| 103 | options.followtags = 0; |
| 104 | else |
| 105 | return -1; |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 106 | return 0; |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 107 | } |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 108 | else if (!strcmp(name, "dry-run")) { |
| 109 | if (!strcmp(value, "true")) |
| 110 | options.dry_run = 1; |
| 111 | else if (!strcmp(value, "false")) |
| 112 | options.dry_run = 0; |
| 113 | else |
| 114 | return -1; |
| 115 | return 0; |
| 116 | } |
Nguyễn Thái Ngọc Duy | 9ba3804 | 2013-07-21 15:18:05 +0700 | [diff] [blame] | 117 | else if (!strcmp(name, "check-connectivity")) { |
| 118 | if (!strcmp(value, "true")) |
| 119 | options.check_self_contained_and_connected = 1; |
| 120 | else if (!strcmp(value, "false")) |
| 121 | options.check_self_contained_and_connected = 0; |
| 122 | else |
| 123 | return -1; |
| 124 | return 0; |
| 125 | } |
Junio C Hamano | 05c1eb1 | 2013-08-02 15:14:50 -0700 | [diff] [blame] | 126 | else if (!strcmp(name, "cas")) { |
| 127 | struct strbuf val = STRBUF_INIT; |
brian m. carlson | cd85b44 | 2020-07-21 01:15:11 +0000 | [diff] [blame] | 128 | strbuf_addstr(&val, "--force-with-lease="); |
| 129 | if (*value != '"') |
| 130 | strbuf_addstr(&val, value); |
| 131 | else if (unquote_c_style(&val, value, NULL)) |
| 132 | return -1; |
Junio C Hamano | 05c1eb1 | 2013-08-02 15:14:50 -0700 | [diff] [blame] | 133 | string_list_append(&cas_options, val.buf); |
| 134 | strbuf_release(&val); |
| 135 | return 0; |
Srinidhi Kaushik | 3b990aa | 2020-10-03 17:40:45 +0530 | [diff] [blame] | 136 | } else if (!strcmp(name, TRANS_OPT_FORCE_IF_INCLUDES)) { |
| 137 | if (!strcmp(value, "true")) |
| 138 | options.force_if_includes = 1; |
| 139 | else if (!strcmp(value, "false")) |
| 140 | options.force_if_includes = 0; |
| 141 | else |
| 142 | return -1; |
| 143 | return 0; |
Nguyễn Thái Ngọc Duy | 1609488 | 2013-12-05 20:02:50 +0700 | [diff] [blame] | 144 | } else if (!strcmp(name, "cloning")) { |
| 145 | if (!strcmp(value, "true")) |
| 146 | options.cloning = 1; |
| 147 | else if (!strcmp(value, "false")) |
| 148 | options.cloning = 0; |
| 149 | else |
| 150 | return -1; |
| 151 | return 0; |
| 152 | } else if (!strcmp(name, "update-shallow")) { |
| 153 | if (!strcmp(value, "true")) |
| 154 | options.update_shallow = 1; |
| 155 | else if (!strcmp(value, "false")) |
| 156 | options.update_shallow = 0; |
| 157 | else |
| 158 | return -1; |
| 159 | return 0; |
Junio C Hamano | 0ea47f9 | 2014-09-15 14:59:00 -0700 | [diff] [blame] | 160 | } else if (!strcmp(name, "pushcert")) { |
| 161 | if (!strcmp(value, "true")) |
Dave Borowitz | 3026109 | 2015-08-19 11:26:46 -0400 | [diff] [blame] | 162 | options.push_cert = SEND_PACK_PUSH_CERT_ALWAYS; |
Junio C Hamano | 0ea47f9 | 2014-09-15 14:59:00 -0700 | [diff] [blame] | 163 | else if (!strcmp(value, "false")) |
Dave Borowitz | 3026109 | 2015-08-19 11:26:46 -0400 | [diff] [blame] | 164 | options.push_cert = SEND_PACK_PUSH_CERT_NEVER; |
| 165 | else if (!strcmp(value, "if-asked")) |
| 166 | options.push_cert = SEND_PACK_PUSH_CERT_IF_ASKED; |
Junio C Hamano | 0ea47f9 | 2014-09-15 14:59:00 -0700 | [diff] [blame] | 167 | else |
| 168 | return -1; |
| 169 | return 0; |
brian m. carlson | 6f11942 | 2019-10-16 23:45:34 +0000 | [diff] [blame] | 170 | } else if (!strcmp(name, "atomic")) { |
| 171 | if (!strcmp(value, "true")) |
| 172 | options.atomic = 1; |
| 173 | else if (!strcmp(value, "false")) |
| 174 | options.atomic = 0; |
| 175 | else |
| 176 | return -1; |
| 177 | return 0; |
Brandon Williams | 511155d | 2017-03-22 15:22:00 -0700 | [diff] [blame] | 178 | } else if (!strcmp(name, "push-option")) { |
Jeff King | 90dce21 | 2018-02-19 14:50:14 -0500 | [diff] [blame] | 179 | if (*value != '"') |
| 180 | string_list_append(&options.push_options, value); |
| 181 | else { |
| 182 | struct strbuf unquoted = STRBUF_INIT; |
| 183 | if (unquote_c_style(&unquoted, value, NULL) < 0) |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 184 | die(_("invalid quoting in push-option value: '%s'"), value); |
Jeff King | 90dce21 | 2018-02-19 14:50:14 -0500 | [diff] [blame] | 185 | string_list_append_nodup(&options.push_options, |
| 186 | strbuf_detach(&unquoted, NULL)); |
| 187 | } |
Brandon Williams | 511155d | 2017-03-22 15:22:00 -0700 | [diff] [blame] | 188 | return 0; |
Eric Wong | c915f11 | 2016-02-03 04:09:14 +0000 | [diff] [blame] | 189 | } else if (!strcmp(name, "family")) { |
| 190 | if (!strcmp(value, "ipv4")) |
| 191 | git_curl_ipresolve = CURL_IPRESOLVE_V4; |
| 192 | else if (!strcmp(value, "ipv6")) |
| 193 | git_curl_ipresolve = CURL_IPRESOLVE_V6; |
| 194 | else if (!strcmp(value, "all")) |
| 195 | git_curl_ipresolve = CURL_IPRESOLVE_WHATEVER; |
| 196 | else |
| 197 | return -1; |
| 198 | return 0; |
Jonathan Tan | 88e2f9e | 2017-12-05 16:58:49 +0000 | [diff] [blame] | 199 | } else if (!strcmp(name, "from-promisor")) { |
| 200 | options.from_promisor = 1; |
| 201 | return 0; |
Robert Coup | 869a0eb | 2022-03-28 14:02:07 +0000 | [diff] [blame] | 202 | } else if (!strcmp(name, "refetch")) { |
| 203 | options.refetch = 1; |
| 204 | return 0; |
Jeff Hostetler | acb0c57 | 2017-12-08 15:58:44 +0000 | [diff] [blame] | 205 | } else if (!strcmp(name, "filter")) { |
Elijah Newren | c3b9bc9 | 2018-09-05 10:03:07 -0700 | [diff] [blame] | 206 | options.filter = xstrdup(value); |
Jeff Hostetler | acb0c57 | 2017-12-08 15:58:44 +0000 | [diff] [blame] | 207 | return 0; |
brian m. carlson | 7f60501 | 2020-05-25 19:59:04 +0000 | [diff] [blame] | 208 | } else if (!strcmp(name, "object-format")) { |
| 209 | int algo; |
| 210 | options.object_format = 1; |
| 211 | if (strcmp(value, "true")) { |
| 212 | algo = hash_algo_by_name(value); |
| 213 | if (algo == GIT_HASH_UNKNOWN) |
| 214 | die("unknown object format '%s'", value); |
| 215 | options.hash_algo = &hash_algos[algo]; |
| 216 | } |
| 217 | return 0; |
Nguyễn Thái Ngọc Duy | 1609488 | 2013-12-05 20:02:50 +0700 | [diff] [blame] | 218 | } else { |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 219 | return 1 /* unsupported */; |
| 220 | } |
| 221 | } |
| 222 | |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 223 | struct discovery { |
Brandon Williams | f08a5d4 | 2018-03-15 10:31:36 -0700 | [diff] [blame] | 224 | char *service; |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 225 | char *buf_alloc; |
| 226 | char *buf; |
| 227 | size_t len; |
Jeff King | 2a45520 | 2013-02-20 15:07:19 -0500 | [diff] [blame] | 228 | struct ref *refs; |
brian m. carlson | 910650d | 2017-03-31 01:40:00 +0000 | [diff] [blame] | 229 | struct oid_array shallow; |
Brandon Williams | 49e85e9 | 2018-03-15 10:31:37 -0700 | [diff] [blame] | 230 | enum protocol_version version; |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 231 | unsigned proto_git : 1; |
| 232 | }; |
| 233 | static struct discovery *last_discovery; |
| 234 | |
Jeff King | b8054bb | 2013-02-20 15:07:11 -0500 | [diff] [blame] | 235 | static struct ref *parse_git_refs(struct discovery *heads, int for_push) |
| 236 | { |
| 237 | struct ref *list = NULL; |
Brandon Williams | ad6ac12 | 2018-03-14 11:31:45 -0700 | [diff] [blame] | 238 | struct packet_reader reader; |
| 239 | |
| 240 | packet_reader_init(&reader, -1, heads->buf, heads->len, |
| 241 | PACKET_READ_CHOMP_NEWLINE | |
Masaya Suzuki | 2d103c3 | 2018-12-29 13:19:15 -0800 | [diff] [blame] | 242 | PACKET_READ_GENTLE_ON_EOF | |
| 243 | PACKET_READ_DIE_ON_ERR_PACKET); |
Brandon Williams | ad6ac12 | 2018-03-14 11:31:45 -0700 | [diff] [blame] | 244 | |
Brandon Williams | 49e85e9 | 2018-03-15 10:31:37 -0700 | [diff] [blame] | 245 | heads->version = discover_version(&reader); |
| 246 | switch (heads->version) { |
Brandon Williams | 8f6982b | 2018-03-14 11:31:47 -0700 | [diff] [blame] | 247 | case protocol_v2: |
Brandon Williams | 0f1dc53 | 2018-03-15 10:31:41 -0700 | [diff] [blame] | 248 | /* |
| 249 | * Do nothing. This isn't a list of refs but rather a |
| 250 | * capability advertisement. Client would have run |
| 251 | * 'stateless-connect' so we'll dump this capability listing |
| 252 | * and let them request the refs themselves. |
| 253 | */ |
Brandon Williams | 8f6982b | 2018-03-14 11:31:47 -0700 | [diff] [blame] | 254 | break; |
Brandon Williams | ad6ac12 | 2018-03-14 11:31:45 -0700 | [diff] [blame] | 255 | case protocol_v1: |
| 256 | case protocol_v0: |
| 257 | get_remote_heads(&reader, &list, for_push ? REF_NORMAL : 0, |
| 258 | NULL, &heads->shallow); |
brian m. carlson | 7f60501 | 2020-05-25 19:59:04 +0000 | [diff] [blame] | 259 | options.hash_algo = reader.hash_algo; |
Brandon Williams | ad6ac12 | 2018-03-14 11:31:45 -0700 | [diff] [blame] | 260 | break; |
| 261 | case protocol_unknown_version: |
| 262 | BUG("unknown protocol version"); |
| 263 | } |
| 264 | |
Jeff King | b8054bb | 2013-02-20 15:07:11 -0500 | [diff] [blame] | 265 | return list; |
| 266 | } |
| 267 | |
brian m. carlson | ac093d0 | 2020-06-19 17:55:51 +0000 | [diff] [blame] | 268 | static const struct git_hash_algo *detect_hash_algo(struct discovery *heads) |
| 269 | { |
| 270 | const char *p = memchr(heads->buf, '\t', heads->len); |
| 271 | int algo; |
| 272 | if (!p) |
| 273 | return the_hash_algo; |
| 274 | |
| 275 | algo = hash_algo_by_length((p - heads->buf) / 2); |
| 276 | if (algo == GIT_HASH_UNKNOWN) |
| 277 | return NULL; |
| 278 | return &hash_algos[algo]; |
| 279 | } |
| 280 | |
Jeff King | b8054bb | 2013-02-20 15:07:11 -0500 | [diff] [blame] | 281 | static struct ref *parse_info_refs(struct discovery *heads) |
| 282 | { |
| 283 | char *data, *start, *mid; |
| 284 | char *ref_name; |
| 285 | int i = 0; |
| 286 | |
| 287 | struct ref *refs = NULL; |
| 288 | struct ref *ref = NULL; |
| 289 | struct ref *last_ref = NULL; |
| 290 | |
brian m. carlson | ac093d0 | 2020-06-19 17:55:51 +0000 | [diff] [blame] | 291 | options.hash_algo = detect_hash_algo(heads); |
| 292 | if (!options.hash_algo) |
| 293 | die("%sinfo/refs not valid: could not determine hash algorithm; " |
| 294 | "is this a git repository?", |
| 295 | transport_anonymize_url(url.buf)); |
| 296 | |
Jeff King | b8054bb | 2013-02-20 15:07:11 -0500 | [diff] [blame] | 297 | data = heads->buf; |
| 298 | start = NULL; |
| 299 | mid = data; |
| 300 | while (i < heads->len) { |
| 301 | if (!start) { |
| 302 | start = &data[i]; |
| 303 | } |
| 304 | if (data[i] == '\t') |
| 305 | mid = &data[i]; |
| 306 | if (data[i] == '\n') { |
brian m. carlson | ac093d0 | 2020-06-19 17:55:51 +0000 | [diff] [blame] | 307 | if (mid - start != options.hash_algo->hexsz) |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 308 | die(_("%sinfo/refs not valid: is this a git repository?"), |
Johannes Schindelin | c1284b2 | 2019-03-04 07:33:46 -0800 | [diff] [blame] | 309 | transport_anonymize_url(url.buf)); |
Jeff King | b8054bb | 2013-02-20 15:07:11 -0500 | [diff] [blame] | 310 | data[i] = 0; |
| 311 | ref_name = mid + 1; |
Jeff King | 6f687c2 | 2015-09-24 17:08:09 -0400 | [diff] [blame] | 312 | ref = alloc_ref(ref_name); |
brian m. carlson | ac093d0 | 2020-06-19 17:55:51 +0000 | [diff] [blame] | 313 | get_oid_hex_algop(start, &ref->old_oid, options.hash_algo); |
Jeff King | b8054bb | 2013-02-20 15:07:11 -0500 | [diff] [blame] | 314 | if (!refs) |
| 315 | refs = ref; |
| 316 | if (last_ref) |
| 317 | last_ref->next = ref; |
| 318 | last_ref = ref; |
| 319 | start = NULL; |
| 320 | } |
| 321 | i++; |
| 322 | } |
| 323 | |
| 324 | ref = alloc_ref("HEAD"); |
Jeff King | b227bbc | 2013-09-28 04:35:25 -0400 | [diff] [blame] | 325 | if (!http_fetch_ref(url.buf, ref) && |
Jeff King | b8054bb | 2013-02-20 15:07:11 -0500 | [diff] [blame] | 326 | !resolve_remote_symref(ref, refs)) { |
| 327 | ref->next = refs; |
| 328 | refs = ref; |
| 329 | } else { |
| 330 | free(ref); |
| 331 | } |
| 332 | |
| 333 | return refs; |
| 334 | } |
| 335 | |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 336 | static void free_discovery(struct discovery *d) |
| 337 | { |
| 338 | if (d) { |
| 339 | if (d == last_discovery) |
| 340 | last_discovery = NULL; |
brian m. carlson | ee3051b | 2017-03-26 16:01:37 +0000 | [diff] [blame] | 341 | free(d->shallow.oid); |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 342 | free(d->buf_alloc); |
Jeff King | 2a45520 | 2013-02-20 15:07:19 -0500 | [diff] [blame] | 343 | free_refs(d->refs); |
Brandon Williams | f08a5d4 | 2018-03-15 10:31:36 -0700 | [diff] [blame] | 344 | free(d->service); |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 345 | free(d); |
| 346 | } |
| 347 | } |
| 348 | |
Jeff King | fc1b774 | 2014-05-22 05:30:29 -0400 | [diff] [blame] | 349 | static int show_http_message(struct strbuf *type, struct strbuf *charset, |
| 350 | struct strbuf *msg) |
Jeff King | 426e70d | 2013-04-05 18:17:23 -0400 | [diff] [blame] | 351 | { |
| 352 | const char *p, *eol; |
| 353 | |
| 354 | /* |
| 355 | * We only show text/plain parts, as other types are likely |
| 356 | * to be ugly to look at on the user's terminal. |
Jeff King | 426e70d | 2013-04-05 18:17:23 -0400 | [diff] [blame] | 357 | */ |
Jeff King | bf197fd | 2014-05-22 05:29:47 -0400 | [diff] [blame] | 358 | if (strcmp(type->buf, "text/plain")) |
Jeff King | 426e70d | 2013-04-05 18:17:23 -0400 | [diff] [blame] | 359 | return -1; |
Jeff King | fc1b774 | 2014-05-22 05:30:29 -0400 | [diff] [blame] | 360 | if (charset->len) |
| 361 | strbuf_reencode(msg, charset->buf, get_log_output_encoding()); |
Jeff King | 426e70d | 2013-04-05 18:17:23 -0400 | [diff] [blame] | 362 | |
| 363 | strbuf_trim(msg); |
| 364 | if (!msg->len) |
| 365 | return -1; |
| 366 | |
| 367 | p = msg->buf; |
| 368 | do { |
| 369 | eol = strchrnul(p, '\n'); |
| 370 | fprintf(stderr, "remote: %.*s\n", (int)(eol - p), p); |
| 371 | p = eol + 1; |
| 372 | } while(*eol); |
| 373 | return 0; |
| 374 | } |
| 375 | |
Brandon Williams | 884e586 | 2018-03-15 10:31:39 -0700 | [diff] [blame] | 376 | static int get_protocol_http_header(enum protocol_version version, |
| 377 | struct strbuf *header) |
| 378 | { |
| 379 | if (version > 0) { |
| 380 | strbuf_addf(header, GIT_PROTOCOL_HEADER ": version=%d", |
| 381 | version); |
| 382 | |
| 383 | return 1; |
| 384 | } |
| 385 | |
| 386 | return 0; |
| 387 | } |
| 388 | |
Jeff King | 8ee3e12 | 2019-02-06 14:18:48 -0500 | [diff] [blame] | 389 | static void check_smart_http(struct discovery *d, const char *service, |
| 390 | struct strbuf *type) |
| 391 | { |
| 392 | const char *p; |
| 393 | struct packet_reader reader; |
| 394 | |
| 395 | /* |
| 396 | * If we don't see x-$service-advertisement, then it's not smart-http. |
| 397 | * But once we do, we commit to it and assume any other protocol |
| 398 | * violations are hard errors. |
| 399 | */ |
| 400 | if (!skip_prefix(type->buf, "application/x-", &p) || |
| 401 | !skip_prefix(p, service, &p) || |
| 402 | strcmp(p, "-advertisement")) |
| 403 | return; |
| 404 | |
| 405 | packet_reader_init(&reader, -1, d->buf, d->len, |
| 406 | PACKET_READ_CHOMP_NEWLINE | |
| 407 | PACKET_READ_DIE_ON_ERR_PACKET); |
| 408 | if (packet_reader_read(&reader) != PACKET_READ_NORMAL) |
Junio C Hamano | aa1edf1 | 2019-04-16 19:28:05 +0900 | [diff] [blame] | 409 | die(_("invalid server response; expected service, got flush packet")); |
Jeff King | 8ee3e12 | 2019-02-06 14:18:48 -0500 | [diff] [blame] | 410 | |
| 411 | if (skip_prefix(reader.line, "# service=", &p) && !strcmp(p, service)) { |
| 412 | /* |
| 413 | * The header can include additional metadata lines, up |
| 414 | * until a packet flush marker. Ignore these now, but |
| 415 | * in the future we might start to scan them. |
| 416 | */ |
| 417 | for (;;) { |
| 418 | packet_reader_read(&reader); |
| 419 | if (reader.pktlen <= 0) { |
| 420 | break; |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | /* |
| 425 | * v0 smart http; callers expect us to soak up the |
| 426 | * service and header packets |
| 427 | */ |
| 428 | d->buf = reader.src_buffer; |
| 429 | d->len = reader.src_len; |
| 430 | d->proto_git = 1; |
| 431 | |
Jeff King | cbdb8d1 | 2019-02-06 14:18:58 -0500 | [diff] [blame] | 432 | } else if (!strcmp(reader.line, "version 2")) { |
Jeff King | 8ee3e12 | 2019-02-06 14:18:48 -0500 | [diff] [blame] | 433 | /* |
| 434 | * v2 smart http; do not consume version packet, which will |
| 435 | * be handled elsewhere. |
| 436 | */ |
| 437 | d->proto_git = 1; |
| 438 | |
| 439 | } else { |
Junio C Hamano | aa1edf1 | 2019-04-16 19:28:05 +0900 | [diff] [blame] | 440 | die(_("invalid server response; got '%s'"), reader.line); |
Jeff King | 8ee3e12 | 2019-02-06 14:18:48 -0500 | [diff] [blame] | 441 | } |
| 442 | } |
| 443 | |
David Aguilar | 24d36f1 | 2014-08-31 13:11:31 -0700 | [diff] [blame] | 444 | static struct discovery *discover_refs(const char *service, int for_push) |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 445 | { |
Shawn Pearce | 4656bf4 | 2013-01-31 13:02:07 -0800 | [diff] [blame] | 446 | struct strbuf type = STRBUF_INIT; |
Jeff King | fc1b774 | 2014-05-22 05:30:29 -0400 | [diff] [blame] | 447 | struct strbuf charset = STRBUF_INIT; |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 448 | struct strbuf buffer = STRBUF_INIT; |
Jeff King | c65d569 | 2013-09-28 04:35:10 -0400 | [diff] [blame] | 449 | struct strbuf refs_url = STRBUF_INIT; |
Jeff King | 050ef36 | 2013-09-28 04:35:35 -0400 | [diff] [blame] | 450 | struct strbuf effective_url = STRBUF_INIT; |
Brandon Williams | 884e586 | 2018-03-15 10:31:39 -0700 | [diff] [blame] | 451 | struct strbuf protocol_header = STRBUF_INIT; |
| 452 | struct string_list extra_headers = STRING_LIST_INIT_DUP; |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 453 | struct discovery *last = last_discovery; |
Jeff King | 243c329 | 2012-09-20 13:00:22 -0400 | [diff] [blame] | 454 | int http_ret, maybe_smart = 0; |
Jeff King | fcaa6e6 | 2016-12-06 13:24:38 -0500 | [diff] [blame] | 455 | struct http_get_options http_options; |
Brandon Williams | a4d78ce | 2018-03-15 10:31:42 -0700 | [diff] [blame] | 456 | enum protocol_version version = get_protocol_version_config(); |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 457 | |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 458 | if (last && !strcmp(service, last->service)) |
| 459 | return last; |
| 460 | free_discovery(last); |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 461 | |
Jeff King | b227bbc | 2013-09-28 04:35:25 -0400 | [diff] [blame] | 462 | strbuf_addf(&refs_url, "%sinfo/refs", url.buf); |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 463 | if ((starts_with(url.buf, "http://") || starts_with(url.buf, "https://")) && |
Jeff King | 02572c2 | 2012-09-20 17:30:58 -0400 | [diff] [blame] | 464 | git_env_bool("GIT_SMART_HTTP", 1)) { |
Jeff King | 243c329 | 2012-09-20 13:00:22 -0400 | [diff] [blame] | 465 | maybe_smart = 1; |
Jeff King | b227bbc | 2013-09-28 04:35:25 -0400 | [diff] [blame] | 466 | if (!strchr(url.buf, '?')) |
Jeff King | c65d569 | 2013-09-28 04:35:10 -0400 | [diff] [blame] | 467 | strbuf_addch(&refs_url, '?'); |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 468 | else |
Jeff King | c65d569 | 2013-09-28 04:35:10 -0400 | [diff] [blame] | 469 | strbuf_addch(&refs_url, '&'); |
| 470 | strbuf_addf(&refs_url, "service=%s", service); |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 471 | } |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 472 | |
Brandon Williams | a4d78ce | 2018-03-15 10:31:42 -0700 | [diff] [blame] | 473 | /* |
| 474 | * NEEDSWORK: If we are trying to use protocol v2 and we are planning |
| 475 | * to perform a push, then fallback to v0 since the client doesn't know |
| 476 | * how to push yet using v2. |
| 477 | */ |
| 478 | if (version == protocol_v2 && !strcmp("git-receive-pack", service)) |
| 479 | version = protocol_v0; |
| 480 | |
Brandon Williams | 884e586 | 2018-03-15 10:31:39 -0700 | [diff] [blame] | 481 | /* Add the extra Git-Protocol header */ |
Brandon Williams | a4d78ce | 2018-03-15 10:31:42 -0700 | [diff] [blame] | 482 | if (get_protocol_http_header(version, &protocol_header)) |
Brandon Williams | 884e586 | 2018-03-15 10:31:39 -0700 | [diff] [blame] | 483 | string_list_append(&extra_headers, protocol_header.buf); |
| 484 | |
Jeff King | fcaa6e6 | 2016-12-06 13:24:38 -0500 | [diff] [blame] | 485 | memset(&http_options, 0, sizeof(http_options)); |
| 486 | http_options.content_type = &type; |
| 487 | http_options.charset = &charset; |
| 488 | http_options.effective_url = &effective_url; |
| 489 | http_options.base_url = &url; |
Brandon Williams | 884e586 | 2018-03-15 10:31:39 -0700 | [diff] [blame] | 490 | http_options.extra_headers = &extra_headers; |
Jeff King | 50d3413 | 2016-12-06 13:24:41 -0500 | [diff] [blame] | 491 | http_options.initial_request = 1; |
Jeff King | fcaa6e6 | 2016-12-06 13:24:38 -0500 | [diff] [blame] | 492 | http_options.no_cache = 1; |
Jeff King | 1bbcc22 | 2013-09-28 04:31:23 -0400 | [diff] [blame] | 493 | |
Jeff King | fcaa6e6 | 2016-12-06 13:24:38 -0500 | [diff] [blame] | 494 | http_ret = http_get_strbuf(refs_url.buf, &buffer, &http_options); |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 495 | switch (http_ret) { |
| 496 | case HTTP_OK: |
| 497 | break; |
| 498 | case HTTP_MISSING_TARGET: |
Jeff King | fc1b774 | 2014-05-22 05:30:29 -0400 | [diff] [blame] | 499 | show_http_message(&type, &charset, &buffer); |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 500 | die(_("repository '%s' not found"), |
Johannes Schindelin | c1284b2 | 2019-03-04 07:33:46 -0800 | [diff] [blame] | 501 | transport_anonymize_url(url.buf)); |
Scott Chacon | 42653c0 | 2010-04-01 15:14:35 -0700 | [diff] [blame] | 502 | case HTTP_NOAUTH: |
Jeff King | fc1b774 | 2014-05-22 05:30:29 -0400 | [diff] [blame] | 503 | show_http_message(&type, &charset, &buffer); |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 504 | die(_("Authentication failed for '%s'"), |
Johannes Schindelin | c1284b2 | 2019-03-04 07:33:46 -0800 | [diff] [blame] | 505 | transport_anonymize_url(url.buf)); |
Ævar Arnfjörð Bjarmason | 3e8084f | 2021-09-24 12:08:20 +0200 | [diff] [blame] | 506 | case HTTP_NOMATCHPUBLICKEY: |
| 507 | show_http_message(&type, &charset, &buffer); |
| 508 | die(_("unable to access '%s' with http.pinnedPubkey configuration: %s"), |
| 509 | transport_anonymize_url(url.buf), curl_errorstr); |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 510 | default: |
Jeff King | fc1b774 | 2014-05-22 05:30:29 -0400 | [diff] [blame] | 511 | show_http_message(&type, &charset, &buffer); |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 512 | die(_("unable to access '%s': %s"), |
Johannes Schindelin | c1284b2 | 2019-03-04 07:33:46 -0800 | [diff] [blame] | 513 | transport_anonymize_url(url.buf), curl_errorstr); |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 514 | } |
| 515 | |
Johannes Schindelin | c1284b2 | 2019-03-04 07:33:46 -0800 | [diff] [blame] | 516 | if (options.verbosity && !starts_with(refs_url.buf, url.buf)) { |
| 517 | char *u = transport_anonymize_url(url.buf); |
| 518 | warning(_("redirecting to %s"), u); |
| 519 | free(u); |
| 520 | } |
Jeff King | 50d3413 | 2016-12-06 13:24:41 -0500 | [diff] [blame] | 521 | |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 522 | last= xcalloc(1, sizeof(*last_discovery)); |
Brandon Williams | f08a5d4 | 2018-03-15 10:31:36 -0700 | [diff] [blame] | 523 | last->service = xstrdup(service); |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 524 | last->buf_alloc = strbuf_detach(&buffer, &last->len); |
| 525 | last->buf = last->buf_alloc; |
| 526 | |
Jeff King | 8ee3e12 | 2019-02-06 14:18:48 -0500 | [diff] [blame] | 527 | if (maybe_smart) |
| 528 | check_smart_http(last, service, &type); |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 529 | |
Jeff King | 2a45520 | 2013-02-20 15:07:19 -0500 | [diff] [blame] | 530 | if (last->proto_git) |
| 531 | last->refs = parse_git_refs(last, for_push); |
| 532 | else |
| 533 | last->refs = parse_info_refs(last); |
| 534 | |
Jeff King | c65d569 | 2013-09-28 04:35:10 -0400 | [diff] [blame] | 535 | strbuf_release(&refs_url); |
Shawn Pearce | 4656bf4 | 2013-01-31 13:02:07 -0800 | [diff] [blame] | 536 | strbuf_release(&type); |
Jeff King | fc1b774 | 2014-05-22 05:30:29 -0400 | [diff] [blame] | 537 | strbuf_release(&charset); |
Jeff King | 050ef36 | 2013-09-28 04:35:35 -0400 | [diff] [blame] | 538 | strbuf_release(&effective_url); |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 539 | strbuf_release(&buffer); |
Brandon Williams | 884e586 | 2018-03-15 10:31:39 -0700 | [diff] [blame] | 540 | strbuf_release(&protocol_header); |
| 541 | string_list_clear(&extra_headers, 0); |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 542 | last_discovery = last; |
| 543 | return last; |
| 544 | } |
| 545 | |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 546 | static struct ref *get_refs(int for_push) |
| 547 | { |
| 548 | struct discovery *heads; |
| 549 | |
| 550 | if (for_push) |
Jeff King | 2a45520 | 2013-02-20 15:07:19 -0500 | [diff] [blame] | 551 | heads = discover_refs("git-receive-pack", for_push); |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 552 | else |
Jeff King | 2a45520 | 2013-02-20 15:07:19 -0500 | [diff] [blame] | 553 | heads = discover_refs("git-upload-pack", for_push); |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 554 | |
Jeff King | 2a45520 | 2013-02-20 15:07:19 -0500 | [diff] [blame] | 555 | return heads->refs; |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 556 | } |
| 557 | |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 558 | static void output_refs(struct ref *refs) |
| 559 | { |
| 560 | struct ref *posn; |
brian m. carlson | 7f60501 | 2020-05-25 19:59:04 +0000 | [diff] [blame] | 561 | if (options.object_format && options.hash_algo) { |
| 562 | printf(":object-format %s\n", options.hash_algo->name); |
Eric Wong | 00bc839 | 2021-05-11 10:37:30 +0000 | [diff] [blame] | 563 | repo_set_hash_algo(the_repository, |
| 564 | hash_algo_by_ptr(options.hash_algo)); |
brian m. carlson | 7f60501 | 2020-05-25 19:59:04 +0000 | [diff] [blame] | 565 | } |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 566 | for (posn = refs; posn; posn = posn->next) { |
| 567 | if (posn->symref) |
| 568 | printf("@%s %s\n", posn->symref, posn->name); |
| 569 | else |
brian m. carlson | 97997e6 | 2020-06-19 17:55:54 +0000 | [diff] [blame] | 570 | printf("%s %s\n", hash_to_hex_algop(posn->old_oid.hash, |
| 571 | options.hash_algo), |
| 572 | posn->name); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 573 | } |
| 574 | printf("\n"); |
| 575 | fflush(stdout); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 576 | } |
| 577 | |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 578 | struct rpc_state { |
| 579 | const char *service_name; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 580 | char *service_url; |
| 581 | char *hdr_content_type; |
| 582 | char *hdr_accept; |
Li Linchao | b0c4adc | 2022-07-11 05:58:54 +0000 | [diff] [blame] | 583 | char *hdr_accept_language; |
Brandon Williams | 884e586 | 2018-03-15 10:31:39 -0700 | [diff] [blame] | 584 | char *protocol_header; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 585 | char *buf; |
| 586 | size_t alloc; |
| 587 | size_t len; |
| 588 | size_t pos; |
| 589 | int in; |
| 590 | int out; |
David Turner | 296b847 | 2016-11-18 15:30:49 -0500 | [diff] [blame] | 591 | int any_written; |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 592 | unsigned gzip_request : 1; |
Martin Storsjö | 6c81a99 | 2009-12-01 12:33:39 +0200 | [diff] [blame] | 593 | unsigned initial_buffer : 1; |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 594 | |
| 595 | /* |
| 596 | * Whenever a pkt-line is read into buf, append the 4 characters |
| 597 | * denoting its length before appending the payload. |
| 598 | */ |
| 599 | unsigned write_line_lengths : 1; |
| 600 | |
| 601 | /* |
| 602 | * Used by rpc_out; initialize to 0. This is true if a flush has been |
| 603 | * read, but the corresponding line length (if write_line_lengths is |
| 604 | * true) and EOF have not been sent to libcurl. Since each flush marks |
| 605 | * the end of a request, each flush must be completely sent before any |
| 606 | * further reading occurs. |
| 607 | */ |
| 608 | unsigned flush_read_but_not_sent : 1; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 609 | }; |
| 610 | |
Li Linchao | b0c4adc | 2022-07-11 05:58:54 +0000 | [diff] [blame] | 611 | #define RPC_STATE_INIT { 0 } |
| 612 | |
Jonathan Tan | 78ad917 | 2019-02-21 12:24:40 -0800 | [diff] [blame] | 613 | /* |
| 614 | * Appends the result of reading from rpc->out to the string represented by |
| 615 | * rpc->buf and rpc->len if there is enough space. Returns 1 if there was |
| 616 | * enough space, 0 otherwise. |
| 617 | * |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 618 | * If rpc->write_line_lengths is true, appends the line length as a 4-byte |
| 619 | * hexadecimal string before appending the result described above. |
| 620 | * |
| 621 | * Writes the total number of bytes appended into appended. |
Jonathan Tan | 78ad917 | 2019-02-21 12:24:40 -0800 | [diff] [blame] | 622 | */ |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 623 | static int rpc_read_from_out(struct rpc_state *rpc, int options, |
| 624 | size_t *appended, |
| 625 | enum packet_read_status *status) { |
| 626 | size_t left; |
| 627 | char *buf; |
| 628 | int pktlen_raw; |
| 629 | |
| 630 | if (rpc->write_line_lengths) { |
| 631 | left = rpc->alloc - rpc->len - 4; |
| 632 | buf = rpc->buf + rpc->len + 4; |
| 633 | } else { |
| 634 | left = rpc->alloc - rpc->len; |
| 635 | buf = rpc->buf + rpc->len; |
| 636 | } |
Jonathan Tan | 78ad917 | 2019-02-21 12:24:40 -0800 | [diff] [blame] | 637 | |
| 638 | if (left < LARGE_PACKET_MAX) |
| 639 | return 0; |
| 640 | |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 641 | *status = packet_read_with_status(rpc->out, NULL, NULL, buf, |
| 642 | left, &pktlen_raw, options); |
| 643 | if (*status != PACKET_READ_EOF) { |
| 644 | *appended = pktlen_raw + (rpc->write_line_lengths ? 4 : 0); |
| 645 | rpc->len += *appended; |
| 646 | } |
| 647 | |
| 648 | if (rpc->write_line_lengths) { |
| 649 | switch (*status) { |
| 650 | case PACKET_READ_EOF: |
| 651 | if (!(options & PACKET_READ_GENTLE_ON_EOF)) |
Junio C Hamano | aa1edf1 | 2019-04-16 19:28:05 +0900 | [diff] [blame] | 652 | die(_("shouldn't have EOF when not gentle on EOF")); |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 653 | break; |
| 654 | case PACKET_READ_NORMAL: |
| 655 | set_packet_header(buf - 4, *appended); |
| 656 | break; |
| 657 | case PACKET_READ_DELIM: |
| 658 | memcpy(buf - 4, "0001", 4); |
| 659 | break; |
| 660 | case PACKET_READ_FLUSH: |
| 661 | memcpy(buf - 4, "0000", 4); |
| 662 | break; |
Denton Liu | 0181b60 | 2020-05-19 06:53:59 -0400 | [diff] [blame] | 663 | case PACKET_READ_RESPONSE_END: |
Denton Liu | 8232a0f | 2021-07-08 19:27:22 -0700 | [diff] [blame] | 664 | die(_("remote server sent unexpected response end packet")); |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 665 | } |
| 666 | } |
| 667 | |
Jonathan Tan | 78ad917 | 2019-02-21 12:24:40 -0800 | [diff] [blame] | 668 | return 1; |
| 669 | } |
| 670 | |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 671 | static size_t rpc_out(void *ptr, size_t eltsize, |
| 672 | size_t nmemb, void *buffer_) |
| 673 | { |
| 674 | size_t max = eltsize * nmemb; |
| 675 | struct rpc_state *rpc = buffer_; |
| 676 | size_t avail = rpc->len - rpc->pos; |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 677 | enum packet_read_status status; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 678 | |
| 679 | if (!avail) { |
Martin Storsjö | 6c81a99 | 2009-12-01 12:33:39 +0200 | [diff] [blame] | 680 | rpc->initial_buffer = 0; |
Jonathan Tan | 78ad917 | 2019-02-21 12:24:40 -0800 | [diff] [blame] | 681 | rpc->len = 0; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 682 | rpc->pos = 0; |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 683 | if (!rpc->flush_read_but_not_sent) { |
| 684 | if (!rpc_read_from_out(rpc, 0, &avail, &status)) |
| 685 | BUG("The entire rpc->buf should be larger than LARGE_PACKET_MAX"); |
| 686 | if (status == PACKET_READ_FLUSH) |
| 687 | rpc->flush_read_but_not_sent = 1; |
| 688 | } |
| 689 | /* |
| 690 | * If flush_read_but_not_sent is true, we have already read one |
| 691 | * full request but have not fully sent it + EOF, which is why |
| 692 | * we need to refrain from reading. |
| 693 | */ |
| 694 | } |
| 695 | if (rpc->flush_read_but_not_sent) { |
| 696 | if (!avail) { |
| 697 | /* |
| 698 | * The line length either does not need to be sent at |
| 699 | * all or has already been completely sent. Now we can |
| 700 | * return 0, indicating EOF, meaning that the flush has |
| 701 | * been fully sent. |
| 702 | */ |
| 703 | rpc->flush_read_but_not_sent = 0; |
| 704 | return 0; |
| 705 | } |
| 706 | /* |
Denton Liu | 51ca7f8 | 2020-05-18 11:47:18 -0400 | [diff] [blame] | 707 | * If avail is non-zero, the line length for the flush still |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 708 | * hasn't been fully sent. Proceed with sending the line |
| 709 | * length. |
| 710 | */ |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 711 | } |
| 712 | |
Tay Ray Chuan | 4831060 | 2009-11-24 10:31:30 +0800 | [diff] [blame] | 713 | if (max < avail) |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 714 | avail = max; |
| 715 | memcpy(ptr, rpc->buf + rpc->pos, avail); |
| 716 | rpc->pos += avail; |
| 717 | return avail; |
| 718 | } |
| 719 | |
Junio C Hamano | 5092d3e | 2010-01-11 22:30:36 -0800 | [diff] [blame] | 720 | static curlioerr rpc_ioctl(CURL *handle, int cmd, void *clientp) |
Martin Storsjö | 6c81a99 | 2009-12-01 12:33:39 +0200 | [diff] [blame] | 721 | { |
| 722 | struct rpc_state *rpc = clientp; |
| 723 | |
| 724 | switch (cmd) { |
| 725 | case CURLIOCMD_NOP: |
| 726 | return CURLIOE_OK; |
| 727 | |
| 728 | case CURLIOCMD_RESTARTREAD: |
| 729 | if (rpc->initial_buffer) { |
| 730 | rpc->pos = 0; |
| 731 | return CURLIOE_OK; |
| 732 | } |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 733 | error(_("unable to rewind rpc post data - try increasing http.postBuffer")); |
Martin Storsjö | 6c81a99 | 2009-12-01 12:33:39 +0200 | [diff] [blame] | 734 | return CURLIOE_FAILRESTART; |
| 735 | |
| 736 | default: |
| 737 | return CURLIOE_UNKNOWNCMD; |
| 738 | } |
| 739 | } |
Martin Storsjö | 6c81a99 | 2009-12-01 12:33:39 +0200 | [diff] [blame] | 740 | |
Denton Liu | 74b082a | 2020-05-19 06:53:58 -0400 | [diff] [blame] | 741 | struct check_pktline_state { |
| 742 | char len_buf[4]; |
| 743 | int len_filled; |
| 744 | int remaining; |
| 745 | }; |
| 746 | |
| 747 | static void check_pktline(struct check_pktline_state *state, const char *ptr, size_t size) |
| 748 | { |
| 749 | while (size) { |
| 750 | if (!state->remaining) { |
| 751 | int digits_remaining = 4 - state->len_filled; |
| 752 | if (digits_remaining > size) |
| 753 | digits_remaining = size; |
| 754 | memcpy(&state->len_buf[state->len_filled], ptr, digits_remaining); |
| 755 | state->len_filled += digits_remaining; |
| 756 | ptr += digits_remaining; |
| 757 | size -= digits_remaining; |
| 758 | |
| 759 | if (state->len_filled == 4) { |
| 760 | state->remaining = packet_length(state->len_buf); |
| 761 | if (state->remaining < 0) { |
| 762 | die(_("remote-curl: bad line length character: %.4s"), state->len_buf); |
Denton Liu | b0df0c1 | 2020-05-19 06:54:00 -0400 | [diff] [blame] | 763 | } else if (state->remaining == 2) { |
| 764 | die(_("remote-curl: unexpected response end packet")); |
Denton Liu | 74b082a | 2020-05-19 06:53:58 -0400 | [diff] [blame] | 765 | } else if (state->remaining < 4) { |
| 766 | state->remaining = 0; |
| 767 | } else { |
| 768 | state->remaining -= 4; |
| 769 | } |
| 770 | state->len_filled = 0; |
| 771 | } |
| 772 | } |
| 773 | |
| 774 | if (state->remaining) { |
| 775 | int remaining = state->remaining; |
| 776 | if (remaining > size) |
| 777 | remaining = size; |
| 778 | ptr += remaining; |
| 779 | size -= remaining; |
| 780 | state->remaining -= remaining; |
| 781 | } |
| 782 | } |
| 783 | } |
| 784 | |
Masaya Suzuki | cf2fb92 | 2019-01-10 11:33:48 -0800 | [diff] [blame] | 785 | struct rpc_in_data { |
| 786 | struct rpc_state *rpc; |
Masaya Suzuki | b79bdd8 | 2019-01-10 11:33:49 -0800 | [diff] [blame] | 787 | struct active_request_slot *slot; |
Denton Liu | 74b082a | 2020-05-19 06:53:58 -0400 | [diff] [blame] | 788 | int check_pktline; |
| 789 | struct check_pktline_state pktline_state; |
Masaya Suzuki | cf2fb92 | 2019-01-10 11:33:48 -0800 | [diff] [blame] | 790 | }; |
| 791 | |
| 792 | /* |
| 793 | * A callback for CURLOPT_WRITEFUNCTION. The return value is the bytes consumed |
| 794 | * from ptr. |
| 795 | */ |
Dan McGee | a04ff3e | 2011-05-03 23:47:27 +0800 | [diff] [blame] | 796 | static size_t rpc_in(char *ptr, size_t eltsize, |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 797 | size_t nmemb, void *buffer_) |
| 798 | { |
| 799 | size_t size = eltsize * nmemb; |
Masaya Suzuki | cf2fb92 | 2019-01-10 11:33:48 -0800 | [diff] [blame] | 800 | struct rpc_in_data *data = buffer_; |
Masaya Suzuki | b79bdd8 | 2019-01-10 11:33:49 -0800 | [diff] [blame] | 801 | long response_code; |
| 802 | |
| 803 | if (curl_easy_getinfo(data->slot->curl, CURLINFO_RESPONSE_CODE, |
| 804 | &response_code) != CURLE_OK) |
| 805 | return size; |
| 806 | if (response_code >= 300) |
| 807 | return size; |
David Turner | 296b847 | 2016-11-18 15:30:49 -0500 | [diff] [blame] | 808 | if (size) |
Masaya Suzuki | cf2fb92 | 2019-01-10 11:33:48 -0800 | [diff] [blame] | 809 | data->rpc->any_written = 1; |
Denton Liu | 74b082a | 2020-05-19 06:53:58 -0400 | [diff] [blame] | 810 | if (data->check_pktline) |
| 811 | check_pktline(&data->pktline_state, ptr, size); |
Masaya Suzuki | cf2fb92 | 2019-01-10 11:33:48 -0800 | [diff] [blame] | 812 | write_or_die(data->rpc->in, ptr, size); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 813 | return size; |
| 814 | } |
| 815 | |
Jeff King | 3a347ed | 2013-10-31 02:36:26 -0400 | [diff] [blame] | 816 | static int run_slot(struct active_request_slot *slot, |
| 817 | struct slot_results *results) |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 818 | { |
Jeff King | b81401c | 2012-08-27 09:27:15 -0400 | [diff] [blame] | 819 | int err; |
Jeff King | 3a347ed | 2013-10-31 02:36:26 -0400 | [diff] [blame] | 820 | struct slot_results results_buf; |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 821 | |
Jeff King | 3a347ed | 2013-10-31 02:36:26 -0400 | [diff] [blame] | 822 | if (!results) |
| 823 | results = &results_buf; |
| 824 | |
Jeff King | beed336 | 2014-02-18 05:34:20 -0500 | [diff] [blame] | 825 | err = run_one_slot(slot, results); |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 826 | |
Jeff King | b81401c | 2012-08-27 09:27:15 -0400 | [diff] [blame] | 827 | if (err != HTTP_OK && err != HTTP_REAUTH) { |
Shawn Pearce | 0054045 | 2016-02-13 17:39:34 -0800 | [diff] [blame] | 828 | struct strbuf msg = STRBUF_INIT; |
| 829 | if (results->http_code && results->http_code != 200) |
| 830 | strbuf_addf(&msg, "HTTP %ld", results->http_code); |
| 831 | if (results->curl_result != CURLE_OK) { |
| 832 | if (msg.len) |
| 833 | strbuf_addch(&msg, ' '); |
| 834 | strbuf_addf(&msg, "curl %d", results->curl_result); |
| 835 | if (curl_errorstr[0]) { |
| 836 | strbuf_addch(&msg, ' '); |
| 837 | strbuf_addstr(&msg, curl_errorstr); |
| 838 | } |
| 839 | } |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 840 | error(_("RPC failed; %s"), msg.buf); |
Shawn Pearce | 0054045 | 2016-02-13 17:39:34 -0800 | [diff] [blame] | 841 | strbuf_release(&msg); |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 842 | } |
| 843 | |
| 844 | return err; |
| 845 | } |
| 846 | |
Jeff King | 3a347ed | 2013-10-31 02:36:26 -0400 | [diff] [blame] | 847 | static int probe_rpc(struct rpc_state *rpc, struct slot_results *results) |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 848 | { |
| 849 | struct active_request_slot *slot; |
Johannes Schindelin | 8cb01e2 | 2016-04-27 14:20:37 +0200 | [diff] [blame] | 850 | struct curl_slist *headers = http_copy_default_headers(); |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 851 | struct strbuf buf = STRBUF_INIT; |
| 852 | int err; |
| 853 | |
| 854 | slot = get_active_slot(); |
| 855 | |
| 856 | headers = curl_slist_append(headers, rpc->hdr_content_type); |
| 857 | headers = curl_slist_append(headers, rpc->hdr_accept); |
| 858 | |
| 859 | curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0); |
| 860 | curl_easy_setopt(slot->curl, CURLOPT_POST, 1); |
| 861 | curl_easy_setopt(slot->curl, CURLOPT_URL, rpc->service_url); |
Shawn O. Pearce | aa90b96 | 2012-09-19 16:12:02 -0700 | [diff] [blame] | 862 | curl_easy_setopt(slot->curl, CURLOPT_ENCODING, NULL); |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 863 | curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, "0000"); |
| 864 | curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE, 4); |
| 865 | curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers); |
| 866 | curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, fwrite_buffer); |
Ævar Arnfjörð Bjarmason | 8dda4cb | 2021-07-30 19:59:46 +0200 | [diff] [blame] | 867 | curl_easy_setopt(slot->curl, CURLOPT_WRITEDATA, &buf); |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 868 | |
Jeff King | 3a347ed | 2013-10-31 02:36:26 -0400 | [diff] [blame] | 869 | err = run_slot(slot, results); |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 870 | |
| 871 | curl_slist_free_all(headers); |
| 872 | strbuf_release(&buf); |
| 873 | return err; |
| 874 | } |
| 875 | |
Nguyễn Thái Ngọc Duy | 3b33576 | 2018-12-09 11:25:21 +0100 | [diff] [blame] | 876 | static curl_off_t xcurl_off_t(size_t len) |
| 877 | { |
Torsten Bögershausen | cb8010b | 2018-11-09 18:41:10 +0100 | [diff] [blame] | 878 | uintmax_t size = len; |
| 879 | if (size > maximum_signed_value_of_type(curl_off_t)) |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 880 | die(_("cannot handle pushes this big")); |
Torsten Bögershausen | cb8010b | 2018-11-09 18:41:10 +0100 | [diff] [blame] | 881 | return (curl_off_t)size; |
David Turner | 37ee680 | 2017-04-11 14:13:57 -0400 | [diff] [blame] | 882 | } |
| 883 | |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 884 | /* |
| 885 | * If flush_received is true, do not attempt to read any more; just use what's |
| 886 | * in rpc->buf. |
| 887 | */ |
Denton Liu | 74b082a | 2020-05-19 06:53:58 -0400 | [diff] [blame] | 888 | static int post_rpc(struct rpc_state *rpc, int stateless_connect, int flush_received) |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 889 | { |
| 890 | struct active_request_slot *slot; |
Johannes Schindelin | 8cb01e2 | 2016-04-27 14:20:37 +0200 | [diff] [blame] | 891 | struct curl_slist *headers = http_copy_default_headers(); |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 892 | int use_gzip = rpc->gzip_request; |
| 893 | char *gzip_body = NULL; |
Ramsay Jones | 3771154 | 2012-11-21 19:08:51 +0000 | [diff] [blame] | 894 | size_t gzip_size = 0; |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 895 | int err, large_request = 0; |
Brian M. Carlson | c80d96c | 2013-10-31 02:36:51 -0400 | [diff] [blame] | 896 | int needs_100_continue = 0; |
Masaya Suzuki | cf2fb92 | 2019-01-10 11:33:48 -0800 | [diff] [blame] | 897 | struct rpc_in_data rpc_in_data; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 898 | |
| 899 | /* Try to load the entire request, if we can fit it into the |
| 900 | * allocated buffer space we can use HTTP/1.0 and avoid the |
| 901 | * chunked encoding mess. |
| 902 | */ |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 903 | if (!flush_received) { |
| 904 | while (1) { |
| 905 | size_t n; |
| 906 | enum packet_read_status status; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 907 | |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 908 | if (!rpc_read_from_out(rpc, 0, &n, &status)) { |
| 909 | large_request = 1; |
| 910 | use_gzip = 0; |
| 911 | break; |
| 912 | } |
| 913 | if (status == PACKET_READ_FLUSH) |
| 914 | break; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 915 | } |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 916 | } |
| 917 | |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 918 | if (large_request) { |
Brian M. Carlson | c80d96c | 2013-10-31 02:36:51 -0400 | [diff] [blame] | 919 | struct slot_results results; |
| 920 | |
Jeff King | b81401c | 2012-08-27 09:27:15 -0400 | [diff] [blame] | 921 | do { |
Brian M. Carlson | c80d96c | 2013-10-31 02:36:51 -0400 | [diff] [blame] | 922 | err = probe_rpc(rpc, &results); |
Jeff King | 2501aff | 2013-09-28 04:31:45 -0400 | [diff] [blame] | 923 | if (err == HTTP_REAUTH) |
| 924 | credential_fill(&http_auth); |
Jeff King | b81401c | 2012-08-27 09:27:15 -0400 | [diff] [blame] | 925 | } while (err == HTTP_REAUTH); |
| 926 | if (err != HTTP_OK) |
| 927 | return -1; |
Brian M. Carlson | c80d96c | 2013-10-31 02:36:51 -0400 | [diff] [blame] | 928 | |
| 929 | if (results.auth_avail & CURLAUTH_GSSNEGOTIATE) |
| 930 | needs_100_continue = 1; |
Shawn O. Pearce | 206b099 | 2011-02-15 08:57:24 -0800 | [diff] [blame] | 931 | } |
| 932 | |
Jeff King | abf8df8 | 2012-10-12 03:35:33 -0400 | [diff] [blame] | 933 | headers = curl_slist_append(headers, rpc->hdr_content_type); |
| 934 | headers = curl_slist_append(headers, rpc->hdr_accept); |
Brian M. Carlson | c80d96c | 2013-10-31 02:36:51 -0400 | [diff] [blame] | 935 | headers = curl_slist_append(headers, needs_100_continue ? |
| 936 | "Expect: 100-continue" : "Expect:"); |
Jeff King | abf8df8 | 2012-10-12 03:35:33 -0400 | [diff] [blame] | 937 | |
Li Linchao | b0c4adc | 2022-07-11 05:58:54 +0000 | [diff] [blame] | 938 | /* Add Accept-Language header */ |
| 939 | if (rpc->hdr_accept_language) |
| 940 | headers = curl_slist_append(headers, rpc->hdr_accept_language); |
| 941 | |
Brandon Williams | 884e586 | 2018-03-15 10:31:39 -0700 | [diff] [blame] | 942 | /* Add the extra Git-Protocol header */ |
| 943 | if (rpc->protocol_header) |
| 944 | headers = curl_slist_append(headers, rpc->protocol_header); |
| 945 | |
Jeff King | abf8df8 | 2012-10-12 03:35:33 -0400 | [diff] [blame] | 946 | retry: |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 947 | slot = get_active_slot(); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 948 | |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 949 | curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0); |
Martin Storsjö | d21f979 | 2009-11-23 11:03:28 +0800 | [diff] [blame] | 950 | curl_easy_setopt(slot->curl, CURLOPT_POST, 1); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 951 | curl_easy_setopt(slot->curl, CURLOPT_URL, rpc->service_url); |
Brandon Williams | 1a53e69 | 2018-05-22 11:42:03 -0700 | [diff] [blame] | 952 | curl_easy_setopt(slot->curl, CURLOPT_ENCODING, ""); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 953 | |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 954 | if (large_request) { |
| 955 | /* The request body is large and the size cannot be predicted. |
| 956 | * We must use chunked encoding to send it. |
| 957 | */ |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 958 | headers = curl_slist_append(headers, "Transfer-Encoding: chunked"); |
Martin Storsjö | 6c81a99 | 2009-12-01 12:33:39 +0200 | [diff] [blame] | 959 | rpc->initial_buffer = 1; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 960 | curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, rpc_out); |
| 961 | curl_easy_setopt(slot->curl, CURLOPT_INFILE, rpc); |
Martin Storsjö | 6c81a99 | 2009-12-01 12:33:39 +0200 | [diff] [blame] | 962 | curl_easy_setopt(slot->curl, CURLOPT_IOCTLFUNCTION, rpc_ioctl); |
| 963 | curl_easy_setopt(slot->curl, CURLOPT_IOCTLDATA, rpc); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 964 | if (options.verbosity > 1) { |
| 965 | fprintf(stderr, "POST %s (chunked)\n", rpc->service_name); |
| 966 | fflush(stderr); |
| 967 | } |
| 968 | |
Jeff King | 2e736fd | 2012-10-31 07:29:16 -0400 | [diff] [blame] | 969 | } else if (gzip_body) { |
| 970 | /* |
| 971 | * If we are looping to retry authentication, then the previous |
| 972 | * run will have set up the headers and gzip buffer already, |
| 973 | * and we just need to send it. |
| 974 | */ |
| 975 | curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, gzip_body); |
David Turner | 37ee680 | 2017-04-11 14:13:57 -0400 | [diff] [blame] | 976 | curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE_LARGE, xcurl_off_t(gzip_size)); |
Jeff King | 2e736fd | 2012-10-31 07:29:16 -0400 | [diff] [blame] | 977 | |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 978 | } else if (use_gzip && 1024 < rpc->len) { |
| 979 | /* The client backend isn't giving us compressed data so |
Johannes Schindelin | a813241 | 2018-08-08 04:50:00 -0700 | [diff] [blame] | 980 | * we can try to deflate it ourselves, this may save on |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 981 | * the transfer time. |
| 982 | */ |
Junio C Hamano | ef49a7a | 2011-06-10 11:52:15 -0700 | [diff] [blame] | 983 | git_zstream stream; |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 984 | int ret; |
| 985 | |
Junio C Hamano | 55bb5c9 | 2011-06-10 10:55:10 -0700 | [diff] [blame] | 986 | git_deflate_init_gzip(&stream, Z_BEST_COMPRESSION); |
Jeff King | df126e1 | 2012-10-31 07:20:15 -0400 | [diff] [blame] | 987 | gzip_size = git_deflate_bound(&stream, rpc->len); |
| 988 | gzip_body = xmalloc(gzip_size); |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 989 | |
| 990 | stream.next_in = (unsigned char *)rpc->buf; |
| 991 | stream.avail_in = rpc->len; |
| 992 | stream.next_out = (unsigned char *)gzip_body; |
Jeff King | df126e1 | 2012-10-31 07:20:15 -0400 | [diff] [blame] | 993 | stream.avail_out = gzip_size; |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 994 | |
Junio C Hamano | 55bb5c9 | 2011-06-10 10:55:10 -0700 | [diff] [blame] | 995 | ret = git_deflate(&stream, Z_FINISH); |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 996 | if (ret != Z_STREAM_END) |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 997 | die(_("cannot deflate request; zlib deflate error %d"), ret); |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 998 | |
Junio C Hamano | 55bb5c9 | 2011-06-10 10:55:10 -0700 | [diff] [blame] | 999 | ret = git_deflate_end_gently(&stream); |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 1000 | if (ret != Z_OK) |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 1001 | die(_("cannot deflate request; zlib end error %d"), ret); |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 1002 | |
Jeff King | df126e1 | 2012-10-31 07:20:15 -0400 | [diff] [blame] | 1003 | gzip_size = stream.total_out; |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 1004 | |
| 1005 | headers = curl_slist_append(headers, "Content-Encoding: gzip"); |
| 1006 | curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, gzip_body); |
David Turner | 37ee680 | 2017-04-11 14:13:57 -0400 | [diff] [blame] | 1007 | curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE_LARGE, xcurl_off_t(gzip_size)); |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 1008 | |
| 1009 | if (options.verbosity > 1) { |
| 1010 | fprintf(stderr, "POST %s (gzip %lu to %lu bytes)\n", |
| 1011 | rpc->service_name, |
Jeff King | df126e1 | 2012-10-31 07:20:15 -0400 | [diff] [blame] | 1012 | (unsigned long)rpc->len, (unsigned long)gzip_size); |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 1013 | fflush(stderr); |
| 1014 | } |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1015 | } else { |
| 1016 | /* We know the complete request size in advance, use the |
| 1017 | * more normal Content-Length approach. |
| 1018 | */ |
| 1019 | curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, rpc->buf); |
David Turner | 37ee680 | 2017-04-11 14:13:57 -0400 | [diff] [blame] | 1020 | curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE_LARGE, xcurl_off_t(rpc->len)); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1021 | if (options.verbosity > 1) { |
| 1022 | fprintf(stderr, "POST %s (%lu bytes)\n", |
| 1023 | rpc->service_name, (unsigned long)rpc->len); |
| 1024 | fflush(stderr); |
| 1025 | } |
| 1026 | } |
| 1027 | |
| 1028 | curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers); |
| 1029 | curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, rpc_in); |
Masaya Suzuki | cf2fb92 | 2019-01-10 11:33:48 -0800 | [diff] [blame] | 1030 | rpc_in_data.rpc = rpc; |
Masaya Suzuki | b79bdd8 | 2019-01-10 11:33:49 -0800 | [diff] [blame] | 1031 | rpc_in_data.slot = slot; |
Denton Liu | 74b082a | 2020-05-19 06:53:58 -0400 | [diff] [blame] | 1032 | rpc_in_data.check_pktline = stateless_connect; |
| 1033 | memset(&rpc_in_data.pktline_state, 0, sizeof(rpc_in_data.pktline_state)); |
Ævar Arnfjörð Bjarmason | 8dda4cb | 2021-07-30 19:59:46 +0200 | [diff] [blame] | 1034 | curl_easy_setopt(slot->curl, CURLOPT_WRITEDATA, &rpc_in_data); |
Masaya Suzuki | b79bdd8 | 2019-01-10 11:33:49 -0800 | [diff] [blame] | 1035 | curl_easy_setopt(slot->curl, CURLOPT_FAILONERROR, 0); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1036 | |
David Turner | 296b847 | 2016-11-18 15:30:49 -0500 | [diff] [blame] | 1037 | |
| 1038 | rpc->any_written = 0; |
Jeff King | 3a347ed | 2013-10-31 02:36:26 -0400 | [diff] [blame] | 1039 | err = run_slot(slot, NULL); |
Jeff King | 2501aff | 2013-09-28 04:31:45 -0400 | [diff] [blame] | 1040 | if (err == HTTP_REAUTH && !large_request) { |
| 1041 | credential_fill(&http_auth); |
Jeff King | abf8df8 | 2012-10-12 03:35:33 -0400 | [diff] [blame] | 1042 | goto retry; |
Jeff King | 2501aff | 2013-09-28 04:31:45 -0400 | [diff] [blame] | 1043 | } |
Jeff King | b81401c | 2012-08-27 09:27:15 -0400 | [diff] [blame] | 1044 | if (err != HTTP_OK) |
| 1045 | err = -1; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1046 | |
David Turner | 296b847 | 2016-11-18 15:30:49 -0500 | [diff] [blame] | 1047 | if (!rpc->any_written) |
| 1048 | err = -1; |
| 1049 | |
Denton Liu | 74b082a | 2020-05-19 06:53:58 -0400 | [diff] [blame] | 1050 | if (rpc_in_data.pktline_state.len_filled) |
| 1051 | err = error(_("%d bytes of length header were received"), rpc_in_data.pktline_state.len_filled); |
| 1052 | if (rpc_in_data.pktline_state.remaining) |
| 1053 | err = error(_("%d bytes of body are still expected"), rpc_in_data.pktline_state.remaining); |
| 1054 | |
Denton Liu | b0df0c1 | 2020-05-19 06:54:00 -0400 | [diff] [blame] | 1055 | if (stateless_connect) |
| 1056 | packet_response_end(rpc->in); |
| 1057 | |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1058 | curl_slist_free_all(headers); |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 1059 | free(gzip_body); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1060 | return err; |
| 1061 | } |
| 1062 | |
Jonathan Tan | 7d50d34 | 2019-02-14 11:06:35 -0800 | [diff] [blame] | 1063 | static int rpc_service(struct rpc_state *rpc, struct discovery *heads, |
Jonathan Tan | b359030 | 2019-02-14 11:06:37 -0800 | [diff] [blame] | 1064 | const char **client_argv, const struct strbuf *preamble, |
| 1065 | struct strbuf *rpc_result) |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1066 | { |
| 1067 | const char *svc = rpc->service_name; |
| 1068 | struct strbuf buf = STRBUF_INIT; |
René Scharfe | d318027 | 2014-08-19 21:09:35 +0200 | [diff] [blame] | 1069 | struct child_process client = CHILD_PROCESS_INIT; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1070 | int err = 0; |
| 1071 | |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1072 | client.in = -1; |
| 1073 | client.out = -1; |
| 1074 | client.git_cmd = 1; |
Ævar Arnfjörð Bjarmason | 6def0ff | 2021-11-25 23:52:18 +0100 | [diff] [blame] | 1075 | strvec_pushv(&client.args, client_argv); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1076 | if (start_command(&client)) |
| 1077 | exit(1); |
Jonathan Tan | 5d91669 | 2019-02-14 11:06:36 -0800 | [diff] [blame] | 1078 | write_or_die(client.in, preamble->buf, preamble->len); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1079 | if (heads) |
| 1080 | write_or_die(client.in, heads->buf, heads->len); |
| 1081 | |
| 1082 | rpc->alloc = http_post_buffer; |
| 1083 | rpc->buf = xmalloc(rpc->alloc); |
| 1084 | rpc->in = client.in; |
| 1085 | rpc->out = client.out; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1086 | |
Jeff King | b227bbc | 2013-09-28 04:35:25 -0400 | [diff] [blame] | 1087 | strbuf_addf(&buf, "%s%s", url.buf, svc); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1088 | rpc->service_url = strbuf_detach(&buf, NULL); |
| 1089 | |
Li Linchao | b0c4adc | 2022-07-11 05:58:54 +0000 | [diff] [blame] | 1090 | rpc->hdr_accept_language = xstrdup_or_null(http_get_accept_language_header()); |
| 1091 | |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1092 | strbuf_addf(&buf, "Content-Type: application/x-%s-request", svc); |
| 1093 | rpc->hdr_content_type = strbuf_detach(&buf, NULL); |
| 1094 | |
Shawn O. Pearce | 8efa5f6 | 2010-01-12 09:54:04 -0800 | [diff] [blame] | 1095 | strbuf_addf(&buf, "Accept: application/x-%s-result", svc); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1096 | rpc->hdr_accept = strbuf_detach(&buf, NULL); |
| 1097 | |
Brandon Williams | 884e586 | 2018-03-15 10:31:39 -0700 | [diff] [blame] | 1098 | if (get_protocol_http_header(heads->version, &buf)) |
| 1099 | rpc->protocol_header = strbuf_detach(&buf, NULL); |
| 1100 | else |
| 1101 | rpc->protocol_header = NULL; |
| 1102 | |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1103 | while (!err) { |
Ævar Arnfjörð Bjarmason | ec9a37d | 2021-10-14 22:15:12 +0200 | [diff] [blame] | 1104 | int n = packet_read(rpc->out, rpc->buf, rpc->alloc, 0); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1105 | if (!n) |
| 1106 | break; |
| 1107 | rpc->pos = 0; |
| 1108 | rpc->len = n; |
Denton Liu | 74b082a | 2020-05-19 06:53:58 -0400 | [diff] [blame] | 1109 | err |= post_rpc(rpc, 0, 0); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1110 | } |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1111 | |
| 1112 | close(client.in); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1113 | client.in = -1; |
Shawn O. Pearce | 6cdf022 | 2011-10-04 16:20:19 -0700 | [diff] [blame] | 1114 | if (!err) { |
Jonathan Tan | b359030 | 2019-02-14 11:06:37 -0800 | [diff] [blame] | 1115 | strbuf_read(rpc_result, client.out, 0); |
Shawn O. Pearce | 6cdf022 | 2011-10-04 16:20:19 -0700 | [diff] [blame] | 1116 | } else { |
| 1117 | char buf[4096]; |
| 1118 | for (;;) |
| 1119 | if (xread(client.out, buf, sizeof(buf)) <= 0) |
| 1120 | break; |
| 1121 | } |
Shawn O. Pearce | b4ee10f | 2010-08-06 14:19:44 -0700 | [diff] [blame] | 1122 | |
| 1123 | close(client.out); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1124 | client.out = -1; |
| 1125 | |
| 1126 | err |= finish_command(&client); |
| 1127 | free(rpc->service_url); |
| 1128 | free(rpc->hdr_content_type); |
| 1129 | free(rpc->hdr_accept); |
Li Linchao | b0c4adc | 2022-07-11 05:58:54 +0000 | [diff] [blame] | 1130 | free(rpc->hdr_accept_language); |
Brandon Williams | 884e586 | 2018-03-15 10:31:39 -0700 | [diff] [blame] | 1131 | free(rpc->protocol_header); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1132 | free(rpc->buf); |
| 1133 | strbuf_release(&buf); |
| 1134 | return err; |
| 1135 | } |
| 1136 | |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1137 | static int fetch_dumb(int nr_heads, struct ref **to_fetch) |
| 1138 | { |
Tay Ray Chuan | 26e1e0b | 2010-03-02 18:49:31 +0800 | [diff] [blame] | 1139 | struct walker *walker; |
Jeff King | b32fa95 | 2016-02-22 17:44:25 -0500 | [diff] [blame] | 1140 | char **targets; |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1141 | int ret, i; |
| 1142 | |
Jeff King | b32fa95 | 2016-02-22 17:44:25 -0500 | [diff] [blame] | 1143 | ALLOC_ARRAY(targets, nr_heads); |
Nguyễn Thái Ngọc Duy | 508ea88 | 2016-06-12 17:53:59 +0700 | [diff] [blame] | 1144 | if (options.depth || options.deepen_since) |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 1145 | die(_("dumb http transport does not support shallow capabilities")); |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1146 | for (i = 0; i < nr_heads; i++) |
brian m. carlson | f4e54d0 | 2015-11-10 02:22:20 +0000 | [diff] [blame] | 1147 | targets[i] = xstrdup(oid_to_hex(&to_fetch[i]->old_oid)); |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1148 | |
Jeff King | b227bbc | 2013-09-28 04:35:25 -0400 | [diff] [blame] | 1149 | walker = get_http_walker(url.buf); |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 1150 | walker->get_verbosely = options.verbosity >= 3; |
René Scharfe | 7655b41 | 2020-03-03 21:55:34 +0100 | [diff] [blame] | 1151 | walker->get_progress = options.progress; |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1152 | walker->get_recover = 0; |
| 1153 | ret = walker_fetch(walker, nr_heads, targets, NULL, NULL); |
Tay Ray Chuan | 26e1e0b | 2010-03-02 18:49:31 +0800 | [diff] [blame] | 1154 | walker_free(walker); |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1155 | |
| 1156 | for (i = 0; i < nr_heads; i++) |
| 1157 | free(targets[i]); |
| 1158 | free(targets); |
| 1159 | |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 1160 | return ret ? error(_("fetch failed.")) : 0; |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1161 | } |
| 1162 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1163 | static int fetch_git(struct discovery *heads, |
| 1164 | int nr_heads, struct ref **to_fetch) |
| 1165 | { |
Li Linchao | b0c4adc | 2022-07-11 05:58:54 +0000 | [diff] [blame] | 1166 | struct rpc_state rpc = RPC_STATE_INIT; |
Ivan Todoroski | 8150749 | 2012-04-02 17:14:44 +0200 | [diff] [blame] | 1167 | struct strbuf preamble = STRBUF_INIT; |
Nguyễn Thái Ngọc Duy | b5f62eb | 2016-06-12 17:53:43 +0700 | [diff] [blame] | 1168 | int i, err; |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1169 | struct strvec args = STRVEC_INIT; |
Jonathan Tan | b359030 | 2019-02-14 11:06:37 -0800 | [diff] [blame] | 1170 | struct strbuf rpc_result = STRBUF_INIT; |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1171 | |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1172 | strvec_pushl(&args, "fetch-pack", "--stateless-rpc", |
Jeff King | f6d8942 | 2020-07-28 16:26:31 -0400 | [diff] [blame] | 1173 | "--stdin", "--lock-pack", NULL); |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1174 | if (options.followtags) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1175 | strvec_push(&args, "--include-tag"); |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1176 | if (options.thin) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1177 | strvec_push(&args, "--thin"); |
Nguyễn Thái Ngọc Duy | b5f62eb | 2016-06-12 17:53:43 +0700 | [diff] [blame] | 1178 | if (options.verbosity >= 3) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1179 | strvec_pushl(&args, "-v", "-v", NULL); |
Nguyễn Thái Ngọc Duy | 9ba3804 | 2013-07-21 15:18:05 +0700 | [diff] [blame] | 1180 | if (options.check_self_contained_and_connected) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1181 | strvec_push(&args, "--check-self-contained-and-connected"); |
Nguyễn Thái Ngọc Duy | 1609488 | 2013-12-05 20:02:50 +0700 | [diff] [blame] | 1182 | if (options.cloning) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1183 | strvec_push(&args, "--cloning"); |
Nguyễn Thái Ngọc Duy | 1609488 | 2013-12-05 20:02:50 +0700 | [diff] [blame] | 1184 | if (options.update_shallow) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1185 | strvec_push(&args, "--update-shallow"); |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1186 | if (!options.progress) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1187 | strvec_push(&args, "--no-progress"); |
Nguyễn Thái Ngọc Duy | b5f62eb | 2016-06-12 17:53:43 +0700 | [diff] [blame] | 1188 | if (options.depth) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1189 | strvec_pushf(&args, "--depth=%lu", options.depth); |
Nguyễn Thái Ngọc Duy | 508ea88 | 2016-06-12 17:53:59 +0700 | [diff] [blame] | 1190 | if (options.deepen_since) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1191 | strvec_pushf(&args, "--shallow-since=%s", options.deepen_since); |
Nguyễn Thái Ngọc Duy | a45a260 | 2016-06-12 17:54:04 +0700 | [diff] [blame] | 1192 | for (i = 0; i < options.deepen_not.nr; i++) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1193 | strvec_pushf(&args, "--shallow-exclude=%s", |
Jeff King | f6d8942 | 2020-07-28 16:26:31 -0400 | [diff] [blame] | 1194 | options.deepen_not.items[i].string); |
Nguyễn Thái Ngọc Duy | cccf74e | 2016-06-12 17:54:09 +0700 | [diff] [blame] | 1195 | if (options.deepen_relative && options.depth) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1196 | strvec_push(&args, "--deepen-relative"); |
Jonathan Tan | 88e2f9e | 2017-12-05 16:58:49 +0000 | [diff] [blame] | 1197 | if (options.from_promisor) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1198 | strvec_push(&args, "--from-promisor"); |
Robert Coup | 869a0eb | 2022-03-28 14:02:07 +0000 | [diff] [blame] | 1199 | if (options.refetch) |
| 1200 | strvec_push(&args, "--refetch"); |
Jeff Hostetler | acb0c57 | 2017-12-08 15:58:44 +0000 | [diff] [blame] | 1201 | if (options.filter) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1202 | strvec_pushf(&args, "--filter=%s", options.filter); |
| 1203 | strvec_push(&args, url.buf); |
Ivan Todoroski | 8150749 | 2012-04-02 17:14:44 +0200 | [diff] [blame] | 1204 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1205 | for (i = 0; i < nr_heads; i++) { |
| 1206 | struct ref *ref = to_fetch[i]; |
Jeff King | 94ee8e2 | 2015-01-28 12:58:50 -0500 | [diff] [blame] | 1207 | if (!*ref->name) |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 1208 | die(_("cannot fetch by sha1 over smart http")); |
Nguyễn Thái Ngọc Duy | 58f2ed0 | 2013-12-05 20:02:49 +0700 | [diff] [blame] | 1209 | packet_buf_write(&preamble, "%s %s\n", |
brian m. carlson | f4e54d0 | 2015-11-10 02:22:20 +0000 | [diff] [blame] | 1210 | oid_to_hex(&ref->old_oid), ref->name); |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1211 | } |
Ivan Todoroski | 8150749 | 2012-04-02 17:14:44 +0200 | [diff] [blame] | 1212 | packet_buf_flush(&preamble); |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1213 | |
| 1214 | memset(&rpc, 0, sizeof(rpc)); |
| 1215 | rpc.service_name = "git-upload-pack", |
Shawn O. Pearce | b853860 | 2009-10-30 17:47:43 -0700 | [diff] [blame] | 1216 | rpc.gzip_request = 1; |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1217 | |
Jeff King | d70a9eb | 2020-07-28 20:37:20 -0400 | [diff] [blame] | 1218 | err = rpc_service(&rpc, heads, args.v, &preamble, &rpc_result); |
Jonathan Tan | b359030 | 2019-02-14 11:06:37 -0800 | [diff] [blame] | 1219 | if (rpc_result.len) |
| 1220 | write_or_die(1, rpc_result.buf, rpc_result.len); |
| 1221 | strbuf_release(&rpc_result); |
Ivan Todoroski | 8150749 | 2012-04-02 17:14:44 +0200 | [diff] [blame] | 1222 | strbuf_release(&preamble); |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1223 | strvec_clear(&args); |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1224 | return err; |
| 1225 | } |
| 1226 | |
| 1227 | static int fetch(int nr_heads, struct ref **to_fetch) |
| 1228 | { |
Jeff King | 2a45520 | 2013-02-20 15:07:19 -0500 | [diff] [blame] | 1229 | struct discovery *d = discover_refs("git-upload-pack", 0); |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1230 | if (d->proto_git) |
| 1231 | return fetch_git(d, nr_heads, to_fetch); |
| 1232 | else |
| 1233 | return fetch_dumb(nr_heads, to_fetch); |
| 1234 | } |
| 1235 | |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1236 | static void parse_fetch(struct strbuf *buf) |
| 1237 | { |
| 1238 | struct ref **to_fetch = NULL; |
| 1239 | struct ref *list_head = NULL; |
| 1240 | struct ref **list = &list_head; |
| 1241 | int alloc_heads = 0, nr_heads = 0; |
| 1242 | |
| 1243 | do { |
Jeff King | 95b567c | 2014-06-18 15:48:29 -0400 | [diff] [blame] | 1244 | const char *p; |
| 1245 | if (skip_prefix(buf->buf, "fetch ", &p)) { |
| 1246 | const char *name; |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1247 | struct ref *ref; |
brian m. carlson | 8338c91 | 2015-11-10 02:22:22 +0000 | [diff] [blame] | 1248 | struct object_id old_oid; |
brian m. carlson | 9c9492e | 2019-02-19 00:05:16 +0000 | [diff] [blame] | 1249 | const char *q; |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1250 | |
brian m. carlson | 9c9492e | 2019-02-19 00:05:16 +0000 | [diff] [blame] | 1251 | if (parse_oid_hex(p, &old_oid, &q)) |
Jiang Xin | 8a1569d | 2019-06-02 23:11:22 +0800 | [diff] [blame] | 1252 | die(_("protocol error: expected sha/ref, got '%s'"), p); |
brian m. carlson | 9c9492e | 2019-02-19 00:05:16 +0000 | [diff] [blame] | 1253 | if (*q == ' ') |
| 1254 | name = q + 1; |
| 1255 | else if (!*q) |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1256 | name = ""; |
| 1257 | else |
Jiang Xin | 8a1569d | 2019-06-02 23:11:22 +0800 | [diff] [blame] | 1258 | die(_("protocol error: expected sha/ref, got '%s'"), p); |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1259 | |
| 1260 | ref = alloc_ref(name); |
brian m. carlson | 8338c91 | 2015-11-10 02:22:22 +0000 | [diff] [blame] | 1261 | oidcpy(&ref->old_oid, &old_oid); |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1262 | |
| 1263 | *list = ref; |
| 1264 | list = &ref->next; |
| 1265 | |
| 1266 | ALLOC_GROW(to_fetch, nr_heads + 1, alloc_heads); |
| 1267 | to_fetch[nr_heads++] = ref; |
| 1268 | } |
| 1269 | else |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 1270 | die(_("http transport does not support %s"), buf->buf); |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1271 | |
| 1272 | strbuf_reset(buf); |
Junio C Hamano | 8f309ae | 2016-01-13 15:31:17 -0800 | [diff] [blame] | 1273 | if (strbuf_getline_lf(buf, stdin) == EOF) |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1274 | return; |
| 1275 | if (!*buf->buf) |
| 1276 | break; |
| 1277 | } while (1); |
| 1278 | |
Shawn O. Pearce | 249b200 | 2009-10-30 17:47:42 -0700 | [diff] [blame] | 1279 | if (fetch(nr_heads, to_fetch)) |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1280 | exit(128); /* error already reported */ |
| 1281 | free_refs(list_head); |
| 1282 | free(to_fetch); |
| 1283 | |
| 1284 | printf("\n"); |
| 1285 | fflush(stdout); |
| 1286 | strbuf_reset(buf); |
| 1287 | } |
| 1288 | |
Derrick Stolee | b5624a4 | 2022-08-09 13:11:39 +0000 | [diff] [blame] | 1289 | static void parse_get(const char *arg) |
| 1290 | { |
| 1291 | struct strbuf url = STRBUF_INIT; |
| 1292 | struct strbuf path = STRBUF_INIT; |
| 1293 | const char *space; |
| 1294 | |
| 1295 | space = strchr(arg, ' '); |
| 1296 | |
| 1297 | if (!space) |
| 1298 | die(_("protocol error: expected '<url> <path>', missing space")); |
| 1299 | |
| 1300 | strbuf_add(&url, arg, space - arg); |
| 1301 | strbuf_addstr(&path, space + 1); |
| 1302 | |
| 1303 | if (http_get_file(url.buf, path.buf, NULL)) |
| 1304 | die(_("failed to download file at URL '%s'"), url.buf); |
| 1305 | |
| 1306 | strbuf_release(&url); |
| 1307 | strbuf_release(&path); |
| 1308 | printf("\n"); |
| 1309 | fflush(stdout); |
| 1310 | } |
| 1311 | |
René Scharfe | 062a309 | 2019-10-13 15:37:39 +0200 | [diff] [blame] | 1312 | static int push_dav(int nr_spec, const char **specs) |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1313 | { |
Jeff King | 850d2fe | 2016-02-22 17:44:21 -0500 | [diff] [blame] | 1314 | struct child_process child = CHILD_PROCESS_INIT; |
| 1315 | size_t i; |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1316 | |
Jeff King | 850d2fe | 2016-02-22 17:44:21 -0500 | [diff] [blame] | 1317 | child.git_cmd = 1; |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1318 | strvec_push(&child.args, "http-push"); |
| 1319 | strvec_push(&child.args, "--helper-status"); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1320 | if (options.dry_run) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1321 | strvec_push(&child.args, "--dry-run"); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1322 | if (options.verbosity > 1) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1323 | strvec_push(&child.args, "--verbose"); |
| 1324 | strvec_push(&child.args, url.buf); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1325 | for (i = 0; i < nr_spec; i++) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1326 | strvec_push(&child.args, specs[i]); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1327 | |
Jeff King | 850d2fe | 2016-02-22 17:44:21 -0500 | [diff] [blame] | 1328 | if (run_command(&child)) |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 1329 | die(_("git-http-push failed")); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1330 | return 0; |
| 1331 | } |
| 1332 | |
René Scharfe | 062a309 | 2019-10-13 15:37:39 +0200 | [diff] [blame] | 1333 | static int push_git(struct discovery *heads, int nr_spec, const char **specs) |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1334 | { |
Li Linchao | b0c4adc | 2022-07-11 05:58:54 +0000 | [diff] [blame] | 1335 | struct rpc_state rpc = RPC_STATE_INIT; |
Junio C Hamano | 222b121 | 2013-07-08 22:16:31 -0700 | [diff] [blame] | 1336 | int i, err; |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1337 | struct strvec args; |
Junio C Hamano | 05c1eb1 | 2013-08-02 15:14:50 -0700 | [diff] [blame] | 1338 | struct string_list_item *cas_option; |
Jeff King | 26be19b | 2014-08-21 08:21:20 -0400 | [diff] [blame] | 1339 | struct strbuf preamble = STRBUF_INIT; |
Jonathan Tan | b359030 | 2019-02-14 11:06:37 -0800 | [diff] [blame] | 1340 | struct strbuf rpc_result = STRBUF_INIT; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1341 | |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1342 | strvec_init(&args); |
| 1343 | strvec_pushl(&args, "send-pack", "--stateless-rpc", "--helper-status", |
Jeff King | f6d8942 | 2020-07-28 16:26:31 -0400 | [diff] [blame] | 1344 | NULL); |
Junio C Hamano | 222b121 | 2013-07-08 22:16:31 -0700 | [diff] [blame] | 1345 | |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1346 | if (options.thin) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1347 | strvec_push(&args, "--thin"); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1348 | if (options.dry_run) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1349 | strvec_push(&args, "--dry-run"); |
Dave Borowitz | 3026109 | 2015-08-19 11:26:46 -0400 | [diff] [blame] | 1350 | if (options.push_cert == SEND_PACK_PUSH_CERT_ALWAYS) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1351 | strvec_push(&args, "--signed=yes"); |
Dave Borowitz | 3026109 | 2015-08-19 11:26:46 -0400 | [diff] [blame] | 1352 | else if (options.push_cert == SEND_PACK_PUSH_CERT_IF_ASKED) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1353 | strvec_push(&args, "--signed=if-asked"); |
brian m. carlson | 6f11942 | 2019-10-16 23:45:34 +0000 | [diff] [blame] | 1354 | if (options.atomic) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1355 | strvec_push(&args, "--atomic"); |
Clemens Buchacher | c207e34 | 2012-01-08 22:06:20 +0100 | [diff] [blame] | 1356 | if (options.verbosity == 0) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1357 | strvec_push(&args, "--quiet"); |
Clemens Buchacher | c207e34 | 2012-01-08 22:06:20 +0100 | [diff] [blame] | 1358 | else if (options.verbosity > 1) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1359 | strvec_push(&args, "--verbose"); |
Brandon Williams | 511155d | 2017-03-22 15:22:00 -0700 | [diff] [blame] | 1360 | for (i = 0; i < options.push_options.nr; i++) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1361 | strvec_pushf(&args, "--push-option=%s", |
Jeff King | f6d8942 | 2020-07-28 16:26:31 -0400 | [diff] [blame] | 1362 | options.push_options.items[i].string); |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1363 | strvec_push(&args, options.progress ? "--progress" : "--no-progress"); |
Junio C Hamano | 05c1eb1 | 2013-08-02 15:14:50 -0700 | [diff] [blame] | 1364 | for_each_string_list_item(cas_option, &cas_options) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1365 | strvec_push(&args, cas_option->string); |
| 1366 | strvec_push(&args, url.buf); |
Jeff King | 26be19b | 2014-08-21 08:21:20 -0400 | [diff] [blame] | 1367 | |
Srinidhi Kaushik | 3b990aa | 2020-10-03 17:40:45 +0530 | [diff] [blame] | 1368 | if (options.force_if_includes) |
| 1369 | strvec_push(&args, "--force-if-includes"); |
| 1370 | |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1371 | strvec_push(&args, "--stdin"); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1372 | for (i = 0; i < nr_spec; i++) |
Jeff King | 26be19b | 2014-08-21 08:21:20 -0400 | [diff] [blame] | 1373 | packet_buf_write(&preamble, "%s\n", specs[i]); |
| 1374 | packet_buf_flush(&preamble); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1375 | |
| 1376 | memset(&rpc, 0, sizeof(rpc)); |
| 1377 | rpc.service_name = "git-receive-pack", |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1378 | |
Jeff King | d70a9eb | 2020-07-28 20:37:20 -0400 | [diff] [blame] | 1379 | err = rpc_service(&rpc, heads, args.v, &preamble, &rpc_result); |
Jonathan Tan | b359030 | 2019-02-14 11:06:37 -0800 | [diff] [blame] | 1380 | if (rpc_result.len) |
| 1381 | write_or_die(1, rpc_result.buf, rpc_result.len); |
| 1382 | strbuf_release(&rpc_result); |
Jeff King | 26be19b | 2014-08-21 08:21:20 -0400 | [diff] [blame] | 1383 | strbuf_release(&preamble); |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1384 | strvec_clear(&args); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1385 | return err; |
| 1386 | } |
| 1387 | |
René Scharfe | 062a309 | 2019-10-13 15:37:39 +0200 | [diff] [blame] | 1388 | static int push(int nr_spec, const char **specs) |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1389 | { |
Jeff King | 2a45520 | 2013-02-20 15:07:19 -0500 | [diff] [blame] | 1390 | struct discovery *heads = discover_refs("git-receive-pack", 1); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1391 | int ret; |
| 1392 | |
| 1393 | if (heads->proto_git) |
| 1394 | ret = push_git(heads, nr_spec, specs); |
| 1395 | else |
| 1396 | ret = push_dav(nr_spec, specs); |
| 1397 | free_discovery(heads); |
| 1398 | return ret; |
| 1399 | } |
| 1400 | |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1401 | static void parse_push(struct strbuf *buf) |
| 1402 | { |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1403 | struct strvec specs = STRVEC_INIT; |
René Scharfe | 062a309 | 2019-10-13 15:37:39 +0200 | [diff] [blame] | 1404 | int ret; |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1405 | |
| 1406 | do { |
Junio C Hamano | 145136a | 2020-01-30 11:35:46 -0800 | [diff] [blame] | 1407 | const char *arg; |
| 1408 | if (skip_prefix(buf->buf, "push ", &arg)) |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1409 | strvec_push(&specs, arg); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1410 | else |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 1411 | die(_("http transport does not support %s"), buf->buf); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1412 | |
| 1413 | strbuf_reset(buf); |
Junio C Hamano | 8f309ae | 2016-01-13 15:31:17 -0800 | [diff] [blame] | 1414 | if (strbuf_getline_lf(buf, stdin) == EOF) |
Jim Meyering | dc4cd76 | 2011-06-20 09:40:06 +0200 | [diff] [blame] | 1415 | goto free_specs; |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1416 | if (!*buf->buf) |
| 1417 | break; |
| 1418 | } while (1); |
| 1419 | |
Jeff King | d70a9eb | 2020-07-28 20:37:20 -0400 | [diff] [blame] | 1420 | ret = push(specs.nr, specs.v); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1421 | printf("\n"); |
| 1422 | fflush(stdout); |
Jim Meyering | dc4cd76 | 2011-06-20 09:40:06 +0200 | [diff] [blame] | 1423 | |
Shawn O. Pearce | 5238cbf | 2012-01-19 19:12:09 -0800 | [diff] [blame] | 1424 | if (ret) |
| 1425 | exit(128); /* error already reported */ |
| 1426 | |
Denton Liu | 04cc91a | 2020-05-18 11:47:19 -0400 | [diff] [blame] | 1427 | free_specs: |
Jeff King | c972bf4 | 2020-07-28 16:25:12 -0400 | [diff] [blame] | 1428 | strvec_clear(&specs); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1429 | } |
| 1430 | |
Brandon Williams | 0f1dc53 | 2018-03-15 10:31:41 -0700 | [diff] [blame] | 1431 | static int stateless_connect(const char *service_name) |
| 1432 | { |
| 1433 | struct discovery *discover; |
Li Linchao | b0c4adc | 2022-07-11 05:58:54 +0000 | [diff] [blame] | 1434 | struct rpc_state rpc = RPC_STATE_INIT; |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 1435 | struct strbuf buf = STRBUF_INIT; |
Li Linchao | b0c4adc | 2022-07-11 05:58:54 +0000 | [diff] [blame] | 1436 | const char *accept_language; |
Brandon Williams | 0f1dc53 | 2018-03-15 10:31:41 -0700 | [diff] [blame] | 1437 | |
| 1438 | /* |
| 1439 | * Run the info/refs request and see if the server supports protocol |
| 1440 | * v2. If and only if the server supports v2 can we successfully |
| 1441 | * establish a stateless connection, otherwise we need to tell the |
| 1442 | * client to fallback to using other transport helper functions to |
| 1443 | * complete their request. |
| 1444 | */ |
| 1445 | discover = discover_refs(service_name, 0); |
| 1446 | if (discover->version != protocol_v2) { |
| 1447 | printf("fallback\n"); |
| 1448 | fflush(stdout); |
| 1449 | return -1; |
| 1450 | } else { |
| 1451 | /* Stateless Connection established */ |
| 1452 | printf("\n"); |
| 1453 | fflush(stdout); |
| 1454 | } |
Li Linchao | b0c4adc | 2022-07-11 05:58:54 +0000 | [diff] [blame] | 1455 | accept_language = http_get_accept_language_header(); |
| 1456 | if (accept_language) |
| 1457 | rpc.hdr_accept_language = xstrfmt("%s", accept_language); |
Brandon Williams | 0f1dc53 | 2018-03-15 10:31:41 -0700 | [diff] [blame] | 1458 | |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 1459 | rpc.service_name = service_name; |
| 1460 | rpc.service_url = xstrfmt("%s%s", url.buf, rpc.service_name); |
| 1461 | rpc.hdr_content_type = xstrfmt("Content-Type: application/x-%s-request", rpc.service_name); |
| 1462 | rpc.hdr_accept = xstrfmt("Accept: application/x-%s-result", rpc.service_name); |
| 1463 | if (get_protocol_http_header(discover->version, &buf)) { |
| 1464 | rpc.protocol_header = strbuf_detach(&buf, NULL); |
| 1465 | } else { |
| 1466 | rpc.protocol_header = NULL; |
| 1467 | strbuf_release(&buf); |
| 1468 | } |
| 1469 | rpc.buf = xmalloc(http_post_buffer); |
| 1470 | rpc.alloc = http_post_buffer; |
| 1471 | rpc.len = 0; |
| 1472 | rpc.pos = 0; |
| 1473 | rpc.in = 1; |
| 1474 | rpc.out = 0; |
| 1475 | rpc.any_written = 0; |
| 1476 | rpc.gzip_request = 1; |
| 1477 | rpc.initial_buffer = 0; |
| 1478 | rpc.write_line_lengths = 1; |
| 1479 | rpc.flush_read_but_not_sent = 0; |
Brandon Williams | 0f1dc53 | 2018-03-15 10:31:41 -0700 | [diff] [blame] | 1480 | |
| 1481 | /* |
| 1482 | * Dump the capability listing that we got from the server earlier |
| 1483 | * during the info/refs request. |
| 1484 | */ |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 1485 | write_or_die(rpc.in, discover->buf, discover->len); |
Brandon Williams | 0f1dc53 | 2018-03-15 10:31:41 -0700 | [diff] [blame] | 1486 | |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 1487 | /* Until we see EOF keep sending POSTs */ |
| 1488 | while (1) { |
| 1489 | size_t avail; |
| 1490 | enum packet_read_status status; |
| 1491 | |
| 1492 | if (!rpc_read_from_out(&rpc, PACKET_READ_GENTLE_ON_EOF, &avail, |
| 1493 | &status)) |
| 1494 | BUG("The entire rpc->buf should be larger than LARGE_PACKET_MAX"); |
| 1495 | if (status == PACKET_READ_EOF) |
| 1496 | break; |
Denton Liu | 74b082a | 2020-05-19 06:53:58 -0400 | [diff] [blame] | 1497 | if (post_rpc(&rpc, 1, status == PACKET_READ_FLUSH)) |
Brandon Williams | 0f1dc53 | 2018-03-15 10:31:41 -0700 | [diff] [blame] | 1498 | /* We would have an err here */ |
| 1499 | break; |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 1500 | /* Reset the buffer for next request */ |
| 1501 | rpc.len = 0; |
Brandon Williams | 0f1dc53 | 2018-03-15 10:31:41 -0700 | [diff] [blame] | 1502 | } |
| 1503 | |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 1504 | free(rpc.service_url); |
| 1505 | free(rpc.hdr_content_type); |
| 1506 | free(rpc.hdr_accept); |
Li Linchao | b0c4adc | 2022-07-11 05:58:54 +0000 | [diff] [blame] | 1507 | free(rpc.hdr_accept_language); |
Jonathan Tan | a97d007 | 2019-02-21 12:24:41 -0800 | [diff] [blame] | 1508 | free(rpc.protocol_header); |
| 1509 | free(rpc.buf); |
| 1510 | strbuf_release(&buf); |
| 1511 | |
Brandon Williams | 0f1dc53 | 2018-03-15 10:31:41 -0700 | [diff] [blame] | 1512 | return 0; |
| 1513 | } |
| 1514 | |
Jeff King | 3f2e229 | 2016-07-01 01:58:58 -0400 | [diff] [blame] | 1515 | int cmd_main(int argc, const char **argv) |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1516 | { |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1517 | struct strbuf buf = STRBUF_INIT; |
Daniel Barkalow | a45d3d7 | 2009-11-03 21:52:35 -0500 | [diff] [blame] | 1518 | int nongit; |
Ævar Arnfjörð Bjarmason | b07fa8f | 2022-03-04 19:32:08 +0100 | [diff] [blame] | 1519 | int ret = 1; |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1520 | |
Daniel Barkalow | a45d3d7 | 2009-11-03 21:52:35 -0500 | [diff] [blame] | 1521 | setup_git_directory_gently(&nongit); |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1522 | if (argc < 2) { |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 1523 | error(_("remote-curl: usage: git remote-curl <remote> [<url>]")); |
Ævar Arnfjörð Bjarmason | b07fa8f | 2022-03-04 19:32:08 +0100 | [diff] [blame] | 1524 | goto cleanup; |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1525 | } |
| 1526 | |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 1527 | options.verbosity = 1; |
| 1528 | options.progress = !!isatty(2); |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 1529 | options.thin = 1; |
Ævar Arnfjörð Bjarmason | abf897b | 2021-09-28 14:49:45 +0200 | [diff] [blame] | 1530 | string_list_init_dup(&options.deepen_not); |
| 1531 | string_list_init_dup(&options.push_options); |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 1532 | |
Jeff Hostetler | ee4512e | 2019-02-22 14:25:01 -0800 | [diff] [blame] | 1533 | /* |
| 1534 | * Just report "remote-curl" here (folding all the various aliases |
| 1535 | * ("git-remote-http", "git-remote-https", and etc.) here since they |
| 1536 | * are all just copies of the same actual executable. |
| 1537 | */ |
| 1538 | trace2_cmd_name("remote-curl"); |
| 1539 | |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1540 | remote = remote_get(argv[1]); |
| 1541 | |
| 1542 | if (argc > 2) { |
Jeff King | b227bbc | 2013-09-28 04:35:25 -0400 | [diff] [blame] | 1543 | end_url_with_slash(&url, argv[2]); |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1544 | } else { |
Jeff King | b227bbc | 2013-09-28 04:35:25 -0400 | [diff] [blame] | 1545 | end_url_with_slash(&url, remote->url[0]); |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1546 | } |
| 1547 | |
Jeff King | b227bbc | 2013-09-28 04:35:25 -0400 | [diff] [blame] | 1548 | http_init(remote, url.buf, 0); |
Tay Ray Chuan | 888692b | 2010-03-02 18:49:29 +0800 | [diff] [blame] | 1549 | |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1550 | do { |
Jeff King | 95b567c | 2014-06-18 15:48:29 -0400 | [diff] [blame] | 1551 | const char *arg; |
| 1552 | |
Junio C Hamano | 8f309ae | 2016-01-13 15:31:17 -0800 | [diff] [blame] | 1553 | if (strbuf_getline_lf(&buf, stdin) == EOF) { |
Sverre Rabbelier | 1843f0c | 2011-07-16 15:03:29 +0200 | [diff] [blame] | 1554 | if (ferror(stdin)) |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 1555 | error(_("remote-curl: error reading command stream from git")); |
Ævar Arnfjörð Bjarmason | b07fa8f | 2022-03-04 19:32:08 +0100 | [diff] [blame] | 1556 | goto cleanup; |
Sverre Rabbelier | 1843f0c | 2011-07-16 15:03:29 +0200 | [diff] [blame] | 1557 | } |
| 1558 | if (buf.len == 0) |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1559 | break; |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 1560 | if (starts_with(buf.buf, "fetch ")) { |
Daniel Barkalow | a45d3d7 | 2009-11-03 21:52:35 -0500 | [diff] [blame] | 1561 | if (nongit) |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 1562 | die(_("remote-curl: fetch attempted without a local repo")); |
Shawn O. Pearce | 292ce46 | 2009-10-30 17:47:28 -0700 | [diff] [blame] | 1563 | parse_fetch(&buf); |
| 1564 | |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 1565 | } else if (!strcmp(buf.buf, "list") || starts_with(buf.buf, "list ")) { |
Shawn O. Pearce | 97cc7bc | 2009-10-30 17:47:40 -0700 | [diff] [blame] | 1566 | int for_push = !!strstr(buf.buf + 4, "for-push"); |
| 1567 | output_refs(get_refs(for_push)); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1568 | |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 1569 | } else if (starts_with(buf.buf, "push ")) { |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1570 | parse_push(&buf); |
| 1571 | |
Jeff King | 95b567c | 2014-06-18 15:48:29 -0400 | [diff] [blame] | 1572 | } else if (skip_prefix(buf.buf, "option ", &arg)) { |
| 1573 | char *value = strchr(arg, ' '); |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 1574 | int result; |
| 1575 | |
| 1576 | if (value) |
| 1577 | *value++ = '\0'; |
| 1578 | else |
| 1579 | value = "true"; |
| 1580 | |
Jeff King | 95b567c | 2014-06-18 15:48:29 -0400 | [diff] [blame] | 1581 | result = set_option(arg, value); |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 1582 | if (!result) |
| 1583 | printf("ok\n"); |
| 1584 | else if (result < 0) |
| 1585 | printf("error invalid value\n"); |
| 1586 | else |
| 1587 | printf("unsupported\n"); |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1588 | fflush(stdout); |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 1589 | |
Derrick Stolee | b5624a4 | 2022-08-09 13:11:39 +0000 | [diff] [blame] | 1590 | } else if (skip_prefix(buf.buf, "get ", &arg)) { |
| 1591 | parse_get(arg); |
| 1592 | fflush(stdout); |
| 1593 | |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1594 | } else if (!strcmp(buf.buf, "capabilities")) { |
Brandon Williams | 0f1dc53 | 2018-03-15 10:31:41 -0700 | [diff] [blame] | 1595 | printf("stateless-connect\n"); |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1596 | printf("fetch\n"); |
Derrick Stolee | b5624a4 | 2022-08-09 13:11:39 +0000 | [diff] [blame] | 1597 | printf("get\n"); |
Shawn O. Pearce | ef08ef9 | 2009-10-30 17:47:29 -0700 | [diff] [blame] | 1598 | printf("option\n"); |
Shawn O. Pearce | ae4efe1 | 2009-10-30 17:47:30 -0700 | [diff] [blame] | 1599 | printf("push\n"); |
Nguyễn Thái Ngọc Duy | 9ba3804 | 2013-07-21 15:18:05 +0700 | [diff] [blame] | 1600 | printf("check-connectivity\n"); |
brian m. carlson | 7f60501 | 2020-05-25 19:59:04 +0000 | [diff] [blame] | 1601 | printf("object-format\n"); |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1602 | printf("\n"); |
| 1603 | fflush(stdout); |
Brandon Williams | 0f1dc53 | 2018-03-15 10:31:41 -0700 | [diff] [blame] | 1604 | } else if (skip_prefix(buf.buf, "stateless-connect ", &arg)) { |
| 1605 | if (!stateless_connect(arg)) |
| 1606 | break; |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1607 | } else { |
Johannes Schindelin | ed8b413 | 2019-03-05 15:20:40 -0800 | [diff] [blame] | 1608 | error(_("remote-curl: unknown command '%s' from git"), buf.buf); |
Ævar Arnfjörð Bjarmason | b07fa8f | 2022-03-04 19:32:08 +0100 | [diff] [blame] | 1609 | goto cleanup; |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1610 | } |
| 1611 | strbuf_reset(&buf); |
| 1612 | } while (1); |
Tay Ray Chuan | 888692b | 2010-03-02 18:49:29 +0800 | [diff] [blame] | 1613 | |
| 1614 | http_cleanup(); |
Ævar Arnfjörð Bjarmason | b07fa8f | 2022-03-04 19:32:08 +0100 | [diff] [blame] | 1615 | ret = 0; |
| 1616 | cleanup: |
| 1617 | strbuf_release(&buf); |
Tay Ray Chuan | 888692b | 2010-03-02 18:49:29 +0800 | [diff] [blame] | 1618 | |
Ævar Arnfjörð Bjarmason | b07fa8f | 2022-03-04 19:32:08 +0100 | [diff] [blame] | 1619 | return ret; |
Daniel Barkalow | a2d725b | 2009-08-05 01:01:56 -0400 | [diff] [blame] | 1620 | } |