mirror of
https://github.com/curl/curl.git
synced 2024-12-15 06:40:09 +08:00
71b7e01610
Refactoring of connection setup and happy eyeballing. Move nghttp2. ngtcp2, quiche and msh3 into connection filters. - eyeballing cfilter that uses sub-filters for performing parallel connects - socket cfilter for all transport types, including QUIC - QUIC implementations in cfilter, can now participate in eyeballing - connection setup is more dynamic in order to adapt to what filter did really connect. Relevant to see if a SSL filter needs to be added or if SSL has already been provided - HTTP/3 test cases similar to HTTP/2 - multiuse of parallel transfers for HTTP/3, tested for ngtcp2 and quiche - Fix for data attach/detach in VTLS filters that could lead to crashes during parallel transfers. - Eliminating setup() methods in cfilters, no longer needed. - Improving Curl_conn_is_alive() to replace Curl_connalive() and integrated ssl alive checks into cfilter. - Adding CF_CNTRL_CONN_INFO_UPDATE to tell filters to update connection into and persist it at the easy handle. - Several more cfilter related cleanups and moves: - stream_weigth and dependency info is now wrapped in struct Curl_data_priority - Curl_data_priority members depend is available in HTTP2|HTTP3 - Curl_data_priority members depend on NGHTTP2 support - handling init/reset/cleanup of priority part of url.c - data->state.priority same struct, but shallow copy for compares only - PROTOPT_STREAM has been removed - Curl_conn_is_mulitplex() now available to check on capability - Adding query method to connection filters. - ngtcp2+quiche: implementing query for max concurrent transfers. - Adding is_alive and keep_alive cfilter methods. Adding DATA_SETUP event. - setting keepalive timestamp on connect - DATA_SETUP is called after the connection has been completely setup (but may not connected yet) to allow filters to initialize data members they use. - there is no socket to be had with msh3, it is unclear how select shall work - manual test via "curl --http3 https://curl.se" fail with "empty reply from server". - Various socket/conn related cleanups: - Curl_socket is now Curl_socket_open and in cf-socket.c - Curl_closesocket is now Curl_socket_close and in cf-socket.c - Curl_ssl_use has been replaced with Cur_conn_is_ssl - Curl_conn_tcp_accepted_set has been split into Curl_conn_tcp_listen_set and Curl_conn_tcp_accepted_set with a clearer purpose Closes #10141
2386 lines
71 KiB
C
2386 lines
71 KiB
C
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.se/docs/copyright.html.
|
|
*
|
|
* 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.
|
|
*
|
|
* SPDX-License-Identifier: curl
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include "curl_setup.h"
|
|
|
|
#ifdef USE_NGHTTP2
|
|
#include <nghttp2/nghttp2.h>
|
|
#include "urldata.h"
|
|
#include "http2.h"
|
|
#include "http.h"
|
|
#include "sendf.h"
|
|
#include "select.h"
|
|
#include "curl_base64.h"
|
|
#include "strcase.h"
|
|
#include "multiif.h"
|
|
#include "url.h"
|
|
#include "cfilters.h"
|
|
#include "connect.h"
|
|
#include "strtoofft.h"
|
|
#include "strdup.h"
|
|
#include "transfer.h"
|
|
#include "dynbuf.h"
|
|
#include "h2h3.h"
|
|
#include "headers.h"
|
|
/* The last 3 #include files should be in this order */
|
|
#include "curl_printf.h"
|
|
#include "curl_memory.h"
|
|
#include "memdebug.h"
|
|
|
|
#define H2_BUFSIZE 32768
|
|
|
|
#if (NGHTTP2_VERSION_NUM < 0x010c00)
|
|
#error too old nghttp2 version, upgrade!
|
|
#endif
|
|
|
|
#ifdef CURL_DISABLE_VERBOSE_STRINGS
|
|
#define nghttp2_session_callbacks_set_error_callback(x,y)
|
|
#endif
|
|
|
|
#if (NGHTTP2_VERSION_NUM >= 0x010c00)
|
|
#define NGHTTP2_HAS_SET_LOCAL_WINDOW_SIZE 1
|
|
#endif
|
|
|
|
#define HTTP2_HUGE_WINDOW_SIZE (32 * 1024 * 1024) /* 32 MB */
|
|
|
|
#define DEBUG_HTTP2
|
|
#ifdef DEBUG_HTTP2
|
|
#define H2BUGF(x) x
|
|
#else
|
|
#define H2BUGF(x) do { } while(0)
|
|
#endif
|
|
|
|
|
|
#define H2_SETTINGS_IV_LEN 3
|
|
#define H2_BINSETTINGS_LEN 80
|
|
|
|
static int populate_settings(nghttp2_settings_entry *iv,
|
|
struct Curl_easy *data)
|
|
{
|
|
iv[0].settings_id = NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS;
|
|
iv[0].value = Curl_multi_max_concurrent_streams(data->multi);
|
|
|
|
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 = data->multi->push_cb != NULL;
|
|
|
|
return 3;
|
|
}
|
|
|
|
static size_t populate_binsettings(uint8_t *binsettings,
|
|
struct Curl_easy *data)
|
|
{
|
|
nghttp2_settings_entry iv[H2_SETTINGS_IV_LEN];
|
|
int ivlen;
|
|
|
|
ivlen = populate_settings(iv, data);
|
|
/* this returns number of bytes it wrote */
|
|
return nghttp2_pack_settings_payload(binsettings, H2_BINSETTINGS_LEN,
|
|
iv, ivlen);
|
|
}
|
|
|
|
struct h2_cf_ctx {
|
|
nghttp2_session *h2;
|
|
uint32_t max_concurrent_streams;
|
|
bool enable_push;
|
|
|
|
/* We associate the connectdata struct with the connection, but we need to
|
|
make sure we can identify the current "driving" transfer. This is a
|
|
work-around for the lack of nghttp2_session_set_user_data() in older
|
|
nghttp2 versions that we want to support. (Added in 1.31.0) */
|
|
struct Curl_easy *trnsfr;
|
|
|
|
char *inbuf; /* buffer to receive data from underlying socket */
|
|
size_t inbuflen; /* number of bytes filled in inbuf */
|
|
size_t nread_inbuf; /* number of bytes read from in inbuf */
|
|
|
|
/* We need separate buffer for transmission and reception because we
|
|
may call nghttp2_session_send() after the
|
|
nghttp2_session_mem_recv() but mem buffer is still not full. In
|
|
this case, we wrongly sends the content of mem buffer if we share
|
|
them for both cases. */
|
|
int32_t pause_stream_id; /* stream ID which paused
|
|
nghttp2_session_mem_recv */
|
|
size_t drain_total; /* sum of all stream's UrlState.drain */
|
|
};
|
|
|
|
static void h2_cf_ctx_clear(struct h2_cf_ctx *ctx)
|
|
{
|
|
if(ctx->h2) {
|
|
nghttp2_session_del(ctx->h2);
|
|
}
|
|
free(ctx->inbuf);
|
|
memset(ctx, 0, sizeof(*ctx));
|
|
}
|
|
|
|
static void h2_cf_ctx_free(struct h2_cf_ctx *ctx)
|
|
{
|
|
if(ctx) {
|
|
h2_cf_ctx_clear(ctx);
|
|
free(ctx);
|
|
}
|
|
}
|
|
|
|
static int h2_client_new(struct Curl_cfilter *cf,
|
|
nghttp2_session_callbacks *cbs)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
|
|
#if NGHTTP2_VERSION_NUM < 0x013200
|
|
/* before 1.50.0 */
|
|
return nghttp2_session_client_new(&ctx->h2, cbs, cf);
|
|
#else
|
|
nghttp2_option *o;
|
|
int rc = nghttp2_option_new(&o);
|
|
if(rc)
|
|
return rc;
|
|
/* turn off RFC 9113 leading and trailing white spaces validation against
|
|
HTTP field value. */
|
|
nghttp2_option_set_no_rfc9113_leading_and_trailing_ws_validation(o, 1);
|
|
rc = nghttp2_session_client_new2(&ctx->h2, cbs, cf, o);
|
|
nghttp2_option_del(o);
|
|
return rc;
|
|
#endif
|
|
}
|
|
|
|
static ssize_t send_callback(nghttp2_session *h2,
|
|
const uint8_t *mem, size_t length, int flags,
|
|
void *userp);
|
|
static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame,
|
|
void *userp);
|
|
static int on_data_chunk_recv(nghttp2_session *session, uint8_t flags,
|
|
int32_t stream_id,
|
|
const uint8_t *mem, size_t len, void *userp);
|
|
static int on_stream_close(nghttp2_session *session, int32_t stream_id,
|
|
uint32_t error_code, void *userp);
|
|
static int on_begin_headers(nghttp2_session *session,
|
|
const nghttp2_frame *frame, void *userp);
|
|
static int on_header(nghttp2_session *session, const nghttp2_frame *frame,
|
|
const uint8_t *name, size_t namelen,
|
|
const uint8_t *value, size_t valuelen,
|
|
uint8_t flags,
|
|
void *userp);
|
|
static int error_callback(nghttp2_session *session, const char *msg,
|
|
size_t len, void *userp);
|
|
|
|
/*
|
|
* multi_connchanged() is called to tell that there is a connection in
|
|
* this multi handle that has changed state (multiplexing become possible, the
|
|
* number of allowed streams changed or similar), and a subsequent use of this
|
|
* multi handle should move CONNECT_PEND handles back to CONNECT to have them
|
|
* retry.
|
|
*/
|
|
static void multi_connchanged(struct Curl_multi *multi)
|
|
{
|
|
multi->recheckstate = TRUE;
|
|
}
|
|
|
|
static CURLcode http2_data_setup(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data)
|
|
{
|
|
struct HTTP *stream = data->req.p.http;
|
|
|
|
(void)cf;
|
|
DEBUGASSERT(stream);
|
|
DEBUGASSERT(data->state.buffer);
|
|
|
|
stream->stream_id = -1;
|
|
|
|
Curl_dyn_init(&stream->header_recvbuf, DYN_H2_HEADERS);
|
|
Curl_dyn_init(&stream->trailer_recvbuf, DYN_H2_TRAILERS);
|
|
|
|
stream->bodystarted = FALSE;
|
|
stream->status_code = -1;
|
|
stream->pausedata = NULL;
|
|
stream->pauselen = 0;
|
|
stream->closed = FALSE;
|
|
stream->close_handled = FALSE;
|
|
stream->memlen = 0;
|
|
stream->error = NGHTTP2_NO_ERROR;
|
|
stream->upload_left = 0;
|
|
stream->upload_mem = NULL;
|
|
stream->upload_len = 0;
|
|
stream->mem = data->state.buffer;
|
|
stream->len = data->set.buffer_size;
|
|
|
|
return CURLE_OK;
|
|
}
|
|
|
|
/*
|
|
* Initialize the cfilter context
|
|
*/
|
|
static CURLcode h2_cf_ctx_init(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
bool via_h1_upgrade)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
struct HTTP *stream = data->req.p.http;
|
|
CURLcode result = CURLE_OUT_OF_MEMORY;
|
|
int rc;
|
|
nghttp2_session_callbacks *cbs = NULL;
|
|
|
|
DEBUGASSERT(!ctx->h2);
|
|
ctx->inbuf = malloc(H2_BUFSIZE);
|
|
if(!ctx->inbuf)
|
|
goto out;
|
|
|
|
rc = nghttp2_session_callbacks_new(&cbs);
|
|
if(rc) {
|
|
failf(data, "Couldn't initialize nghttp2 callbacks");
|
|
goto out;
|
|
}
|
|
|
|
nghttp2_session_callbacks_set_send_callback(cbs, send_callback);
|
|
nghttp2_session_callbacks_set_on_frame_recv_callback(cbs, on_frame_recv);
|
|
nghttp2_session_callbacks_set_on_data_chunk_recv_callback(
|
|
cbs, on_data_chunk_recv);
|
|
nghttp2_session_callbacks_set_on_stream_close_callback(cbs, on_stream_close);
|
|
nghttp2_session_callbacks_set_on_begin_headers_callback(
|
|
cbs, on_begin_headers);
|
|
nghttp2_session_callbacks_set_on_header_callback(cbs, on_header);
|
|
nghttp2_session_callbacks_set_error_callback(cbs, error_callback);
|
|
|
|
/* The nghttp2 session is not yet setup, do it */
|
|
rc = h2_client_new(cf, cbs);
|
|
if(rc) {
|
|
failf(data, "Couldn't initialize nghttp2");
|
|
goto out;
|
|
}
|
|
ctx->max_concurrent_streams = DEFAULT_MAX_CONCURRENT_STREAMS;
|
|
|
|
result = http2_data_setup(cf, data);
|
|
if(result)
|
|
goto out;
|
|
|
|
if(via_h1_upgrade) {
|
|
/* HTTP/1.1 Upgrade issued. H2 Settings have already been submitted
|
|
* in the H1 request and we upgrade from there. This stream
|
|
* is opened implicitly as #1. */
|
|
uint8_t binsettings[H2_BINSETTINGS_LEN];
|
|
size_t binlen; /* length of the binsettings data */
|
|
|
|
binlen = populate_binsettings(binsettings, data);
|
|
|
|
stream->stream_id = 1;
|
|
/* queue SETTINGS frame (again) */
|
|
rc = nghttp2_session_upgrade2(ctx->h2, binsettings, binlen,
|
|
data->state.httpreq == HTTPREQ_HEAD,
|
|
NULL);
|
|
if(rc) {
|
|
failf(data, "nghttp2_session_upgrade2() failed: %s(%d)",
|
|
nghttp2_strerror(rc), rc);
|
|
result = CURLE_HTTP2;
|
|
goto out;
|
|
}
|
|
|
|
rc = nghttp2_session_set_stream_user_data(ctx->h2, stream->stream_id,
|
|
data);
|
|
if(rc) {
|
|
infof(data, "http/2: failed to set user_data for stream %u",
|
|
stream->stream_id);
|
|
DEBUGASSERT(0);
|
|
}
|
|
}
|
|
else {
|
|
nghttp2_settings_entry iv[H2_SETTINGS_IV_LEN];
|
|
int ivlen;
|
|
|
|
/* H2 Settings need to be submitted. Stream is not open yet. */
|
|
DEBUGASSERT(stream->stream_id == -1);
|
|
|
|
ivlen = populate_settings(iv, data);
|
|
rc = nghttp2_submit_settings(ctx->h2, NGHTTP2_FLAG_NONE,
|
|
iv, ivlen);
|
|
if(rc) {
|
|
failf(data, "nghttp2_submit_settings() failed: %s(%d)",
|
|
nghttp2_strerror(rc), rc);
|
|
result = CURLE_HTTP2;
|
|
goto out;
|
|
}
|
|
}
|
|
|
|
rc = nghttp2_session_set_local_window_size(ctx->h2, NGHTTP2_FLAG_NONE, 0,
|
|
HTTP2_HUGE_WINDOW_SIZE);
|
|
if(rc) {
|
|
failf(data, "nghttp2_session_set_local_window_size() failed: %s(%d)",
|
|
nghttp2_strerror(rc), rc);
|
|
result = CURLE_HTTP2;
|
|
goto out;
|
|
}
|
|
|
|
/* all set, traffic will be send on connect */
|
|
result = CURLE_OK;
|
|
|
|
out:
|
|
if(cbs)
|
|
nghttp2_session_callbacks_del(cbs);
|
|
return result;
|
|
}
|
|
|
|
static int h2_session_send(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data);
|
|
static int h2_process_pending_input(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
CURLcode *err);
|
|
|
|
/*
|
|
* http2_stream_free() free HTTP2 stream related data
|
|
*/
|
|
static void http2_stream_free(struct HTTP *stream)
|
|
{
|
|
if(stream) {
|
|
Curl_dyn_free(&stream->header_recvbuf);
|
|
for(; stream->push_headers_used > 0; --stream->push_headers_used) {
|
|
free(stream->push_headers[stream->push_headers_used - 1]);
|
|
}
|
|
free(stream->push_headers);
|
|
stream->push_headers = NULL;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* The server may send us data at any point (e.g. PING frames). Therefore,
|
|
* we cannot assume that an HTTP/2 socket is dead just because it is readable.
|
|
*
|
|
* Check the lower filters first and, if successful, peek at the socket
|
|
* and distinguish between closed and data.
|
|
*/
|
|
static bool http2_connisdead(struct Curl_cfilter *cf, struct Curl_easy *data)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
int sval;
|
|
bool dead = TRUE;
|
|
|
|
if(!cf->next || !cf->next->cft->is_alive(cf->next, data))
|
|
return TRUE;
|
|
|
|
sval = SOCKET_READABLE(cf->conn->sock[cf->sockindex], 0);
|
|
if(sval == 0) {
|
|
/* timeout */
|
|
dead = FALSE;
|
|
}
|
|
else if(sval & CURL_CSELECT_ERR) {
|
|
/* socket is in an error state */
|
|
dead = TRUE;
|
|
}
|
|
else if(sval & CURL_CSELECT_IN) {
|
|
/* This happens before we've sent off a request and the connection is
|
|
not in use by any other transfer, there shouldn't be any data here,
|
|
only "protocol frames" */
|
|
CURLcode result;
|
|
ssize_t nread = -1;
|
|
|
|
nread = Curl_conn_cf_recv(cf->next, data,
|
|
ctx->inbuf, H2_BUFSIZE, &result);
|
|
if(nread != -1) {
|
|
H2BUGF(infof(data,
|
|
"%d bytes stray data read before trying h2 connection",
|
|
(int)nread));
|
|
ctx->nread_inbuf = 0;
|
|
ctx->inbuflen = nread;
|
|
if(h2_process_pending_input(cf, data, &result) < 0)
|
|
/* immediate error, considered dead */
|
|
dead = TRUE;
|
|
}
|
|
else
|
|
/* the read failed so let's say this is dead anyway */
|
|
dead = TRUE;
|
|
}
|
|
|
|
return dead;
|
|
}
|
|
|
|
/*
|
|
* Set the transfer that is currently using this HTTP/2 connection.
|
|
*/
|
|
static void set_transfer(struct h2_cf_ctx *ctx,
|
|
struct Curl_easy *data)
|
|
{
|
|
ctx->trnsfr = data;
|
|
}
|
|
|
|
/*
|
|
* Get the transfer that is currently using this HTTP/2 connection.
|
|
*/
|
|
static struct Curl_easy *get_transfer(struct h2_cf_ctx *ctx)
|
|
{
|
|
DEBUGASSERT(ctx && ctx->trnsfr);
|
|
return ctx->trnsfr;
|
|
}
|
|
|
|
static CURLcode http2_send_ping(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
int rc;
|
|
|
|
rc = nghttp2_submit_ping(ctx->h2, 0, ZERO_NULL);
|
|
if(rc) {
|
|
failf(data, "nghttp2_submit_ping() failed: %s(%d)",
|
|
nghttp2_strerror(rc), rc);
|
|
return CURLE_HTTP2;
|
|
}
|
|
|
|
set_transfer(ctx, data); /* set the transfer */
|
|
rc = nghttp2_session_send(ctx->h2);
|
|
if(rc) {
|
|
failf(data, "nghttp2_session_send() failed: %s(%d)",
|
|
nghttp2_strerror(rc), rc);
|
|
return CURLE_SEND_ERROR;
|
|
}
|
|
return CURLE_OK;
|
|
}
|
|
|
|
/*
|
|
* Store nghttp2 version info in this buffer.
|
|
*/
|
|
void Curl_http2_ver(char *p, size_t len)
|
|
{
|
|
nghttp2_info *h2 = nghttp2_version(0);
|
|
(void)msnprintf(p, len, "nghttp2/%s", h2->version_str);
|
|
}
|
|
|
|
/*
|
|
* 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 *buf, size_t blen, int flags,
|
|
void *userp)
|
|
{
|
|
struct Curl_cfilter *cf = userp;
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
struct Curl_easy *data = get_transfer(ctx);
|
|
ssize_t written;
|
|
CURLcode result = CURLE_OK;
|
|
|
|
(void)h2;
|
|
(void)flags;
|
|
|
|
written = Curl_conn_cf_send(cf->next, data, buf, blen, &result);
|
|
if(result == CURLE_AGAIN) {
|
|
return NGHTTP2_ERR_WOULDBLOCK;
|
|
}
|
|
|
|
if(written == -1) {
|
|
failf(data, "Failed sending HTTP2 data");
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
}
|
|
|
|
if(!written)
|
|
return NGHTTP2_ERR_WOULDBLOCK;
|
|
|
|
return written;
|
|
}
|
|
|
|
|
|
/* 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 {
|
|
struct Curl_easy *data;
|
|
const nghttp2_push_promise *frame;
|
|
};
|
|
|
|
/*
|
|
* push header access function. Only to be used from within the push callback
|
|
*/
|
|
char *curl_pushheader_bynum(struct curl_pushheaders *h, size_t num)
|
|
{
|
|
/* 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;
|
|
else {
|
|
struct HTTP *stream = h->data->req.p.http;
|
|
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
|
|
*/
|
|
char *curl_pushheader_byname(struct curl_pushheaders *h, const char *header)
|
|
{
|
|
/* 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] ||
|
|
!strcmp(header, ":") || strchr(header + 1, ':'))
|
|
return NULL;
|
|
else {
|
|
struct HTTP *stream = h->data->req.p.http;
|
|
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)) {
|
|
/* sub-match, make sure that it is followed by a colon */
|
|
if(stream->push_headers[i][len] != ':')
|
|
continue;
|
|
return &stream->push_headers[i][len + 1];
|
|
}
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* This specific transfer on this connection has been "drained".
|
|
*/
|
|
static void drained_transfer(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
|
|
DEBUGASSERT(ctx->drain_total >= data->state.drain);
|
|
ctx->drain_total -= data->state.drain;
|
|
data->state.drain = 0;
|
|
}
|
|
|
|
/*
|
|
* Mark this transfer to get "drained".
|
|
*/
|
|
static void drain_this(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
|
|
data->state.drain++;
|
|
ctx->drain_total++;
|
|
DEBUGASSERT(ctx->drain_total >= data->state.drain);
|
|
}
|
|
|
|
static struct Curl_easy *h2_duphandle(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data)
|
|
{
|
|
struct Curl_easy *second = curl_easy_duphandle(data);
|
|
if(second) {
|
|
/* setup the request struct */
|
|
struct HTTP *http = calloc(1, sizeof(struct HTTP));
|
|
if(!http) {
|
|
(void)Curl_close(&second);
|
|
}
|
|
else {
|
|
second->req.p.http = http;
|
|
http2_data_setup(cf, second);
|
|
second->state.priority.weight = data->state.priority.weight;
|
|
}
|
|
}
|
|
return second;
|
|
}
|
|
|
|
static int set_transfer_url(struct Curl_easy *data,
|
|
struct curl_pushheaders *hp)
|
|
{
|
|
const char *v;
|
|
CURLUcode uc;
|
|
char *url = NULL;
|
|
int rc = 0;
|
|
CURLU *u = curl_url();
|
|
|
|
if(!u)
|
|
return 5;
|
|
|
|
v = curl_pushheader_byname(hp, H2H3_PSEUDO_SCHEME);
|
|
if(v) {
|
|
uc = curl_url_set(u, CURLUPART_SCHEME, v, 0);
|
|
if(uc) {
|
|
rc = 1;
|
|
goto fail;
|
|
}
|
|
}
|
|
|
|
v = curl_pushheader_byname(hp, H2H3_PSEUDO_AUTHORITY);
|
|
if(v) {
|
|
uc = curl_url_set(u, CURLUPART_HOST, v, 0);
|
|
if(uc) {
|
|
rc = 2;
|
|
goto fail;
|
|
}
|
|
}
|
|
|
|
v = curl_pushheader_byname(hp, H2H3_PSEUDO_PATH);
|
|
if(v) {
|
|
uc = curl_url_set(u, CURLUPART_PATH, v, 0);
|
|
if(uc) {
|
|
rc = 3;
|
|
goto fail;
|
|
}
|
|
}
|
|
|
|
uc = curl_url_get(u, CURLUPART_URL, &url, 0);
|
|
if(uc)
|
|
rc = 4;
|
|
fail:
|
|
curl_url_cleanup(u);
|
|
if(rc)
|
|
return rc;
|
|
|
|
if(data->state.url_alloc)
|
|
free(data->state.url);
|
|
data->state.url_alloc = TRUE;
|
|
data->state.url = url;
|
|
return 0;
|
|
}
|
|
|
|
static int push_promise(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
const nghttp2_push_promise *frame)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
int rv; /* one of the CURL_PUSH_* defines */
|
|
|
|
H2BUGF(infof(data, "PUSH_PROMISE received, stream %u",
|
|
frame->promised_stream_id));
|
|
if(data->multi->push_cb) {
|
|
struct HTTP *stream;
|
|
struct HTTP *newstream;
|
|
struct curl_pushheaders heads;
|
|
CURLMcode rc;
|
|
size_t i;
|
|
/* clone the parent */
|
|
struct Curl_easy *newhandle = h2_duphandle(cf, data);
|
|
if(!newhandle) {
|
|
infof(data, "failed to duplicate handle");
|
|
rv = CURL_PUSH_DENY; /* FAIL HARD */
|
|
goto fail;
|
|
}
|
|
|
|
heads.data = data;
|
|
heads.frame = frame;
|
|
/* ask the application */
|
|
H2BUGF(infof(data, "Got PUSH_PROMISE, ask application"));
|
|
|
|
stream = data->req.p.http;
|
|
if(!stream) {
|
|
failf(data, "Internal NULL stream");
|
|
(void)Curl_close(&newhandle);
|
|
rv = CURL_PUSH_DENY;
|
|
goto fail;
|
|
}
|
|
|
|
rv = set_transfer_url(newhandle, &heads);
|
|
if(rv) {
|
|
(void)Curl_close(&newhandle);
|
|
rv = CURL_PUSH_DENY;
|
|
goto fail;
|
|
}
|
|
|
|
Curl_set_in_callback(data, true);
|
|
rv = data->multi->push_cb(data, newhandle,
|
|
stream->push_headers_used, &heads,
|
|
data->multi->push_userp);
|
|
Curl_set_in_callback(data, false);
|
|
|
|
/* free the headers again */
|
|
for(i = 0; i<stream->push_headers_used; i++)
|
|
free(stream->push_headers[i]);
|
|
free(stream->push_headers);
|
|
stream->push_headers = NULL;
|
|
stream->push_headers_used = 0;
|
|
|
|
if(rv) {
|
|
DEBUGASSERT((rv > CURL_PUSH_OK) && (rv <= CURL_PUSH_ERROROUT));
|
|
/* denied, kill off the new handle again */
|
|
http2_stream_free(newhandle->req.p.http);
|
|
newhandle->req.p.http = NULL;
|
|
(void)Curl_close(&newhandle);
|
|
goto fail;
|
|
}
|
|
|
|
newstream = newhandle->req.p.http;
|
|
newstream->stream_id = frame->promised_stream_id;
|
|
newhandle->req.maxdownload = -1;
|
|
newhandle->req.size = -1;
|
|
|
|
/* approved, add to the multi handle and immediately switch to PERFORM
|
|
state with the given connection !*/
|
|
rc = Curl_multi_add_perform(data->multi, newhandle, cf->conn);
|
|
if(rc) {
|
|
infof(data, "failed to add handle to multi");
|
|
http2_stream_free(newhandle->req.p.http);
|
|
newhandle->req.p.http = NULL;
|
|
Curl_close(&newhandle);
|
|
rv = CURL_PUSH_DENY;
|
|
goto fail;
|
|
}
|
|
|
|
rv = nghttp2_session_set_stream_user_data(ctx->h2,
|
|
frame->promised_stream_id,
|
|
newhandle);
|
|
if(rv) {
|
|
infof(data, "failed to set user_data for stream %u",
|
|
frame->promised_stream_id);
|
|
DEBUGASSERT(0);
|
|
rv = CURL_PUSH_DENY;
|
|
goto fail;
|
|
}
|
|
Curl_dyn_init(&newstream->header_recvbuf, DYN_H2_HEADERS);
|
|
Curl_dyn_init(&newstream->trailer_recvbuf, DYN_H2_TRAILERS);
|
|
}
|
|
else {
|
|
H2BUGF(infof(data, "Got PUSH_PROMISE, ignore it"));
|
|
rv = CURL_PUSH_DENY;
|
|
}
|
|
fail:
|
|
return rv;
|
|
}
|
|
|
|
static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame,
|
|
void *userp)
|
|
{
|
|
struct Curl_cfilter *cf = userp;
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
struct Curl_easy *data_s = NULL;
|
|
struct HTTP *stream = NULL;
|
|
struct Curl_easy *data = get_transfer(ctx);
|
|
int rv;
|
|
size_t left, ncopy;
|
|
int32_t stream_id = frame->hd.stream_id;
|
|
CURLcode result;
|
|
|
|
if(!stream_id) {
|
|
/* stream ID zero is for connection-oriented stuff */
|
|
if(frame->hd.type == NGHTTP2_SETTINGS) {
|
|
uint32_t max_conn = ctx->max_concurrent_streams;
|
|
H2BUGF(infof(data, "Got SETTINGS"));
|
|
ctx->max_concurrent_streams = nghttp2_session_get_remote_settings(
|
|
session, NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS);
|
|
ctx->enable_push = nghttp2_session_get_remote_settings(
|
|
session, NGHTTP2_SETTINGS_ENABLE_PUSH);
|
|
H2BUGF(infof(data, "MAX_CONCURRENT_STREAMS == %d",
|
|
ctx->max_concurrent_streams));
|
|
H2BUGF(infof(data, "ENABLE_PUSH == %s",
|
|
ctx->enable_push?"TRUE":"false"));
|
|
if(max_conn != ctx->max_concurrent_streams) {
|
|
/* only signal change if the value actually changed */
|
|
infof(data,
|
|
"Connection state changed (MAX_CONCURRENT_STREAMS == %u)!",
|
|
ctx->max_concurrent_streams);
|
|
multi_connchanged(data->multi);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
data_s = nghttp2_session_get_stream_user_data(session, stream_id);
|
|
if(!data_s) {
|
|
H2BUGF(infof(data,
|
|
"No Curl_easy associated with stream: %u",
|
|
stream_id));
|
|
return 0;
|
|
}
|
|
|
|
stream = data_s->req.p.http;
|
|
if(!stream) {
|
|
H2BUGF(infof(data_s, "No proto pointer for stream: %u",
|
|
stream_id));
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
}
|
|
|
|
H2BUGF(infof(data_s, "on_frame_recv() header %x stream %u",
|
|
frame->hd.type, stream_id));
|
|
|
|
switch(frame->hd.type) {
|
|
case NGHTTP2_DATA:
|
|
/* If body started on this stream, then receiving DATA is illegal. */
|
|
if(!stream->bodystarted) {
|
|
rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE,
|
|
stream_id, NGHTTP2_PROTOCOL_ERROR);
|
|
|
|
if(nghttp2_is_fatal(rv)) {
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
}
|
|
}
|
|
break;
|
|
case NGHTTP2_HEADERS:
|
|
if(stream->bodystarted) {
|
|
/* Only valid HEADERS after body started is trailer HEADERS. We
|
|
buffer them in on_header callback. */
|
|
break;
|
|
}
|
|
|
|
/* nghttp2 guarantees that :status is received, and we store it to
|
|
stream->status_code. Fuzzing has proven this can still be reached
|
|
without status code having been set. */
|
|
if(stream->status_code == -1)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
/* Only final status code signals the end of header */
|
|
if(stream->status_code / 100 != 1) {
|
|
stream->bodystarted = TRUE;
|
|
stream->status_code = -1;
|
|
}
|
|
|
|
result = Curl_dyn_addn(&stream->header_recvbuf, STRCONST("\r\n"));
|
|
if(result)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
left = Curl_dyn_len(&stream->header_recvbuf) -
|
|
stream->nread_header_recvbuf;
|
|
ncopy = CURLMIN(stream->len, left);
|
|
|
|
memcpy(&stream->mem[stream->memlen],
|
|
Curl_dyn_ptr(&stream->header_recvbuf) +
|
|
stream->nread_header_recvbuf,
|
|
ncopy);
|
|
stream->nread_header_recvbuf += ncopy;
|
|
|
|
DEBUGASSERT(stream->mem);
|
|
H2BUGF(infof(data_s, "Store %zu bytes headers from stream %u at %p",
|
|
ncopy, stream_id, stream->mem));
|
|
|
|
stream->len -= ncopy;
|
|
stream->memlen += ncopy;
|
|
|
|
drain_this(cf, data_s);
|
|
/* if we receive data for another handle, wake that up */
|
|
if(get_transfer(ctx) != data_s)
|
|
Curl_expire(data_s, 0, EXPIRE_RUN_NOW);
|
|
break;
|
|
case NGHTTP2_PUSH_PROMISE:
|
|
rv = push_promise(cf, data_s, &frame->push_promise);
|
|
if(rv) { /* deny! */
|
|
int h2;
|
|
DEBUGASSERT((rv > CURL_PUSH_OK) && (rv <= CURL_PUSH_ERROROUT));
|
|
h2 = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE,
|
|
frame->push_promise.promised_stream_id,
|
|
NGHTTP2_CANCEL);
|
|
if(nghttp2_is_fatal(h2))
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
else if(rv == CURL_PUSH_ERROROUT) {
|
|
DEBUGF(infof(data_s, "Fail the parent stream (too)"));
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
H2BUGF(infof(data_s, "Got frame type %x for stream %u",
|
|
frame->hd.type, stream_id));
|
|
break;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int on_data_chunk_recv(nghttp2_session *session, uint8_t flags,
|
|
int32_t stream_id,
|
|
const uint8_t *mem, size_t len, void *userp)
|
|
{
|
|
struct Curl_cfilter *cf = userp;
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
struct HTTP *stream;
|
|
struct Curl_easy *data_s;
|
|
size_t nread;
|
|
(void)flags;
|
|
|
|
DEBUGASSERT(stream_id); /* should never be a zero stream ID here */
|
|
|
|
/* get the stream from the hash based on Stream ID */
|
|
data_s = nghttp2_session_get_stream_user_data(session, stream_id);
|
|
if(!data_s) {
|
|
/* Receiving a Stream ID not in the hash should not happen - unless
|
|
we have aborted a transfer artificially and there were more data
|
|
in the pipeline. Silently ignore. */
|
|
H2BUGF(fprintf(stderr, "Data for stream %u but it doesn't exist\n",
|
|
stream_id));
|
|
return 0;
|
|
}
|
|
|
|
stream = data_s->req.p.http;
|
|
if(!stream)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
nread = CURLMIN(stream->len, len);
|
|
memcpy(&stream->mem[stream->memlen], mem, nread);
|
|
|
|
stream->len -= nread;
|
|
stream->memlen += nread;
|
|
|
|
drain_this(cf, data_s);
|
|
|
|
/* if we receive data for another handle, wake that up */
|
|
if(get_transfer(ctx) != data_s)
|
|
Curl_expire(data_s, 0, EXPIRE_RUN_NOW);
|
|
|
|
H2BUGF(infof(data_s, "%zu data received for stream %u "
|
|
"(%zu left in buffer %p, total %zu)",
|
|
nread, stream_id,
|
|
stream->len, stream->mem,
|
|
stream->memlen));
|
|
|
|
if(nread < len) {
|
|
stream->pausedata = mem + nread;
|
|
stream->pauselen = len - nread;
|
|
H2BUGF(infof(data_s, "NGHTTP2_ERR_PAUSE - %zu bytes out of buffer"
|
|
", stream %u",
|
|
len - nread, stream_id));
|
|
ctx->pause_stream_id = stream_id;
|
|
|
|
return NGHTTP2_ERR_PAUSE;
|
|
}
|
|
|
|
/* pause execution of nghttp2 if we received data for another handle
|
|
in order to process them first. */
|
|
if(get_transfer(ctx) != data_s) {
|
|
ctx->pause_stream_id = stream_id;
|
|
|
|
return NGHTTP2_ERR_PAUSE;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int on_stream_close(nghttp2_session *session, int32_t stream_id,
|
|
uint32_t error_code, void *userp)
|
|
{
|
|
struct Curl_cfilter *cf = userp;
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
struct Curl_easy *data_s;
|
|
struct HTTP *stream;
|
|
int rv;
|
|
(void)session;
|
|
(void)stream_id;
|
|
|
|
if(stream_id) {
|
|
/* get the stream from the hash based on Stream ID, stream ID zero is for
|
|
connection-oriented stuff */
|
|
data_s = nghttp2_session_get_stream_user_data(session, stream_id);
|
|
if(!data_s) {
|
|
/* We could get stream ID not in the hash. For example, if we
|
|
decided to reject stream (e.g., PUSH_PROMISE). */
|
|
return 0;
|
|
}
|
|
H2BUGF(infof(data_s, "on_stream_close(), %s (err %d), stream %u",
|
|
nghttp2_http2_strerror(error_code), error_code, stream_id));
|
|
stream = data_s->req.p.http;
|
|
if(!stream)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
stream->closed = TRUE;
|
|
drain_this(cf, data_s);
|
|
Curl_expire(data_s, 0, EXPIRE_RUN_NOW);
|
|
stream->error = error_code;
|
|
|
|
/* remove the entry from the hash as the stream is now gone */
|
|
rv = nghttp2_session_set_stream_user_data(session, stream_id, 0);
|
|
if(rv) {
|
|
infof(data_s, "http/2: failed to clear user_data for stream %u",
|
|
stream_id);
|
|
DEBUGASSERT(0);
|
|
}
|
|
if(stream_id == ctx->pause_stream_id) {
|
|
H2BUGF(infof(data_s, "Stopped the pause stream"));
|
|
ctx->pause_stream_id = 0;
|
|
}
|
|
H2BUGF(infof(data_s, "Removed stream %u hash", stream_id));
|
|
stream->stream_id = 0; /* cleared */
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int on_begin_headers(nghttp2_session *session,
|
|
const nghttp2_frame *frame, void *userp)
|
|
{
|
|
struct HTTP *stream;
|
|
struct Curl_easy *data_s = NULL;
|
|
(void)userp;
|
|
|
|
data_s = nghttp2_session_get_stream_user_data(session, frame->hd.stream_id);
|
|
if(!data_s) {
|
|
return 0;
|
|
}
|
|
|
|
H2BUGF(infof(data_s, "on_begin_headers() was called"));
|
|
|
|
if(frame->hd.type != NGHTTP2_HEADERS) {
|
|
return 0;
|
|
}
|
|
|
|
stream = data_s->req.p.http;
|
|
if(!stream || !stream->bodystarted) {
|
|
return 0;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
|
|
/* frame->hd.type is either NGHTTP2_HEADERS or NGHTTP2_PUSH_PROMISE */
|
|
static int on_header(nghttp2_session *session, const nghttp2_frame *frame,
|
|
const uint8_t *name, size_t namelen,
|
|
const uint8_t *value, size_t valuelen,
|
|
uint8_t flags,
|
|
void *userp)
|
|
{
|
|
struct Curl_cfilter *cf = userp;
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
struct HTTP *stream;
|
|
struct Curl_easy *data_s;
|
|
int32_t stream_id = frame->hd.stream_id;
|
|
CURLcode result;
|
|
(void)flags;
|
|
|
|
DEBUGASSERT(stream_id); /* should never be a zero stream ID here */
|
|
|
|
/* get the stream from the hash based on Stream ID */
|
|
data_s = nghttp2_session_get_stream_user_data(session, stream_id);
|
|
if(!data_s)
|
|
/* 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;
|
|
|
|
stream = data_s->req.p.http;
|
|
if(!stream) {
|
|
failf(data_s, "Internal NULL stream");
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
}
|
|
|
|
/* Store received PUSH_PROMISE headers to be used when the subsequent
|
|
PUSH_PROMISE callback comes */
|
|
if(frame->hd.type == NGHTTP2_PUSH_PROMISE) {
|
|
char *h;
|
|
|
|
if(!strcmp(H2H3_PSEUDO_AUTHORITY, (const char *)name)) {
|
|
/* pseudo headers are lower case */
|
|
int rc = 0;
|
|
char *check = aprintf("%s:%d", cf->conn->host.name,
|
|
cf->conn->remote_port);
|
|
if(!check)
|
|
/* no memory */
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
if(!strcasecompare(check, (const char *)value) &&
|
|
((cf->conn->remote_port != cf->conn->given->defport) ||
|
|
!strcasecompare(cf->conn->host.name, (const char *)value))) {
|
|
/* This is push is not for the same authority that was asked for in
|
|
* the URL. RFC 7540 section 8.2 says: "A client MUST treat a
|
|
* PUSH_PROMISE for which the server is not authoritative as a stream
|
|
* error of type PROTOCOL_ERROR."
|
|
*/
|
|
(void)nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE,
|
|
stream_id, NGHTTP2_PROTOCOL_ERROR);
|
|
rc = NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
}
|
|
free(check);
|
|
if(rc)
|
|
return rc;
|
|
}
|
|
|
|
if(!stream->push_headers) {
|
|
stream->push_headers_alloc = 10;
|
|
stream->push_headers = malloc(stream->push_headers_alloc *
|
|
sizeof(char *));
|
|
if(!stream->push_headers)
|
|
return NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE;
|
|
stream->push_headers_used = 0;
|
|
}
|
|
else if(stream->push_headers_used ==
|
|
stream->push_headers_alloc) {
|
|
char **headp;
|
|
if(stream->push_headers_alloc > 1000) {
|
|
/* this is beyond crazy many headers, bail out */
|
|
failf(data_s, "Too many PUSH_PROMISE headers");
|
|
Curl_safefree(stream->push_headers);
|
|
return NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE;
|
|
}
|
|
stream->push_headers_alloc *= 2;
|
|
headp = Curl_saferealloc(stream->push_headers,
|
|
stream->push_headers_alloc * sizeof(char *));
|
|
if(!headp) {
|
|
stream->push_headers = NULL;
|
|
return NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE;
|
|
}
|
|
stream->push_headers = headp;
|
|
}
|
|
h = aprintf("%s:%s", name, value);
|
|
if(h)
|
|
stream->push_headers[stream->push_headers_used++] = h;
|
|
return 0;
|
|
}
|
|
|
|
if(stream->bodystarted) {
|
|
/* This is a trailer */
|
|
H2BUGF(infof(data_s, "h2 trailer: %.*s: %.*s", namelen, name, valuelen,
|
|
value));
|
|
result = Curl_dyn_addf(&stream->trailer_recvbuf,
|
|
"%.*s: %.*s\r\n", namelen, name,
|
|
valuelen, value);
|
|
if(result)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
|
|
return 0;
|
|
}
|
|
|
|
if(namelen == sizeof(H2H3_PSEUDO_STATUS) - 1 &&
|
|
memcmp(H2H3_PSEUDO_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. */
|
|
char buffer[32];
|
|
stream->status_code = decode_status_code(value, valuelen);
|
|
DEBUGASSERT(stream->status_code != -1);
|
|
msnprintf(buffer, sizeof(buffer), H2H3_PSEUDO_STATUS ":%u\r",
|
|
stream->status_code);
|
|
result = Curl_headers_push(data_s, buffer, CURLH_PSEUDO);
|
|
if(result)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
result = Curl_dyn_addn(&stream->header_recvbuf, STRCONST("HTTP/2 "));
|
|
if(result)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
result = Curl_dyn_addn(&stream->header_recvbuf, value, valuelen);
|
|
if(result)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
/* the space character after the status code is mandatory */
|
|
result = Curl_dyn_addn(&stream->header_recvbuf, STRCONST(" \r\n"));
|
|
if(result)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
/* if we receive data for another handle, wake that up */
|
|
if(get_transfer(ctx) != data_s)
|
|
Curl_expire(data_s, 0, EXPIRE_RUN_NOW);
|
|
|
|
H2BUGF(infof(data_s, "h2 status: HTTP/2 %03d (easy %p)",
|
|
stream->status_code, data_s));
|
|
return 0;
|
|
}
|
|
|
|
/* nghttp2 guarantees that namelen > 0, and :status was already
|
|
received, and this is not pseudo-header field . */
|
|
/* convert to an HTTP1-style header */
|
|
result = Curl_dyn_addn(&stream->header_recvbuf, name, namelen);
|
|
if(result)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
result = Curl_dyn_addn(&stream->header_recvbuf, STRCONST(": "));
|
|
if(result)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
result = Curl_dyn_addn(&stream->header_recvbuf, value, valuelen);
|
|
if(result)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
result = Curl_dyn_addn(&stream->header_recvbuf, STRCONST("\r\n"));
|
|
if(result)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
/* if we receive data for another handle, wake that up */
|
|
if(get_transfer(ctx) != data_s)
|
|
Curl_expire(data_s, 0, EXPIRE_RUN_NOW);
|
|
|
|
H2BUGF(infof(data_s, "h2 header: %.*s: %.*s", namelen, name, valuelen,
|
|
value));
|
|
|
|
return 0; /* 0 is successful */
|
|
}
|
|
|
|
static ssize_t data_source_read_callback(nghttp2_session *session,
|
|
int32_t stream_id,
|
|
uint8_t *buf, size_t length,
|
|
uint32_t *data_flags,
|
|
nghttp2_data_source *source,
|
|
void *userp)
|
|
{
|
|
struct Curl_easy *data_s;
|
|
struct HTTP *stream = NULL;
|
|
size_t nread;
|
|
(void)source;
|
|
(void)userp;
|
|
|
|
if(stream_id) {
|
|
/* get the stream from the hash based on Stream ID, stream ID zero is for
|
|
connection-oriented stuff */
|
|
data_s = nghttp2_session_get_stream_user_data(session, stream_id);
|
|
if(!data_s)
|
|
/* 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;
|
|
|
|
stream = data_s->req.p.http;
|
|
if(!stream)
|
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
|
}
|
|
else
|
|
return NGHTTP2_ERR_INVALID_ARGUMENT;
|
|
|
|
nread = CURLMIN(stream->upload_len, length);
|
|
if(nread > 0) {
|
|
memcpy(buf, stream->upload_mem, nread);
|
|
stream->upload_mem += nread;
|
|
stream->upload_len -= nread;
|
|
if(data_s->state.infilesize != -1)
|
|
stream->upload_left -= nread;
|
|
}
|
|
|
|
if(stream->upload_left == 0)
|
|
*data_flags = NGHTTP2_DATA_FLAG_EOF;
|
|
else if(nread == 0)
|
|
return NGHTTP2_ERR_DEFERRED;
|
|
|
|
H2BUGF(infof(data_s, "data_source_read_callback: "
|
|
"returns %zu bytes stream %u",
|
|
nread, stream_id));
|
|
|
|
return nread;
|
|
}
|
|
|
|
#if !defined(CURL_DISABLE_VERBOSE_STRINGS)
|
|
static int error_callback(nghttp2_session *session,
|
|
const char *msg,
|
|
size_t len,
|
|
void *userp)
|
|
{
|
|
(void)session;
|
|
(void)msg;
|
|
(void)len;
|
|
(void)userp;
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
static void http2_data_done(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data, bool premature)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
struct HTTP *stream = data->req.p.http;
|
|
|
|
/* there might be allocated resources done before this got the 'h2' pointer
|
|
setup */
|
|
Curl_dyn_free(&stream->header_recvbuf);
|
|
Curl_dyn_free(&stream->trailer_recvbuf);
|
|
if(stream->push_headers) {
|
|
/* if they weren't used and then freed before */
|
|
for(; stream->push_headers_used > 0; --stream->push_headers_used) {
|
|
free(stream->push_headers[stream->push_headers_used - 1]);
|
|
}
|
|
free(stream->push_headers);
|
|
stream->push_headers = NULL;
|
|
}
|
|
|
|
if(!ctx || !ctx->h2)
|
|
return;
|
|
|
|
/* do this before the reset handling, as that might clear ->stream_id */
|
|
if(stream->stream_id == ctx->pause_stream_id) {
|
|
H2BUGF(infof(data, "DONE the pause stream (%u)", stream->stream_id));
|
|
ctx->pause_stream_id = 0;
|
|
}
|
|
|
|
if(premature || (!stream->closed && stream->stream_id)) {
|
|
/* RST_STREAM */
|
|
set_transfer(ctx, data); /* set the transfer */
|
|
H2BUGF(infof(data, "RST stream %u", stream->stream_id));
|
|
if(!nghttp2_submit_rst_stream(ctx->h2, NGHTTP2_FLAG_NONE,
|
|
stream->stream_id, NGHTTP2_STREAM_CLOSED))
|
|
(void)nghttp2_session_send(ctx->h2);
|
|
}
|
|
|
|
if(data->state.drain)
|
|
drained_transfer(cf, data);
|
|
|
|
/* -1 means unassigned and 0 means cleared */
|
|
if(stream->stream_id > 0) {
|
|
int rv = nghttp2_session_set_stream_user_data(ctx->h2,
|
|
stream->stream_id, 0);
|
|
if(rv) {
|
|
infof(data, "http/2: failed to clear user_data for stream %u",
|
|
stream->stream_id);
|
|
DEBUGASSERT(0);
|
|
}
|
|
set_transfer(ctx, NULL);
|
|
stream->stream_id = 0;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Append headers to ask for an HTTP1.1 to HTTP2 upgrade.
|
|
*/
|
|
CURLcode Curl_http2_request_upgrade(struct dynbuf *req,
|
|
struct Curl_easy *data)
|
|
{
|
|
CURLcode result;
|
|
char *base64;
|
|
size_t blen;
|
|
struct SingleRequest *k = &data->req;
|
|
uint8_t binsettings[H2_BINSETTINGS_LEN];
|
|
size_t binlen; /* length of the binsettings data */
|
|
|
|
binlen = populate_binsettings(binsettings, data);
|
|
if(binlen <= 0) {
|
|
failf(data, "nghttp2 unexpectedly failed on pack_settings_payload");
|
|
Curl_dyn_free(req);
|
|
return CURLE_FAILED_INIT;
|
|
}
|
|
|
|
result = Curl_base64url_encode((const char *)binsettings, binlen,
|
|
&base64, &blen);
|
|
if(result) {
|
|
Curl_dyn_free(req);
|
|
return result;
|
|
}
|
|
|
|
result = Curl_dyn_addf(req,
|
|
"Connection: Upgrade, HTTP2-Settings\r\n"
|
|
"Upgrade: %s\r\n"
|
|
"HTTP2-Settings: %s\r\n",
|
|
NGHTTP2_CLEARTEXT_PROTO_VERSION_ID, base64);
|
|
free(base64);
|
|
|
|
k->upgr101 = UPGR101_H2;
|
|
|
|
return result;
|
|
}
|
|
|
|
/*
|
|
* Returns nonzero if current HTTP/2 session should be closed.
|
|
*/
|
|
static int should_close_session(struct h2_cf_ctx *ctx)
|
|
{
|
|
return ctx->drain_total == 0 && !nghttp2_session_want_read(ctx->h2) &&
|
|
!nghttp2_session_want_write(ctx->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.
|
|
*/
|
|
static int h2_process_pending_input(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
CURLcode *err)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
ssize_t nread;
|
|
char *inbuf;
|
|
ssize_t rv;
|
|
|
|
nread = ctx->inbuflen - ctx->nread_inbuf;
|
|
inbuf = ctx->inbuf + ctx->nread_inbuf;
|
|
|
|
set_transfer(ctx, data); /* set the transfer */
|
|
rv = nghttp2_session_mem_recv(ctx->h2, (const uint8_t *)inbuf, nread);
|
|
if(rv < 0) {
|
|
failf(data,
|
|
"h2_process_pending_input: nghttp2_session_mem_recv() returned "
|
|
"%zd:%s", rv, nghttp2_strerror((int)rv));
|
|
*err = CURLE_RECV_ERROR;
|
|
return -1;
|
|
}
|
|
|
|
if(nread == rv) {
|
|
H2BUGF(infof(data,
|
|
"h2_process_pending_input: All data in connection buffer "
|
|
"processed"));
|
|
ctx->inbuflen = 0;
|
|
ctx->nread_inbuf = 0;
|
|
}
|
|
else {
|
|
ctx->nread_inbuf += rv;
|
|
H2BUGF(infof(data,
|
|
"h2_process_pending_input: %zu bytes left in connection "
|
|
"buffer",
|
|
ctx->inbuflen - ctx->nread_inbuf));
|
|
}
|
|
|
|
rv = h2_session_send(cf, data);
|
|
if(rv) {
|
|
*err = CURLE_SEND_ERROR;
|
|
return -1;
|
|
}
|
|
|
|
if(nghttp2_session_check_request_allowed(ctx->h2) == 0) {
|
|
/* No more requests are allowed in the current session, so
|
|
the connection may not be reused. This is set when a
|
|
GOAWAY frame has been received or when the limit of stream
|
|
identifiers has been reached. */
|
|
connclose(cf->conn, "http/2: No new requests allowed");
|
|
}
|
|
|
|
if(should_close_session(ctx)) {
|
|
struct HTTP *stream = data->req.p.http;
|
|
H2BUGF(infof(data,
|
|
"h2_process_pending_input: nothing to do in this session"));
|
|
if(stream->error)
|
|
*err = CURLE_HTTP2;
|
|
else {
|
|
/* not an error per se, but should still close the connection */
|
|
connclose(cf->conn, "GOAWAY received");
|
|
*err = CURLE_OK;
|
|
}
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static CURLcode http2_data_done_send(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
CURLcode result = CURLE_OK;
|
|
struct HTTP *stream = data->req.p.http;
|
|
|
|
if(!ctx || !ctx->h2)
|
|
goto out;
|
|
|
|
if(stream->upload_left) {
|
|
/* If the stream still thinks there's data left to upload. */
|
|
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(ctx->h2, stream->stream_id);
|
|
(void)h2_process_pending_input(cf, data, &result);
|
|
}
|
|
|
|
/* If nghttp2 still has pending frames unsent */
|
|
if(nghttp2_session_want_write(ctx->h2)) {
|
|
struct SingleRequest *k = &data->req;
|
|
int rv;
|
|
|
|
H2BUGF(infof(data, "HTTP/2 still wants to send data (easy %p)", data));
|
|
|
|
/* and attempt to send the pending frames */
|
|
rv = h2_session_send(cf, data);
|
|
if(rv)
|
|
result = CURLE_SEND_ERROR;
|
|
|
|
if(nghttp2_session_want_write(ctx->h2)) {
|
|
/* re-set KEEP_SEND to make sure we are called again */
|
|
k->keepon |= KEEP_SEND;
|
|
}
|
|
}
|
|
|
|
out:
|
|
return result;
|
|
}
|
|
|
|
static ssize_t http2_handle_stream_close(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
struct HTTP *stream, CURLcode *err)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
|
|
if(ctx->pause_stream_id == stream->stream_id) {
|
|
ctx->pause_stream_id = 0;
|
|
}
|
|
|
|
drained_transfer(cf, data);
|
|
|
|
if(ctx->pause_stream_id == 0) {
|
|
if(h2_process_pending_input(cf, data, err) != 0) {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
DEBUGASSERT(data->state.drain == 0);
|
|
|
|
/* Reset to FALSE to prevent infinite loop in readwrite_data function. */
|
|
stream->closed = FALSE;
|
|
if(stream->error == NGHTTP2_REFUSED_STREAM) {
|
|
H2BUGF(infof(data, "REFUSED_STREAM (%u), try again on a new connection",
|
|
stream->stream_id));
|
|
connclose(cf->conn, "REFUSED_STREAM"); /* don't use this anymore */
|
|
data->state.refused_stream = TRUE;
|
|
*err = CURLE_RECV_ERROR; /* trigger Curl_retry_request() later */
|
|
return -1;
|
|
}
|
|
else if(stream->error != NGHTTP2_NO_ERROR) {
|
|
failf(data, "HTTP/2 stream %u was not closed cleanly: %s (err %u)",
|
|
stream->stream_id, nghttp2_http2_strerror(stream->error),
|
|
stream->error);
|
|
*err = CURLE_HTTP2_STREAM;
|
|
return -1;
|
|
}
|
|
|
|
if(!stream->bodystarted) {
|
|
failf(data, "HTTP/2 stream %u was closed cleanly, but before getting "
|
|
" all response header fields, treated as error",
|
|
stream->stream_id);
|
|
*err = CURLE_HTTP2_STREAM;
|
|
return -1;
|
|
}
|
|
|
|
if(Curl_dyn_len(&stream->trailer_recvbuf)) {
|
|
char *trailp = Curl_dyn_ptr(&stream->trailer_recvbuf);
|
|
char *lf;
|
|
|
|
do {
|
|
size_t len = 0;
|
|
CURLcode result;
|
|
/* each trailer line ends with a newline */
|
|
lf = strchr(trailp, '\n');
|
|
if(!lf)
|
|
break;
|
|
len = lf + 1 - trailp;
|
|
|
|
Curl_debug(data, CURLINFO_HEADER_IN, trailp, len);
|
|
/* pass the trailers one by one to the callback */
|
|
result = Curl_client_write(data, CLIENTWRITE_HEADER, trailp, len);
|
|
if(result) {
|
|
*err = result;
|
|
return -1;
|
|
}
|
|
trailp = ++lf;
|
|
} while(lf);
|
|
}
|
|
|
|
stream->close_handled = TRUE;
|
|
|
|
H2BUGF(infof(data, "http2_recv returns 0, http2_handle_stream_close"));
|
|
return 0;
|
|
}
|
|
|
|
static int sweight_wanted(const struct Curl_easy *data)
|
|
{
|
|
/* 0 weight is not set by user and we take the nghttp2 default one */
|
|
return data->set.priority.weight?
|
|
data->set.priority.weight : NGHTTP2_DEFAULT_WEIGHT;
|
|
}
|
|
|
|
static int sweight_in_effect(const struct Curl_easy *data)
|
|
{
|
|
/* 0 weight is not set by user and we take the nghttp2 default one */
|
|
return data->state.priority.weight?
|
|
data->state.priority.weight : NGHTTP2_DEFAULT_WEIGHT;
|
|
}
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
static void h2_pri_spec(struct Curl_easy *data,
|
|
nghttp2_priority_spec *pri_spec)
|
|
{
|
|
struct Curl_data_priority *prio = &data->set.priority;
|
|
struct HTTP *depstream = (prio->parent?
|
|
prio->parent->req.p.http:NULL);
|
|
int32_t depstream_id = depstream? depstream->stream_id:0;
|
|
nghttp2_priority_spec_init(pri_spec, depstream_id,
|
|
sweight_wanted(data),
|
|
data->set.priority.exclusive);
|
|
data->state.priority = *prio;
|
|
}
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
static int h2_session_send(struct Curl_cfilter *cf, struct Curl_easy *data)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
struct HTTP *stream = data->req.p.http;
|
|
|
|
set_transfer(ctx, data);
|
|
if((sweight_wanted(data) != sweight_in_effect(data)) ||
|
|
(data->set.priority.exclusive != data->state.priority.exclusive) ||
|
|
(data->set.priority.parent != data->state.priority.parent) ) {
|
|
/* send new weight and/or dependency */
|
|
nghttp2_priority_spec pri_spec;
|
|
int rv;
|
|
|
|
h2_pri_spec(data, &pri_spec);
|
|
H2BUGF(infof(data, "Queuing PRIORITY on stream %u (easy %p)",
|
|
stream->stream_id, data));
|
|
DEBUGASSERT(stream->stream_id != -1);
|
|
rv = nghttp2_submit_priority(ctx->h2, NGHTTP2_FLAG_NONE,
|
|
stream->stream_id, &pri_spec);
|
|
if(rv)
|
|
return rv;
|
|
}
|
|
|
|
return nghttp2_session_send(ctx->h2);
|
|
}
|
|
|
|
static ssize_t h2_cf_recv(struct Curl_cfilter *cf, struct Curl_easy *data,
|
|
char *buf, size_t len, CURLcode *err)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
struct HTTP *stream = data->req.p.http;
|
|
ssize_t nread;
|
|
|
|
if(should_close_session(ctx)) {
|
|
H2BUGF(infof(data, "http2_recv: nothing to do in this session"));
|
|
if(cf->conn->bits.close) {
|
|
/* already marked for closure, return OK and we're done */
|
|
*err = CURLE_OK;
|
|
return 0;
|
|
}
|
|
*err = CURLE_HTTP2;
|
|
return -1;
|
|
}
|
|
|
|
/* Nullify here because we call nghttp2_session_send() and they
|
|
might refer to the old buffer. */
|
|
stream->upload_mem = NULL;
|
|
stream->upload_len = 0;
|
|
|
|
/*
|
|
* At this point 'stream' is just in the Curl_easy the connection
|
|
* identifies as its owner at this time.
|
|
*/
|
|
|
|
if(stream->bodystarted &&
|
|
stream->nread_header_recvbuf < Curl_dyn_len(&stream->header_recvbuf)) {
|
|
/* If there is header data pending for this stream to return, do that */
|
|
size_t left =
|
|
Curl_dyn_len(&stream->header_recvbuf) - stream->nread_header_recvbuf;
|
|
size_t ncopy = CURLMIN(len, left);
|
|
memcpy(buf, Curl_dyn_ptr(&stream->header_recvbuf) +
|
|
stream->nread_header_recvbuf, ncopy);
|
|
stream->nread_header_recvbuf += ncopy;
|
|
|
|
H2BUGF(infof(data, "http2_recv: Got %d bytes from header_recvbuf",
|
|
(int)ncopy));
|
|
return ncopy;
|
|
}
|
|
|
|
H2BUGF(infof(data, "http2_recv: easy %p (stream %u) win %u/%u",
|
|
data, stream->stream_id,
|
|
nghttp2_session_get_local_window_size(ctx->h2),
|
|
nghttp2_session_get_stream_local_window_size(ctx->h2,
|
|
stream->stream_id)
|
|
));
|
|
|
|
if((data->state.drain) && stream->memlen) {
|
|
H2BUGF(infof(data, "http2_recv: DRAIN %zu bytes stream %u (%p => %p)",
|
|
stream->memlen, stream->stream_id,
|
|
stream->mem, buf));
|
|
if(buf != stream->mem) {
|
|
/* if we didn't get the same buffer this time, we must move the data to
|
|
the beginning */
|
|
memmove(buf, stream->mem, stream->memlen);
|
|
stream->len = len - stream->memlen;
|
|
stream->mem = buf;
|
|
}
|
|
if(ctx->pause_stream_id == stream->stream_id && !stream->pausedata) {
|
|
/* We have paused nghttp2, but we have no pause data (see
|
|
on_data_chunk_recv). */
|
|
ctx->pause_stream_id = 0;
|
|
if(h2_process_pending_input(cf, data, err) != 0) {
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
else if(stream->pausedata) {
|
|
DEBUGASSERT(ctx->pause_stream_id == stream->stream_id);
|
|
nread = CURLMIN(len, stream->pauselen);
|
|
memcpy(buf, stream->pausedata, nread);
|
|
|
|
stream->pausedata += nread;
|
|
stream->pauselen -= nread;
|
|
|
|
if(stream->pauselen == 0) {
|
|
H2BUGF(infof(data, "Unpaused by stream %u", stream->stream_id));
|
|
DEBUGASSERT(ctx->pause_stream_id == stream->stream_id);
|
|
ctx->pause_stream_id = 0;
|
|
|
|
stream->pausedata = NULL;
|
|
stream->pauselen = 0;
|
|
|
|
/* 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. */
|
|
if(h2_process_pending_input(cf, data, err) != 0) {
|
|
return -1;
|
|
}
|
|
}
|
|
H2BUGF(infof(data, "http2_recv: returns unpaused %zd bytes on stream %u",
|
|
nread, stream->stream_id));
|
|
return nread;
|
|
}
|
|
else if(ctx->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. */
|
|
if(stream->closed)
|
|
/* closed overrides paused */
|
|
return 0;
|
|
H2BUGF(infof(data, "stream %u is paused, pause id: %u",
|
|
stream->stream_id, ctx->pause_stream_id));
|
|
*err = CURLE_AGAIN;
|
|
return -1;
|
|
}
|
|
else {
|
|
/* remember where to store incoming data for this stream and how big the
|
|
buffer is */
|
|
stream->mem = buf;
|
|
stream->len = len;
|
|
stream->memlen = 0;
|
|
|
|
if(ctx->inbuflen == 0) {
|
|
/* Receive data from the "lower" filters */
|
|
nread = Curl_conn_cf_recv(cf->next, data, ctx->inbuf, H2_BUFSIZE, err);
|
|
|
|
if(nread == -1) {
|
|
if(*err != CURLE_AGAIN)
|
|
failf(data, "Failed receiving HTTP2 data");
|
|
else if(stream->closed)
|
|
/* received when the stream was already closed! */
|
|
return http2_handle_stream_close(cf, data, stream, err);
|
|
|
|
return -1;
|
|
}
|
|
|
|
if(nread == 0) {
|
|
if(!stream->closed) {
|
|
/* This will happen when the server or proxy server is SIGKILLed
|
|
during data transfer. We should emit an error since our data
|
|
received may be incomplete. */
|
|
failf(data, "HTTP/2 stream %u was not closed cleanly before"
|
|
" end of the underlying stream",
|
|
stream->stream_id);
|
|
*err = CURLE_HTTP2_STREAM;
|
|
return -1;
|
|
}
|
|
|
|
H2BUGF(infof(data, "end of stream"));
|
|
*err = CURLE_OK;
|
|
return 0;
|
|
}
|
|
|
|
H2BUGF(infof(data, "nread=%zd", nread));
|
|
|
|
ctx->inbuflen = nread;
|
|
|
|
DEBUGASSERT(ctx->nread_inbuf == 0);
|
|
}
|
|
else {
|
|
nread = ctx->inbuflen - ctx->nread_inbuf;
|
|
(void)nread; /* silence warning, used in debug */
|
|
H2BUGF(infof(data, "Use data left in connection buffer, nread=%zd",
|
|
nread));
|
|
}
|
|
|
|
if(h2_process_pending_input(cf, data, err))
|
|
return -1;
|
|
}
|
|
if(stream->memlen) {
|
|
ssize_t retlen = stream->memlen;
|
|
H2BUGF(infof(data, "http2_recv: returns %zd for stream %u",
|
|
retlen, stream->stream_id));
|
|
stream->memlen = 0;
|
|
|
|
if(ctx->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 */
|
|
H2BUGF(infof(data, "Data returned for PAUSED stream %u",
|
|
stream->stream_id));
|
|
}
|
|
else if(!stream->closed) {
|
|
drained_transfer(cf, data);
|
|
}
|
|
else
|
|
/* this stream is closed, trigger a another read ASAP to detect that */
|
|
Curl_expire(data, 0, EXPIRE_RUN_NOW);
|
|
|
|
return retlen;
|
|
}
|
|
if(stream->closed)
|
|
return http2_handle_stream_close(cf, data, stream, err);
|
|
*err = CURLE_AGAIN;
|
|
H2BUGF(infof(data, "http2_recv returns AGAIN for stream %u",
|
|
stream->stream_id));
|
|
return -1;
|
|
}
|
|
|
|
static ssize_t h2_cf_send(struct Curl_cfilter *cf, struct Curl_easy *data,
|
|
const void *buf, size_t len, CURLcode *err)
|
|
{
|
|
/*
|
|
* 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.
|
|
*/
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
int rv;
|
|
struct HTTP *stream = data->req.p.http;
|
|
nghttp2_nv *nva = NULL;
|
|
size_t nheader;
|
|
nghttp2_data_provider data_prd;
|
|
int32_t stream_id;
|
|
nghttp2_priority_spec pri_spec;
|
|
CURLcode result;
|
|
struct h2h3req *hreq;
|
|
|
|
H2BUGF(infof(data, "http2_send len=%zu", len));
|
|
|
|
if(stream->stream_id != -1) {
|
|
if(stream->close_handled) {
|
|
infof(data, "stream %u closed", stream->stream_id);
|
|
*err = CURLE_HTTP2_STREAM;
|
|
return -1;
|
|
}
|
|
else if(stream->closed) {
|
|
return http2_handle_stream_close(cf, data, stream, err);
|
|
}
|
|
/* If stream_id != -1, we have dispatched request HEADERS, and now
|
|
are going to send or sending request body in DATA frame */
|
|
stream->upload_mem = buf;
|
|
stream->upload_len = len;
|
|
rv = nghttp2_session_resume_data(ctx->h2, stream->stream_id);
|
|
if(nghttp2_is_fatal(rv)) {
|
|
*err = CURLE_SEND_ERROR;
|
|
return -1;
|
|
}
|
|
rv = h2_session_send(cf, data);
|
|
if(nghttp2_is_fatal(rv)) {
|
|
*err = CURLE_SEND_ERROR;
|
|
return -1;
|
|
}
|
|
len -= stream->upload_len;
|
|
|
|
/* Nullify here because we call nghttp2_session_send() and they
|
|
might refer to the old buffer. */
|
|
stream->upload_mem = NULL;
|
|
stream->upload_len = 0;
|
|
|
|
if(should_close_session(ctx)) {
|
|
H2BUGF(infof(data, "http2_send: nothing to do in this session"));
|
|
*err = CURLE_HTTP2;
|
|
return -1;
|
|
}
|
|
|
|
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(ctx->h2, stream->stream_id);
|
|
}
|
|
|
|
#ifdef DEBUG_HTTP2
|
|
if(!len) {
|
|
infof(data, "http2_send: easy %p (stream %u) win %u/%u",
|
|
data, stream->stream_id,
|
|
nghttp2_session_get_remote_window_size(ctx->h2),
|
|
nghttp2_session_get_stream_remote_window_size(ctx->h2,
|
|
stream->stream_id)
|
|
);
|
|
|
|
}
|
|
infof(data, "http2_send returns %zu for stream %u", len,
|
|
stream->stream_id);
|
|
#endif
|
|
return len;
|
|
}
|
|
|
|
result = Curl_pseudo_headers(data, buf, len, NULL, &hreq);
|
|
if(result) {
|
|
*err = result;
|
|
return -1;
|
|
}
|
|
nheader = hreq->entries;
|
|
|
|
nva = malloc(sizeof(nghttp2_nv) * nheader);
|
|
if(!nva) {
|
|
Curl_pseudo_free(hreq);
|
|
*err = CURLE_OUT_OF_MEMORY;
|
|
return -1;
|
|
}
|
|
else {
|
|
unsigned int i;
|
|
for(i = 0; i < nheader; i++) {
|
|
nva[i].name = (unsigned char *)hreq->header[i].name;
|
|
nva[i].namelen = hreq->header[i].namelen;
|
|
nva[i].value = (unsigned char *)hreq->header[i].value;
|
|
nva[i].valuelen = hreq->header[i].valuelen;
|
|
nva[i].flags = NGHTTP2_NV_FLAG_NONE;
|
|
}
|
|
Curl_pseudo_free(hreq);
|
|
}
|
|
|
|
h2_pri_spec(data, &pri_spec);
|
|
|
|
H2BUGF(infof(data, "http2_send request allowed %d (easy handle %p)",
|
|
nghttp2_session_check_request_allowed(ctx->h2), (void *)data));
|
|
|
|
switch(data->state.httpreq) {
|
|
case HTTPREQ_POST:
|
|
case HTTPREQ_POST_FORM:
|
|
case HTTPREQ_POST_MIME:
|
|
case HTTPREQ_PUT:
|
|
if(data->state.infilesize != -1)
|
|
stream->upload_left = data->state.infilesize;
|
|
else
|
|
/* data sending without specifying the data amount up front */
|
|
stream->upload_left = -1; /* unknown, but not zero */
|
|
|
|
data_prd.read_callback = data_source_read_callback;
|
|
data_prd.source.ptr = NULL;
|
|
stream_id = nghttp2_submit_request(ctx->h2, &pri_spec, nva, nheader,
|
|
&data_prd, data);
|
|
break;
|
|
default:
|
|
stream_id = nghttp2_submit_request(ctx->h2, &pri_spec, nva, nheader,
|
|
NULL, data);
|
|
}
|
|
|
|
Curl_safefree(nva);
|
|
|
|
if(stream_id < 0) {
|
|
H2BUGF(infof(data,
|
|
"http2_send() nghttp2_submit_request error (%s)%u",
|
|
nghttp2_strerror(stream_id), stream_id));
|
|
*err = CURLE_SEND_ERROR;
|
|
return -1;
|
|
}
|
|
|
|
infof(data, "Using Stream ID: %u (easy handle %p)",
|
|
stream_id, (void *)data);
|
|
stream->stream_id = stream_id;
|
|
|
|
rv = h2_session_send(cf, data);
|
|
if(rv) {
|
|
H2BUGF(infof(data,
|
|
"http2_send() nghttp2_session_send error (%s)%d",
|
|
nghttp2_strerror(rv), rv));
|
|
|
|
*err = CURLE_SEND_ERROR;
|
|
return -1;
|
|
}
|
|
|
|
if(should_close_session(ctx)) {
|
|
H2BUGF(infof(data, "http2_send: nothing to do in this session"));
|
|
*err = CURLE_HTTP2;
|
|
return -1;
|
|
}
|
|
|
|
/* 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. */
|
|
nghttp2_session_resume_data(ctx->h2, stream->stream_id);
|
|
|
|
return len;
|
|
}
|
|
|
|
static int h2_cf_get_select_socks(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
curl_socket_t *sock)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
struct SingleRequest *k = &data->req;
|
|
struct HTTP *stream = data->req.p.http;
|
|
int bitmap = GETSOCK_BLANK;
|
|
|
|
sock[0] = cf->conn->sock[cf->sockindex];
|
|
|
|
if(!(k->keepon & KEEP_RECV_PAUSE))
|
|
/* Unless paused - in an HTTP/2 connection we can basically always get a
|
|
frame so we should always be ready for one */
|
|
bitmap |= GETSOCK_READSOCK(0);
|
|
|
|
/* we're (still uploading OR the HTTP/2 layer wants to send data) AND
|
|
there's a window to send data in */
|
|
if((((k->keepon & (KEEP_SEND|KEEP_SEND_PAUSE)) == KEEP_SEND) ||
|
|
nghttp2_session_want_write(ctx->h2)) &&
|
|
(nghttp2_session_get_remote_window_size(ctx->h2) &&
|
|
nghttp2_session_get_stream_remote_window_size(ctx->h2,
|
|
stream->stream_id)))
|
|
bitmap |= GETSOCK_WRITESOCK(0);
|
|
|
|
return bitmap;
|
|
}
|
|
|
|
|
|
static CURLcode h2_cf_connect(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
bool blocking, bool *done)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
CURLcode result = CURLE_OK;
|
|
|
|
if(cf->connected) {
|
|
*done = TRUE;
|
|
return CURLE_OK;
|
|
}
|
|
|
|
/* Connect the lower filters first */
|
|
if(!cf->next->connected) {
|
|
result = Curl_conn_cf_connect(cf->next, data, blocking, done);
|
|
if(result || !*done)
|
|
return result;
|
|
}
|
|
|
|
*done = FALSE;
|
|
if(!ctx->h2) {
|
|
result = h2_cf_ctx_init(cf, data, FALSE);
|
|
if(result)
|
|
goto out;
|
|
}
|
|
|
|
if(-1 == h2_process_pending_input(cf, data, &result)) {
|
|
result = CURLE_HTTP2;
|
|
goto out;
|
|
}
|
|
|
|
*done = TRUE;
|
|
cf->connected = TRUE;
|
|
result = CURLE_OK;
|
|
|
|
out:
|
|
return result;
|
|
}
|
|
|
|
static void h2_cf_close(struct Curl_cfilter *cf, struct Curl_easy *data)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
|
|
(void)data;
|
|
if(ctx) {
|
|
/* GOAWAY? */
|
|
h2_cf_ctx_clear(ctx);
|
|
}
|
|
}
|
|
|
|
static void h2_cf_destroy(struct Curl_cfilter *cf, struct Curl_easy *data)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
|
|
(void)data;
|
|
if(ctx) {
|
|
h2_cf_ctx_free(ctx);
|
|
cf->ctx = NULL;
|
|
}
|
|
}
|
|
|
|
static CURLcode http2_data_pause(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
bool pause)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
|
|
DEBUGASSERT(data);
|
|
#ifdef NGHTTP2_HAS_SET_LOCAL_WINDOW_SIZE
|
|
if(ctx && ctx->h2) {
|
|
struct HTTP *stream = data->req.p.http;
|
|
uint32_t window = !pause * HTTP2_HUGE_WINDOW_SIZE;
|
|
int rv = nghttp2_session_set_local_window_size(ctx->h2,
|
|
NGHTTP2_FLAG_NONE,
|
|
stream->stream_id,
|
|
window);
|
|
if(rv) {
|
|
failf(data, "nghttp2_session_set_local_window_size() failed: %s(%d)",
|
|
nghttp2_strerror(rv), rv);
|
|
return CURLE_HTTP2;
|
|
}
|
|
|
|
/* make sure the window update gets sent */
|
|
rv = h2_session_send(cf, data);
|
|
if(rv)
|
|
return CURLE_SEND_ERROR;
|
|
|
|
DEBUGF(infof(data, "Set HTTP/2 window size to %u for stream %u",
|
|
window, stream->stream_id));
|
|
|
|
#ifdef DEBUGBUILD
|
|
{
|
|
/* read out the stream local window again */
|
|
uint32_t window2 =
|
|
nghttp2_session_get_stream_local_window_size(ctx->h2,
|
|
stream->stream_id);
|
|
DEBUGF(infof(data, "HTTP/2 window size is now %u for stream %u",
|
|
window2, stream->stream_id));
|
|
}
|
|
#endif
|
|
}
|
|
#endif
|
|
return CURLE_OK;
|
|
}
|
|
|
|
static CURLcode h2_cf_cntrl(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
int event, int arg1, void *arg2)
|
|
{
|
|
CURLcode result = CURLE_OK;
|
|
|
|
(void)arg2;
|
|
switch(event) {
|
|
case CF_CTRL_DATA_SETUP: {
|
|
result = http2_data_setup(cf, data);
|
|
break;
|
|
}
|
|
case CF_CTRL_DATA_PAUSE: {
|
|
result = http2_data_pause(cf, data, (arg1 != 0));
|
|
break;
|
|
}
|
|
case CF_CTRL_DATA_DONE_SEND: {
|
|
result = http2_data_done_send(cf, data);
|
|
break;
|
|
}
|
|
case CF_CTRL_DATA_DONE: {
|
|
http2_data_done(cf, data, arg1 != 0);
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
static bool h2_cf_data_pending(struct Curl_cfilter *cf,
|
|
const struct Curl_easy *data)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
if(ctx && ctx->inbuflen > 0 && ctx->nread_inbuf > ctx->inbuflen)
|
|
return TRUE;
|
|
return cf->next? cf->next->cft->has_data_pending(cf->next, data) : FALSE;
|
|
}
|
|
|
|
static bool h2_cf_is_alive(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
return (ctx && ctx->h2 && !http2_connisdead(cf, data));
|
|
}
|
|
|
|
static CURLcode h2_cf_keep_alive(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data)
|
|
{
|
|
return http2_send_ping(cf, data);
|
|
}
|
|
|
|
static CURLcode h2_cf_query(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
int query, int *pres1, void **pres2)
|
|
{
|
|
struct h2_cf_ctx *ctx = cf->ctx;
|
|
|
|
switch(query) {
|
|
case CF_QUERY_MAX_CONCURRENT:
|
|
DEBUGASSERT(pres1);
|
|
*pres1 = (ctx->max_concurrent_streams > INT_MAX)?
|
|
INT_MAX : (int)ctx->max_concurrent_streams;
|
|
return CURLE_OK;
|
|
default:
|
|
break;
|
|
}
|
|
return cf->next?
|
|
cf->next->cft->query(cf->next, data, query, pres1, pres2) :
|
|
CURLE_UNKNOWN_OPTION;
|
|
}
|
|
|
|
static const struct Curl_cftype cft_nghttp2 = {
|
|
"NGHTTP2",
|
|
CF_TYPE_MULTIPLEX,
|
|
h2_cf_destroy,
|
|
h2_cf_connect,
|
|
h2_cf_close,
|
|
Curl_cf_def_get_host,
|
|
h2_cf_get_select_socks,
|
|
h2_cf_data_pending,
|
|
h2_cf_send,
|
|
h2_cf_recv,
|
|
h2_cf_cntrl,
|
|
h2_cf_is_alive,
|
|
h2_cf_keep_alive,
|
|
h2_cf_query,
|
|
};
|
|
|
|
static CURLcode http2_cfilter_add(struct Curl_cfilter **pcf,
|
|
struct Curl_easy *data,
|
|
struct connectdata *conn,
|
|
int sockindex)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
struct h2_cf_ctx *ctx;
|
|
CURLcode result = CURLE_OUT_OF_MEMORY;
|
|
|
|
DEBUGASSERT(data->conn);
|
|
ctx = calloc(sizeof(*ctx), 1);
|
|
if(!ctx)
|
|
goto out;
|
|
|
|
result = Curl_cf_create(&cf, &cft_nghttp2, ctx);
|
|
if(result)
|
|
goto out;
|
|
|
|
Curl_conn_cf_add(data, conn, sockindex, cf);
|
|
result = CURLE_OK;
|
|
|
|
out:
|
|
if(result)
|
|
h2_cf_ctx_free(ctx);
|
|
*pcf = result? NULL : cf;
|
|
return result;
|
|
}
|
|
|
|
bool Curl_conn_is_http2(const struct Curl_easy *data,
|
|
const struct connectdata *conn,
|
|
int sockindex)
|
|
{
|
|
struct Curl_cfilter *cf = conn? conn->cfilter[sockindex] : NULL;
|
|
|
|
(void)data;
|
|
for(; cf; cf = cf->next) {
|
|
if(cf->cft == &cft_nghttp2)
|
|
return TRUE;
|
|
if(cf->cft->flags & CF_TYPE_IP_CONNECT)
|
|
return FALSE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
bool Curl_http2_may_switch(struct Curl_easy *data,
|
|
struct connectdata *conn,
|
|
int sockindex)
|
|
{
|
|
(void)sockindex;
|
|
if(data->state.httpwant == CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE) {
|
|
#ifndef CURL_DISABLE_PROXY
|
|
if(conn->bits.httpproxy && !conn->bits.tunnel_proxy) {
|
|
/* We don't support HTTP/2 proxies yet. Also it's debatable
|
|
whether or not this setting should apply to HTTP/2 proxies. */
|
|
infof(data, "Ignoring HTTP/2 prior knowledge due to proxy");
|
|
return FALSE;
|
|
}
|
|
#endif
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
CURLcode Curl_http2_switch(struct Curl_easy *data,
|
|
struct connectdata *conn, int sockindex,
|
|
const char *mem, size_t nread)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
struct h2_cf_ctx *ctx;
|
|
CURLcode result;
|
|
|
|
DEBUGASSERT(!Curl_conn_is_http2(data, conn, sockindex));
|
|
DEBUGF(infof(data, DMSGI(data, sockindex, "switching to HTTP/2")));
|
|
|
|
result = http2_cfilter_add(&cf, data, conn, sockindex);
|
|
if(result)
|
|
return result;
|
|
|
|
DEBUGASSERT(cf->cft == &cft_nghttp2);
|
|
ctx = cf->ctx;
|
|
|
|
result = h2_cf_ctx_init(cf, data, (data->req.upgr101 == UPGR101_RECEIVED));
|
|
if(result)
|
|
return result;
|
|
|
|
if(nread) {
|
|
/* 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=%d, datalen=%zu",
|
|
H2_BUFSIZE, nread);
|
|
return CURLE_HTTP2;
|
|
}
|
|
|
|
infof(data, "Copying HTTP/2 data in stream buffer to connection buffer"
|
|
" after upgrade: len=%zu", nread);
|
|
DEBUGASSERT(ctx->nread_inbuf == 0);
|
|
memcpy(ctx->inbuf, mem, nread);
|
|
ctx->inbuflen = nread;
|
|
}
|
|
|
|
conn->httpversion = 20; /* we know we're on HTTP/2 now */
|
|
conn->bits.multiplex = TRUE; /* at least potentially multiplexed */
|
|
conn->bundle->multiuse = BUNDLE_MULTIPLEX;
|
|
multi_connchanged(data->multi);
|
|
|
|
if(cf->next) {
|
|
bool done;
|
|
return Curl_conn_cf_connect(cf, data, FALSE, &done);
|
|
}
|
|
return CURLE_OK;
|
|
}
|
|
|
|
/* Only call this function for a transfer that already got an HTTP/2
|
|
CURLE_HTTP2_STREAM error! */
|
|
bool Curl_h2_http_1_1_error(struct Curl_easy *data)
|
|
{
|
|
struct HTTP *stream = data->req.p.http;
|
|
return (stream && stream->error == NGHTTP2_HTTP_1_1_REQUIRED);
|
|
}
|
|
|
|
#else /* !USE_NGHTTP2 */
|
|
|
|
/* Satisfy external references even if http2 is not compiled in. */
|
|
#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 */
|