2013-09-03 17:17:06 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-01-11 06:15:37 -05:00
|
|
|
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2013-09-03 17:17:06 -04:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2013-09-03 17:17:06 -04:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include "curl_setup.h"
|
|
|
|
|
|
|
|
#ifdef USE_NGHTTP2
|
|
|
|
#include <nghttp2/nghttp2.h>
|
2013-09-07 05:03:23 -04:00
|
|
|
#include "urldata.h"
|
2013-09-03 17:17:06 -04:00
|
|
|
#include "http2.h"
|
2013-09-07 05:03:23 -04:00
|
|
|
#include "http.h"
|
2013-09-07 07:01:43 -04:00
|
|
|
#include "sendf.h"
|
|
|
|
#include "curl_base64.h"
|
2016-09-30 12:54:02 -04:00
|
|
|
#include "strcase.h"
|
2014-02-14 08:02:44 -05:00
|
|
|
#include "multiif.h"
|
2015-05-18 02:56:29 -04:00
|
|
|
#include "conncache.h"
|
2015-06-01 05:45:52 -04:00
|
|
|
#include "url.h"
|
2015-09-27 17:20:13 -04:00
|
|
|
#include "connect.h"
|
2016-03-03 01:24:27 -05:00
|
|
|
#include "strtoofft.h"
|
2016-11-07 04:55:25 -05:00
|
|
|
#include "strdup.h"
|
2016-04-29 09:46:40 -04:00
|
|
|
/* The last 3 #include files should be in this order */
|
|
|
|
#include "curl_printf.h"
|
2015-03-24 18:12:03 -04:00
|
|
|
#include "curl_memory.h"
|
2013-09-07 07:01:43 -04:00
|
|
|
#include "memdebug.h"
|
2013-09-03 17:17:06 -04:00
|
|
|
|
2015-04-29 11:00:53 -04:00
|
|
|
#define MIN(x,y) ((x)<(y)?(x):(y))
|
|
|
|
|
2015-11-10 03:10:46 -05:00
|
|
|
#if (NGHTTP2_VERSION_NUM < 0x010000)
|
2014-01-29 16:53:08 -05:00
|
|
|
#error too old nghttp2 version, upgrade!
|
|
|
|
#endif
|
|
|
|
|
2016-03-03 00:47:46 -05:00
|
|
|
#if (NGHTTP2_VERSION_NUM > 0x010800)
|
|
|
|
#define NGHTTP2_HAS_HTTP2_STRERROR 1
|
|
|
|
#endif
|
|
|
|
|
2016-04-01 14:42:25 -04:00
|
|
|
#if (NGHTTP2_VERSION_NUM >= 0x010900)
|
|
|
|
/* nghttp2_session_callbacks_set_error_callback is present in nghttp2 1.9.0 or
|
|
|
|
later */
|
|
|
|
#define NGHTTP2_HAS_ERROR_CALLBACK 1
|
|
|
|
#else
|
|
|
|
#define nghttp2_session_callbacks_set_error_callback(x,y)
|
|
|
|
#endif
|
|
|
|
|
2016-11-28 14:08:35 -05:00
|
|
|
#if (NGHTTP2_VERSION_NUM >= 0x010c00)
|
|
|
|
#define NGHTTP2_HAS_SET_LOCAL_WINDOW_SIZE 1
|
|
|
|
#endif
|
|
|
|
|
2016-11-16 02:55:30 -05:00
|
|
|
#define HTTP2_HUGE_WINDOW_SIZE (1 << 30)
|
|
|
|
|
2015-09-13 10:07:05 -04:00
|
|
|
/*
|
|
|
|
* Curl_http2_init_state() is called when the easy handle is created and
|
|
|
|
* allows for HTTP/2 specific init of state.
|
|
|
|
*/
|
|
|
|
void Curl_http2_init_state(struct UrlState *state)
|
|
|
|
{
|
2015-10-21 16:47:24 -04:00
|
|
|
state->stream_weight = NGHTTP2_DEFAULT_WEIGHT;
|
2015-09-13 10:07:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Curl_http2_init_userset() is called when the easy handle is created and
|
|
|
|
* allows for HTTP/2 specific user-set fields.
|
|
|
|
*/
|
|
|
|
void Curl_http2_init_userset(struct UserDefined *set)
|
|
|
|
{
|
2015-10-21 16:47:24 -04:00
|
|
|
set->stream_weight = NGHTTP2_DEFAULT_WEIGHT;
|
2015-09-13 10:07:05 -04:00
|
|
|
}
|
|
|
|
|
2014-02-14 08:02:44 -05:00
|
|
|
static int http2_perform_getsock(const struct connectdata *conn,
|
|
|
|
curl_socket_t *sock, /* points to
|
|
|
|
numsocks
|
|
|
|
number of
|
|
|
|
sockets */
|
|
|
|
int numsocks)
|
|
|
|
{
|
2015-04-27 07:21:41 -04:00
|
|
|
const struct http_conn *c = &conn->proto.httpc;
|
2014-02-14 08:02:44 -05:00
|
|
|
int bitmap = GETSOCK_BLANK;
|
|
|
|
(void)numsocks;
|
|
|
|
|
2015-11-24 03:32:42 -05:00
|
|
|
/* TODO We should check underlying socket state if it is SSL socket
|
|
|
|
because of renegotiation. */
|
2014-02-14 08:02:44 -05:00
|
|
|
sock[0] = conn->sock[FIRSTSOCKET];
|
|
|
|
|
2016-08-04 18:42:52 -04:00
|
|
|
/* in a HTTP/2 connection we can basically always get a frame so we should
|
|
|
|
always be ready for one */
|
|
|
|
bitmap |= GETSOCK_READSOCK(FIRSTSOCKET);
|
2014-02-14 08:02:44 -05:00
|
|
|
|
2015-04-27 07:21:41 -04:00
|
|
|
if(nghttp2_session_want_write(c->h2))
|
2014-02-14 08:02:44 -05:00
|
|
|
bitmap |= GETSOCK_WRITESOCK(FIRSTSOCKET);
|
|
|
|
|
|
|
|
return bitmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int http2_getsock(struct connectdata *conn,
|
|
|
|
curl_socket_t *sock, /* points to numsocks
|
|
|
|
number of sockets */
|
|
|
|
int numsocks)
|
|
|
|
{
|
|
|
|
return http2_perform_getsock(conn, sock, numsocks);
|
|
|
|
}
|
|
|
|
|
2017-02-13 04:35:18 -05:00
|
|
|
/*
|
|
|
|
* http2_stream_free() free HTTP2 stream related data
|
|
|
|
*/
|
|
|
|
static void http2_stream_free(struct HTTP *http)
|
2014-03-10 13:30:01 -04:00
|
|
|
{
|
2015-07-30 06:01:20 -04:00
|
|
|
if(http) {
|
|
|
|
Curl_add_buffer_free(http->header_recvbuf);
|
|
|
|
http->header_recvbuf = NULL; /* clear the pointer */
|
2015-12-13 05:32:58 -05:00
|
|
|
Curl_add_buffer_free(http->trailer_recvbuf);
|
|
|
|
http->trailer_recvbuf = NULL; /* clear the pointer */
|
2015-07-30 06:01:20 -04:00
|
|
|
for(; http->push_headers_used > 0; --http->push_headers_used) {
|
|
|
|
free(http->push_headers[http->push_headers_used - 1]);
|
|
|
|
}
|
|
|
|
free(http->push_headers);
|
|
|
|
http->push_headers = NULL;
|
|
|
|
}
|
2017-02-13 04:35:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode http2_disconnect(struct connectdata *conn,
|
|
|
|
bool dead_connection)
|
|
|
|
{
|
|
|
|
struct http_conn *c = &conn->proto.httpc;
|
|
|
|
(void)dead_connection;
|
|
|
|
|
|
|
|
DEBUGF(infof(conn->data, "HTTP/2 DISCONNECT starts now\n"));
|
|
|
|
|
|
|
|
nghttp2_session_del(c->h2);
|
|
|
|
Curl_safefree(c->inbuf);
|
|
|
|
http2_stream_free(conn->data->req.protop);
|
2015-07-30 06:01:20 -04:00
|
|
|
|
2015-02-25 05:45:46 -05:00
|
|
|
DEBUGF(infof(conn->data, "HTTP/2 DISCONNECT done\n"));
|
2014-03-10 13:30:01 -04:00
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2015-05-11 05:41:10 -04:00
|
|
|
/* called from Curl_http_setup_conn */
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_http2_setup_req(struct Curl_easy *data)
|
2015-05-11 05:41:10 -04:00
|
|
|
{
|
2015-06-01 08:20:57 -04:00
|
|
|
struct HTTP *http = data->req.protop;
|
2015-05-18 08:09:32 -04:00
|
|
|
|
|
|
|
http->nread_header_recvbuf = 0;
|
|
|
|
http->bodystarted = FALSE;
|
|
|
|
http->status_code = -1;
|
|
|
|
http->pausedata = NULL;
|
|
|
|
http->pauselen = 0;
|
|
|
|
http->error_code = NGHTTP2_NO_ERROR;
|
|
|
|
http->closed = FALSE;
|
2016-08-28 10:44:03 -04:00
|
|
|
http->close_handled = FALSE;
|
2015-06-01 08:20:57 -04:00
|
|
|
http->mem = data->state.buffer;
|
2017-04-24 18:49:23 -04:00
|
|
|
http->len = data->set.buffer_size;
|
2015-05-18 08:09:32 -04:00
|
|
|
http->memlen = 0;
|
2015-05-11 05:41:10 -04:00
|
|
|
}
|
|
|
|
|
2015-06-01 08:20:57 -04:00
|
|
|
/* called from Curl_http_setup_conn */
|
|
|
|
void Curl_http2_setup_conn(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
conn->proto.httpc.settings.max_concurrent_streams =
|
|
|
|
DEFAULT_MAX_CONCURRENT_STREAMS;
|
|
|
|
}
|
|
|
|
|
2013-09-12 07:51:04 -04:00
|
|
|
/*
|
|
|
|
* HTTP2 handler interface. This isn't added to the general list of protocols
|
|
|
|
* but will be used at run-time when the protocol is dynamically switched from
|
|
|
|
* HTTP to HTTP2.
|
|
|
|
*/
|
2017-04-30 16:33:33 -04:00
|
|
|
static const struct Curl_handler Curl_handler_http2 = {
|
2016-03-29 10:08:38 -04:00
|
|
|
"HTTP", /* scheme */
|
2013-09-12 07:51:04 -04:00
|
|
|
ZERO_NULL, /* setup_connection */
|
2014-05-20 10:50:24 -04:00
|
|
|
Curl_http, /* do_it */
|
2015-03-14 13:17:59 -04:00
|
|
|
Curl_http_done, /* done */
|
2013-09-12 07:51:04 -04:00
|
|
|
ZERO_NULL, /* do_more */
|
|
|
|
ZERO_NULL, /* connect_it */
|
|
|
|
ZERO_NULL, /* connecting */
|
|
|
|
ZERO_NULL, /* doing */
|
2014-02-14 08:02:44 -05:00
|
|
|
http2_getsock, /* proto_getsock */
|
|
|
|
http2_getsock, /* doing_getsock */
|
2013-09-12 07:51:04 -04:00
|
|
|
ZERO_NULL, /* domore_getsock */
|
2014-02-14 08:02:44 -05:00
|
|
|
http2_perform_getsock, /* perform_getsock */
|
2014-03-10 13:30:01 -04:00
|
|
|
http2_disconnect, /* disconnect */
|
2013-09-12 07:51:04 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
|
|
|
PORT_HTTP, /* defport */
|
2014-01-30 09:58:07 -05:00
|
|
|
CURLPROTO_HTTP, /* protocol */
|
2016-08-11 08:00:23 -04:00
|
|
|
PROTOPT_STREAM /* flags */
|
2013-09-12 07:51:04 -04:00
|
|
|
};
|
|
|
|
|
2017-04-30 16:33:33 -04:00
|
|
|
static const struct Curl_handler Curl_handler_http2_ssl = {
|
2016-03-29 10:08:38 -04:00
|
|
|
"HTTPS", /* scheme */
|
2014-02-14 08:02:44 -05:00
|
|
|
ZERO_NULL, /* setup_connection */
|
2014-05-20 10:50:24 -04:00
|
|
|
Curl_http, /* do_it */
|
2015-03-14 13:17:59 -04:00
|
|
|
Curl_http_done, /* done */
|
2014-02-14 08:02:44 -05:00
|
|
|
ZERO_NULL, /* do_more */
|
|
|
|
ZERO_NULL, /* connect_it */
|
|
|
|
ZERO_NULL, /* connecting */
|
|
|
|
ZERO_NULL, /* doing */
|
|
|
|
http2_getsock, /* proto_getsock */
|
|
|
|
http2_getsock, /* doing_getsock */
|
|
|
|
ZERO_NULL, /* domore_getsock */
|
|
|
|
http2_perform_getsock, /* perform_getsock */
|
2014-03-10 13:30:01 -04:00
|
|
|
http2_disconnect, /* disconnect */
|
2014-02-14 08:02:44 -05:00
|
|
|
ZERO_NULL, /* readwrite */
|
|
|
|
PORT_HTTP, /* defport */
|
2014-04-20 13:37:54 -04:00
|
|
|
CURLPROTO_HTTPS, /* protocol */
|
2016-08-11 08:00:23 -04:00
|
|
|
PROTOPT_SSL | PROTOPT_STREAM /* flags */
|
2014-02-14 08:02:44 -05:00
|
|
|
};
|
2013-09-12 07:51:04 -04:00
|
|
|
|
2013-09-03 17:17:06 -04:00
|
|
|
/*
|
|
|
|
* Store nghttp2 version info in this buffer, Prefix with a space. Return
|
|
|
|
* total length written.
|
|
|
|
*/
|
|
|
|
int Curl_http2_ver(char *p, size_t len)
|
|
|
|
{
|
|
|
|
nghttp2_info *h2 = nghttp2_version(0);
|
|
|
|
return snprintf(p, len, " nghttp2/%s", h2->version_str);
|
|
|
|
}
|
|
|
|
|
2016-03-03 00:47:46 -05:00
|
|
|
/* HTTP/2 error code to name based on the Error Code Registry.
|
|
|
|
https://tools.ietf.org/html/rfc7540#page-77
|
|
|
|
nghttp2_error_code enums are identical.
|
|
|
|
*/
|
2016-11-23 02:49:04 -05:00
|
|
|
const char *Curl_http2_strerror(uint32_t err)
|
|
|
|
{
|
2016-03-03 00:47:46 -05:00
|
|
|
#ifndef NGHTTP2_HAS_HTTP2_STRERROR
|
|
|
|
const char *str[] = {
|
|
|
|
"NO_ERROR", /* 0x0 */
|
|
|
|
"PROTOCOL_ERROR", /* 0x1 */
|
|
|
|
"INTERNAL_ERROR", /* 0x2 */
|
|
|
|
"FLOW_CONTROL_ERROR", /* 0x3 */
|
|
|
|
"SETTINGS_TIMEOUT", /* 0x4 */
|
|
|
|
"STREAM_CLOSED", /* 0x5 */
|
|
|
|
"FRAME_SIZE_ERROR", /* 0x6 */
|
|
|
|
"REFUSED_STREAM", /* 0x7 */
|
|
|
|
"CANCEL", /* 0x8 */
|
|
|
|
"COMPRESSION_ERROR", /* 0x9 */
|
|
|
|
"CONNECT_ERROR", /* 0xA */
|
|
|
|
"ENHANCE_YOUR_CALM", /* 0xB */
|
|
|
|
"INADEQUATE_SECURITY", /* 0xC */
|
|
|
|
"HTTP_1_1_REQUIRED" /* 0xD */
|
|
|
|
};
|
|
|
|
return (err < sizeof str / sizeof str[0]) ? str[err] : "unknown";
|
|
|
|
#else
|
|
|
|
return nghttp2_http2_strerror(err);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-09-07 07:01:43 -04:00
|
|
|
/*
|
|
|
|
* The implementation of nghttp2_send_callback type. Here we write |data| with
|
|
|
|
* size |length| to the network and return the number of bytes actually
|
|
|
|
* written. See the documentation of nghttp2_send_callback for the details.
|
|
|
|
*/
|
|
|
|
static ssize_t send_callback(nghttp2_session *h2,
|
|
|
|
const uint8_t *data, size_t length, int flags,
|
|
|
|
void *userp)
|
|
|
|
{
|
|
|
|
struct connectdata *conn = (struct connectdata *)userp;
|
2015-04-27 07:21:41 -04:00
|
|
|
struct http_conn *c = &conn->proto.httpc;
|
2013-09-07 07:01:43 -04:00
|
|
|
ssize_t written;
|
2014-12-14 08:09:29 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
2013-09-07 07:01:43 -04:00
|
|
|
(void)h2;
|
|
|
|
(void)flags;
|
|
|
|
|
2015-04-27 07:21:41 -04:00
|
|
|
written = ((Curl_send*)c->send_underlying)(conn, FIRSTSOCKET,
|
2015-04-28 14:39:47 -04:00
|
|
|
data, length, &result);
|
2014-01-31 10:51:24 -05:00
|
|
|
|
2014-12-14 08:09:29 -05:00
|
|
|
if(result == CURLE_AGAIN) {
|
2014-01-31 10:51:24 -05:00
|
|
|
return NGHTTP2_ERR_WOULDBLOCK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(written == -1) {
|
2013-09-07 07:01:43 -04:00
|
|
|
failf(conn->data, "Failed sending HTTP2 data");
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2014-01-31 10:51:24 -05:00
|
|
|
|
|
|
|
if(!written)
|
2013-09-07 07:01:43 -04:00
|
|
|
return NGHTTP2_ERR_WOULDBLOCK;
|
|
|
|
|
|
|
|
return written;
|
|
|
|
}
|
|
|
|
|
2015-06-01 05:45:52 -04:00
|
|
|
|
|
|
|
/* We pass a pointer to this struct in the push callback, but the contents of
|
|
|
|
the struct are hidden from the user. */
|
|
|
|
struct curl_pushheaders {
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data;
|
2015-06-01 05:45:52 -04:00
|
|
|
const nghttp2_push_promise *frame;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* push header access function. Only to be used from within the push callback
|
|
|
|
*/
|
2015-06-01 09:52:46 -04:00
|
|
|
char *curl_pushheader_bynum(struct curl_pushheaders *h, size_t num)
|
2015-06-01 05:45:52 -04:00
|
|
|
{
|
|
|
|
/* Verify that we got a good easy handle in the push header struct, mostly to
|
|
|
|
detect rubbish input fast(er). */
|
|
|
|
if(!h || !GOOD_EASY_HANDLE(h->data))
|
|
|
|
return NULL;
|
2015-06-01 09:52:46 -04:00
|
|
|
else {
|
|
|
|
struct HTTP *stream = h->data->req.protop;
|
|
|
|
if(num < stream->push_headers_used)
|
|
|
|
return stream->push_headers[num];
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* push header access function. Only to be used from within the push callback
|
|
|
|
*/
|
2015-06-02 05:50:00 -04:00
|
|
|
char *curl_pushheader_byname(struct curl_pushheaders *h, const char *header)
|
2015-06-01 09:52:46 -04:00
|
|
|
{
|
2015-06-06 05:07:00 -04:00
|
|
|
/* Verify that we got a good easy handle in the push header struct,
|
|
|
|
mostly to detect rubbish input fast(er). Also empty header name
|
|
|
|
is just a rubbish too. We have to allow ":" at the beginning of
|
|
|
|
the header, but header == ":" must be rejected. If we have ':' in
|
|
|
|
the middle of header, it could be matched in middle of the value,
|
|
|
|
this is because we do prefix match.*/
|
|
|
|
if(!h || !GOOD_EASY_HANDLE(h->data) || !header || !header[0] ||
|
2016-09-30 12:54:02 -04:00
|
|
|
!strcmp(header, ":") || strchr(header + 1, ':'))
|
2015-06-01 09:52:46 -04:00
|
|
|
return NULL;
|
|
|
|
else {
|
|
|
|
struct HTTP *stream = h->data->req.protop;
|
|
|
|
size_t len = strlen(header);
|
|
|
|
size_t i;
|
|
|
|
for(i=0; i<stream->push_headers_used; i++) {
|
|
|
|
if(!strncmp(header, stream->push_headers[i], len)) {
|
2015-11-16 02:22:08 -05:00
|
|
|
/* sub-match, make sure that it is followed by a colon */
|
2015-06-01 09:52:46 -04:00
|
|
|
if(stream->push_headers[i][len] != ':')
|
|
|
|
continue;
|
|
|
|
return &stream->push_headers[i][len+1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-06-01 05:45:52 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-06-21 13:31:24 -04:00
|
|
|
static struct Curl_easy *duphandle(struct Curl_easy *data)
|
2015-06-01 08:20:57 -04:00
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *second = curl_easy_duphandle(data);
|
2015-06-01 08:20:57 -04:00
|
|
|
if(second) {
|
|
|
|
/* setup the request struct */
|
|
|
|
struct HTTP *http = calloc(1, sizeof(struct HTTP));
|
|
|
|
if(!http) {
|
|
|
|
(void)Curl_close(second);
|
|
|
|
second = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
second->req.protop = http;
|
|
|
|
http->header_recvbuf = Curl_add_buffer_init();
|
|
|
|
if(!http->header_recvbuf) {
|
|
|
|
free(http);
|
|
|
|
(void)Curl_close(second);
|
|
|
|
second = NULL;
|
|
|
|
}
|
2015-11-29 18:10:35 -05:00
|
|
|
else {
|
2015-06-01 08:20:57 -04:00
|
|
|
Curl_http2_setup_req(second);
|
2015-11-29 18:10:35 -05:00
|
|
|
second->state.stream_weight = data->state.stream_weight;
|
|
|
|
}
|
2015-06-01 08:20:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return second;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
static int push_promise(struct Curl_easy *data,
|
2015-06-01 08:20:57 -04:00
|
|
|
struct connectdata *conn,
|
2015-06-01 05:45:52 -04:00
|
|
|
const nghttp2_push_promise *frame)
|
|
|
|
{
|
|
|
|
int rv;
|
2015-06-01 08:20:57 -04:00
|
|
|
DEBUGF(infof(data, "PUSH_PROMISE received, stream %u!\n",
|
|
|
|
frame->promised_stream_id));
|
2015-06-01 05:45:52 -04:00
|
|
|
if(data->multi->push_cb) {
|
2015-06-01 08:20:57 -04:00
|
|
|
struct HTTP *stream;
|
2015-11-29 18:11:42 -05:00
|
|
|
struct HTTP *newstream;
|
2015-06-01 08:20:57 -04:00
|
|
|
struct curl_pushheaders heads;
|
|
|
|
CURLMcode rc;
|
|
|
|
struct http_conn *httpc;
|
2015-06-02 05:01:30 -04:00
|
|
|
size_t i;
|
2015-06-01 05:45:52 -04:00
|
|
|
/* clone the parent */
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *newhandle = duphandle(data);
|
2015-06-01 05:45:52 -04:00
|
|
|
if(!newhandle) {
|
|
|
|
infof(data, "failed to duplicate handle\n");
|
|
|
|
rv = 1; /* FAIL HARD */
|
2015-06-01 08:20:57 -04:00
|
|
|
goto fail;
|
2015-06-01 05:45:52 -04:00
|
|
|
}
|
2015-06-01 08:20:57 -04:00
|
|
|
|
|
|
|
heads.data = data;
|
|
|
|
heads.frame = frame;
|
|
|
|
/* ask the application */
|
|
|
|
DEBUGF(infof(data, "Got PUSH_PROMISE, ask application!\n"));
|
|
|
|
|
|
|
|
stream = data->req.protop;
|
2015-07-20 15:35:15 -04:00
|
|
|
if(!stream) {
|
|
|
|
failf(data, "Internal NULL stream!\n");
|
2017-04-13 10:06:14 -04:00
|
|
|
(void)Curl_close(newhandle);
|
2015-07-20 15:35:15 -04:00
|
|
|
rv = 1;
|
|
|
|
goto fail;
|
|
|
|
}
|
2015-06-01 08:20:57 -04:00
|
|
|
|
|
|
|
rv = data->multi->push_cb(data, newhandle,
|
2015-06-01 09:52:46 -04:00
|
|
|
stream->push_headers_used, &heads,
|
2015-06-01 08:20:57 -04:00
|
|
|
data->multi->push_userp);
|
2015-06-01 09:52:46 -04:00
|
|
|
|
2015-06-02 05:01:30 -04:00
|
|
|
/* free the headers again */
|
|
|
|
for(i=0; i<stream->push_headers_used; i++)
|
|
|
|
free(stream->push_headers[i]);
|
2015-06-01 09:52:46 -04:00
|
|
|
free(stream->push_headers);
|
|
|
|
stream->push_headers = NULL;
|
2017-02-07 03:17:55 -05:00
|
|
|
stream->push_headers_used = 0;
|
2015-06-01 09:52:46 -04:00
|
|
|
|
2015-06-01 08:20:57 -04:00
|
|
|
if(rv) {
|
|
|
|
/* denied, kill off the new handle again */
|
2017-02-13 04:35:18 -05:00
|
|
|
http2_stream_free(newhandle->req.protop);
|
2015-06-01 08:20:57 -04:00
|
|
|
(void)Curl_close(newhandle);
|
|
|
|
goto fail;
|
2015-06-01 05:45:52 -04:00
|
|
|
}
|
2015-06-01 08:20:57 -04:00
|
|
|
|
2015-11-29 18:11:42 -05:00
|
|
|
newstream = newhandle->req.protop;
|
|
|
|
newstream->stream_id = frame->promised_stream_id;
|
|
|
|
newhandle->req.maxdownload = -1;
|
|
|
|
newhandle->req.size = -1;
|
|
|
|
|
2015-06-01 08:20:57 -04:00
|
|
|
/* approved, add to the multi handle and immediately switch to PERFORM
|
|
|
|
state with the given connection !*/
|
|
|
|
rc = Curl_multi_add_perform(data->multi, newhandle, conn);
|
|
|
|
if(rc) {
|
|
|
|
infof(data, "failed to add handle to multi\n");
|
2017-02-13 04:35:18 -05:00
|
|
|
http2_stream_free(newhandle->req.protop);
|
2015-06-01 08:20:57 -04:00
|
|
|
Curl_close(newhandle);
|
|
|
|
rv = 1;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
httpc = &conn->proto.httpc;
|
2015-08-10 20:26:36 -04:00
|
|
|
nghttp2_session_set_stream_user_data(httpc->h2,
|
|
|
|
frame->promised_stream_id, newhandle);
|
2015-06-01 05:45:52 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
DEBUGF(infof(data, "Got PUSH_PROMISE, ignore it!\n"));
|
|
|
|
rv = 1;
|
|
|
|
}
|
2015-06-01 08:20:57 -04:00
|
|
|
fail:
|
2015-06-01 05:45:52 -04:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-01-29 18:11:56 -05:00
|
|
|
static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame,
|
|
|
|
void *userp)
|
|
|
|
{
|
2015-08-24 05:26:30 -04:00
|
|
|
struct connectdata *conn = (struct connectdata *)userp;
|
2016-01-08 17:06:59 -05:00
|
|
|
struct http_conn *httpc = &conn->proto.httpc;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data_s = NULL;
|
2015-04-29 08:19:39 -04:00
|
|
|
struct HTTP *stream = NULL;
|
2015-08-10 20:26:36 -04:00
|
|
|
static int lastStream = -1;
|
2014-02-02 07:31:13 -05:00
|
|
|
int rv;
|
2014-08-01 10:10:10 -04:00
|
|
|
size_t left, ncopy;
|
2015-04-29 08:19:39 -04:00
|
|
|
int32_t stream_id = frame->hd.stream_id;
|
2014-08-01 10:10:10 -04:00
|
|
|
|
2015-08-10 20:26:36 -04:00
|
|
|
if(!stream_id) {
|
|
|
|
/* stream ID zero is for connection-oriented stuff */
|
2016-01-08 17:06:59 -05:00
|
|
|
if(frame->hd.type == NGHTTP2_SETTINGS) {
|
|
|
|
uint32_t max_conn = httpc->settings.max_concurrent_streams;
|
|
|
|
DEBUGF(infof(conn->data, "Got SETTINGS\n"));
|
|
|
|
httpc->settings.max_concurrent_streams =
|
|
|
|
nghttp2_session_get_remote_settings(
|
|
|
|
session, NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS);
|
|
|
|
httpc->settings.enable_push =
|
|
|
|
nghttp2_session_get_remote_settings(
|
|
|
|
session, NGHTTP2_SETTINGS_ENABLE_PUSH);
|
|
|
|
DEBUGF(infof(conn->data, "MAX_CONCURRENT_STREAMS == %d\n",
|
|
|
|
httpc->settings.max_concurrent_streams));
|
|
|
|
DEBUGF(infof(conn->data, "ENABLE_PUSH == %s\n",
|
|
|
|
httpc->settings.enable_push?"TRUE":"false"));
|
|
|
|
if(max_conn != httpc->settings.max_concurrent_streams) {
|
|
|
|
/* only signal change if the value actually changed */
|
|
|
|
infof(conn->data,
|
|
|
|
"Connection state changed (MAX_CONCURRENT_STREAMS updated)!\n");
|
|
|
|
Curl_multi_connchanged(conn->data->multi);
|
|
|
|
}
|
|
|
|
}
|
2015-08-10 20:26:36 -04:00
|
|
|
return 0;
|
2015-04-29 08:19:39 -04:00
|
|
|
}
|
2016-01-08 17:06:59 -05:00
|
|
|
data_s = nghttp2_session_get_stream_user_data(session, stream_id);
|
|
|
|
if(lastStream != stream_id) {
|
|
|
|
lastStream = stream_id;
|
2015-08-10 20:26:36 -04:00
|
|
|
}
|
|
|
|
if(!data_s) {
|
|
|
|
DEBUGF(infof(conn->data,
|
2016-06-21 09:47:12 -04:00
|
|
|
"No Curl_easy associated with stream: %x\n",
|
2015-08-10 20:26:36 -04:00
|
|
|
stream_id));
|
2015-05-22 09:17:16 -04:00
|
|
|
return 0;
|
2015-08-10 20:26:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
stream = data_s->req.protop;
|
2016-08-11 08:00:23 -04:00
|
|
|
if(!stream) {
|
|
|
|
DEBUGF(infof(conn->data, "No proto pointer for stream: %x\n",
|
|
|
|
stream_id));
|
2015-08-10 20:26:36 -04:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2016-08-11 08:00:23 -04:00
|
|
|
}
|
2015-08-10 20:26:36 -04:00
|
|
|
|
|
|
|
DEBUGF(infof(data_s, "on_frame_recv() header %x stream %x\n",
|
|
|
|
frame->hd.type, stream_id));
|
2015-04-29 08:19:39 -04:00
|
|
|
|
2014-02-02 07:31:13 -05:00
|
|
|
switch(frame->hd.type) {
|
2014-08-01 10:10:10 -04:00
|
|
|
case NGHTTP2_DATA:
|
2015-04-29 08:19:39 -04:00
|
|
|
/* If body started on this stream, then receiving DATA is illegal. */
|
|
|
|
if(!stream->bodystarted) {
|
2014-08-01 10:10:10 -04:00
|
|
|
rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE,
|
2015-04-29 08:19:39 -04:00
|
|
|
stream_id, NGHTTP2_PROTOCOL_ERROR);
|
2014-08-01 10:10:10 -04:00
|
|
|
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2014-02-02 07:31:13 -05:00
|
|
|
case NGHTTP2_HEADERS:
|
2015-04-29 08:19:39 -04:00
|
|
|
if(stream->bodystarted) {
|
2015-05-16 05:03:47 -04:00
|
|
|
/* Only valid HEADERS after body started is trailer HEADERS. We
|
2015-12-13 05:32:58 -05:00
|
|
|
buffer them in on_header callback. */
|
2014-08-01 10:10:10 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-05-16 05:03:47 -04:00
|
|
|
/* nghttp2 guarantees that :status is received, and we store it to
|
|
|
|
stream->status_code */
|
|
|
|
DEBUGASSERT(stream->status_code != -1);
|
2014-08-01 10:10:10 -04:00
|
|
|
|
|
|
|
/* Only final status code signals the end of header */
|
2015-05-16 05:03:47 -04:00
|
|
|
if(stream->status_code / 100 != 1) {
|
2015-04-29 08:19:39 -04:00
|
|
|
stream->bodystarted = TRUE;
|
2015-05-16 05:03:47 -04:00
|
|
|
stream->status_code = -1;
|
|
|
|
}
|
2014-08-01 10:10:10 -04:00
|
|
|
|
2015-04-29 08:19:39 -04:00
|
|
|
Curl_add_buffer(stream->header_recvbuf, "\r\n", 2);
|
2015-04-28 14:39:47 -04:00
|
|
|
|
2015-04-29 08:19:39 -04:00
|
|
|
left = stream->header_recvbuf->size_used - stream->nread_header_recvbuf;
|
2015-04-29 11:00:53 -04:00
|
|
|
ncopy = MIN(stream->len, left);
|
2014-08-01 10:10:10 -04:00
|
|
|
|
2015-04-30 02:20:49 -04:00
|
|
|
memcpy(&stream->mem[stream->memlen],
|
|
|
|
stream->header_recvbuf->buffer + stream->nread_header_recvbuf,
|
|
|
|
ncopy);
|
2015-04-29 08:19:39 -04:00
|
|
|
stream->nread_header_recvbuf += ncopy;
|
2014-02-04 08:54:42 -05:00
|
|
|
|
2015-05-20 08:27:08 -04:00
|
|
|
DEBUGF(infof(data_s, "Store %zu bytes headers from stream %u at %p\n",
|
2015-04-30 02:20:49 -04:00
|
|
|
ncopy, stream_id, stream->mem));
|
|
|
|
|
2015-04-29 11:00:53 -04:00
|
|
|
stream->len -= ncopy;
|
2015-04-30 02:20:49 -04:00
|
|
|
stream->memlen += ncopy;
|
|
|
|
|
|
|
|
data_s->state.drain++;
|
2016-02-23 09:33:04 -05:00
|
|
|
httpc->drain_total++;
|
2015-09-27 13:40:20 -04:00
|
|
|
{
|
|
|
|
/* get the pointer from userp again since it was re-assigned above */
|
|
|
|
struct connectdata *conn_s = (struct connectdata *)userp;
|
|
|
|
|
|
|
|
/* if we receive data for another handle, wake that up */
|
|
|
|
if(conn_s->data != data_s)
|
2017-05-09 06:47:49 -04:00
|
|
|
Curl_expire(data_s, 0, EXPIRE_RUN_NOW);
|
2015-09-27 13:40:20 -04:00
|
|
|
}
|
2014-02-02 07:31:13 -05:00
|
|
|
break;
|
|
|
|
case NGHTTP2_PUSH_PROMISE:
|
2015-06-01 08:20:57 -04:00
|
|
|
rv = push_promise(data_s, conn, &frame->push_promise);
|
2015-06-01 05:45:52 -04:00
|
|
|
if(rv) { /* deny! */
|
|
|
|
rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE,
|
|
|
|
frame->push_promise.promised_stream_id,
|
|
|
|
NGHTTP2_CANCEL);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-02-02 07:31:13 -05:00
|
|
|
}
|
|
|
|
break;
|
2015-05-07 10:44:00 -04:00
|
|
|
default:
|
2015-05-20 08:27:08 -04:00
|
|
|
DEBUGF(infof(conn->data, "Got frame type %x for stream %u!\n",
|
2015-05-07 10:44:00 -04:00
|
|
|
frame->hd.type, stream_id));
|
|
|
|
break;
|
2014-01-31 10:51:24 -05:00
|
|
|
}
|
2014-01-29 18:11:56 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int on_invalid_frame_recv(nghttp2_session *session,
|
|
|
|
const nghttp2_frame *frame,
|
2015-05-16 05:03:47 -04:00
|
|
|
int lib_error_code, void *userp)
|
2014-01-29 18:11:56 -05:00
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data_s = NULL;
|
2015-08-10 20:26:36 -04:00
|
|
|
(void)userp;
|
2017-03-30 12:13:20 -04:00
|
|
|
#if !defined(DEBUGBUILD) || defined(CURL_DISABLE_VERBOSE_STRINGS)
|
|
|
|
(void)lib_error_code;
|
|
|
|
#endif
|
2015-08-10 20:26:36 -04:00
|
|
|
|
|
|
|
data_s = nghttp2_session_get_stream_user_data(session, frame->hd.stream_id);
|
|
|
|
if(data_s) {
|
|
|
|
DEBUGF(infof(data_s,
|
|
|
|
"on_invalid_frame_recv() was called, error=%d:%s\n",
|
|
|
|
lib_error_code, nghttp2_strerror(lib_error_code)));
|
|
|
|
}
|
2014-01-29 18:11:56 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int on_data_chunk_recv(nghttp2_session *session, uint8_t flags,
|
|
|
|
int32_t stream_id,
|
|
|
|
const uint8_t *data, size_t len, void *userp)
|
|
|
|
{
|
2015-04-29 08:19:39 -04:00
|
|
|
struct HTTP *stream;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data_s;
|
2014-02-04 08:57:29 -05:00
|
|
|
size_t nread;
|
2015-09-27 13:40:20 -04:00
|
|
|
struct connectdata *conn = (struct connectdata *)userp;
|
2014-01-29 18:11:56 -05:00
|
|
|
(void)session;
|
|
|
|
(void)flags;
|
|
|
|
(void)data;
|
2014-01-30 10:09:36 -05:00
|
|
|
|
2015-04-29 08:19:39 -04:00
|
|
|
DEBUGASSERT(stream_id); /* should never be a zero stream ID here */
|
|
|
|
|
|
|
|
/* get the stream from the hash based on Stream ID */
|
2015-08-10 20:26:36 -04:00
|
|
|
data_s = nghttp2_session_get_stream_user_data(session, stream_id);
|
|
|
|
if(!data_s)
|
2015-04-29 08:19:39 -04:00
|
|
|
/* Receiving a Stream ID not in the hash should not happen, this is an
|
|
|
|
internal error more than anything else! */
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2015-08-10 20:26:36 -04:00
|
|
|
|
2015-04-29 08:19:39 -04:00
|
|
|
stream = data_s->req.protop;
|
2015-08-10 20:26:36 -04:00
|
|
|
if(!stream)
|
2015-07-20 15:35:15 -04:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2014-02-02 07:31:13 -05:00
|
|
|
|
2015-04-29 11:00:53 -04:00
|
|
|
nread = MIN(stream->len, len);
|
2015-04-30 02:20:49 -04:00
|
|
|
memcpy(&stream->mem[stream->memlen], data, nread);
|
2014-02-04 08:57:29 -05:00
|
|
|
|
2015-04-29 11:00:53 -04:00
|
|
|
stream->len -= nread;
|
2015-04-30 02:20:49 -04:00
|
|
|
stream->memlen += nread;
|
|
|
|
|
|
|
|
data_s->state.drain++;
|
2016-02-23 09:33:04 -05:00
|
|
|
conn->proto.httpc.drain_total++;
|
2015-09-27 13:40:20 -04:00
|
|
|
|
|
|
|
/* if we receive data for another handle, wake that up */
|
|
|
|
if(conn->data != data_s)
|
2017-05-09 06:47:49 -04:00
|
|
|
Curl_expire(data_s, 0, EXPIRE_RUN_NOW);
|
2014-02-04 08:57:29 -05:00
|
|
|
|
2015-05-20 08:27:08 -04:00
|
|
|
DEBUGF(infof(data_s, "%zu data received for stream %u "
|
2015-04-30 12:34:41 -04:00
|
|
|
"(%zu left in buffer %p, total %zu)\n",
|
2015-04-30 02:20:49 -04:00
|
|
|
nread, stream_id,
|
2015-04-30 12:34:41 -04:00
|
|
|
stream->len, stream->mem,
|
|
|
|
stream->memlen));
|
2014-01-30 10:09:36 -05:00
|
|
|
|
2014-02-04 08:57:29 -05:00
|
|
|
if(nread < len) {
|
2015-05-11 09:10:21 -04:00
|
|
|
stream->pausedata = data + nread;
|
|
|
|
stream->pauselen = len - nread;
|
2015-05-11 09:54:50 -04:00
|
|
|
DEBUGF(infof(data_s, "NGHTTP2_ERR_PAUSE - %zu bytes out of buffer"
|
2015-05-20 08:27:08 -04:00
|
|
|
", stream %u\n",
|
2015-05-11 09:54:50 -04:00
|
|
|
len - nread, stream_id));
|
2015-08-10 20:26:36 -04:00
|
|
|
data_s->easy_conn->proto.httpc.pause_stream_id = stream_id;
|
2016-02-22 07:20:38 -05:00
|
|
|
|
2014-02-04 08:57:29 -05:00
|
|
|
return NGHTTP2_ERR_PAUSE;
|
|
|
|
}
|
2016-02-22 07:20:38 -05:00
|
|
|
|
|
|
|
/* pause execution of nghttp2 if we received data for another handle
|
|
|
|
in order to process them first. */
|
|
|
|
if(conn->data != data_s) {
|
|
|
|
data_s->easy_conn->proto.httpc.pause_stream_id = stream_id;
|
|
|
|
|
|
|
|
return NGHTTP2_ERR_PAUSE;
|
|
|
|
}
|
|
|
|
|
2014-01-29 18:11:56 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int before_frame_send(nghttp2_session *session,
|
|
|
|
const nghttp2_frame *frame,
|
|
|
|
void *userp)
|
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data_s;
|
2015-08-10 20:26:36 -04:00
|
|
|
(void)userp;
|
|
|
|
|
|
|
|
data_s = nghttp2_session_get_stream_user_data(session, frame->hd.stream_id);
|
|
|
|
if(data_s) {
|
|
|
|
DEBUGF(infof(data_s, "before_frame_send() was called\n"));
|
|
|
|
}
|
|
|
|
|
2014-01-29 18:11:56 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int on_frame_send(nghttp2_session *session,
|
|
|
|
const nghttp2_frame *frame,
|
|
|
|
void *userp)
|
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data_s;
|
2015-08-10 20:26:36 -04:00
|
|
|
(void)userp;
|
|
|
|
|
|
|
|
data_s = nghttp2_session_get_stream_user_data(session, frame->hd.stream_id);
|
|
|
|
if(data_s) {
|
|
|
|
DEBUGF(infof(data_s, "on_frame_send() was called, length = %zd\n",
|
|
|
|
frame->hd.length));
|
|
|
|
}
|
2014-01-29 18:11:56 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int on_frame_not_send(nghttp2_session *session,
|
|
|
|
const nghttp2_frame *frame,
|
|
|
|
int lib_error_code, void *userp)
|
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data_s;
|
2015-08-10 20:26:36 -04:00
|
|
|
(void)userp;
|
2017-03-30 12:13:20 -04:00
|
|
|
#if !defined(DEBUGBUILD) || defined(CURL_DISABLE_VERBOSE_STRINGS)
|
|
|
|
(void)lib_error_code;
|
|
|
|
#endif
|
2015-08-10 20:26:36 -04:00
|
|
|
|
|
|
|
data_s = nghttp2_session_get_stream_user_data(session, frame->hd.stream_id);
|
|
|
|
if(data_s) {
|
|
|
|
DEBUGF(infof(data_s,
|
|
|
|
"on_frame_not_send() was called, lib_error_code = %d\n",
|
|
|
|
lib_error_code));
|
|
|
|
}
|
2014-01-29 18:11:56 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int on_stream_close(nghttp2_session *session, int32_t stream_id,
|
2014-08-25 11:18:32 -04:00
|
|
|
uint32_t error_code, void *userp)
|
2014-01-29 18:11:56 -05:00
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data_s;
|
2015-04-29 09:21:45 -04:00
|
|
|
struct HTTP *stream;
|
2016-02-23 09:33:04 -05:00
|
|
|
struct connectdata *conn = (struct connectdata *)userp;
|
2014-01-29 18:11:56 -05:00
|
|
|
(void)session;
|
|
|
|
(void)stream_id;
|
2014-01-31 10:51:24 -05:00
|
|
|
|
2015-04-29 09:21:45 -04:00
|
|
|
if(stream_id) {
|
|
|
|
/* get the stream from the hash based on Stream ID, stream ID zero is for
|
|
|
|
connection-oriented stuff */
|
2015-08-10 20:26:36 -04:00
|
|
|
data_s = nghttp2_session_get_stream_user_data(session, stream_id);
|
2015-04-29 09:21:45 -04:00
|
|
|
if(!data_s) {
|
2015-05-16 05:13:10 -04:00
|
|
|
/* We could get stream ID not in the hash. For example, if we
|
2015-08-10 20:26:36 -04:00
|
|
|
decided to reject stream (e.g., PUSH_PROMISE). */
|
2015-05-16 05:13:10 -04:00
|
|
|
return 0;
|
2015-04-29 09:21:45 -04:00
|
|
|
}
|
2016-03-03 00:47:46 -05:00
|
|
|
DEBUGF(infof(data_s, "on_stream_close(), %s (err %d), stream %u\n",
|
|
|
|
Curl_http2_strerror(error_code), error_code, stream_id));
|
2015-04-29 09:21:45 -04:00
|
|
|
stream = data_s->req.protop;
|
2015-08-10 20:26:36 -04:00
|
|
|
if(!stream)
|
2015-07-20 15:35:15 -04:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2014-01-31 10:51:24 -05:00
|
|
|
|
2015-04-29 09:21:45 -04:00
|
|
|
stream->error_code = error_code;
|
|
|
|
stream->closed = TRUE;
|
2016-02-23 09:33:04 -05:00
|
|
|
data_s->state.drain++;
|
|
|
|
conn->proto.httpc.drain_total++;
|
2015-05-11 17:17:36 -04:00
|
|
|
|
|
|
|
/* remove the entry from the hash as the stream is now gone */
|
2015-08-10 20:26:36 -04:00
|
|
|
nghttp2_session_set_stream_user_data(session, stream_id, 0);
|
|
|
|
DEBUGF(infof(data_s, "Removed stream %u hash!\n", stream_id));
|
2015-04-29 09:21:45 -04:00
|
|
|
}
|
2014-01-29 18:11:56 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int on_begin_headers(nghttp2_session *session,
|
|
|
|
const nghttp2_frame *frame, void *userp)
|
|
|
|
{
|
2015-12-13 05:32:58 -05:00
|
|
|
struct HTTP *stream;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data_s = NULL;
|
2015-08-10 20:26:36 -04:00
|
|
|
(void)userp;
|
|
|
|
|
|
|
|
data_s = nghttp2_session_get_stream_user_data(session, frame->hd.stream_id);
|
2015-12-13 05:32:58 -05:00
|
|
|
if(!data_s) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUGF(infof(data_s, "on_begin_headers() was called\n"));
|
|
|
|
|
|
|
|
if(frame->hd.type != NGHTTP2_HEADERS) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream = data_s->req.protop;
|
|
|
|
if(!stream || !stream->bodystarted) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is trailer HEADERS started. Allocate buffer for them. */
|
|
|
|
DEBUGF(infof(data_s, "trailer field started\n"));
|
|
|
|
|
2017-05-22 07:58:17 -04:00
|
|
|
DEBUGASSERT(stream->trailer_recvbuf == NULL);
|
2015-12-13 05:32:58 -05:00
|
|
|
|
|
|
|
stream->trailer_recvbuf = Curl_add_buffer_init();
|
|
|
|
if(!stream->trailer_recvbuf) {
|
|
|
|
return NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE;
|
2015-08-10 20:26:36 -04:00
|
|
|
}
|
2015-12-13 05:32:58 -05:00
|
|
|
|
2014-01-29 18:11:56 -05:00
|
|
|
return 0;
|
|
|
|
}
|
2014-01-29 17:45:24 -05:00
|
|
|
|
2014-08-01 10:10:10 -04:00
|
|
|
/* Decode HTTP status code. Returns -1 if no valid status code was
|
|
|
|
decoded. */
|
|
|
|
static int decode_status_code(const uint8_t *value, size_t len)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if(len != 3) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = 0;
|
|
|
|
|
|
|
|
for(i = 0; i < 3; ++i) {
|
|
|
|
char c = value[i];
|
|
|
|
|
|
|
|
if(c < '0' || c > '9') {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res *= 10;
|
|
|
|
res += c - '0';
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-01-29 17:45:24 -05:00
|
|
|
/* frame->hd.type is either NGHTTP2_HEADERS or NGHTTP2_PUSH_PROMISE */
|
2014-01-29 18:11:56 -05:00
|
|
|
static int on_header(nghttp2_session *session, const nghttp2_frame *frame,
|
2014-04-05 05:57:20 -04:00
|
|
|
const uint8_t *name, size_t namelen,
|
|
|
|
const uint8_t *value, size_t valuelen,
|
|
|
|
uint8_t flags,
|
|
|
|
void *userp)
|
2014-01-29 17:45:24 -05:00
|
|
|
{
|
2015-04-29 08:19:39 -04:00
|
|
|
struct HTTP *stream;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data_s;
|
2015-04-29 08:19:39 -04:00
|
|
|
int32_t stream_id = frame->hd.stream_id;
|
2015-09-27 13:40:20 -04:00
|
|
|
struct connectdata *conn = (struct connectdata *)userp;
|
2014-04-05 05:57:20 -04:00
|
|
|
(void)flags;
|
2014-01-29 17:45:24 -05:00
|
|
|
|
2015-04-29 08:19:39 -04:00
|
|
|
DEBUGASSERT(stream_id); /* should never be a zero stream ID here */
|
|
|
|
|
|
|
|
/* get the stream from the hash based on Stream ID */
|
2015-08-10 20:26:36 -04:00
|
|
|
data_s = nghttp2_session_get_stream_user_data(session, stream_id);
|
|
|
|
if(!data_s)
|
2015-04-29 08:19:39 -04:00
|
|
|
/* Receiving a Stream ID not in the hash should not happen, this is an
|
|
|
|
internal error more than anything else! */
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2015-08-10 20:26:36 -04:00
|
|
|
|
2015-04-29 08:19:39 -04:00
|
|
|
stream = data_s->req.protop;
|
2015-07-20 15:35:15 -04:00
|
|
|
if(!stream) {
|
2015-08-10 20:26:36 -04:00
|
|
|
failf(data_s, "Internal NULL stream! 5\n");
|
2015-07-20 15:35:15 -04:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
}
|
2014-02-02 07:31:13 -05:00
|
|
|
|
2015-06-01 08:20:57 -04:00
|
|
|
/* Store received PUSH_PROMISE headers to be used when the subsequent
|
|
|
|
PUSH_PROMISE callback comes */
|
|
|
|
if(frame->hd.type == NGHTTP2_PUSH_PROMISE) {
|
2015-06-01 09:52:46 -04:00
|
|
|
char *h;
|
|
|
|
|
|
|
|
if(!stream->push_headers) {
|
|
|
|
stream->push_headers_alloc = 10;
|
|
|
|
stream->push_headers = malloc(stream->push_headers_alloc *
|
|
|
|
sizeof(char *));
|
|
|
|
stream->push_headers_used = 0;
|
|
|
|
}
|
|
|
|
else if(stream->push_headers_used ==
|
|
|
|
stream->push_headers_alloc) {
|
|
|
|
char **headp;
|
|
|
|
stream->push_headers_alloc *= 2;
|
2016-11-07 04:55:25 -05:00
|
|
|
headp = Curl_saferealloc(stream->push_headers,
|
|
|
|
stream->push_headers_alloc * sizeof(char *));
|
2015-06-01 09:52:46 -04:00
|
|
|
if(!headp) {
|
|
|
|
stream->push_headers = NULL;
|
2015-06-06 05:10:30 -04:00
|
|
|
return NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE;
|
2015-06-01 09:52:46 -04:00
|
|
|
}
|
|
|
|
stream->push_headers = headp;
|
|
|
|
}
|
|
|
|
h = aprintf("%s:%s", name, value);
|
|
|
|
if(h)
|
|
|
|
stream->push_headers[stream->push_headers_used++] = h;
|
2015-06-01 08:20:57 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-01-08 03:04:19 -05:00
|
|
|
if(stream->bodystarted) {
|
|
|
|
/* This is trailer fields. */
|
|
|
|
/* 3 is for ":" and "\r\n". */
|
|
|
|
uint32_t n = (uint32_t)(namelen + valuelen + 3);
|
|
|
|
|
|
|
|
DEBUGF(infof(data_s, "h2 trailer: %.*s: %.*s\n", namelen, name, valuelen,
|
|
|
|
value));
|
|
|
|
|
|
|
|
Curl_add_buffer(stream->trailer_recvbuf, &n, sizeof(n));
|
|
|
|
Curl_add_buffer(stream->trailer_recvbuf, name, namelen);
|
2016-05-11 07:35:05 -04:00
|
|
|
Curl_add_buffer(stream->trailer_recvbuf, ": ", 2);
|
2016-01-08 03:04:19 -05:00
|
|
|
Curl_add_buffer(stream->trailer_recvbuf, value, valuelen);
|
|
|
|
Curl_add_buffer(stream->trailer_recvbuf, "\r\n\0", 3);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-02-04 08:54:42 -05:00
|
|
|
if(namelen == sizeof(":status") - 1 &&
|
2015-05-16 05:03:47 -04:00
|
|
|
memcmp(":status", name, namelen) == 0) {
|
|
|
|
/* nghttp2 guarantees :status is received first and only once, and
|
|
|
|
value is 3 digits status code, and decode_status_code always
|
|
|
|
succeeds. */
|
|
|
|
stream->status_code = decode_status_code(value, valuelen);
|
|
|
|
DEBUGASSERT(stream->status_code != -1);
|
2014-08-01 10:10:10 -04:00
|
|
|
|
2016-05-19 05:16:30 -04:00
|
|
|
Curl_add_buffer(stream->header_recvbuf, "HTTP/2 ", 7);
|
2015-04-29 08:19:39 -04:00
|
|
|
Curl_add_buffer(stream->header_recvbuf, value, valuelen);
|
2016-04-06 08:08:15 -04:00
|
|
|
/* the space character after the status code is mandatory */
|
|
|
|
Curl_add_buffer(stream->header_recvbuf, " \r\n", 3);
|
2015-09-27 13:40:20 -04:00
|
|
|
/* if we receive data for another handle, wake that up */
|
|
|
|
if(conn->data != data_s)
|
2017-05-09 06:47:49 -04:00
|
|
|
Curl_expire(data_s, 0, EXPIRE_RUN_NOW);
|
2014-08-01 10:10:10 -04:00
|
|
|
|
2015-11-29 18:12:46 -05:00
|
|
|
DEBUGF(infof(data_s, "h2 status: HTTP/2 %03d (easy %p)\n",
|
|
|
|
stream->status_code, data_s));
|
2014-02-04 08:54:42 -05:00
|
|
|
return 0;
|
2014-01-29 17:45:24 -05:00
|
|
|
}
|
2014-08-01 10:10:10 -04:00
|
|
|
|
2015-05-16 05:03:47 -04:00
|
|
|
/* nghttp2 guarantees that namelen > 0, and :status was already
|
|
|
|
received, and this is not pseudo-header field . */
|
|
|
|
/* convert to a HTTP1-style header */
|
|
|
|
Curl_add_buffer(stream->header_recvbuf, name, namelen);
|
2016-05-11 07:35:05 -04:00
|
|
|
Curl_add_buffer(stream->header_recvbuf, ": ", 2);
|
2015-05-16 05:03:47 -04:00
|
|
|
Curl_add_buffer(stream->header_recvbuf, value, valuelen);
|
|
|
|
Curl_add_buffer(stream->header_recvbuf, "\r\n", 2);
|
2015-09-27 13:40:20 -04:00
|
|
|
/* if we receive data for another handle, wake that up */
|
|
|
|
if(conn->data != data_s)
|
2017-05-09 06:47:49 -04:00
|
|
|
Curl_expire(data_s, 0, EXPIRE_RUN_NOW);
|
2014-08-01 10:10:10 -04:00
|
|
|
|
2015-05-16 05:03:47 -04:00
|
|
|
DEBUGF(infof(data_s, "h2 header: %.*s: %.*s\n", namelen, name, valuelen,
|
|
|
|
value));
|
2014-01-29 17:45:24 -05:00
|
|
|
|
|
|
|
return 0; /* 0 is successful */
|
|
|
|
}
|
|
|
|
|
2014-02-14 08:02:44 -05:00
|
|
|
static ssize_t data_source_read_callback(nghttp2_session *session,
|
|
|
|
int32_t stream_id,
|
|
|
|
uint8_t *buf, size_t length,
|
2014-04-05 05:57:20 -04:00
|
|
|
uint32_t *data_flags,
|
2014-02-14 08:02:44 -05:00
|
|
|
nghttp2_data_source *source,
|
|
|
|
void *userp)
|
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data_s;
|
2015-05-18 08:01:38 -04:00
|
|
|
struct HTTP *stream = NULL;
|
2014-02-14 08:02:44 -05:00
|
|
|
size_t nread;
|
|
|
|
(void)source;
|
2015-08-10 20:26:36 -04:00
|
|
|
(void)userp;
|
2014-02-14 08:02:44 -05:00
|
|
|
|
2015-05-18 08:01:38 -04:00
|
|
|
if(stream_id) {
|
|
|
|
/* get the stream from the hash based on Stream ID, stream ID zero is for
|
|
|
|
connection-oriented stuff */
|
2015-08-10 20:26:36 -04:00
|
|
|
data_s = nghttp2_session_get_stream_user_data(session, stream_id);
|
|
|
|
if(!data_s)
|
2015-05-18 08:01:38 -04:00
|
|
|
/* Receiving a Stream ID not in the hash should not happen, this is an
|
|
|
|
internal error more than anything else! */
|
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2015-08-10 20:26:36 -04:00
|
|
|
|
2015-05-18 08:01:38 -04:00
|
|
|
stream = data_s->req.protop;
|
2015-08-10 20:26:36 -04:00
|
|
|
if(!stream)
|
2015-07-20 15:35:15 -04:00
|
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
2015-05-18 08:01:38 -04:00
|
|
|
}
|
2015-08-10 20:26:36 -04:00
|
|
|
else
|
2015-05-18 08:01:38 -04:00
|
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
|
|
|
|
nread = MIN(stream->upload_len, length);
|
2014-02-14 08:02:44 -05:00
|
|
|
if(nread > 0) {
|
2015-05-18 08:01:38 -04:00
|
|
|
memcpy(buf, stream->upload_mem, nread);
|
|
|
|
stream->upload_mem += nread;
|
|
|
|
stream->upload_len -= nread;
|
2016-09-06 17:12:12 -04:00
|
|
|
if(data_s->state.infilesize != -1)
|
|
|
|
stream->upload_left -= nread;
|
2014-02-14 08:02:44 -05:00
|
|
|
}
|
|
|
|
|
2015-05-18 08:01:38 -04:00
|
|
|
if(stream->upload_left == 0)
|
2016-09-05 03:25:58 -04:00
|
|
|
*data_flags = NGHTTP2_DATA_FLAG_EOF;
|
2014-02-14 08:02:44 -05:00
|
|
|
else if(nread == 0)
|
|
|
|
return NGHTTP2_ERR_DEFERRED;
|
|
|
|
|
2015-05-18 08:01:38 -04:00
|
|
|
DEBUGF(infof(data_s, "data_source_read_callback: "
|
2015-05-20 08:27:08 -04:00
|
|
|
"returns %zu bytes stream %u\n",
|
2015-05-18 08:01:38 -04:00
|
|
|
nread, stream_id));
|
|
|
|
|
2014-02-14 08:02:44 -05:00
|
|
|
return nread;
|
|
|
|
}
|
|
|
|
|
2015-05-11 17:18:21 -04:00
|
|
|
#define H2_BUFSIZE 32768
|
2014-02-04 08:57:29 -05:00
|
|
|
|
2016-04-01 14:42:25 -04:00
|
|
|
#ifdef NGHTTP2_HAS_ERROR_CALLBACK
|
|
|
|
static int error_callback(nghttp2_session *session,
|
|
|
|
const char *msg,
|
|
|
|
size_t len,
|
|
|
|
void *userp)
|
|
|
|
{
|
|
|
|
struct connectdata *conn = (struct connectdata *)userp;
|
|
|
|
(void)session;
|
|
|
|
infof(conn->data, "http2 error: %.*s\n", len, msg);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-12-10 08:54:59 -05:00
|
|
|
static void populate_settings(struct connectdata *conn,
|
|
|
|
struct http_conn *httpc)
|
|
|
|
{
|
|
|
|
nghttp2_settings_entry *iv = httpc->local_settings;
|
|
|
|
|
|
|
|
iv[0].settings_id = NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS;
|
|
|
|
iv[0].value = 100;
|
|
|
|
|
|
|
|
iv[1].settings_id = NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE;
|
|
|
|
iv[1].value = HTTP2_HUGE_WINDOW_SIZE;
|
|
|
|
|
|
|
|
iv[2].settings_id = NGHTTP2_SETTINGS_ENABLE_PUSH;
|
|
|
|
iv[2].value = conn->data->multi->push_cb != NULL;
|
|
|
|
|
|
|
|
httpc->local_settings_num = 3;
|
|
|
|
}
|
|
|
|
|
2016-08-11 08:00:23 -04:00
|
|
|
void Curl_http2_done(struct connectdata *conn, bool premature)
|
|
|
|
{
|
|
|
|
struct Curl_easy *data = conn->data;
|
|
|
|
struct HTTP *http = data->req.protop;
|
|
|
|
struct http_conn *httpc = &conn->proto.httpc;
|
|
|
|
|
|
|
|
if(http->header_recvbuf) {
|
|
|
|
DEBUGF(infof(data, "free header_recvbuf!!\n"));
|
|
|
|
Curl_add_buffer_free(http->header_recvbuf);
|
|
|
|
http->header_recvbuf = NULL; /* clear the pointer */
|
|
|
|
Curl_add_buffer_free(http->trailer_recvbuf);
|
|
|
|
http->trailer_recvbuf = NULL; /* clear the pointer */
|
|
|
|
if(http->push_headers) {
|
|
|
|
/* if they weren't used and then freed before */
|
|
|
|
for(; http->push_headers_used > 0; --http->push_headers_used) {
|
|
|
|
free(http->push_headers[http->push_headers_used - 1]);
|
|
|
|
}
|
|
|
|
free(http->push_headers);
|
|
|
|
http->push_headers = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(premature) {
|
|
|
|
/* RST_STREAM */
|
|
|
|
nghttp2_submit_rst_stream(httpc->h2, NGHTTP2_FLAG_NONE, http->stream_id,
|
|
|
|
NGHTTP2_STREAM_CLOSED);
|
|
|
|
if(http->stream_id == httpc->pause_stream_id) {
|
|
|
|
infof(data, "stopped the pause stream!\n");
|
|
|
|
httpc->pause_stream_id = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(http->stream_id) {
|
|
|
|
nghttp2_session_set_stream_user_data(httpc->h2, http->stream_id, 0);
|
|
|
|
http->stream_id = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-30 00:28:50 -05:00
|
|
|
/*
|
|
|
|
* Initialize nghttp2 for a Curl connection
|
|
|
|
*/
|
2014-02-04 08:57:29 -05:00
|
|
|
CURLcode Curl_http2_init(struct connectdata *conn)
|
|
|
|
{
|
2014-01-30 00:28:50 -05:00
|
|
|
if(!conn->proto.httpc.h2) {
|
2014-02-04 08:57:29 -05:00
|
|
|
int rc;
|
2014-08-25 11:18:32 -04:00
|
|
|
nghttp2_session_callbacks *callbacks;
|
|
|
|
|
2014-02-04 08:57:29 -05:00
|
|
|
conn->proto.httpc.inbuf = malloc(H2_BUFSIZE);
|
|
|
|
if(conn->proto.httpc.inbuf == NULL)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
2014-08-25 11:18:32 -04:00
|
|
|
rc = nghttp2_session_callbacks_new(&callbacks);
|
|
|
|
|
|
|
|
if(rc) {
|
|
|
|
failf(conn->data, "Couldn't initialize nghttp2 callbacks!");
|
|
|
|
return CURLE_OUT_OF_MEMORY; /* most likely at least */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* nghttp2_send_callback */
|
|
|
|
nghttp2_session_callbacks_set_send_callback(callbacks, send_callback);
|
|
|
|
/* nghttp2_on_frame_recv_callback */
|
|
|
|
nghttp2_session_callbacks_set_on_frame_recv_callback
|
|
|
|
(callbacks, on_frame_recv);
|
|
|
|
/* nghttp2_on_invalid_frame_recv_callback */
|
|
|
|
nghttp2_session_callbacks_set_on_invalid_frame_recv_callback
|
|
|
|
(callbacks, on_invalid_frame_recv);
|
|
|
|
/* nghttp2_on_data_chunk_recv_callback */
|
|
|
|
nghttp2_session_callbacks_set_on_data_chunk_recv_callback
|
|
|
|
(callbacks, on_data_chunk_recv);
|
|
|
|
/* nghttp2_before_frame_send_callback */
|
|
|
|
nghttp2_session_callbacks_set_before_frame_send_callback
|
|
|
|
(callbacks, before_frame_send);
|
|
|
|
/* nghttp2_on_frame_send_callback */
|
|
|
|
nghttp2_session_callbacks_set_on_frame_send_callback
|
|
|
|
(callbacks, on_frame_send);
|
|
|
|
/* nghttp2_on_frame_not_send_callback */
|
|
|
|
nghttp2_session_callbacks_set_on_frame_not_send_callback
|
|
|
|
(callbacks, on_frame_not_send);
|
|
|
|
/* nghttp2_on_stream_close_callback */
|
|
|
|
nghttp2_session_callbacks_set_on_stream_close_callback
|
|
|
|
(callbacks, on_stream_close);
|
|
|
|
/* nghttp2_on_begin_headers_callback */
|
|
|
|
nghttp2_session_callbacks_set_on_begin_headers_callback
|
|
|
|
(callbacks, on_begin_headers);
|
|
|
|
/* nghttp2_on_header_callback */
|
|
|
|
nghttp2_session_callbacks_set_on_header_callback(callbacks, on_header);
|
|
|
|
|
2016-04-01 14:42:25 -04:00
|
|
|
nghttp2_session_callbacks_set_error_callback(callbacks, error_callback);
|
|
|
|
|
2014-01-30 00:28:50 -05:00
|
|
|
/* The nghttp2 session is not yet setup, do it */
|
2015-04-28 14:39:47 -04:00
|
|
|
rc = nghttp2_session_client_new(&conn->proto.httpc.h2, callbacks, conn);
|
2014-08-25 11:18:32 -04:00
|
|
|
|
|
|
|
nghttp2_session_callbacks_del(callbacks);
|
|
|
|
|
2014-01-30 00:28:50 -05:00
|
|
|
if(rc) {
|
|
|
|
failf(conn->data, "Couldn't initialize nghttp2!");
|
|
|
|
return CURLE_OUT_OF_MEMORY; /* most likely at least */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2013-09-07 05:03:23 -04:00
|
|
|
/*
|
|
|
|
* Append headers to ask for a HTTP1.1 to HTTP2 upgrade.
|
|
|
|
*/
|
2014-01-30 05:32:04 -05:00
|
|
|
CURLcode Curl_http2_request_upgrade(Curl_send_buffer *req,
|
|
|
|
struct connectdata *conn)
|
2013-09-07 05:03:23 -04:00
|
|
|
{
|
2013-09-07 07:01:43 -04:00
|
|
|
CURLcode result;
|
|
|
|
ssize_t binlen;
|
|
|
|
char *base64;
|
|
|
|
size_t blen;
|
2013-09-12 07:51:04 -04:00
|
|
|
struct SingleRequest *k = &conn->data->req;
|
2014-01-30 08:26:00 -05:00
|
|
|
uint8_t *binsettings = conn->proto.httpc.binsettings;
|
2016-12-10 08:54:59 -05:00
|
|
|
struct http_conn *httpc = &conn->proto.httpc;
|
2013-09-07 07:01:43 -04:00
|
|
|
|
2016-12-10 08:54:59 -05:00
|
|
|
populate_settings(conn, httpc);
|
2013-09-07 07:01:43 -04:00
|
|
|
|
|
|
|
/* this returns number of bytes it wrote */
|
2014-01-30 08:26:00 -05:00
|
|
|
binlen = nghttp2_pack_settings_payload(binsettings, H2_BINSETTINGS_LEN,
|
2016-12-10 08:54:59 -05:00
|
|
|
httpc->local_settings,
|
|
|
|
httpc->local_settings_num);
|
2013-09-07 07:01:43 -04:00
|
|
|
if(!binlen) {
|
|
|
|
failf(conn->data, "nghttp2 unexpectedly failed on pack_settings_payload");
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
2014-01-30 08:26:00 -05:00
|
|
|
conn->proto.httpc.binlen = binlen;
|
2013-09-07 07:01:43 -04:00
|
|
|
|
2014-07-25 02:24:03 -04:00
|
|
|
result = Curl_base64url_encode(conn->data, (const char *)binsettings, binlen,
|
|
|
|
&base64, &blen);
|
2013-09-07 07:01:43 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
result = Curl_add_bufferf(req,
|
|
|
|
"Connection: Upgrade, HTTP2-Settings\r\n"
|
2013-09-10 17:05:04 -04:00
|
|
|
"Upgrade: %s\r\n"
|
|
|
|
"HTTP2-Settings: %s\r\n",
|
2014-04-05 05:57:20 -04:00
|
|
|
NGHTTP2_CLEARTEXT_PROTO_VERSION_ID, base64);
|
2015-03-16 10:01:15 -04:00
|
|
|
free(base64);
|
2013-09-07 07:01:43 -04:00
|
|
|
|
2013-09-12 07:51:04 -04:00
|
|
|
k->upgr101 = UPGR101_REQUESTED;
|
|
|
|
|
2013-09-07 05:03:23 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-02-23 09:33:04 -05:00
|
|
|
/*
|
|
|
|
* Returns nonzero if current HTTP/2 session should be closed.
|
|
|
|
*/
|
2016-09-05 03:52:09 -04:00
|
|
|
static int should_close_session(struct http_conn *httpc)
|
|
|
|
{
|
2016-02-23 09:33:04 -05:00
|
|
|
return httpc->drain_total == 0 && !nghttp2_session_want_read(httpc->h2) &&
|
2016-09-05 03:52:09 -04:00
|
|
|
!nghttp2_session_want_write(httpc->h2);
|
2016-02-23 09:33:04 -05:00
|
|
|
}
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
static int h2_session_send(struct Curl_easy *data,
|
2016-02-22 07:20:38 -05:00
|
|
|
nghttp2_session *h2);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* h2_process_pending_input() processes pending input left in
|
|
|
|
* httpc->inbuf. Then, call h2_session_send() to send pending data.
|
|
|
|
* This function returns 0 if it succeeds, or -1 and error code will
|
|
|
|
* be assigned to *err.
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
static int h2_process_pending_input(struct Curl_easy *data,
|
2016-02-22 07:20:38 -05:00
|
|
|
struct http_conn *httpc,
|
2016-09-05 05:07:40 -04:00
|
|
|
CURLcode *err)
|
|
|
|
{
|
2016-02-22 07:20:38 -05:00
|
|
|
ssize_t nread;
|
|
|
|
char *inbuf;
|
|
|
|
ssize_t rv;
|
|
|
|
|
|
|
|
nread = httpc->inbuflen - httpc->nread_inbuf;
|
|
|
|
inbuf = httpc->inbuf + httpc->nread_inbuf;
|
|
|
|
|
|
|
|
rv = nghttp2_session_mem_recv(httpc->h2, (const uint8_t *)inbuf, nread);
|
|
|
|
if(rv < 0) {
|
|
|
|
failf(data,
|
|
|
|
"h2_process_pending_input: nghttp2_session_mem_recv() returned "
|
|
|
|
"%d:%s\n", rv, nghttp2_strerror((int)rv));
|
|
|
|
*err = CURLE_RECV_ERROR;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(nread == rv) {
|
|
|
|
DEBUGF(infof(data,
|
|
|
|
"h2_process_pending_input: All data in connection buffer "
|
|
|
|
"processed\n"));
|
|
|
|
httpc->inbuflen = 0;
|
|
|
|
httpc->nread_inbuf = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
httpc->nread_inbuf += rv;
|
|
|
|
DEBUGF(infof(data,
|
|
|
|
"h2_process_pending_input: %zu bytes left in connection "
|
|
|
|
"buffer\n",
|
|
|
|
httpc->inbuflen - httpc->nread_inbuf));
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = h2_session_send(data, httpc->h2);
|
|
|
|
if(rv != 0) {
|
|
|
|
*err = CURLE_SEND_ERROR;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-02-23 09:33:04 -05:00
|
|
|
if(should_close_session(httpc)) {
|
2016-02-22 07:20:38 -05:00
|
|
|
DEBUGF(infof(data,
|
|
|
|
"h2_process_pending_input: nothing to do in this session\n"));
|
|
|
|
*err = CURLE_HTTP2;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-05 05:07:40 -04:00
|
|
|
/*
|
|
|
|
* Called from transfer.c:done_sending when we stop uploading.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_http2_done_sending(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
if((conn->handler == &Curl_handler_http2_ssl) ||
|
|
|
|
(conn->handler == &Curl_handler_http2)) {
|
|
|
|
/* make sure this is only attempted for HTTP/2 transfers */
|
|
|
|
|
|
|
|
struct HTTP *stream = conn->data->req.protop;
|
|
|
|
|
|
|
|
if(stream->upload_left) {
|
|
|
|
/* If the stream still thinks there's data left to upload. */
|
|
|
|
struct http_conn *httpc = &conn->proto.httpc;
|
|
|
|
nghttp2_session *h2 = httpc->h2;
|
|
|
|
|
|
|
|
stream->upload_left = 0; /* DONE! */
|
|
|
|
|
|
|
|
/* resume sending here to trigger the callback to get called again so
|
|
|
|
that it can signal EOF to nghttp2 */
|
|
|
|
(void)nghttp2_session_resume_data(h2, stream->stream_id);
|
|
|
|
|
|
|
|
(void)h2_process_pending_input(conn->data, httpc, &result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-13 05:32:58 -05:00
|
|
|
static ssize_t http2_handle_stream_close(struct connectdata *conn,
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data,
|
2016-09-05 05:07:40 -04:00
|
|
|
struct HTTP *stream, CURLcode *err)
|
|
|
|
{
|
2015-12-13 05:32:58 -05:00
|
|
|
char *trailer_pos, *trailer_end;
|
|
|
|
CURLcode result;
|
|
|
|
struct http_conn *httpc = &conn->proto.httpc;
|
|
|
|
|
2015-05-07 11:52:48 -04:00
|
|
|
if(httpc->pause_stream_id == stream->stream_id) {
|
|
|
|
httpc->pause_stream_id = 0;
|
|
|
|
}
|
2016-02-22 07:20:38 -05:00
|
|
|
|
2016-04-12 00:37:44 -04:00
|
|
|
DEBUGASSERT(httpc->drain_total >= data->state.drain);
|
2016-02-23 09:33:04 -05:00
|
|
|
httpc->drain_total -= data->state.drain;
|
|
|
|
data->state.drain = 0;
|
|
|
|
|
2016-02-22 07:20:38 -05:00
|
|
|
if(httpc->pause_stream_id == 0) {
|
|
|
|
if(h2_process_pending_input(data, httpc, err) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-23 09:33:04 -05:00
|
|
|
DEBUGASSERT(data->state.drain == 0);
|
|
|
|
|
2016-08-28 17:28:52 -04:00
|
|
|
/* Reset to FALSE to prevent infinite loop in readwrite_data function. */
|
2015-05-07 01:51:32 -04:00
|
|
|
stream->closed = FALSE;
|
|
|
|
if(stream->error_code != NGHTTP2_NO_ERROR) {
|
2016-03-03 00:47:46 -05:00
|
|
|
failf(data, "HTTP/2 stream %u was not closed cleanly: %s (err %d)",
|
|
|
|
stream->stream_id, Curl_http2_strerror(stream->error_code),
|
|
|
|
stream->error_code);
|
2016-02-17 07:36:59 -05:00
|
|
|
*err = CURLE_HTTP2_STREAM;
|
2015-05-07 01:51:32 -04:00
|
|
|
return -1;
|
|
|
|
}
|
2015-12-13 05:32:58 -05:00
|
|
|
|
2016-02-23 09:33:04 -05:00
|
|
|
if(!stream->bodystarted) {
|
|
|
|
failf(data, "HTTP/2 stream %u was closed cleanly, but before getting "
|
|
|
|
" all response header fields, teated as error",
|
|
|
|
stream->stream_id);
|
|
|
|
*err = CURLE_HTTP2_STREAM;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-01-06 22:10:49 -05:00
|
|
|
if(stream->trailer_recvbuf && stream->trailer_recvbuf->buffer) {
|
|
|
|
trailer_pos = stream->trailer_recvbuf->buffer;
|
|
|
|
trailer_end = trailer_pos + stream->trailer_recvbuf->size_used;
|
|
|
|
|
|
|
|
for(; trailer_pos < trailer_end;) {
|
|
|
|
uint32_t n;
|
|
|
|
memcpy(&n, trailer_pos, sizeof(n));
|
|
|
|
trailer_pos += sizeof(n);
|
|
|
|
|
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_HEADER, trailer_pos, n);
|
|
|
|
if(result) {
|
|
|
|
*err = result;
|
|
|
|
return -1;
|
|
|
|
}
|
2015-12-13 05:32:58 -05:00
|
|
|
|
2016-01-06 22:10:49 -05:00
|
|
|
trailer_pos += n + 1;
|
2015-12-13 05:32:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-28 10:44:03 -04:00
|
|
|
stream->close_handled = TRUE;
|
|
|
|
|
2015-05-11 17:17:36 -04:00
|
|
|
DEBUGF(infof(data, "http2_recv returns 0, http2_handle_stream_close\n"));
|
2015-05-07 01:51:32 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-09-13 10:07:05 -04:00
|
|
|
/*
|
|
|
|
* h2_pri_spec() fills in the pri_spec struct, used by nghttp2 to send weight
|
|
|
|
* and dependency to the peer. It also stores the updated values in the state
|
|
|
|
* struct.
|
|
|
|
*/
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
static void h2_pri_spec(struct Curl_easy *data,
|
2015-09-13 10:07:05 -04:00
|
|
|
nghttp2_priority_spec *pri_spec)
|
|
|
|
{
|
|
|
|
struct HTTP *depstream = (data->set.stream_depends_on?
|
|
|
|
data->set.stream_depends_on->req.protop:NULL);
|
|
|
|
int32_t depstream_id = depstream? depstream->stream_id:0;
|
2015-10-21 16:47:24 -04:00
|
|
|
nghttp2_priority_spec_init(pri_spec, depstream_id, data->set.stream_weight,
|
2015-09-13 10:07:05 -04:00
|
|
|
data->set.stream_depends_e);
|
2015-10-21 16:47:24 -04:00
|
|
|
data->state.stream_weight = data->set.stream_weight;
|
2015-09-13 10:07:05 -04:00
|
|
|
data->state.stream_depends_e = data->set.stream_depends_e;
|
|
|
|
data->state.stream_depends_on = data->set.stream_depends_on;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* h2_session_send() checks if there's been an update in the priority /
|
|
|
|
* dependency settings and if so it submits a PRIORITY frame with the updated
|
|
|
|
* info.
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
static int h2_session_send(struct Curl_easy *data,
|
2015-09-13 10:07:05 -04:00
|
|
|
nghttp2_session *h2)
|
|
|
|
{
|
|
|
|
struct HTTP *stream = data->req.protop;
|
2015-10-21 16:47:24 -04:00
|
|
|
if((data->set.stream_weight != data->state.stream_weight) ||
|
2015-09-13 10:07:05 -04:00
|
|
|
(data->set.stream_depends_e != data->state.stream_depends_e) ||
|
|
|
|
(data->set.stream_depends_on != data->state.stream_depends_on) ) {
|
|
|
|
/* send new weight and/or dependency */
|
|
|
|
nghttp2_priority_spec pri_spec;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
h2_pri_spec(data, &pri_spec);
|
|
|
|
|
2015-11-29 18:12:46 -05:00
|
|
|
DEBUGF(infof(data, "Queuing PRIORITY on stream %u (easy %p)\n",
|
|
|
|
stream->stream_id, data));
|
2015-09-13 10:07:05 -04:00
|
|
|
rv = nghttp2_submit_priority(h2, NGHTTP2_FLAG_NONE, stream->stream_id,
|
|
|
|
&pri_spec);
|
|
|
|
if(rv)
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nghttp2_session_send(h2);
|
|
|
|
}
|
|
|
|
|
2013-09-18 16:43:13 -04:00
|
|
|
static ssize_t http2_recv(struct connectdata *conn, int sockindex,
|
|
|
|
char *mem, size_t len, CURLcode *err)
|
|
|
|
{
|
2014-12-14 08:09:29 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2014-01-30 09:26:20 -05:00
|
|
|
ssize_t rv;
|
|
|
|
ssize_t nread;
|
2014-01-31 10:51:24 -05:00
|
|
|
struct http_conn *httpc = &conn->proto.httpc;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2015-04-30 02:20:49 -04:00
|
|
|
struct HTTP *stream = data->req.protop;
|
2014-01-30 09:26:20 -05:00
|
|
|
|
2013-09-18 16:43:13 -04:00
|
|
|
(void)sockindex; /* we always do HTTP2 on sockindex 0 */
|
|
|
|
|
2016-02-23 09:33:04 -05:00
|
|
|
if(should_close_session(httpc)) {
|
2016-02-19 10:05:47 -05:00
|
|
|
DEBUGF(infof(data,
|
|
|
|
"http2_recv: nothing to do in this session\n"));
|
|
|
|
*err = CURLE_HTTP2;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-02-14 08:02:44 -05:00
|
|
|
/* Nullify here because we call nghttp2_session_send() and they
|
|
|
|
might refer to the old buffer. */
|
2015-05-18 08:01:38 -04:00
|
|
|
stream->upload_mem = NULL;
|
|
|
|
stream->upload_len = 0;
|
2014-02-14 08:02:44 -05:00
|
|
|
|
2015-04-29 08:19:39 -04:00
|
|
|
/*
|
2016-06-21 09:47:12 -04:00
|
|
|
* At this point 'stream' is just in the Curl_easy the connection
|
2015-04-29 08:19:39 -04:00
|
|
|
* identifies as its owner at this time.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if(stream->bodystarted &&
|
|
|
|
stream->nread_header_recvbuf < stream->header_recvbuf->size_used) {
|
|
|
|
/* If there is body data pending for this stream to return, do that */
|
2014-02-04 08:54:42 -05:00
|
|
|
size_t left =
|
2015-04-29 08:19:39 -04:00
|
|
|
stream->header_recvbuf->size_used - stream->nread_header_recvbuf;
|
2015-04-29 11:00:53 -04:00
|
|
|
size_t ncopy = MIN(len, left);
|
2015-04-29 08:19:39 -04:00
|
|
|
memcpy(mem, stream->header_recvbuf->buffer + stream->nread_header_recvbuf,
|
2014-02-04 08:54:42 -05:00
|
|
|
ncopy);
|
2015-04-29 08:19:39 -04:00
|
|
|
stream->nread_header_recvbuf += ncopy;
|
2015-04-29 11:00:53 -04:00
|
|
|
|
2015-11-29 18:12:46 -05:00
|
|
|
DEBUGF(infof(data, "http2_recv: Got %d bytes from header_recvbuf\n",
|
|
|
|
(int)ncopy));
|
2014-02-04 08:54:42 -05:00
|
|
|
return ncopy;
|
|
|
|
}
|
|
|
|
|
2015-11-29 18:12:46 -05:00
|
|
|
DEBUGF(infof(data, "http2_recv: easy %p (stream %u)\n",
|
|
|
|
data, stream->stream_id));
|
2015-05-07 10:19:08 -04:00
|
|
|
|
2015-05-11 09:54:50 -04:00
|
|
|
if((data->state.drain) && stream->memlen) {
|
2015-05-20 08:27:08 -04:00
|
|
|
DEBUGF(infof(data, "http2_recv: DRAIN %zu bytes stream %u!! (%p => %p)\n",
|
2015-05-07 10:19:08 -04:00
|
|
|
stream->memlen, stream->stream_id,
|
|
|
|
stream->mem, mem));
|
|
|
|
if(mem != stream->mem) {
|
|
|
|
/* if we didn't get the same buffer this time, we must move the data to
|
|
|
|
the beginning */
|
|
|
|
memmove(mem, stream->mem, stream->memlen);
|
|
|
|
stream->len = len - stream->memlen;
|
|
|
|
stream->mem = mem;
|
|
|
|
}
|
2016-02-22 07:20:38 -05:00
|
|
|
if(httpc->pause_stream_id == stream->stream_id && !stream->pausedata) {
|
|
|
|
/* We have paused nghttp2, but we have no pause data (see
|
|
|
|
on_data_chunk_recv). */
|
|
|
|
httpc->pause_stream_id = 0;
|
|
|
|
if(h2_process_pending_input(data, httpc, &result) != 0) {
|
|
|
|
*err = result;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2015-05-07 10:19:08 -04:00
|
|
|
}
|
2015-05-11 09:10:21 -04:00
|
|
|
else if(stream->pausedata) {
|
2016-02-22 07:20:38 -05:00
|
|
|
DEBUGASSERT(httpc->pause_stream_id == stream->stream_id);
|
2015-05-11 09:10:21 -04:00
|
|
|
nread = MIN(len, stream->pauselen);
|
|
|
|
memcpy(mem, stream->pausedata, nread);
|
2014-02-04 08:57:29 -05:00
|
|
|
|
2015-05-11 09:10:21 -04:00
|
|
|
stream->pausedata += nread;
|
|
|
|
stream->pauselen -= nread;
|
2014-02-04 08:57:29 -05:00
|
|
|
|
2015-04-30 02:20:49 -04:00
|
|
|
infof(data, "%zu data bytes written\n", nread);
|
2015-05-11 09:10:21 -04:00
|
|
|
if(stream->pauselen == 0) {
|
2015-05-20 08:27:08 -04:00
|
|
|
DEBUGF(infof(data, "Unpaused by stream %u\n", stream->stream_id));
|
2017-05-22 07:58:17 -04:00
|
|
|
DEBUGASSERT(httpc->pause_stream_id == stream->stream_id);
|
2015-05-07 11:52:48 -04:00
|
|
|
httpc->pause_stream_id = 0;
|
|
|
|
|
2015-05-11 09:10:21 -04:00
|
|
|
stream->pausedata = NULL;
|
|
|
|
stream->pauselen = 0;
|
2015-12-04 10:40:10 -05:00
|
|
|
|
|
|
|
/* When NGHTTP2_ERR_PAUSE is returned from
|
|
|
|
data_source_read_callback, we might not process DATA frame
|
|
|
|
fully. Calling nghttp2_session_mem_recv() again will
|
|
|
|
continue to process DATA frame, but if there is no incoming
|
|
|
|
frames, then we have to call it again with 0-length data.
|
|
|
|
Without this, on_stream_close callback will not be called,
|
|
|
|
and stream could be hanged. */
|
2016-02-22 07:20:38 -05:00
|
|
|
if(h2_process_pending_input(data, httpc, &result) != 0) {
|
|
|
|
*err = result;
|
|
|
|
return -1;
|
|
|
|
}
|
2014-02-04 08:57:29 -05:00
|
|
|
}
|
2015-11-29 18:12:46 -05:00
|
|
|
DEBUGF(infof(data, "http2_recv: returns unpaused %zd bytes on stream %u\n",
|
|
|
|
nread, stream->stream_id));
|
2014-02-04 08:57:29 -05:00
|
|
|
return nread;
|
|
|
|
}
|
2015-05-07 11:52:48 -04:00
|
|
|
else if(httpc->pause_stream_id) {
|
|
|
|
/* If a stream paused nghttp2_session_mem_recv previously, and has
|
|
|
|
not processed all data, it still refers to the buffer in
|
|
|
|
nghttp2_session. If we call nghttp2_session_mem_recv(), we may
|
|
|
|
overwrite that buffer. To avoid that situation, just return
|
|
|
|
here with CURLE_AGAIN. This could be busy loop since data in
|
|
|
|
socket is not read. But it seems that usually streams are
|
|
|
|
notified with its drain property, and socket is read again
|
|
|
|
quickly. */
|
2016-08-11 08:00:23 -04:00
|
|
|
DEBUGF(infof(data, "stream %x is paused, pause id: %x\n",
|
|
|
|
stream->stream_id, httpc->pause_stream_id));
|
2015-05-07 11:52:48 -04:00
|
|
|
*err = CURLE_AGAIN;
|
|
|
|
return -1;
|
|
|
|
}
|
2015-04-30 02:20:49 -04:00
|
|
|
else {
|
2015-05-07 04:22:57 -04:00
|
|
|
char *inbuf;
|
2015-04-30 02:20:49 -04:00
|
|
|
/* remember where to store incoming data for this stream and how big the
|
|
|
|
buffer is */
|
|
|
|
stream->mem = mem;
|
|
|
|
stream->len = len;
|
|
|
|
stream->memlen = 0;
|
|
|
|
|
2015-05-07 04:22:57 -04:00
|
|
|
if(httpc->inbuflen == 0) {
|
|
|
|
nread = ((Curl_recv *)httpc->recv_underlying)(
|
|
|
|
conn, FIRSTSOCKET, httpc->inbuf, H2_BUFSIZE, &result);
|
2014-01-30 12:21:57 -05:00
|
|
|
|
2015-05-07 04:22:57 -04:00
|
|
|
if(nread == -1) {
|
2015-10-08 02:48:44 -04:00
|
|
|
if(result != CURLE_AGAIN)
|
|
|
|
failf(data, "Failed receiving HTTP2 data");
|
2016-04-11 10:00:15 -04:00
|
|
|
else if(stream->closed)
|
|
|
|
/* received when the stream was already closed! */
|
|
|
|
return http2_handle_stream_close(conn, data, stream, err);
|
|
|
|
|
2015-05-07 04:22:57 -04:00
|
|
|
*err = result;
|
2015-10-08 02:48:44 -04:00
|
|
|
return -1;
|
2015-05-07 04:22:57 -04:00
|
|
|
}
|
2014-09-12 22:59:23 -04:00
|
|
|
|
2015-05-07 04:22:57 -04:00
|
|
|
if(nread == 0) {
|
|
|
|
failf(data, "Unexpected EOF");
|
|
|
|
*err = CURLE_RECV_ERROR;
|
|
|
|
return -1;
|
|
|
|
}
|
2015-02-25 07:50:31 -05:00
|
|
|
|
2015-05-07 04:22:57 -04:00
|
|
|
DEBUGF(infof(data, "nread=%zd\n", nread));
|
|
|
|
|
|
|
|
httpc->inbuflen = nread;
|
|
|
|
inbuf = httpc->inbuf;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nread = httpc->inbuflen - httpc->nread_inbuf;
|
|
|
|
inbuf = httpc->inbuf + httpc->nread_inbuf;
|
|
|
|
|
|
|
|
DEBUGF(infof(data, "Use data left in connection buffer, nread=%zd\n",
|
|
|
|
nread));
|
|
|
|
}
|
|
|
|
rv = nghttp2_session_mem_recv(httpc->h2, (const uint8_t *)inbuf, nread);
|
2014-01-31 10:51:24 -05:00
|
|
|
|
2015-04-30 02:20:49 -04:00
|
|
|
if(nghttp2_is_fatal((int)rv)) {
|
|
|
|
failf(data, "nghttp2_session_mem_recv() returned %d:%s\n",
|
|
|
|
rv, nghttp2_strerror((int)rv));
|
|
|
|
*err = CURLE_RECV_ERROR;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
DEBUGF(infof(data, "nghttp2_session_mem_recv() returns %zd\n", rv));
|
2015-05-07 04:22:57 -04:00
|
|
|
if(nread == rv) {
|
|
|
|
DEBUGF(infof(data, "All data in connection buffer processed\n"));
|
|
|
|
httpc->inbuflen = 0;
|
|
|
|
httpc->nread_inbuf = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
httpc->nread_inbuf += rv;
|
|
|
|
DEBUGF(infof(data, "%zu bytes left in connection buffer\n",
|
|
|
|
httpc->inbuflen - httpc->nread_inbuf));
|
|
|
|
}
|
2015-04-30 02:20:49 -04:00
|
|
|
/* Always send pending frames in nghttp2 session, because
|
|
|
|
nghttp2_session_mem_recv() may queue new frame */
|
2015-09-13 10:07:05 -04:00
|
|
|
rv = h2_session_send(data, httpc->h2);
|
2015-04-30 02:20:49 -04:00
|
|
|
if(rv != 0) {
|
|
|
|
*err = CURLE_SEND_ERROR;
|
|
|
|
return 0;
|
|
|
|
}
|
2016-02-22 07:20:38 -05:00
|
|
|
|
2016-02-23 09:33:04 -05:00
|
|
|
if(should_close_session(httpc)) {
|
2016-02-22 07:20:38 -05:00
|
|
|
DEBUGF(infof(data, "http2_recv: nothing to do in this session\n"));
|
|
|
|
*err = CURLE_HTTP2;
|
|
|
|
return -1;
|
|
|
|
}
|
2014-01-31 10:51:24 -05:00
|
|
|
}
|
2015-04-30 12:34:41 -04:00
|
|
|
if(stream->memlen) {
|
|
|
|
ssize_t retlen = stream->memlen;
|
2015-11-29 18:12:46 -05:00
|
|
|
DEBUGF(infof(data, "http2_recv: returns %zd for stream %u\n",
|
|
|
|
retlen, stream->stream_id));
|
2015-04-30 12:34:41 -04:00
|
|
|
stream->memlen = 0;
|
|
|
|
|
2015-05-11 09:54:50 -04:00
|
|
|
if(httpc->pause_stream_id == stream->stream_id) {
|
|
|
|
/* data for this stream is returned now, but this stream caused a pause
|
|
|
|
already so we need it called again asap */
|
2015-05-20 08:27:08 -04:00
|
|
|
DEBUGF(infof(data, "Data returned for PAUSED stream %u\n",
|
2015-05-11 09:54:50 -04:00
|
|
|
stream->stream_id));
|
|
|
|
}
|
2016-02-23 09:33:04 -05:00
|
|
|
else if(!stream->closed) {
|
2016-04-12 00:37:44 -04:00
|
|
|
DEBUGASSERT(httpc->drain_total >= data->state.drain);
|
2016-02-23 09:33:04 -05:00
|
|
|
httpc->drain_total -= data->state.drain;
|
2015-05-11 09:54:50 -04:00
|
|
|
data->state.drain = 0; /* this stream is hereby drained */
|
2016-02-23 09:33:04 -05:00
|
|
|
}
|
2015-05-11 09:54:50 -04:00
|
|
|
|
2015-04-30 12:34:41 -04:00
|
|
|
return retlen;
|
2014-01-31 10:51:24 -05:00
|
|
|
}
|
|
|
|
/* If stream is closed, return 0 to signal the http routine to close
|
|
|
|
the connection */
|
2015-04-29 09:21:45 -04:00
|
|
|
if(stream->closed) {
|
2015-12-13 05:32:58 -05:00
|
|
|
return http2_handle_stream_close(conn, data, stream, err);
|
2013-09-18 16:43:13 -04:00
|
|
|
}
|
2014-01-31 10:51:24 -05:00
|
|
|
*err = CURLE_AGAIN;
|
2015-05-20 08:27:08 -04:00
|
|
|
DEBUGF(infof(data, "http2_recv returns AGAIN for stream %u\n",
|
2015-05-11 09:10:21 -04:00
|
|
|
stream->stream_id));
|
2014-01-31 10:51:24 -05:00
|
|
|
return -1;
|
2013-09-18 16:43:13 -04:00
|
|
|
}
|
|
|
|
|
2014-08-07 10:09:25 -04:00
|
|
|
/* Index where :authority header field will appear in request header
|
|
|
|
field list. */
|
|
|
|
#define AUTHORITY_DST_IDX 3
|
|
|
|
|
2016-03-03 01:24:27 -05:00
|
|
|
#define HEADER_OVERFLOW(x) \
|
|
|
|
(x.namelen > (uint16_t)-1 || x.valuelen > (uint16_t)-1 - x.namelen)
|
|
|
|
|
2016-10-30 06:04:03 -04:00
|
|
|
/*
|
|
|
|
* Check header memory for the token "trailers".
|
|
|
|
* Parse the tokens as separated by comma and surrounded by whitespace.
|
|
|
|
* Returns TRUE if found or FALSE if not.
|
|
|
|
*/
|
2016-11-23 02:49:04 -05:00
|
|
|
static bool contains_trailers(const char *p, size_t len)
|
|
|
|
{
|
2016-10-30 06:04:03 -04:00
|
|
|
const char *end = p + len;
|
|
|
|
for(;;) {
|
|
|
|
for(; p != end && (*p == ' ' || *p == '\t'); ++p)
|
|
|
|
;
|
|
|
|
if(p == end || (size_t)(end - p) < sizeof("trailers") - 1)
|
|
|
|
return FALSE;
|
|
|
|
if(strncasecompare("trailers", p, sizeof("trailers") - 1)) {
|
|
|
|
p += sizeof("trailers") - 1;
|
|
|
|
for(; p != end && (*p == ' ' || *p == '\t'); ++p)
|
|
|
|
;
|
|
|
|
if(p == end || *p == ',')
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
/* skip to next token */
|
|
|
|
for(; p != end && *p != ','; ++p)
|
|
|
|
;
|
|
|
|
if(p == end)
|
|
|
|
return FALSE;
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
/* Send header to server */
|
|
|
|
HEADERINST_FORWARD,
|
|
|
|
/* Don't send header to server */
|
|
|
|
HEADERINST_IGNORE,
|
|
|
|
/* Discard header, and replace it with "te: trailers" */
|
|
|
|
HEADERINST_TE_TRAILERS
|
|
|
|
} header_instruction;
|
|
|
|
|
|
|
|
/* Decides how to treat given header field. */
|
|
|
|
static header_instruction inspect_header(const char *name, size_t namelen,
|
|
|
|
const char *value, size_t valuelen) {
|
|
|
|
switch(namelen) {
|
|
|
|
case 2:
|
|
|
|
if(!strncasecompare("te", name, namelen))
|
|
|
|
return HEADERINST_FORWARD;
|
|
|
|
|
|
|
|
return contains_trailers(value, valuelen) ?
|
|
|
|
HEADERINST_TE_TRAILERS : HEADERINST_IGNORE;
|
|
|
|
case 7:
|
|
|
|
return strncasecompare("upgrade", name, namelen) ?
|
|
|
|
HEADERINST_IGNORE : HEADERINST_FORWARD;
|
|
|
|
case 10:
|
|
|
|
return (strncasecompare("connection", name, namelen) ||
|
|
|
|
strncasecompare("keep-alive", name, namelen)) ?
|
|
|
|
HEADERINST_IGNORE : HEADERINST_FORWARD;
|
|
|
|
case 16:
|
|
|
|
return strncasecompare("proxy-connection", name, namelen) ?
|
|
|
|
HEADERINST_IGNORE : HEADERINST_FORWARD;
|
|
|
|
case 17:
|
|
|
|
return strncasecompare("transfer-encoding", name, namelen) ?
|
|
|
|
HEADERINST_IGNORE : HEADERINST_FORWARD;
|
|
|
|
default:
|
|
|
|
return HEADERINST_FORWARD;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-18 16:43:13 -04:00
|
|
|
static ssize_t http2_send(struct connectdata *conn, int sockindex,
|
|
|
|
const void *mem, size_t len, CURLcode *err)
|
|
|
|
{
|
2014-01-31 10:51:24 -05:00
|
|
|
/*
|
|
|
|
* BIG TODO: Currently, we send request in this function, but this
|
|
|
|
* function is also used to send request body. It would be nice to
|
|
|
|
* add dedicated function for request.
|
|
|
|
*/
|
|
|
|
int rv;
|
|
|
|
struct http_conn *httpc = &conn->proto.httpc;
|
2015-04-27 07:54:47 -04:00
|
|
|
struct HTTP *stream = conn->data->req.protop;
|
2016-03-03 01:24:27 -05:00
|
|
|
nghttp2_nv *nva = NULL;
|
2014-01-31 10:51:24 -05:00
|
|
|
size_t nheader;
|
|
|
|
size_t i;
|
2014-08-07 10:09:25 -04:00
|
|
|
size_t authority_idx;
|
2016-11-23 02:30:18 -05:00
|
|
|
char *hdbuf = (char *)mem;
|
2016-03-03 01:24:27 -05:00
|
|
|
char *end, *line_end;
|
2014-02-14 08:02:44 -05:00
|
|
|
nghttp2_data_provider data_prd;
|
2014-05-07 11:20:05 -04:00
|
|
|
int32_t stream_id;
|
2015-05-07 10:44:00 -04:00
|
|
|
nghttp2_session *h2 = httpc->h2;
|
2015-09-13 10:07:05 -04:00
|
|
|
nghttp2_priority_spec pri_spec;
|
2014-05-07 11:20:05 -04:00
|
|
|
|
2013-09-18 16:43:13 -04:00
|
|
|
(void)sockindex;
|
2014-01-31 10:51:24 -05:00
|
|
|
|
2015-02-25 05:45:46 -05:00
|
|
|
DEBUGF(infof(conn->data, "http2_send len=%zu\n", len));
|
2014-01-31 10:51:24 -05:00
|
|
|
|
2015-04-27 07:54:47 -04:00
|
|
|
if(stream->stream_id != -1) {
|
2016-08-28 10:44:03 -04:00
|
|
|
if(stream->close_handled) {
|
|
|
|
infof(conn->data, "stream %d closed\n", stream->stream_id);
|
2016-08-28 17:28:52 -04:00
|
|
|
*err = CURLE_HTTP2_STREAM;
|
2016-08-28 10:44:03 -04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if(stream->closed) {
|
|
|
|
return http2_handle_stream_close(conn, conn->data, stream, err);
|
|
|
|
}
|
2014-02-14 08:02:44 -05:00
|
|
|
/* If stream_id != -1, we have dispatched request HEADERS, and now
|
|
|
|
are going to send or sending request body in DATA frame */
|
2015-05-18 08:01:38 -04:00
|
|
|
stream->upload_mem = mem;
|
|
|
|
stream->upload_len = len;
|
2015-05-07 10:44:00 -04:00
|
|
|
nghttp2_session_resume_data(h2, stream->stream_id);
|
2015-09-13 10:07:05 -04:00
|
|
|
rv = h2_session_send(conn->data, h2);
|
2014-02-14 08:02:44 -05:00
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
|
|
*err = CURLE_SEND_ERROR;
|
|
|
|
return -1;
|
|
|
|
}
|
2015-05-18 08:01:38 -04:00
|
|
|
len -= stream->upload_len;
|
|
|
|
|
http2: Faster http2 upload
Previously, when we send all given buffer in data_source_callback, we
return NGHTTP2_ERR_DEFERRED, and nghttp2 library removes this stream
temporarily for writing. This itself is good. If this is the sole
stream in the session, nghttp2_session_want_write() returns zero,
which means that libcurl does not check writeability of the underlying
socket. This leads to very slow upload, because it seems curl only
upload 16k something per 1 second. To fix this, if we still have data
to send, call nghttp2_session_resume_data after nghttp2_session_send.
This makes nghttp2_session_want_write() returns nonzero (if connection
window still opens), and as a result, socket writeability is checked,
and upload speed becomes normal.
2015-05-20 10:11:43 -04:00
|
|
|
/* Nullify here because we call nghttp2_session_send() and they
|
|
|
|
might refer to the old buffer. */
|
|
|
|
stream->upload_mem = NULL;
|
|
|
|
stream->upload_len = 0;
|
|
|
|
|
2016-02-23 09:33:04 -05:00
|
|
|
if(should_close_session(httpc)) {
|
2016-02-22 07:20:38 -05:00
|
|
|
DEBUGF(infof(conn->data, "http2_send: nothing to do in this session\n"));
|
|
|
|
*err = CURLE_HTTP2;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
http2: Faster http2 upload
Previously, when we send all given buffer in data_source_callback, we
return NGHTTP2_ERR_DEFERRED, and nghttp2 library removes this stream
temporarily for writing. This itself is good. If this is the sole
stream in the session, nghttp2_session_want_write() returns zero,
which means that libcurl does not check writeability of the underlying
socket. This leads to very slow upload, because it seems curl only
upload 16k something per 1 second. To fix this, if we still have data
to send, call nghttp2_session_resume_data after nghttp2_session_send.
This makes nghttp2_session_want_write() returns nonzero (if connection
window still opens), and as a result, socket writeability is checked,
and upload speed becomes normal.
2015-05-20 10:11:43 -04:00
|
|
|
if(stream->upload_left) {
|
|
|
|
/* we are sure that we have more data to send here. Calling the
|
|
|
|
following API will make nghttp2_session_want_write() return
|
|
|
|
nonzero if remote window allows it, which then libcurl checks
|
|
|
|
socket is writable or not. See http2_perform_getsock(). */
|
|
|
|
nghttp2_session_resume_data(h2, stream->stream_id);
|
|
|
|
}
|
|
|
|
|
2015-05-20 08:27:08 -04:00
|
|
|
DEBUGF(infof(conn->data, "http2_send returns %zu for stream %u\n", len,
|
2015-05-18 08:01:38 -04:00
|
|
|
stream->stream_id));
|
|
|
|
return len;
|
2014-02-14 08:02:44 -05:00
|
|
|
}
|
|
|
|
|
2014-01-31 10:51:24 -05:00
|
|
|
/* Calculate number of headers contained in [mem, mem + len) */
|
|
|
|
/* Here, we assume the curl http code generate *correct* HTTP header
|
|
|
|
field block */
|
|
|
|
nheader = 0;
|
2016-03-03 01:24:27 -05:00
|
|
|
for(i = 1; i < len; ++i) {
|
|
|
|
if(hdbuf[i] == '\n' && hdbuf[i - 1] == '\r') {
|
2014-01-31 10:51:24 -05:00
|
|
|
++nheader;
|
2016-03-03 01:24:27 -05:00
|
|
|
++i;
|
2014-01-31 10:51:24 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-03 01:24:27 -05:00
|
|
|
if(nheader < 2)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* We counted additional 2 \r\n in the first and last line. We need 3
|
2014-01-31 10:51:24 -05:00
|
|
|
new headers: :method, :path and :scheme. Therefore we need one
|
|
|
|
more space. */
|
|
|
|
nheader += 1;
|
|
|
|
nva = malloc(sizeof(nghttp2_nv) * nheader);
|
|
|
|
if(nva == NULL) {
|
|
|
|
*err = CURLE_OUT_OF_MEMORY;
|
|
|
|
return -1;
|
|
|
|
}
|
2016-03-03 01:24:27 -05:00
|
|
|
|
2014-01-31 10:51:24 -05:00
|
|
|
/* Extract :method, :path from request line */
|
2016-03-03 01:24:27 -05:00
|
|
|
line_end = strstr(hdbuf, "\r\n");
|
|
|
|
|
|
|
|
/* Method does not contain spaces */
|
|
|
|
end = memchr(hdbuf, ' ', line_end - hdbuf);
|
|
|
|
if(!end || end == hdbuf)
|
2015-07-23 05:51:53 -04:00
|
|
|
goto fail;
|
2014-01-31 10:51:24 -05:00
|
|
|
nva[0].name = (unsigned char *)":method";
|
2016-03-03 01:24:27 -05:00
|
|
|
nva[0].namelen = strlen((char *)nva[0].name);
|
2014-01-31 10:51:24 -05:00
|
|
|
nva[0].value = (unsigned char *)hdbuf;
|
2016-03-03 01:24:27 -05:00
|
|
|
nva[0].valuelen = (size_t)(end - hdbuf);
|
2014-04-05 05:57:20 -04:00
|
|
|
nva[0].flags = NGHTTP2_NV_FLAG_NONE;
|
2016-03-03 01:24:27 -05:00
|
|
|
if(HEADER_OVERFLOW(nva[0])) {
|
|
|
|
failf(conn->data, "Failed sending HTTP request: Header overflow");
|
|
|
|
goto fail;
|
|
|
|
}
|
2014-01-31 10:51:24 -05:00
|
|
|
|
|
|
|
hdbuf = end + 1;
|
|
|
|
|
2016-03-03 01:24:27 -05:00
|
|
|
/* Path may contain spaces so scan backwards */
|
|
|
|
end = NULL;
|
|
|
|
for(i = (size_t)(line_end - hdbuf); i; --i) {
|
|
|
|
if(hdbuf[i - 1] == ' ') {
|
|
|
|
end = &hdbuf[i - 1];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!end || end == hdbuf)
|
2015-07-23 05:51:53 -04:00
|
|
|
goto fail;
|
2014-01-31 10:51:24 -05:00
|
|
|
nva[1].name = (unsigned char *)":path";
|
2016-03-03 01:24:27 -05:00
|
|
|
nva[1].namelen = strlen((char *)nva[1].name);
|
2014-01-31 10:51:24 -05:00
|
|
|
nva[1].value = (unsigned char *)hdbuf;
|
2016-03-03 01:24:27 -05:00
|
|
|
nva[1].valuelen = (size_t)(end - hdbuf);
|
2014-04-05 05:57:20 -04:00
|
|
|
nva[1].flags = NGHTTP2_NV_FLAG_NONE;
|
2016-03-03 01:24:27 -05:00
|
|
|
if(HEADER_OVERFLOW(nva[1])) {
|
|
|
|
failf(conn->data, "Failed sending HTTP request: Header overflow");
|
|
|
|
goto fail;
|
|
|
|
}
|
2014-01-31 10:51:24 -05:00
|
|
|
|
2016-03-03 01:24:27 -05:00
|
|
|
hdbuf = end + 1;
|
|
|
|
|
|
|
|
end = line_end;
|
2014-01-31 10:51:24 -05:00
|
|
|
nva[2].name = (unsigned char *)":scheme";
|
2016-03-03 01:24:27 -05:00
|
|
|
nva[2].namelen = strlen((char *)nva[2].name);
|
2014-01-31 10:51:24 -05:00
|
|
|
if(conn->handler->flags & PROTOPT_SSL)
|
|
|
|
nva[2].value = (unsigned char *)"https";
|
|
|
|
else
|
|
|
|
nva[2].value = (unsigned char *)"http";
|
2016-03-03 01:24:27 -05:00
|
|
|
nva[2].valuelen = strlen((char *)nva[2].value);
|
2014-04-05 05:57:20 -04:00
|
|
|
nva[2].flags = NGHTTP2_NV_FLAG_NONE;
|
2016-03-03 01:24:27 -05:00
|
|
|
if(HEADER_OVERFLOW(nva[2])) {
|
|
|
|
failf(conn->data, "Failed sending HTTP request: Header overflow");
|
2015-07-23 05:51:53 -04:00
|
|
|
goto fail;
|
2016-03-03 01:24:27 -05:00
|
|
|
}
|
2014-01-31 10:51:24 -05:00
|
|
|
|
2014-08-07 10:09:25 -04:00
|
|
|
authority_idx = 0;
|
2015-10-16 14:51:12 -04:00
|
|
|
i = 3;
|
|
|
|
while(i < nheader) {
|
2015-09-03 16:23:50 -04:00
|
|
|
size_t hlen;
|
2016-03-03 01:24:27 -05:00
|
|
|
|
|
|
|
hdbuf = line_end + 2;
|
|
|
|
|
|
|
|
line_end = strstr(hdbuf, "\r\n");
|
|
|
|
if(line_end == hdbuf)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* header continuation lines are not supported */
|
|
|
|
if(*hdbuf == ' ' || *hdbuf == '\t')
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
for(end = hdbuf; end < line_end && *end != ':'; ++end)
|
|
|
|
;
|
|
|
|
if(end == hdbuf || end == line_end)
|
2015-07-23 05:51:53 -04:00
|
|
|
goto fail;
|
2015-09-03 16:23:50 -04:00
|
|
|
hlen = end - hdbuf;
|
2016-03-03 01:24:27 -05:00
|
|
|
|
2016-10-30 06:04:03 -04:00
|
|
|
if(hlen == 4 && strncasecompare("host", hdbuf, 4)) {
|
2014-08-07 10:09:25 -04:00
|
|
|
authority_idx = i;
|
2014-01-31 10:51:24 -05:00
|
|
|
nva[i].name = (unsigned char *)":authority";
|
2016-03-03 01:24:27 -05:00
|
|
|
nva[i].namelen = strlen((char *)nva[i].name);
|
2014-01-31 10:51:24 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
nva[i].name = (unsigned char *)hdbuf;
|
2016-03-03 01:24:27 -05:00
|
|
|
nva[i].namelen = (size_t)(end - hdbuf);
|
2014-01-31 10:51:24 -05:00
|
|
|
}
|
|
|
|
hdbuf = end + 1;
|
2016-03-03 01:24:27 -05:00
|
|
|
while(*hdbuf == ' ' || *hdbuf == '\t')
|
|
|
|
++hdbuf;
|
|
|
|
end = line_end;
|
2016-10-30 06:04:03 -04:00
|
|
|
|
|
|
|
switch(inspect_header((const char *)nva[i].name, nva[i].namelen, hdbuf,
|
|
|
|
end - hdbuf)) {
|
|
|
|
case HEADERINST_IGNORE:
|
|
|
|
/* skip header fields prohibited by HTTP/2 specification. */
|
|
|
|
--nheader;
|
|
|
|
continue;
|
|
|
|
case HEADERINST_TE_TRAILERS:
|
|
|
|
nva[i].value = (uint8_t*)"trailers";
|
|
|
|
nva[i].valuelen = sizeof("trailers") - 1;
|
|
|
|
break;
|
|
|
|
default:
|
2015-10-16 14:51:12 -04:00
|
|
|
nva[i].value = (unsigned char *)hdbuf;
|
2016-03-03 01:24:27 -05:00
|
|
|
nva[i].valuelen = (size_t)(end - hdbuf);
|
2014-02-14 08:02:44 -05:00
|
|
|
}
|
2016-10-30 06:04:03 -04:00
|
|
|
|
|
|
|
nva[i].flags = NGHTTP2_NV_FLAG_NONE;
|
|
|
|
if(HEADER_OVERFLOW(nva[i])) {
|
|
|
|
failf(conn->data, "Failed sending HTTP request: Header overflow");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
++i;
|
2014-01-31 10:51:24 -05:00
|
|
|
}
|
|
|
|
|
2014-08-07 10:09:25 -04:00
|
|
|
/* :authority must come before non-pseudo header fields */
|
|
|
|
if(authority_idx != 0 && authority_idx != AUTHORITY_DST_IDX) {
|
|
|
|
nghttp2_nv authority = nva[authority_idx];
|
|
|
|
for(i = authority_idx; i > AUTHORITY_DST_IDX; --i) {
|
|
|
|
nva[i] = nva[i - 1];
|
|
|
|
}
|
|
|
|
nva[i] = authority;
|
|
|
|
}
|
|
|
|
|
2016-03-03 01:24:27 -05:00
|
|
|
/* Warn stream may be rejected if cumulative length of headers is too large.
|
|
|
|
It appears nghttp2 will not send a header frame larger than 64KB. */
|
2017-01-11 06:15:37 -05:00
|
|
|
#define MAX_ACC 60000 /* <64KB to account for some overhead */
|
2016-03-03 01:24:27 -05:00
|
|
|
{
|
|
|
|
size_t acc = 0;
|
|
|
|
|
|
|
|
for(i = 0; i < nheader; ++i) {
|
2017-01-11 06:15:37 -05:00
|
|
|
acc += nva[i].namelen + nva[i].valuelen;
|
2016-09-15 08:12:53 -04:00
|
|
|
|
|
|
|
DEBUGF(infof(conn->data, "h2 header: %.*s:%.*s\n",
|
|
|
|
nva[i].namelen, nva[i].name,
|
|
|
|
nva[i].valuelen, nva[i].value));
|
2016-03-03 01:24:27 -05:00
|
|
|
}
|
|
|
|
|
2017-01-11 06:15:37 -05:00
|
|
|
if(acc > MAX_ACC) {
|
2016-03-03 01:24:27 -05:00
|
|
|
infof(conn->data, "http2_send: Warning: The cumulative length of all "
|
2017-01-11 06:15:37 -05:00
|
|
|
"headers exceeds %zu bytes and that could cause the "
|
|
|
|
"stream to be rejected.\n", MAX_ACC);
|
2016-03-03 01:24:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-13 10:07:05 -04:00
|
|
|
h2_pri_spec(conn->data, &pri_spec);
|
|
|
|
|
2014-02-14 08:02:44 -05:00
|
|
|
switch(conn->data->set.httpreq) {
|
|
|
|
case HTTPREQ_POST:
|
|
|
|
case HTTPREQ_POST_FORM:
|
|
|
|
case HTTPREQ_PUT:
|
2016-09-05 02:51:06 -04:00
|
|
|
if(conn->data->state.infilesize != -1)
|
|
|
|
stream->upload_left = conn->data->state.infilesize;
|
|
|
|
else
|
|
|
|
/* data sending without specifying the data amount up front */
|
|
|
|
stream->upload_left = -1; /* unknown, but not zero */
|
|
|
|
|
2014-02-14 08:02:44 -05:00
|
|
|
data_prd.read_callback = data_source_read_callback;
|
|
|
|
data_prd.source.ptr = NULL;
|
2015-09-13 10:07:05 -04:00
|
|
|
stream_id = nghttp2_submit_request(h2, &pri_spec, nva, nheader,
|
2015-08-10 20:26:36 -04:00
|
|
|
&data_prd, conn->data);
|
2014-02-14 08:02:44 -05:00
|
|
|
break;
|
|
|
|
default:
|
2015-09-13 10:07:05 -04:00
|
|
|
stream_id = nghttp2_submit_request(h2, &pri_spec, nva, nheader,
|
2015-08-10 20:26:36 -04:00
|
|
|
NULL, conn->data);
|
2014-02-14 08:02:44 -05:00
|
|
|
}
|
2014-01-31 10:51:24 -05:00
|
|
|
|
2015-07-23 05:51:53 -04:00
|
|
|
Curl_safefree(nva);
|
2014-01-31 10:51:24 -05:00
|
|
|
|
2014-05-07 11:20:05 -04:00
|
|
|
if(stream_id < 0) {
|
2015-04-27 08:46:20 -04:00
|
|
|
DEBUGF(infof(conn->data, "http2_send() send error\n"));
|
2014-01-31 10:51:24 -05:00
|
|
|
*err = CURLE_SEND_ERROR;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-04-28 07:10:04 -04:00
|
|
|
infof(conn->data, "Using Stream ID: %x (easy handle %p)\n",
|
|
|
|
stream_id, conn->data);
|
2015-04-27 07:54:47 -04:00
|
|
|
stream->stream_id = stream_id;
|
2014-05-07 11:20:05 -04:00
|
|
|
|
2015-09-13 10:07:05 -04:00
|
|
|
/* this does not call h2_session_send() since there can not have been any
|
|
|
|
* priority upodate since the nghttp2_submit_request() call above */
|
2015-05-07 10:44:00 -04:00
|
|
|
rv = nghttp2_session_send(h2);
|
2014-01-31 10:51:24 -05:00
|
|
|
|
|
|
|
if(rv != 0) {
|
|
|
|
*err = CURLE_SEND_ERROR;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-02-23 09:33:04 -05:00
|
|
|
if(should_close_session(httpc)) {
|
2016-02-22 07:20:38 -05:00
|
|
|
DEBUGF(infof(conn->data, "http2_send: nothing to do in this session\n"));
|
|
|
|
*err = CURLE_HTTP2;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-04-27 07:54:47 -04:00
|
|
|
if(stream->stream_id != -1) {
|
2014-02-14 08:02:44 -05:00
|
|
|
/* If whole HEADERS frame was sent off to the underlying socket,
|
|
|
|
the nghttp2 library calls data_source_read_callback. But only
|
|
|
|
it found that no data available, so it deferred the DATA
|
|
|
|
transmission. Which means that nghttp2_session_want_write()
|
|
|
|
returns 0 on http2_perform_getsock(), which results that no
|
|
|
|
writable socket check is performed. To workaround this, we
|
|
|
|
issue nghttp2_session_resume_data() here to bring back DATA
|
|
|
|
transmission from deferred state. */
|
2015-05-07 10:44:00 -04:00
|
|
|
nghttp2_session_resume_data(h2, stream->stream_id);
|
2014-02-14 08:02:44 -05:00
|
|
|
}
|
2014-01-31 10:51:24 -05:00
|
|
|
|
|
|
|
return len;
|
2015-07-23 05:51:53 -04:00
|
|
|
|
2015-10-16 14:51:12 -04:00
|
|
|
fail:
|
2015-07-23 05:51:53 -04:00
|
|
|
free(nva);
|
|
|
|
*err = CURLE_SEND_ERROR;
|
|
|
|
return -1;
|
2013-09-18 16:43:13 -04:00
|
|
|
}
|
|
|
|
|
2014-06-13 18:11:01 -04:00
|
|
|
CURLcode Curl_http2_setup(struct connectdata *conn)
|
2013-09-12 07:51:04 -04:00
|
|
|
{
|
2015-03-23 05:25:18 -04:00
|
|
|
CURLcode result;
|
2014-01-30 08:26:00 -05:00
|
|
|
struct http_conn *httpc = &conn->proto.httpc;
|
2015-04-27 07:54:47 -04:00
|
|
|
struct HTTP *stream = conn->data->req.protop;
|
|
|
|
|
|
|
|
stream->stream_id = -1;
|
2015-04-27 06:52:07 -04:00
|
|
|
|
2015-05-08 09:53:18 -04:00
|
|
|
if(!stream->header_recvbuf)
|
|
|
|
stream->header_recvbuf = Curl_add_buffer_init();
|
|
|
|
|
2015-04-27 06:52:07 -04:00
|
|
|
if((conn->handler == &Curl_handler_http2_ssl) ||
|
|
|
|
(conn->handler == &Curl_handler_http2))
|
|
|
|
return CURLE_OK; /* already done */
|
|
|
|
|
2014-02-14 08:02:44 -05:00
|
|
|
if(conn->handler->flags & PROTOPT_SSL)
|
|
|
|
conn->handler = &Curl_handler_http2_ssl;
|
|
|
|
else
|
|
|
|
conn->handler = &Curl_handler_http2;
|
|
|
|
|
2015-03-23 05:25:18 -04:00
|
|
|
result = Curl_http2_init(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2015-04-27 06:52:07 -04:00
|
|
|
infof(conn->data, "Using HTTP2, server supports multi-use\n");
|
2015-05-18 08:01:38 -04:00
|
|
|
stream->upload_left = 0;
|
|
|
|
stream->upload_mem = NULL;
|
|
|
|
stream->upload_len = 0;
|
2014-02-04 08:54:42 -05:00
|
|
|
|
2015-05-07 04:22:57 -04:00
|
|
|
httpc->inbuflen = 0;
|
|
|
|
httpc->nread_inbuf = 0;
|
|
|
|
|
2015-05-07 11:52:48 -04:00
|
|
|
httpc->pause_stream_id = 0;
|
2016-02-23 09:33:04 -05:00
|
|
|
httpc->drain_total = 0;
|
2015-05-07 11:52:48 -04:00
|
|
|
|
2015-04-30 09:25:06 -04:00
|
|
|
conn->bits.multiplex = TRUE; /* at least potentially multiplexed */
|
2014-02-05 03:21:16 -05:00
|
|
|
conn->httpversion = 20;
|
2015-05-18 02:56:29 -04:00
|
|
|
conn->bundle->multiuse = BUNDLE_MULTIPLEX;
|
2014-02-04 09:07:08 -05:00
|
|
|
|
2015-05-11 05:41:10 -04:00
|
|
|
infof(conn->data, "Connection state changed (HTTP/2 confirmed)\n");
|
|
|
|
Curl_multi_connchanged(conn->data->multi);
|
|
|
|
|
2015-03-23 05:25:18 -04:00
|
|
|
return CURLE_OK;
|
2014-05-20 10:50:24 -04:00
|
|
|
}
|
2014-01-31 10:51:24 -05:00
|
|
|
|
2014-11-12 12:07:24 -05:00
|
|
|
CURLcode Curl_http2_switched(struct connectdata *conn,
|
|
|
|
const char *mem, size_t nread)
|
2014-05-20 10:50:24 -04:00
|
|
|
{
|
2014-12-14 08:09:29 -05:00
|
|
|
CURLcode result;
|
2014-05-20 10:50:24 -04:00
|
|
|
struct http_conn *httpc = &conn->proto.httpc;
|
|
|
|
int rv;
|
2015-05-25 11:10:05 -04:00
|
|
|
ssize_t nproc;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2015-04-27 07:54:47 -04:00
|
|
|
struct HTTP *stream = conn->data->req.protop;
|
2014-05-20 10:50:24 -04:00
|
|
|
|
2015-03-19 08:44:18 -04:00
|
|
|
result = Curl_http2_setup(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2014-05-20 10:50:24 -04:00
|
|
|
httpc->recv_underlying = (recving)conn->recv[FIRSTSOCKET];
|
|
|
|
httpc->send_underlying = (sending)conn->send[FIRSTSOCKET];
|
|
|
|
conn->recv[FIRSTSOCKET] = http2_recv;
|
|
|
|
conn->send[FIRSTSOCKET] = http2_send;
|
|
|
|
|
2014-01-31 10:51:24 -05:00
|
|
|
if(conn->data->req.upgr101 == UPGR101_RECEIVED) {
|
2014-02-02 07:31:13 -05:00
|
|
|
/* stream 1 is opened implicitly on upgrade */
|
2015-04-27 07:54:47 -04:00
|
|
|
stream->stream_id = 1;
|
2014-01-31 10:51:24 -05:00
|
|
|
/* queue SETTINGS frame (again) */
|
|
|
|
rv = nghttp2_session_upgrade(httpc->h2, httpc->binsettings,
|
|
|
|
httpc->binlen, NULL);
|
|
|
|
if(rv != 0) {
|
2014-07-23 03:23:56 -04:00
|
|
|
failf(data, "nghttp2_session_upgrade() failed: %s(%d)",
|
2014-01-31 10:51:24 -05:00
|
|
|
nghttp2_strerror(rv), rv);
|
2014-07-23 03:23:56 -04:00
|
|
|
return CURLE_HTTP2;
|
2014-01-31 10:51:24 -05:00
|
|
|
}
|
2015-05-21 12:21:59 -04:00
|
|
|
|
2015-08-10 20:26:36 -04:00
|
|
|
nghttp2_session_set_stream_user_data(httpc->h2,
|
|
|
|
stream->stream_id,
|
|
|
|
conn->data);
|
2014-01-31 10:51:24 -05:00
|
|
|
}
|
|
|
|
else {
|
2016-12-10 08:54:59 -05:00
|
|
|
populate_settings(conn, httpc);
|
|
|
|
|
2014-02-02 07:31:13 -05:00
|
|
|
/* stream ID is unknown at this point */
|
2015-04-27 07:54:47 -04:00
|
|
|
stream->stream_id = -1;
|
2016-12-10 08:54:59 -05:00
|
|
|
rv = nghttp2_submit_settings(httpc->h2, NGHTTP2_FLAG_NONE,
|
|
|
|
httpc->local_settings,
|
|
|
|
httpc->local_settings_num);
|
2014-01-31 10:51:24 -05:00
|
|
|
if(rv != 0) {
|
2014-07-23 03:23:56 -04:00
|
|
|
failf(data, "nghttp2_submit_settings() failed: %s(%d)",
|
2014-01-31 10:51:24 -05:00
|
|
|
nghttp2_strerror(rv), rv);
|
2014-07-23 03:23:56 -04:00
|
|
|
return CURLE_HTTP2;
|
2014-01-31 10:51:24 -05:00
|
|
|
}
|
|
|
|
}
|
2014-11-12 12:07:24 -05:00
|
|
|
|
2016-11-28 14:08:35 -05:00
|
|
|
#ifdef NGHTTP2_HAS_SET_LOCAL_WINDOW_SIZE
|
2016-11-16 02:55:30 -05:00
|
|
|
rv = nghttp2_session_set_local_window_size(httpc->h2, NGHTTP2_FLAG_NONE, 0,
|
|
|
|
HTTP2_HUGE_WINDOW_SIZE);
|
|
|
|
if(rv != 0) {
|
|
|
|
failf(data, "nghttp2_session_set_local_window_size() failed: %s(%d)",
|
|
|
|
nghttp2_strerror(rv), rv);
|
|
|
|
return CURLE_HTTP2;
|
|
|
|
}
|
2016-11-28 14:08:35 -05:00
|
|
|
#endif
|
2016-11-16 02:55:30 -05:00
|
|
|
|
2015-05-25 11:10:05 -04:00
|
|
|
/* we are going to copy mem to httpc->inbuf. This is required since
|
|
|
|
mem is part of buffer pointed by stream->mem, and callbacks
|
|
|
|
called by nghttp2_session_mem_recv() will write stream specific
|
|
|
|
data into stream->mem, overwriting data already there. */
|
|
|
|
if(H2_BUFSIZE < nread) {
|
|
|
|
failf(data, "connection buffer size is too small to store data following "
|
|
|
|
"HTTP Upgrade response header: buflen=%zu, datalen=%zu",
|
|
|
|
H2_BUFSIZE, nread);
|
|
|
|
return CURLE_HTTP2;
|
|
|
|
}
|
|
|
|
|
|
|
|
infof(conn->data, "Copying HTTP/2 data in stream buffer to connection buffer"
|
|
|
|
" after upgrade: len=%zu\n",
|
|
|
|
nread);
|
2014-11-12 12:07:24 -05:00
|
|
|
|
2016-11-16 02:16:10 -05:00
|
|
|
if(nread)
|
|
|
|
memcpy(httpc->inbuf, mem, nread);
|
2015-05-25 11:10:05 -04:00
|
|
|
httpc->inbuflen = nread;
|
|
|
|
|
|
|
|
nproc = nghttp2_session_mem_recv(httpc->h2, (const uint8_t *)httpc->inbuf,
|
|
|
|
httpc->inbuflen);
|
|
|
|
|
|
|
|
if(nghttp2_is_fatal((int)nproc)) {
|
2014-11-12 12:07:24 -05:00
|
|
|
failf(data, "nghttp2_session_mem_recv() failed: %s(%d)",
|
2015-05-25 11:10:05 -04:00
|
|
|
nghttp2_strerror((int)nproc), (int)nproc);
|
2014-11-12 12:07:24 -05:00
|
|
|
return CURLE_HTTP2;
|
|
|
|
}
|
|
|
|
|
2015-05-25 11:10:05 -04:00
|
|
|
DEBUGF(infof(data, "nghttp2_session_mem_recv() returns %zd\n", nproc));
|
|
|
|
|
|
|
|
if((ssize_t)nread == nproc) {
|
|
|
|
httpc->inbuflen = 0;
|
|
|
|
httpc->nread_inbuf = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
httpc->nread_inbuf += nproc;
|
|
|
|
}
|
|
|
|
|
2015-04-01 11:28:58 -04:00
|
|
|
/* Try to send some frames since we may read SETTINGS already. */
|
2015-09-13 10:07:05 -04:00
|
|
|
rv = h2_session_send(data, httpc->h2);
|
2015-04-01 11:28:58 -04:00
|
|
|
|
|
|
|
if(rv != 0) {
|
|
|
|
failf(data, "nghttp2_session_send() failed: %s(%d)",
|
|
|
|
nghttp2_strerror(rv), rv);
|
|
|
|
return CURLE_HTTP2;
|
|
|
|
}
|
|
|
|
|
2016-02-23 09:33:04 -05:00
|
|
|
if(should_close_session(httpc)) {
|
2016-02-22 07:20:38 -05:00
|
|
|
DEBUGF(infof(data,
|
|
|
|
"nghttp2_session_send(): nothing to do in this session\n"));
|
|
|
|
return CURLE_HTTP2;
|
|
|
|
}
|
|
|
|
|
2014-07-23 03:23:56 -04:00
|
|
|
return CURLE_OK;
|
2013-09-12 07:51:04 -04:00
|
|
|
}
|
|
|
|
|
2016-11-14 18:32:00 -05:00
|
|
|
void Curl_http2_add_child(struct Curl_easy *parent, struct Curl_easy *child,
|
|
|
|
bool exclusive)
|
|
|
|
{
|
2017-06-05 05:57:47 -04:00
|
|
|
if(parent) {
|
|
|
|
struct Curl_http2_dep **tail;
|
|
|
|
struct Curl_http2_dep *dep = calloc(1, sizeof(struct Curl_http2_dep));
|
|
|
|
dep->data = child;
|
|
|
|
|
|
|
|
if(parent->set.stream_dependents && exclusive) {
|
|
|
|
struct Curl_http2_dep *node = parent->set.stream_dependents;
|
|
|
|
while(node) {
|
|
|
|
node->data->set.stream_depends_on = child;
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
tail = &child->set.stream_dependents;
|
|
|
|
while(*tail)
|
|
|
|
tail = &(*tail)->next;
|
|
|
|
|
|
|
|
DEBUGASSERT(!*tail);
|
|
|
|
*tail = parent->set.stream_dependents;
|
|
|
|
parent->set.stream_dependents = 0;
|
2016-11-14 18:32:00 -05:00
|
|
|
}
|
|
|
|
|
2017-06-05 05:57:47 -04:00
|
|
|
tail = &parent->set.stream_dependents;
|
|
|
|
while(*tail) {
|
|
|
|
(*tail)->data->set.stream_depends_e = FALSE;
|
2016-11-14 18:32:00 -05:00
|
|
|
tail = &(*tail)->next;
|
2017-06-05 05:57:47 -04:00
|
|
|
}
|
2016-11-14 18:32:00 -05:00
|
|
|
|
|
|
|
DEBUGASSERT(!*tail);
|
2017-06-05 05:57:47 -04:00
|
|
|
*tail = dep;
|
2016-11-14 18:32:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
child->set.stream_depends_on = parent;
|
|
|
|
child->set.stream_depends_e = exclusive;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Curl_http2_remove_child(struct Curl_easy *parent, struct Curl_easy *child)
|
|
|
|
{
|
|
|
|
struct Curl_http2_dep *last = 0;
|
|
|
|
struct Curl_http2_dep *data = parent->set.stream_dependents;
|
|
|
|
DEBUGASSERT(child->set.stream_depends_on == parent);
|
|
|
|
|
|
|
|
while(data && data->data != child) {
|
|
|
|
last = data;
|
|
|
|
data = data->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUGASSERT(data);
|
|
|
|
|
|
|
|
if(data) {
|
|
|
|
if(last) {
|
|
|
|
last->next = data->next;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
parent->set.stream_dependents = data->next;
|
|
|
|
}
|
|
|
|
free(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
child->set.stream_depends_on = 0;
|
|
|
|
child->set.stream_depends_e = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Curl_http2_cleanup_dependencies(struct Curl_easy *data)
|
|
|
|
{
|
|
|
|
while(data->set.stream_dependents) {
|
|
|
|
struct Curl_easy *tmp = data->set.stream_dependents->data;
|
|
|
|
Curl_http2_remove_child(data, tmp);
|
|
|
|
if(data->set.stream_depends_on)
|
|
|
|
Curl_http2_add_child(data->set.stream_depends_on, tmp, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(data->set.stream_depends_on)
|
|
|
|
Curl_http2_remove_child(data->set.stream_depends_on, data);
|
|
|
|
}
|
|
|
|
|
2015-07-21 07:55:39 -04:00
|
|
|
#else /* !USE_NGHTTP2 */
|
|
|
|
|
|
|
|
/* Satisfy external references even if http2 is not compiled in. */
|
|
|
|
|
|
|
|
#define CURL_DISABLE_TYPECHECK
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
char *curl_pushheader_bynum(struct curl_pushheaders *h, size_t num)
|
|
|
|
{
|
|
|
|
(void) h;
|
|
|
|
(void) num;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *curl_pushheader_byname(struct curl_pushheaders *h, const char *header)
|
|
|
|
{
|
|
|
|
(void) h;
|
|
|
|
(void) header;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* USE_NGHTTP2 */
|