http transport: refactor storage Create a simple data structure that contains information about the server being connected to, whether that's the actual remote endpoint (git server) or an intermediate proxy. This allows for organization of streams, authentication state, etc.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
diff --git a/src/transports/http.c b/src/transports/http.c
index 5c060f4..44b03d7 100644
--- a/src/transports/http.c
+++ b/src/transports/http.c
@@ -70,16 +70,27 @@ typedef struct {
} http_stream;
typedef struct {
+ gitno_connection_data url;
+ git_stream *stream;
+
+ git_cred *cred;
+ git_cred *url_cred;
+
+ git_vector auth_challenges;
+ git_vector auth_contexts;
+} http_server;
+
+typedef struct {
git_smart_subtransport parent;
transport_smart *owner;
git_stream *gitserver_stream;
- gitno_connection_data gitserver_data;
bool connected;
- /* Proxy */
- git_proxy_options proxy;
+ http_server server;
+
+ http_server proxy;
char *proxy_url;
- gitno_connection_data proxy_data;
+ git_proxy_options proxy_opts;
/* Parser structures */
http_parser parser;
@@ -90,18 +101,10 @@ typedef struct {
char parse_buffer_data[NETIO_BUFSIZE];
char *content_type;
char *location;
- git_vector proxy_authenticate;
- git_vector www_authenticate;
enum last_cb last_cb;
int parse_error;
int error;
unsigned parse_finished : 1;
-
- /* Authentication */
- git_cred *cred;
- git_cred *url_cred;
- git_cred *proxy_cred;
- git_vector auth_contexts;
} http_subtransport;
typedef struct {
@@ -134,7 +137,7 @@ static bool challenge_match(git_http_auth_scheme *scheme, void *data)
static int auth_context_match(
git_http_auth_context **out,
- http_subtransport *t,
+ http_server *server,
bool (*scheme_match)(git_http_auth_scheme *scheme, void *data),
void *data)
{
@@ -155,7 +158,7 @@ static int auth_context_match(
return 0;
/* See if authentication has already started for this scheme */
- git_vector_foreach(&t->auth_contexts, i, c) {
+ git_vector_foreach(&server->auth_contexts, i, c) {
if (c->type == scheme->type) {
context = c;
break;
@@ -163,11 +166,11 @@ static int auth_context_match(
}
if (!context) {
- if (scheme->init_context(&context, &t->gitserver_data) < 0)
+ if (scheme->init_context(&context, &server->url) < 0)
return -1;
else if (!context)
return 0;
- else if (git_vector_insert(&t->auth_contexts, context) < 0)
+ else if (git_vector_insert(&server->auth_contexts, context) < 0)
return -1;
}
@@ -176,26 +179,27 @@ static int auth_context_match(
return 0;
}
-static int apply_credentials(git_buf *buf, http_subtransport *t)
+static int apply_credentials(git_buf *buf, http_server *server)
{
- git_cred *cred = t->cred;
+ git_cred *cred = server->cred;
git_http_auth_context *context;
/* Apply the credentials given to us in the URL */
- if (!cred && t->gitserver_data.user && t->gitserver_data.pass) {
- if (!t->url_cred &&
- git_cred_userpass_plaintext_new(&t->url_cred,
- t->gitserver_data.user, t->gitserver_data.pass) < 0)
+ if (!cred && server->url.user && server->url.pass) {
+ if (!server->url_cred &&
+ git_cred_userpass_plaintext_new(&server->url_cred,
+ server->url.user, server->url.pass) < 0)
return -1;
- cred = t->url_cred;
+ cred = server->url_cred;
}
if (!cred)
return 0;
/* Get or create a context for the best scheme for this cred type */
- if (auth_context_match(&context, t, credtype_match, &cred->credtype) < 0)
+ if (auth_context_match(&context, server,
+ credtype_match, &cred->credtype) < 0)
return -1;
if (!context)
@@ -210,15 +214,15 @@ static int gen_request(
size_t content_length)
{
http_subtransport *t = OWNING_SUBTRANSPORT(s);
- const char *path = t->gitserver_data.path ? t->gitserver_data.path : "/";
+ const char *path = t->server.url.path ? t->server.url.path : "/";
size_t i;
- if (t->proxy.type == GIT_PROXY_SPECIFIED)
+ if (t->proxy_opts.type == GIT_PROXY_SPECIFIED)
git_buf_printf(buf, "%s %s://%s:%s%s%s HTTP/1.1\r\n",
s->verb,
- t->gitserver_data.use_ssl ? "https" : "http",
- t->gitserver_data.host,
- t->gitserver_data.port,
+ t->server.url.use_ssl ? "https" : "http",
+ t->server.url.host,
+ t->server.url.port,
path, s->service_url);
else
git_buf_printf(buf, "%s %s%s HTTP/1.1\r\n",
@@ -227,9 +231,9 @@ static int gen_request(
git_buf_puts(buf, "User-Agent: ");
git_http__user_agent(buf);
git_buf_puts(buf, "\r\n");
- git_buf_printf(buf, "Host: %s", t->gitserver_data.host);
- if (strcmp(t->gitserver_data.port, gitno__default_port(&t->gitserver_data)) != 0) {
- git_buf_printf(buf, ":%s", t->gitserver_data.port);
+ git_buf_printf(buf, "Host: %s", t->server.url.host);
+ if (strcmp(t->server.url.port, gitno__default_port(&t->server.url)) != 0) {
+ git_buf_printf(buf, ":%s", t->server.url.port);
}
git_buf_puts(buf, "\r\n");
@@ -250,7 +254,7 @@ static int gen_request(
}
/* Apply credentials to the request */
- if (apply_credentials(buf, t) < 0)
+ if (apply_credentials(buf, &t->server) < 0)
return -1;
git_buf_puts(buf, "\r\n");
@@ -262,16 +266,16 @@ static int gen_request(
}
static int parse_authenticate_response(
- git_vector *www_authenticate,
- http_subtransport *t,
+ http_server *server,
int *allowed_types)
{
git_http_auth_context *context;
char *challenge;
size_t i;
- git_vector_foreach(www_authenticate, i, challenge) {
- if (auth_context_match(&context, t, challenge_match, challenge) < 0)
+ git_vector_foreach(&server->auth_challenges, i, challenge) {
+ if (auth_context_match(&context, server,
+ challenge_match, challenge) < 0)
return -1;
else if (!context)
continue;
@@ -301,13 +305,15 @@ static int on_header_ready(http_subtransport *t)
char *dup = git__strdup(git_buf_cstr(value));
GITERR_CHECK_ALLOC(dup);
- git_vector_insert(&t->proxy_authenticate, dup);
+ if (git_vector_insert(&t->proxy.auth_challenges, dup) < 0)
+ return -1;
}
else if (!strcasecmp("WWW-Authenticate", git_buf_cstr(name))) {
char *dup = git__strdup(git_buf_cstr(value));
GITERR_CHECK_ALLOC(dup);
- git_vector_insert(&t->www_authenticate, dup);
+ if (git_vector_insert(&t->server.auth_challenges, dup) < 0)
+ return -1;
}
else if (!strcasecmp("Location", git_buf_cstr(name))) {
if (!t->location) {
@@ -422,7 +428,7 @@ static int on_headers_complete(http_parser *parser)
http_subtransport *t = ctx->t;
http_stream *s = ctx->s;
git_buf buf = GIT_BUF_INIT;
- int allowed_proxy_auth_types = 0, allowed_www_auth_types = 0;
+ int proxy_auth_types = 0, server_auth_types = 0;
/* Enforce a reasonable cap on the number of replays */
if (s->replay_count++ >= GIT_HTTP_REPLAY_MAX) {
@@ -441,33 +447,31 @@ static int on_headers_complete(http_parser *parser)
* these may be 407/401 (authentication is not complete) or a 200
* (informing us that auth has completed).
*/
- if (parse_authenticate_response(&t->proxy_authenticate, t,
- &allowed_proxy_auth_types) < 0 ||
- parse_authenticate_response(&t->www_authenticate, t,
- &allowed_www_auth_types) < 0)
+ if (parse_authenticate_response(&t->proxy, &proxy_auth_types) < 0 ||
+ parse_authenticate_response(&t->server, &server_auth_types) < 0)
return t->parse_error = PARSE_ERROR_GENERIC;
/* Check for a proxy authentication failure. */
if (parser->status_code == 407 && get_verb == s->verb)
- return on_auth_required(&t->proxy_cred,
+ return on_auth_required(&t->proxy.cred,
parser,
- t->proxy.url,
+ t->proxy_opts.url,
SERVER_TYPE_PROXY,
- t->proxy.credentials,
- t->proxy.payload,
- t->proxy_data.user,
- allowed_proxy_auth_types);
+ t->proxy_opts.credentials,
+ t->proxy_opts.payload,
+ t->proxy.url.user,
+ proxy_auth_types);
/* Check for an authentication failure. */
if (parser->status_code == 401 && get_verb == s->verb)
- return on_auth_required(&t->cred,
+ return on_auth_required(&t->server.cred,
parser,
t->owner->url,
SERVER_TYPE_REMOTE,
t->owner->cred_acquire_cb,
t->owner->cred_acquire_payload,
- t->gitserver_data.user,
- allowed_www_auth_types);
+ t->server.url.user,
+ server_auth_types);
/* Check for a redirect.
* Right now we only permit a redirect to the same hostname. */
@@ -478,7 +482,7 @@ static int on_headers_complete(http_parser *parser)
parser->status_code == 308) &&
t->location) {
- if (gitno_connection_data_from_url(&t->gitserver_data, t->location, s->service_url) < 0)
+ if (gitno_connection_data_from_url(&t->server.url, t->location, s->service_url) < 0)
return t->parse_error = PARSE_ERROR_GENERIC;
/* Set the redirect URL on the stream. This is a transfer of
@@ -572,7 +576,7 @@ static int on_body_fill_buffer(http_parser *parser, const char *str, size_t len)
static void clear_parser_state(http_subtransport *t)
{
http_parser_init(&t->parser, HTTP_RESPONSE);
- gitno_buffer_setup_fromstream(t->gitserver_stream,
+ gitno_buffer_setup_fromstream(t->server.stream,
&t->parse_buffer,
t->parse_buffer_data,
sizeof(t->parse_buffer_data));
@@ -593,8 +597,8 @@ static void clear_parser_state(http_subtransport *t)
git__free(t->location);
t->location = NULL;
- git_vector_free_deep(&t->proxy_authenticate);
- git_vector_free_deep(&t->www_authenticate);
+ git_vector_free_deep(&t->proxy.auth_challenges);
+ git_vector_free_deep(&t->server.auth_challenges);
}
static int write_chunk(git_stream *io, const char *buffer, size_t len)
@@ -628,11 +632,11 @@ static int write_chunk(git_stream *io, const char *buffer, size_t len)
static int apply_proxy_config_to_stream(http_subtransport *t)
{
/* Only set the proxy configuration on the curl stream. */
- if (!git_stream_supports_proxy(t->gitserver_stream) ||
- t->proxy.type == GIT_PROXY_NONE)
+ if (!git_stream_supports_proxy(t->server.stream) ||
+ t->proxy_opts.type == GIT_PROXY_NONE)
return 0;
- return git_stream_set_proxy(t->gitserver_stream, &t->proxy);
+ return git_stream_set_proxy(t->server.stream, &t->proxy_opts);
}
static int load_proxy_config(http_subtransport *t)
@@ -647,21 +651,21 @@ static int load_proxy_config(http_subtransport *t)
git__free(t->proxy_url);
t->proxy_url = NULL;
- git_proxy_init_options(&t->proxy, GIT_PROXY_OPTIONS_VERSION);
+ git_proxy_init_options(&t->proxy_opts, GIT_PROXY_OPTIONS_VERSION);
if ((error = git_remote__get_http_proxy(t->owner->owner,
- !!t->gitserver_data.use_ssl, &t->proxy_url)) < 0)
+ !!t->server.url.use_ssl, &t->proxy_url)) < 0)
return error;
- t->proxy.type = GIT_PROXY_SPECIFIED;
- t->proxy.url = t->proxy_url;
- t->proxy.credentials = t->owner->proxy.credentials;
- t->proxy.certificate_check = t->owner->proxy.certificate_check;
- t->proxy.payload = t->owner->proxy.payload;
+ t->proxy_opts.type = GIT_PROXY_SPECIFIED;
+ t->proxy_opts.url = t->proxy_url;
+ t->proxy_opts.credentials = t->owner->proxy.credentials;
+ t->proxy_opts.certificate_check = t->owner->proxy.certificate_check;
+ t->proxy_opts.payload = t->owner->proxy.payload;
break;
case GIT_PROXY_SPECIFIED:
- memcpy(&t->proxy, &t->owner->proxy, sizeof(git_proxy_options));
+ memcpy(&t->proxy_opts, &t->owner->proxy, sizeof(git_proxy_options));
break;
default:
@@ -669,12 +673,12 @@ static int load_proxy_config(http_subtransport *t)
return -1;
}
- return gitno_connection_data_from_url(&t->proxy_data, t->proxy.url, NULL);
+ return gitno_connection_data_from_url(&t->proxy.url, t->proxy_opts.url, NULL);
}
static int http_connect(http_subtransport *t)
{
- gitno_connection_data *connection_data;
+ gitno_connection_data *connection_url;
int error;
if (t->connected &&
@@ -682,48 +686,48 @@ static int http_connect(http_subtransport *t)
t->parse_finished)
return 0;
- if (t->gitserver_stream) {
- git_stream_close(t->gitserver_stream);
- git_stream_free(t->gitserver_stream);
- t->gitserver_stream = NULL;
+ if (t->server.stream) {
+ git_stream_close(t->server.stream);
+ git_stream_free(t->server.stream);
+ t->server.stream = NULL;
t->connected = 0;
}
- connection_data = (t->proxy.type == GIT_PROXY_SPECIFIED) ?
- &t->proxy_data : &t->gitserver_data;
+ connection_url = (t->proxy_opts.type == GIT_PROXY_SPECIFIED) ?
+ &t->proxy.url : &t->server.url;
#ifdef GIT_CURL
- error = git_curl_stream_new(&t->gitserver_stream,
- t->gitserver_data.host, t->gitserver_data.port);
+ error = git_curl_stream_new(&t->server.stream,
+ t->server.url.host, t->server.url.port);
#else
- if (connection_data->use_ssl)
- error = git_tls_stream_new(&t->gitserver_stream,
- connection_data->host, connection_data->port);
+ if (connection_url->use_ssl)
+ error = git_tls_stream_new(&t->server.stream,
+ connection_url->host, connection_url->port);
else
- error = git_socket_stream_new(&t->gitserver_stream,
- connection_data->host, connection_data->port);
+ error = git_socket_stream_new(&t->server.stream,
+ connection_url->host, connection_url->port);
#endif
if (error < 0)
return error;
- GITERR_CHECK_VERSION(t->gitserver_stream, GIT_STREAM_VERSION, "git_stream");
+ GITERR_CHECK_VERSION(t->server.stream, GIT_STREAM_VERSION, "git_stream");
if ((error = apply_proxy_config_to_stream(t)) < 0)
return error;
- error = git_stream_connect(t->gitserver_stream);
+ error = git_stream_connect(t->server.stream);
if ((!error || error == GIT_ECERTIFICATE) && t->owner->certificate_check_cb != NULL &&
- git_stream_is_encrypted(t->gitserver_stream)) {
+ git_stream_is_encrypted(t->server.stream)) {
git_cert *cert;
int is_valid = (error == GIT_OK);
- if ((error = git_stream_certificate(&cert, t->gitserver_stream)) < 0)
+ if ((error = git_stream_certificate(&cert, t->server.stream)) < 0)
return error;
giterr_clear();
- error = t->owner->certificate_check_cb(cert, is_valid, t->gitserver_data.host, t->owner->message_cb_payload);
+ error = t->owner->certificate_check_cb(cert, is_valid, t->server.url.host, t->owner->message_cb_payload);
if (error == GIT_PASSTHROUGH)
error = is_valid ? 0 : GIT_ECERTIFICATE;
@@ -767,7 +771,7 @@ replay:
if (gen_request(&request, s, 0) < 0)
return -1;
- if (git_stream_write(t->gitserver_stream,
+ if (git_stream_write(t->server.stream,
request.ptr, request.size, 0) < 0) {
git_buf_dispose(&request);
return -1;
@@ -784,14 +788,14 @@ replay:
/* Flush, if necessary */
if (s->chunk_buffer_len > 0 &&
- write_chunk(t->gitserver_stream,
+ write_chunk(t->server.stream,
s->chunk_buffer, s->chunk_buffer_len) < 0)
return -1;
s->chunk_buffer_len = 0;
/* Write the final chunk. */
- if (git_stream_write(t->gitserver_stream, "0\r\n\r\n", 5, 0) < 0)
+ if (git_stream_write(t->server.stream, "0\r\n\r\n", 5, 0) < 0)
return -1;
}
@@ -890,7 +894,7 @@ static int http_stream_write_chunked(
if (gen_request(&request, s, 0) < 0)
return -1;
- if (git_stream_write(t->gitserver_stream,
+ if (git_stream_write(t->server.stream,
request.ptr, request.size, 0) < 0) {
git_buf_dispose(&request);
return -1;
@@ -904,7 +908,7 @@ static int http_stream_write_chunked(
if (len > CHUNK_SIZE) {
/* Flush, if necessary */
if (s->chunk_buffer_len > 0) {
- if (write_chunk(t->gitserver_stream,
+ if (write_chunk(t->server.stream,
s->chunk_buffer, s->chunk_buffer_len) < 0)
return -1;
@@ -912,7 +916,7 @@ static int http_stream_write_chunked(
}
/* Write chunk directly */
- if (write_chunk(t->gitserver_stream, buffer, len) < 0)
+ if (write_chunk(t->server.stream, buffer, len) < 0)
return -1;
}
else {
@@ -929,7 +933,7 @@ static int http_stream_write_chunked(
/* Is the buffer full? If so, then flush */
if (CHUNK_SIZE == s->chunk_buffer_len) {
- if (write_chunk(t->gitserver_stream,
+ if (write_chunk(t->server.stream,
s->chunk_buffer, s->chunk_buffer_len) < 0)
return -1;
@@ -966,11 +970,11 @@ static int http_stream_write_single(
if (gen_request(&request, s, len) < 0)
return -1;
- if (git_stream_write(t->gitserver_stream,
+ if (git_stream_write(t->server.stream,
request.ptr, request.size, 0) < 0)
goto on_error;
- if (len && git_stream_write(t->gitserver_stream, buffer, len, 0) < 0)
+ if (len && git_stream_write(t->server.stream, buffer, len, 0) < 0)
goto on_error;
git_buf_dispose(&request);
@@ -1110,11 +1114,11 @@ static int http_action(
* have redirected us from HTTP->HTTPS and is using an auth mechanism
* that would be insecure in plaintext (eg, HTTP Basic).
*/
- if ((!t->gitserver_data.host || !t->gitserver_data.port || !t->gitserver_data.path) &&
- (ret = gitno_connection_data_from_url(&t->gitserver_data, url, NULL)) < 0)
+ if ((!t->server.url.host || !t->server.url.port || !t->server.url.path) &&
+ (ret = gitno_connection_data_from_url(&t->server.url, url, NULL)) < 0)
return ret;
- assert(t->gitserver_data.host && t->gitserver_data.port && t->gitserver_data.path);
+ assert(t->server.url.host && t->server.url.port && t->server.url.path);
if ((ret = load_proxy_config(t)) < 0 ||
(ret = http_connect(t)) < 0)
@@ -1138,38 +1142,46 @@ static int http_action(
return -1;
}
-static int http_close(git_smart_subtransport *subtransport)
+static void free_auth_contexts(git_vector *contexts)
{
- http_subtransport *t = (http_subtransport *) subtransport;
git_http_auth_context *context;
size_t i;
+ git_vector_foreach(contexts, i, context) {
+ if (context->free)
+ context->free(context);
+ }
+
+ git_vector_clear(contexts);
+}
+
+static int http_close(git_smart_subtransport *subtransport)
+{
+ http_subtransport *t = (http_subtransport *) subtransport;
+
clear_parser_state(t);
t->connected = 0;
- if (t->gitserver_stream) {
- git_stream_close(t->gitserver_stream);
- git_stream_free(t->gitserver_stream);
- t->gitserver_stream = NULL;
+ if (t->server.stream) {
+ git_stream_close(t->server.stream);
+ git_stream_free(t->server.stream);
+ t->server.stream = NULL;
}
- free_cred(&t->cred);
- free_cred(&t->url_cred);
- free_cred(&t->proxy_cred);
-
- git_vector_foreach(&t->auth_contexts, i, context) {
- if (context->free)
- context->free(context);
- }
+ free_cred(&t->server.cred);
+ free_cred(&t->server.url_cred);
+ free_cred(&t->proxy.cred);
+ free_cred(&t->proxy.url_cred);
- git_vector_clear(&t->auth_contexts);
+ free_auth_contexts(&t->server.auth_contexts);
+ free_auth_contexts(&t->proxy.auth_contexts);
- gitno_connection_data_free_ptrs(&t->gitserver_data);
- memset(&t->gitserver_data, 0x0, sizeof(gitno_connection_data));
+ gitno_connection_data_free_ptrs(&t->server.url);
+ memset(&t->server.url, 0x0, sizeof(gitno_connection_data));
- gitno_connection_data_free_ptrs(&t->proxy_data);
- memset(&t->proxy_data, 0x0, sizeof(gitno_connection_data));
+ gitno_connection_data_free_ptrs(&t->proxy.url);
+ memset(&t->proxy.url, 0x0, sizeof(gitno_connection_data));
git__free(t->proxy_url);
t->proxy_url = NULL;
@@ -1183,7 +1195,8 @@ static void http_free(git_smart_subtransport *subtransport)
http_close(subtransport);
- git_vector_free(&t->auth_contexts);
+ git_vector_free(&t->server.auth_contexts);
+ git_vector_free(&t->proxy.auth_contexts);
git__free(t);
}